@charset "utf-8";
/* CSS Document */

body{width:100%; margin:auto; text-align: justify;}

h1, h2, h3 {color:#000000; text-align: center;} 
h1{font-size:22px; margin:50px 0 20px 20px;}
h2{font-size:18px;}
h3{font-size:14px;}

/*======================================================================================================*/
				/*CHARACTERISTICS OF THE TABLE*/
/*======================================================================================================*/

table {
  border-width: 0;
  width: 100px;
  background-color:white;
}

/*======================================================================================================*/
				/*CHARACTERISTICS OF THE ROW TABLE*/
/*======================================================================================================*/

td {
	text-align: center;
	width: 140px; 
	height: 35px;
}

/*======================================================================================================*/
				/*SIZE OF THE IMAGES*/
/*======================================================================================================*/

img {
    width: 160px;
    height: 140px;
}

/*======================================================================================================*/
			/*CHARACTERISTICS HEADER OF THE TABLE*/
/*======================================================================================================*/

th {
	background-color:#0431B4;
	font-weight: normal;
	color: #FFFFFF;
}

/*======================================================================================================*/
			/*ZOOM WHEN MOUSEOVER THE IMAGES*/
/*======================================================================================================*/

a img {
  -webkit-transition: -webkit-transform 0.6s ease;
  -moz-transition: -moz-transform 0.6s ease;
  -o-transition: -o-transform 0.6s ease;
  transition: transform 0.6s ease;
}

a img:hover {
  -webkit-transform: scale(1.10);
  -moz-transform: scale(1.10);
  -ms-transform: scale(1.10);
  -o-transform: scale(1.10);
  transform: scale(1.10);
}