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

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


.wrapper {
	/*margin: 0 auto;  This centers the grid. Remove this line to place the grid on the left of the page. */
	text-align: left;
	/*width: 1024px;*/
}

.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 0 0 20px;
	position: relative;
	width: 964px;
	overflow:hidden;
	margin-right: 0 !important;
}




.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, .thirteen-col, .fourteen-col, .fifteen-col, .sixteen-col, .seventeen-col, .eighteen-col, .nineteen-col {
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 4px 0 0;
	padding: 0;
	position: relative;
	/*background: #9fcdf6;  Delete this line to remove the blue colour on columns. */
}
.one-col {
	width: 48px;
}

.two-col {
	width: 100px;
}

.three-col {
	width: 152px;
}

.four-col {
	width: 204px;
}

.five-col {
	width: 256px;
}

.six-col {
	width: 308px;
}

.seven-col {
	width: 360px;
}

.eight-col {
	width: 412px;
}

.nine-col {
	width: 464px;
}

.ten-col {
	width: 516px;
}

.eleven-col {
	width: 568px;
}

.twelve-col {
	width: 620px;
}

.thirteen-col {
	width: 672px;
}

.fourteen-col {
	width: 724px;
}

.fifteen-col {
	width: 776px;
}

.sixteen-col {
	width: 828px;
}

.seventeen-col {
	width: 880px;
}

.eighteen-col {
	width: 932px;
}

.nineteen-col {
	width: 984px;
	margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.prefix-twelve {
	margin-left: 624px;
}

.prefix-thirteen {
	margin-left: 676px;
}

.prefix-fourteen {
	margin-left: 728px;
}

.prefix-fifteen {
	margin-left: 780px;
}

.prefix-sixteen {
	margin-left: 832px;
}

.prefix-seventeen {
	margin-left: 884px;
}

.prefix-eighteen {
	margin-left: 936px;
}

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

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

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

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

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

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

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

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

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

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

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

.suffix-twelve {
	margin-right: 628px;
}

.suffix-thirteen {
	margin-right: 680px;
}

.suffix-fourteen {
	margin-right: 732px;
}

.suffix-fifteen {
	margin-right: 784px;
}

.suffix-sixteen {
	margin-right: 836px;
}

.suffix-seventeen {
	margin-right: 888px;
}

.suffix-eighteen {
	margin-right: 940px;
}

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