.MAY1{
	font-family: "Arial";
	font-size: 14 px;
	color: #63659C;
	font-style: normal;
	font-weight: bolder;	
}
.MAY2{
	font-family: "Arial";
	font-size: 12 px;
	color: #31309C;
	font-style: normal;
	font-weight: bolder;
}
.seguros{
	font-family: "Verdana";
	font-size: 10 px;
	color: white;
	font-style: normal;
	font-weight: bolder;
}
.text11{
	font-family: "Arial";
	font-size: 11 px;
	font-style: normal;
	font-weight: bolder;
}
.black{
	font-family: "Arial";
	font-size: 11 px;
	font-style: normal;	
	color: #000000;
}
.black2{
	font-family: "Arial";
	font-size: 10 px;
	font-style: normal;
	color: #000000;
}
.azul{
	font-family: "Arial";
	font-size: 10 px;
	font-style: normal;
	color: #31309C;
	font-weight: bolder;
}
.TIT{
	font-family: "Arial Black";
	font-size: 10.5 px;
	color: #295199;
	font-style: normal;
	font-weight: normal;
}
.normal{
	font-family: "Arial";
	font-size: 12.5px;
	font-style: normal;
	font-weight: normal;
}
.normal_p{
	font-family: Arial;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
}
.par_bold{
	font-family: Arial Black;
	font-size: 10.5px;
	color: #295199;
	font-style: normal;
	font-weight: normal;
}
.par{
	font-family: Arial;
	font-size: 10px;
	color: #295199;
	font-style: normal;
	font-weight: normal;
}
.par_red{
	font-family: Arial;
	font-size: 10px;
	color: red;
	font-style: normal;
	font-weight: normal;
}
.par_black{
	font-family: Arial;
	font-size: 10px;
	color: black;
	font-style: normal;
	font-weight: normal;
}
.par_black_bold{
	font-family: Arial Black;
	font-size: 10.5px;
	color: black;
	font-style: normal;
	font-weight: normal;
}
.par_black_bolder{
	font-family: Arial;
	font-size: 10.5px;
	color: black;
	font-style: normal;
	font-weight: bolder;
}
.par_cur{
	font-family: Arial;
	font-size: 10px;
	color: #0033FF;
	font-style: italic;
	font-weight: normal;
}
.min{
	font-family: Verdana;
	font-size: 7px;
	color: #295199;
	font-style: normal;
	font-weight: bolder;
}
.min_menu{
	font-family: Verdana;
	font-size: 9px;
	color: #295199;
	font-style: normal;
	font-weight: 900;
}
.link1{
	font-family: Arial;
	font-size: 12px;
	color: #295199;
	font-style: normal;
	font-weight: bolder;
}
.link2{
	font-family: Arial;
	font-size: 12px;
	color: #FF3300;
	font-style: normal;
	font-weight: bolder;
}
.link3{
	text-decoration: none;
	text-transform:;
	font-family: Arial;
	font-size: 12.5px;
	color: black;
	font-style: normal;
	font-weight: bolder;
}
.button{
	text-decoration: none;
	font-family: Arial;
	font-size: 12.5px;
	color: #000000;
	font-style: normal;
	font-weight: bolder;
	background-color: #FFFFFF;
	border: thin outset #000000;
	cursor:hand;
}

.blanc{
    FONT-SIZE: 10pt;
    COLOR: white;
    FONT-FAMILY: Verdana;
    font-weight:bold;
    background-color :#29509B;
}
.barra {
	   scrollbar-3dlight-color:;
	   scrollbar-arrow-color:;
	   /*scrollbar-base-color:#FFFFCC;*/
	   scrollbar-darkshadow-color:;
	   /*scrollbar-face-color:#FFFF66;*/
	   scrollbar-highlight-color:;
	   scrollbar-shadow-color:;
}
.titulo{
	border:thin solid;
	font:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	background-color: #0066CC;
	width: 300px;
	font-weight:bold;
}
.nav { 
    position:relative;
	font:Arial, Helvetica, sans-serif;    
    font-size=8pt;
    color:#66594C;
    text-decoration:none; 
    }
a{
	text-decoration: none;
	text-transform:;
	font-family: Arial;	
}

.MAY1 .tablaSalarial
{
	color:black;
	text-align:center;
}

.MAY1 .tablaSalarial table
{
	margin:0 auto;
}

.MAY1 .tablaSalarial table td
{
	font-weight:bold;
	padding:0 10px;
	text-align:right;
}

Se aplica cuando el elemento "a" está siendo activado por el usuario; por ejemplo entre que el usuario pulsa y suelta el ratón sobre el elemento.
a:hover {
	font-family: Arial;		
}
Si "a" es un enlace o hipervínculo, la pseudoclase link hace referencia al estado "no visitado", es decir, el estilo indicado en la declaración se aplicará al enlace mientras el usuario no lo hay visitado.
a:link {
	font-family: Arial;	
}
Si "a" es un enlace o hipervínculo, la pseudoclase visited hace referencia al estado "visitado". Es complementario del anterior y por tanto la declaración afectará al enlace sólo si el usuario ya ha visitado la página a la que hace referencia.
a:visited {
	font-family: Arial;
}
Se aplica cuando el elemento "a" está siendo señalado por el usuario con el ratón.

a:active {
	font-family: Arial;
}
 a:focusSe aplica mientras el elemento "a" tiene el foco, es decir, está listo para recibir entrada del usuario por teclado.
a:first-line El estilo se aplicará a la primera línea de texto del elemento "a". Hay que tener cuidado con este pseudoelemento ya que algunas propiedades no se pueden especificar (de todos modos, las propiedades de fuente, color y fondo si se pueden utilizar).
a:first-letter 



