/* All <ul> tags in the menu including the first level */
.menulisth, .menulisth  ul {
	width:615px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulisth ul {
	display: none;
	position: absolute;
	top: 2.1em;
	margin-top: 13px;
	left: -1px;
	width: 150px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulisth ul ul {
	top: -1px; 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.
*/
.menulisth li {
	float: left;
	display: block;
	position: relative;
	background: transparent;
	padding:5px;
    padding-right:0px;
    margin-top:2px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulisth ul li {
	float: none;
	margin: 0;
	padding: 0;
	color:#333;
    background-color:#c6d3e9;
    border-bottom:1px #f6f8fa solid;
}
.menulisth ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}


/* Links inside the menu */
.menulisth a {
	display: block;
	color: #666;
	text-decoration:none;
    font-weight:bold;
	padding:3px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulisth a:hover, .menulisth a.highlighted:hover, .menulisth a:focus {
	color:#2c4886;
}
.menulisth a.highlighted {
	color:#2c4886;
}

/* ***************************** SUB MENU **************************** */
.menulisth ul li a {
	display: block;
    font-family: Arial, Geneva, sans-serif;
    font-size: 1.0em;
	color:#333;
	text-decoration:none;
    font-weight:normal;
    background-color:#c6d3e9;
    margin:0;
    padding:5px;
}

.menulisth ul li a:hover, .menulisth ul li a.highlighted:hover , .menulisth ul li a:focus {
	color: #fff;
    background-color:#2c4886;
}
.menulisth ul li a.highlighted {
	color: #fff;
    background-color:#2c4886;
}
/* ***************************** SUB MENU **************************** */

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulisth a .subind {
 display: none;
}
.menulisth ul a .subind {
 display: block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulisth a {
 float: left;
}
.menulisth ul a {
 float: none;
}
/* \*/
.menulisth a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulisth ul li {
 float: left;
 width: 100%;
}

* html .menulisth ul li {
 float: left;
 height: 1%;
}
* html .menulisth ul a {
 height: 1%;
}
/* End Hacks */