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

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
.body {
  color: #4b4b4d;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
.body  a:link {
  color: #006340;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: underline;
  text-transform: none;
}
.body  a:visited {
  color: #006340;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: underline;
  text-transform: none;
}
.body  a:active {
  color: #006340;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: underline;
  text-transform: none;
}
/* Sets the style for links on mouseover. */
.body a:hover {
  color: #c42128;
  text-decoration: underline;
}

.bodysmall {
  color: #4b4b4d;
  font: normal normal normal 9px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 12px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
.bodysmall  a:link {
  color: #4b4b4d;
  font: normal normal normal 9px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 12px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
.bodysmall  a:visited {
  color: #4b4b4d;
  font: normal normal normal 9px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 12px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
.bodysmall  a:active {
  color: #4b4b4d;
  font: normal normal normal 9px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 12px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
/* Sets the style for links on mouseover. */
.bodysmall a:hover {
  color: #000;
  text-decoration: underline;
}

.bodyred {
  color: #c42128;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 12px;
  text-align: left; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
/* Commonly used to style page titles. */
.h1 {
  color: #FFF;
  font: normal normal bold 10px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
/* Commonly used to style section titles. */
.h2 {
  color: #006340;
  font: normal normal normal 11px Tahoma, Geneva, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
