@charset "UTF-8";
/* 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 {
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	margin: 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: #FFF;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.2; /* 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. */
	background-image: url(../images/gradient-100-x-500-pale-green.gif);
	background-repeat: repeat-x;
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	font-size: 0.8em;
}
/* Commonly used to style page titles. */
h1 {
	color: #333333;
	font-size: 1.3em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-size: 1.1em;
	line-height: 1em;
	font-weight: normal;
}
/* Sets the style for the h3 header. */
h3 {
	color: #333333;
	font-size: 1em;
	line-height: 1em;
	font-weight: normal;
}
/* Sets the style for the h4 header. */
h4 {
	color: #333333;
	font-size: 0.9em;
	line-height: 1em;
	font-weight: normal;
}
/* Sets the style for the h5 header. */
h5 {
	color: #333333;
	font-size: .8em;
	line-height: 1em;
}
/*class style used on success profile page headers*/
.ornateFont {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 2.2em;
	font-style: italic;
	color: #630;
}
.ornateFontSmall {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-style: italic;
	color: #630;
}
/*class style for centering text*/
.centerText {
	text-align: center;
}
/* all 'band' class styles below determine band color and type color for content titling */
.h2BlueBand {
	background-color: #005cab;
	color: #FFF;
	font-size: 1.1em;
	line-height: 1;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 3px;
}
.h3PivotOBlue {
	font-size: 1em;
	line-height: 1;
	color: #FFF;
	background-color: #5091cd;
	display: block;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
}
.h3OrangeBand {
	font-size: 1em;
	line-height: 1;
	color: #FFF;
	background-color: #F3982E;
	text-align: center;
	display: block;
	padding-top: 2px;
	padding-bottom: 2px;
}
.h3GreenBand {
	font-size: 1em;
	line-height: 1;
	color: #FFF;
	background-color: #6fbe44;
	text-align: center;
	display: block;
	padding-top: 2px;
	padding-bottom: 2px;
}
.pLeadingText {
	line-height: 1.2;
}
.h2GreenBand {
	color: #FFF;
	font-size: 1.1em;
	line-height: 1;
	font-weight: bold;
	background-color: #6fbe44;
	padding-top: 2px;
	padding-bottom: 2px;
}
.h2OrangeBand {
	color: #FFF;
	font-size: 1.1em;
	line-height: 1;
	background-color: #f89728;
	padding-top: 2px;
	padding-bottom: 2px;
}
.h2YellowBand {
	color: #FFF;
	font-size: 1.1em;
	line-height: 1;
	background-color: #febe10;
	padding-top: 2px;
	padding-bottom: 2px;
}
.h2LightGreenBand {
	color: #FFF;
	background-color: #9C6;
	font-size: 1.1em;
	line-height: 1;
	padding-top: 2px;
	padding-bottom: 2px;
}
.image {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.smallText {
	font-size: 10px;
}
/*class style used for quotes in right column - can be used anywhere*/
.quotes {
	font-size: 12px;
	font-style: italic;
}
.boldText {
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #333;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
	text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
}
/* 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: left; /* Redefines the text alignment defined by the body element. */
	width: 780px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(../images/header-curved.gif);
	background-repeat: no-repeat;
	box-shadow: 0.2em 0.2em #CCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #D2E6AF;
	border-left-color: #D2E6AF;
}
#outerWrapper #header {
}
#outerWrapper #topNavigation {
	height: 50px;
	width: 780px;
	background-image: url(../images/horzNavBG2.gif);
	background-repeat: no-repeat;
	padding: 0px;
	background-color: #FFF;
	margin: 0px;
	color: #FFF;
	text-decoration: none;
}
#outerWrapper #topNavigation a:hover {
	text-decoration: underline;
}
/*styles for home/contact/blog in left nav box*/
#leftNavTextWrapper {
	width: 114px;
	float: left;
	height: 50px;
	background-color: #007b85;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1;
	padding-left: 6px;
}
#outerWrapper #topNavigation #leftNavTextWrapper ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #topNavigation #leftNavTextWrapper ul li {
	list-style-type: none;
	display: block;
}
#outerWrapper #topNavigation #leftNavTextWrapper ul li a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
	color: #FFF;
	padding-left: 2px;
}
#outerWrapper #topNavigation #leftNavTextWrapper ul li a:hover {
	color: #febe10;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	background-color: #FFF;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 120px;
	background-color: #FFF;
	background-image: url(../images/greengradient.gif);
	background-repeat: repeat-x;
}
#outerWrapper #contentWrapper #leftColumn1 ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn1 ul li {
	display: block;
	list-style-type: none;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 4px;
}
#outerWrapper #contentWrapper #leftColumn1 ul li a {
	color: #005cab;
}
#outerWrapper #contentWrapper #leftColumn1 ul li a:hover {
	color: #177B84;
	text-decoration: underline;
	width: 140px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	background-color: #FFF;
	color: #333;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CFE4AB;
}
#outerWrapper #contentWrapper #rightColumn1 a {
	color: #007b85;
}
#outerWrapper #contentWrapper #rightColumn1 a:hover {
	color: #f89728;
}
#outerWrapper #contentWrapper #leftColumn2 {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 120px;
	background-color: #FFF;
	background-image: url(../images/greengradient.gif);
}
#outerWrapper #contentWrapper #leftColumn2 ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn2 ul li {
	display: block;
	list-style-type: none;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 4px;
}
#outerWrapper #contentWrapper #leftColumn2 ul li a {
	color: #5e9732;
}
#outerWrapper #contentWrapper #leftColumn2 ul li a:hover {
	color: #177B84;
	text-decoration: underline;
	width: 140px;
}
#outerWrapper #contentWrapper #rightColumn2 {
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 110px;
	background-color: #FFF;
	color: #6fbe44;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CFE4AB;
}
	#outerWrapper #contentWrapper #leftColumn3 {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 140px;
	background-color: #FFF;
	background-image: url(../images/greengradient.gif);
	background-repeat: no-repeat;
	color: #f89728;
}
#outerWrapper #contentWrapper #leftColumn3 ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn3 ul li {
	display: block;
	list-style-type: none;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 4px;
}
#outerWrapper #contentWrapper #leftColumn3 ul li a {
	color: #f89728;
}
#outerWrapper #contentWrapper #leftColumn3 ul li a:hover {
	color: #177B84;
	text-decoration: underline;
	width: 140px;
}
#outerWrapper #contentWrapper #leftColumnBio {
	width: 120px;
	float: left;
	background-image: url(../images/greengradient.gif);
	background-repeat: no-repeat;
	text-align: center;
}
#outerWrapper #contentWrapper #leftColumnBio a {
	color: #007b85;
	font-size: 10px;
	text-align: center;
	font-weight: bold;
}
#outerWrapper #contentWrapper #rightColumn3 {
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	background-color: #FFF;
	color: #f89728;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CFE4AB;
}
/* 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: 0 170px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFF;
	background-image: url(../images/pivot-o-graphic-green.gif);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #000;
	line-height: 1.4;
}
#outerWrapper #contentWrapper #content a {
	color: #5091cd;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:hover {
	color: #F93;
}
#outerWrapper #contentWrapper #content #whatsNew {
	border: 1px solid #6fbe44;
	padding-right: 5px;
	padding-left: 5px;
}
#outerWrapper #contentWrapper #content #whatsNew #title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #5e9732;
}
/* Contains the main page content for 'what we offer'. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content2 {
	margin: 0 170px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFF;
	background-image: url(../images/pivot-o-graphic-green.gif);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #000;
	line-height: 1.3;
}
#outerWrapper #contentWrapper #content2 a {
	color: #6fbe44;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content2 a:hover {
	color: #f89728;
}
/* Contains the main page content for 'our impact'. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content3 {
	margin: 0 170px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFF;
	background-image: url(../images/pivot-o-graphic-green.gif);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #000;
	line-height: 1.3;
}
#outerWrapper #contentWrapper #content3 a {
	color: #f89728;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content3 a:hover {
	color: #5091cd;
}
#outerWrapper #contentWrapper #contentSecondaryPage {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFF;
	background-image: url(../images/pivot-o-graphic-green.gif);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #000;
	line-height: 1.3;
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 0;
	margin-left: 170px;
}
#outerWrapper #contentWrapper #contentSecondaryPage a {
	color: #007b85;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #contentSecondaryPage a:hover {
	color: #F15a22;
}
/*styles determine staff page table appearance- used on other pages as well*/
#outerWrapper #contentWrapper #content #staffTable {
	font-size: 12px;
	margin-top: 10px;
}
#outerWrapper #contentWrapper #content #staffTable tr td a {
	font-size: 12px;
}
/*styles determine media page table appearance*/
#outerWrapper #contentWrapper #content3 #mediaTable {
	font-size: 12px;
	color: #000;
	text-align: left;
}
#outerWrapper #contentWrapper #content3 #mediaTable a {
	color: #f89728;
}
/*styles determine siteMap page table appearance*/
#outerWrapper #contentWrapper #content #siteMapTable {
	font-size: .8em;
	line-height: 1;
	color: #177B84;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #177B84;
}
#outerWrapper #contentWrapper #searchContent {
	float: right;
	width: 580px;
	margin-right: 60px;
}
#outerWrapper #footer {
	background-color: #FFF;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: normal;
	text-align: center;
}
#outerWrapper #footer #bottomNav {
	text-align: left;
}
#outerWrapper #footer #bottomNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}
#outerWrapper #footer #bottomNav ul li {
	display: inline;
	padding-left: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
}
#outerWrapper #footer #bottomNav ul li a {
	font-weight: normal;
	color: #177B84;
	font-size: 12px;
}
#outerWrapper #footer #bottomNav ul li a:hover {
	color: #FA9932;
	text-decoration: underline;
}
/*class style causes selected to display white type against a blue bg*/
.blueBG {
	background-color: #5091cd;
}
/*class style causes selected to display white type against a green bg*/
.greenBG {
	background-color: #6fbe44;
}
/*class style causes selected to display white type against na orange bg*/
.orangeBG {
	background-color: #f89728;
}
/*class style causes selected to display green type*/
.pGreen {
	color: #5e9732;
}
/*class style causes selected to display orange type*/
.iOrange {
	color: #faa61a;
}
/*class style causes selected to display teal type*/
.vTeal {
	color: #007b85;
}
/*class style causes selected to display blue type*/
.oBlue {
	color: #5091cd;
}
/*class style causes selected to display limegreen type*/
.tLimeGreen {
	color: #6fbe44;
}
/*class style causes selected to display kidred type*/
.kidRed {
	color: #f15a22;
}
/*class style causes selected to display kidroyal type*/
.kidRoyal {
	color: #005cab;
}
/*class style causes selected to display kidorange type*/
.kidOrange {
	color: #f89728;
}
/*class style causes selected to display kidyellow type*/
.kidYellow {
	color: #febe10;
}
.brightRed {
	color: #AC0B3A;
}
/*class style causes selected image to float right and allow text to wrap left around image*/
.imageFltRight {
	float: right;
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 4px;
}
/*class style causes selected image to float left and allow text to wrap right around image*/
.imageFltLeft {
	float: left;
	margin-top: 3px;
	margin-right: 5px;
	margin-bottom: 3px;
}
