#nav, #nav ul { /* all lists */
	clear: both;
	float: left;	
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #C61720;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #B11217;
	margin-bottom: 16px;
	background-color: #C61720;
	background-image:url(../images/meni_bg.gif);
	background-position:left;
	background-repeat:no-repeat;
	background-position:bottom;
	background-position:left
}

#nav a {
	padding: 10px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
}

#nav a:hover{background-color:#55a542; text-decoration:none;}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #C61720;
	width: 250px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{
	width: 230px;
	float: left;
	clear: both;
}

#nav li ul li a{
	padding: 5px 10px 5px 10px;
	width: 230px;
	float: left;
	clear: both;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}