/***********************************
cssmenu.css
author: design aspekt / oh@design-aspekt.com
last modified: 2005-05-13
***********************************/

/* Links */
#nav a {
	display: block;
	padding: 0px 7px 0px 7px;
	margin: 0px;
}

#nav li li a {
	display: block;
	background-color: #f2ead9;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	padding: 3px 3px 3px 7px;
	margin: 0px;
}

#nav li li a:hover {
	text-decoration: underline;
}

/* Listen */
#mainNavi ul {
	height: 10px;
	vertical-align: middle;
	padding: 0px;
	margin: 0px; 
	list-style: none;
}

#nav li {
	position: relative;
	float: left;
	text-align: left;
	cursor: default;
	background-color: transparent;
	margin: 0px;
	padding: 0px;
}

#nav li ul {
	position: absolute;
	display: none;
	top: 100%;	/* Fix für IE -> sonst rechts oben statt unten links */
	left: 0px;	/* Fix für IE -> sonst rechts oben statt unten links */
	font-weight: normal;
	background-color: transparent;
	background: url(../pix/onepix.gif) bottom left no-repeat;	/* ohne Hintergrundbild versagt der IE !!?? */
	padding: 8px 0px 0px 0px;
	margin: 0px;
}

#nav > li > ul {	/* IE-Fix stört andere Browser -> wird hier wieder korrigiert */
	top: auto;
	left: auto;
}

#nav li li {
	display: block;
	float: none;
	width: 170px;
	text-align: left;
	background-color: transparent;
	border-right: 1px ridge #595347;
}

#nav li > ul > li {	/* nicht IE; nur für andere browser */
	margin: 0px 0px 0px 0px;
}

.last_sub { border-bottom: 1px ridge #595347; }

#nav li:hover ul { display: block; }	/* geht nicht in IE, obwohl Standard => JS-Workaround in inc.header.php */
#nav li.over ul	 { display: block; }	/* neue Pseudo-Klasse für IE */