.ddcolortabs{
padding: 0px;
width: 100%;
background-color: #660000;;
background-image: url('menubg.gif') repeat-x;
height:36px;
voice-family: "\"}\"";
voice-family: inherit;
}

.ddcolortabs ul{
font: normal 12px Arial, Verdana, sans-serif;
margin:0;
padding:0;
list-style:none;
}

.ddcolortabs li{
display:inline;
margin:0 2px 0 0;
padding:0;
font-weight:bold;
}

.ddcolortabs a{
float:left;
color: white;
width:10%;
text-align:center;
background-color: #660000;
background-image: url('menubg.gif');
border-right:1px solid white;
margin:0 1px 0 0;
line-height:31px;
text-decoration:none;
letter-spacing: 1px;
}

.ddcolortabs a span{
float:left;
display:block;
padding: 4px 8px 2px 7px;
}

.ddcolortabs a span{
float:none;
}

.ddcolortabs a:hover{
color:black;
background-image: url('hmenu.gif');
}

.ddcolortabs a:hover span{
background-image: url('hmenu.gif');
}

.ddcolortabs .selected a, #ddcolortabs .selected a span{ /*currently selected tab*/
background-image: url('hmenu.gif');
}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv_a{
position:absolute;
top: 0;
border: 1px solid black; /*THEME CHANGE HERE*/
border-top-width: 1px; /*Top border width. Should match height of .ddcolortabsline above*/
border-bottom-width: 0;
font:normal 12px Arial;

z-index:100;
background-color: #FFB84D;
width: 200px;
visibility: hidden;
}

.dropmenudiv_a a{
width: auto;
display: block;
text-indent: 5px;
border-top: 0 solid #678b3f;
border-bottom: 1px solid #678b3f; /*THEME CHANGE HERE*/
padding: 5px 0;
text-decoration: none;
color: black;
}

* html .dropmenudiv_a a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv_a a:hover{ /*THEME CHANGE HERE*/
background-color: green;
color: white;
}

/* ######### Responsive CSS ######### */

@media screen and (max-width: 480px){
	.ddcolortabs{
		overflow: hidden;
	}

	.ddcolortabs li{
		display: block !important;
		width: 100%;
		margin: 0;
	}

	.ddcolortabs li a{
		display: block;
		padding: 10px auto;
		font-size: 120%;
		margin-top: 3px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.ddcolortabsline{
		display: none;
	}

	.dropmenudiv_a{
		width: 100% !important;
		display: none;
		position: static;
		border-top-width: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	 .dropmenudiv_a a{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

}