/* ================================================================ 
This copyright notice must be kept untouched in the stylesheet at 
all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/pro_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#multi-level {height:30px; position:relative; z-index:100;}
#multi-level .pad {float:left;}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {list-style-type:none; padding:0; margin:0; font-family:arial, sans-serif; text-decoration:none;}

/* Set up the top level list items and float left to place inline */
.menu li.top {display:block; float:left; position:relative; margin: 0px 20px;}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {border-collapse:collapse; width:0; height:0; position:absolute; top:0; left:0;}

/* Default top link link styling */
.menu li.top a{
	margin: 0; padding:0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #0146ac;
	text-decoration:none;
	text-transform:uppercase;
}
.menu li.top a span {position:absolute; left:-9999px; top:0; z-index:0; font-size:10px;} /* move the link text off screen */

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {visibility:visible;} /* for IE6 */
.menu li:hover { position:relative; z-index:200;} /* for IE7 */


/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul :hover ul ul {
	position:absolute; left:-9999px; top:-9999px; width:0; height:0; }

/* set up the first drop down sub level */
.menu :hover ul.sub {left:0; top:15px; background: #fff; padding:3px 0 0 0; white-space:nowrap; width:200px; height:auto;
	text-align: left;
	background-color: #0146ac;
	}
	
.menu :hover ul.sub li { text-decoration:none; display:block; position:relative; float:left; width:200px;	border-bottom: 1px solid #FFF; padding:2px 0px; }
.menu :hover ul.sub li a {
	width: 200px; display:block;
	text-indent:5px;
	color: white;
	font-size: 0.85em;
	text-decoration: none;
	text-transform:none;
}

.menu :hover ul.sub li:hover {background:#000;}
.menu :hover ul.sub li a:hover {background:#000;}

