/* 
========================
  GRIDINATOR CSS v0.3
  http://gridinator.com/
  
  GRIDINATOR CSS is a very basic framework to create
  grid-based layouts. The content of this file is 
  provided as-is, without support.
  
  If you would like to contact GRIDINATOR to suggest
  improvements, to ask for help or to file a bug report, 
  please feel free to email: gridinator@steff.me
  
  Your grid settings:
  	columns: 12
  	column width: 60px
  	column margin: 20px
  	container margin: 20px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
}

body { 
	font-size: 12px;
	margin: 0;
	padding: 0;
	text-align: center;
	background: red;
	
}


.wrapper {
	text-align: left;
	width: 100%;
	height: 100%;
	overflow: hidden;
	
}

.inner-wrapper {
	background: url(gridinator.png) repeat-y 0 0; /* The file gridinator.png is a grid background; delete this line to remove it. If you did not generate a background image, you can still do so by going to http://gridinator.com/ and entering the details found at the top of this CSS file. You will then be given a grid image to match your original grid.  */
	clear: both;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	padding: 0 20px 60px 20px;
	position: relative;
	width: 940px;
	
}

.container {
	clear: both;
	float: left;
	margin: 0;
	width: 100%;
	
	
}
.one-col, .two-col, .three-col, .four-col, .five-col, .six-col, .seven-col, .eight-col, .nine-col, .ten-col, .eleven-col, .twelve-col {
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 20px 0 0;
	padding: 0;
	position: relative;
	
}
.one-col {
	width: 60px;
}

.two-col {
	width: 140px;
}

.three-col {
	width: 220px;
}

.four-col {
	width: 300px;
}

.five-col {
	width: 380px;
}

.six-col {
	width: 460px;
}

.seven-col {
	width: 540px;
}

.eight-col {
	width: 620px;
}

.nine-col {
	width: 700px;
}

.ten-col {
	width: 780px;
}

.eleven-col {
	width: 860px;
}

.twelve-col {
	width: 940px;
	margin-right: 0;
}

.prefix-one {
	margin-left: 80px;
}

.prefix-two {
	margin-left: 160px;
}

.prefix-three {
	margin-left: 240px;
}

.prefix-four {
	margin-left: 320px;
}

.prefix-five {
	margin-left: 400px;
}

.prefix-six {
	margin-left: 480px;
}

.prefix-seven {
	margin-left: 560px;
}

.prefix-eight {
	margin-left: 640px;
}

.prefix-nine {
	margin-left: 720px;
}

.prefix-ten {
	margin-left: 800px;
}

.prefix-eleven {
	margin-left: 880px;
}

.suffix-one {
	margin-right: 100px;
}

.suffix-two {
	margin-right: 180px;
}

.suffix-three {
	margin-right: 260px;
}

.suffix-four {
	margin-right: 340px;
}

.suffix-five {
	margin-right: 420px;
}

.suffix-six {
	margin-right: 500px;
}

.suffix-seven {
	margin-right: 580px;
}

.suffix-eight {
	margin-right: 660px;
}

.suffix-nine {
	margin-right: 740px;
}

.suffix-ten {
	margin-right: 820px;
}

.suffix-eleven {
	margin-right: 900px;
}

.clear { /* Useful generic clearing class. */
	clear: both;
}
.last-col {
	margin-right: 0;
}
