/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 0px solid #eee;
border-bottom-width: 0;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #fff;
width: 400px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
text-align: left;
}

.anylinkmenu ul li a{
width: 100%;
background-color: #363F5C;
color:#eee;
display: block;
text-align: left;
border-bottom: 1px solid #47537A;
padding: 2px 0;
text-decoration: none;
padding-left:5px;
}



/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 738px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #47537A;
padding: 10px;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #303752;
}

.anylinkmenucols li{
padding-bottom: 3px;
color:#e00;
}

.anylinkmenucols .column{
width:235px;
float: left;
padding: 3px 5px;
background: #303752;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
color:#eee;
}

.anylinkmenucols a{ 
border-bottom:1px dotted #BFBFBF;
color: #eee;
text-decoration:none;
display:block;
text-align:left;

.anylinkmenucols a:hover{ 
border-bottom:1px dotted #BFBFBF;
background: #3A4363;
color: #eee;
text-decoration:none;
display:block;
text-align:left;

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
padding-left:5px;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}