/* TEXTOS GENERICOS*/
/*  Este estilo contiene propiedades del texto que heredan  el resto de estilos de la página */
BODY, TD {
	font-family: Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif; 
	font-size: 11px; 
	color:black;	
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;}
/*estilo blanco simple*/
.blanco{color:white;}
.rojo{color:#990000;}
.azul{color:#0033FF;}
.verde{color: #228B22;}

/*estilo negrita y color blanco*/
.negrita-blanco{color:white; font-weight: bold;}
.negrita-negro{color:black; font-weight: bold;}

/* enlace por defecto*/
A:active {color: #0066CC;  text-decoration : none;}
A:link {color: #0066CC;  text-decoration : none;}
A:visited {color: #0066CC;  text-decoration : none;}
A:hover {color: #0066CC;  text-decoration : underline;}

/*enlace para ver más*/
A.link-menu:active { color: white;  text-decoration : none; }
A.link-menu:link {color: white;  text-decoration : none;}
A.link-menu:visited {color: white;  text-decoration : none;}
A.link-menu:hover {color: white;  text-decoration :underline;}
	
A.link-blanco:active {font-size: 10px; color: white;  text-decoration : none; }
A.link-blanco:link {font-size: 10px; color: white;  text-decoration : none;}
A.link-blanco:visited {font-size: 10px; color: white;  text-decoration : none;}
A.link-blanco:hover {font-size: 10px; color: white;  text-decoration :underline;}

A.link:active {font-size: 10px; color: black;  text-decoration : none; }
A.link:link {font-size: 10px; color: black;  text-decoration : none;}
A.link:visited {font-size: 10px; color: black;  text-decoration : none;}
A.link:hover {font-size: 10px; color: black;  text-decoration :underline;}
/* FORMULARIOS*/
/* Estilo para desplegables*/
SELECT {background-color:white; border:1px solid #666666; font-family: Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif; font-size: 10px; color:black;} 
/* Estilo para campos de texto*/
INPUT.formTXT {font-family: Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif; font-size: 10px; color:black;background-color: none; border:1px solid #666666; }

TEXTAREA{font-family: Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif; font-size: 10px; color:black;background-color: none; border:1px solid #666666; }
/* botón*/
INPUT.formBOTON {font-family: Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif; font-size: 10px;color: black;background-color: white;border:1px solid #666666;}

/* LISTADOS*/
LI { padding-bottom: 2pt; padding-top: 2pt; list-style-image:url('../images/1_3_eg.gif'); list-style-type:square; list-style-position:inside }
LI.liblanco {
	padding-bottom: 0pt;
	padding-top: 0pt;
	list-style-type: circle;
	list-style-position: outside;
	color: white;
	padding: 0 0 0 0;
}

 /*Otras posibilidades de listados*/
/*LI.circle{ list-style-type: circle }
/*LI.disc{ list-style-type: disc }
UL.plain  { list-style-type: none }
OL        { list-style-type: upper-alpha }  /* A B C D E etc. */
/*OL OL     { list-style-type: decimal }      /* 1 2 3 4 5 etc. */
/*OL OL OL  { list-style-type: lower-roman }  /* i ii iii iv v etc. */
