@charset "utf-8";
body  {
	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;
}
.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;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
}
.twoColFixRtHdr #header_logo {
	background: #FFFFFF;
	padding: 0;
}
.twoColFixRtHdr #header_logo a:link {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #header_logo a:visited {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #header_logo a:active {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #header_logo a:hover {font-weight:bolder;color:#069;text-decoration:none}

.twoColFixRtHdr #header_menu_left {
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #069;
} 
.twoColFixRtHdr #header_menu_right {
	float: right;
	width: 225px;
	text-align: right;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #069;
}
.twoColFixRtHdr #sub_header_menu {
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #FFF;
} 
.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: 225px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px;
	margin: 0px 0px 10px 0px
	background-color: #FFF;
	vertical-align: top;
}
.twoColFixRtHdr #sidebar1 a:link {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #sidebar1 a:visited {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #sidebar1 a:active {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #sidebar1 a:hover {font-weight:bolder;color:#069;text-decoration:none}

.twoColFixRtHdr #mainContent {
	margin: 10px 250px 10px 0; /* the right margin on this div element creates the column down the right 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right-color: #CCC;
	border-right-style: solid;
	border-right-width: 1px;
}
.twoColFixRtHdr #mainContent a:link {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #mainContent a:visited {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #mainContent a:active {font-weight:bolder;color:#069;text-decoration:underline}
.twoColFixRtHdr #mainContent a:hover {font-weight:bolder;color:#069;text-decoration:none}
.twoColFixRtHdr #footer_left {
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #CCC;
	text-decoration: none;
} 
.twoColFixRtHdr #footer_right {
	float: right;
	width: 50px;
	text-align: right;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #CCC;
}
.footer #footer_left 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 */
}
.footer #footer_right 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 */
}
.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;
}
.header_menu_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bolder;
	color: #FFF;
	text-decoration: none;
}
a.header_menu_text:link {color:#FFF}      /* unvisited link */
a.header_menu_text:visited {color:#FFF}  /* visited link */
a.header_menu_text:active {color:#FFF}  /* selected link */
a.header_menu_text:hover {color:#CCC}  /* mouse over link */

.sub_header_menu_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bolder;
	text-decoration: none;
}
a.sub_header_menu_text:link {color:#069;text-decoration:underline}      /* unvisited link */
a.sub_header_menu_text:visited {color:#069;text-decoration:underline}  /* visited link */
a.sub_header_menu_text:active {color:#069;text-decoration:underline}  /* selected link */
a.sub_header_menu_text:hover {color:#069;text-decoration:none}  /* mouse over link */

.footer_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: bolder;
	text-decoration: none;
}
a.footer_text:link {color:#666}      /* unvisited link */
a.footer_text:visited {color:#666}  /* visited link */
a.footer_text:hover {color:#000}  /* mouse over link */
a.footer_text:active {color:#666}  /* selected link */

.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bolder;
	text-decoration: none;
}

.subtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bolder;
	color: #000;
	text-decoration: none;
}

.text_medium {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	color: #000;
	text-decoration: none;
}

.text_small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	color: #000;
	text-decoration: none;
}
ul {list-style-type:square}