/* ######### Default class for drop down menus ######### */

.anylinkcss
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #dad8d8;
border-bottom-width: 0;
font-size: 11px;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: white;
width: 200px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
display:block;
text-align:left;
line-height:48px;
height:48px;
background-position:0px 0px;
background-image:url(../images/nav.gif);
background-repeat:repeat-x;
color:#44484f;
font-weight:bold;
padding:0px 14px;
border-bottom:1px solid #dad8d8;
}

.anylinkcss a:hover{ /*hover background color*/
display:block;
text-align:left;
line-height:48px;
height:48px;
background-position:0px 0px;
background-image:url(../images/nav.jpg);
background-repeat:repeat-x;
color:white;
font-weight:bold;
padding:0px 14px;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #dad8d8;
padding: 10px;
font-size: 11px;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #DEFFCA;
}

.anylinkcsscols .column{
width: 130px;
float: left;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcsscols li{
padding-bottom: 3px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}