html {
  margin-bottom: 1px;
}

p {
  text-align: justify;
}

html,
body {
  height: 80%;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;

  font: 400 0.8em Arial;
  line-height: 180%;

  background: url(/img/bg/background.jpg) repeat top left fixed;
  color: #333333;
}

.lista
{
margin-top:-10px;
margin-left: -20px;
}

h1, h2, h3, h4, h5, h6, p, dl {
  margin: 0;
  padding: 10px 0;
}

h1 {   
  clear: both;
  font: 200 1.5em georgia, serif;
  color: navy;  
}

h2 {
  clear: both;
  font: 400 1.3em georgia, serif;
  color: #61804E;
}

h3 {
  font: 700 1.1em georgia, serif;
  color: #8F512A;
}

h4 {
  font: 400 0.9em georgia, serif;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #5E9040;  
}


a:visited {
  background-color: #F1FFE3;
}

a:hover {
  color: #3C5D29;
  background-color: #F1FFE3;
}



/**************************************************************
   Form Elements
 **************************************************************/


label {
  float: left;
  text-align: right;
  width: 9em;
  padding-right: 1em;
  
}


input,
textarea,
select {
  padding: 4px;
  font: 400 1em georgia, sans-serif;
  
  color: #666;
  background: #FFF;
  border-width: 1px;
  border-style: solid;
  border-color: #888 #DDD #DDD #888;  
}

input:hover,
textarea:hover,
select:hover {
  padding: 4px;
  font: 400 1em georgia, sans-serif;
  
  color: #666;
  background: #e5feff;
  border-width: 1px;
  border-style: solid;
  border-color: #888 #DDD #DDD #888;  
}


input:focus,
textarea:focus,
select:focus {  
  padding: 3px;
  color: #000;
  background: #F1FFE3;
  border-width: 2px;
}

input.button {
  padding: 1px 10px;

  font: 400 1em georgia, sans-serif;
  cursor: pointer;

  color: #fff;
  background: #508231;
  border-width: 1px;
  border-style: solid;
  border-color: #B8E78B #2D5018 #2D5018 #B8E78B;
}

input.button:hover {
  background:#318182;
  border-color: #8be7df #18504b #18504b #8be7df;
}

.required {
  cursor: help;
  border-bottom: 1px solid #CCC;
}



/**************************************************************
   Images
 **************************************************************/

img.floatRight {
  margin: 5px 0px 10px 15px;  
}

img.floatLeft {
  margin: 5px 20px 10px 0px;
}

a img {  
  border: 4px solid #D5C9C2;
}

a:hover img {  
  border: 4px solid #BAAAA1;
}

/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.09.12 
   PURPOSE: Controls the layout of the site and styles
            the menus
 **************************************************************/



/**************************************************************
   #wrapper & #content: wrapper positions and sets the width
   on the content.  The background is then applied to #content.
 **************************************************************/

#wrapper {
  width: 585px;
  height: 80%;
  margin: 0 auto;
  
  text-align: left;
}


#content { 
  float: left;
  width: 585px;
  height: 80%;
  min-height: 80%; 
  
  background: url(../img/bg/content.gif) repeat-y top center;
}


#content[id] {
  height: auto;  
  background: url(../img/bg/content.png) repeat-y top center;
}




/**************************************************************
   #header: Holds the site title and header images
 **************************************************************/

#header {
  padding: 60px 0 2em 49px;  
/*  background: url(../img/bg/header.jpg) no-repeat top center;  */
}

/* Forces IE to set the hasLayout flag and show the header at the height of its contents \*/
* html #header {
  height: 1%;
}
/* End hide from IE-mac */


#header h1,
#header h2 {
  margin: 0;
  padding: 0;  
  background: none;
}

#header h1 {
  font-size: 3.5em;
  font-family: georgia;
  letter-spacing: -3px;
  color: navy;
}




/**************************************************************
   #menu: The top level site menu
 **************************************************************/

/**************************************************************
   #page: Holds the main page content.
 **************************************************************/

#page {  
  float: center;
  clear: both;   
  width: 730px !important;
  width: 100%;
  
  padding: 100px;  
}




/**************************************************************
   .footer: Site footer
 **************************************************************/

.footer {
  padding-top: 3em;
  font-size: 1em;
}




/**************************************************************
   .bigLinks: Large, clickable links
 **************************************************************/

ul.bigLinks {
  margin: 10px 0;
  padding: 0;
  list-style: none;
  
}

ul.bigLinks li {
  display: inline;
  margin: 0;
  padding: 0;
  background: none;
}

ul.bigLinks li a,
ul.bigLinks li a:visited {  
  display: block;

  margin: 10px 0;
  padding: 3px;

  text-decoration: none;
  background-color: #FFF;
  border: 0;  
}

ul.bigLinks li a:hover {
  padding-bottom: 2px;
  background-color: #F1FFE3;
  border-bottom: 1px solid #B8E78B;
}

ul.bigLinks li a span.title {
  color: #5E9040;  
  border-bottom: 1px solid #B8E78B;
}

ul.bigLinks li a:hover span.title {
  color: #3C5D29;
  border-bottom: 1px solid #4A6E35;
}

ul.bigLinks li a span.desc {
  display: block;
  color: #6D6864;
}

ul.bigLinks li a:hover span.desc {
  color: #555;
}



/**************************************************************
   Width classes used by the site columns
 **************************************************************/

.width100 {
  width: 100%;
}

.width75 {
  width: 73%;
}

.width66 {
  width: 64%;
}

.width50 {
  width: 48%;
}

.width33 {
  width: 31%;
}

.width25 {
  width: 23%;
}



/**************************************************************
   Alignment classes
 **************************************************************/

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}



/**************************************************************
   Generic display classes
 **************************************************************/

.clear {
  clear: both;
}

.block {
  display: block;
}

.big {
  font-size: 1.3em;  
}

.small {
  font-size: 0.85em;  
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.grey {
  color: #AAA;
}

.green {
  color: #82C048;
}

.darkBrown {
  color: navy;
}


.greenBg {
  padding: 0 10px;
  background-color: #F1FFE3;
  border-bottom: 1px solid #B8E78B;
}

.greenBg:hover {
  padding: 0 10px;
  background-color: #e3faff;
  border-bottom: 1px solid #8be7dd;
}

.highlight {
  padding: 1px 2px;
  background: #D9F5EC;
  border-top: 1px solid #BDEDDE;
}

.highlight:hover {
  padding: 1px 2px;
  background: #d9f5da;
  border-top: 1px solid #c2edbd;
}

/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.09.12 
   PURPOSE: Fixes IE's major problems
 **************************************************************/

#content {  
  float: left;
  width: 589px;
  height: 80%;
  min-height: 80%; 
}
