/* HORIZONTAL FREESTYLE MENU LAYOUT */
ul#listMenuRoot:after {/*clears the menu container*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul,.subMenu li{
	margin: 0;
	padding: 0;
	list-style: none;
}
#ContactUs{width:7em;}
.menulist{border-bottom:1px solid #4c5760;overflow:hidden;}
/* 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*/
}

/* 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,.subMenu li {
	float: left;
	display: block;
	position: relative;	
}

.subMenu{
	overflow:hidden;   	
	background:url(/assets/gfx/normal-state.gif) repeat-x 0 0 #727c86;	
}
.subMenu ul ul{display:none!important}

/* 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 a:link, .menulist a:visited {
	display: block;
    font-size:0.7em;
	font-weight:normal;
	padding:0 0 2.5em 0.2em;
	margin-top:22px;
	color:#4c5760;
	text-decoration: none;
	border-left:1px solid #4c5760
}
.subMenu .parent-page{
	display:inline;
	float:left;
}
.subMenu a{
	display:block;	
	height:28px;
	background:url(/assets/gfx/normal-state.gif) repeat-x 0 0 #727c86;
	padding-top:0.7em;	
}
.subMenu a:link,.subMenu a:visited{
	color:#fff;
	text-decoration:none;
	padding-left:1em;padding-right:1em;	
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist .active a:link,.menulist .active a:visited{
	color: #ce342a;	
}
.subMenu a:hover,.subMenu .active a{
	background:url(/assets/gfx/active-item.gif) no-repeat center top #727c86;
}
.menulist a.highlighted {
	color: #ce342a;
	
}

/* 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;
}


