#tabs {
	width: 100%;		
}

ul.tabs_title {
	margin: 15px 0 0 0 !important;
	padding: 0 !important;
	float: left;
	list-style: none !important;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #e0e0e0;	
	width: 95%;
}
ul.tabs_title li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px !important; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #e0e0e0;	
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #f1f1f1;
	-moz-border-radius:4px;
	border-radius:4px;	
	cursor: pointer;
}
ul.tabs_title li a {
	text-decoration: none;
	color: #000;
	display: block;	
	padding: 0 14px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	-moz-border-radius:4px;
	border-radius:4px;
	background: #e2e2e2;
}

ul.tabs_title li a:hover {
	background: #e9e9e9;
}

ul.tabs_title li.selected a, html ul.tabs_title li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
	-moz-border-radius:4px;
	border-radius: 4px;
}

.tabs_panelwrap {
	position: absolute;
	top:45px;	
	width:725px;		
}

.tabs_panel {
	position: relative;
	width: 95%;
	display:none;
	clear: both;	
	background: white;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	top: -1px;
	padding: 10px;
}

.tabs_panel.active {
	display: block;
}