@charset "utf-8";
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
}

.oneColFixCtrHdr #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 */
}

.copyright {
	font-size: 10px;
	color: #999999;
	text-align: center;
}	
/***** Common Formatting *****/

h1, h2, h3, h4, h5, h6 {
margin:0;
padding:0;
font-weight:normal;
}

h1 {
	font-weight:bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 200%;
	color: #333333;
}
h2 {
	letter-spacing:-1px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

h3 {
	font-weight:normal;
	font-family: "Trebuchet MS",arial,sans-serif;
	font-size: 150%;
	color: #156397;
	padding-bottom: 10px;
}

p, ul, ol {
	margin:0;
	padding:0 0 18px 0;
	line-height: 1.2;
}

ul, ol {
	padding-top: 0px;
	padding-right: 3px;
	padding-bottom: 0px;
	padding-left: 25px;
}

blockquote {
margin:22px 40px;
padding:0;
}

small {
font-size:0.85em;
}


/***** Links *****/
a {
	}
	
a:visited, a:active, a:link{
	text-decoration:underline;
	color: #333;
}
a:hover	{
	color: #2075D0;
	text-decoration: underline;
}

a img { border: 0; }


