﻿/* 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. */
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
h5 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
h4 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
h3 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
h2 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
h1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
iframe {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
object {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
applet {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
span {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
div {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
html {
  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 {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #ffffff;
  font-size: 12px;
  color: #2e2d2c;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}

.googleadsenseleft {
float: left;
padding: 0px;
margin: 0px 10px;
border-width: 0px, 0px, 10px,5px;
border-style; solid;
border-color: #ffffff;
background-color: #ffffff;
}


img {
	float: left;
	margin-right: 8px;
	margin-top: 5px;
}

/* Commonly used to style page titles. */
h1 {
  line-height: 14px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
  line-height: 14px;
  font-size: 12px;
  color: #000;
  font-weight: bold;
}
/* Sets the style for unvisited links. */
a:link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
  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;
  width: 95%;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  min-width: 760px;
  margin: 10px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #header {
  background-color: #ffffff;
  height: 75px;
  line-height: 15px;
  font-size: 18px;
  padding: 20px 10px 10px 100px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-repeat: repeat x;
  background-image: url("images/repeatbluebackground.jpg");
  font-weight: bold;
  border-bottom: solid 1px #3A9400; /* Sets the bottom border properties for an element using shorthand notation */
}
#outerWrapper #topNavigation {
  background-color: #ffffff;
  height: 25px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border-bottom: solid thick #0073ac; /* Sets the bottom border properties for an element using shorthand notation */
}

#tagline {
  font-weight: bold;
  color: #0073ac;
  font-style: italic;
  margin: 0;
  padding: 0 0 0 20px;
  width: 400px;
  float: left;
}


#outerWrapper #topNavigation ul {
  margin: 0;
  padding: 0;
  padding: 0 30px 0 0;
  text-align: right;
}
#outerWrapper #topNavigation li {
  display: inline;
  background-color: #ffffff;
  color: #0073ac;
}


#outerWrapper #topNavigation a:active {
  color: #0066cc;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #topNavigation a:focus {
  color: #0e8a08;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #topNavigation a:hover {
  color: #f79350;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #topNavigation a:visited {
  color: #D2A404;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #topNavigation a:link {
  color: #0073ac;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #topNavigation a {
  color: #3e2a0d;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #contentWrapper #sidebar {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #ffffff;
  float: left;
  font-size: 10;
  border-right: solid 1px #cda98b; /* Sets the right border properties for an element using shorthand notation */
  color: #000000;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  width: 22%;
}

#outerWrapper #contentWrapper #sidebar ul {
  list-style: none;
  margin: 0;
  padding:  0;
}
#outerWrapper #contentWrapper #sidebar li {
   border-bottom: 1px solid #0066cc;
  padding: 5px 10px 5px 10px;
  font-size:  12px;
  background-color: #ffffff;
}



#outerWrapper #contentWrapper #sidebar a:active {
  color: #0066cc;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
}
#outerWrapper #contentWrapper #sidebar a:focus {
  color: #0e8a08;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
}
#outerWrapper #contentWrapper #sidebar a:hover {
  color: #f79350;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #sidebar a:visited {
  color: #D2A404;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
}
#outerWrapper #contentWrapper #sidebar a:link {
  color: #0066cc;
  font-size: 14px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
}
#outerWrapper #contentWrapper #sidebar a {
  color: #276224;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
#outerWrapper #contentWrapper #sidebar h3 {
  color: #0073ac;
  font-size: 16px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}
/* 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 {
  padding: 10px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #ffffff;
  margin: 0 0 0 26%; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
font-size: 12px;
line-height: 18px;
}

#outerWrapper #contentWrapper #content p {
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}

#outerWrapper #contentWrapper #content h4 {
  
  padding-bottom: 10px;
  color: #0073ac;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-decoration: none;
  font-weight: bold;
}
#outerWrapper #contentWrapper #content a:active {
  color: #0066cc;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
  
}
#outerWrapper #contentWrapper #content a:focus {
  color: #0e8a08;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #f79350;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:visited {
  color: #D2A404;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:link {
  color: #0066cc;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
  font-weight: normal;
}
#outerWrapper #contentWrapper #content a {
  color: #3e2a0d;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: underline;
  font-weight: bold;
}
#outerWrapper #contentWrapper #content h3 {
padding-top: 0px;
color: #0073ac;
  font-size: 12px;
  font-family: Arial, Helvetica, Verdana, sans-serif; 
  text-decoration: none;
 
}
#outerWrapper #contentWrapper #content h2 {
padding-top: 5px;
  color: #0073ac;
  font-size: 14px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-decoration: none;
}
#outerWrapper #contentWrapper #content h1 {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
border: solid 1px #0073ac;
background-color: #ffffff;
line-height: 20px;
  color: #0073ac;
  font-size: 18px;
  font-family: Arial, Helvetica, Verdana, sans-serif;
    text-decoration: none;
}

/* 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 {
  display: block;
  clear: left;
}
#outerWrapper #footer {
  background-color: #ffffff;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border: solid 20px #0073ac; /* Sets the border properties for an element using shorthand notation */
}
#outerWrapper #footer a:hover {
  color: #f79350;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-weight: bold;
}
#outerWrapper #footer a:link {
  color: #0066cc;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-weight: normal;
}
#outerWrapper #footer a {
  color: #3e2a0d;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-weight: bold;
}
#outerWrapper #footer a:active {
  color: #000000;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}




