/* Manual de CSS de WebEstilo.com */
/* Definición de estilos en un archivo aparte */

/* Estilo para el documento */
BODY {font-family:Verdana,sans-serif;font-size:x-small;
      margin-left:0.25in; margin-right:0.25in; color:#black}

/* color del texto enlace cuando ya ha sido visitado */
a:visited {
color: #999999; /* gris */
}

/* color del texto enlace cuando el puntero del raton esta sobre él */
a:hover {
color: #FF0000; /* rojo */
}

/* color del texto del enlace */
a:link {
color: #999999; /* gris */ ;
}


/* Estilo para la cabecera de nivel 2 */
H2 {font-family:Verdana,sans-serif; font-size:14pt;color:red}

/* Estilos para otras etiquetas */
B, TD {font-family:Verdana,sans-serif;font-size:x-small}
TH {font-family:Verdana,sans-serif;font-size:x-small;
    color:white;background-color:#0080C0}
PRE, TT, CODE  {font-family:Courier New,Courier;
                font-size:9pt;color:black}

/* footer */
body2{
  margin:0;
  padding:0 0 <length> 0;
 }
 div#footer{
  background:#99CCFF;
  color:black;
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:<length>;
 }
 @media screen{
  body>div#footer{
   position: fixed;
  }
 }
 * html body{
  overflow:hidden;
 } 
 * html div#content{
  height:100%;
  overflow:auto;
 }

