 /* ================================================================ 
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.
=================================================================== */

#t_menu {
background-image: url(menu_mbg.png);
width: 100%;
height:32px;
/*border-bottom:1px solid #000066;*/}
#t_menu1 {
background-image: url(menu_vbg.png);
width: 980px;
height:32px;
}

.menu {
width:100%;
/*background-image:url(../images/bg_link.gif);*/
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
/*text-transform:uppercase;*/
}
.menu ul ul {
/*width:90px;*/
text-transform:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
/*width:130px;*/
position:relative;
text-align:center;
/*background-image:url(bg_link1.gif);*/
}
/* style the links for the top level */
.menu a  {
display:block;
font-family:Arial, Helvetica, sans-serif;
font-size:17px;
padding:2px 13px;
text-decoration: none;
display: block;
font-weight:normal;
color:#FFFFFF;
letter-spacing: normal;
text-decoration:none; 
border-width:0 1px 0 1px; 
line-height:28px;
}





/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:130px;

}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	display: none;
	margin: 0;
	padding: 0;
	height:32px;
	position: absolute;
	top: 32px;
	background: #f5f5f5;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	display: none;
	margin: 0;
	padding: 0;
	height:32px;
	position: absolute;
	top: 32px;
	background: #f5f5f5;
}

/* 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:32px;
top:32px;
left:0; 
}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
font-size:14px;
text-align:left;
background:#f5f5f5; 
color:#1b5b9b; 
height:25px;
border:1px;
line-height:25px;
border-color:#fff;
border-bottom-style: groove;
width: 240px; /* drop down menu width - RK */
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
text-align:left;
width:178px;
}

.active {
border-width:0 1px 0 1px;
color:#FFF;
display:block;
}

/* style the top level hover */
.menu ul a:hover, .menu ul ul a:hover {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	color:#FFF;
	text-decoration: none;
	display: block;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#FFF;
background:#64a2d2;
background-image:url(menu_mbg); background-position: 0 -3px;
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;
}
