/*
loosely based on the grid 960 system
    http://960.gs
*/

html,body{
    height:100%;
    min-height:100%;
}





.main {
        margin:0px auto;
	width: 1000px;
        min-height:100%;
        height: auto !important;
        height: 100%;
        position:relative;    
}

.left,
.right,
.center,
.full
{
	display:inline;
	float: left;
	margin-left: 4px;
	margin-right: 4px;

}
.left,
.right,
.center{
    padding-bottom:0px;
}

.main .left {
        margin-left:0px;
        margin-right:4px;
	width:212px;
}

.main .center {
	width:600px;
        margin:0px 4px;
}

.main .right{
	width:172px;
        margin-right:0px;
        margin-left:4px;
}
.main .full{
    width:1000px;
    margin:0;
}
/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}