/*BOTONES*/

button {
	max-width: 32%;
	min-width: 10%;
}


/*TABLA CON LAS PIEZAS*/

table img {
	width: 100%;
}

td {
	width: 25%;
	padding-left:5px;
}

table {
	width:40%;
	margin: 1%;
	border-collapse: collapse;
}


/*RELOJ Y RECORD*/

#reloj, #RECORD { 
	padding: 5px 10px; 
	width: 20%;
	border: 1px solid black; 
 	font: bold 1em europa, arial; 
 	text-align: center; 
 	margin: 4px; 
 	background-color: #f0ffff; 
 	border-radius: 3px;  
 }


/*CARRUSEL*/

#Puzzles ul {
	list-style-type: none;
	padding:0;
	margin: 0;
}

#carrusel div img {
	width: 100%;
	height: 100%;
}

 #carrusel{
 	padding-top: 3%;
 	width: 100%;
 	padding-left: 3%;
 	padding-bottom: 20%;
 }

.galeria{
	width: 15%;
	height: 10px;
	background-color: #BABABA;
	margin: 2px;
	-webkit-transition: height 0.4s; /* For Safari 3.1 to 6.0 */
	-moz-transition: height 0.4s;
	-o-transition: height 0.4s;
	-ms-transition: height 0.4s;
    transition: height 0.4s;
	position: relative;
	float: left;
}

.galeria:hover {
	height: 15%;
}

.galeria img {
	bottom: 15px;
	opacity: 0;
	z-index: 999;
	max-width: 100%;
	height: 0%;
	width: 100%;
	position: relative;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4 ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
	-webkit-box-reflect: 
        below 0px -webkit-gradient(
            linear, 
            left top, 
            left bottom, 
            from(transparent), 
            color-stop(50%, transparent), 
            to(rgba(255,255,255,0.3))
            );
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.galeria:hover img{
	opacity: 1;
	/*bottom: 13px;*/
	height: 15%;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/* WEB */
.cuerpo{
	width: 100%;
}

body {
	width: 100%;
	background: url(fondo.jpg) center no-repeat;
}