/* fixed/fixed/fixed centred layout with equal height columns */
#all {
	width:1000px;
    margin-left:auto;
    margin-right:auto;
	padding:20px 10px 0 20px;

}
#container {
	padding:0;
    margin-left:auto;
    margin-right:auto;
	position:relative;
}
#center,#left,#right {float:left;}
#center {
	width:750px;
	padding-left:50px;
}
#left {
	width: 160px;
	height:702px;
}
#footer {
	clear: both;
	width:100%;
}
/*** Equal-height Columns ***/
#container {
	overflow: hidden;
}
#container .column {
	padding-bottom: 1000em;
	margin-bottom: -1000em;
}
/*** Footer Fix ***/
* html body {
	overflow: hidden;
}
* html #footer-wrapper {
	float: left;
	position: relative;
	width: 100%;
	padding-bottom: 1000em;
	margin-bottom: -1000em;
	background: #fff;
}
/* end holy grail */