/*@import url('normalize.css');*/
.tabs {
    position: relative;
	margin: 0;
	width: 960px;
}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 96px;
	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: 96px;
}
.tabs input#tab-3{
	left: 192px;
}
.tabs input#tab-4{
	left: 288px;
}
.tabs input#tab-5{
	left: 384px;
}
.tabs input#tab-6{
	left: 480px;
}
.tabs input#tab-7{
	left: 576px;
}
.tabs input#tab-8{
	left: 672px;
}
.tabs input#tab-9{
	left: 768px;
}
.tabs input#tab-10{
	left: 864px;
}

.tabs label {
	background: #D05C16;
	height: 70px;
	padding-top:10px;
	position: relative;
    float: left;
	display: block;
	width: 96px;
	color: #fff;
	text-align: center;
	font-size:11px;
	line-height:12px;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.tabs label.doslineas {
	height: 50px;
	padding-top:30px;
}
.tabs label.treslineas {
	height: 58px;
	padding-top:22px;
}
.tabs label.cuatrolineas {
	height: 65px;
	padding-top:15px;
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	display: block;
}

.tabs input:hover + label {
	background: #8A152B;
}

.tabs label:first-of-type {
    z-index: 10;
    /*box-shadow: 2px 0 2px rgba(0,0,0,0.1);*/
}
.tab-label-2 {
    z-index: 9;
}
.tab-label-3 {
    z-index: 8;
}
.tab-label-4 {
    z-index: 7;
}
.tab-label-5 {
    z-index: 6;
}
.tab-label-6 {
    z-index: 5;
}
.tab-label-7 {
    z-index: 4;
}
.tab-label-8 {
    z-index: 3;
}
.tab-label-9 {
    z-index: 2;
}
.tab-label-10 {
    z-index: 1;
}

.tabs input:checked + label {
    background: #fff;
	z-index: 11;
	color: #D05C16;
    -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: #fff;
	/*position: relative;*/
    width: 100%;
	height:600px;
	z-index: 10;
	overflow-y:scroll;
	overflow-x:hidden;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.content .content-1, .content .content-2, .content .content-3, .content .content-4, .content .content-5, .content .content-6, .content .content-7, .content .content-8, .content .content-9, .content .content-10 {
    position: absolute;
	position:relative;
	top: 0;
	padding: 30px 0;
	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;
	width:960px;
	display:none;
}
.content-1, .content-2, .content-3, .content-4, .content-5, .content-6, .content-7, .content-8, .content-9, .content-10  {
	-webkit-transform: translateX(-960px);
	-moz-transform: translateX(-960px);
	-o-transform: translateX(-960px);
	-ms-transform: translateX(-960px);
	transform: translateX(-960px);
}



.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,
.tabs input.tab-selector-8:checked ~ .content .content-8,
.tabs input.tab-selector-9:checked ~ .content .content-9,
.tabs input.tab-selector-10:checked ~ .content .content-10  {
    -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;
	display:block;
    -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;
}


@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;
 }

}