/****************************** Верхнее выпадающее меню **********************************/
#nav {
	z-index:1000;
	padding:0px;
	padding-top:8px;
	margin:0px 0px 0px 8px ;
	/*top:7px;*/
	position:relative;
}

#nav a{
	text-decoration:none;
	color:#FFFFFF;
	padding:0px;
	margin:0px;
	font-size:11px;
}


#nav li { /* all list items */
	float: left;
	position: relative;
	text-align: left;
	list-style: none; 	
}

#nav li ul li{ /* all list items */
	width: 150px;	
	line-height: 30px;
	background-color: #000000;	
	padding:0px 0px 0px 5px;
	margin: 0px;
	background-image: url("../img/hl.png");
	background-position: left bottom;
	background-repeat: repeat-x;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

#nav li ul li:hover  a{
	color:#C3C3C3;		
}



#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: -150;
}




#nav 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: 40px;
	left: -40px;
	
}

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;	
}
