html, body  {
	height:100%;
	margin:0;
	padding:0;
	color: #333;			
}

body {background: #555555 url(img/mainbg.jpg) repeat-x; min-width:980px;}

/* Vollflächiges Hintergrundbild */
	#bgimg {
		min-height: 100%;        /*  Diese zwei Zeilen setzen die Regeln um den Hintergrund zu füllen  */
		min-width: 1024px;
		width: 100%;             /*  Die Regeln, welche für die Skalierung sorgen  */
		height: auto;
		position: fixed;         /*  Die Positionierung  */
		bottom:0px;
		left: 0;
	}
	@media screen and (max-width: 1024px) {
		#bgimg {
			left: 50%;                /*  Ohne diese Angaben funktioniert es nicht  */
			margin-left: -512px; 
		}
	}
/* Vollflächiges Hintergrundbild 
Inhaltscontainer position: relative; nicht vergessen
*/
#background {
	position: relative;       /*  Diese Angabe ist extrem wichtig, da ansonsten der Inhalt nicht angezeigt wird!  */
	width: 100%;  /* Mit einer Breite, die 20 Pixel unter der vollen Breite von 800 Pixel liegt, können Sie dem Browser-Chrome Rechnung tragen und gleichzeitig eine horizontale Bildlaufleiste vermeiden. */
	background-position:top center;
	background-repeat:repeat-y;
	
	min-height: 100%; /* Mindesthöhe für moderne Browser */
	height:auto !important; /* Important Regel für moderne Browser */
	height:100%; /* Mindesthöhe für den IE */
	overflow: hidden !important; /* FF Scroll-leiste */ 
}

#LoginLink {
	display:none;
}

/* ========================= Header ========================= */
.header{ width:100%; float:left; position:relative; height:200px; overflow:hidden; background: url(img/headerBG-Blue.png) repeat-x ;}
.headerBG { width:1000px; height:220px; margin:0 auto; background: url(img/header-blue.jpg); }
.header .headerBG .infobox {top:0px; left: 20px;  overflow:hidden; color:#fff;}
.header .headerBG .infobox  .wstitle {margin:10px 50px; float:left;}
.header .headerBG .infobox  .searchPrint {margin:5px 30px; float:right;}
.header .headerBG .infobox  .wstitle a {font-size: 1.2em; color:#fff ! important; text-decoration: none;}
.header .headerBG .infobox  .pagetitle {font-size: 1.2em; font-weight: bold; line-height: 120%;  padding:5px 5px 10px 20px; margin:0;  max-width:50%;  text-shadow: 1px 2px 10px #000;}
.header .headerBG .infobox  .pagedesc {font-size: 0.9em; font-weight: bold; line-height: 120%;  padding:5px 0 10px 20px;  max-width:40% ; opacity: 0.7; text-shadow: 0 1px 10px #000;}

.boxes {
	position:absolute; 
	top: 80px; 
	left: 10px; 	
	width:30px;
	height:30px;
	border: 2px solid #fff;
	/*
	-moz-box-shadow: 2px 4px 5px #000;
	-webkit-box-shadow: 2px 4px 5px #000;
	box-shadow: 2px 4px 5px #000;
	*/
	filter:alpha(opacity=40); 
	-moz-opacity: 0.4; 
	opacity: 0.4; 	
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
}

	

#menuswitch {display:none;}

/* ========================= TOP Menu ========================= */

.topLine {
	width:100%;
	min-height:2px;
	background-color:#000000;
/*	background: #5b5b5b; */
	float:left;
}

ul.topmenu, li.topmenu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.topmenu {
	float:left;
	width:100%;	
	min-height: 30px;	
	border: 0;	
	padding:0;
}
.topmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: auto;
	position: relative;
	list-style-image: none;
}

/* Root Level Link Formatting */
.topmenu ul li {float: left; color: #fff; text-align: center; font-weight: normal; list-style-type: none; list-style-image: none;}
.topmenu ul li a {display: block; color: #fff;  background: url(img/navbgl1.gif) no-repeat right 0px; padding: 5px 7px 6px 8px; text-decoration: none; font-weight: bold; }




/* 2nd Child menu */
.topmenu ul li ul {position: absolute; width: 200px; margin: -1px 0 0 0px; padding-top:8px; display: none; display:none; box-shadow: 0 4px 8px #000; background: #5b5b5b;}
.topmenu li ul li {text-align: left; font-weight: normal; margin: 0; padding: 0; line-height: 1.2em;  }
.topmenu li ul li a {width: 200px;  height:auto; margin:0; padding: 0; border-top: 1px solid #999; font-weight: normal; background: none;}
.topmenu li ul li a span {display:block; padding:4px 0 4px 10px; }

/* 2nd Child link hover */
.topmenu li ul a:hover,  .topmenu li ul a.menu-current, .topmenu li ul a.menu-parent {font-weight: bold;}


/* Show and hide */
.topmenu li:hover ul, .topmenu li a:focus ul, .topmenu li.subMenu ul {display: block;}
.topmenu li ul ul { display: none; margin: 4px 0 0 -120px; padding-top:0;}
.topmenu li:hover ul ul, .topmenu li.subMenu ul ul {display: none;}
.topmenu li:hover>ul, .topmenu li li:hover>ul, .topmenu li.subMenu>ul, .topmenu li li.subMenu>ul {display: block;  z-index: 1000;}



/* Positioning the Pop-out Drops */
.topmenu li {position: relative;}

.topmenu ul ul ul {
	position: absolute;
	top: 1px;
	left: 100%;
}


.topmenu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

/* ========================= Main Content ========================= */



.wrapper {	
	width:980px;
	margin: 0 auto;	
	background: transparent url(img/contentbg.png) repeat-y;		
}



.innerwrap {	
	width:960px;
	margin: 0 auto;

}


.breadcrumbsbox {height:40px; clear:both;}
.breadcrumbs {margin-left: 230px; padding:10px 5px 4px 0px; clear:both;}

.breadcrumbs a {
	color:#000;
}
.breadcrumbs a:hover, .breadcrumbs a:active {
	color:#A4042B;
}




.search_box {float:right;  width:140px; text-align:right; margin-top:0px; }
.search_box .searchstring {	
	width:80px;
	font-size:12px;
	padding:2px;
}
.search_box .submitbutton {
	vertical-align: top; margin:2px 0 0 0; 
}

#showlogin {display:block; float:right; position:relative; text-align:right; margin-top:0px; }
#login-box {
	position:absolute;
	width:200px;
	left:-200px;
	top:25px;
	padding:10px;
	font-size:11px;
	background:transparent url(img/bg75.png);
	z-index: 5000;
}
#login-box .inputfield {width:80px; border: 1px solid #c9e8f9; padding:1px;}
.printbutton  {display:block; float:right; margin: -2px 0 0 8px;; }





/* ========================= Left menu========================= */


#leftbox {
	clear:left;
	float:left;

	margin: auto 0;	
	width:210px;
	min-height:100%;
	display:inline;
}


/*-- Menue Left  -----------*/

#leftmenu {
	line-height: 120%;
	min-height: 125px;

}	



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

#leftmenu a {
	display: block;
	padding: 8px 0px 8px 30px;	
	text-decoration: none;
	font-size:14px;
	line-height:100%;
	color: #000;
	border-bottom:1px solid #ccc;	
}




#leftmenu a:hover, #leftmenu a.menu-current, #leftmenu li a.menu-parent {
	color:#A4042B;
	text-decoration:underline;
}
#leftmenu  a.menu-current {
	text-decoration:none;
}

#leftmenu  a.lev0 {font-size:16px; padding: 12px 0px 10px 10px; display:none;}
#leftmenu a.lev1 {font-size:14px; padding: 10px 0px 9px 20px;}


/* ========================= Content ========================= */




.contentbox, .contentboxwide {
	float:left;	
	display:inline;	
	min-height:220px;
	padding:10px 0 0 0;
	margin-left:20px;
	margin-top:10px;
}

.contentbox { 	width:480px;}
.contentboxwide {width:700px;}

.sidebarbox {
	float:right;
	margin: 15px 0 0 0;	
	width:210px;
	display:inline;
	border-left: 1px solid #999;
}

.sidebarbox .inner{	
	margin: 0 10px 0 5px;
}
/*-- footer  -----------*/

.clearfooter {width: 100%; height:50px; clear:both;}

.footer {	
	width:980px;
	height:100px;
	margin:0 auto 0 auto;
	color: #fff;
	text-align:center;
	font-size:12px;
	padding-top:0px;
	position:relative;
	overflow:hidden;
	background:url(img/border.png) no-repeat;

}
.footer a {color: #fff ! important; text-decoration:none;}
.footer #footerboxes {width:50%; height:60px; position:relative;  opacity: 0.4; }



#editthis {padding: 2px 15px; width: 170px; margin-left: 3px; font-size:10px;}	
#editthis a {display:inline; text-decoration: none; color: #fff}




.search_box {margin:5px 0 0 0; width:130px;}
.search_box .searchstring {
	margin:0 0 0 0;
	width:100px;
	border: 1px solid #999;
	color: #ccc;
	background-color: transparent;
	font-size:12px;
	padding:2px 0 0 2px;
}
.search_box .submitbutton { vertical-align: top; margin:0 0 0 0; }

.printbutton { margin:2px 0 0 5px; }


/* Login Box */
#showlogin {display: block; margin: 2px 0 0 1px;}
#login-box { margin-top:3px; padding:10px; border-top: 2px #505567 solid; font-size: 10px; color: #fff ! important;}
#login-box .inputfield {		
	font-size: 10px;
	padding:2px;
	border: 1px solid #999;
	background-color: transparent;
	width:100%;
	color: #ccc;	
}
#login-box .loginsubmit { float:right;}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	Custom Classes (Re-useables)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
	
/*  Float containers fix: */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/*  \*/
* html #clearfix {
	height: 1%;
}
/*  */

.stealth {visibility:hidden; display:none;} /* hides from normal css enabled browsers */


