
/*home button y animacion */
.backbutton{

	width:150px;
	height:60px;
	margin:50px 50px 0px 50px;
	z-index:9999;
	padding:5px ;
	
	-webkit-animation: moveLeft 0.9s ease-in-out 0.2s backwards;
	-moz-animation: moveLeft 0.9s ease-in-out 0.2s backwards;
	-o-animation: moveLeft 0.9s ease-in-out 0.2s backwards;
	-ms-animation: moveLeft 0.9s ease-in-out 0.2s backwards;
	animation: moveLeft 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveLeft{
	0% { 
		-webkit-transform: translateX(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateX(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveLeft{
	0% { 
		-moz-transform: translateX(-40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateX(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveLeft{
	0% { 
		-o-transform: translateX(-40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateX(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveLeft{
	0% { 
		-ms-transform: translateX(-40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateX(0px);  
		opacity: 1;
	}
}

@keyframes moveLeft{
	0% { 
		transform: translateX(-40px); 
		opacity: 0;
	}
	100% { 
		transform: translate(0px);  
		opacity: 1;
	}
}

/*tabs y botones*/
.tabs {
    position: relative;
	margin: 0 auto 0;
	width: 1050px;
	height:480PX;
	overflow:hidden;
}
.tabs input {
	position: absolute;
	z-index: 1000;
	width: 200px;
	height: 40px;
	left: -1px;
	top: 0px;
	float: left;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	cursor: pointer;
}
/*posicion de las tabs*/
.tabs input#tab-2{
	top: 40px;
}
.tabs input#tab-3{
	top: 82px;
}
.tabs input#tab-4{
	top: 124px;
}
.tabs input#tab-5{
	top: 166px;
}
.tabs input#tab-6{
	top: 208px;
}
.tabs input#tab-7{
	top: 250px;
}
.tabs input#tab-8{
	top: 292px;
}.tabs input#tab-9{
	top: 334px;
}.tabs input#tab-10{
	top: 376px;
}.tabs input#tab-11{
	top: 0px;
	left:220px;
}.tabs input#tab-12{
	top: 40px;
	left:220px;
}.tabs input#tab-13{
	top: 80px;
	left:220px;
}.tabs input#tab-14{
	top: 120px;
	left:220px;
}.tabs input#tab-15{
	top: 160px;
	left:220px;
}.tabs input#tab-16{
	top: 200px;
	left:220px;
}.tabs input#tab-17{
	top: 240px;
	left:220px;
}.tabs input#tab-18{
	top: 280px;
	left:220px;
}.tabs input#tab-19{
	top: 320px;
	left:220px;
}.tabs input#tab-20{
	top: 360px;
	left:220px;
}

/*etiquetas de las tabs*/
.tabs label {
	background: #F60;
	font-size: 15px;
	line-height: 40px;
	height: 40px;
	position: relative;
	padding: 0px;
	display: block;
	width: 215px;
	color: #000;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	float: left;
	clear: both;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
    border-radius: 7px 0 0 7px;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
	margin:1px;
}

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

.tabs input:hover + label {
	background: #09F;
}

.tabs label:first-of-type {
    z-index: 4;
}

.tab-label-2 {
    z-index: 3;
}

.tab-label-3 {
    z-index: 2;
}

.tab-label-4 {
    z-index: 1;
}

/*posicion de las tabs derechas*/
.tab-label-11,.tab-label-12,
.tab-label-13,.tab-label-14,
.tab-label-15,.tab-label-16,
.tab-label-17,.tab-label-18,
.tab-label-19,.tab-label-20{
	top:-418px;
	left:217px;
}

.tabs input:checked + label {
	background: #fff;
	z-index: 6;
	color: #FF6600;
}

.clear-shadow {
	clear: both;
}

/*contenido de las tabs o informacion*/
.content {
    background: #fff;
	position: relative;
    width: auto;
	margin: -835px 0 0 434px;
	height: 420px;
	width:600px;
	z-index: 5;
	overflow: hidden;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    border-radius: 7px;
}
/*animacin del contenido de las tabs*/
.content div {
    position: absolute;
	top: 0;
	padding: 10px 40px;
	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;
}

.content div{
	-webkit-transform: translateY(-450px);
	-moz-transform: translateY(-450px);
	-o-transform: translateY(-450px);
	-ms-transform: translateY(-450px);
	transform: translateY(-450px);
}
/*Selectores de las tabs*/
.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,
.tabs input.tab-selector-11:checked ~ .content .content-11,.tabs input.tab-selector-12:checked ~ .content .content-12,.tabs input.tab-selector-13:checked ~ .content .content-13,.tabs input.tab-selector-14:checked ~ .content .content-14,.tabs input.tab-selector-15:checked ~ .content .content-15,.tabs input.tab-selector-16:checked ~ .content .content-16,.tabs input.tab-selector-17:checked ~ .content .content-17,.tabs input.tab-selector-18:checked ~ .content .content-18,.tabs input.tab-selector-19:checked ~ .content .content-19,.tabs input.tab-selector-20:checked ~ .content .content-20 {
    -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;
}
/*titulo del contenido*/
.content div h2,
.content div h3{
	color: #FF6600;
}
/*parrafos del contenido*/
.content div p {
	font-size: 14px;
	line-height: 22px;
	font-style: italic;
	text-align: left;
	margin: 0;
	color: #000;
	padding-left: 15px;
	font-family: Cambria, Georgia, serif;
	border-left: 8px solid rgba(63,148,148, 0.1);
}

/*animacion global*/
#titulo {
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveDown{
	0% { 
		-webkit-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveDown{
	0% { 
		-moz-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveDown{
	0% { 
		-o-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveDown{
	0% { 
		-ms-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveDown{
	0% { 
		transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

#subtitulo{
	-webkit-animation: moveUp 1s ease-in-out 0.2s backwards;
	-moz-animation: moveUp 1s ease-in-out 0.2s backwards;
	-o-animation: moveUp 1s ease-in-out 0.2s backwards;
	-ms-animation: moveUp 1s ease-in-out 0.2s backwards;
	animation: moveUp 1s ease-in-out 0.2s backwards;
}

@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveUp{
	0% { 
		-moz-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveUp{
	0% { 
		-o-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveUp{
	0% { 
		-ms-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveUp{
	0% { 
		transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

#tabsmove{
	-webkit-animation: moveRight 2s ease-in-out 0.2s backwards;
	-moz-animation: moveRight 2s ease-in-out 0.2s backwards;
	-o-animation: moveRight 2s ease-in-out 0.2s backwards;
	-ms-animation: moveRight 2s ease-in-out 0.2s backwards;
	animation: moveRight 2s ease-in-out 0.2s backwards;
}

@-webkit-keyframes moveRight{
	0% { 
		-webkit-transform: translateX(300px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateX(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveRight{
	0% { 
		-moz-transform: translateX(40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateX(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveRight{
	0% { 
		-o-transform: translateX(300px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateX(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveRight{
	0% { 
		-ms-transform: translateX(300px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveRight{
	0% { 
		transform: translateX(300px); 
		opacity: 0;
	}
	100% { 
		transform: translateX(0px);  
		opacity: 1;
	}
}

.scroll {
    background-color:transparent;
    width: 500px;
    height: 300px;
    overflow: scroll;
}