/* MAIN MENU--------------------------------------------------------------------------------------------------------------*/				

/* style the outer div to give it width */
.menu {
	width:960px;
	color:#b3b3b3;
	font-size:14px;
	float:left;
	font-size-adjust:none;
	font-style:normal;
	font-variant:normal;
	z-index: 500;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	z-index: 500;
}
/* style the sub-level lists */
.menu ul ul {
	width:130px;
	margin-top:10px;
}
/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float:left;
	padding:20px 0;
	z-index: 500;
}
/* style the sub level list items */
.menu ul ul li {
	display:block;
	width:120px;
	height:auto;
	position:relative;
	line-height:10px;
	font-size:12px !important;
	font-weight:normal !important;
	padding:0px;
	z-index: 500;
}
/* style the links for the top level */
.menu a {
	display:block;
	float:left;
	height:100%;
	color:#b3b3b3;
	padding:0 30px 0 0;
	text-align:left;
	text-decoration:none;
}
/* style the sub level links */
.menu ul ul a {
	display:block;
	background:#414141;
	color:#b3b3b3;
	width:160px;
	height:100%;
	line-height:20px;
	padding:5px 10px;
	border-bottom:1px solid #3e3e3e;
	text-decoration:none;
}
.menu li:hover {
	position:relative;
}
* html .menu a:hover {
	position:relative;
}
/* first */
.menu a:hover {
	color:#ffffff;
	background-position:left center;
	background-repeat:no-repeat;
	text-decoration:none;
}
.menu :hover > a {
	color:#ffffff;
	background-position:left center;
	background-repeat:no-repeat;
	text-decoration:none;
}
/* second */
.menu ul ul a:hover {
	color:#ffffff;
	background:#e3dcce;
	text-decoration:none;
}
.menu ul ul :hover > a {
	color:#ffffff;
	background:#3a3939;
	text-decoration:none;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:30px;
	left:0;
	width:140px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
	height:auto;
}
.menu li .current {
	display:block;
	text-decoration:none;
	background-position:left center;
	background-repeat:no-repeat;
	color:#ffffff;
}
