/*******************************************************
TITLE: Fixed Three-Column Layout v1.0
DATE: 200801
AUTHOR: The CSS Tinderbox - http://www.csstinderbox.com
*******************************************************/

/* << ----------------// General Styles //---------------->> */
body {
margin:10px;
padding:0;
background-color: #EBA417;
font-family: Arial, Helvetica, sans-serif;
font-size:14px;
line-height:22px;
color:#000000;
}

p {
margin:4px 0 14px 0;
}

strong {
font-weight:bold;
}

em {
font-style:italic;
}

h1, h2, h3, h4 {
color:#333;
font-weight:bold;
font-family:Georgia, "Times New Roman", Times, serif;
margin:18px 0;
}

h1 {
font-size:24px;
}

h2 {
font-size:20px;
}

h3 {
font-size:18px;
}

h4 {
font-size:14px;
}

a:link {
color:#EBA417;
text-decoration:none;
}

a:visited {
color:#EBA417;
text-decoration:none;
}

a:hover {
color:#EBA417;
text-decoration:underline;
}

a:active {
color:#EBA417;
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 4px 0;
padding:0;
}

hr  {
border: 0;
height: 1px;
width: 100%;
color:#fff;
background-color:#fff;
}

/* << ----------------// Outer container that holds all the columns //---------------->> */
#mainContainer {
margin:0 auto;
padding:0;
width:900px;
}

/* << ----------------// Header //---------------->> */
#header {
margin:0;
padding:0;
width:900px;
height:184px;
color:#ffffff;
background-image: url(/images/leaves.gif);
background-repeat:repeat-x;
}

/* << ----------------// Sub Header //---------------->> */
#subheader {
margin:0;
padding:10px;
width:880px;
color:#000;
background-color:#EBA417;
}

/* << ----------------// Horizontal navigation //---------------->> */
#navHorizontal {
margin:0;
padding:0;
width:900;
height:40px;
line-height:30px;
background-color:#7b7000;
}

#navHorizontal ul {
margin:0 0 0 10px;
padding:5px;
list-style:none;
}

#navHorizontal ul li {
margin:0 0 0 -5px;
padding:5px 0 5px 0;
list-style:none;
display:inline;
}

#navHorizontal ul li a:link, #navHorizontal ul li a:visited {
padding:5px 8px 5px 8px;
color:#eeeeee;
text-decoration:none;
border-right:1px solid #fff;
}

#navHorizontal ul li a:hover, #navHorizontal ul li a:active {
color:#454545;
text-decoration:none;
background-color:#fff;
}

/* << ----------------// Big Column //---------------->> */
#bigcolumn {
float: left;
margin: 0;
padding:25px;
width:850px;
color:#fff;
background-color:#7b7000;
}

#bigcolumn .highlight {
color: #EBA417;
font-weight:bold;
}

/* << ----------------// Left column //---------------->> */
#columnOne {
float:left;
margin:0;
padding:15px;
width:270px;
color:#fff;
background-color:#7b7000;
}

/* << ----------------// Double column //---------------->> */
#doublecolumn {
float:left;
margin:0;
padding: 0px 15px;
width:580px;
color:#fff;
background-color:#7b7000;
}
#doublecolumn .highlight {
color: #EBA417;
font-weight:bold;
}


/* << ----------------// Middle column //---------------->> */
#columnTwo {
float:left;
margin:0;
padding:15px;
width:270px;
color:#fff;
background-color:#7b7000;
}

/* << ----------------// Right column //---------------->> */
#columnThree {
float:left;
margin:0;
padding:15px;
width:270px;
color:#fff;
background-color:#7b7000;
}

/* << ----------------// Right Alt column //---------------->> */
#columnThreeAlt {
float:left;
margin:0;
padding: 0px 15px;
width:260px;
color:#fff;
background-color:#7b7000;
}
#columnThreeAlt .highlight {
color: #EBA417;
font-weight:bold;
}
#columnThreeAlt a:link, #columnThreeAlt a:visited {
color:#fff;
text-decoration:none;
}
#columnThreeAlt a:hover, #columnThreeAlt a:active {
color:#fff;
text-decoration:underline;
}


/* << ----------------// Footer //---------------->> */
#footer {
margin:0;
padding:5px 5px 5px 10px;
width:885px;
height:20px;
text-align: center;
font-size:14px;
color:#fff;
background-color:#EBA417;
clear:both;
}

#footer a:link, #footer a:visited {
color:#fff;
text-decoration:none;
}

#footer a:hover, #footer a:active {
color:#fff;
text-decoration:underline;
}

/* << ----------------// 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 */
