/* CSS Document */

#dropdown {
	padding: 0;
	margin: 0;
	margin-left:28px;
	list-style: none;
}

#dropdown li {
	float: left;
	position: relative;
}

.hauptnav{
	border: 0px solid black;
	padding-right:14px;
	position:relative;
	top:4px;
	display:block;
	height:24px;
}

.hauptnav a{
	/*color:#6e6e6e;*/
	color: #666;
	font-size:0.8em; 
	font-weight:bold;	
	text-decoration: none;
}

.hauptnav a:hover{
	/*color:#2c86e6;*/
	color:#76a7cc;
	text-decoration: none;
}

.subul{
	display: none;
	/*width: 10em;*/
	position: absolute;
	z-index: 1000;
	top: 1.45em;
	left: 0px;
	background-color: #FFFFFF;
	/*border:1px solid #2c86e6;*/
	border:1px solid #76a7cc;
	
	padding: 0;
	margin: 0;
	list-style: none;

	width:162px;
}

.subul li{
	float:left;
	width: inherit;
	height:20px;
	width:162px;
	white-space:nowrap;	

}

.subul a{
	display:block;
	float:left;
	width:162px;
	color:#666;
	font-size:0.7em; 
	font-weight:bold;
	text-decoration:none;
	height:16px;
	padding-top:4px;
	
	background-image:url(../img/bg_dropdown_inaktiv.png);
	background-repeat:repeat-x;
}

.subul a:hover{
	display:block;
	width:162px;
	color:#000000;
	font-size:0.7em; 
	font-weight:bold;
	height:16px;
	padding-top:4px;
	
	background-image:url(../img/bg_dropdown_aktiv.png);
	background-repeat:repeat-x;
}

#dropdown li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */

	/*top:auto;
	left:auto;*/

}

/*
.on {text-decoration:none; color:#ff0000;}
.on:active {text-decoration:none; color:#ff0000;}
.on:visited {text-decoration:none; color:#ff0000;}
.on:link {text-decoration:none; color:#ff0000;}
a.on:hover {text-decoration:none; color:#ff0000;}
*/

#dropdown li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}


