#work {
	width:100%;
	height:100px;
	position:absolute;
	bottom:0;
	background:#fff;
	-webkit-transform-style:preserve-3d;
	transform-style:preserve-3d;
	-webkit-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	display:none
}
/* Container box to set the sides relative to */
.cube {
        cursor: pointer;
        position: relative;
        float: left;
        width: 33.333%;
        bottom: 0px;
	text-align: center;
	margin: 0 auto;
	height: 100%;
	-webkit-transition: -webkit-transform .33s;
	transition: transform .33s; /* Animate the transform properties */

	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; /* <-NB */
        z-index: 999;
}

/* The two faces of the cube */
.flippety,.flop {
	height: 102px;
}

/* Position the faces */
.flippety {
	-webkit-transform: translateZ(50px);
	transform: translateZ(50px);
}

.flop {
	-webkit-transform: rotateX(-90deg) translateZ(-50px);
	transform: rotateX(-90deg) translateZ(-50px);
}

/* Rotate the cube */
.cube:hover {
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg); /* Text bleed at 90º */
}


.imgbtn {
     height: 102px;width: 100%;
}