
/*
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 {
background: #fff url(images/bg.png) repeat-x;
color: #000; 
font-family: Arial, Tahoma, sans-serif;
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 70%;
}


h1, h2, h3, h4, h5 {
font-weight: bold;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
width: 950px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
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 {
background: #eee url(images/bg.png) repeat-x;
padding: 5px;
height:130px;
text-align:right;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
    padding-left: 355px;
    padding-right: 0px;
    clear:both;
}
* 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: 765px;
margin-left: -355px; /*** 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 {
float: right;
width: 580px;
background: #fff;
position: relative; /*** IE needs this  ***/
}
* html #content {

}
.contentWrap {
padding-top: 30px;
}
/**************************
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: 175px;
background: #fff; 
min-height: 250px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
* html #left {
height: 250px;
}

/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 175px;
background: #fff;
padding: 5px;
min-height: 250px;
position: relative; /*** IE needs this  ***/
margin-top:15px;/**********************************************i added this****************************/
}
* html #right {
margin-right: -120px; /*** IE gets this margin. ***/
height: 250px;
}

/**************************
FOOTER
**************************/
#footer {
width: 950px;
margin: 0 auto;
text-align: center;

}


