/******************
Bloques y efecto 3D
******************/

.bloques {
	list-style: none;
	width: 100px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

.cara {
	width: 150px;
	height: 150px;
	display: inline-block;
	vertical-align: top;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	opacity: 1;
	margin-top: 22px;
	margin-right: 30px;
	margin-bottom: 5px;
	margin-left: 30px;
}
.cara:hover{
opacity:1;
}

.box {
width: 150px;
height: 150px;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: translateZ(-100px);
-moz-transform: translateZ(-100px);
transform: translateZ(-100px);
-webkit-transition: -webkit-transform 500ms;
-moz-transition: -moz-transform 500ms;
transition: transform 500ms;
}

.box:hover {
-webkit-transform: rotateY(-78deg) translateZ(20px);
-moz-transform: rotateY(-78deg) translateZ(20px);
transform: rotateY(-78deg) translateZ(20px);
}

.box .poster,
.box .info {
	position: absolute;
	width: 150px;
	height: 150px;
	background-color: #fff;
	text-align: left;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	
}

.box .poster {
-webkit-transform: translateZ(100px);
-moz-transform: translateZ(100px);
transform: translateZ(76px);
background-size: cover;
background-repeat: no-repeat;
outline:2px solid #575757;
box-shadow: inset 0 .1em 1em #999999;
-webkit-box-shadow: inset 0 .1em 1em #999999;
-moz-box-shadow: inset 0 .1em 1em #999999;
-o-box-shadow: inset 0 .1em 1em #999999;
}

.box .info {
-webkit-transform: rotateY(90deg) translateZ(100px);
-moz-transform: rotateY(90deg) translateZ(100px);
transform: rotateY(90deg) translateZ(76px);

font-size: 0.75em;
outline:2px solid #575757;
}

/*************************************
Texto en cara adyacente
**************************************/

.info header {
color: #000;
padding: 7px 10px;
font-weight: bold;
height: 15px;
background-size: contain;
background-repeat: no-repeat;
}

.info header h1 {
	font-size: 18px;
	color: #059a91;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 2px;
	margin-left: 0;
	padding-top: 10px;
}

.info .subtitulo{
	font-style: normal;
	color: #059a91;
}

.info p {
	font-weight: normal;
	font-family: Share;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	font-size: 14px;
}

/*************************************
Imagenes en cara principal
**************************************/

.cara:nth-child(1) .box .poster {
	background-image: url(../images/cuerpo/fondocubo4.jpg);
	
}

.cara:nth-child(2) .box .poster {
	background-image: url(../images/cuerpo/fondocubo1.jpg);
}

.cara:nth-child(3) .box .poster {
	background-image: url(../images/cuerpo/fondocubo2.jpg);
}
