/*****  *****/
#nav {
	background-image: url('../img/bg_nav_purp.gif');
	width: 100%;
	height: 22px;
	z-index: 1;
}
#listMenuRoot{
	position: relative;
	margin-left: 65px;
}


/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 border:0px;
 list-style: none;
 font-family: Arial, Verdana, Helvetica, sans-serif;
 font-size: 13px;
 letter-spacing:.02em;
 z-index: 1099;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
    visibility: hidden;
    position: absolute;
    top: 2.0em;
    width: 151px;
    font-size: 11px;
    letter-spacing:.02em;
    left: 0px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
    top: 0px;
    left: 151px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	position: relative;
	margin-right: 0px;
	width: 151px;
}
.menulist li li li {
	float: left;
	position: relative;
	margin-right: 0px;
	width: 140px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
    float: none;
    margin-right: 0;
    margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #fff;
 text-decoration:  none;
 vertical-align: middle;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 /*background-color: #fff;*/
}
.menulist  a.highlighted {
 color: #FFF;
 /*background-color: #fff;*/
}

/* Top Nav*/ 
.menulist a#tNav {
    text-align: center;
    font-weight: bold;
}
.menulist a#tNavOn {
		/*background-image: url('../img/nav_bg_hi.gif');
        background-image: url('../img/nav_bg_purp.gif');*/
		text-align: center;
		font-weight: bold;
}
.menulist a#tNavOn:hover, .menulist a#tNavOn:focus  {
		/*background-color: #6c9cc9;
        background-image: url('../img/nav_bg_purp.gif');*/
		text-align: center;
		font-weight: bold;
}
.menulist a#tNav:hover, .menulist a.highlighted#tNav, .menulist a:focus {
       /*  background-image: url('../img/nav_bg_purp.gif');
	 text-align: center; */
}
/* Sub Nav*/ 
.menulist a#sNav {
	background-color:#e3e3e3;
	font-size:11px;
	font-style:normal;
	color:#660066;
	font-weight:normal;
	border-color:#990099;
	border-width:1px;
	border-style:solid;
	height:18px;
	line-height:18px;
}
.menulist a#sNavSeperator {
        background-color: #e69a2d;
		border-right: 1px solid #d15407;
        margin: 0px 0px -1px 0px !important;
		margin: -5px 0px -1px 0px;
		padding:0px;
}
.menulist a#sNavBottom {

}
.menulist a#sNav:hover, .menulist a.highlighted#sNav, .menulist a:focus {
	background-color:#ccc;
    font-weight: bold;
}
.menulist a#sNavBottom:hover, .menulist a.highlighted#sNavBottom, .menulist a:focus {

}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}
/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */