/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* DRG - Main menu*/
.menu {
	font-size:12px;
	position:relative;
	z-index:100;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin: 0 auto;
	float: left;
	width: 780px;
	padding-left: 20px;
	letter-spacing: 2px;
	height: 25px;
	}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
margin: 0;
padding: 0;
}
/* DRG - Main text and background color, style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:10px;
	text-decoration:none;
	color:#fff;
	background-color:#000000;
	padding:5px 10px;
	line-height:14px;
/* -moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=90); */
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
}
/* DRG - *this does nothing! -style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#999;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#666666;
}
.menu ul ul :hover > a.drop {
background:#999;
}
/* ***DRG style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#666;
}
/* ***DRG - *this actually works! -style the third level hover */
.menu ul ul ul a:hover {
background:#333;
}


/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:24px;
left:0; 
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:23px;
t\op:24px;
}

/* ***DRG - position the third level flyout menu */
.menu ul ul ul{
left:245px; 
top:0;
width:225px;
}
/* DRG - position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-200px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* DRG - rollover color and box size for style of the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#333; 
color:#fff; 
height:auto; 
line-height:1.2em; 
padding:4px 10px 6px; 
width:225px
/* DRG - rollover background sizes, yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:225px;
w\idth:225px;
}


/* DRG style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff;
background:#666;
text-decoration: none;
}

/* DRG Text and Link background color */
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#666666;
text-decoration: none;
}

/* 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; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul { 
visibility:visible;
}
.activePage {
	background-color: #999999!important; 
	border-left: 1px solid #fff; 
	border-right: 1px solid #fff;
	padding: 5px 9px !important; 
	}
	
@media print {

.menu {
	overflow: hidden;
	}
}
