/*******************************************************
TITLE: Fixed Box Layout  V1.0
DATE: 20060809
AUTHOR: The CSS Tinderbox - http://www.csstinderbox.com
*******************************************************/

body {
font-family:Arial, Helvetica, sans-serif;
font-size:.9em;
}

a {
color:#cc0000;
text-decoration:underline;
}

a:hover {
color:#ff0000;
}

blockquote {
margin:1em;
padding:.5em;
background-color:#ffffff;
border-top:1px solid #cccccc;
border-bottom:1px solid #cccccc;
}

blockquote p {
margin:.2em;
}

#centerColumn { 	
margin:0 auto;
padding:1em;
width:750px;
text-align:left;
vertical-align: middle;	
background-color:#f3ebd2;
border:3px solid #993333;
}

#centerColumn h2 {
margin:0 0 -.5em 0;
padding:.75em 0 0 0;
font-size:1em;
letter-spacing:.1em;
}

#header {
margin:0;
padding:0 0 0 0;
height:110px;
background-color:#f3ebd2;
}

#imageheader {
margin:0;
padding:0 0 0 0;
height:260px;
background-color:#ffffff;
border:0px solid #ffffff;
}

h1 {
margin:40px 0 0 0;
padding:0 0 0 0;
font-size:1.5em;
letter-spacing:.1em;
color:#993333;
}

h2 {
font-size:13pt;
font-weight:bold;
color:#993333;
}

#menu {
width: 100%; 
 font-family:  Trebuchet MS, Arial, sans-serif; 
 background-color: #993333; 
 height: 22;
color: #ffffff;

}

#menu ul {
 list-style: none;
 padding: 0;   /* padding to buttons */
 margin: 0 ;   /* indent from outside div */
 background-color: #993333;
}

#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: #ffffff;  /* link text colour */
 background-color: #993333;
 border-width: 0px;
 border-right:1px;
 border-style: solid;
 border-color: #ffffff;
 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: #000000;

}
#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: #006699; /* color of the entire dropdown */

}

#menu li ul a {  /* override colours for drop down buttons */
background-color:#006699;
 width: 100px;
 text-align:left;
 font-size: 10pt;
 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: #013f5e;
}

#menu ul li:hover, #menu ul li.sfhover {
 color: blue;
}

#menu ul ul ul {
 position: absolute;
 background-color: #666666; /* 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;
}
#footer {
position:relative;
bottom:0;
margin:5em 0 0 0;
padding:0;
height:100px;
line-height:4em;
text-align:center;
font-size:.7em;
background-color:#cccccc;
border-top:1px solid #999999;
}
