/*
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;
}
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 { color: #567187; font-family: Verdana, Arial, Tahoma, sans-serif; background-color: #996418; background-image: url(../images/bg/bg.gif); background-repeat: repeat-x; text-align: center; font-size: 70%; }
.clear { clear: both; }
#mainContainer { min-height: 100%; margin-bottom: -60px; /*** 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 { color: navy; padding-top: 6px; padding-right: 12px; padding-left: 142px; }
#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; }
.singlesection {
	clear: both;
}
.flag { margin-right: 4px; margin-left: 4px; }
/**************************
CONTENT AND COLUMNS
**************************/
.outer { margin-left: 120px; padding-bottom: 80px; /*** Our right column width ***/
}
.inner { width: 100%; margin-right: 18px; margin-bottom: -60px; /*** 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%; padding-bottom: 60px; /*** Same length as .outer padding-left but with negative value ***/
}
#content { margin-right: auto; /*** Same length as .outer padding-left but with negative value ***/ /*** prevoiusly had position: relative; which has been removed because of problems with the calendar ***/
float: none; min-width: 250px; max-width: 620px; margin-bottom: 50px; margin-left: auto; padding: 5px; /*** 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: 120px;
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 { color: aqua; text-align: left; position: fixed; left: 8px; bottom: 0; z-index: 130; }
#footer img { vertical-align: text-bottom; }
#footer p {
clear: both;
}
.gap-saver { height: 1px; margin: 0 0 -1px; padding: 0; font-size: 1px; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; /* to correct IE */
     }
