.bluetabs{
background-color: #00767c;
	width: 954px !important;
	-webkit-border-radius: 7px;
-moz-border-radius: 7px;
	border-radius: 7px;
	padding: 3px 3px 7px 7px;
	position:relative;
	float:left;
}

.bluetabs ul{
position:relative;
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.bluetabs li{
	position:relative;
	margin: 0px 2px;
	width:132px !important;	
	float:left;
	background-image: url(../images/menu.png);
	text-align:center;
	
}

.bluetabs li a{
	text-decoration: none;
	padding: 3px 6px;
	margin-right: 3px;
	color: #2d2b2b;
	line-height: 28px;
	
	
}

.bluetabs li a:visited{
color: #2d2b2b;
}

.bluetabs li a:hover{
color: 3e4095;
}

.bluetabs li.selected{
	background-image: url(../images/menu-hover.png);
	background-repeat: no-repeat;
	
}

.bluetabs li.selected a{ /*selected main tab style */
 /*THEME CHANGE HERE*/

}

.bluetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;

}

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

.dropmenudiv_b{
	position:absolute;
	margin-top:10px;
	margin-left:-2px;
	border-width: 0 1px;
	font-size:11;
	line-height:18px;
	z-index:100;
	width: 200px;
	visibility: hidden;
	background-color:#b7e0e8;
	padding-left:5px;
}


.dropmenudiv_b a{
	width: auto;
	display: block;
	text-indent: 5px;
	text-decoration: none;
	color: 3e4095;
	padding-top: 7px;
	padding-right: 0;
	padding-bottom: 7px;
	padding-left: 0;
}

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

.dropmenudiv_b a:hover{ /*THEME CHANGE HERE*/
color: fff;
}

/* ######### Responsive CSS ######### */


@media screen and (max-width: 480px){

	.bluetabs{
		border-bottom-width: 0;
	}

	.bluetabs li{
		margin: 0;
	}

	.bluetabs li a{
		padding: 10px auto;
		display: block;
		width: 100%;
		font-size: 100%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.dropmenudiv_b{
		width: 100% !important;
		display: none;
		position: static;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	 .dropmenudiv_b a{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

}

