/* 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. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  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: #f8f2e1;
	background-position: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #7A1600;
  font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  text-transform: uppercase;
}
/* Commonly used to style section titles. */
h2 {
  color: #7A1600;
  font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
}
/* Sets the style for the h3 header. */
h3 {
	color: #7A1600;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	text-transform: uppercase;
}
/* Sets the style for the h4 header. */
h4 {
  color: #7A1600;
  font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #00704A;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #00704A;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #7A1600;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #00704A;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #7A1600;
  text-decoration: underline;
}
/* 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 {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  min-width: 800px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 95%;
}
#outerWrapper #header {
	height: 80px;
	line-height: 15px;
}
#outerWrapper #contentWrapper {
	background-image: url(images/leftcolumn.gif);
	background-position: 0px;
	background-repeat: repeat-y;
	border-left: solid 1px #9BBD00; /* Sets the left border properties for an element using shorthand notation */
	border-right: solid 1px #9BBD00; /* Sets the right border properties for an element using shorthand notation */
	overflow: hidden;
}
#outerWrapper #contentWrapper #leftColumn1 {
	color: #7A1600;
	float: left;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 160px;
	background-image: url(images/organic_tag.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 40px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 {
    border-left: solid 1px #9BBD00;  /* 	 Sets the left border properties for an element using shorthand notation */
	color: #7A1600;
	float: right;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	text-align: left;
	overflow: visible;
}

/* 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 #content {
	color: #7A1600;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: 17px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    border-right: solid 1px #9BBD00;
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 180px;
}


#outerWrapper #footer {
	background-color: #9BBD00;
	border-top-style: none;
	height: 20px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
/* ------------------------Ray Additions to CSS start here------------------- */
#outerWrapper #header2 { /* Style for header2 includes */
	background-color: #7A1600;
	background-image: url(images/background_L.png);
	background-position: right;
	background-repeat: no-repeat;
	font-size: 18px;
	font-weight: bold;
	height: 80px;
	line-height: 15px;
}
img {
    border: 0; 
    }
.mainmenu {
	color: #7A1600;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 42px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}
.mainmenu a:link{
	color: #7A1600;
	}
	
.mainmenu a:visited{
	color: #7A1600;
	}
	
.mainmenu a:hover{
	color: #9BBD00;
	}
.mainmenu #currentpage{
	color: #00704A;
	}
	
.mainmenu a:active{
	color: #666666;
	text-decoration: none;
}
.headersRockwell {
	color: #7A1600;
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}
.headersRockwell a:link{
	color: #7A1600;
	}
	
.headersRockwell a:visited{
	color: #7A1600;
	}
	
.headersRockwell a:hover{
	color: #00704A;
	}
	
.headersRockwell a:active{
	color: #666666;
	text-decoration: none;
}
.img-float-right {
	float: right;
	margin-left: 16px;
	margin-bottom: 8px;
}
.img-float-left { /* Simple image floating to left */
	float: left;
	margin-right: 16px;
	margin-bottom: 8px;
}
.xls_rd tr td { /* This is for charts - main CSS rules for table, rows and cells */
	font: normal 12px Calibri, Verdana, Arial, Helvetica, sans-serif;
	border: 1px dotted #9BBD00;
}
.xls_rd .idx { /* rules for index cells */
	background-color: #FAF7EF;
	font: bold 11px Calibri, Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	vertical-align: middle;
}
.xls_rd .xls_int { /* rules for integer numbers */
	text-align: right;
}
.xls_rd .xls_dbl { /* rules for float numbers */
	text-align: right;
}
hr {
  border: 0;
  width: 100%;
  color: #9BBD00;
background-color: #9BBD00;
height: 1px;
}
.newsletter tr td{
	border: 1px dotted #9BBD00;
	width: 100%;
}
/* Newsletter CSS STARTS*/
.picture {
	background-color: #F9F9F9;
	border: 1px solid #CCCCCC;
	padding: 3px;
	font: 11px/1.4em Arial, sans-serif;
	clear: both;
}
.picture img { border: 1px solid #CCCCCC;
vertical-align:middle; margin-bottom: 3px; }
.right { margin: 0.5em 0pt 0.5em 0.8em; float:right; }
.left { margin: 0.5em 0.8em 0.5em 0; float:left; 
}
/* Newsletter CSS ENDS */
