/* Optional Code */

body { margin: 0; padding: 0; background-color: #d98c40; }

.wrapper { min-width: 400px; }
          /* Allways good to have on full width liquid CSS layouts, 
             google "min-width IE" for JS solutions there */

/* Setup (This all looks neater when it isn't put on display!) */

.wrapper {
	width: 100%;               /* total width */
}      

.outer {
	border-left-width: 170px;  /* left column width */
	border-left-color: #d98c40;   /* left column colour */
	
	border-right-width: 170px; /* right column width */
	border-right-color: #d98c40;  /* right column colour */
	
	background-color: #fefefe; /* center column colour */
}

.left {
	width: 170px;              /* left column width */
	margin-left: -170px;       /* _negative_ left column width */
}

.right {
	width: 170px;              /* right column width */
	margin-right: -170px;      /* _negative_ right column width */
}

.wide {
	background-color: #d98c40;    /* header and footer colours */
	text-align: center;
	font: normal 7pt Verdana;
}

/* Main code */

.outer { width: auto; border-left-style: solid; border-right-style: solid; }
.inner { margin: 0; width: 100%; }

.left { float: left; position: relative; z-index: 10; }
.right { float: left; position: relative; z-index: 11; }
.center { float: left; width: 100%; position: relative; z-index: 12; }

.wide { width: 100%; position: relative; z-index: 13; }

.clear { clear: both; }

/* Mozilla code
.outer > .inner { border-bottom: 1px solid transparent; }
.left { margin-right: 1px; }
.right { margin-left: 1px; }
.right p { padding-left: 10px; }
.center { margin: 0 -8px 0 -2px; }
*/