/**************************MENU*****************/
#nav1 {
	float: right;
	background: #122c45;
	border-radius: 4px;
	padding: 10px 0;
}
#nav1 ul {
	list-style: none;
	margin: 0;
	padding: 0
}
#nav1 > ul > li {
	position: relative;
	float: left;
	display: inline;
	line-height: 18px;
	background: url(../images/nav_libg.png) no-repeat right center;
	padding: 0 20px;
}
#nav1 > ul > li > a {
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
#nav1 ul li a:hover {
	color: #ffad00;
}
#nav1 ul li.current > a {
	color: #ffad00;
}
#nav1 ul li:last-child {
	background: none;
}
#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: #122c45;
}
#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: 13px;
	color: #fff;
	display: block;
	padding: 0 15px;
	text-decoration: none;
	line-height: 30px;
	display: block;
}
#nav1 ul ul a:hover {
	color: #000;
	border-radius: 0px;
	text-shadow: none;
	background: #ffaf00;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}