/* 
========================
  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: 8
  	column width: 110px
  	column margin: 0px
  	container margin: 20px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
}

body { 
	font-size: 16px;
	margin: 0;
	padding: 0;
	text-align: center;
}


.wrapper {
	text-align: left;
	width: 920px;
}

.inner-wrapper {
	clear: both;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	padding: 20px 20px 0 22px;
	position: relative;
	width: 880px;
}


img
{  border-style: none;
}


.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 {
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 0px 0 0;
	padding: 0;
	position: relative;
}
.one-col {
	width: 110px;
}

.two-col {
	width: 220px;
}

.three-col {
	width: 330px;
}

.four-col {
	width: 440px;
}

.five-col {
	width: 550px;
}

.six-col {
	width: 660px;
}

.seven-col {
	width: 770px;
}

.eight-col {
	width: 880px;
	margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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