body
{
  background: #CCCCCC;
  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: #000000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
  padding-top: 10px;
}
a
{
  text-decoration: none;
}
a:hover
{
  color: #FF0000;
}
.main #container
{
  width: 980px; /* using 24px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
  background: #FFFFFF;
  margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  text-align: left;
  padding: 10px 10px 10px 10px;
}
.main #header
{
  background: #FFFFFF;
  padding: 10px 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 */
  background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
  padding: 0px 10px 0px 0px;
  font-weight: bold;
}
.main #sidebar1 ul
{
  list-style-type: none;
  margin-left: -40px;
}
.main #mainContent
{
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 130px;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 0px;
}
.main #footer
{
  line-height: 14px;
  height: 18px;
  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: #0000FF;
  line-height: 2px;
}
.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: x-large;
}
.xlarge
{
  font-size: xx-large;
}
.main #topLinks
{
}
.main #imageLinks
{
  text-align: center;
}
.main #titleLinks
{
  text-align: left;
  font-size: 160%;
  line-height: 130px;
  padding-left: 130px;
}
.main #copyrightLinks
{
  width: 40%;
  text-align: left;
}
.main #emailLinks
{
  width: 27%;
  text-align: center;
}
.main #bottomLinks
{
  width: 33%;
  text-align: right;
}
.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;
}
.tripleindent
{
  padding-left: 3em;
}
.noborder
{
  border: 0;
}

