@charset "utf-8";
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;
}
.thrColFixHdr #container {
	width: 1024px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: none;
	background-image: url(../images/background_clouds.gif);
} 
.thrColFixHdr #header {
	background: #DDDDDD;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height: auto;
	width: auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 50px;
	margin-left: 0px;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: auto; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-top: 35px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: auto; /* padding keeps the content of the div away from the edges */
	padding-top: 50px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
}
.thrColFixHdr #mainContent {
	margin-top: 250;
	margin-right: 270px;
	margin-bottom: 0;
	margin-left: 280px;
	padding-top: 80;
	padding-right: 20px;
	padding-bottom: 50;
	padding-left: 20px;
	float: none;
	width: auto;
	clear: none;
	height: auto;
	border: thin dashed #6B96C4;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
} 
.thrColFixHdr #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;
}
.txtFooter {
	font-family: "Century Gothic";
	font-size: 9px;
	font-style: normal;
	color: #09F;
	font-variant: normal;
	text-transform: capitalize;
	text-align: center;
	li
}
.txtContent {
	font-family: "Century Gothic";
	font-size: 11px;
	color: #009;
	text-align: left;
	text-indent: 8px;
	margin-left: 4px;
}
.txtTable {
	font-family: "Century Gothic";
	font-size: 11px;
	color: #009;
	text-align: left;
	
	margin-left: 4px;
}
.txtSubHd {
	font-family: "Century Gothic";
	font-size: 12px;
	color: #009;
	text-align: center;
	font-style: italic;
	letter-spacing: 1px;
}
.txtHd {
	font-family: "Century Gothic";
	font-size: 14px;
	color: #006;
	text-align: center;
	line-height: normal;
	font-variant: normal;
	text-transform: capitalize;
	letter-spacing: 2px;
	vertical-align: middle;
	white-space: normal;
	font-style: normal;
	font-weight: bold;
}
.txtHd_page {
	font-family: "Lucida Console", Monaco, monospace;
	font-size: 16px;
	color: #00F;
	text-align: center;
	line-height: 40px;
	font-variant: small-caps;
	text-transform: capitalize;
	letter-spacing: 4px;
	vertical-align: middle;
	white-space: normal;
	font-style: italic;
	font-weight: bolder;
	text-decoration: underline;
	word-spacing: normal;
	border-top-color: #F00;
}
.txtTableHd {
	font-family: "Century Gothic";
	font-size: 10px;
	font-variant: small-caps;
	color: #00C;
	background-color:#0CF;
	text-align: center;
	vertical-align: middle;
}
.txtTableNums {
	font-family: "Century Gothic";
	font-size: 9px;
	font-variant: small-caps;
	color: #00C;
	background-color:#0CF;
	text-align: right;
	vertical-align: top;
}
.txtTableContent{
	font-family: "Century Gothic";
	font-size: 11px;
	font-variant: normal;
	color: #006;
	text-align: center;
	vertical-align: middle;
	font-style: normal;
	line-height: 13px;
	text-transform: none;

	font-weight: normal;
}
.txtTableBlank{
	font-family: "Century Gothic";
	font-size: 10px;
	color:#F00;
	background-color:#7DB1FF;
	text-align: center;
	vertical-align: middle;
}
.popup
{
   position: absolute; left:0; top:0; width:400;
   border-style:solid;
   
   border-width:4;
   border-color:blue;
   background-color:yellow;
   padding:5px;
   color:red;
   font-family:Arial;
   font-weight:bold;
   font-size:10pt;
   z-index:2;
   visibility:hidden;

}
A:link {
	color: #03C;
}
A:visited {
	color: #03C;
}
A:active {
	color:#03C;
}
A:hover {
	color: #F00;
	
}
