.tabs{
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}
.tabs:after {
	content: "";
	display: table;
	clear: both;
}
.tabs .tab{
	background-color: #f5f5f5;
	margin-right: 5px;
	float: left;
	padding: 10px 20px;
	cursor: pointer;
	position: relative;
	top: 1px;
	border-bottom: 1px solid #eee;
	display: block;
	color: #000;
}
.tabs .tab{
	
}
.tabs .tab:hover{
	background-color: #ddd;
	border-bottom: 1px solid #ddd;
}
.tabs .tab.active{
	background-color: #7cb6b8;
	color: #fff;
	border-bottom: 1px solid #7cb6b8;
}
.tabcontent{
	display: none;
}
.tabcontent.active{
	display: block;
}