.tabs-wrap {
	position:relative;
	width: 100%;
	height:30px;
	border-bottom:0px  solid #cccccc;
	margin:0px 0 0px 0;
	
}

ul.inner-tab {
	margin: 0;
	padding: 0;
	list-style: none;
	height:25px; /*--Set height of tabs--*/
	float:left;
	margin-left:0px;

	
	
}
ul.inner-tab li {
	float: left;
	height: 30px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 30px; /*--Vertically aligns the text within the tab--*/
	margin-bottom:-0px;
	overflow: hidden;
	position: relative;
	border:0px  solid #cccccc;
	border-bottom:0px;
	margin-right:1px;
	/*background:#c1170a;*/
	background:#e8683e;
	border-top-left-radius:0.5em;
	border-top-right-radius:0.5em;

}
ul.inner-tab li a {
	text-decoration: none;
	color:#fff;
	display: block;
	font-size: 13px;
	font-weight:bold;
	text-align:center;
	outline: none;
	
	
	padding: 0 22px 0 22px;
	font-family: Arial, Helvetica, sans-serif;
	
}

ul.inner-tab li a:hover {
	/*background:#c1170a;*/
	background:#e8683e;
	border-bottom:0px;
	bottom: 0px;
}
html ul.inner-tab li.active, html ul.inner-tab li.active a:hover, html ul.inner-tab li.active a  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background:#fff;
	border-bottom:0px;
	bottom: 0px;
	color:#3b3b3b;
}

.tab_container{
	overflow: hidden;
	clear: both;
	float: left;
	width: 300px;
	height:auto;
}
.tab_content {
	padding:8px;
	height:auto;
	border-bottom:0px solid #cccccc;
	border-left:0px solid #cccccc;
	border-right:0px solid #cccccc;
	background:#FFFFFF;
	border-top-left-radius:0em;
	border-top-right-radius:0em;
	border-bottom-right-radius:0.5em;
	border-bottom-left-radius:0.5em;
}


