/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
/*visibility: hidden;*/
display: none;
border: 1px solid #ccc;
padding: 5px;
font: normal 12px Arial;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #fff;
}

.anylinkcsscols .column{
width: 100px;
float: left;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcsscols li{

}

.anylinkcsscols li a{
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
color: #222;
text-decoration: none;
padding: 3px;
display:block;
border: 1px solid transparent;
}
.anylinkcsscols li a:hover{
text-decoration: none;
background: #f2f2f2;
border: 1px solid #e5e5e5;
}


/* ######### 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;
}*/