body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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-size: small;
}
.twoColFixRtHdr #container {
	width: 1000px; /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	width: 1000px;
	height: 85px;
	background: transparent url(../images/title.png) no-repeat scroll;
} 
.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: 350px; /* 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: #DBE2EE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	border: thick double Black 1;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 400px 0 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #4DA8FF;
	font-size: xx-small;
	font-weight: bold;
} 
.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; /* 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;
}
#menu {
	float: left;
	width: 100%;
	background: #efefef;
	font-size: 7pt;
	line-height: normal;
	border-bottom: 1px solid #666;
	font-weight: bolder;
}
#menu ul {
	margin:0;
	padding:10px 10px 0 50px;
	list-style:none;
	}
#menu li {
	display:inline;
	margin:0;
	padding:0;
	}
#menu a {
	float:left;
	background:url("../images/tableftF.gif") no-repeat left top;
	margin:0;
	padding:0 0 0 4px;
	text-decoration:none;
	}
#menu a span {
	float: left;
	display: block;
	background: url(../images/tabrightF.gif) no-repeat right top;
	padding: 5px 15px 4px 6px;
	color: Black;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#menu a span {float:none;}
/* End IE5-Mac hack */
#menu a:hover span {
	color: #FFFFB2;
}
#menu a:hover {background-position:0% -42px;}
#menu a:hover span {background-position:100% -42px;}

.menu_no_link {
	float: left;
	display: block;
	background: url(../images/table2.gif) no-repeat left top;
	margin: 0;
	padding: 5px 15px 4px 6px;
	text-decoration: none;
	color: Black;
}

.menu_no_link_right {
	float: left;
	display: block;
	background: url(../images/table2.gif) no-repeat right top;
	margin: 0;
	padding: 5px 15px 4px 6px;
	text-decoration: none;
	color: Black;
}

.title {
	font-size: large;
	color: #000099;
	font-weight: bold;
}
.subtitle {
	font-size: small;
	color: #000099;
	font-weight: bold;
}
.subtitle_bod {
	font-size: small;
	color: #000099;
	font-weight: bold;
	margin-left: 20px;
}
.subtitle2 {
	font-size: small;
	color: Black;
	font-weight: bold;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	width: 1000px;
	height: 85px;	
	background: transparent url(../images/title.png) no-repeat scroll;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #4DA8FF;
	font-size: xx-small;
	font-weight: bold;
}
.oneColFixCtrHdr #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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.twoColFixLtHdr #container { 
	width: 1000px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	width: 1000px;
	height: 85px;	
	background: transparent url(../images/title.png) no-repeat scroll;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #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: #DBE2EE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #4DA8FF;
	font-size: xx-small;
	font-weight: bold;
} 
.twoColFixLtHdr #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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.b_Link, .b_Link a:link, .b_Link a:visited, .b_Link a:hover, .b_Link a:active	{
	color: #3366CC; 
	font-family: Verdana, Helvetica, Arial, sans-serif; 
	font-weight: bold;
}
.b_Link_small, .b_Link_small a:link, .b_Link_small a:visited, .b_Link_small a:hover, .b_Link_small a:active	{
	color: #3366CC; 
	font-family: Verdana, Helvetica, Arial, sans-serif; 
	font-weight: bold;
	font-size: x-small;
}  
.r_Link, .r_Link a:link, .r_Link a:visited, .r_Link a:hover, .r_Link a:active	{
	color: #D40000;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.r_Link_small, .r_Link_small a:link, .r_Link_small a:visited, .r_Link_small a:hover, .r_Link_small a:active	{
	color: #D40000; 
	font-family: Verdana, Helvetica, Arial, sans-serif; 
	font-weight: bold;
	font-size: x-small;
}
.fgrid .fgrid a:link, .fgrid a:visited, .fgrid a:active {
	color: fuchsia;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 2;
	font-weight: bold;
	color: Black;
	text-decoration: none;
	cursor: hand;
	border: 2px;
}
.fgrid a:hover{
	background-color: #81A9EE;
}
.tablebody  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; 
	padding: 0;
	text-align: left;
	width: 1000px 
	color: #000000;
	font-size: small;
	padding: 0 10px 0 10px;
}
.b_Link_noline, .b_Link_noline a:link, .b_Link_noline a:visited, .b_Link_noline a:active	{
	color: #3366CC;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	text-decoration: underline;
	font-weight: normal;
	font-size: small;
}
.b_Link_noline a:hover {
	color: maroon;
}
.tabletext	{
	color: black;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: x-small;
}
