﻿/* TABS */
.tabs {
    position: relative;
    margin: 20px auto 0;
	width: 100%;}
.tabs label {
	display: block;
	float: left;
    font-family: ALSSchlangesans-Black, OpenSans-Bold, Tahoma !important;
    font-size: 27px;
    font-weight: 400;
    background: #daf4ff;
    border: 3px solid #49a3ce !important;
    border-radius: 40px;
    margin: 20px 20px 20px 0%;
	padding: 0 20px;
	color: #49829c;
	cursor: pointer;
	position: relative;
	top: 0px;
	min-width: 30px;
	height: 45px;
	line-height: 45px;
	text-align: left;
	z-index: 1;}
	
.tabs label:hover
{
    border-bottom: 3px solid #f4f6f4;
}
	
.tabs input {
	position: absolute;
	left: -9999px;}
#tab_1:checked  ~ #tab_l1,
#tab_2:checked  ~ #tab_l2,
#tab_3:checked  ~ #tab_l3,
#tab_4:checked  ~ #tab_l4,
#tab_5:checked  ~ #tab_l5,
#tab_6:checked  ~ #tab_l6 
{
    background: #fff;
    border: 3px solid #02a236 !important;
    border-radius: 40px;
    padding: 0 20px;
    top: 0;
    z-index: 3;
    color: #0d6529;
}

.tabs_cont {
    margin: 20px 0 0 0;
	padding: 0px 0 0 0;
	position: relative;
	z-index: 2;
}
.tabs_cont > div {
	position: absolute;
	left: -9999px;
	top: 0;
	opacity: 0;
	width: 100%;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;}

#tab_1:checked ~ .tabs_cont #tab_c1,
#tab_2:checked ~ .tabs_cont #tab_c2,
#tab_3:checked ~ .tabs_cont #tab_c3,
#tab_4:checked ~ .tabs_cont #tab_c4,
#tab_5:checked ~ .tabs_cont #tab_c5,
#tab_6:checked ~ .tabs_cont #tab_c6   {
	position: static;
	left: 0;
	opacity: 1;}