/* ================================================================ 
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/drop_variations.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.
=================================================================== */
 /* common styling */

 /* Set up the default font and ovrall size to include image */
.menu { position: absolute; top: 7px; left: 155px; font-family: Arial; width: 770px; margin: 0; z-index: 100000; }

/* make menu horizontal */
.menu ul li { float:left; position:relative; z-index: 1000000;}

/* set up the default top level links */
.menu ul li a { display: block; text-decoration: none; width: 210px; height: 16px; color: #3c3c3e; 
background: #e78e3a; 
padding-left:10px; 
font: bold 11px/16px Arial;
text-transform: uppercase;
margin-right:6px;
}

/* hack for IE5.5 to correct the faulty box model */
* html .menu ul li a {
width:210px;
w\idth:200px;
}
/* hide the drop down menu */
.menu ul li ul {
display: none;
}
/* remove all table style so that it does not interfere with the menu */
.menu table {
margin:-1px; 
border-collapse:collapse;
font-size:1em;
}

/* first line for IE7 and non-IE browsers, second line for IE5.5 and IE6 */

/* style the top level hover */
.menu ul li:hover a,
.menu ul li a:hover {
color: #9e9e9f; 
background: #3c3c3e; 
border-bottom: 6px solid #3c3c3e;
}

/* make the drop down menu show and correctly position it */
.menu ul li:hover ul,
.menu ul li a:hover ul {
	display:block; 
	position:absolute; 
	top: 11px;
	margin-top:11px;
	left: 0; 
	width: 220px;
	border-top: 0;
	background:transparent url(../images/opaque.png); 
	padding: 2px 0 10px 0;
}

/* style the drop down links with no hover */
.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
display:block; 
background:transparent; 
color: #e78e3a; 
border: 0;
margin: 0 7px 0 7px;
font-weight: bold; 
font-size: 12px;
height: 16px; 
line-height: 16px; 
padding: 3px 5px 3px 10px; 
width: 183px;
text-transform: none;
border-bottom: 1px solid #7e7e7f;
}
/* style the drop down menu links when hovered */
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover {
color:#fff;
}

/* special styling for IE5.5 and IE6 - transparency is non validating */
.menu ul li a:hover ul {
background:transparent filter: alpha(opacity=80);
 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
opacity:0.8;
margin-top:10px; /* for IE5.5 faulty box model */
marg\in-top:11px; /* for IE6 */
}
/* IE5.5 hack for faulty box model in drop down menu */
.menu ul li a:hover ul li a {
width:173px; /* for IE5.5 faulty box model */
w\idth:163px; /* for IE6 */
}

