ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height:35px;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	height: 35px;
	line-height: 35px;
	color: #fff;
	position: relative;
  text-align: center; background:url(../images/title-bg.png) #242424;
  width: 50%;
}

ul.tabs li:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 45%;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid #e88800;
}
ul.tabs li:hover {
	color: #e88800;
}

ul.tabs li.active {
	background-color: #e88800;
	color: #fff;
	display: block;
}

.tab_container {
	clear: both;
	width: 100%;
  border-top: 0;
	overflow: auto;
}

.tab_content {
	padding: 10px 0 0 0;
	display: none;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width: 480px) {
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		color: #fff;
		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;
		background:#242424;
	}
	.d_active {
		background-color: #e88800;
		color: #fff; font-weight:bold;
	}
}