ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	border-bottom: 1px solid #333;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	margin-right:10px;
	cursor: pointer;
	padding: 5px;
	line-height: 31px;
	border: 1px solid #333;
	background-color: #FFF;
	color: #ccc;
	overflow: hidden;
	position: relative;
}
ul.tabs li img{ height:50px;}

.tab_last { border-right: 1px solid #333; }

ul.tabs li:hover {
	background-color: #ccc;
	color: #333;
}

ul.tabs li.active {
	background-color: #322f31;
	color: #333;
	display: block;
}

.tab_container {
	border: 1px solid #333;
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
	overflow: auto;
	position:relative;
	min-height:400px;
	max-height:500px;
	overflow-y: scroll;
}

.tab_content {
	padding: 10px;
	display: none;
}
.tab_content h2{
	font-family: 'OpenSans-Bold' !important;
    color: #818285;
    border-bottom: #c4c5c8 2px solid;
    padding-bottom: 10px;
	margin:20px 15px;
}
.tab_content .read-more {
    text-transform: uppercase;
    font-size: 12px;
    color: #818285;
    font-family: 'OpenSans-Bold' !important;
}
.tab_content h4 {
    font-family: 'OpenSans-Bold' !important;
    color: #777;
    font-size: 20px;
}
.tab_content p{ font-size:13px;font-family: 'OpenSans-Semibold'; color:#000;}

.tab_drawer_heading { display: none; }

/*@media screen and (max-width: 480px) {
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		background-color: #ccc;
		color: #fff;
		border-top: 1px solid #333;
		margin: 0;
		padding: 5px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.d_active {
		background-color: #666;
		color: #fff;
	}
}*/