@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: 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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #CDDBD1;
	background-image: url(images/bg_page.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

p {
	color: #000;
	font-size: 87%;
	font-family:Arial, Helvetica, sans-serif;
	line-height: 19px;
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
}

a {
color: #937e04;
font-weight: bold;
}

em {
font-style:italic;
}

h3 {
font-family:Georgia, "Times New Roman", Times, serif;
font-size: 90%;
font-weight:bold;
line-height: 25px;
color:#000000;
margin:0;
padding: 0;
}

img {
padding-right: 10px;
padding-bottom: 10px;
padding-top: 10px;
}

#container {
	width: 850px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0;
	background-image: url(images/laurels.gif);
	background-repeat: no-repeat;
	background-position: 480px 10px;
}
#header img {
	display: block;
	border-style: none;
	padding-top: 36px;
}
#navlist {
	text-align: right;
	margin: 5px 0px 0px;
	padding: 10px 0px 0px;
	border-top: 1px solid #FFFFFF;
	font-size: 15px;
}
#navlist li
{
	display: inline;
	list-style-type: none;
}
#navlist a {
	color: #937E04;
	font-weight: bold;
	text-decoration: none;
	border-right: 1px solid #FFFFFF;
	padding-right: 5px;
	padding-left: 5px;
}

#navlist a:hover {
	color: #000000;
}
#navlist a.noBorder {
	border-right-style: none;
	padding-right: 0px;
	margin-right: 0px;
}
#Content {
	background-color: #FFFFFF;
	background-image: url(images/bg_content.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
	width: 100%;
	padding-bottom: 30px;
}
#Content #illustration {
	margin-right: auto;
	margin-left: auto;
	margin-top: 35px;
	display: block;
	width: 640px;
}
#tab {
	clear: both;
	padding-top: 10px;
}
#tab   h1 {
	background-color: #FFFFFF;
	font-size: 30px;
	font-weight: bold;
	display: block;
	padding-left: 30px;
	float: left;
	padding-right: 30px;
	width: auto;
	margin: 0px;
	padding-top: 15px;
	padding-bottom: 5px;
}

#leftcolumn{
	margin-right: 360px; /*Set right margin to RightColumnWidth*/
	padding-left: 30px;
	padding-right: 30px;
}
#leftcolumn h2 {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
}

#rightcolumn{
	float: right;
	width: 280px;
	padding-left: 30px;
	padding-right: 30px;
}

em.quote {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 130%;
font-style:italic;
color: #3e8596;
}

h3.quote {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 110%;
color: #3e8596;
font-weight:normal;
text-align:right;
}

h4.caption {
font-family:Arial, Helvetica, sans-serif;
font-size: 70%;
color: #000000;
text-align:right;
margin: 0;
}


#footer {
float:left;
width: 100%;
	background-image: url(images/footer_roundCorner.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#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: 20px 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: x-small;
}
.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;
}
