/* 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: #708eb2;
	background-image: url(images/design/bkgrd_fade.jpg);
	background-repeat: repeat-x;
	color: #2a2d2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	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: #6982b5;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #A6B6DA;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #d74f4f;
  font-weight: bold;
  text-decoration: none;
}
/* 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;
}
#outerWrapper #header {
	background-color: #6E90B3; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 120px;
	line-height: 15px;
	padding: 0px 0px 0px 0px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #5981aa;
	border-right: solid 1px #8e9fd0; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
}
/* 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 0 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) */
}
/* 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;
}
#outerWrapper #footer {
	background-color: #FFFFFF; /* Sets the top border properties for an element using shorthand notation */
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #5981AA;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #5981AA;
}
#outerWrapper #ft_banner2 {
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#LeftNav {
	height: 500px;
}
.brclear { /* Use a break with this class to clear float containers */
	clear:both;
	height:0;
	margin:0;
	font-size: 1px;
	line-height: 0;
}
#leftColumn1 #lc-body {
	margin-bottom: 6px;
}
#leftColumn1 #lc-body img {
}
#leftColumn1 #lc-body h2 {
	background-color: #B0BDE0;
	text-indent: 7px;
	height: 15px;
	margin-top: 0px;
	margin-bottom: 6px;
	color: #5981AA;
	padding-top: 6px;
	padding-bottom: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content #contact_holder {
	padding: 5px;
	width: 80%;
	border: thin solid #5981AA;
	margin-left: 60px;
	clear: both;
	background-color: #B0BDE0;
	margin-bottom: 20px;
}
#content h3 {
	background-image: url(images/design/head_bkgrd1.jpg);
	text-indent: 38px;
	background-repeat: no-repeat;
	height: 23px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	color: #FFFFFF;
}
#content h4 {
	background-image: url(images/design/h4 img.jpg);
	text-indent: 45px;
	background-repeat: no-repeat;
	height: 20px;
	padding-top: 8px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 12px;
	color: #5981aa;
	background-image: url(images/design/h4_img.jpg);
}
#picture #img {
	float: right;
	margin-top: 4px;
	margin-right: 6px;
	margin-bottom: 4px;
	margin-left: 4px;
	height: auto;
	text-align: center;
}
#picture #imgL {
	float: left;
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
	margin-left: 4px;
}
#picture #p {
	padding-right: 6px;
}
#outerWrapper #contentWrapper {
	background-image: url(images/design/faux2.jpg);
	background-repeat: repeat-y;
}
body,td,th {
	font-size: 11px;
}
#contact_holder1 {
	float: left;
}
#region_holder1 {
	float: left;
	margin-bottom: 15px;
}
#c-left {
	float: left;
	border: thin solid #5981AA;
	height: auto;
	width: 280px;
	background-color: #B0BDE0;
	margin-bottom: 15px;
	font-size: 1.1em;
}
#r-left {
	float: left;
	border: thin solid #5981AA;
	height: auto;
	width: 320px;
	background-color: #B0BDE0;
	margin-bottom: 15px;
	font-size: 1.1em;
	margin-left: 40px;
	padding: 10px;
}
#region-left {
	float: left;
	border: thin solid #5981AA;
	height: auto;
	width: 320px;
	background-color: #B0BDE0;
	margin-bottom: 15px;
	font-size: 1.1em;
	margin-left: 40px;
	padding: 10px;
	margin-right: 60px;
}
#r-left img {
	clear: right;
	float: left;
	margin-right: 5px;
}
#r-left #r-content {
	margin-left: 150px;
}
#c-left_1 {
	float: left;
	border: thin solid #5981AA;
	height: auto;
	width: 320px;
	background-color: #B0BDE0;
	margin-bottom: 15px;
	font-size: 1.1em;
}
#c-left_1 img {
	clear: right;
	float: left;
	margin-right: 5px;
}
#c-right {
	background-color: #B0BDE0;
	float: right;
	border: thin solid #5981AA;
	height: auto;
	width: 280px;
	clear: none;
	margin-bottom: 15px;
	font-size: 1.1em;
}
#r-right {
	background-color: #B0BDE0;
	float: right;
	border: thin solid #5981AA;
	height: auto;
	width: 220px;
	clear: none;
	margin-bottom: 15px;
	font-size: 1.1em;
	padding: 10px;
	margin-right: 40px;
}
#c-left img {
	clear: right;
	float: left;
	margin-right: 5px;
}
#c-right img {
	float: left;
	margin-right: 5px;
}
.style3 {
	font-weight: bold;
}
.indent {
	margin-left: 15px;
}
.caption {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bolder;
	color: #5981AA;
}
.captionW {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bolder;
	color: #FFFFFF;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
dt {
	font-weight: bold;
	padding-bottom: 15px;
	padding-top: 15px;
}
dd {
	padding-top: 15px;
}
#outerWrapper #contentWrapper #content #contact_holder #img_L {
	clear: right;
	float: left;
	padding-top: 7px;
	padding-bottom: 7px;
}
#outerWrapper #contentWrapper #content #contact_holder .right {
	padding-top: 0px;
	padding-left: 200px;
	font-size: 1.2em;
}
#outerWrapper #contentWrapper #content .indent25 {
	padding-left: 25px;
}
/* FORMS -------------------------------------------------------------------- */
form {
	margin: 20px auto; /* The auto left and right margins center the form within #main. The 20px top and bottom margins provide space between the form and surrounded content. */
	padding: 10px 10px 5px; /* Creates space between edge of form and edge of fieldset for background color to display in. */
	border: 1px solid #E8E0C9; /* Sets background color to indigo. */
	width: 350px; /* Sets width. */
	background-color: #5A81AA;
}
input {
	border: 1px solid #000; /* Sets border to black. */
	padding: 2px; /* Creates space within input. */
	color: #5A81AA; /* Sets color of text within inputs to dark purple. */
	width: 230px; /* Sets width. */
	display: block; /* Changes inputs from inline to block so each will sit on its own line. */
	margin-bottom: 7px; /* Creates space between input and following label. */
	background-color: #B0BDE0;
}
textarea {
	width: 230px;
	background-color: #B0BDE0;
	color: #5A81AA;
}
/* The following selector controls how the inputs look when they have focus, but since IE does not support focus, these effects are not seen there. */
input:focus, textarea:focus {
	color: #5A81AA; /* Sets color of text within inputs to white. */
	border: 1px solid #003399; /* Sets border to white. */
	background-color: #B0BDE0;
}
label {
	color: #000; /* Sets text color of labels. */
	display: block; /* Changes labels from inline to block so each will sit on the line above its associated input. */
}
fieldset {
	border: 1px solid #FFF; /* Sets border to white. */
	padding: 5px 15px 10px; /* Creates space between edges of fieldset and content within. */
	background-color: #FFFFFF;
}
legend {
	color: #FFFFFF; /* Sets text color of fieldset legend to dark purple. */
	font-size: 1.2em; /* Sets background color to light blue. */
	padding: 1px 5px; /* Creates space between borders of legend and its text. */
	border: 1px solid #036; /* Sets border to dark purple. */
	background-color: #799BBE;	/*display: block;  You may find you need to use this selector because Opera sometimes lowers the legend and starts the first field to the right of it. However, this display declaration causes IE to put the background color all the way across the top of the fieldset, so if you use it, use the comment backslash hack combined with the star filter to feed a width that only IE PC sees. */
}
input.button {
	margin: 10px 120px 5px; /* Needed by MacIE to keep the button from expanding to 200px like the other inputs. */
	width: 8em; /* Sets width in relative units so it will scale if text size is larger. */
}
/* The following selector resets the margins to the correct values for all browsers other than MacIE. */
/* hide from MacIE \*/
input.button {
	margin: 10px auto 5px auto;
}
#select {
	background-color: ##B0BDE0;
	color: #5A81AA;
	width: 230px;
}
#lc-body .space {
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #content #picture #p #movie {
	border: medium double #799BBE;
	height: 160px;
	width: 320px;
	margin-left: 130px;
	background-color: #B1BEE1;
}
.Rmargin {
	margin-right: 10px;
}
.title {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-bottom: 0px;
	display: block;
}
.accro {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-bottom: 0px;
	display: block;
}
.contact {
	font-size: 16px;
	font-weight: bold;
	color: #990000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-bottom: 0px;
	display: block;
}
#img #caption {
	background-color: #ECECFF;
	width: 144px;
	font-size: 11px;
	font-weight: bold;
	color: #5981AA;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
#img #caption108 {
	background-color: #ECECFF;
	width: 108px;
	font-size: 11px;
	font-weight: bold;
	color: #5981AA;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
.like-holder {
	background-color: #B0BDE0;
	padding: 8px;
	height: 20px;
	width: 450px;
	margin-top: 25px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #5A81AA;
}
.sponsors {
	height: 100px;
	width: 400px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 12px;
	margin-left: auto;
}
.absolute-holder {
	position: absolute;
}
.relative-holder {
	position: relative;
}
#public tr th {
	background-color:#6F9DBF;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	height: 18px;
	vertical-align: middle;
	text-align: center;
}
#public tr .project {
	color: #5981AA;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	height: 18px;
}
.q4q {
	width: 540px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 12px;
	margin-left: auto;
}
.q4q .splurb {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #5981AA;
	text-align: center;
	padding: 5px;
}
.width-450 {
	width: 450px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 12px;
	margin-left: auto;
}
