@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/bg_body_dkgrey.jpg);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; 
	color: #4E4E4E;
}
a { 
	color: #0066CC;
	text-decoration:none;
}
a:hover { color: #4E4E4E;  }
h1 {
	color: #006699;
	font-size: 14px;
	line-height: 130%;
	margin-top: 0px;
}
h2 {
	color: #4E4E4E;
	font-size: 12px;
	line-height: 130%;
}
h3 {
	color: #006699;
	font-size: 12px;
	line-height: 130%;
}
li { padding-bottom: 5px; }
p { margin-top: 15px; margin-bottom: 15px; }

#container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#container.home {
	background-image:url(images/bg_leftcol_080209.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;	
}
#header { 
	background-image: url(images/bg_header.gif);
	background-repeat:no-repeat;
	width: 940px;
	padding: 0 20px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header_logo{
	float: left;
	width: 400px;
	height: 105px;
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar {
	float: left;
	width: 380px;
	height: 25px;
	padding: 45px 0px 35px 0px;
}
#searchform {
	float: left;
	width: 155px;
	height: 25px;
	padding: 43px 5px 35px 0px;
	text-align: right;
}
#leftbar-home {
	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 */
	margin: 0;
	padding: 20px;

}
#leftbar {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* 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 */
	margin: 0;
	padding: 20px;
}
#maincontent-home { 
	margin: 0 0 0 240px; /* 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: 20px 20px 20px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#maincontent { 
	margin: 0 0 0 270px; /* 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: 20px 20px 20px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	position: relative;
	width: 980px;
	padding: 0; 
	margin: 0;
	background-color: #173B61;
	height: 25px;
} 
#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: 5px 20px 5px 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
	font-size: 11px;
	text-align: left;
}

.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;
}

#leftbar-home td, #leftbar-home p {
	color: #4E4E4E;
	font-size: 12px;
	line-height: 130%;
}
#leftbar td, #leftbar p {
	color: #4E4E4E;
	font-size: 11px;
	line-height: 130%;
}

#maincontent-home td, #maincontent td, #maincontent-home p, #maincontent p, #maincontent-home li, #maincontent li {
	color: #4E4E4E;
	font-size: 11px;
	line-height: 130%;
}
#maincontent p { text-align: justify;  }
#maincontent a, #maincontent-home a { text-decoration: underline;  }
.textinput {
	padding: 1px;
	margin: 0px;
	color: #999999;
	font-size: 11px;
}
.smtopmargin { margin-top: 6px; }
.smtopnobottommargin { margin-top: 6px; margin-bottom: 0px; }
.nobottommargin {  margin-bottom: 0px; }
.smtext { font-size: 11px; }
.blue_emphasis { color: #006699; font-weight: bold; font-size: 12px; }
.black_emphasis { color: #1F1F1F; font-weight: bold; font-size: 12px; }
.borderbottomleft { border-bottom: solid 2px #D6E7FB; border-left: solid 2px #D6E7FB; }
.borderbottomright { border-bottom: solid 2px #D6E7FB; border-left: solid 2px #D6E7FB;  border-right: solid 2px #D6E7FB;}
.bordertopbottomleft { border-bottom: solid 2px #D6E7FB; border-top: solid 1px #D6E7FB; border-left: solid 1px #D6E7FB; }
.border { border: solid 2px #D6E7FB; }
