<style type="text/css">
/*
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 {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color: fff; 
	text-align: center; /*** Centers the design in old IE versions ***/
	line-height: normal;
	font-style: normal;
}

a img { border:none; }

body {
	font-size: 12px;
	line-height: normal;
}
p {
	padding: 10;
	line-height: normal;
}

h1, h2, h3 {
	font-weight: bold;
}
h1 {
	font-size: 16px;
	color:#333;
	line-height: normal;
	font-stretch: expanded;
}
h2 {
font-size: 12px;
color:#900;
}

.clear { clear: both; }
#mainContainer {
width: 875px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background:url(../images/background.png);
background-repeat:no-repeat;
background-color:#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 {
margin-top: 0px; /*** Make some space for the header menu ***/
background:#;
padding: 0px;
height: 175px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 175px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 600px; /*** 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: right;
width: 760px;
margin-left: -135px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 560px;
background: #fff;
padding-left:15px;
padding-right:20px;
}
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}

#content a {
color: #06F;
text-decoration:none;
}
#content a:hover{
color: #039;
text-decoration: none;
background-color:#CCC;
}

#content ul   {
	margin-left: 4;
	padding-left: 4;
}

#content th {
	border: thin;
	border: solid;
	border: #333;
}


/**************************
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: 150px;
background: #; 
min-height: 250px;
padding: 0px;
padding-top:15px;
}
* html #left {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
height: 250px;
}

#left ul  {
	list-style:none;
	font-weight:normal;
}
	
#left a {
    display:					block;
    width:						101px;
	list-style:					none;
    color: 						#333;
    text-decoration:			none;
    background:					url(../images/menu.png)	 no-repeat;
    padding:		        	7px 10px 7px 3px;
}

#left a:hover { 
    background-position:0 -29px;
    color:#333;
}

#left a:active {
    background-position:0 -58px;
    color:#333;
}

/**************************
FOOTER
**************************/
#footer {
width: 875px;
margin: 0 auto; /*** Since the footer is outside the #mainContainer we also need to center the footer ***/
text-align: center;
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
color:#FFF;
background-color:#999;
}
</style>
