/**************************MENU*****************/
.menucon {
	float:left;
	width:100%;
	height:46px;
	background:url(../images/nav_bg.png) repeat-x left top;
}
#nav1 {
	float:left;
	width:978px;
	border-left:1px solid #222222;
	border-right:1px solid #404040;
}
#nav1 ul {
	list-style:none;
	margin:0;
	padding:0
}
#nav1 > ul > li {
	position:relative;
	float:left;
	display:inline;
	width:242px;
	border-right:1px solid #222222;
	border-left:1px solid #404040;
}
#nav1 > ul > li > a {
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-transform:uppercase;
	line-height:46px;
	display:block;
	text-align:center;
	text-shadow:0px 1px 1px #252525;
	text-decoration:none;
}
#nav1 ul li a:hover {
	background:url(../images/nav_hoverbg.png) repeat-x left top;
}
#nav1 ul li.current > a {
	background:url(../images/nav_hoverbg.png) repeat-x left top;
}
#nav1 ul ul {
	padding:5px 0px;
	border-radius:0 0 5px 5px!important;
	position:absolute;
	left:-5000px;
	min-width:100%;
	z-index:100;
	opacity:0;
	background:#2b2b2b;
}
#nav1 ul li:hover ul {
	left:0;
	opacity:1;
}
#nav1 ul ul li:hover ul {
	left:100%;
	opacity:1;
}
#nav1 ul ul li {
	white-space:nowrap;
	padding:0;
	margin:0 0px;
	border-bottom:1px solid #666;
}
#nav1 ul ul > li:last-child {
	border-bottom:none;
}
#nav1 ul ul a {
	font-size:16px;
	color:#fff;
	display:block;
	padding:0 25px;
	text-decoration:none;
	line-height:32px;
	display:block;
}
#nav1 ul ul a:hover {
	border-radius:0px;
	background:#101010;
	text-shadow:none;
}
