.image_section {
	float: left;
	/* Set up the spacing between the images and the text. */
		padding-right: 15px;	
	width: 230px;
}
.big_image {
	float: left;
	text-align: center;
	vertical-align: middle;
	/* Remove the width and height to change how tight the border is to the image */
		
		/* height: 273px; */
	/* Border for the big image */
		border: none;
}
.image_thumbnails {
	width: 276px;
	/* Change the clear to "left", float to "none" to put thumbnails on new line. "none/left" to have beside. */
	clear: left;
	float: none;
	/* Border around all the thumbnails */
	border: none; 
}
	.image_thumbnails .thumbnail {
		/* Change float->none clear-> left for 1 per line. float->left clear->none for side-by-side*/
		float: left;
		clear: none;
		/* Remove the width and height to change how tight the border is to the image */
			width: 90px;
			/* height: 90px; */
		text-align: center;
		/* Border around each image */
			border: none;
		/* Margin and padding */
			padding: 0px;
			margin: 0px;	
	}
	.image_thumbnails img {
			
	}

.product_name {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
}

.description {
	font-family: Arial, Helvetica, sans-serif;
}
	.description a {
		color: red;
		text-decoration: underline;
	}
	.description a:hover {
		color: blue;
		text-decoration: underline;
	}
	.description h3 {
	
	}
	
.buy_online_header {
	font-size: 18px;
	padding-top: 15px;
	clear: both;
}
.next_back {
	font-size: 12px;
}
.cart_form {
	/* This color should be set to accent the site */
	border-top: 2px solid #A0CFAB;	
	border-bottom: 2px solid #A0CFAB;
	float: left;
	width: 200px;
	background-color: #f5f5f5;
	padding: 10px;
}
.cart_form select {
	margin-bottom: 4px;
}
.cart_form input {
	margin-bottom: 4px;
}
.price {
	font-size: 14px;
}
.grid .price {
	width: 100%;
	text-align: right;
	font-size: 18px;
}
.grid .header {
	text-align: center;
	width: 100%;
}

.inventory_items .item {
	border: 1px solid black;
	margin-top: 5px;
	margin-bottom: 5px;
	float: left;
	clear: left;
	width: 100%;
	vertical-align: middle;
	height: 95px;
}
	.inventory_items .item:hover {
		border: 1px solid #CC0000;
	}
	
	.inventory_items .item input {
		float: left;
	}
	
	.inventory_items .item img {
		float: left;
	}
	.inventory_items .item .price {
		float: left;
		font-size: 18px;
		font-weight: bold;
		padding: 10px;
	}	
	.inventory_items .item .availability {
		padding: 10px;
	}
		.inventory_items .item .availability .instock {
			color: #009900;
		}
		.inventory_items .item .availability .notavailable {
			color: #CC0000;
		}
	.inventory_items .item .item_properties {
		float: left;
		padding: 10px;
	}

