@charset "UTF-8";
html, body  {
	background: #003;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px; 
	border: 0px; 
	color: #003; 
	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 */
}
html, body, p, th, td, li, dd, dt {
	font: 1em Verdana, Arial, Helvetica, sans-serif; 
}
h1, h3, h4, h5, h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
}
h1 { font-size: 2em; 
	text-align: center; }
h2 { font-size: 1.8em; }
.h2sidebar { font-family: "Arial Narrow", Arial, Helvetica, sans-serif; }
.h2center { text-align: center; }
h3 { font-size: 1.2em ; }
h4 { font-size: 1.0em; }
h5 { font-size: 0.9em; }
h6 { font-size: 0.8em; }
a { text-decoration: none; 
	background-color: transparent; }		
a:link { color: #03f; }  /* for unvisited links */
a:visited { color: #00f; } /* for visited links */
a:hover { color: #060; text-decoration: underline; } /* when mouse is over link */
/*
a:link { color: #00f; }
a:visited { color: #009; }
a:hover { color: #06f; }
a:active { color: #0cf; }
*/

.alignright { text-align: right; }
.alignleft { text-align: left; }
.small { font-size: .75em; }
.copy { font-size: .7em; 
	text-align: center; }
.text { font-size: .9em; }
.bold { font-weight: bold; }
/* [if IE 5]>
place css box model fixes for IE 5* in this conditional comment 
.twoColFixRt #sidebar1 { width: 220px; } 

place css fixes for all versions of IE in this conditional comment 
.twoColFixRt #sidebar1 { padding-top: 30px; }
.twoColFixRt #mainContent { zoom: 1; }
the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

.twoColFixRt #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFF0;
	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. */
}
.twoColFixRt #sidebar1 {
	float: right; /* 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: #fffff0; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 0;
}

ul { list-style-position: outside; 
	list-style-image: url(buckyball-15px.jpg); 
	position: relative;
	}

.twoColFixRt #mainContent { 
	margin: 0 250px 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 0 0 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: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
}
.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;
}