@charset "utf-8";

body
{
	margin:0px;
	padding:0px;
}
.main
{
	width:100%;
	float:left;
	height:auto;
}


.container
{
	width: 1170px;
	float: none;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}
.cat-container
{
	width:100%;
	float:left;
}
.cat
{
	width: 250px;
	height: 250px;
	margin-right: 30px;
	float: left;
	border: 10px solid #CCC;
	overflow: hidden;
	margin-bottom: 30px;
	
}
.cat a img
{width: 250px;
	height:250px;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    -webkit-transform: scale(1);
    -moz-transform:scale(1);
    -o-transform:scale(1);
    transform:scale(1);
}
.cat a img:hover
{width: 250px;
	height:250px;
	-webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    transform:scale(1.1);
}
.cat-container .cat:last-child
{
	margin-right:0px;
}

/* CSS Document */
