/* Styles for dropdown menu */


#dropmenudiv{ /* frame for menu */
position:absolute;
border:1px solid transparent;
/*border-bottom-width: 0px; */ /* can add line between elements */
padding: 1px 1px 4px 1px;
font:normal 10px Verdana;
background-color: #666666;
line-height:10px; /* controls height of links in menu */
z-index:300;
}

#dropmenudiv a{ /* links */
width: 100%;
display: block;
text-indent: 2px;
/*vertical-align: middle;*/
/*border-bottom: 1px none transparent;*/
padding: 1px 0;
text-decoration: none;
font-weight: normal;
background-color: transparent;
}


#dropmenudiv a:hover{ /* links on mouseover */
background-color: transparent; /*transparent*/
color: #DAA520;
}


