
/************************************************************
	HTML STRUCTURE
************************************************************/
#container {
    width: 980px;
	min-width: 980px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

#outer {
	overflow: auto;
	height: 1%;
	clear: both;
}

#inner {
	float: left;
	position: relative; /* IE needs this */
	z-index: 0;
	height: 1%;
}

#footer {
    width: 980px;
    height: 265px; 
    margin: 0 auto;
	overflow: auto; /* FF needs this */
	position: relative; /* FF needs this */
}

/************************************************************
	GRID STRUCTURE
************************************************************/
.column_1, .column_2, .column_3, .column_4,
.column_5, .column_6, .column_7, .column_8,
.column_9, .column_10, .column_11, 
.column_12, .column_13, .column_14, 
.column_15, .column_16 {
	display: inline; /* IE needs this */
	float: left;
}

.column_1 {width: 60px}

.column_2 {width: 120px}

.column_3 {width: 180px}

.column_4 {width: 240px}

.column_5 {width: 300px}

.column_6 {width: 360px}

.column_7 {width: 420px}

.column_8 {width: 480px}

.column_9 {width: 540px}

.column_10 {width: 600px}

.column_11 {width: 660px}

.column_12 {width: 720px}

.column_13 {width: 780px}

.column_14 {width: 840px}

.column_15 {width: 900px}

.column_16 {width: 960px}

/************************************************************
	CLEAR FLOATS
************************************************************/

.clear {
	clear: both; 
	display: block; 
	overflow: hidden; 
	visibility: hidden; 
	width: 0; 
	height: 0;
	line-height: 0;
	font-size: 0;
}

.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}

