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

.menu {
	margin-left: 2px;
	width:583px;
	border: 2px solid #274C67;
	/*padding: 0 5px 2px 9px ;	*/
	height: 15px;
}

* html .menu{
	height: 19px;
}


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

/* 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;
z-index:100000;
}
/* style the links for the top level */
.menu a, .menu a:link, .menu a:visited {
display:block;
font-size:9px;
font-weight: bold;
text-decoration:none; 
color:#274C67; 
height:16px; 
/*border-right:2px solid #274C67; */
padding: 0 5px 0 5px;
white-space:nowrap;

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


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#E47A03;
}
.menu ul ul :hover > a.drop {
background:#E47A03;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
/*height:0;*/
top:16px;
left:0px; 
width:auto;
padding-left: 0px;
border: 1px solid #ccc;
border-bottom: none;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:16px;
t\op:16px;
}

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

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#EEEEEE;
filter: alpha(opacity=100); /* for IE */
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 3px;
margin-left: 0px;
border-bottom: 1px solid #ccc;
font-weight: normal;
width:129px
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:80px;
w\idth:129px;
}


/* style the top level hover and active */
.menu a:hover, .menu ul ul a:hover{
color:#970911;
}
.menu :hover > a, .menu ul ul :hover > a, .menu ul ul a.active  {
color:#970911;

}

.menu ul li.active{
	color:#970911;
}

.menu a.active, .menu a.active:visited{
	color:#970911;
}


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