/* HORIZONTAL FREESTYLE MENU LAYOUT */
ul#listMenuRoot:after {/*clears the menu container*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#index ul#listMenuRoot,#internal ul#listMenuRoot{
	position:absolute;
	top:-35px;	
	z-index:0;
}
#admin #listMenuRoot{
	margin-left:200px;
}

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.0em; margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 150px;
	border:1px solid #ccc;
	z-index:100;/*set to force drop menu to display on top of everything*/
}
#admin .menulist ul{
	top:1.5em;
	margin-top:18px;
}
/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: 0; margin-top: 0;
	left: 148px;
}

/*
 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;
	display: block;
	position: relative;
	margin:0;padding:0; 	
}

#admin .menulist li a{
	padding:0.5em;
	font-size:1.4em;	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
}

/* Links inside the menu */
.menulist li a{
	display:block;
	height:19px;	
	padding:4px 10px 0 10px;
	text-align:center;
	text-transform:uppercase;
	font-size:0.9em;
	font-weight:bold;
	margin-top:5px;
	margin-right:1px;
	background:url(../images/gfx/menu-back.gif) #fff 0 0;
	border:1px solid #fff;
	border-bottom:0 none;	
}
.menulist a:link, .menulist a:visited {	
	color:#666;
	text-decoration: none;
}
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist li.active a{
	color: #537399;
	background: #FFF;
}

#admin .menulist a,#admin .menulist a:hover, #admin .menulist a.highlighted:hover, 
#admin .menulist a:focus,#admin .menulist ul{
	border:0 none;
background:none;
}
#admin .menulist ul a:hover, #admin .menulist ul a.highlighted:hover, 
#admin .menulist ul a:focus{
	background:transparent;
}
#admin .menulist a:hover,#admin .menulist .active a{background:#fff;border-bottom:1px solid #fff}
.menulist a.highlighted {
	color: #537399;
	background-color: #FFF;
}

/* 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;
}
/* */
#listMenuRoot li ul{display:none;}
.menulist ul li{display:none;}



/*
.menulist li#AboutUs  a{width:79px; background: url(../images/gfx/nav-about.png) no-repeat 0 0; }
.menulist li#MajorAssignments a{width: 147px;background: url(../images/gfx/nav-major.png) no-repeat 0 0; }
.menulist li#Publications a {width: 111px;background: url(../images/gfx/nav-publications.png) no-repeat 0 0; }

.menulist li#Services a {width: 80px;background: url(../images/gfx/nav-services.png) no-repeat 0 0; }

.menulist li#IndustryExperience a {width:150px;background: url(../images/gfx/nav-industry.png) no-repeat 0 0; }
.menulist li#OurPeople a {width: 96px;background: url(../images/gfx/nav-people.png) no-repeat 0 0; }
.menulist li#ForSale a{width: 78px;background: url(../images/gfx/nav-sale.png) no-repeat 0 0;}
.menulist li#Contact a {width: 80px;background: url(../images/gfx/nav-contact.png) no-repeat 0 0; }
*/
.menulist li#AboutUs a:hover,
.menulist li#MajorAssignments a:hover,
.menulist li#Publications a:hover,
.menulist li#Services a:hover,
.menulist li#CareerOpportunities a:hover,
.menulist li#CreditorInformation a:hover,
.menulist li#ForSale a:hover,
.menulist li#Contact a:hover{
	background:#fff;
	border-bottom-color:#fff; 
	color:#3f3f3f;	
}

/*------------------------------------------------*/
          /* SUBNAV*/ 
/*------------------------------------------------*/
#sidecontent #subnav ul,#sidecontent #subnav li{
	margin:0;padding:0;list-style:none;
}
/* VERTICAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
#sidecontent #subnav, #sidecontent #subnav ul {
	margin: 0;
	padding: 0;
	width: 200px;
	list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
#sidecontent #subnav ul {
	display: none;
	position: absolute;
	top: 0;
	left: 200px;
	z-index:100;
	border:1px solid #ccc;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
#sidecontent #subnav li {
	position: relative;
	margin:0;
	background-color:#a7a9ac;
	border-bottom:1px solid #fff
}

/* Links inside the menu */
#sidecontent #subnav a:link, #sidecontent #subnav a:visited {
	display: block;
	padding:5px 3px;	
	color:#fff;
	text-decoration: none;    
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/

#sidecontent #subnav a:hover, #sidecontent #subnav a.highlighted:hover, #sidecontent #subnav a:focus{
	color: #333;
	background-color: #FFF;
}
#sidecontent #subnav a.highlighted {
	color: #333;
	background-color: #FFF;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. 
#sidecontent #subnav a .subind {
 float: right;
}*/
