/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {}
.clear { clear: both; }
#mainContainer {
min-height: 300px;
padding: 0 15px 0 20px;
background: transparent url(/images/cont-left-mid.jpg) 20px 0 repeat-y; 
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
border-top: 10px solid white;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding: 0 15px 0 0;
margin: 0 0 0 0;
background: transparent url(/images/cont-right-mid.jpg) top right repeat-y;
}
.inner {
width: 100%; 
background: transparent url(/images/cont-left-mid.jpg) top left repeat-y; 
padding-bottom: 200px;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/
.float-wrap {
float: left;
width: 100%;
margin-left: 0; /*** Same length as .outer border-left but with negative value ***/
}
#content {
float: right;
width: 100%;
}
* html #content {
position: relative;
}
.contentWrap {
padding: 0 0 0 30px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 10px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 320px;
padding: 5px;
text-align: right;
min-height: 250px;
margin-right: -330px; /** This negative margin-right value is the width of the right column + the padding, in this example 130px. ***/
}
* html #right {
height: 250px;
position: relative;  /*** IE needs this  ***/
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
text-align: center;
height: 190px;
margin-top: -190px;
overflow: hidden;
background-image: url(/images/cont-left-mid.jpg);
background-position: 20px 0;
background-repeat: repeat-y;
}
/**************************
NAV
**************************/
img.nav_left { float: left; margin-right: -30px; clear: left;}
img.nav_right { float: right; margin-top: -32px;}
div.nav_mid { margin: 0 30px 0 30px; height: 32px; overflow:hidden;}
.nav_mid ul {
list-style: none;
margin: 0;
padding: 5px 0 0 0;
}
.nav_mid li {
color: #fff;
font-family: Arial, Helvetica, sans-serif;
font-size: 130%;
font-weight: bold;
text-transform: uppercase;
border-right: solid 1px #fff;
padding: 0 10px 0 10px;
float: left;
}
.nav_mid li:first-child {
padding: 0 10px 0 0;
}
.nav_mid li a {
color: #fff;
text-decoration: none;
}
.nav_mid li a:hover {
color: #fff;
text-decoration: underline;
}
/**************************
CONTAINER BOX
**************************/
div.top_left { float: left; }
div.top_right { float: right; }
div.cttop { height: 150px; overflow: hidden; background-image: url(/images/cont-header-mid.jpg);}
.nav_mid {
background-color: #1e5464;
}
div.footer_centre {
text-align: center;
margin: 0 35px;
padding: 25px 0 0 0;
border-top: solid 2px #e7edee;
}
div.ctbase { margin: 0 15px 0 20px; height: 30px; background-image: url(/images/cont-btm-mid.jpg); }
img.base_left { float: left; }
img.base_right { float: right; }
div.footer-text{ height: 80px; background-color: white; }

/**************************
100% HEIGHT STUFF
**************************/
body, html { height: 100%; }
#mainContainer { min-height: 100%; }
div
#rightborder { float: right; min-height:100%; background: #FFF url(/images/cont-right-mid.jpg) 0 10px repeat-y;width: 45px; margin: 10px 0 -200px -45px; }

/**************************
SHOW/HIDE DIV's (Home & About Us)
**************************/
#agency1, #agency2, #agency3, #agency4 {
display: none;
}
#about1, #about2, #about3, #about4 {
display: none;
}
