.tab-container .tabs,
.tab-container .tabs * {
	padding: 0;
	margin: 0;
}
.tab-container .tabs {
	position: relative;
	z-index: 1;
	float: left;
}
.tab-container .tabs li {
	float: left;
	list-style: none;
	margin-left: 5px;
}
.tab-container .tabs li:first-child {
	margin-left: 0;
}
.tab-container .tabs a {
	display: block;
	padding: 5px 20px;
	text-decoration: none;
}
.tab-container .tabs-select {
	width: 100%;
	min-width: 150px;
	max-width: 30%;
	height: 33px;
	padding: 7px;
}
.tab-container .tabs-select option {
	padding: 7px;
}
.tab-container .tab-content-container {
	position: relative;
	clear: both;
	background: #fff;
	width: 100%;
	min-height: 150px;
	overflow: hidden;
}
.tab-container .tab-content {
	padding: 20px 0;
	z-index: -1;
	width: 100%;
	top: 0;
	bottom: auto;
}
.js .tab-container .tab-content {
	position: absolute;
	opacity: 0;
	min-height: 150px;
}
.tab-container .tab-content.active {
	z-index: 1;
	opacity: 1;
}