@charset "utf-8";
/* CSS Document */

/*@media screen and (min-width: 600px) {*/
@media only screen and (orientation: landscape) { 
/*(min-width: 1000px) {	*/

	   body {
			background-image: url(img/back.jpg);
			background-size: cover;
	   }

       table {
           width:100%;
       }
       thead {
           font-weight:bold;
           font-size:2.5em;
       }
       tbody td {
		   border-bottom-width:thin;
		   font-size:2.2em;
       }
	   
	   .imglogo {
		   width: 200px;
	   }
	   
	   .imgicono {
		   width: 200px;
	   }
}

/*@media screen and (max-width: 600px) {*/
@media only screen and (max-width: 1000px) and (orientation: portrait){
       body {
			background-image: url(img/back_cel.jpg);
			background-size:cover;
		}
	   
	   table {
           width:100%;
       }
       thead {
           display: none;
       }
       tbody td {
           display: block;
           text-align:center;
		   border-bottom-width:thin;
           font-size:2em;
       }
       /*tbody td:before {
           content: attr(data-th);
           display: block;
           text-align:center;
       }*/
	   
	   .imglogo {
		   width: 30%;
	   }
	   
	   .imgicono {
		   width: 35%;
	   }
}

