#navcontainer {
	position: relative;
	margin: -20px auto 20px;
	width: 1000px;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 76%;
	font-style: normal;
	line-height: 150%;
	font-weight: normal;
	font-variant: normal;
	z-index: 30;
}
a { color: #000; }
#nav {
	width: 1000px;
	padding: 0px;
	line-height: 100%;
	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	}
#nav li {
	margin: 0 0px;
	padding: 0 0 0px;
	float: left;
	position: relative;
	list-style: none;
}


/* main level link */
#nav a {
	color: #505050;
	text-decoration: none;
	line-height: 40px !important;
	display: block;
	padding: 8px 17px 12px;
	margin: 0;
	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	}
#nav a:hover {
	color: #2b60ff;
}
#nav .blue a:hover{
	color: #2b60ff;
}

/* main level link hover */

#nav .current a, #nav li:hover > a {
	color: #2b60ff;
}
#nav li.blue-left:hover > a {
	color: #2b60ff;
}
#nav li.blue-right:hover > a {
	color: #2b60ff;
}


/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	line-height: 12px !important;
	border: none;
	color: #fff;
	padding: 8px 17px;
}
#nav ul a:hover {
	background: none;
	color: #2b60ff !important;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
#nav .blue ul a:hover {
	background: none;
	color: #2b60ff !important;
}


/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;

	margin: 0;
	padding: 0;
	width: 140px;
	position: absolute;
	top: 28px;
	left: 0;
	background: #ddd;
	border: solid 1px #b4b4b4;

	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
}
#nav .orange ul {
	display: none;

	margin: 0;
	padding: 0;
	background: #ff7a3c;
	border: solid 1px #bb3b00;

	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
}
#nav .yellow ul {
	display: none;

	margin: 0;
	padding: 0;
	background: #fee163;
	border: solid 1px #c68c00;

	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
}
#nav .blue ul {
	display: none;
	margin: 22px 0px 0px 0px;
	padding: 0;
	border: solid 1px #000000;
	
	/* Fallback for web browsers that doesn't support RGBa */
	background: rgb(0, 0, 0);
	/* RGBa with 0.7 opacity */
	background: rgba(0, 0, 0, 0.7);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00000000, endColorstr=#00000000);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#0090ff00, endColorstr=#0090ff00)";
	
	border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-webkit-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
	-moz-border-radius: 0em 0em 0em 0em / 0em 0em 0em 0em;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul a {
	font-weight: normal;
}

/* level 3+ list */
#nav ul ul {
	left: 136px;
	top: -1px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topright: 0px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomleft: 0px;

	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-bottomright: 0px;
}

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}