/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu 
	{
	z-index:100;
	text-align: left;
	font-size: 10pt;
	font-weight: normal;	
	font-style: italic;

}
/* hack to correct IE5.5 faulty box model */
* html .menu 
	{
	width:750px; 
	w\idth:750px;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
	{
	padding:0;
	margin:0;
	list-style-type:none;
	}


/* float the list to make it horizontal add a relative positon so that you can control the dropdown menu positon and set the width of the top level*/
.menu li 
	{
	float:left;
	position:relative;
	width:80px;
	}

.menu ul ul 
	{
	width:75px;
	}



/* style the links for the top level  height & line height are important */
.menu a, .menu a:visited 
	{
	display:block;
	width:75px; 
	height: 30px; 
	line-height:30px; 
	padding-left:10px;
 	background:none; 
	text-decoration: none;
	text-align: left;
	text-decoration: none;
	color: #ffffff;	
	font-size: 16px;
	}




/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
	{
	width:100px; 
	w\idth:100px;
	}


/* style the top level hover*/
.menu a:hover, .menu ul ul a:hover
	{
	color:#FF9900; 
	background:none;
	text-decoration: none;
	}

.menu :hover > a
	{
	color:#FF9900; 
	background: none;
	text-decoration: none;

	}






/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
	{
	color:#000;
 	background:#013d85; 
	font-size: 10pt;
	font-weight: normal;	
	text-decoration: none;
	text-align: left;
	}

/* style the second level hover */
.menu ul ul a.drop:hover
	{
	color:#FF9900;
 	background:#011c75;
	font-size: 10pt;
	font-weight: normal;	
	text-decoration: none; 
	text-align: left;
	}
.menu ul ul :hover > a.drop 
	{
	color:#FF9900;
 	background:#011c75; 
	font-size: 10pt;
	font-weight: normal;	
	text-decoration: none;	
	text-align: left;
	}

.menu ul ul :hover > a, .menu ul ul :hover > a:visited
	{
	color:#FF9900; 
	background: #013d85;
	text-decoration: none;

	}



/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
	{
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:180px;
	color:#ffffff;
 	background:#011c75; 
	font-size: 10pt;
	font-weight: normal;	
	text-decoration: none;
	text-align: left;
	}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited 
	{
	width:100px;
	w\idth:100px;
	}




/* hide the sub levels and give them a positon absolute so that they take up no room  be sure the height is compatible with the height and line height of the top level style above*/
.menu ul ul 
	{
	visibility:hidden;
	position:absolute;
	top:29px;
	left:0;
	height:0;
	width:150px;
	text-align: left;
	}


/* another hack for IE5.5 */
* html .menu ul ul 
	{
	top:30px;
	t\op:31px;
	}






/* position the table so that it takes no part in the layout - required for IE to work */
.menu table 
	{
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
	}









/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul
	{
	visibility:visible; 
	text-align: left;
	}

