@charset "utf-8";
/* CSS Document */

table.listaCategorias{
	width:1150px;
	min-height:500px;
	border-spacing:0px 100px;
	/*border:solid red thin;*/
}

table.listaCategorias table.tablaCategoria{
	table-layout:fixed;
	width:450px;
	max-width:450px;
	height:450px;
	max-height:450px;
	border-spacing:0px 0px;
	/*border:solid red thin;*/
	background-color:#99DDF0;
	text-align:center;
}

table.listaCategorias table.tablaCategoria img{
	width:450px;
	margin:-1px;
	height:416px;
	border:none;
	transition-duration:0.3s;
}

table.listaCategorias table.tablaCategoria:hover img{
	width:900px;
	/*Restamos 209 y no 208 para compensar el pixel del borde que se resta en el estilo de la imagen normal.*/
	margin-top:-209px;
	margin-bottom:-209px;
	/*Restamos 226 y no 225 para compensar el pixel del borde que se resta en el estilo de la imagen normal.*/
	margin-left:-226px;
	margin-right:-226px;
	height:832px;
	transition-duration:0.3s;
}

table.listaCategorias table.tablaCategoria td{
	/*border:solid red thin;*/
	background-color:#FFF;
	overflow:hidden;
}

table.listaCategorias table.tablaCategoria td.titulo{
	background-color:#262c44;
	border-top: 3px #ebf9fc solid;
	padding-top:10px;
	height:15px;
	line-height:30px;
	font-size:30px;
	text-align:center;
	color:#FFF;
}