/*******************************************************
TITLE: Fixed Three-Column Layout v1.0
DATE: 200801
AUTHOR: The CSS Tinderbox - http://www.csstinderbox.com
*******************************************************/

/* << ----------------// General Styles //------------ */
body {
	margin:10px;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:18px;
	color:#000000;
}

p {
margin:4px 0 6px 0;
}

strong {
font-weight:bold;
}

em {
font-style:italic;
}

h1, h2, h3, h4 {
font-weight:bold;
margin:10px 0 0 0;
}

h1 {
font-size:23px;
}

h2 {
font-size:20px;
}

h3 {
font-size:17px;
}

h4 {
font-size:14px;
}

h5 {
font-size:12px;
}

a:link, a:visited {
color:#cc0000;
text-decoration:none;
}

a:hover, a:active {
	color:#006C75;
	text-decoration:none;
}

ul {
	margin:5px 0 5px 20px;
	padding:0;
	list-style-type:disc;
}

ol {
	margin:5px 0 5px 30px;
	padding:0;
	list-style-type:decimal;
}

ul li, ol li {
	margin:0 0 0px 0;
	padding:0;
}

/* << ----------------// Outer container that holds all the columns //------------ */
#mainContainer {
margin:0 auto;
padding:0;
width:900px;
border:1px dashed #454545;
}

/* << ----------------// Header //------------ */
#header {
	margin:0;
	padding:5px;
	width:890px;
	height:200px;
	color:#000000;
	background-color:;
}

/* << ----------------// Left column //------------ */
#columnOne {
	float:left;
	margin:0;
	padding:0 5px 10px 5px;
	width:190px;
	background-color:#80b4c0;
}

#columnOne p, #columnThree p, #columnOne ul li, #columnOne ol li, #columnThree ul li, #columnThree ol li {
font-size:13px;
}

#columnOne h2, #columnThree h2 {
font-size:16px;
}

/* << ----------------// Middle column //------------ */
#columnTwo {
float:left;
margin:0;
padding:0 5px 10px 5px;
width:490px;
background-color:#eeeeee;
}

/* << ----------------// Right column //------------ */
#columnThree {
	float:left;
	margin:0;
	padding:0 5px 10px 5px;
	width:190px;
	background-color:#bfd9df;
}

/* << ----------------// Footer //------------ */
#footer {
	margin:0;
	padding:5px 5px 5px 10px;
	width:auto;
	height:30px;
	font-size:12px;
	color:#cccccc;
	background-color:#bf0026;
	clear:both;
}

#footer a:link, #footer a:visited {
	color:#FFFFFF;
	text-decoration:none;
}

#footer a:hover, #footer a:active {
	color:#000000;
	text-decoration:none;
}

/* << ----------------// Fix so that the outer DIV will wrap around all floated DIVs within //------------ */
.clearfix:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

