@charset "utf-8";

@import url(colors.css);

@import url(popups.css);

/*-------------------------------*/
/* JDW: standard browser neutering a la sawmac */
body, h1, h2, h3, h4, h5, h6, p, ol, ul, form, blockquote {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, pre, code {
	font-size: 1em;
}
a {
	text-decoration:none;
}
a img {
	border:none;
	float: left;
}



/*-------------------------------*/

body  {
	font: 12px/normal "Trebuchet MS", Verdana, Arial, sans-serif;
	background: #FFFFFF;
	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;
}
h1 {
	font-size:14px;
	font-weight:bold;
}
h2 {
	font-size:12px;
	font-weight:bold;
}
h5 {
	font-size:13px;
	font-weight:bold;
}

.heading_catch {
	font-size:13px;
	font-weight:bold;
	font-style:italic;
	color:#158CB6;
}

#container {
	width: 966px;  /* nominally sized for 1024 X 768 minimum resolution*/
	background: #FFFFFF url(../images/shadow_966x20.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. Because an image is used in the #header instead of text, the padding is 0. */
	height: 120px;
	width: 954px;/* 6-px shadow on each side */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#homelink {  /* This will let us use a transparent gif over logo portion of banner to link to home page  */
	width:235px;
	height:40px;
	margin-top:10px;
	margin-left:35px
}

#searchbar {
	float:right;
	margin:0;
	padding-right:23px;
	padding-top: 5px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/*************JDW: Temp Search Box--control color in page-specific css file*************/
input.search { background: #CCCCCC; width: 150px; border: 1px solid #075181; color: #666; font-size:11px; }
input.submit { 
	background: none; 
	color: #FFFFFF;
	font: bold 11px Verdana, Arial, Helvetica, sans-serif; 
	border: 0;
}

input.search:hover, input.search:focus {	background: #FFFFF4; }

/*******************************************************************************/

#midsection {
	width: 954px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0;
	border: 0px;
	float:none;
}

#sidebar1 {  /* Note: may be supplemented or overridden by section stylesheets */
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: none; /* If used, the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 0px;
	padding: 0px; /* JDW: padding screws up old IE width calculation; if needed, surround
	sidebar content with inner div with either padding or margins  */
}

#mainContent {   /* Note: should be supplemented or overridden by section stylesheets */
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; 

} 
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
/*	background:#518BB3; */ /* change in section stylesheets--should match color of banner graphic */
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 6px;
	clear:both;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.footerMenu {
	font-weight: bold;
	color: #FFFFFF;
	padding: 10px 20px 10px 32px;
	margin: 0;
}
.footerMenu a:link, .footerMenu a:visited, .footerMenu a:hover, .footerMenu a:active {
	color:#FFFFFF; border:none; outline:none;
}

.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;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.textinput {
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 1px;
	color: #333;
}


