﻿/* TABS */
.tabs {
    position: relative;
    margin: 0px auto 0;
	width: 100%;}
.tabs label {
	display: block;
	float: left;
    font-family: OpenSans-Bold, Calibri, Tahoma !important;
    font-size: 24px;
    font-weight: 400;
    margin: 0px 20px 20px 0%;
	border-bottom: 2px solid #fff;
	padding: 0px 0px;
	color: #000;
	background: #fff;
	cursor: pointer;
	position: relative;
	top: 0px;
	min-width: 90px;
	height: 45px;
	line-height: 45px;
	text-align: left;
	z-index: 1;}
	
.tabs label:hover
{

}
	
.tabs input {
	position: absolute;
	left: -9999px;}

#tab_l1
{
    margin: 0px 20px 20px 0px;
}


#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-bottom: 2px solid #2573aa;
	top: 0;
	z-index: 3;
	color: #000;}

.tabs_cont {

	padding: 40px 0 0 0;
	position: relative;
	z-index: 2;
}
.tabs_cont > div {
	position: absolute;
	left: -9999px;
	top: 0;
	opacity: 0;
    -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;}