/* 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;
}
/* 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: #2e3645;
  background-image: url(bluegrey.gif);
  color: #2a2d2e;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  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: #336688;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
h3{
 font: bold 100% Arial,sans-serif;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}

h4{
 font: bold 97% Arial,sans-serif;
 color: #333333;
 margin: 0px;
 padding: 0px;
}

h5{
 font: 90% Arial,sans-serif;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #d74f4f;
  font-weight: bold;
  text-decoration: none;
}
.pod {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	border: 1px solid #0066FF;
	text-align: center;
}
.pod1 {
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	border: 1px solid #0066FF;
	text-align: inherit;
}

/* Sets the style for visited links. */
a:visited {
  color: #3b62a6;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #ca0009;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ca0009;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #262499;
}
/* 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) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 780px;
	margin-top: 6px;
	margin-bottom: 5px;
}
#outerWrapper #header {
  background-color: #336699;
  border-bottom: solid 1px #5a6484; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 0px 0px0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/************ Nav Bar and Quote Box styles **************/

#outerWrapper #contentWrapper #navBar {
  background-color: #336799;
  border-right: solid 1px #8e9fd0; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 8px 5px 10px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 178px;
}

#outerWrapper #contentWrapper #navBar #sectionLinks{
	margin: 0px;
	padding: 0px;
	height: auto;

}

#outerWrapper #contentWrapper #navBar #sectionLinks h3{
	padding: 10px 0px 2px 10px;
	border-bottom: 1px solid #cccccc;
}

#outerWrapper #contentWrapper #navBar #sectionLinks a:link, #sectionLinks a:visited {
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #cccccc;
	background-image:  url(/Includes/brg_nav.jpg);
	font-weight: bold;
	padding: 3px 0px 3px 10px;
	color: #FFFFFF;
	background-color: #99384B;
}

#outerWrapper #contentWrapper #navBar #sectionLinks a:hover{
	border-top: 1px solid #cccccc;
	background-color: #DDEEFF;
	background-image: none;
	font-weight: bold;
	text-decoration: none;
	color: #21536A;
}

/************* siteQuote styles **************/

.siteQuote{
	margin: 0px;
	padding: 0px 5px 5px 5px;
	border-bottom: 1px solid #cccccc;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #FFFFFF;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}

.siteQuote h3{
	padding: 10px 0px 2px 0px;
}

.siteQuote a{
	display: block; 
}

.quoteTitle {
	font-style: normal;
	font-weight: bold;
}

.quoteText {
	font-style: italic;
	font-weight: bold;
}

.quoteRef {font-style: italic}

/************* Site Content Area Styles ********/

/* 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 {
  margin-bottom: 0px;
  margin-left: 179px;
  margin-top: 0;
  padding: 10px 10px 5px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Controls the Page Title Styling. */
.pageTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: bold;
	color: #334d55;
	text-align: center;
}
/* Contains the main page Address & Text Nav information. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content #addressNav {
	margin-bottom: 0px;
	margin-left: 175px;
	margin-top: 0;
	padding: 5px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	position: relative;
}

/* Contains the formatting for Right Float content Images. */
img#contentImage {
	float: right;
	margin: 0px 0px 10px 15px;
	display: inline;
}
/* Contains the formatting for Right Float Pod Images. */
img#podImage {
	float: right;
	margin: 0px 0px 2px 2px;
	display: inline;
}
/* Image Positioning in the content area. */
.leftimage {
	margin-right: 15px;
	margin-bottom: 5px;
	float:left
}


/* 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;
}

/* Display progressive floating paragraph elements. Test add. */
#outerWrapper #contentWrapper .clear {
  clear: both;
}
/**********************  Footer Information *********************/

#outerWrapper #footer {
	background-color: #336799;
	border-top: solid 1px #8e9fd0; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
}
