/*-------------------------------------------------- 
Pure CSS Menu v1.6

License:
Can be used for personal or commercial puproses
only with this information about author.

Author:
Dmitriy Kubyshkin - http://kubyshkin.ru
email: dmitriy@kubyshkin.ru
---------------------------------------------------*/


#menu{
	position: absolute;
	top: 157px;
	width: 900px;
	list-style: none;
	z-index: 100;
}

#menu li{
	float: left;
	position: relative;
	height: 37px;
}

#menu li.last{
	border-right: 1px solid #333;
}

#menu li a{
	display: block;
	float: left;
	height: 37px;
	text-align:center;
	line-height: 37px;
	border-left: 1px solid #333;
	border-right: 1px solid #888;
	font-size: 14px;
	color: #fff;
	background: #000 url(images/menu-bg.png) repeat-x 0 0;
	text-transform: lowercase;
	padding:0px 5px;

}

#menu li a:hover, #menu li.selected a{
	text-decoration: none;
	border-left: 1px solid #222;
	border-right: 1px solid #aaa;
	background-position: 0 -37px;
}

#menu ul{
	float: left;
}

* > #menu ul{
	float: none;
	display: none;
	position: absolute;
	z-index: 100;
	left: 0;
	top: 37px;
}

#menu li:hover ul{
	display: block;
}

#menu ul li{
	background: none;
	display: inline;
	float: none;
	margin: 0;
	height: auto;
	cursor: pointer;
}

html>/**/body #menu ul li{
	display: block;
}

#menu .dropDown{
	width: 238px;
	position: relative;
	z-index: 100;
	top: -1000px;
	margin-bottom: -1000px;
	margin-right: -133px;
}

#menu .dropDown li{
	border: 0;
}


* > #menu .dropDown{
	top: 0;
	width: auto;
	margin: 0;
	z-index: 1;
}

#menu .dropDown a{
	float: left;
	margin-top: 1000px;
}

* > #menu .dropDown a{
	float: none;	
	margin: 0;
}

#menu .dropDown a:hover{
	margin-right: 50px;
}

* > #menu .dropDown a, * > #menu .dropDown a:hover{
	margin: 0;
	clear: none;
}

#menu .dropDown li a{
	height: 16px;
	line-height: 16px;
	color: #555;
	font-size: 11px;
	font-weight: normal;
	position: relative;
	margin-top: 0;
	padding-left: 5px;
	text-align: left;
	width: 124px;
	text-transform: none;
	background: #fff;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	border-bottom: 0;
	border-top: 0;
	position: relative;
	z-index: 1000;
	clear: left;
	cursor: pointer;
}
#menu .dropDown li a.top{
	border-top: 1px solid #222;
}

#menu .dropDown li a.bottom{
	border-bottom: 1px solid #222;
	background: #fff;
}

#menu .dropDown li a:hover{
	color: #b00;
	margin-right: 50px;
	background: #eee;
}
