@charset "UTF-8";
/* CSS Document */

/* ######### Style for Drop Down Menu ######### */

.dropdown{
	position:absolute;
	top: 0;
	border: 3px solid #ffffff; /*THEME CHANGE HERE*/
	border-width: 0 1px;
	line-height:18px;
	z-index:100;
	background-color: #0084d0;
	width: 180px;
	visibility: hidden;
	margin-top: 4px;
}

.dropdown a{
width: auto;
display: block;
text-indent: 5px;
border: 0 solid #ffffff; /*THEME CHANGE HERE*/
border-bottom-width: 1px;
padding: 2px 0;
text-decoration: none;
color: #ffffff;
}

* html .dropdown a{ /*IE only hack*/
width: 100%;
}

.dropdown a:hover{ /*THEME CHANGE HERE*/
background-color: #ffb400;
color: #0084d0;
}

