.tabs {
    position: relative;
	margin: 0px auto;
	width: 100%;
}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 300px;
	height: 50px;
	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	top:50px;
}
.tabs input#tab-3{
	top:100px;
}
.tabs input#tab-4{
	top:150px;
}
.tabs input#tab-5{
	top:200px;
}
.tabs input#tab-6{
	top:250px;
}
.tabs input#tab-7{
	top:300px;
}

.tabs label {
	background: #fff;
	font-size: 15px;
	line-height:50px;
	height:50px;
	position:relative;
	padding:0 20px;
	display:block;
	width:260px;
	color: #4d6bbc;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight:400;
	text-align: right;
	float: left;
	clear: both;
	border-bottom:1px solid #dddde2;
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	right: -2px;
	top: 0;
	width: 2px;
	height: 100%;
}

.tabs input:hover + label {	background:#ededed;color:#b03a47; }

.tabs label:first-of-type { z-index: 7; }
.tab-label-2 { z-index:6; }
.tab-label-3 { z-index: 5; }
.tab-label-4 { z-index: 4; }
.tab-label-5 { z-index: 3; }
.tab-label-6 { z-index: 2; }
.tab-label-7 { z-index: 1; }

.tabs input:checked + label { background:#fff;z-index:20;border-bottom:2px solid #fc3d39;color:#b03a47; }

.clear-shadow {
	clear: both;
}

.content {
    background: #fff;
	position: relative;
    width: auto;
	//margin: -175px 0 0 120px;
	height: 350px;
	z-index: 10;
	overflow: hidden;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
}

.content .diver {
  width:100%;
	  position: absolute;
	top: 0;
	padding: 0px 0 0 30px;
	z-index: 1;
    opacity: 0;
    -webkit-transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    -o-transition: all linear 0.5s;
    -ms-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

.tabs input.tab-selector-1:checked ~ .content .content-1,
.tabs input.tab-selector-2:checked ~ .content .content-2,
.tabs input.tab-selector-3:checked ~ .content .content-3,
.tabs input.tab-selector-4:checked ~ .content .content-4,
.tabs input.tab-selector-5:checked ~ .content .content-5,
.tabs input.tab-selector-6:checked ~ .content .content-6,
.tabs input.tab-selector-7:checked ~ .content .content-7 {
    -webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
    z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all ease-out 0.3s 0.3s;
    -moz-transition: all ease-out 0.3s 0.3s;
    -o-transition: all ease-out 0.3s 0.3s;
    -ms-transition: all ease-out 0.3s 0.3s;
    transition: all ease-out 0.3s 0.3s;
}


.content .diver p {
	font-size: 14px;
	line-height: 22px;
	font-style: italic;
	text-align: left;
	margin: 0;
	color: #777;
	padding-left: 15px;
	border-left: 8px solid rgba(63,148,148, 0.1);
}

