html, body {
	margin:0;
	padding:0;
	text-align: center; /*** Centers the design in old IE versions ***/
	height: 100%;
}
body{ }

/* ================================================ */
/* 14 columns, 60 pixels each, with 10 pixel gutter */
/* ================================================ */

.grid_1 { width:60px; }
.grid_2 { width:130px; }
.grid_2d5 { width:180px; }
.grid_3 { width:200px; }
.grid_3d5 { width:235px; }
.grid_4 { width:270px; }
.grid_5 { width:340px; }
.grid_6 { width:410px; }
.grid_7 { width:480px; }
.grid_8 { width:550px; }
.grid_9 { width:620px; }
.grid_10 { width:690px; }
.grid_10d5 { width:740px; }
.grid_11 { width:760px; }
.grid_11d5 { width:800px; }
.grid_12 { width:830px; }
.grid_13 { width:900px; }
.grid_14 { width:970px; }
.grid_15 { width:980px; }
.grid_100p { width:100%; }

.column {
	margin: 0 0px;
	overflow: hidden;
	float: left;
	display: inline;
}
.row {
	width: 980px;
	margin: 0 auto;
	overflow: hidden;
}
.row .row {
	margin: 0 0px;
	width: auto;
	display: inline-block;
}
#maincontainer{ 
	position:relative;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 100%;
	/*** background: #add8e6 url(/img/three-column-100-bg.gif) repeat-y; This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/

	/*border:1px solid #333;*/ 
	/*GRID HERE*/
	/*background:#CCC url(img/grid.png) 5px top repeat;*/
}

* html #maincontainer { height: 100%; 	/*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/ }
#maincontainer div.column {/*outline:1px solid #333;*/}



/**************************
FOOTER
**************************/
#footer {
	position:relative;
	width: 100%;
	height: 172px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: 0 auto;
	margin-top: -172px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: center;
	z-index:1;
	background:url(/images/bg-footer.jpg) left top repeat-x;
}
.minusfooter{padding-bottom: 172px;}