/*******************************************************
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: verdana, sans-serif;

font-size: 12px;

color:#000000;
}


p {
margin:4px 0 6px 0;
}

strong {
font-weight:bold;
}

em {
font-style:italic;
}

h1, h2, h3, h4 {
font-weight:bold;

}

h1 {
font-size:18px;
color:#3e638f;
margin:10px 0 20px 0;
}

h2 {
font-size:16px;
color:#3e638f;
margin:10px 0 20px 0;
}

h3 {
font-size:14px;
color:#3e638f;
margin:15px 0 5px 0;
}

h4 {
font-size:17px;
color:#3e638f;
}

.style2{font-size:36pt;color:red;}

a:link, a:visited {
color:#FF6600;
text-decoration:underline;
}

a:hover, a:active {
color:blue;
text-decoration:underline;
}

blockquote {
border : 2px solid #000;
width: 200px;
float: right;
margin: 0px;
padding: 10px;
background-color: #ccc;
quotes: "\201C" "\201D";
}

/* << ----------------// Outer container that holds all the columns //---------------->> */
#mainContainer {
margin:0 auto;
padding:0;
width:900px;
border:1px dashed #454545;
}

/* << ----------------// Header //---------------->> */
#header {
margin:0;
padding:0px;
width:900px;
height:200px;
color:#ffffff;
background-color:#ffffff;
}

/* << ----------------// Horizontal navigation //---------------->> */
 

 #menu {
 width: 900px;  
 background-color: #3e638f; 
 
}


      #menu {
width: 100%; 
font-family:  Arial, Trebuchet MS,  sans-serif;
font-weight:bold; 
background-color: #3e638f; 
color: #000000;
}

#menu ul {
 list-style: none;
 padding: 2;   /* padding to buttons */
 margin: 0 ;   /* indent from outside div */
}

#menu li {
float: left;     /* left for horizonal menu, otherwise its vertical.
 width: 100;   /* button outside dimensions, need this for centering text... make this same as anchor */
}

#menu a {
 text-align: center;  /* position text within li button */
 text-decoration: none; /* remove typical underline */
 font-size: 9pt;    /* menu text size */
 display: block;    /* treats layout of buttons like they're table cells rather than list items */
 height: 14;   /* button outside dimensions  */
 width: 100;   /* button outside dimensions */
 color: white;  /* link text colour */
 background-color: #3e638f;
 border-width: 0px;
 border-right:1px;
 border-style: solid;
 border-color: #ccc;
 padding: 2;   /* padding of text within button */
 margin: 0;   /* padding of button within list item */
}

#menu a:hover {  /* override as neccesary for mouse over effects */
 color: white; 
 background-color: #ff9933;

}
#menu li a {
                                padding: 5px 5px 5px 5px;
                
                }

#menu li ul {  /* this one is the dropdown */
 position: absolute; /* so we can hide it */
 left: -999em;  /* by default it is hidden */
 width: 100px;  /* width of the entire dropdown */
 margin: 0;  /* relative position of the menu to the button... 0=tight on bottom.. */
 background-color: #transparent; /* color of the entire dropdown */
font-size: 9pt;
}

#menu li ul a {  /* override colours for drop down buttons */
background-color:#3e638f;
 width: 120px;
 text-align:left;
 font-size: 9pt;
 border-right:1px;
 color:#ffffff;
 border-bottom: 1px  solid #ffffff;
padding:4px;
}



#menu li ul a:hover {  /* override colours for drop down buttons */
color: #ffffff;
 background-color: #ff9933;
}

#menu ul li:hover, #menu ul li.sfhover {
 color: blue;
}

#menu ul ul ul {
 position: absolute;
 background-color: #000000; /* color of the entire dropdown */
 top: auto;  /* auto means that it will be in the typicall indented list position below the first menu */
 left: 0;   /* 0 */
 margin: -20 110;       /* adjust the margins to position the 2nd level popout menu to the right*/
width: 100%;   /* width is based on the containing block */
}

#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li.sfhover ul ul, 
#menu li.sfhover ul ul ul 
{
 left: -999em;
}

#menu li:hover ul, 
#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li.sfhover ul, 
#menu li li.sfhover ul, 
#menu li li li.sfhover ul {
 left: auto;
}
/* << ----------------// Middle column //---------------->> */
#columnTwo {
float:left;
margin:0px;
padding:0px 15px 10px 15px;
width:660px;
background-color:#ffffff;
font-family: verdana,sans-serif;
color: #333333;
font-size: 12px;


}

#columnTwo2 {
float:left;
margin:0px;
padding:0px 15px 10px 15px;
width:95%;
background-color:#ffffff;
font-family: verdana,sans-serif;
color: #333333;
font-size: 12px;


}




/* << ----------------// Right column //---------------->> */
#columnThree {
float:left;
margin:0;
padding:0 5px 10px 5px;
width:200px;
background-color:#f3f3f3;
font-size: 10px;
}

/* << ----------------// Footer //---------------->> */
#footer {
margin:0;
padding:5px 5px 5px 10px;
width:885px;
height:20px;
font-size:10px;
color:#cccccc;
background-color:#000000;
clear:both;
align:center;
}

#footer a:link, #footer a:visited {
color:#999999;
text-decoration:none;
}

#footer a:hover, #footer a:active {
color:#ffffff;
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 */