/* UNIVERSAL STYLE DECLARATIONS FOR TABS-TO-DRAWERS */
body {
	padding: 5px;
}
ul.tabs {
	margin: 0;
	padding: 10px 0 0 0;
	float: left;
	list-style: none;
	height: 32px;
	width: 100%;
}

div.tab_container > h3.tab_drawer_heading:first-child {
	margin: 10px 0 0 0;
	/* It's a little ugly in EDGE and FF */
}

ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 0px 16px;
	/* height: 31px; */
	height: 104% !important; /* 31px; */
	/* line-height: 31px; */
	overflow: hidden;
	position: relative;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
}

ul.tabs > li.active {
	border-bottom: 2px solid #fff !important; /* ONLY IN FF DOES 2px WORK BETTER THAN 1px */
	height: 110% !important;
	background-color: #fff;
	display: block;
	background-image: none !important;
	font-weight: bold;
}

.tab_container {
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
	overflow: auto;
}

.tab_content {
	padding: 20px;
	display: none;
}

.tab_drawer_heading {
	display: none;
}
span.caret {
	float: left;
	margin: 4px 4px 0 0;
	display: inline-block;
	height: 8px;
	background-size: cover;
	background-color: inherit;
}

@media screen and (max-width: 62em) {
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		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;
	}
}
