body {
background-color: #FFFFFF; /* white */
color: #254117 ; /* dark green */
font-size: 12pt;
font-family: Arial, Courier New, monospace;
}

p {
display: block; /* en bloque, separado de antes y después */
margin-left: 2%;
margin-right: 2%;
text-align: justify; /* parejo en ambos lados */
}

h1, h2, h3, h4, h5, h6 {
background-color: #254117; /* dark green */
color: #FFFFFF;
text-transform: capitalize; /* Primera letra mayúscula */
text-align: center;
}

h1 {font-size: 2em; }
h2 {font-size: 1.4em; }
h3 {font-size: 1.3em; }
h4 {font-size: 1.2em; }
h5 {font-size: 1em; }
h6 {font-size: .8em; }

a:link {
text-decoration: underline; /* subrayado */
font-variant: small-caps; /* Mayúsculas pequeñas */
color: #808000; /* forest green */ 
}

/* Definición del enlace sobre donde estamos */
a:active {
text-decoration: underline;
font-variant: small-caps;
color: yellow; /* amarillo */
}

/* Definición de enlace ya visitado */
a:visited {
text-decoration: underline;
font-variant: small-caps;
color: green; /* verde */
}

/* Definición de listas */
ul, ol {
margin: 0;
padding: 0.5em;
text-align: left; /* alineado a la izquierda */
}

/* Lista sin numerar */
ul {
list-style-type: square; /* Símbolo es un cuadrado */
}

/* Listas numeradas */
ol {
list-style-type: upper-roman; /* Letras romanas mayúsculas */
}

ol.arabic {
list-style-type: decimal;
}

/* Definición de Negritas */
b {
font-weight: bolder;
}

/* Definición de italizado */
i {
font-style: italic;
}

/* Definición de subrayado */
	u {
text-decoration: underline;
}

/* para páginas divididas en div */
div.container {
width:100%;
margin:0px;
/* border:1px solid #254117; */ /* dark green */
}

div.header, div.footer {
width: 100%;
margin: 0px;
padding: 20px 0px 0px 20px;
color:#FFFFFF; /* white */
background-color: #254117; /* dark green */
line-height:120%;
clear:left;
}

div.header {
height: 20%;
margin: 0px 0px 10px 0px;
font-size: 1.5em;
text-align: center;
}

div.left {
float:left;
width:25%;
margin:0;
padding:0.3em;
font-size: 12pt;
}

div.content {
margin-left:26%;
border-left:1px solid #254117; /* dark green */
padding: 0.5em;
}

ul.left {
padding:0;
margin:0.3px;
list-style-type:none;
}

a.left {
text-decoration:none;
color: #808000; /* forest green */
}

ul.bar {
float:left;
width:100%;
padding:0.4em;
margin:0;
list-style-type:none;
}

a.bar {
float:left;
width:6em;
text-decoration:underline;
color: #808000; /* forest green */
border-right:1px solid #254117; /* dark green */
}

li.bar {display:inline}

.hidden {
position:absolute;
left:0px;
top:-500px;
width:1px;
height:1px;
overflow:hidden;
}

table {
border-collapse: collapse;
caption-side: top; 
table-layout: fixed; 
overflow: visible;
}

td.right {
text-align: right;
}

td.left {
text-align: left;
}

td.w50 {
width: 50%;
}

<img {
text-align: center;
}

/*Copyright 2007, Humberto Rodríguez, All Rights Reserved*/

