/*menu container*/
.menucontainer{
	width: 900px;
	background-image: url(../images/bgOFF.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
/*basic menu styling*/
.menu {
	float:left;
	font-family: arial, verdana, sans-serif;
	width:900;
	position:relative;
	font-size:16px;
	border-top:4px solid #036;
	color: #333;
	font-weight: bold;
	text-align: center;
	letter-spacing: 4px;
	background-image: url(../images/bgOFF.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	float:left;
	position:relative;
	width: 900px;
}
.menu ul li {
	float:left;
	position:relative;
	display:inline;
	width: 127px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	text-align: center;
}
/*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:#333;
	line-height:35px;
	height:40px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 24px;
}
* 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:14px;
}
/*specific to non IE browsers*/
/*main nav over state*/
.menu ul li:hover a {
	color:#36C;
	background: transparent url(images/bgON.gif) bottom left repeat-x;
}
/*show drop-down list*/
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:36px;
	margin-top:1px;
	left:0;
	width:127px;
	border-top:1px solid #fff;
}
/*drop-down on state*/
.menu ul li:hover ul li a {
	display:block;
	background:#e3e3e3;
	color:#333;
	height:20px;
	line-height:14px;
	width:96px;
	border-top:1px solid #fff;
	padding-top: 10px;
	padding-right: 16px;
	padding-left: 16px;
	padding-bottom: 2px;
}
/*sub drop-down over state*/
.menu ul li:hover ul li a:hover {
	color:#fff;
	background-color: #36C;
}
