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

.anylinkcss{
    position: absolute;
    left: -1px;
    top: 0px;
    visibility: hidden;
    border: 1px solid #FFFFFF;
    border-bottom-width: 0;
    font: normal 11px Verdana;
    line-height: 22px;
    z-index: 100; /* zIndex should be greater than that of shadow's below */
    background: #000000;
    width: 150px; /* default width for menu */
}

.anylinkcss ul{
	padding: 0;
	list-style-type: none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.anylinkcss ul li a{
	width: 100%;
	display: block;
	text-indent: 18px;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../images/bullet.gif);
	background-repeat: no-repeat;
	background-position: 4px;
	padding-top: 1px;
	padding-right: 0;
	padding-bottom: 1px;
	padding-left: 0px;
	margin-left: 0px;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}

.anylinkcss a:hover{ /*hover background color*/
    background: #000000;
    color: #FFFFFF;
	background-image: url(../images/bullet_hl.gif);
	background-repeat: no-repeat;
	background-position: 4px;
}

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


.anylinkcsscols{
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    border: 1px solid black;
    padding: 10px;
    font: normal 12px Verdana;
    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 ######### */

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