/* CSS Document */


html, body {margin: 0; padding: 0; border: 0;}

body {
color: #000; 
background-color: #fef2d5; 
font-family: verdana, sans-serif; 
font-size: 80%; 
text-align: center;
margin: 30px 0;
}


.alignright {margin-top: 0; text-align: right;}



.wrapper {
margin: 2px auto;
width: 770px;
text-align: left;
background: #e2deb5;
}

/*** Below is the Tan hack, needed because the decorative side borders (thin black) on 
.wrapper. It fixes the box model of IE5.x/win, making it display the same as other browsers. ***/

* html .wrapper {
width: 770px; 
w\idth: 770px; 
}

.outer {
border-left: 182px solid #d2d1db;  
}
/*** These are the visible side col BG's. The image BG is needed to replace a side border
on div.inner, which can't be used because of problems in Mozilla. The image substitutes 
for the thin black divider between the right green col and the center col. If the black divider
is not wanted, the BG image may be removed. The Tan hack below feeds a IE a different 
BG location, due to a BG placement variation. 
***/

* html .outer {
}

.inner {
margin-left: 0px; /*** This fixes a small overlap problem in IE6. ***/
width: 588px; /*** This width is for non-IE browsers. Mozilla makes this necessary. ***/
}
/*** 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. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/

* html .inner {
width: 100%;
}

.float-wrap {
float: left;
width: 770px;
margin-bottom: -5px;
margin-left: -182px;       /*** Same length as left column width ***/
}

/*** 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: 182px;
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
}


.center {
float: right;
width: 588px;
}

.wide {
background-color: #eecd79;    /* header and footer colours */
}


.leftFooter {
background-color: #d2d1db;
width: 182px;
float: left;
font-size: 2px;
padding: 0;
height: 20px;

}


.rightFooter {
background-color: #abc1a1;    /* header and footer colours */
float: right;
width: 588px;
padding: 0;
}



.wide p {padding: 5px;}

/* Mozilla bug fixes */
html>body .inner, html>body .float-wrap {
border-bottom: 1px solid transparent;
}

.clear { clear: both; }