@charset "ISO-8859-1";
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: Verdana, Geneva, sans-serif;
	font-size: 100%;
	background-color: #d2bc64;
}
h2 {
	color: #7a4e22;
	line-height: 1em;
	font-size: 1.5em;
}
.twoColFixRtHdr #container { 
	width: 780px;  /* 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. */
} 
.twoColFixRtHdr #container h2 {
	color: #7a4e22;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
} 
.twoColFixRtHdr #header {
	background-color: #DDDDDD;
	background-image: url(images/ori2009Header.jpg);
	background-repeat: no-repeat;
	height: 195px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* 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: #e5e5b7;
	margin-top: 30px;
	padding-top: 1px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	margin-right: 25px;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	margin-bottom: 30px;
}
.twoColFixRtHdr #sidebar1 a:link {
	color:#06C;
	text-decoration:none;
	font-size: 90%;
	padding-right: 5px;
	padding-left: 5px
}
.twoColFixRtHdr #sidebar1 a:hover {
	color: #FFF;
	text-decoration:none;
	background-color: #06c;
	padding-right: 5px;
	padding-left: 5px;
}
.twoColFixRtHdr #sidebar1 a:visited {
	color:#906;
	text-decoration:none;
	font-size: 90%;
	padding-right: 5px;
	padding-left: 5px
}
.twoColFixRtHdr #sidebar1 ul {
	list-style: none;
	background-color:#CCC;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.twoColFixRtHdr #sidebar1 ul li {
	list-style: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: ridge;
	border-bottom-color: #CCC;
}
.twoColFixRtHdr #mainContent {
	margin-right: 300px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 20;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 40px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 70%;
	line-height: 120%;
	margin-top: 5px;
} 
.twoColFixRtHdr #mainContent a:link {
	color:#06C;
	font-size: 110%;
}
.twoColFixRtHdr #mainContent a:hover {
	color: #FFF;
	background-color: #06c;
}
.twoColFixRtHdr #mainContent a:visited {
	color:#906;
	font-size: 110%;
}
.twoColFixRtHdr #mainContent ul {
	list-style: none;
}
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#d2bc64;
	font-size: 80%;
} 
.twoColFixRtHdr #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;
	font-size: 80%;
}
.twoColFixRtHdr #footer a:link {
	color:#06C;
	text-decoration:none;
	font-size: 105%;
}
.twoColFixRtHdr #footer a:hover {
	color: #FFF;
	text-decoration:none;
	background-color: #06c;
}
.twoColFixRtHdr #footer a:visited {
	color: #906;
	text-decoration:none;
}
.twoColFixRtHdr #footerSub {
	background:#978c5f;
	text-align: center;
	font-size: 70%;
	padding-top: 2;
	padding-right: 10px;
	padding-bottom: 2;
	padding-left: 20px;
} 
.twoColFixRtHdr #footerSub 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 */
}
.twoColFixRtHdr #footerSub a:link {
	color: #FFF; text-decoration:none;
}
.twoColFixRtHdr #footerSub a:hover {
	color: #FFF;
	text-decoration:none;
	background-color: #06c;
}
.twoColFixRtHdr #footerSub a:visited {
	color: #906;
	text-decoration: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;
}
.h3_black { color: #000; }
.smallFont { font-size: 70%; }
