/*
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*/
body {
	margin: 0px;
	padding: 0;
	font: 0.875em Arial, Helvetica, sans-serif;
	color: #000; 
	background-color: #fff;
	line-height: 20px; 
	text-align: left;
}

p {padding: 0px; margin: 0px;}

a {
color: #006699;
text-decoration: none;
}

a:hover{
color: #006699;
text-decoration: underline;
}


h1 {
	color: #669900; 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	padding-top: 0px;
	padding-bottom: 3px;
		line-height: 26px;
	margin-top: 5px;
	margin-bottom: 15px;
	border-bottom: dotted 1px #cccccc;

}

h1 a {
	text-decoration: none;
	color: #33ADDB;
	
}

h1 a:hover {
	text-decoration: none;
	color: #000;
	
}

h2 {
	color: #666666; 
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin-top: 7px;
	margin-bottom: 10px;	
	padding-top: 3px;
	padding-bottom: 0px;
	padding-left: 0px;
	
}

h2 a {
	color: #339999; 
	font-weight: normal;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-top: 7px;
	margin-bottom: 7px;
}


h3 a {
	color: #339999; 
	font-weight: bold;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0px;
padding: 0px;
	}
	
	h4 a {
	color: #339999; 
	font-weight: bold;
		text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	margin: 0px;
	padding-top: 3px;
	padding-bottom: 0px;
	padding-left: 0px;
	}
	
	#linecol {
	border-bottom: 1px #cccccc dotted;
	padding-bottom: 5px;
	padding-top: 5px;
	margin-bottom: 20px;
	}

.clear { clear: both; }
#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
border-top: 0px solid #027ECC;
border-right: 0px dotted #EEE;
border-bottom: 0px dotted #EEE;
border-left: 0px dotted #EEE;
background: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* 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 {
float: center;
padding: 0px;
margin: 0px;
text-align: left;
vertical-align: middle;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px;  
padding-right: 120px;
}
* html .outer {

}
.inner {
width: 595px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 100%;
}
/*** 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: 630px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
/*** 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. 
***/
#content {
border-bottom: 0px solid #ffcc33;
border-right: 0px solid #ccc;
border-top: 0px solid #ffcc33;
padding-top: 5px;
padding-right: 15px;
padding-left: 15px;
color:#000000;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
background: #fff;
}

#product {
border: 1px dotted #CCC;
padding: 6px;
color:#000000;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
background: #fff;
}

* html #content {

}
.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: 165px;
	background-color: #fff;
	min-height: 250px;
	padding: 0px;
	position: relative;
	border-top: 0px solid #0271B7;
	border-right: 0px solid #999999;
	border-bottom: 0px solid #999999;
	border-left: 0px dotted #000000;
}
* html #left {
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}

#left p {
font-size: 10px;
border-top: 1px solid #999933;
border-right: 1px solid #999933;
border-bottom: 1px solid #999933;
background-color: #FFFFFF;
color:#000000;
padding: 9px;
text-align: left;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
color: #000000;
width: 120px;
background: #fff;
padding-top: 10px;
padding-left: 10px;
min-height: 250px;
position: relative; /*** IE needs this  ***/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/

}
* html #right {
margin-right: -120px; /*** IE gets this margin. ***/
height: 250px;
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}

#right p {
font-size: 10px;
color:#000000;
padding-right: 6px;
}
/**************************
FOOTER
**************************/
#footer {
width: 764px;
margin: 0 auto;
text-align: center;
color:white;
background-color: #336699;
border-bottom: 1px solid #ffff99;
}

.style6 {
	color: #669900;
	font-weight: bold;
	padding: 2px;
}

#goog {
float: left;
	background-color: #fff;
padding-left: 0px;
	padding-right: 9px;
	padding-bottom: 9px;
	border-top: 0px dotted #ccc;
	border-right: 0px dotted #ccc;
	border-bottom: 0px dotted #ccc;
	border-left: 0px dotted #ccc;
}

