/*************************
LAYOUT
**************************/

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

body, html {
    color: #255AA6; 
    font-family: Verdana,Arial,Helvetica,Century Gothic;
    background-color:#ffffff;
    text-align: center; /*** Centers the design in old IE versions ***/
    height: 100.00%;
}
img.border   { color: #255AA6; border: solid 1px #255AA6 }
body {
    font-size: 100.00%;
	background-image:url(images/hg.gif);background-repeat:no-repeat;background-position:center top; overflow:visible;
	
}

.clear { clear: both; }

#mainContainer {
    width: 896px;
    margin: 0 auto; /*** Centers the design ***/
    min-height: 100%;
    text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
    font-size: 12px;
	background-image:url(images/hg.gif);background-repeat:no-repeat;background-position:center top; overflow:visible;
}

* 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 {
    padding: 10px 0 10px 0;
    height: 215px;
	overflow: hidden;
	width: 901px;
}

#header img.tophg{
	border:solid 1px #255AA6;
}

#header img.logopic{
	float:left;
	margin-top:5px;
	margin-right:10px;
	display:inline;
	float:left;
}




#menu
{
padding:0;
margin-top:18px;
color:#fff;
font-family: arial, helvetica, sans-serif;
white-space:nowrap;
list-style-type:none;
}
#menu li {display:inline;}
#menu li a
{
text-align:center;
width:84px;
padding:10px 10px 10px 10px;
background:#255AA6;
color:#fff;
text-decoration:none;
float:left;
}
#menu li a:hover
{
background:#1E4885;
color:#fff;
}
#menu li a.aktiv
{
background:#1E4885;
color:#fff;
}

#header p.navi_links{
	font-size:0.9em;
	margin: 10;
	padding: 0;
	padding-top: 3px;
	padding-left: 10px;
	margin-left: 10px;
	
}
	
*html #header p.navi_links {top:45px;}
#header p.navi_links a{color:#2d4465;text-decoration:none;display:block;padding:1px 5px 1px 5px;font-weight:400;width:12.0em;}


/************* CONTENT AND COLUMNS */

.outer {
    padding-left: 164px;
	
}
* html .outer {
    padding-right: 1px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
    width: 732px; /*** 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: 24px;
}
* 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.
border:solid 1px #15F325;border:1px solid #ff0000;
***/
.float-wrap {
    float: left;
    width: 892px;
    margin-left: -164px; /*** 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: 700px;
	
}
* html #content {
    position: relative;  /*** IE needs this  ***/
}
.contentWrap{
    padding: 0 5px 10px 5px;
    margin-top: -20px;
}

/************* 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;
	display:inline;
    width: 164px;
    padding: 0 0 0 1px;
	margin-top:2px;
    font-size:11px;
    overflow: hidden;
	max-height:100%;
}

* html #left {
    position: relative;  /*** IE needs this  ***/
	height:100%;
	margin-left:2px;
}

.leftmenurahmen{
	font-size:10px;padding:4px 6px 2px 6px;border-bottom:1px solid #255AA6;
}
.leftmenurahmen a{font-weight:bold; text-decoration:none; color:#255AA6;
	
}

#left a.mehrlink {text-align:right;font-weight:bold;color:#255AA6;background-color:none;border:0;}
#left a.mehrlink:hover{font-weight:bold; text-decoration:underline;color:#255AA6;background-color:#E2E9F3;border:0;}

#left p {left:0px;padding:0 0px;margin:2px 0 0px 0px;}
*html #left p {left:0px;padding:0 0px;margin:2px 0 0px 1px;}
#left a{display:block;padding:3px 5px 3px 5px;text-decoration:none;color:#255AA6;font-weight:400;border-bottom:1px solid #fff;}
#left a:hover{color:#fff; background-color:#255AA6;}
#left a.aktiv{color:#fff; background-color:#255AA6;}


/************* RIGHT COLUMN */

#right {
    float: right; 
    width: 1px;
    padding: 0;
    padding-left:20px;
}
* html #right {
    position: relative;  /*** IE needs this  ***/
    margin-right: -185px; /*** IE gets this margin. ***/
}

#right p.mit_rahmen{background-image:url(../img/bg_rechts_kasten.jpg);height:115px;padding:8px 15px 8px 15px;margin:0px;background-repeat:no-repeat;padding-right:30px;margin-bottom:5px;}



/************* FOOTER    text-align: right; */

#footer {
    width: 896px;
    height: 24px; /*** 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: 0 auto;
    margin-top: -24px; /*** 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. ***/

	background-color:#255AA6;
	color: #fff;
}


#footer p.navi_unten{
    padding-top:3px;
    text-align:right;  
	padding-right:20px;  
}
#footer p.navi_unten a{font-size:11px;color:#fff;text-decoration:none;padding:2px;padding-right:10px;padding-left:10px;margin:0;}
 *html #footer p.navi_unten{padding-top:0px;} 
#footer p.navi_unten a:hover{background-color:#1E4885;color:#ffffff;}
#footer p.navi_unten a.aktiv{background-color:#1E4885;color:#ffffff;}

#footer p.adresse{text-align:left;padding-left:5px;color:#ffffff;font-weight:bold;font-size:11px;padding-top:5px;display:inline;float:left;}
#footer p.adresse a{text-decoration:none; color: #ffffff;}


/*************************
INHALTE
**************************/

/* Allgemein */
#content .picright{display:inline; float:right;margin-left:6px;}
#content .picleft{display:inline; float:left;margin-right:6px;}
#content{color:#255AA6;padding-top:15px;}
#content p {margin-bottom:10px;}
#content h1{color:#255AA6;font-size:16px;padding-left:0px;padding-top:3px;margin-top:0;margin-bottom:10px;}
#content h2, h3{color:#255AA6; font-size:12px; padding:0px;letter-spacing:110%;word-spacing:110%;}
#content h3{margin-bottom:0px;padding-bottom:0px; font-size:12px;}
#content ul{list-style-image:url(images/aufzaehl.gif);margin:0px 0 15px 30px;}
#content li{font-size:12px;margin:1px;}
#content a{color: #399B83;}
#content a:hover{color:#207FE0;}
#content .boxright{float:left; text-align:left;}

.contentbox{
	width:100%;
	color:#255AA6;
	display:inline;
	margin-bottom:20px;
}
*html .contentbox{margin-bottom:15px;}

#content .contentbox h1{background-color:#255AA6;color:#fff;font-weight:bold;font-size:12px;padding:3px 0 3px 10px;}
.contentbox a.mehrlink {color:#255AA6;text-align:left;font-weight:bold;background-color:none;border:0;text-decoration:none;}
.contentbox a.mehrlink:hover{font-weight:bold; text-decoration:underline;color:#255AA6;background-color:none;border:0;}
.picright{display:block; float:right;margin-left:16px;}

.contentboxinline{
	width:520px;
	color:#255AA6;
	margin-bottom:20px;
	margin-right:100px;
}
#content .contentboxinline h1{background-color:#255AA6;color:#fff;font-weight:bold;font-size:12px;padding:3px 0 3px 10px;margin:0;}
.contentboxinline a.mehrlink {color:#255AA6;text-align:left;font-weight:bold;background-color:none;border:0;text-decoration:none;}
.contentboxinline a.mehrlink:hover{font-weight:bold; text-decoration:underline;color:#255AA6;background-color:none;border:0;}

.boxinside{
	background-color:#F2F6F9;margin:0;
	padding:10px 10px 10px 30px;
	border-bottom:1px solid #255AA6;
}
.detaillink {text-decoration:none;text-align:center;padding:2px 0 2px 0px;color:#255AA6;font-weight:bold;}
.detaillink a{text-decoration:none;text-align:center;padding:2px 0 2px 0px;color:#255AA6;font-weight:bold;}
.detaillink a:hover{font-weight:bold; text-decoration:underline;color:#255AA6;background-color:none;border:0;}

#internmenu{
margin-left:-30px;
}
#linkintern
{
padding:0;
margin-top:180px;
color:#399B83;
font-family: arial, helvetica, sans-serif;
white-space:nowrap;
list-style-type:none;
}
#linkintern li {display:inline;}
#linkintern li a
{
text-align:center;
width:96px;
padding:0px 10px 10px 10px;
color:#399B83;
text-decoration:none;
float:left;
}
#linkintern li a:hover
{
color:#207FE0;
}

#linkinternimg
{
padding:0;
white-space:nowrap;
list-style-type:none;
}
#linkinternimg li {display:inline;}
#linkinternimg li a
{
text-align:center;
width:96px;
padding:0px 10px 10px 10px;
float:left;
}
*html #linkinternimg li a
{
text-align:center;
width:96px;
padding:0px 1px 10px 1px;
float:left;
}

.horizontal{padding:0 0 0 0; margin:3 0 3 0; color:#BEBEBE; width:350px;}
.horizontal_long { color: #bebebe; margin: 3 0; padding: 0; width: 500px }
.blau{color:#255AA6;font-weight:bold;}


.refcontent{display:inline;float:left;width:450px;margin-right:10px;height:100%;}

.refrechts{width:202px;display:inline;height:100%;float:right;}