/* a fix for IE6 only - see Star Hack in Stylin' with CSS to see how the comments and * html hide this hack from other browsers \*/
* html * {
	zoom:100%; 
/* triggers IE6 "haslayout" - google 'IE6 haslayout' for details*/
	}
/* without the above hack, IE6 does not draw the header until the page is resized */
/* the problem is triggered by the universal * selector below that resets the margins, but I need to do that, hence the hack */
* {
	margin:0;
	padding:0;
	}
body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	background-image: url(images/wcc_bg.gif);
}
.float_left {float:left; margin: 0 .3em .3em 0;}      /* apply this class to any image or element with width - text will wrap it to the right */
.float_right {float:right;  margin: 0 0 .3em .3em;} /* apply this class to any image or element with width  - text will wrap it to the left */

/* TEXT */
p {
	font-size: 0.85em;
	line-height: 1.4em;
	color: #000000;
	text-align: left;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
ul, li{ 
	margin:0; 
	padding:0; 
	list-style-type:none; 
} 
li{
	background:url(images/arrow-bullet.gif) 6px 10px no-repeat;
	font-size: 0.85em;
	line-height: 1.4em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin:5; 
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
ol {
	padding-left: 10px;
}
td {
	font-size: 0.85em;
	line-height: 1.4em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}
h1 {
	font-size: 0.95em; /* heading items */
	font-weight: bold;
	color: #444478;
}
h2 {
	font-size: 12px; /* navigation items */
	font-weight: bold;
	line-height: 1.7em;
	color: #FF6666;
	text-align: right;
	margin: 0px;
}
h3 {
	font-size: 11px; /* left column items */
	font-weight: normal;
	color: #000000;
	text-align: right;
	margin: 0px;
	padding: 4px;
	border-style: none;
}
#references {
	font-size:9px;
	color:#666666;
}
.copyright {
	font-size: 0.6em;
	color: #333333;
	margin: 10 px;
}

/* TWO COLUMN LAYOUT */

#main_wrapper {
	width:840px; /* widths of columns will change proportionately as this width is changed */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
}
#header {
	padding: 0px;
	margin: 0px;
	}
#container {
	width:840px; /* widths of columns will change proportionately as this width is changed */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
	clear: both;
	background-color: #FFFFFF;
}
#pagecontainer {
	width:840px; /* widths of columns will change proportionately as this width is changed */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
	clear: both;
	background-color: #FFFFFF;
	background-image: url(images/pagebg.gif);
	background-repeat: repeat-y;
}
#navLeft {
	float: left;
	width: 200px;
}
#contentRight {
	float: left;
	width: 640px;
}
.leftNavContent {
	padding: 4px; /* 8px is distave from box bg edge to h2 bg edge */
	margin-left: 18px;
	margin-right: 4px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: right;
}
.content{
	padding: 4px; /* 8px is distave from box bg edge to h2 bg edge */
	margin-left: 4px;
	margin-right: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer {
	background-image: url(images/footerbg.gif);
	background-repeat: repeat-y;
	text-align: center;
	clear: both;
	width: 840px;
	height: 40px;
}

/* LINKS */
a:link {
	color: #FF6666;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	color: #FF6666;
	font-weight: bold;
}
a:hover {
	color: #444478;
	font-weight: bold;
}
a:active {
	color: #444478;
	font-weight: bold;
}

/* NAV LINKS */
h2 a:link {
	color: #FF6666;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h2 a:visited {
	color: #FF6666;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h2 a:hover {
	color: #444478;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h2 a:active {
	color: #444478;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#footer a:link {
	color: #444478;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
}
#footer a:visited {
	color: #444478;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
}
#footer a:hover {
	color: #444478;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: underline;
}
#footer a:active {
	color: #444478;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
}

