/***********************************************************************
  Maja Berger Screen Styles
  --------------------------
  Datei: screen.css
  Datum: Oktober 2009
  Autor: Maja Berger - info@MBcom.eu
***********************************************************************/

/***********************************************************************
  Allgemeine Element-Definitionen
***********************************************************************/

body,td,th {
	color: #333;
	font-size: medium;
	background-color: #dce5f6;
	border: 0em;
	padding: 0em;
	margin: 0em;
	font-family: Verdana, Geneva, sans-serif;
}

h1 {
	font-size: x-large;
	color: #333;
	margin-bottom: 0.9em;
	border-style: none;
	text-decoration: none;
	font-weight: lighter;
}

h2 {
	font-size: large;
	color: #666;
	margin-bottom: 1.5em;
}

/***********************************************************************
  Alles umschliessender Container
***********************************************************************/

#gesamt {
	width: 1200px;
	border: hidden;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: auto;
	margin-bottom: auto;
	padding: 0px;
	font-size: 11px;
	left: 0px;
	height: auto;
	background-color: #dce5f6;
}

/* Abstand nach unten */
h2, p, ul, ol {
	margin-bottom: 0.5em;
}  


/***********************************************************************
  Kopfbereich
***********************************************************************/  

div#gesamt div#kopf{
	background-image: url(../bilder/hintergrund.jpg);
	background-color: #1b5da6;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	width: auto;
	position: relative;
	height: 162px;
	border-bottom:#FFF 1px solid;
	border-left:#FFF 1px solid;
	border-right:#FFF 1px solid;
}

div#gesamt div#logo{
	padding: 0px 0px 0px 13px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	width: 250px;
	position: relative;
	float: left;
	height: auto;
	text-decoration:none;
}

div#gesamt div#banner{
	padding: 0px 0px 0px 0px;
	margin: -77px 10px 0px 0px;
	overflow: hidden;
	width: 400;
	position: relative;
	float: right;
	height: auto;
	text-decoration:none;
}

img {border:none;}

div#gesamt div#bannerleiste{
	padding: 5px 0px 0px 22px;
	margin: 0px;
	overflow: hidden;
	width: auto;
	height: 178px;
}

div#gesamt div#headline{
	font-family: "Courier New", Courier, monospace;
	padding: 0px 0px 0px 25px;
	margin: 10px 0px 0px 0px;
	text-align: left;
	line-height: normal;
	overflow: visible;
	width: auto;
	position: relative;
	font-weight: lighter;
	font-size: 14px;
	float: left;
	height: 15px;
}

div#gesamt div#button{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 100px;
	position: absolute;
	top: 50px;
	left: 750px;
}

/***********************************************************************
  Allgemeine Klassendefinitionen
***********************************************************************/
.cebit {
	border:none;
	position:relative;
	right: -200px;
	top: -600px;
	float: right;
}

.hintergrund_weiss {
	background-color: #FFF;
}

.weiss {
	color: #FFFFFF;
}

.rot {
	color: #FF0000;
}


.bold {
	font-weight: bold;

}

.pfeil {
	font-weight: bold;
}

.right {
    text-align:right;
    padding: 0.3em 0.1em 0.3em 0.1em;
}


.text {
    margin-right: 0.8em;
}	

.abstand {
    margin-bottom: -1.4em;
}

.left {
	vertical-align:top;
    text-align: left;
    padding: 0.3em 0.1em 0.3em 0.1em;
    width: 110px;
}

.small {
	font-size: small;
}

.gross {
	font-size: 13px;
}


.clear {
	text-decoration: none;
}

/***********************************************************************
  Hauptnavigation
***********************************************************************/


.menu, .menu ul {
	float: left;
	margin: -29px 0px 0px 25px;
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	display: block;
	width: auto;
}

.menu li {
    border: 1px solid #fff;
    background: #005672;
	margin: 0px 20px 0px 0px;
	display: block;
	width: 225px;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu 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 */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #fff;
	font-weight: bolder;
	background: #005672;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #fff;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #fcbb1f;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #fff;
	width: 225px;
}

.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	width: 225px;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: ##fcbb1f;
}

/* Fix for IE5/Mac \*//*/

.menu a {
	float: left;
}

/***********************************************************************
  Inhaltbereich  
***********************************************************************/

#gesamt #inhalt {
	color: #333;
	padding: 10px 25px 0px 25px;
	margin: 0px 0px 0px;
	width: auto;
	line-height: 1.3em;
	height: auto;
}
#gesamt #inhalt_links {
	padding: 25px 20px 20px 0px;
	margin: 0px 0px 0px 0px;
	width: 510px;
	line-height: 1.3em;
	height: auto;
	float: left;
}
#gesamt #inhalt_rechts {
	color: #333;
	padding: 20px 15px 0px 20px;
	margin: 25px 0px 20px 0px;
	width: 580px;
	line-height: 1.3em;
	height: auto;
	text-align: left;
	background-color: #FFF;
	float: left;
}

/***********************************************************************
  Navigation im Inhaltbereich 
***********************************************************************/

#gesamt #inhalt a:link,
#gesamt #inhalt a:visited,
#gesamt #inhalt a:hover, 
#gesamt #inhalt a:active {
	color: #036;
	text-decoration: none;
	border-bottom: hidden;
}

/***********************************************************************
  Listen im Inhaltbereich
***********************************************************************/

#gesamt #inhalt ul li {
color: #333;
	font-size: small;
	background-color: #fff;
	border: 0em;
	padding: 0em;
	margin: 0em;
	font-family: Verdana, Geneva, sans-serif;
}



/***********************************************************************
  Fusszeile 
***********************************************************************/

#gesamt #fuss {
	clear: both;
	height: auto;
	padding: 10px 0px 0px 0px;
	background-color: #dce5f6;
	text-align: right;
	color: #333;
	width: auto;
	bottom: auto;
	font-size: 10px;
	border-top-color: #FFF;
	border-top-style: solid;
	border-top-width: 1px;
	margin: 10px 0px 0px 0px;
}
 
#gesamt #fuss a:link,
#gesamt #fuss a:visited,
#gesamt #fuss a:hover, 
#gesamt #fuss a:active {
    color: #036;
    text-decoration: none;
	border-bottom: hidden;
}

.center {
	text-align: center;
}

/***********************************************************************
  Banner
***********************************************************************/

.m_banner_hide{
	display:none;
}
.m_banner_show{
	display:block;
    padding: 0px 470px 2px 0px;
	margin: 0px;
	overflow: hidden;
	width: auto;
	height: 78px;
}
