/*
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 {
height: 100%;  /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y also. The background color #fff (white) will be the background color for our content ***/
}
body {
font-size: 70%;
min-width: 600px;
}
.clear { clear: both; }
#mainContainer {
min-height: 100%; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header { }
#spa_plating_logo {
	margin-right: 140px;
	margin-left: 127px;
}
#spavis {
	position: fixed;
	height: 46px;
	width: 110px;
	left: 10px;
	top: 0px;
}
.addressDiv { text-align: left; height: 11px; float: left; padding-left: 4px; }
.urlDiv { font-size-adjust: none; text-align: right; clear: none; padding-right: 4px; }
.flag { margin-right: 4px; margin-left: 4px; }
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 127px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 140px; /*** Our right column width ***/
}
.inner {
width: 100%;
padding-bottom: 29px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}
/*** 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.
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -127px; /*** Same length as .outer padding-left but with negative value ***/
}
#content { float: right; margin-right: -127px; /*** Same length as .outer padding-left but with negative value ***/
width: 100%; position: relative; /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 155px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 140px;
padding: 5px 0 0 10px;
position: relative; /*** IE needs this  ***/
margin-right: -140px; /** This negative margin-right value is in this example the same as the right column width. ***/
position: relative; /*** IE needs this  ***/
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer { background-image: url(../images/bg/footer-bg.png); background-repeat: repeat-x; background-attachment: scroll; background-position: 0 0; height: 29px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 29px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -29px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: right; right: 0; padding-right: 5px; /*** The lower part of the rounded content look ***/
}
#footer img { vertical-align: text-bottom; }
#footer p {
clear: both;
}

