/*http://www.w3schools.com/css/css3_buttons.asp */

/*body {
     background: url("iconos/textura.png");  
     background-repeat: repeat;
     background-color: #000000;
}*/


p{
    font-size: 10px;
    color: black;
    max-width: 48px;
    font-weight: bold;
}
h1 {
    color: navy;
    margin-left: 20px;
}

td {
  text-align: center;
}

/*@media screen and (min-width:300px) and (max-width:800px) {
body{font-size:0.8em;}
sidebar{display:none;}
}*/

button {
    background-color: #00AEEF; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50%;
}


input[type="range"] {
   transform: rotate(270deg);
}

.buttonEntre  {
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #00AEEF;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

/*.button2:hover {background-color: #00AEEF}*/

.buttonEntre:active {
  background-color: #00FFFF;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


.buttonEntreYellow  {
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color:#ADFF2F;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

/*.button2:hover {background-color: #00AEEF}*/

.buttonEntreYellow:active {
  background-color: #ADCF00;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


.buttonPresentacion  {
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #00AEEF;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
  width: 200px;
}

/*.button2:hover {background-color: #00AEEF}*/

.buttonPresentacion:active {
  background-color: #00FFFF;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
/* otros */

img {
    max-width: 48px;
    height: 48px;
}

#grad {
    background: red; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */
    background: linear-gradient(red, yellow); /* Standard syntax */
}

/* The animation code 
@keyframes example {
    from {background-color: red;}
    to {background-color: yellow;}
}

// The element to apply the animation to 
div {
    width: 100px;
    height: 100px;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
}
*/

