@charset "UTF-8";
body  {
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	margin: 0;
	padding: 0;
	top: 0px;
	background-color: #DEDCC6;
}
a:link, a:visited {  /* sets body links styling on link and visited states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #660000;
}
a:hover a:active { /* sets body links styling on hover and active states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #996600;
}
h1 { /* sets styling for Header 1 level*/
	font-size: 1.5em;
	font-weight: bold;
}
h2 { /* sets styling for Header 2 level */
	font-size: 1.3em;
	font-weight: bold;
}
h3 { /* sets styling for Header 3 level */ 
	font-size: 1.2em;
	font-weight: bold;
}
h4 { /* sets styling for Header 4 level */
	font-size: 1.0em;
	font-weight: bold;
}
hr {
	height: 1px;
	width: 100%;
}
.thrColAbs #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;
	text-align: left;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
} 
.thrColAbs #banner { /* sets styling for banner div */
	width: 780px;
	left: auto;
	background-color: #DEDCC6;
}

/* Tips for absolutely positioned sidebars:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
*/
.thrColAbs #sidebar1 { /* sets styling for left side bar div with shaded graphics */
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333300;
	background-image: url(../images/left_border.gif);
	background-repeat: repeat-y;
	background-position: right bottom;
	height: 100%;
	width: 20px;
	position: absolute;
	left: 0px;
	top: 0px;
}
.thrColAbs #sidebar2 { /* sets styling for right side bar div with shaded graphics */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #333300;
	background-image: url(../images/right_border.gif);
	background-repeat: repeat-y;
	background-position: left bottom;
	height: 100%;
	width: 20px; /* padding keeps the content of the div away from the edges */
	position: absolute;
	top: 0px;
	right: 0px;
}
.thrColAbs   #navigation { /* sets styling for navigation links */
	width: 780px;
	text-align: center;
	color: #000000;
	height: 20px;
	font-size: 0.75em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	padding-top: 8px;
	background-color: #DEDCC6;
}
.thrColAbs   #navigation  a:link, a:visited {  /* sets styling for navigation links on link and visited states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #660000;
}
.thrColAbs   #navigation   a:hover a:active { /* sets styling for navigation links on hover and active states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #996600;
}	
.thrColAbs #mainContent { /* sets styling for main content div */
	margin-top: 0px;
	margin-right: 40px;
	margin-bottom: 0px;
	margin-left: 40px;
	background-color: #FFFFFF;
}
.mainContent a:link, a:visited {  /* sets content links styling on link and visited states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #660000;
}
.mainContent a:link, a:visited {  /* sets content links styling on link and visited states */
	font-size: 1.0em;
	text-decoration: underline;
	color: #660000;
}
.thrColAbs  #footer { /* sets styling for footer */
	height: auto;
	width: 780px;
	color: #000;
	font-size: 0.85em;
	text-align: center;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333300;
}
.thrColAbs   #footer a:link, a:visited { /* sets styling for footer link on link and visited states */
	color: #600;
	font-size: 1.0em;
	text-decoration: underline;
}
.thrColAbs   #footer a:hover a:active { /* sets styling for footer link on hover and active states */
	color: #900;
	font-size: 1.0em;
	text-decoration: underline;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.image_left_with_border { /* Use this to place a mug or photo with a 1 pixel border to the left with text wrapping around it */
	float: left;
	margin-right: 10px;
	border: 1px solid #000000;
	margin-bottom: 10px;
	margin-top: 5px;
}
.image_right_with_border { /* Use this to place a mug or photo with a 1 pixel border to the right with text wrapping around it */
	float: right;
	margin-left: 10px;
	border: 1px solid #000000;
	margin-bottom: 10px;
	margin-top: 5px;
}
.image_right_no_border { /* Use this to place a mug or photo with no border to the left with text wrapping around it */
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
.image_left_no_border { /* Use this to place a mug or photo with no border to the right with text wrapping around it */
	float: left;
	margin-right: 10px;
}
hr { /* Horizontal Rule */
	height: 1px;
	width: 100%;
}
.cutline { /* Use this to style a cutline or caption under a photo */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
}
.tabletext { /* Table Text styling */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
}
.surveybox_top { /* Border and shading styles for table boxes related to the survery buttons */
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #666600;
	border-right-color: #666600;
	border-left-color: #666600;
	background-color: #DEDCC6;
}
.surveybox_bottom { /* Border and shading styles for table boxes related to the survery buttons */
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #666600;
	border-left-color: #666600;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666600;
	background-color: #DEDCC6;
}
.tabletext_contact {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.80em;
	background-color: #DEDCC6;
	border: 1px solid #000000;
	text-align: left;
}
.tablecontents {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	background-color: #CCCCCC;
	padding: 5px;
}
.survey_results_table_question {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	background-color: #CCCCCC;
	padding: 5px;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #333333;
}
.survey_results_table_column {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	vertical-align: bottom;
}
.survey_results_table_row {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}
.survey_results_table_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}
.survey_results_table_footer {
	font-size: 0.9em;
	text-align: left;
}
.pdf_icon_spacing {
	vertical-align: text-bottom;
	padding-right: 10px;
}
.get_reader_icon_spacing {
	vertical-align: text-bottom;
	padding-right: 5px;
	padding-left: 5px;
	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;
}
.engageContainer {
	width: 300px;
	height: auto;
	float: left;
	margin-right: 30px;
	font-size: 0.85em;
	margin-bottom: 20px;
}

