/**************************MENU*****************/
#nav {
	float:left;
	width:1000px;
	background:#252525;
	height:40px;
	border-radius:5px;
	margin:0;
	border:1px solid #000;
	position:relative;
	box-shadow:0 4px 5px #0183ab;
}
#nav ul {
	list-style:none;
	margin:0;
	padding:0;
}
#nav > ul > li {
	position:relative;
	float:left;
	display:inline;
	padding:0 30px;
	border:1px solid #4d4d4d;
}
#nav > ul > li > a {
	color:#fff;
	font-weight:bold;
	background:#252525;
	display:block;
	text-decoration:none;
	margin:0 1px 0 0;
	line-height:38px;
	border-right:none;
	text-shadow:1px 1px 0 #020202;
}
#nav ul li > a:hover, #nav ul li.current > a  {
	color:#7cebff;
	text-decoration:none;
}
#nav ul li.home_btn {
	background:#252525;
	padding:0 14px;
	border-radius:5px 0 0 5px;
}
#nav ul li.home_btn a {
	width:19px;
	height:38px;
	display:block;
	background: url(../images/home.png) no-repeat left 10px;
}
#nav ul li.home_btn a.current, #nav ul li.home_btn a:hover {
	background: url(../images/home2.png) no-repeat left 10px;
}
#nav ul ul {
	padding:5px 0 0;
	border-radius:0px;
	position: absolute;
	left: -5000px;
	min-width: 100%;
	z-index: 100;
	opacity: 0;
	background: #252525;
}
#nav ul li:hover ul {
	left: 0;
	opacity: 1;
}
#nav ul ul li:hover ul {
	left: 100%;
	opacity: 1;
}
#nav ul ul li {
	white-space: nowrap;
	padding: 0;
	margin: 0 0px;
}
#nav ul ul > li:last-child {
	border-bottom: none;
}
#nav ul ul a {
	font-size: 14px;
	color: #fff;
	padding: 0 15px;
	text-decoration: none;
	line-height: 28px;
	display: block;
	font-weight:bold;
}
#nav ul ul a:hover {
	color:#fff;
	border-radius: 0px;
	text-shadow: none;
	box-shadow:none;
	background:#019edc;
	border-bottom:none;
}