/**************************MENU*****************/
#nav {
	float:left;
	width:790px;
	margin:16px 0 0;
}
#nav > ul {
	float:left;
	list-style:none;
	margin:0;
	padding:0;
	border-left:1px solid #5a5a5a;
}
#nav > ul > li {
	float:left;
	display:inline;
	padding:0 18px;
	border-right:1px solid #5a5a5a;
	position:relative;
}
#nav > ul > li > a {
	color:#5a5a5a;
	line-height:23px;
	font-size:16px;
	display:block;
	text-decoration:none;
	text-transform:uppercase;
}
#nav ul li.current a:after {
	display:block;
	content:"";
	margin:0 auto -12px;
	width:15px;
	height:12px;
	background: url(../images/nav_arrow.png) no-repeat center bottom;
}
#nav ul li.current > a {
	color:#fa1800;
	text-decoration:none;
}
#nav ul li:hover > a {
	color:#fa1800;
	text-decoration:none;
}
#nav ul ul {
	padding:12px 0 0;
	border-radius:0;
	position: absolute;
	left: -5000px;
	min-width: 100%;
	z-index: 100;
	opacity: 0;
	overflow:hidden;
}
#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;
	background: #fefefc;
	border-bottom:1px solid #5a5a5a;
}
#nav ul ul > li:last-child {
	border-bottom: none;
}
#nav ul ul a {
	font-size: 16px;
	color: #777;
	padding: 0 15px;
	text-decoration: none;
	line-height: 28px;
	display: block;
	font-family: 'neosansregular';
}
#nav ul ul a:hover {
	color:#fff;
	border-radius: 0px;
	text-shadow: none;
	background:#fa1800;
	border-bottom:none;
}
