@charset "UTF-8";
/* CSS Document */

body  {
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #FFF;
}
h1 {
	font-size: 2em;
	font-weight: normal;
	color: #900;
	font-family: Georgia, Cambria, "Times Roman", serif;
}
h2 {
	font-size: 1.4em;
	color: #600;
}
h3 {
	color: #960;
	font-size: 1.2em;
}
h4 {
	color: #609;
}
.twoColFixLt #container { width: 800px; margin: 0 auto; text-align: left; /* this overrides the text-align: center on the body element. */ }
.twoColFixLt #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 0 15px 0px;
	background-color: #E5EAE9;
	border-top-width: 17px;
	border-top-style: solid;
	border-top-color: #FFF;
}
.twoColFixLt #mainContent {
	margin: 0 0 0 210px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.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;
}
.twoColFixLt #rightColumn270px {
	width: 270px;
	margin: 0;
	padding: 0;
	float: right;
} 
.twoColFixLt #centerColumnLess270 {
	width: 300px;
	padding: 0;
	float: left;
} 
.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;
}
#sidebar { text-align: center; }
#sidebar ul { margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 1px; border-top-style: solid; border-top-color: #9999AA;}
#sidebar li { background-image: none; margin: 0px; padding: 0px; list-style-type: none; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #9999AA;
}
#sidebar a {
	text-decoration: none;
	font-size: 0.88em;
	display: block;
	padding-top: 4px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
	color: #000;
}
#sidebar a:hover, #sidebar a:focus, #sidebar a:active {
	color: #900;
	background-color: #FFF;
}
#mainContent a:link, #mainContent a:visited {
	color: #000;
}
#mainContent a:hover, #mainContent a:focus, #mainContent a:active { color: #C00; }
#mainContent .pullquote200 {
	width: 200px;
	border-left: 1px solid #ccc;
	padding: 0 0px 0 12px;
	float: right;
	margin: 0 0 12px 12px;}
.smallGrey { font-size: 0.8em; color: #999; }
.red { color: #C00; }
.boldItalicSerif {
	font-family: Georgia, Cambria, "Times Roman", serif;
	font-weight: bold;
	color: #633;
	font-style: italic;
	font-size: 1.2em;
}
h5, h5 a:link {
	color: #654300;
}

