@charset "utf-8";
body  {
	font: Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #333;
	font-size: 14px;
}
.twoColFixLt #container { 
	width: 800px;  /* 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. */
}
.twoColFixLt #sidebar1 {
	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 */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 10px 15px;
}
.twoColFixLt #mainContent { 
	margin: 0 0 0 250px; /* 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: 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLt #mainContentNoLeftMargin { 
	margin: 0 0 0 0px; /* for pages with no sidebar */
	padding: 0 20px 20px; /* 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;
}
.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;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
}

a{
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: underline;
}

a:visited{
	color: #666;
	text-decoration: underline;
}

a:active{
	color: #666;
	text-decoration: underline;
}

a:hover {
	color: #f6891f;
	text-decoration: none;
}



/* link with underline on hover */

a.underline {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
}

a.underline:visited{
text-decoration: none;
color: #000;
}

a.underline:active{
text-decoration: none;
color: #000;
}

a.underline:hover {
	color: #f6891f;
	text-decoration: underline;
}





/* link with underline */

a.line {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: underline;
}

a.line:visited{
	color: #666;
	text-decoration: underline;
}

a.line:active{
	color: #666;
	text-decoration: underline;
}

a.line:hover {
	color: #f6891f;
	text-decoration: none;
}




a.hlink {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	display: block;
	height: auto;
	width: 160px;
	margin: 2px 0px 0px 0px;
	padding: 4px 0px 5px 7px;
	color: #666;
	background-color: #ffffff;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #f6891f;
}

a.hlink:visited{
text-decoration: none;
color: #666;
}

a.hlink:active{
text-decoration: none;
color: #666;
}

a.hlink:hover {
	color: #f6891f;
	background-color: #fff;
	text-decoration: none;
	font-weight: bold;
}

/* nav bar links with orange top and bottom lines */
a.hlinkend {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	display: block;
	height: auto;
	width: 160px;
	margin: 2px 0px 0px 0px;
	padding: 4px 0px 5px 7px;
	color: #666;
	background-color: #ffffff;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #f6891f;
	border-bottom-style: solid;
	border-bottom-color: #F6891F;
}

a.hlinkend:visited{
text-decoration: none;
color: #666;
}

a.hlinkend:active{
text-decoration: none;
color: #666;
}

a.hlinkend:hover {
	color: #f6891f;
	background-color: #fff;
	text-decoration: none;
	font-weight: bold;
}

/* indented nav bar links with gray top lines */

a.hlink-indent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	display: block;
	height: auto;
	width: 145px;
	margin: 2px 0px 0px 15px;
	padding: 4px 0px 5px 7px;
	color: #666;
	background-color: #ffffff;
	text-align: left;
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}

a.hlink-indent:visited{
text-decoration: none;
color: #666;
}

a.hlink-indent:active{
text-decoration: none;
color: #666;
}

a.hlink-indent:hover {
	color: #f6891f;
	background-color: #fff;
	text-decoration: none;
}

/* regular nav bar links with gray top lines */

a.hlink-g {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	display: block;
	height: auto;
	width: 160px;
	margin: 2px 0px 0px 0px;
	padding: 4px 0px 5px 7px;
	color: #666;
	background-color: #ffffff;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #666;
}

a.hlink-g:visited{
text-decoration: none;
color: #666;
}

a.hlink-g:active{
text-decoration: none;
color: #666;
}

a.hlink-g:hover {
	color: #f6891f;
	background-color: #fff;
	text-decoration: none;
	font-weight: bold;
}

/* nav bar links with gray top and bottom lines */
a.hlinkend-g {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	display: block;
	height: auto;
	width: 160px;
	margin: 2px 0px 0px 0px;
	padding: 4px 0px 5px 7px;
	color: #666;
	background-color: #ffffff;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #666;
	border-bottom-style: solid;
	border-bottom-color: #666;
}

a.hlinkend-g:visited{
text-decoration: none;
color: #666;
}

a.hlinkend-g:active{
text-decoration: none;
color: #666;
}

a.hlinkend-g:hover {
	color: #666;
	text-decoration: none;
	font-weight: bold;
}




td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
}

table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

tr {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}




.head1gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F6891F;
}

.head1gray-small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F6891F;
	margin-bottom: -6px;
}


.head2gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 19px;
	font-weight: bold;
	color: #666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F6891F;
}

.head3gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-weight: bold;
	color: #666;
	margin-bottom: -12px;
}

.head3graynobold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-weight: normal;
	color: #666;
	margin-bottom: -12px;
}

.orange-outline-2px {
	border: 2px solid #f6891f;
}

.gray-outline-1px {
	border: 1px solid #999;
}

.noborder {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.tightbelow {
	margin-bottom: -20px;
}

.tightbelow2 {
	margin-bottom: -12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
}

.tightbelow3 {
	margin-bottom: -12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
}

.tightbelow4 {
	margin-bottom: -6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
}

.bodytext-left {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: left;
}

.bodytext-indent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: left;
	margin-left: 20px;
}

.bodytext-just {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: justify;
}

.bodytext-just-small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: justify;
}

.bodytext-cent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
}


.list-orangesquare {
	margin-left: -10px;
	list-style-image: url(images/orSquare.gif);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 5px;
}
.smaller {
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
}

.superscript {
	font-size: 65%;
	vertical-align: 40%;
}

.superscript2 {
	font-size: 45%;
	vertical-align: 60%;
}

.subscript {
	font-size: 10px;
	vertical-align: -20%;
}

sup {
	font-size: 10px;
	vertical-align: 40%;
}
.lighter-text {
	color: #666;
}
.headgray {
	color: #666;
	font-weight: bold;
	margin-bottom: -3px;
}
