/*CSS TAB HILIGHT*/
.tabs input[type=radio] {
	display:none;
	background: #3eb49e;
}
	  
.tabs {

	height:800px;
    float: none;
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0px 0px 0px 0px auto;
	
}
	  
.tabs li{
	float: left;
	width: 200px;
	background: #3eb49e;
}
	  
.tabs label {
	display: block;
	padding: 12px 6.6px;
	color: #FFFFFF;
	font-family: arial,sans-serif;
	font-size: 15px;
	font-weight: normal;
	background: #48605b;
	cursor: pointer;
	position: relative;
}

.tabs label:hover {
	background: #359b88;
}
	  
.tab-content {
	z-index: 2;
	display: none;
	left: 0;
	width: 100%;
	height :100%;
	font-size: 16px;
	line-height: 140%;
	padding: 15px;
	position: absolute;
	box-sizing: border-box;
	border:1px solid #ccc;
	border-top: 10px solid #3eb49e;
	background-color:#ffffff;
	overflow:auto;
}
       
[id^=tab]:checked + label {
    background: #3eb49e;
    color: white;
    top: 0;
}
       
[id^=tab]:checked ~ [id^=tab-content] {
    display: block;
}
/*CSS TAB NOTIC*/

