
#MenuBar {
  margin-left: auto;
	margin-right: auto;
	width:960px;
	height:30px;
	}

#nav {
  position:absolute;
  top:0px;
  left:20px;
  margin-left: auto;
	margin-right: auto;
	width:960px;
	height:20px;
	color:#ffffff;
}

#nav li {
	font: 1.0em Calibri,Tahoma, Arial, Helvetica, sans-serif;
  cursor:pointer;
	float: left;
	position: relative;
	font-weight: 600;
	letter-spacing:1px;
	color: #ffffff;
	list-style: none;
	line-height:22px;
	padding:  2px 2px;
	margin: 0;
}


/* main level link */
#nav a {
  cursor:pointer;
	font-weight: 600;
	letter-spacing:1px;
	color: #ffffff;
	text-decoration: none;
	padding:  8px 8px;
	margin: 0;

}

#nav a:hover {
	background: #000;
	color: #fff;
	height:15px;
}

/* main level link hover */


#nav .current a, #nav li:hover > a {
	background: #8C9EB4 url("images/gradient.png") repeat-x 0 -20px;
	color: #444;
	border-top: solid 1px #f8f8f8;
	height:15px;

}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #666;
	height:20px;
}

#nav ul a:hover {
	background: #8C9EB4 url("images/gradient.png") repeat-x 0 -100px !important;
	color: #fff !important;

}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;

	margin: 0;
	padding: 0;
	width: 240px;
	position: absolute;
	top: 25px;
	left: 0;
	background-color:#E8EDF1;
	border: solid 1px #b4b4b4;

}
#nav ul li {
	float: none;
	margin: 0;
	padding: 8px;
}

#nav ul a {
	font-weight: normal;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
}

#nav ul li:last-child > a {
}

/* 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%;
}