/* 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." */

body {
  background-color: #003333;
  color: #FFFFCC;
  font-family: Garamond;
  padding: 20px;
}
tr, td {
  border-collapse:collapse;
  
  padding: 10px;
}

table { 
  width: 100%;
  border-collapse:collapse;
  
  padding: 10px;
}
.tdnumeros {
    text-align:right;
}
.justificado {
    text-align:justify;
}
.centro {
    text-align:center;
}
.menu {
    text-align:center;
    border: #FFFFCC 2px solid;
    width:20%;
}
.actual {
    
    text-align:center;
    border: #CCFF99 2px dotted;
    width:20%;
}
a:link {color: #00FF00;
        text-decoration: none;

}

a:visited { color: #CCFF00;

}

a:focus {

}

a:hover {color: #ff0000;
         /* text-decoration: underline;*/
         text-decoration: underline overline dotted;

}

a:active {color: #FF33CC;

}
