@charset "utf-8";
/* CSS Document */

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px;
	border-bottom: 1px solid #333;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 0px 21px;
	height: 31px;
	line-height: 31px;
	background-color: #1a3f59;
	color: #ccc;
	overflow: hidden;
	position: relative;
	width:20%;
	font-weight:bold;
	font-size:14px;
}

.tab_last { border-right: 1px solid #014984; }

ul.tabs li:hover {
	background-color: #3e6885;
	color: #02253e;
}

ul.tabs li.active {
	background-color: #fff;
	color: #333;
	border-bottom: 1px solid #014984;
	display: block;
}

.tab_container {
	border: 1px solid #014984;
	border-top: 1px solid #014984;
	clear: both;
	float: left;
	width: 100%;
	background: #001b31;
	overflow: auto;
}

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

.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 #014984;
		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;
	}
}