/* CSS Document - basiert auf http://www.strictlycss.com/examples/three-column-layout-6.asp */
/* angepasst von www.7media.de */

* /* border, padding and margin to 0 for all values */
{
	padding: 0;
	margin:0;
	border: 0;
}

html {margin-bottom: 1px;} /* Scrollbalken immer */

body, html {
color: #666; 
font-family: Tahoma, Verdana, Verdana, Arial, Tahoma, sans-serif;

text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}

body { font-size: small; }

p { padding: 5px 0 7px 0;}

a { color: #666; }

a:link, a:visited { text-decoration:none; }

a:hover, a:active { text-decoration: underline; }

a.underline {text-decoration:underline !important } /* Für CSS Stil in Editor */

.clear { clear: both; }

/**************************
LAYOUT STANDARDS
**************************/

#mainContainer {
width: 900px;
margin: 0 auto; /*** Centers the design ***/
min-height: 100%;
/***background: #add8e6 url(/examples/three-column-100-bg.gif) repeat-y;  This is our faux columns ***/
background-color:#FFF;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}


/**************************
HEADER
**************************/
#header {
	background: #FFFFFF;
	padding: 0px;
	height: 260px;
}

#mainContainer #header #hauptnavi {
	padding: 30px 0px 0px 12px;
	margin:0;
	width:885px;
}
/**************************
CONTENT AND COLUMNS
**************************/

.outer {
padding-top:30px;
padding-left: 205px;  /* Für linke Spalte wichtig */
 
}
* html .outer {
padding-right: 185px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to -- IE6 auch wg div right */
}
.inner {
width: 695px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
padding-bottom: 30px;
}
* html .inner {
width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 685px;
margin-left: -205px; /*** Same length as .outer padding-left but with negative value ***/
}

* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 475px;
background: #fff;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 0px 5px 5px 0px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 190px;
padding: 5px 0px 0px 20px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 190px;
padding: 5px 5px 5px 20px;
}
* html #right {
position: relative;  /*** IE needs this  ***/
margin-right: -190px; /*** IE gets this margin. ***/
}

#right a { text-decoration:underline; }

/**************************
FOOTER
**************************/
#footer {
	width: 880px;
	height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: -30px auto 0; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: left;
	background: #bb0542;
	color: #FFFFFF;
	padding-left: 20px;
}

#footer a {text-transform:uppercase; text-decoration:none; font-size:0.8em; letter-spacing:1pt;  display:block; padding-top:5px;}

#footer input { font-size:0.8em; color:#999;}

#footer #ajaxSearch_input {border:1px solid #CCCCCC; height:14px;  margin-top:1px; padding:1px;}


/**** ALLG. TEXT AUSZEICHNUNGEN *****/
h1        {
	color: #c36;
	font-size: 1.75em;
	font-weight: normal;
	margin: 0;
	padding: 0px;
}

h2  { color: #666; font-size: 1.15em; font-weight: bold; line-height: 140%; margin-top: 1.5em; margin-right: 2em; margin-left: 0 }

h3     { color: #666; font-size: 1em; font-weight: bold; line-height: 140%; margin: 1em 2em 0.5em 0 }

h5    { color: #c36; font-size: 1em; font-weight: normal; line-height: 140%; margin: 0; }

#content h3  { color: #666; font-size: 1em; margin: 1em 2em 0 0 }

/* Rechte Spalte */
/* Farbe über indiv. Styleangaben je Seite */

#right p {padding: 2px 0 4px 0;}

#right h4 { font-size: 1.1em; font-weight: bold; margin: 1em 0 0.5em 0 } 

#right h5    { margin: 0 0 0 0.6em }

/* Liste Linksbündig ausrichten, standard in rechter Spalte */
#right ul {
list-style-type:disc;
margin-left:0;
padding-left:0;
padding-bottom: 4px;
}

#right li {
margin-left: 15px;
}


/***** NAVIGATION ****/

#hauptnavi {
	color: #666666;
	}
	
#hauptnavi
	{
	position: relative;
	width: 900px;
	height: 30px;
	margin-left: 12px;
	z-index:100;
	}
	
#hauptnavi ul li:hover ul
	{
		display: block;
				
	}
	
	#hauptnavi li
	{
		float: left;
		list-style: none;
		text-align: left;
		height: 30px;
		left: 0px;
		padding: 0px 10px 0px 10px;
		top: 0px;
		width: auto;
		position:  relative;
	}
	
	
	
	#hauptnavi a, #subnav h3
	{
		font-size: 0.9em;
		line-height: 30px;
		text-transform:uppercase;
		text-decoration: none;
		letter-spacing:1pt;
		color: #666;
		display: block;
		
	} 
	
	#hauptnavi li.current a
	{
		color: #666 ;
		font-weight:bold;
	}
	
	#subnav h3
	{
		color: #666 ;
		font-weight:bold;
	}

	#hauptnavi a:hover
	{
		color: #c36;
		font-weight:normal;
	}
	#hauptnavi li.current a:hover
	{
		font-weight:bold;
	}
	



/*** Subnav ***/

#subnav {margin-top:1.5em; }
#subnav a, #subnavsuche td a    { color: #666; font-size: 13px; line-height: 1.4em; text-decoration: none; margin: 0 0 0 -20px; padding-left: 20px; text-transform:none; letter-spacing:normal;}
#subnav a:link, #subnavsuche a:link     { color: #666; text-decoration: none;  padding-left: 20px; }
#subnav a:visited, #subnavsuche a:visited  { color: #666; text-decoration: none; padding-left: 20px; }
#subnav a:hover, #subnavsuche a:hover      { color: #c36; text-decoration: none; padding-left: 20px;}

/* Link mit Abstand nach oben - da mit Unterseiten */
/* muss mit Link-Attribut class='abstand' ausgelöst werden */
/* Wayfinder rowTpl='listClass' Chunk  */

#subnav ul li.abstand {margin-top:0.5em;}

/* 3. Ebene */
#subnav ul li ul li a {margin-left:-15px;}
/* #subnav ul li ul li a:before{content:"- ";} */
#subnav ul li.current ul li a {font-weight:normal;}
#subnav ul li ul li.current a {font-weight:bold;}

/* Ende aus Vorlage */



/* Alternative Suche unter Subnavi */
#subnavsuche {position:relative; left:-3; padding-top:1.5em; color:#B4B4B4; font-size:11px;}

table#suchtabelle {border: 1px solid #D9D9D9; }

#subnavsuche input { font-size:11px; color:#999;}

#subnavsuche #ajaxSearch_input {border:1px solid #B4B4B4; height:14px;  margin:7px 0 3px 7px; width:120px; padding:2px 0 1px 2px;}

#subnavsuche #ajaxSearch_submit {margin:8px 0 0 2px;} /* Pfeil-Gif */

#suchtabelle td.suchfeldnavi { color:#B4B4B4; padding:6px 0 6px 7px;}

#suchtabelle td.suchfeldnavi a:link,  #suchtabelle td.suchfeldnavi a:visited { color:#999; text-decoration:none; font-size:11px;}

#suchtabelle td.suchfeldnavi a:hover,  #suchtabelle td.suchfeldnavi a:active { color:#666; text-decoration:none; font-size:11px;}

/** SUCHERGEBNIS HIGHLIGHT **/

.ajaxSearch_highlight {background-color:#FFFFCC; }


/***** LINKSBÜNDIGE UL LISTE z.B. FÜR ZAHLEN FAKTEN ****/

div.listelinksb p {padding-bottom:0; margin-bottom:5px; }

div.listelinksb  ul {
	
	margin-left: 0px;
	padding-left: 0px;
	list-style-type: disc;
	margin-top:5px;
	margin-bottom:1.5em;
}

div.listelinksb  li {
	margin-left: 15px;
}

/***** KONTAKTFORMULAR ****/

#feedback input, #feedback textarea, #feedback select {border:1px solid #999; }


/***** TABELLE PRESSEBILDER VORSCHAU ***/

table#pressebilder hr {height:1px; border: 1px solid #b4b4b4; margin:0.25em 0 1em 0;}

table#pressebilder td img {padding: 3px 0;}

table#pressebilder td a:link img, table#pressebilder td a:visited img  {border:1px solid #FFF; padding:0; margin:0;}

table#pressebilder td a:hover img, table#pressebilder td a:active img  {border:1px solid #8db038; padding:0; margin:0;}


/***** AjaxSearch SUCHERGEBNIS-SEITE Container Resultate *****/

#ajaxSearch_resultListContainer {margin: 2em 0 1em 0; }

div.ajaxSearch_extract p {margin-bottom:1em; }


/***** Links mit ICONS ****/

div.bildDownload,
div.docDownload {margin:0.25em 0 0.25em 0; font-size:12px;}

.gbLink {
	background: url(/assets/images/icons/gb.gif) no-repeat;
	background-position:0 2px;
	padding-left: 18px;
	padding-bottom:13px;
	margin-bottom:3px;
}


.pdfLink {
	background: url(/assets/images/icons/file_acrobat.gif) no-repeat;
	padding-left: 18px;
	padding-bottom:13px;
	margin-bottom:3px;
}

.docLink {
	background: url(/assets/images/icons/page_white_word.png) no-repeat;
	padding-left: 18px;
	height:20px;
	padding-bottom:13px;

}

.imgLink {
	background: url(/assets/images/icons/picture.png) no-repeat;
	padding-left: 18px;
	height:20px;
	padding-bottom:13px;

}

.zoomLink {
	background: url(/assets/images/icons/zoom_in.png) no-repeat;
	padding-left: 18px;
	display:block;
	margin-bottom:3px;
}
.drthumbonly {/* fuer dynamicResize - kein grosses Bild */}
