/* ================================================================ 
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_drop2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
#NAV_Wrapper {
	background-color: #758279;
	height: 30px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
#NAV {
	font-size:0.85em;
	text-align: left;
}
.NAV_title{
	font-size:1.5em;
	text-align: right;
	color: #000066;
	font-style: normal;
	padding-top: 3px;
	font-weight: bold;
	font-family: "Century Gothic";
	padding-right: 10px;
}

/* remove all the bullets, borders and padding from the default list styling */
#NAV ul {
padding:0;
margin:0;
list-style-type:none;
}
#NAV ul ul {
width:100px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#NAV li {
	float:left;
	width:100px;
	position:relative;
}
/* style the links for the top level */
#NAV a, #NAV a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#fff;
	width:89px;
	height:30px;
	background:#758279;
	background-image: url(Testing/empty_image.gif);
	padding-left:10px;
	line-height:29px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #fff;
	border-right-color: #fff;
	border-bottom-color: #fff;
	border-left-color: #fff;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #NAV a, * html #NAV a:visited {
width:100px;
w\idth:89px;
}

/* style the second level background */
#NAV ul ul a.drop, #NAV ul ul a.drop:visited {
background:#949e7c;
}
/* style the second level hover */
#NAV ul ul a.drop:hover{
background:#c9ba65;
}
#NAV ul ul :hover > a.drop {
background:#c9ba65;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#NAV ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:100px;
}
/* another hack for IE5.5 */
* html #NAV ul ul {
top:30px;
t\op:31px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#NAV table {position:absolute; top:0; left:0;}

/* style the second level links */
#NAV ul ul a, #NAV ul ul a:visited {
	background:#d4d8bd;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:120px;
	border-top-width: 1px;
	border-top-style: solid;/* yet another hack for IE5.5 */
}
* html #NAV ul ul a{
width:100px;
w\idth:89px;
}


/* style the top level hover */
#NAV a:hover, #NAV ul ul a:hover{
color:#fff; 
background:#949e7c;  
}


#NAV :hover > a, #NAV ul ul :hover > a {
color:#fff;
background:#949e7c;
}

/* make the second level visible when hover on first level list OR link */
#NAV ul li:hover ul,
#NAV ul a:hover ul{
visibility:visible; 
}

/* attempt to add graphics */
#NAV ul li a:hover {
	background-image: url(Testing/empty_image.gif);
}
#NAV ul ul li a:hover {
	background-image: url(Testing/empty_image.gif);
}