/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu {font-family: verdana, sans-serif; width:600px; height:20px; position:relative; font-size:12px; z-index:100;}

.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	
	width:100px;
	height:20px;
	text-align:center;
	color:#fff;
	line-height:20px;
	font-size:12px;
	overflow:hidden;
	border-right-width: 0.5px;
	border-right-style: solid;
	border-right-color: #E2E2E2;
	
}

.menu ul {padding:0; margin:0; list-style: none;}
.menu ul li {float:left; position:relative;}
.menu ul li ul {display: none;}

/* specific to non IE browsers */
.menu ul li:hover a {color:#fff; background:#d91717;} /*Hintergrund Top-Navigation*/
.menu ul li:hover ul {display:block; position:absolute; left:-1px; top:20px; width:140px; z-index:500;} /*width für Untermenu allgemein*/
.menu ul li:hover ul li a.hide {background:red; color:white;}
.menu ul li:hover ul li:hover a.hide {
	color:white;
	background-color: red;
}
.menu ul li:hover ul li a {
	font-size:11px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E2E2E2;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E2E2E2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E2E2E2;
	color:white;
	background-color: #d91717;
	width:100px;	
	display:block;
					/*width für tatsächlichen Untermenu-Eintrag*/
}

/* Subsubmenu */
.menu ul li:hover ul li ul {display: none;}
.menu ul li:hover ul li a:hover {
	color:#000;
	background-color: #E8E8E8;
}
.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:10px; top:0;}
.menu ul li:hover ul li:hover ul.left {left:-100px;}

