
/* Archivo de estilos CSS*/

	body
	{
		/* fuentes */
		font-family: "Times New Roman", Times, Garamond;
		font-size: medium;
		font-style: normal;
		color: #000000;

		/* barra de desplazamiento*/
		scrollbar-base-color: #993333;
		scrollbar-track-color: #FFFFFF;
		scrollbar-face-color: #993333;
		scrollbar-highlight-color: #C0C0C0;
		scrollbar-3dlight-color: #FFFFFF;
		scrollbar-darkshadow-color: #000000;
		scrollbar-shadow-color: #660033;
		scrollbar-arrow-color: #FFFFFF;
	}
   


	/* etiquetas H2 */
	h2
	{
		font-family: "Times New Roman", times, garamond;
		font-size: x-large;  
	}


	

	/*Enlaces*/

	/* Enlaces sin visitar */
	a:link
	{ 
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: white;
	} 
	
	/* Enlaces visitados */
	a:visited 
	{ 
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: white;
	}

	/* Enlaces al pasar el raton */
	a:hover
	{
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: yellow;
	}


	
	/*Otros Enlaces*/
	/* Enlaces sin visitar */
	a.otroestilo:link
	{ 
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: #FFFF99;
	} 

	/* Enlaces visitados */
	a.otroestilo:visited 
	{ 
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: #FFFF99;
	}

	/* Enlaces al pasar el raton */
	a.otroestilo:hover
	{
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color: yellow;
	}


	/* Enlace azul*/
	/* Enlaces sin visitar */
	a.enlaceazul:link
	{ 
		font: 12px "Times New Roman", Times, Garamond;
		font-style:normal;
		font-weight:bold;
		color: #0000FF;
	} 

	/* Enlaces visitados */
	a.enlaceazul:visited 
	{ 
		font: 12px "Times New Roman", Times, Garamond;
		font-style:normal;
		font-weight:bold;
		color: #0000FF;
	}

	/* Enlaces al pasar el raton */
	a.enlaceazul:hover
	{
		font: 12px "Times New Roman", Times, Garamond;
		font-style:normal;
		font-weight:bold;
		color: #00CCFF;
	}



	 
		
	/*Para elementos input de formularios*/
	input 
	{ 
		background-color: #FFFFFF; 
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color:#000080;
	}
	
	

	/* Para los selects*/
	select 
	{ 
		background-color: #FFFFFF;
		font: 12px verdana, helvetica, sans-serif;
		font-style:normal;
		font-weight:bold;
		color:#000080;
	}
	
		
	/* Para botones de formularios (versiones 5 y 6 de iexplorer)*/
	.mibotonrojo
	{
		font-size:12px;
		font-family:Verdana,Helvetica;
		font-weight:bold;
		
		color:#FFFFFF;
		background: #993333;
		
		border:2px outset; /*none | solid | double | groove | ridge | inset | outset */
		border-top-color:#FFFFFF;
		border-bottom-color:black;
		border-right-color:black;
		border-left-color:#FFFFFF;
	}
	
	
	
	.mibotonblanco
	{
		font-size:12px;
		font-family:Verdana,Helvetica;
		font-weight:bold;

		color:#993333;
		background: #FFFFFF ;

		border:2px outset; /*none | solid | double | groove | ridge | inset | outset */
		border-top-color:#FFFFFF;
		border-bottom-color:black;
		border-right-color:black;
		border-left-color:#FFFFFF;
	}
	
	
	
	.mibotongris
	{
		font-size:12px;
		font-family:Verdana,Helvetica;
		font-weight:bold;

		color:#000000;
		background:#D0D0D0;

		border:2px outset; /*none | solid | double | groove | ridge | inset | outset */
		border-top-color:#FFFFFF;
		border-bottom-color:black;
		border-right-color:black;
		border-left-color:#FFFFFF;
	}


	/*Para algunas partes del texto*/
	.mitexto
	{
		font: 14px "Times New Roman", verdana, arial, helvetica, sans-serif;
		color:#000080;
	}