/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


h1 {
  background-color:blue;
  color: white;
  font-family : Tahoma; 
  font-size: 35px;
  
}

h2 {
  /*background-color:lightgrey;*/
  color: blue;
  font-family : Tahoma; 
  font-size: 25px;
}

h3 {
  /*background-color: lightgrey;*/
  color: blue;
  font-family : Tahoma; 
  font-size: 20px;
}

body {
  background-color:lightyellow;
  color: black;
  font-family: Ubuntu, Bitter, Serif;
  font-size: 12px;
  }
  
img {
position:absolute;
}

table {
  background-color:white;
  color: black;
  width:50%;
  font-family : Times New Roman; 
  font-size: 30px;
}


article {
    padding: 25px 25px 10px 10px;
   /*    background:lightyellow;*/
    border: 2px solid black;
    
}


li {
    margin-right: 10px;
    padding: 5px 5px 5px 5px;
    background: white;
    border: 1px solid darkblue;
    border-radius: 10px;
    box-shadow: inset -3px -3px 3px #888;
   
}

p {
    padding: 5px;
    text-align: justify;
}

.caja {
  background-color: lightyellow;
  }
  
.caja .centro{
  width: 39.8%;
  height: 95%;
  float:left;
  background-color: coral;
  background: -webkit-gradient(linear, 0 0, 100% 100%, from(coral), to(lightyellow));
  background: -webkit-linear-gradient(left, coral , lightyellow);  /*Para Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, coral, lightyellow);  /*Para Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, coral, lightyellow);  /*Para Firefox 3.6 to 15*/ 
  background: linear-gradient(to right, coral , lightyellow);  /*Sintaxis Standard*/ 
  
    border: 1px solid darkblue;
    border-radius: 10px;
    box-shadow: inset -3px -3px 3px #888;
    }  
  
.caja .izq{
  width: 20%;
  height: 100%;
  background-color: lightgreen;
  float:left;
  }    

.caja .dcha{
  width: 78.7%;
  height: 8%;
  background-color: coral;
  background: -webkit-gradient(linear, 0 0, 100% 100%, from(coral), to(lightyellow));
  background: -webkit-linear-gradient(left, coral , lightyellow);  /*Para Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, coral, lightyellow);  /*Para Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, coral, lightyellow);  /*Para Firefox 3.6 to 15*/ 
  background: linear-gradient(to right, coral , lightyellow);  /*Sintaxis Standard*/ 
  position: fixed;
  top: 48%;
  right: 90%;
  left: 20.5%;
    
  border: 1px solid darkblue;
  border-radius: 10px;
  box-shadow: inset -3px -3px 3px #888;  
 
  } 
  
.caja .clear{
  clear: both;
  } 


header {
  display: block;
	min-height: 10%;
	background: #FC6;
  background-color:blue;
  color: white;
  font-family : Tahoma; 
  font-size: 35px;
}

footer{
  display: block;
	min-height: 10%;
	background: #FC6;
  font-family : Tahoma; 
  font-size: 35px;
}


/**/