/* ================================================================ 
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 
	{
	clear: both;
	float: left;
	width:650px; 
	height:20px; 
	position:relative; 
	z-index:100;
	color: #000000;
	font-size: 12pt;
	padding-top: 10px;
	background-image: url('art/menuback.jpg');
	background-repeat: repeat-x;
	background-position: bottom left;
	background-color: none;
	margin-bottom: 20px;
	}

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

/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
	{
	padding:0 0 0 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:110px;

	}

.menu ul ul 
	{
	width:100px;
	text-align: left;
	}



/* style the links for the top level  height & line height are important */
.menu a, .menu a:visited
	{
	display:block;
	width:100px; 
	height: 30px; 
	line-height:30px; 
	padding: 10px 0 0 10px;
	color:#1F2B66;
 	background:none; 
	border:0px solid #000; 
	border-width:0px 0px 0px 0px;  
	}

.menu ul li a:hover
	{
	color: #000000;
	}

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



/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
	{
	color:#1F2B66; 
	background: none;
	}

.menu :hover > a, .menu ul ul :hover > a 
	{
	color:#000; 
	background:none;
	}






/* style the second level background */


.menu ul ul a.drop, .menu ul ul a.drop:visited 
	{
	color:#000;
 	background:none;
	font-size: 10pt;
	}





/* 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:50px;
	left:0;
	height:30px;
	width:150px;
	padding-left: 10px;
	border-top:0px solid #000;
	}

/* 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;
	}



/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
	{
	height:auto; 
	line-height:1em; 
	font-size: 10pt;
	padding:5px 10px; 
	width:220px;
	border-width:0 0px 0px 0px;
 	background:#b0d0e0; 
	}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited 
	{
	width:220px;
	w\idth:220px;
	}


/* style the second level hover */
.menu ul ul a.drop:hover
	{
	color: #1F2B66;
 	background-color:#6D85C3;
	}
.menu ul ul :hover > a.drop 
	{
	color: #1F2B66;
 	background-color:#6D85C3;
	}

.menu ul li ul a:hover
	{
	color: #1F2B66;
 	background-color:#6D85C3;
	}





/* 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; 
	}


