/* CSS Document */

#dropmenudiv{
position:absolute;
margin:0px;
padding:0px;
list-style:none;
background:#d2e9ff;
font:bold 12px Arial, Helvetica, sans-serif;
height:auto;
overflow:auto;
overflow:hidden;
z-index:100;
}

#dropmenudiv a{
display: block;
background:#d2e9ff;
padding:2px 0px 2px 4px;
#min-height:20px;
min-height:20px;
height:AUTO;
overflow:auto;
overflow:hidden;
border-bottom:1px solid #FFFFFF;
font:bold 12px Arial, Helvetica, sans-serif;
color:#004A95;
text-decoration: none;
}

#dropmenudiv a:hover{ /*hover background color*/
background:#66B3FF;
color:#FFFFFF;
}

/* Sample CSS definition for the example list. Remove if desired */

.navlist li {
margin:0px;
padding:0px;
list-style:none;
}

.navlist{
margin:0px;
padding:0px;
}

.navlist li a{
display:block;
text-decoration:none;
padding:2px 0px 2px 8px;
background:#d2e9ff;
height:20px;
border-bottom:1px solid #FFFFFF;
font:bold 12px Arial, Helvetica, sans-serif;
color:#FFFFFF;
background:#66B3FF;
}


.navlist li a:hover{
background:#d2e9ff;
color:#004A95;
}



.menu {
float:left;
width:160px;
height:auto;
background:#66B3FF;
 /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	position:relative;
	padding:0;
	margin:0;
	background:#66B3FF;
	list-style-type:none;
	width:150px;
	z-index: 100;
}
/* style the list items */
.menu li {
background:#66B3FF;
/* for IE7 */
}

/* get rid of the table */
.menu table {position:absolute; height:auto; overflow:auto; overflow:hidden;border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a{
display:block; 
text-decoration:none;
padding:5px 0px 5px 0px;
width:160px;
font:bold 12px Arial, Helvetica, sans-serif;
color:#FFFFFF;
text-indent:5px;
background:#66B3FF;
border:1px solid #fff;
border-width:0 0px 1px 0px;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {width:150px; w\idth:149px;}
/* style the link hover */
* html .menu a:hover {color:#004A95;background:#d2e9ff;position:relative;}

.menu li:hover {position:relative;}

/* For accessibility of the top level menu when tabbing */

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu li:hover > a {color:#004A95;background:#d2e9ff;}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu li ul {
visibility:hidden;
position:absolute;
top:0px;
/* set up the overlap (minus the overrun) */
left:150px;
width:160px;
background:#66B3FF;
/* set up the overrun area */
/* this is for IE to make it interpret the overrrun padding */
}

.menu li ul li{
left:0px;
width:160px;
background:#66B3FF;
}


/* for browsers that understand this is all you need for the flyouts */
.menu li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menu ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menu ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menu ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
