/*

Size Calculations use the following variables. Search for them if you want to change:

LEFT (Defaults to 580px)
CENTRE (Defaults to 375px)

*/

* {
padding: 0;
margin: 0;
border: 0;
}
body, html {
text-align: center; /*** Centers the design in old IE versions ***/
}
.clear { clear: both; }
#header, #hmenu, #mainContainer, #footer {
margin: 0 auto; /*** Centers the design ***/
width: 955px; /* Width of the centered part of the site = LEFT + CENTRE */
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
/**************************
HEADER
**************************/
#header {
height: 50px;
}
/**************************
MENU
**************************/
#hmenu {
 height: 33px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 5px;
border-left: 580px solid;  /* Width of left  column = LEFT */
min-height: 500px;
}
* html .outer {
height: 500px;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
.inner {
width: 375px; /* Width of centre column = CENTRE */
padding-bottom: 30px;
}
* 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: 945px; /* Width of page minus twice .outer padding = CENTRE + LEFT - 2*5 */
margin-left: -580px; /*** Same length as .outer padding-left but with negative value = 0 - LEFT ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 365px; /* Width of content minus left padding from .outer = CENTRE - 2*5 */
}
* html #content {
position: relative;  /*** 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: 565px; /* Width of left column text area, size minus left padding of .outer minus left and right padding of #left = LEFT - 5 - 5 - 5 */
padding: 5px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
display:none;
}
/**************************
FOOTER
**************************/
#footer {
min-height: 30px;
margin: 0 auto;
}

#footer p {
 padding: 5px;
}
