@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;
}
.twoColFixLtHdr #container {
	width: 800px;
	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. */
	background-color: #CCCC66;
} 
.twoColFixLtHdr #header { 
	background: url(images/writerscliquebanner.png) no-repeat right top;
	width: 800px;
	height: 90px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #006600;
}
.twoColFixLtHdr #nav {
	float: left; /* since this element is floated, a width must be given */
	width: 240px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 0px 1px 0px;
	background-color: #CCCC66;
}

.twoColFixLtHdr #mainNav ul,
.twoColFixLtHdr #mainNav li,
{
padding:0;
margin:0;
list-style:none;
}

.twoColFixLtHdr #mainNav li
{
margin:0 0 0 10px;
width:180px;
}
.twoColFixLtHdr #mainNav li a
{
display:block;
border-bottom:1px solid #033;
text-decoration:none;
padding:2px 2px 2px 5px;
}
.twoColFixLtHdr #mainNav li a:hover
{
background:#000066 url(images/arrow.gif) no-repeat 2px center;
color:#fff;
border-bottom:1px solid #000;
padding:2px 2px 2px 14px;
}

.twoColFixLtHdr #mainNav h4 {
	color:#000066;
	font-size:14px;
}

.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: 1 2px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #333333;
	background-color: #FFFFFF;
} 

.twoColFixLtHdr #mainContent li {
	color:#000066;
	font-size:14px;
}

.twoColFixLtHdr #mainContent h1 {
	color:#000066;
	font-size:24px;
}

.twoColFixLtHdr #mainContent h2 {
	color:#000066;
	font-size:18px;
}

.twoColFixLtHdr #mainContent h3 {
	color:#000066;
	font-size:10px;
}

.twoColFixLtHdr #mainContent h4{
	color:#000066;
	font-size:14px;
}

.twoColFixLtHdr #mainContent h5{
	color:#000066;
	font-size:12px;
}

.twoColFixLtHdr #mainContent h6{
	color:#000066;
	font-size:16px;
}
.twoColFixLtHdr #mainContent normal {
	color:#000099;
	font-size:14px;
}

.twoColFixLtHdr #mainContent p {
	color:#000066;
	font-size:14px;
}

.twoColFixLtHdr #mainContent table {
	border:thin solid black;
}

.twoColFixLtHdr #mainContent td, th {
	border:thin dotted gray;
	font-size:12px;
}

.twoColFixLtHdr #footer {
	padding: 1x 0;
	background-color: #666600;
	margin: 0px;
} 
.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 */
}
.twoColFixLtHdr #footer table {
	margin: 0px;
	width: 760px;
	font-size:12px;
	padding: 1px 1px;	
}

.twoColFixLtHdr #footer h2{
	color:#000000;
	font-size:12px;
	padding: 1px 0px;
	margin: 0;
}
.twoColFixLtHdr #footer h3{
	color:#666600;
	padding: 1px 0;
	margin: 0;
}

.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;
}
