@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 10px;
	font-family: Verdana, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	text-align: center; 
	color: #000000;
}
body.section-1 {
}
body.section-2 {
}
body.section-3 {
}
a:link {
	text-decoration: none;
	color: #000000;
	/*background: #000000*/
}
a:active {
	text-decoration: none;
	color: #ffffff;
	background: #000000
}
a:visited {
	text-decoration: none;
	color: #000000;
	background: #fff600;
	background:#00FF33;
}
a:hover {
	color: #ffffff;
	background: #000000
}
a img {
	border: none;
}

.twoColElsLt #container {
	width: 1000px;  /* este ancho creará un contenedor que cabrá en una ventana de navegador 800px si el texto se deja con los tamaños de fuente predeterminados del navegador */
	margin: 50px 100px; /* los márgenes automáticos (conjuntamente con un ancho) centran la página */
	border: none;
	text-align: left; /* esto anula text-align: center en el elemento body. */
}
.twoColElsLt #header { 
	height: 85px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	/*background: #DDDDDD; */
	padding: 0 0px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColElsLt #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColElsLt #sidebar1 {
	float: left;
	width: 140px; /* dado que este elemento es flotante, debe asignarse un ancho */
	padding: 0px 0px; /* el relleno superior e inferior crea un espacio visual dentro de este div */
	overflow: auto;
	top: 0;
	bottom: 0;
	left: 0px;
	background-color: #fff;
	
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
	margin-left: 10px; /* deben asignarse los márgenes izquierdo y derecho de cada elemento que vaya a colocarse en las columnas laterales */
	margin-right: 0px;
}
.twoColElsLt #sidebar1 ul {
	list-style: none;
	margin: 0px 0 25px 0px;
}
.twoColElsLt #sidebar1 ul li.section-title {
}
.twoColElsLt #mainContent {
	height: 100%;
	margin: 0 0 0 160px;
	padding-left:20px;
	top:0;
	border-left: 1px solid #000000;
}

.twoColElsLt #mainContent td{
	vertical-align:top;
	padding-bottom: 10px;
	font: Verdana, Arial, Helvetica, sans-serif 10px lighter;
	
}
.twoColElsLt #mainContent img{
	padding-bottom: 10px;

}

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 18px; }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4 { font-size: 12px; }
h5 { font-size: 8px; }

#img-container	{ margin: 0; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }


/* Varias clases diversas para su reutilización */

    .fltrt { /* esta clase puede utilizarse para que un elemento flote en la parte derecha de la página. El elemento flotante debe preceder al elemento junto al que debe aparecer en la página. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* esta clase puede utilizarse para que un elemento flote en la parte izquierda de la página. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* esta clase debe colocarse en un elemento div o break y debe ser el último elemento antes del cierre de un contenedor que incluya completamente a un elemento flotante */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
