body{
	padding:0;
	margin:0;
	background-color: #000;

}

.menucontainer{
	background-color: #000;
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 1100px;
}
/*basic menu styling*/
.menu {
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	width:90%;
	position:relative;
	font-size:13px;
	font-weight:bold;
	color: #000;
	background-repeat: repeat-x;
	background-position: center bottom;
	background-color: #000;
	padding: 15px;
}
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	float:left;
	position:relative;
}
.menu ul li {
	float:left;
	position:relative;
	display:inline;
	color: #CCC;
	background-repeat: no-repeat;
	background-position: right bottom;
}
/*style of main items normal state*/
.menu ul li a, .menu ul li a:visited {
	float:left;
	display:block;
	text-decoration:none;
	color:#000;
	width:auto;
	color:#918F8E;
	line-height:20px;
	height:20px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 16px;
}
* html .menu ul li a, .menu ul li a:visited {width:auto;w\idth:auto;}
/*hide sub nav items*/
.menu ul li ul {display:none;}
/*clear the main nav bg*/
.menu ul li ul li{background:none;}
/*style for table of sub nav items*/
table {
	margin:-1px;
	border-collapse:collapse;
	font-size:12px;
}
/*specific to non IE browsers*/
/*main nav over state*/
.menu ul li:hover a {
	color:#FFF;
	background-color: #666;
}
/*show drop-down list*/
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:36px;
	margin-top:1px;
	left:0;
	width:100%;
	border-top:1px solid #000;
}
/*drop-down on state*/
.menu ul li:hover ul li a {
	display:block;
	background: #F5F5F5;
	color:#FFF;
	height:auto;
	line-height:20px;
	width:120px;
	border-top:1px solid #fff;
	font-weight: normal;
	background-color: #403726;
	padding-top: 4px;
	padding-right: 16px;
	padding-bottom: 2px;
	padding-left: 16px;
}
/*sub drop-down over state*/
.menu ul li:hover ul li a:hover {
	color:#000;
	background-position: 4px 8px;
	background-color: #000;
	background-repeat: no-repeat;
}

