﻿

/* file(nav.css) */

/* All <ul> tags in the menu including the first level */

.menulist, .menulist ul {
	list-style: none; 
	margin: 0;
	padding: 0;
}

.menulist {
	float: left;
	font-size:12px;
	height:30px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	background:#ffffff;
	visibility: hidden;
	position: absolute;
	top: 30px;
	left: 0px;
	width: 180px;
	border-bottom: 0px solid #f99f1f;
}	


/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	background-image:none;
	top: 0px;
	left: 280px;
}

.menulist li {
	margin:0;
	float: left;
	position: relative;
	display: block;
	padding-left:0px;
	background: url(../images/menu-bg1.jpg);
	border-right:#545454 solid 1px;
	padding:0px 7px 0px 6px;	
}

.menulist li.currentpage li,
.menulist li.currentpage li a {
}

/* 
Items in submenus - override float/border/margin from above, restoring default vertical style 
Sub Menu items under the main menu bar
*/
.menulist ul li {
	float: left;
	display: block;
	margin:0;
	height:30px;
}

.menulist a {
	display: block;
	margin:0;
	padding:0 21px;
	color:#DADADA;
	line-height:30px;
	white-space:nowrap;
	height:30px;
	text-decoration:none;
	float:left;
}

.menulist a, .menulist li.currentpage ul li a {
	color:#DADADA;
	font-size:12px;
	font-weight:bold;	
}

.menulist li.currentpage a {
	
}

.menulist li:hover, .menulist li.currentpage {
	background: url(../images/menu-bg-selected.jpg) no-repeat left;
}

.menulist li.currentpage ul li a {background-image:none;}

.menulist ul li a,
.menulist li.currentpage li a {
	line-height:30px;
	padding:0px 20px 0px 20px;
	height:30px;
	margin:0;
	width:180px;
	font-size:11px;
	text-decoration:none;
	white-space:normal;
}


.menulist ul li a:hover, 
.menulist ul li a.highlighted,
.menulist li.currentpage li a:hover {
	text-decoration: none;
	color:#DADADA;
	height:30px;
}
.menulist ul li a.highlighted {text-decoration:none;}
.menulist ul li a:hover, .menulist li.currentpage ul li a:hover {
}
/* List items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {}
.menulist a:hover, .menulist a.highlighted, .menulist li.currentpage {
	text-decoration:none;	
}

.menulist ul li a:hover {
/*background:#B2BEC7;*/
}

.menulist ul a.highlighted  {
	border-top:none;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {display: none;}
.menulist ul a .subind {
	display: block;
	float: right;
}
.menulist ul a {float: none;}
.menulist ul a:hover {}
.menulist ul a.highlighted {}

/* Holly Hack \*/
* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {height: 1%;}
/* End Hack */

