.tabs {
    position: relative;
	margin: 40px auto;
	width: 100%;
}

.tabs input {
	position: absolute;
	z-index: 1000;
	/*width: 118px;*/
	width: 16%;
	height: 40px;
	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	left: 16%;
}
.tabs input#tab-3{
	left: 33%;
}
.tabs input#tab-4{
	left: 51%;
}
.tabs input#tab-5{
	left: 67%;
}
.tabs input#tab-6{
	left: 83%;
}
/*
.tabs input#tab-2{
	left: 118px;
}
.tabs input#tab-3{
	left: 236px;
}
.tabs input#tab-4{
	left: 354px;
}
.tabs input#tab-5{
	left: 472px;
}
.tabs input#tab-6{
	left: 590px;
}*/
.tabs label {
	background: #c4c4c4;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a4a4a4+0,fb916d+6,fac06a+61,f5fc6a+100 */
background: rgb(164,164,164); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(164,164,164,1) 0%, rgba(251,145,109,1) 6%, rgba(250,192,106,1) 61%, rgba(245,252,106,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(164,164,164,1) 0%,rgba(251,145,109,1) 6%,rgba(250,192,106,1) 61%,rgba(245,252,106,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(164,164,164,1) 0%,rgba(251,145,109,1) 6%,rgba(250,192,106,1) 61%,rgba(245,252,106,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4a4a4', endColorstr='#f5fc6a',GradientType=0 ); /* IE6-9 */
	font-size: 14px;
	line-height: 40px;
	height: 40px;
	position: relative;
	padding: 0 8px;
    float: left;
	display: block;
	width: 102px;
	color: #385c5b;
	
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
    border-radius: 3px 3px 0 0;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	display: block;
}

.tabs input:hover + label {
	background: #c4c4c4;
}

.tabs label:first-of-type {
    z-index: 6;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 5;
}

.tab-label-3 {
    z-index: 4;
}

.tab-label-4 {
    z-index: 3;
}
.tab-label-5 {
    z-index: 2;
}
.tab-label-6 {
    z-index: 1;
}

.tabs input:checked + label {
	background: rgba(255, 255, 255, 0.5);
	z-index: 8;
	
    -webkit-animation: page 0.2s linear;
    -moz-animation: page 0.2s linear;
    -ms-animation: page 0.2s linear;
    -o-animation: page 0.2s linear;
    animation: page 0.2s linear;
}

.clear-shadow {
	clear: both;
}

.content {
	background: rgba(255, 255, 255, 0.3);
	position: relative;
    width: 100%;
	height: 600px;
	z-index: 5;
	overflow: hidden;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2), 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 0 3px 3px 3px;
}

.content div {
    position: absolute;
	top: 0;
	padding: 10px 40px;
	z-index: 1;
    opacity: 0;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.content-1, .content-3, .content-5 {
	-webkit-transform: translateX(-250px);
	-moz-transform: translateX(-250px);
	-o-transform: translateX(-250px);
	-ms-transform: translateX(-250px);
	transform: translateX(-250px);
}

.content-2, .content-4, .content-6 {
    -webkit-transform: translateX(250px);
	-moz-transform: translateX(250px);
	-o-transform: translateX(250px);
	-ms-transform: translateX(250px);
	transform: translateX(250px);
}

.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 {
    -webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-o-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
	z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.1s;
    -moz-transition: all ease-out 0.2s 0.1s;
    -o-transition: all ease-out 0.2s 0.1s;
    -ms-transition: all ease-out 0.2s 0.1s;
    transition: all ease-out 0.2s 0.1s;
}

.content div h2,
.content div h3{
	color: #5f5c55;
}
.content div p {
	font-size: 14px;
	font-style: italic;
	text-align: left;
	margin: 0;
	color: #777;
	padding-left: 5px;
	border-left: 8px solid rgba(63,148,148, 0.1);
}

.content a, a:hover { 
  outline: none;
  text-shadow:  #ffffff 1px 1px;
  text-decoration: underline;
  color: #929292;
  /* 4D7C1B */
}
.content ul {
	list-style: none;
	margin-left:-40px
}

.content ul li {
	border-left: 2px solid rgba(126,97,29, 0.1);/**/
	padding:2px 8px 2px 8px;
	font-size: 13px;
	color: #888;
}
.content ul li li {
	border-left: 2px solid rgba(126,97,29, 0.3);
}

@keyframes "page" {
 0% {
    left: 0;
 }
 50% {
    left: 10px;
 }
 100% {
    left: 0;
 }

}

@-moz-keyframes page {
 0% {
   left: 0;
 }
 50% {
   left: 10px;
 }
 100% {
   left: 0;
 }

}

@-webkit-keyframes "page" {
 0% {
   left: 0;
 }
 50% {
   left: 10px;
 }
 100% {
   left: 0;
 }

}

@-ms-keyframes "page" {
 0% {
   left: 0;
 }
 50% {
   left: 10px;
 }
 100% {
   left: 0;
 }

}

@-o-keyframes "page" {
 0% {
   left: 0;
 }
 50% {
   left: 10px;
 }
 100% {
   left: 0;
 }

}