/* 
========================
  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: 225px
  	column margin: 20px
  	container margin: 20px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
}


.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: 1000px;
}

.inner-wrapper {
	clear: both;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	padding: 0 20px 0 20px;
	position: relative;
	width: 960px;
}




.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 28px 0 0;
	padding: 0;
	position: relative;
}
div#topnav {
	width: 960px;
	height: 49px;
}
div#homehead {
	width: 960px;
	height: 515px;
	background-image:url(../images/sick_dog.jpg);
	background-position:left top;
	background-repeat:no-repeat;
}
	
.one-col {
	width: 219px;
}

.two-col {
	width: 219px;
}

.three-col {
	width: 219px;
}

.four-col {
	width: 219px;
	margin-right: 0;
}

.prefix-one {
	margin-left: 245px;
}

.prefix-two {
	margin-left: 490px;
}

.prefix-three {
	margin-left: 735px;
}

.suffix-one {
	margin-right: 265px;
}

.suffix-two {
	margin-right: 510px;
}

.suffix-three {
	margin-right: 755px;
}

.clear { /* Useful generic clearing class. */
	clear: both;
}
.last-col {
	margin-right: 0;
}
div#homecontent {
	width:640px;
	margin-right: 20px;
	margin-top: 80px;
	float:left;
}
div#homesidebar {
	width: 300px;
	float: left;
	margin-top: 80px;
}
div#content {
	width:640px;
	margin-right: 20px;
	margin-top: 10px;
	float:left;
}
div#sidebar {
	width: 300px;
	float: left;
	margin-top: 10px;
}
div#footer {
	width: 100%;
	height: 49px;
	padding-top: 10px;
	background-image:url(../images/footer.jpg);
	background-position:bottom;
	background-repeat:repeat-x;
	clear:both;
}