/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : layout_3-2-1.css
**  Funktion    : Zentrales Stylesheet 3-2-1-Layout 
**
*/
/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : base.css
**  Funktion    : Basis-Stylesheet
**
**  Don't make any changes in this file! 
**  Any changes should be placed in basemod-files in css/modifications directory.
*/

@media all
{
/* ######################################################################################################
** ### Vorbereitende Ma�nahmen | Reset ##################################################################
** ######################################################################################################
*/
	/* Hiermit werden die Randabst�nde und border aller HTML-Elemente auf Null gesetzt. Damit wird das       
	** Aussehen der Webseite in unterschiedlichen Browsern vereinheitlicht. 
	*/
	
	* { margin:0; padding: 0; } 

	/* Das zur�cksetzen der Innen- und Au�enabst�nde verursacht zu kleine Selectboxen. Dies wird korrigiert */
	option {padding-left: 0.4em}
	
	/*
	** Die nachfolgenden Angaben entstammen dem Artikel 'Useful Code Snippets' von Mike Foskett
	** [http://www.websemantics.co.uk/tutorials/useful_css_snippets/]
	*/
	
	/* Vertikalen Scrollbalken im Netscape & Firefox erzwingen. Dies verhindert, dass zentrierte Layouts 
	** um 10 Pixel springen wenn der Seiteninhalt kleiner wird als die H�he des Browserfensters. */
	html { height: 100% } 
	body { 
		min-height: 101%;	
	/* Beseitigung des Rundungsfehlers bei Schriftgr��en im Opera sowie Standardformatierungen */
		font-size: 100.01%; 
	/* FIX: Verhindert, dass positionierte Elemente nicht verschoben werden when die Gr��e des Browser 
			Fensters ge�ndert wird. */
		position: relative; 
	
	/* Vorgabe der Standardfarben und Textausrichtung*/     
		color: #000;        
		background: #fff;
		text-align: left; 
	} 
	
	/* Standardrahmen zur�cksetzen */
	fieldset, img { border:0; }
	
	/* Anpassung f�r Safari Browser. font-size:100% ist f�r den Safari in Formularen zu gro� */ 
	select, input, textarea { font-size: 99% }
	
/* ######################################################################################################
** ### DIV-Container des Basislayouts ###################################################################
** ######################################################################################################
*/
	
	#header { position:relative }

	#topnav {
		position:absolute;
		top: 10px;
		right: 10px;
		color: #fff;
		background: transparent;
		text-align: right; /* Erforderlich, damit im Opera 6 wirklich rechts plaziert ! */
	}

	#header_image { clear:both; width: auto; }
	#nav { clear:both; width: auto; }
	#nav_main { clear:both; width: auto; }
	#nav_sub { clear:both; width: auto; }
	#main {	clear:both; width: auto; }
	
	
	#col1 {
		float: left;
		width: 200px; /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
	}
	
	#col2 {
		float:right; 
		width: 200px; /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
	}
	
	#col3
	{
		width:auto;
		margin-left: 200px; /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
		margin-right: 200px; /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
	}
	
	#footer { clear:both; }	/* Backup f�r IE-Clearing */
	
	/* Der z-Index verhindert, dass im Falle des noch bestehenden IE-Bugs die Texte vor 
	** dem Spaltenhintergrund erscheinen. */
	#col1 {z-index: 3;}
	#col2 {z-index: 5;}
	#col3 {z-index: 1;}
	#col1_content {z-index: 4;}
	#col2_content {z-index: 6;}
	#col3_content {z-index: 2;}
	#col3_print {z-index: 7;}
	
	#col1_content, #col2_content, #col3_content,#col3_print {
		position:relative;
		}

/* ######################################################################################################
** ### Markupfreie CSS-Floatclearing-L�sungen ###########################################################
** ######################################################################################################
*/

	/* Clearfix-Methode zum Clearen der Float-Umgebungen */
	 .clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	
	/* Diese Angabe ben�tigt der Safari-Browser zwingend !! */
	.clearfix { display: block; } 
	
	/* Overflow-Methode zum Clearen der Float-Umgebungen */
	.floatbox { overflow:hidden; }
	
	/* IE-Clearing: Ben�tigt nur der Internet Explorer und �ber iehacks.css zugeschaltet */
	#ie_clearing { display: none }

/* ######################################################################################################
** ### IE-Clearing bis YAML V2.4 ########################################################################
** ######################################################################################################
**
** Die CSS-Definition des IE-Clearings, welches bis YAML 2.4 verwendet wurde, ist aus Gr�nden der 
** Abw�rtskompatibilit�t des Basis-Stylesheets weiterhin enthalten.
*/
	/* Clearen der 3 Inhaltsspalten mittels dieses speziellen hr-Tags */
	hr.clear_columns {	
		clear: both; 
		float: left; 
		content: "."; 
		display: block;  
		height: 0; 
		line-height: 0px; 
		visibility: hidden; 
		border: 0; 
		padding: 0;
		margin: -1.1em 0 0 0; /* erforderlich damit kein Leerraum zwischen Spalten und Footer entsteht */
	}

/* ######################################################################################################
** ### Standard-Formatierungen f�r Listen & Zitate ######################################################
** ######################################################################################################
*/

	ul, ol, dl { margin: 0 0 1em 1em }
	li { margin-left: 1.5em; line-height: 1.5em; }
	
	dt { font-weight: bold; }
	dd { margin: 0 0 1em 2em; }
	
	blockquote, cite { margin: 0 0 1em 1.5em; font-size: 0.93em; width: auto;}

/* ######################################################################################################
** ### Subtemplates #####################################################################################
** ######################################################################################################
*/

	.subcolumns { 
		width: 100%;
		padding: 0 1px 0 1px; 
		margin: 0 -1px 0 -1px; 
		overflow:hidden;
	}
		
	.c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; overflow: hidden;}
	.c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; overflow: hidden;}
	
	.c25l, .c25r { width: 24.999%; }
	.c33l, .c33r { width: 33.333%; }
	.c50l, .c50r { width: 49.999%; }
	.c66l, .c66r { width: 66.666%; }
	.c75l, .c75r { width: 74.999%; }
	.c38l, .c38r { width: 38.196%; } /* Goldener Schnitt */
	.c62l, .c62r { width: 61.803%; } /* Goldener Schnitt */
	
	.subc  { padding: 0 0.5em 0 0.5em; overflow: hidden; }
	.subcl { padding: 0 1em 0 0; overflow: hidden; }
	.subcr { padding: 0 0 0 1em; overflow: hidden; }
}

/* ######################################################################################################
** ### Skiplink-Navigation ##############################################################################
** ######################################################################################################
*/
@media screen, print
{
.skip {
	position: absolute;
	left: -1000em; 
	width: 20em;
}

}

/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : basemod.css
**  Funktion    : Basis-Modifikation f�r das Layout des YAML-Tutorials
**
*/

@media all
{

/* Formatierung der Seite */
body {
	background: #f4f4f4 url(../pics/layout/bg_verlauf.jpg) repeat;
	}

/* Hier kann ein umlaufender Rand um die gesamte Webseite erzeugt werden */
#page{
	border: 0px;
	}
#page_margins {
	border: 0px;
	min-width: 756px;
	max-width: 100em;
	}

/* Formatierung der Fu�zeile */
#footer {
	font-size: 10px;
	width: 530px;
	color: #000;
	text-align:center;
	margin: 10px 13px;
	}

/* ######################################################################################################
** ### Formatierung der Inhaltsspalten ##################################################################
** ######################################################################################################
*/
#main {
	margin-top: 5px;
	width: 993px;
	} 

/* #col1 wird zur Border-Spalte */
#col1 {
	width: 193px;
	float:right;
	margin: 0px;
	}
	
#col1_content {
	padding-left: 3px;
	overflow: hidden;
	}

/* #col2 wird zur Rechte-Spalte */
#col2 {
	width: 250px;
	margin: 0;
	}
#col2_content {	
	}

/* #col3 wird zur Haupt-Spalte */
#col3 {
  	border: 1px solid black;
  	background: white; 
	width: 530px;
	margin: 0px;
	margin-left: 13px;
	}
* HTML #col3 {
	overflow-x: hidden;
	}

#col3_content {
	padding: 0px 12px 0px 12px;
	}
#col3_print {
	text-align: right;
	padding: 0px 12px;
	margin: 12px 0px;
	}


} 


#header_right {
	position: absolute;
	left: 800px;
	width: 236px;
	height: 320px;
	background: transparent url(../pics/layout/header_left.png) no-repeat;
	z-index: 10;
	}

/* ----- HEADER ----- */
#header {
	width: 800px;
	height: 64px;
	background: #b6942d url('../pics/layout/header.jpg') no-repeat;
	}

/* Top-Navigation @see NAVIGATION */

/* ----- HEADER_IMAGE ----- */


#header_image {
	width: 800px;
	text-align:right;
	background-color: black;
	border-top: 1px solid white;
	}
/* HEADER_IMAGE - Random */
#random_image_large {
	width: 600px;
	height: 187px;
	display:inline;
	}
#random_image_small {
	width: 705px;
	height: 86px;
	display:inline;
	}
/* HEADER_IMAGE - Standard */
#ensign_large {
	height: 187px;
	width: 187px;
	display:inline;
	}
#ensign_small {
	height: 86px;
	width: 86px;
	display:inline;
	}
#header A {
	padding:0px;
	margin:0px;
	}
#ensign_large IMG {
	border-left: 1px solid white;
}
#ensign_small IMG {
	border-left: 1px solid white;
}/* ----- TOP-NAVIGATION ----- */

#topnav {
	top: 20px;
	font-size: 10px;	
	}

/* TOP-NAVIGATION - Link */
#topnav A {
	color: white;
	background:transparent;
	text-decoration:none;
	}
#topnav A:hover {
	text-decoration:none;
	background-color: transparent;
	}
#topnav A:focus {
	text-decoration:none;
	background-color: transparent;
	}
/* ----- PRINT-NAVIGATION ----- */

#nav_print {
	float: right;	
	}


/* ----- NAVIGATION ----- */

#nav {
	width: 800px;
	overflow:hidden;
	font-size: 10px;
	font-weight: bold;
	border-bottom: 1px solid white;
	}

#nav_main {
	border-top: 1px solid white;
	background-color: #b6942d;
	height: 25px;
	padding-left: 13px;
	}

#nav_sub {
	border-top: 1px solid white;
	background-color: #b6942d;
	height: 25px;
	padding-left: 13px;
	}
/* NAVIGATION - Abstand von Links */

/* NAVIGATION - Item */
#nav SPAN {
	height: 25px;
	float: left;
	padding: 0px 5px;
}

#nav .item_start {
	float: left;
	padding: 0;
}
*HTML #nav .item_start {
	margin: -1px 0px;
}
#nav .divider {
	float: left;
	padding: 0;
}


/* NAVIGATION - Link */

#nav A {
	font-size: 10px;
	color: white;
	}
#nav A:active {
	}
#nav A:hover {
	}
#nav A:focus {
	}
#nav .item_start A {
	padding: 0px 5px;
	}
	
#nav_sub .item_current A{
	text-decoration: underline;
	}



#nav .standard {
	background-color: #b6942d;
}
#nav .willkommen {
	background-color: #cc2323;
}
#nav .collegium {
	background-color: #cc2323;
}
#nav .aktuelles {
	background-color: #dad2b8;
}
#nav .rent_a_bruchmeister {
	background-color: #07460c;
}
#nav .bruchmeister {
	background-color: #9c9c9c;
}
#nav .interaktiv {
	background-color: #d6c336;
}
#nav .freundeskreis {
	background-color: #44554a;
}
#nav .faq {
	background-color: #000;
}
#nav .mitglied {
	background-color: #000;
}
/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : content.css
**  Funktion    : Formatierung der Inhalte (Texte, Grafiken, Links, Listen, Tabellen usw.)
**
*/

@media all
{
/* ######################################################################################################
** # Standard-Vorgaben ##################################################################################
** ######################################################################################################
** 

/* ### �berschriften, Flie�texte ###################################################################### */

body {
	color: #303030;
	font-size: 12px;
	font-family: Verdana, Arial, sans-serif;
	}

#main .bodytext {
	margin-bottom: 10px;
}
#col1_content h1 {
	font-weight: normal;
	font-size: 10px;
	}

#col2 .content_box {
	border: 1px solid black;
	margin-bottom: 5px;
	padding: 6px;
	background-color: white;
	font-size: 10px;
}
* HTML #col2 .content_box {
	width: 250px 
}

#col2_content .csc-header {
	margin: -6px -6px 6px -6px; 
	background-color: #b6942d;
	border-bottom: 1px solid black;
}

#col2_content h1 {
	font-weight: bold;
	font-size: 10px;
	padding: 1px 6px;
	color: white;
	}


/* Datum */
#col3_content h1 {
	font-weight: normal;
	font-size: 10px;
	margin-top: 12px;
	}

/* Sektionsüberschrift */
#col3_content h2 {
	font-size: 10px;
	font-weight:normal;
	color: #a8a8a8;
	margin: 18px 0 5px 0;
	border-top: 1px dotted #c3c3c3; 
	}
#col3_content h2 A {
	font-size: 10px;
	font-weight:normal;
	color: #a8a8a8;
	text-decoration: none;
	}

#col3_content h3 {
	font-size: 10px;
	font-weight:normal;
	color: #a8a8a8;
	margin: 18px 0 12px 0;
	}
/* Standardüberschrift */

#col3_content .csc-header {
	margin-bottom: 6px;
}

#col3_content h4 {
	font-size: 12px;
	font-weight: bold;
	margin: 12px 0px 1px 0px;
}

#col3_content P {
	margin-bottom: 12px;
}

#col3_content TABLE {
	width: 520px;
	font-size: 12px;
}

#col3_content TABLE H2 {
	border: none;
	font-weight: bold;
	font-size: 10px;
	color: black;
}

#col3_content TABLE .bodytext {
	margin-bottom: 2px;
}

#col3_print .item {
	padding-left: 12px;
}

strong,b { font-weight: bold; }
em,i { font-style:italic; }
pre, code {	font-family: "Courier New", Courier, monospace; }
address { font-style:normal; line-height: 1.5em; margin: 0 0 1em 0; }

hr { 
	color: #fff; 
	background:transparent; 
	margin: 0 0 0.5em 0; 
	padding: 0 0 0.5em 0; 
	border:0; 
	border-bottom: 1px #eee solid; 
}

acronym, abbr {
	letter-spacing: .07em;
	border-bottom: 1px dashed #c00;
	cursor: help;
}

/* ### Bildpositionierung ############################################################################ */

#col2_content .content_image {
	margin: -6px 0px -6px -6px;
}
* HTML #col2_content .content_image {
	margin-right: -6px;
}
#col2_content .content_imagetext {
	margin: 6px 0px 0px 0px;
}

#col3_content .content_image {
	margin: 0px -12px;
}
#col3_content .content_image .imagetext {
	margin: 0px 12px;
	font-size: 10px;
}

img.float_left { float: left; margin-right: 1em; margin-bottom: 0.0em; border:0; }
img.float_right { float: right; margin-left: 1em; margin-bottom: 0.0em; border:0; }
img.center { text-align:center; background: #fff; padding: 4px; border:1px #ddd solid; }
img.framed {padding:3px; border: 1px #ddd solid; background: #f4f4f4 }

/* ### Auszeichnung lokaler und Externer Links ######################################################## */
a, a em.file {
	color: #900;
	text-decoration:none;
	}
a:hover {background-color: none; }
a:focus {background-color: none; }

#main A {
	text-decoration: underline;
	color: black;
}
#main A:hover {
	background-color: #303030;
	color: white;
}
#main A:focus {
	background-color: #303030;
	color: white;
}


#footer a { color: #669; }
#footer a:hover {background-color: #eef; }
#footer a:focus {background-color: #eef; }

/*
#main a[href^="http:"], #main a[href^="https:"]
{
	padding-left: 12px;
	background-image: url('../../img/icons/ext_link.gif');
	background-repeat: no-repeat;
	background-position: 0 0.45em;
}
*/

.tx-ttnews-browsebox {
	border: 0px;
	background-color: white;
}

#main a.imagelink {
	padding-left: 0;
	background: transparent;
}

/* ######################################################################################################
** ### Formulare & Tabellen #############################################################################
** ######################################################################################################
*/

table { border-collapse:collapse; width: 100%; margin-bottom: 0.5em; }

form {overflow:hidden;}

.csc-mailform input {
	display: block;
	}
.csc-mailform input.csc-mailform-radio {
	display: inline;
}

input, textarea {
    width: auto;
	border: 1px #ccc solid;
    background: #fafafa;
	padding: 3px;
	color: #777;
}

input[type=text]:focus, textarea:focus {
	background: #f0f0f0;
	color: #333;
	border-color: #666;
}

/* ######################################################################################################
** ### Spezielle Formatanweisungen des YAML-Standard-Layouts ############################################
** ######################################################################################################
*/

/* ###  Textformatierungen ################################################################## */

/* Grundlagen */
.wichtig { background-color: #fee; border: 1px #fcc solid; padding: 0.5em; margin-bottom: 0.5em; }
.hinweis { background-color: #eef; border: 1px #ccf solid; padding: 0.5em; margin-bottom: 0.5em; }
.error { background-color: #eef; border: 1px #ccf solid; padding: 0.5em; margin-bottom: 0.5em; }

/* Beispieldateien */

p.demo { background-color: #fee; border: 1px #fcc solid; padding: 6px; margin-bottom: 0.5em; }

/* Navigation am Seitenende */
p.navlink { background-color: #f4f8f4; border: 1px #aca dotted; padding: 6px; margin-bottom: 0.5em; }
p.navlink a { color: #353;}
p.navlink a:hover { font-weight: bold; background: transparent; }

blockquote { 
	color: #444; 
	background: #f8f8f8; 	
	border: 1px #ddd solid;
	border-left: 8px #ddd solid;
	padding: 1em 1em 0 1em;
	margin: 0 0 1em 1em;
}

ul {
	margin: 0px;
}

/* Ungeordnete Listen ohne Listenpunkt */ 
ul.linklist {
	list-style-type: none;
	margin: 0;
	}
ul.linklist li {
	margin: 0;
	}

/* Browser-Kompatibilit�tsliste */ 
ul.browsers { margin: 0  0 .4em 0; }

ul.browsers li {
	margin: 0;
	list-style-type: none;
	background: #f8f8f8; color: #444; 
	padding: 0.1em 0.1em 0.2em 0.5em; 
	font-weight: normal;
	text-align: left; 
	border-bottom: 1px #fff solid; 
	border-right: 1px #fff solid;
}

ul.browsers li img {
	vertical-align:bottom;
}

ul.browsers li.title {
	font-weight: bold;
	background: #eee;
	color: #444; 
	padding: 0.2em 0.2em 0.2em 0.5em; 
}


/* Auszeichnungen f�r Code, Dateien, Verzeichnisse */
em.mono, em.file, em.directory {
	font-family: "Courier New", Courier, monospace;
	font-style: normal;
}

em.mono { 
	padding:0 0.3em 0 0.3em;
	background:#f0f0f4;
	border: 1px #ccd solid;
}

em.file { 
	padding:0 0 0 14px;
	color: #008;
	background: transparent url(../../img/icons/file.gif) no-repeat left;
}

em.directory { 
	padding:0 0 0 15px;
	color: #008;
	background: transparent url(../../img/icons/dir.gif) no-repeat left;
}

pre, code {
	display:block;
	margin: 0 0 1em 1em;
	padding: 0.5em;
	color: #000; 
	background: #f0f0f4;
	border: 1px #ccd solid;
	border-left: 8px #ccd solid;
}

code.css { 
	background-image: url(../../img/bg_css.gif);
    background-repeat: no-repeat;
	background-position: top right;
}

code.xhtml { 
	background-image: url(../../img/bg_xhtml.gif);
	background-repeat: no-repeat;
	background-position: top right;
}

/* ### Tabellen ################################################################## */

table.bugs { margin-bottom: 1em; margin-top: .5em; }
table.bugs th { 
	background: #444; color: #fff; 
	padding: 0.5em; 
	text-align: center; 
	border-bottom: 1px #fff solid; 
	border-right: 1px #fff solid;
}

table.bugs td {
	background: #888; color: #fff; 
	padding: 0.5em; 
	text-align: center; 
	border-bottom: 1px #fff solid; 
	border-right: 1px #fff solid;
}

/* ### Download-Box ################################################################## */

.bluebox {
	color:#000;
	background: #f0f0f4; padding: 2px; border: 4px #ccd solid;
	text-align: left;
	padding: 4px 0 4px 15px;
	margin-bottom: 1em;
}

.bluebox h5 { font-size: 140%; color:#006; font-weight: normal; font-style: normal; padding: 0px 8px 0 5px; }
.bluebox p { padding: 0px 8px 0 5px; }

div.dl_button	{
	width: 220px;
	min-height: 50px;
	text-align:left;
	padding-bottom: 20px;
	background-image: url(../../img/yaml_dl_button.gif);
	background-position:bottom;
}

div.dl_button a {
	display:block;
	width: 100%;
	min-height: 30px;
	text-align:left;
	background: url(../../img/yaml_dl_button.gif);
}

div.dl_button a:hover { text-decoration:none; } 

.dl_button a strong {display:block; padding: 17px 5px 0px 20px; color: #448; font-weight: bold; font-size: 125%; text-decoration:underline;}
.dl_button span.version {display:block; padding: 0px 5px 0px 20px; color: #666; font-weight: normal; font-size: 85%;}
}

/* ######################################################################################################
** # "Yet Another Multicolum Layout" (c) by Dirk Jesse (http://www.yaml.de) #############################
** ######################################################################################################
** 
**  YAML Version: 2.5.2
**  Dateiversion: 01.11.06  
**  Datei       : basemod.css
**  Funktion    : Basis-Modifikation f�r das Layout des YAML-Tutorials
**
*/

@media print
{

/* Formatierung der Seite */
body {
	background: none;
	}
/* Formatierung der Fu�zeile */


/* ######################################################################################################
** ### Formatierung der Inhaltsspalten ##################################################################
** ######################################################################################################
*/
#main {
	margin-top: 5px;
	width: 993px;
	} 

/* #col1 wird zur Border-Spalte */
#col1 {
	display:none;
	}

/* #col2 wird zur Rechte-Spalte */
#col2 {
	display: none;
	}
#col3_print {
	display: none;
	}
#header {
	display: none;
	}
#header_image {
	display: none;
	}
#nav {
	display: none;
	}

} 

