@charset "UTF-8";
html,/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */ body, div, span, applet,         {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* 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 {
	background-color: #DEDFD0;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
 #outerWrapper {
	text-align: center; /* Redefines the text alignment defined by the body element. */
	width: 780px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	text-align: right;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 0px;
	color: #630D0D;
}
#outerWrapper #contentWrapper #leftColumn {
	float: left;
	width: 208px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	line-height: 15pt;
	font-weight: normal;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	color: #630D0D;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #rightColumn {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 228px;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	line-height: 14pt;
	color: #000000;
	text-align: left;
	border: 1px solid #630D0D;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 5px;
	padding-left: 25px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #630D0D;
	text-align: right;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
}
/* page titles */
h1 {
	font-size: 12pt;
	font-weight: bold;
	line-height: 18px;
}
/* section titles */
h2 {
	font-size: 10pt;	
  font-weight: bold;
  }
/* Captions */
h3 {
	color: #000;
	font-size: 10px;
	font-weight: normal;
	line-height: 12px;
}
/* Sets the style for unvisited links. */
a:link {
	text-decoration: none;
	color: #630D0D;
}
/* Sets the style for visited links. */
a:visited {
	text-decoration: none;
	color: #630D0D;
}
/* Sets the style for links on mouseover. */
a:hover {
	text-decoration: underline;
    color: #630D0D;
}
/* Sets the style for a link that has focus. */
a:focus {
	text-decoration: none;
	color: #630D0D;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	text-decoration: underline;
	color: #630D0D;
}
/* Sets the style for non-indented links. */
a.nav1
 {
	padding-left: 10px;
}
/* Sets the style for single-indented links. */
a.nav2
 {
	padding-left: 25px;
}
/* Sets the style for double-indented links. */
a.nav3
 {
	padding-left: 40px;
}
/* Sets the style for triple-indented links. */
a.nav4
 {
	padding-left:55px;
}
/* Sets the style for images floated to the top of the page. */
.topimage {
	float: right;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;

}
.topimage p {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
}
/* Sets the style for images floated to the left of the page. */
.leftimage {
	float: left;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
	font-style: normal;
	font-size: 9pt;
	line-height: 14pt
}
/* Sets the style for images floated to the right of the page. */
.rightimage {
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	text-align: center;
	font-style: normal;
	font-size: 9pt;
	line-height: 14pt
}
/* Sets the style for images floated to the center of the page. */
.centerimage {
	float: none;
	font-size: 9pt;
	line-height: 14pt
	font-style: normal;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
/* Sets the style for advertising boxes in the left column. */
.adbox {
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	width: 176px;
	background-color: #FFFFFF;
	border: 1px solid #630D0D;
	text-align: center;
	color: #000000;
}
/* Sets the style for mapped points such as in EPDM Details.
.mapimage {
	color: #630D0D;
}
*/
/* Sets the style for links opening new windows. */
#newwindow {
cursor: pointer;
}

