/* CSS Document */
.dropdownmenu, .dropdownmenu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menuhead
{
	font-size: 14px;
	background-color:#FFF;
	font-weight:normal;
}

.dropdownmenu ul {
	position: absolute;
	top: -999em;
	width: 100px;
	font-size: 14px;
	color: #000000;
	background-color:#FFF;
}

.dropdownmenu ul li {
	width: 100%;
}

.dropdownmenu li:hover {
	visibility: inherit;
}

.dropdownmenu li {
	float: left;
	position: relative;
	width: 70px;
	height:25px;
}

.dropdownmenu li:first-child {
	border-left: 1px solid #fff;
}

.dropdownmenu ul li:first-child {
	border-left: none;
}

.dropdownmenu a {
	display: block;
	position: relative;
	font-size: 12px;

}

.dropdownmenu li:hover ul {
	left: 0;
	top: 25px;
	z-index: 9999;
}

.dropdownmenu {
	float:left;
	text-align:left;
}

.dropdownmenu a {
	color: #fff;
	font-weight: bold;
	padding: 0px;
	text-decoration: none;
}

.dropdownmenu ul a {
	font-weight: normal !important;
	color: #fff !important;
	background: #555;
	padding: 6px 10px 6px 10px;
}

.dropdownmenu a {
	color: #fff;
}

.dropdownmenu li a.current {
	background: #fff;
	color: #FFE6A7;
}

.dropdownmenu li {
	background: #fff;
	width: 200px;
	margin-top: 10px;
}

/*Eintrag ohne Liste*/
.dropdownmenu li a{
	background: #fff;
	width: 100px;
	color:#000;
	font-size: 14px;
	font-weight:normal;
}


.dropdownmenu li li {
	background: #fff;
	border-right: none !important;
	margin-top: 0px;
}

.dropdownmenu li li a{
	width: 200px;
	background: #555;
	color:#fff;
	font-size: 12px;
}


.dropdownmenu li li li {
	background: #333;
}

.dropdownmenu li:hover, .dropdownmenu li a:hover{
	background: #fff;
	outline: 0;
	color: #666 !important;
}

.dropdownmenu a:focus, .dropdownmenu a:hover{
	background: #666;
	outline: 0;
	color: #ddd !important;
}

.dropdownmenu li li a:focus, .dropdownmenu li li a:active, .dropdownmenu li li a:hover{
	background: #666;
	outline: 0;
	color: #ddd !important;
}


