@charset "UTF-8";
/* CSS Document */

/* 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: #759E4D;
	border: groove medium #006600; /* Sets the border properties for an element using shorthand notation */
	color: #003333;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 1em;
	font-style: normal;
	line-height: 1.2em;
	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: #003399;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-weight: normal;
	line-height: normal;
	font-size: 2.0em;
}
/* Commonly used to style section titles. */
h2 {
	color: #CC6600; /* Sets the font properties for an element using shorthand notation */
	line-height: normal;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 1.5em;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
/* Sets the style for the h3 header. */
h3 {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 1.25em;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
/* Sets the style for the h4 header. */
h4 {
  font-size: 1.1px;
  font-weight: bold;
  line-height: normal;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #4095df;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #003333;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #2170bd;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #039;
}
/* 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;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 1.0em;
	margin: 50px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	max-width: 1024px;
	min-width: 850px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
}
#outerWrapper #header {
	background-color: #FFFFFF;
	border-bottom: solid 1px #4b647f; /* Sets the bottom border properties for an element using shorthand notation */
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 0.9em;
	font-weight: normal;
	line-height: normal;
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #mainMenu {
	background-color: #759E4D; /* Sets the bottom border properties for an element using shorthand notation */
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 0.9em;
	font-weight: normal;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
}


#outerWrapper #contentWrapper {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 0.9em;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #FFFFFF; /* Sets the right border properties for an element using shorthand notation */
	color: #333333;
	float: left;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: .9em;
	font-weight: normal;
	line-height: normal;
	margin-left: 10px;
	margin-right: 25px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 225px;
	list-style-type: none;
}
#outerWrapper #contentWrapper #leftColumn1 h1 {
	font-weight: normal;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	font-weight: normal;
	padding-top: 10px;
	list-style-type: none;
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #leftColumn1 h3 {
	font-weight: normal;
}
#outerWrapper #contentWrapper #leftColumn1 h4 {
	font-weight: bold;
	list-style-type: none;
}

#outerWrapper #contentWrapper #leftColumn1 ul li {
	list-style-type: none;
	text-indent: 0px;
	padding-top: 5px;
}

#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link {
	color: #0066FF;
	text-decoration: none;
	list-style-type: none;
}
#outerWrapper #contentWrapper #leftColumn1 a:visited {
	color: #003399;
	text-decoration: none;
	list-style-type: none;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover {
  text-decoration: underline;
}
#outerWrapper #contentWrapper #leftColumn1 a:focus {
  text-decoration: underline;
}
#outerWrapper #contentWrapper #leftColumn1 a:active {
	color: #993300;
}
#outerWrapper #contentWrapper #leftColumn1 #sideDetail {
	color: #333333;
	background-color: #FFFFFF;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 50px;
	padding: 10px;
	float: right;
	width: 160px;
}

#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #FFFFFF; /* Sets the left border properties for an element using shorthand notation */
	color: #333333;
	float: right;
	margin-right: -45px;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 220px;
	margin-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #9bb6d2;
	border-right-color: #9bb6d2;
	border-bottom-color: #9bb6d2;
	border-left-color: #9bb6d2;
}
#outerWrapper #contentWrapper #rightColumn1 h1 {
}
#outerWrapper #contentWrapper #rightColumn1 h2 {
}
#outerWrapper #contentWrapper #rightColumn1 h3 {
	font-size: 1.1em;
}
#outerWrapper #contentWrapper #rightColumn1 h4 {
  font-size: 1.1em;
  font-weight: normal;
}
#outerWrapper #contentWrapper #rightColumn1 a, #outerWrapper #contentWrapper #rightColumn1 a:link {
  color: #0066FF;
  text-decoration: none;
}
#outerWrapper #contentWrapper #rightColumn1 a:visited {
  color: #003366;
  text-decoration: none;
}
#outerWrapper #contentWrapper #rightColumn1 a:hover {
  text-decoration: underline;
}
#outerWrapper #contentWrapper #rightColumn1 a:focus {
  text-decoration: underline;
}
#outerWrapper #contentWrapper #rightColumn1 a:active {
  color: #990000;
}
/* 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 #contentDetail {
	color: #003366;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	margin: 20px 20px 0 280px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 25px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #contentDetail img {
	font-weight: normal;
	float: left;
	border: thin none #003399;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #contentDetail h1 {
	font-weight: normal;
}
#outerWrapper #contentWrapper #contentDetail h2 {
	font-weight: normal;
}
#outerWrapper #contentWrapper #contentDetail h3 {
	font-weight: normal;
}
#outerWrapper #contentWrapper #contentDetail h4 {
	font-weight: bold;
}
#outerWrapper #contentWrapper #contentDetail a, #outerWrapper #contentWrapper #contentDetail a:link {
  color: #0066FF;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #contentWrapper #contentDetail a:visited {
  color: #003399;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #contentWrapper #contentDetail a:hover {
  font-weight: bold;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #contentDetail a:focus {
  text-decoration: underline;
}
#outerWrapper #contentWrapper #contentDetail a:active {
  color: #990000;
  font-style: normal;
  font-weight: normal;
  text-decoration: underline;
}

#outerWrapper #contentWrapper #contentDetail #programDetail {
	color: #003366; /* 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) */
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 25px;
	margin-left: 0px;
	display: block;
	border: thin solid #0D73B9;
	float: right;
	width: 250px;
}
#outerWrapper #contentWrapper #contentDetail #programDetail img {
	float: right;
	margin: 4px;
	border: thin solid #FFFFFF;
	display: block;
}

#outerWrapper #contentWrapper #contentDetail #detailTwo {
	color: #003366; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFFFFF;
	display: block;
	margin: 10;
}
#outerWrapper #contentWrapper #contentDetail #detailTwo img {
	float: left;
	margin: 4px;
	border: thin solid #759E4D;
}


#outerWrapper #contentWrapper h1 {
	font-size: 1.8em;
	font-weight: normal;
}
#outerWrapper #contentWrapper h2 {
	font-size: 1.5em;
	font-weight: normal;
}
#outerWrapper #contentWrapper h3 {
  font-size: 1.2em;
  font-weight: normal;
}
#outerWrapper #contentWrapper h4 {
	font-size: 1.0em;
	font-weight: bold;
}
#outerWrapper #contentWrapper a, #outerWrapper #contentWrapper a:link {
  color: #0066CC;
  text-decoration: none;
}
#outerWrapper #contentWrapper a:visited {
  color: #003333;
  text-decoration: none;
}
#outerWrapper #contentWrapper a:hover {
  text-decoration: underline;
}
#outerWrapper #contentWrapper a:focus {
  text-decoration: underline;
}
#outerWrapper #contentWrapper a:active {
  color: #003300;
}
/* 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: both;
  display: block;
}
#outerWrapper #footer {
	background-color: #FFFFFF;
	border-top: solid 15px #759E4D; /* Sets the top border properties for an element using shorthand notation */
	color: #003399;
	font-family: "Comic Sans MS", cursive;
	font-size: 0.9em;
	font-style: normal;
	font-weight: normal;
	background-repeat: no-repeat;
	padding: 25px;
}
#outerWrapper #footer h1 {
  font-size: 1.8em;
  font-weight: normal;
}
#outerWrapper #footer h2 {
  font-size: 1.5em;
  font-weight: normal;
}
#outerWrapper #footer h3 {
  font-size: 1.2em;
  font-weight: normal;
}
#outerWrapper #footer h4 {
  font-size: .9em;
  font-weight: bold;
}
#outerWrapper #footer a, #outerWrapper #footer a:link {
  color: #000033;
}
#outerWrapper #footer a:visited {
  color: #0033FF;
  font-family: "Comic Sans MS", cursive;
  font-style: normal;
  text-decoration: none;
}
#outerWrapper #footer a:hover {
  font-family: "Comic Sans MS", cursive;
  text-decoration: underline;
}
#outerWrapper #footer a:focus {
  font-family: "Comic Sans MS", cursive;
}
#outerWrapper #footer a:active {
  color: #000033;
  font-family: "Comic Sans MS", cursive;
  font-weight: normal;
  text-decoration: none;
}

#outerWrapper #contentWrapper #story {
	color: #333333;
	float: right;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1em;
	line-height: normal;
	padding: 5px;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #666666;
}

.clearFloats {
	clear: both;	
}
#outerWrapper #header #headerLeft {
	float: left;
	width: 250px;
}
#outerWrapper #header #headerRight {
	float: left;
	width: 700px;
}
#outerWrapper #header #headerLeft #headerDonate {
	color: #FFFFFF;
	background-color: #990000;
	padding: 5px;
	text-align: center;
}
#outerWrapper #header #headerLeft #headerLogo {
	text-align: center;
}
