/* 
========================
  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: 4
  	column width: 166px
  	column margin: 14px
  	container margin: 14px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
}

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


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

.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: 13px 14px 0 14px;
	position: relative;
	width: 706px;
}




.container {
	clear: both;
	float: left;
	margin: 0;
	width: 100%;	
}
.one-col, .two-col, .three-col, .four-col {
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 14px 0 0;
	padding: 0;
	position: relative;
}
.one-col {
	width: 166px;
}

.two-col {
	width: 346px;
}

.three-col {
	width: 526px;
}

.four-col {
	width: 706px;
	margin-right: 0;
}

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

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

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

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

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

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

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