/*
Tabs styles
*/

.tabs {
	position:relative;
	/* height:300px; */ 
	overflow:hidden;
	background-color: #fff;
}

.tabs_title {
	list-style-image: none;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: 57px;
}

.tabs_title li {
	float: left;
	background: url(../images/structure/tab_inactive.gif) repeat-x top left;;
	cursor: pointer;
	height: 47px;
	margin-right: 1px;
	width: 150px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	padding-top: 10px;
	font-weight: bold;
}

.tabs_title a {
	text-decoration:none;
	color: white;
}

.tabs_title li.over {
	font-weight: bold;
}

ul.tabs_title li.active {
	text-decoration: underline;
}

.tabs_title li.active {
	background: url(../images/structure/tab_active.gif) no-repeat top left;
	color: white;
}

.tabs_panelwrap {
	position: absolute;
	top:57px;
	overflow: hidden;
	/* height:300px; */
	width: 100%;
}

.tabs_panel {
	/*
	position:absolute;
	top:28px;
	*/

	/* height:300px; */
	display:none;
	overflow: auto; 
	padding: 10px 0px 0px;
}

.tabs_panel.active {
	display: block;
}

.separator{
	border-bottom:1px solid #EAEEEF;
}
