.tab_box_container {width: 650px;}

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style-type: none;
	width: 100%;
	z-index: 10;
	position:relative;
}
ul.tabs li {
	float: left;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;	
	padding: 0;
	height: 44px;
	line-height: 16px;
	border: 1px solid navy;
	background: #EFF4FF;
	overflow: hidden;
	
}
ul.tabs li a {
	text-decoration: none;
	font-weight: bold;
	color: #002782;
	display: block;
	padding: 5px 7px 3px;
	outline: none;
}

/* active tab has white background and white bottom border */
html ul.tabs li.active-tab{
	background: #fff;
	border-bottom: 1px solid #fff;
}
.tab_container {
	border: 1px solid navy;
	margin-top: -1px;
	float: left;
	width: 100%;
	background: #fff;
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	 z-index: 1;	
}
.tab_content {
	padding: 20px;
}


