/* Menu */

/* ================================================================ 
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/basic_dd.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.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:90;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-4px;
top:5px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:18px;
color:#fff;
width:124px;
padding: 6px;
padding-top: 3px;
padding-bottom 3px;
background: #195096;
text-decoration:none;
margin-right:0px;
text-align:center;
border-color: #3B678A;
border-width: 1px;
border-style: solid;
}
/* style the links hover */
.menu :hover{
color:#FFD39B;
background: #3776C1;
border-color: #FFD39B;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:100px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}

li ul {display: none;}
li:hover > ul {display: block;}

li.menu {
  	display: block;
  	float: left; 
  	padding: 0em 0em;
  	border: 1px;
  	}
  	
.menu li a {font-size:18px; color:#fff; }


/* End of menu */