@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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: #fff;
}
pre  { font:  medium "Courier New", Courier, Monaco, monospace }
.normal   { color: gray; font-size: 40pt; font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular }
.note    { color: gray; font-size: 40px; font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular }
a:link     { color: #369; font-weight: bold; text-decoration: none; background-color: transparent }
a:active   { color: #369; font-weight: bold; text-decoration: none; background-color: transparent }
a:visited   { color: #369; font-weight: bold; text-decoration: none; background-color: transparent }
a:hover   { color: #369; font-weight: bold; text-decoration: underline }
address  { font-style: normal; }
h1,h2,h3      { color: #369;  }
.thrColFixHdr #wrap { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	position: relative;
	background-color: #FFFFFF;
	margin-top: 1em; margin-left: auto; margin-right: auto; 
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-color: #666; border-style: solid; border-width: 0 2px 2px 0; 
	color: #000;

} 

DIV#container {
	background-image: url(../images/left-bg2.gif);
	background-repeat: repeat-y;
}
DIV#container2 { background: url(../images/more_col_base.gif) repeat-y right 50% }


.thrColFixHdr #header { 
	padding: 10px 10px 0 20px;  /* 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. */
	margin-left: 190px;
} 

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	margin: 50px 0 0 0;
	font-weight: bold;
}
DIV#sidebar1 UL { list-style-type: none; margin: 0px; padding: 0px }
DIV#sidebar1 UL LI { margin-top: 4px }
#sidebar1 UL LI A { color: #fff; text-decoration: none; background: #069 url(../images/nav_base.gif) repeat-y; padding: 3px 5px 3px 10px; width: 135px; display: block }
#sidebar1 UL LI A:hover { color: #fff; background: #000 url(../images/nav_base2.gif) repeat-y }

DIV#sidebar2 H3 {  background: url(../images/more_base.gif) repeat-y right 50%; margin-top: 0px; padding: 0.2em }
DIV#sidebar2 img { padding-bottom: 2em; }
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
margin-left: 190px;
} 
.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 */
		font-size:small;
		font-weight: bold;
	color: #666;
}
.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;
}