@charset "UTF-8";
/* CPT stylesheet */

@import url(reset.css); /* Eric Meyer's CSS reset stylesheet to wipe all browser default styles */

body {
	margin: 0;
	padding: 0;
	border: 0;  /*this removes the border around the viewport in old versions of IE */
	width: 100%;
	background: #003300;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;  /* Setting font size to 62.5% for the entire document is a trick that allows you to manipulate ems as though they were pts in all browsers. With a global size of 62.5%, 1em will be 10pt by default, thus if you want 12pt font, you set font-size to 1.2em, e.g. */
}

/* GLOBAL FONT STYLES */


h1 {
	font-size: 2em;
	padding-bottom: 0.5em;
	color: #666;
	display: compact;
}

h2 {
	color: #666;
	font-weight: bold;
	font-size: 1.3em;
	display: compact;
}


h3 {
	color: #666;
	font-size: 1.15em;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 1.0em;
}

a {
	text-decoration: none;
	font-weight: bold;
	fontsize: inherit;
	color: #030;
}

a:visited {color:#666666}  /* visited link */
a:hover {text-decoration:underline}  /* mouse over link */


p, li {
	color: black;
	font-size: 1.15em;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 1.0em;
}

li {
	color:#666;
}

hr {
	color:#CCCCCC;
	background-color: #CCCCCC;
	height: 0.05em;
	margin-top: 1.4em;
	margin-bottom: 1.4em;

}

hr.compact {
	margin-top: 0em;
	margin-bottom: 0em;
}

table {
	border:none;
}

td {
	vertical-align:top;
	color: black;
	font-size: inherit;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.breadcrumbs {   /* breadcrumb menu in content section */
	color: 300;
	padding-left: 0;
}


/* PAGE WRAP STRUCTURE */
div#wrapper {
	width: 904px;
	min-height: 700px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
}

/* SEARCHBAR */
div#searchbar {
	padding-bottom: 0em;
	padding-top: 0em;
}

div#searchbar ul {
	text-align: right;
}

div#searchbar ul li {
	list-style-type: none;
	display: inline;
	padding-right: 0.5em;
	padding-left: 0.5em;
	color: white;
}

div#searchbar form {
	display: inline;
	padding: 0;
	color: white;
	margin: 0;
}

div#searchbar a {
	text-decoration: none;
	font-weight: 0.5em;
	color: white;
}

/* HEADER */
#header {
	height: 205px;
	width: 900px;
	border: 1px solid white;
	border-style: solid;
	margin: 0;
	padding: 0;
	position:relative;
}

#header-print {
	display:none
}

#background{
	z-index: 1;
	margin: 0;
	padding: 0;
	position: absolute;
}

div#menu {
	border-top: 1px solid white;
	width: 900px;
	z-index: 2;
	position:relative;
}


/* MENUBAR */

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 MENUBAR LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin-top: 176px;
	margin-left: 1px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 900px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	height: 28px;
	width: 99px;
	margin: 0;
	padding: 0;
	border-right: 1px solid white;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	cursor: pointer;
	float: left;
}

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
	float: left;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{

	left: auto;
	width: 15em;
	height: 1.8em;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 15em;
	padding-left: 5px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 5% 0 0 90%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 MENUBAR DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
	}
	
/* Submenu formatting */
ul.MenuBarHorizontal ul li
{
	background-color:#666;
	border: 1px solid #CCC;
	}

ul.MenuBarHorizontal ul li:hover
{
	background-color:#030;
	}


ul.MenuBarHorizontal ul li a
{
	color: #FFF;
	text-align: left;
	}


ul.MenuBarHorizontal ul li a:hover
{
	color: #FFF;
	}
	
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 0.5em 0.75em;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #030;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #030;
	color: #FFF;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}

	
/* CONTENT */
div#content {
	background: white;
	width: 882px;
	padding: 10px;  /* content box size is 900 px total (880 + 10px on each side of padding) */
	padding-bottom: 20px;
}

#main_left {  /* floating gray box that the non-profit statement goes in on the index page */
	width: 210px;
	float: left;
	background: #ddd;
	color: #666;
	padding-top: 2.0em;
	padding-bottom: 2.0em;
	padding-left: 0.5em;
	padding-right: 0.5em;
}

#main_left p {
	font-style: italic;
}

#main_center {  /* setting margins for the center content ensure that it will not wrap around the left and right floating divs */
	margin-left: 220px;
	margin-right: 220px;
	padding-left: 0.5em;
}

#wide_center_right {  /* for pages where the button menu on the right is dropped */
	margin-left: 220px;
	padding-left: 0.5em;
}

#wide_center_left {  /* for pages where the button menu on the left is dropped */
	margin-right: 220px;
}

#wide_center {  /* for pages where the button menu on the left is dropped */
	margin-left: 0px;
	margin-right: 0px;
}

#wide_center_left {  /* for pages where the button menu on the left is dropped */
	margin-right: 220px;
	padding-left: 0.5em;
}

#main_right {  /* box where all the button icons go on the right - in order for this to float properly, it needs to come before the main_center div in the HTML */
	width: 215px;
	float: right;
	text-align: center;
}

/* Google CSE */
.searchresult h3{
	color:#FF0000;
	}



/* FOOTER */
div#footer {
	color: white;
	text-align: center;
}

div#footer a {
	text-decoration: none;
	font-weight: 0.5em;
	color: white;
}

div#footer p {
	color: white;
}

