﻿* {
	margin:0;
	padding:0;
	font-family:arial;
    background-color:white;
}


header {
    padding:10px;
    background-color:white;
}

.divCuerpo,  .divCuerpo div {
   background-color:rgb(234, 127, 54);  /*Naranja*/
}

.pPie{
   background-color:white;
   height:100px;
   font-size:x-small;
   color:rgb(234, 127, 54);   
}

    .imgLogo {
        height: 64px;
        padding:3px;
    }

    .lb200 {
        font-size:15px;
        width: 200px;
        margin: 10px;
        color:white;
        font-weight: bold;
        background-color:rgb(234, 127, 54);  /*Naranja*/
    }

    .ed300 {
        font-size:15px;
        width: 230px;
        background-color:white;
        color:rgb(154, 153, 157);  /*Gris oscuro*/
        border-radius:5px;
        border-style:solid;
        border-width:thin;
    }

    .btnOK {
        font-weight: bold;
        height: 60px;
        width: 150px;
        color:rgb(154, 153, 157);  /*Gris oscuro*/
        background-color:white;
        border-radius:10px;
        border-style:solid;
        border-width:thin;
    }

    .div30 {
        height: 30px;
        width: 350px;
    }

    .div40 {
        height: 40px;
        width: 350px;
        text-align:center;
    }

#btnAceptar {
        font-size:20px;
        font-weight: bold;
        margin-left:20px;
        background-color:white;
        border-radius:10px;
        border-style:solid;
        border-width:thin;
}


/* Pantalla especial de 800px*/
@media screen and (max-width: 800px) {
      #contenedor{
         /*background: #808080;*/   /*Gris*/
         width:100%;
     }
}

/* Ventana o monitor menor de 800px */
@media screen and (max-width: 800px) {
    body {
        /*background: #ffd800;*/   /*Naranja*/
    }
      #contenedor{
        width:100%;
      }
}

/* smartphone */
/*@media screen and (max-device-width : 480px) {*/
@media screen and (max-width : 480px) {
    body {
        /*background: #b6ff00;*/ /*Verde*/
    }
      #contenedor{
        width:100%;
      }
}

/* Ipad en posición vertical*/
@media screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape){
    body {
        /*background: #0ff;*/ /*cian*/
    }

       .entry, .entry-content
       {
 	      font-size:1.2em;
	      line-height:1.5em;

	}
 }

}


