body
{
  background: #eaeddc;
  margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
  padding: 0;
  text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
  color: #525A3D;
  font-family: Palatino, Serif;
  font-size: medium;
  padding-top: 10px;
}
a
{
  color: #525A3D;
  font-weight: bold;
  text-decoration: none;
}
a:hover
{
  color: #778458;
}
.main #container
{
  width: 960px;
  margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  text-align: left;
  padding: 10px 10px 10px 10px;
}
.main #header
{
  padding: 0px 0px 0px 0px;
}
.main #header h2
{
  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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.main #sidebar1
{
  float: left; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
  padding: 0px 0px 0px 0px;
}
.main #sidebar1 ul
{
  list-style-type: none;
  margin-left: -40px;
}
.main #sidebar1 li
{
  padding: 0px 0px 5px 0px;
}
.main #sidebar1 a:hover
{
  color: #778458;
}
.main #mainContent
{
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 100px;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 0px;
}
.main #footer
{
  line-height: 14px;
  height: 14px;
  padding: 0;
}
.main #footer p
{
  margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
  padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.divider
{
  background-color: #778458;
  line-height: 1px;
}
.fltrt /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
{
  float: right;
}
.fltlft /* this class can be used to float an element left in your page */
{
  float: left;
}
.clearfloat /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
{
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}
.small
{
  font-size: x-small;
}
.xsmall
{
  font-size: xx-small;
}
.large
{
  font-size: large;
}
.xlarge
{
  font-size: x-large;
}
.xxlarge
{
  font-size: xx-large;
}
.center
{
  text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
.main #copyrightLinks
{
  width: 33%;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}
.main #emailLinks
{
  width: 33%;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.main #bottomLinks
{
  width: 33%;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
}
.screenDisplay
{
}
.printDisplay
{
  display: none;
}
.bold
{
  font-weight: bold;
}
.courier
{
  font-family: "Courier New" , Courier, monospace;
}
.hidden
{
  display: none;
}
.indent
{
  padding-left: 1em;
}
.doubleindent
{
  padding-left: 2em;
}
.noborder
{
  border: 0;
}
