/*************************
LAYOUT
**************************/


/************* CONTENT AND COLUMNS */

.outer {
    padding-left: 320px;
    padding-bottom:80px;
}
* html .outer {
    padding-right: 320px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
    width: 640px; /*** 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 ***/
    padding-bottom: 10px;
}
* 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: 640px;
    margin-left: -320px; /*** 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: 320px;
}
* html #content {
    position: relative;  /*** IE needs this  ***/
}
.contentWrap{
    padding: 10px 20px 10px 20px;
    margin-top: 0px;
}

/************* 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: 300px;
    padding: 10px;
    overflow: hidden;
}

* html #left {
    position: relative;  /*** IE needs this  ***/
}




/************* RIGHT COLUMN */

#right {
    
    float: right; 
    width: 300px;
    padding: 10px;
}
* html #right {
    position: relative;  /*** IE needs this  ***/
    margin-right: -320px; /*** IE gets this margin. ***/
}


