/* this is the attributes of the menu itself */
.menu td{
color:  white;
text-align: center;
background: #00248c;
text-decoration: none;
font: bold 16px verdana,arial;
line-height: 26px;
}

/* this is the dropdown */
.menu a {
color:  white;
text-decoration: none;
display: block;
width: 100%;
}
/* this is when the mouse touches it */
.menu a:hover {
color: black;
text-decoration: none;
background: #cccccc;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #FAFAFC;
border-bottom-width: 0;
font: bold 14px verdana,arial;
line-height: 24px;
text-align: center;		/* if you want left justified, remove this line */
z-index: 100; 
background: #00248c;
width: 110px;
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
display: block;
border-bottom: 1px solid #aaa;
padding: 2px 0;
text-decoration: none;
text-indent: 5px;
color: white;
}

.anylinkmenu a:hover{ 
background: #cccccc;
color: black;
text-decoration: none;
}


.anylinkshadow{ 
position: absolute;
left: 0;
top: 0;
z-index: 99;
background: black;
visibility: hidden;
}