#navigation ul.menulist {
	display: block;
	list-style: none;
	width: 705px;
	height: 30px;
	padding: 3px;
	margin: 0;
	background: url(/_images/bg_nav.png) no-repeat;
}

/* All <ul> tags in the menu including the first level */
.menulist, 
.menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #686367;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 0;
	margin-top: 24px;
	width: 235px;
	font-size: 12px;
	z-index: 30;
}

/*
 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;
	width: 235px;
	margin: 0;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	width: 235px;
	margin: 2px 0 0 0;
	color: #000;
}

.menulist ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
#navigation .menulist a {
	display: block;
	height: 15px;
	color: #686367;
	text-decoration: none;
	padding: 5px 0 5px 0;
	text-align: center;
}

#navigation .menulist ul li a {
	color: #0076b9;
	width: 235px;
	height: 19px;
	margin: 0;
	padding: 5px 0 0 0;
	background: url(/_images/bg_subnav.png) no-repeat;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
#navigation .menulist a:hover,
#navigation .menulist a:active,
#navigation .menulist a.highlighted:hover, 
#navigation .menulist a:focus, 
#navigation .menulist a.highlighted {
	color: #0076b9;
}

#navigation .menulist ul li a:hover,
#navigation .menulist ul li a:focus,
#navigation .menulist ul li a.highlighted:hover,
#navigation .menulist ul li a.highlighted {
	color: #fff;
	background-position: -250px 0;
}


/*
 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. */
.menulist a .subind {
	display: none;
}
.menulist ul a .subind {
	display: block;
	float: right;
}


/* Style Drop down hover*/

.menulist ul a:hover,
.menulist ul a.highlighted:hover,
.menulist ul a:focus {
	color: #000;
}


/*
 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 .menulist ul li {
 float: left;
 width: 100%;
}

* html #navigation ul.menulist {
	background: url(/_images/bg_nav.gif) no-repeat;
	background-position: 0 0;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}

* html .menulist ul a {
 height: 1%;
}

* html #navigation .menulist ul li a {
	background: url(/_images/bg_subnav_ie.gif) no-repeat;
}


* html #navigation .menulist ul li a:hover,
* html #navigation .menulist ul li a:focus,
* html #navigation .menulist ul li a.highlighted:hover,
* html #navigation .menulist ul li a.highlighted {
	background: url(/_images/bg_subnav_ie.gif) no-repeat;
	background-position: -250px 0;
}

* html #navigation .menulist a:link,
* html #navigation .menulist a:visited {
	color: #666;
}

* html #navigation .menulist a:hover {
	color: #0076b9;
}

* html #navigation .menulist a.highlighted:link,
* html #navigation .menulist a.highlighted:visited,
* html #navigation .menulist a.highlighted:hover,
* html #navigation .menulist a.highlighted:active {
	color: #0076b9;
}

* html #navigation .menulist ul a:link,
* html #navigation .menulist ul a:visited {
	color: #0076b9;
}

* html #navigation .menulist ul a:hover,
* html #navigation .menulist ul a:active {
	color: #fff;
}
/* End Hacks */
