/* ######### Style for Drop Down Menu ######### */

.dropmenudiv {
position:absolute;
top: 0;
border: 0px; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
width: 350px;
visibility: hidden;
}


.dropmenudiv a {
width: auto;
display: block;
text-indent: 3px;
border-bottom: 2px solid white; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight bold;
}

.dropmenudiv, .dropmenudiv a {
color: white;
background-image: -webkit-linear-gradient(top, #062d4a, #2c567e);
background-image: -moz-linear-gradient(top, #062d4a, #2c567e);
background-image: -o-linear-gradient(top, #062d4a, #2c567e);
background-image: -ms-linear-gradient(top, #062d4a, #2c567e);
background-image: linear-gradient(top, #062d4a, #2c567e);
}

* html .dropmenudiv a { /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover { /*THEME CHANGE HERE*/
background-image: -webkit-linear-gradient(top, white, #f4f4f4);
background-image: -moz-linear-gradient(top, white, #f4f4f4);
background-image: -o-linear-gradient(top, white, #f4f4f4);
background-image: -ms-linear-gradient(top, white, #f4f4f4);
background-image: linear-gradient(top, white, #f4f4f4);
color: #062d4a;         
}
