.image_section {
	float: left;
	/* Set up the spacing between the images and the text. */
		padding-right: 15px;	
}
.big_image {
	float: left;
	text-align: left;
	vertical-align: middle;
	/* Remove the width and height to change how tight the border is to the image */
		width: 320px;
		/* height: 273px; */
	/* Border for the big image */
		border: none;
}
.image_thumbnails {
	width: 320px;
	/* 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; 
	text-align: left;
}
	.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: 100px;
			/* height: 90px; */
		text-align: center;
		/* Border around each image */
			border: none;
		/* Margin and padding */
			padding: 0px;
			margin: 5px 5px 0px 0px;	
	}
	.image_thumbnails img {
			
	}

.product_name {
	font-size: 18px;
}

.description {
	
}
	.description a {
		color: #685674;
		text-decoration: underline;
	}
	.description a:hover {
		color: #655654;
		text-decoration: underline;
	}
	.description h3 {
	
	}
	
.buy_online_header {
	font-size: 18px;
	color: #685674;
}
.cart_form {
	/* This color should be set to accent the site */
	border-top: 2px solid #685674;	
	border-bottom: 2px solid #685674;
	float: left;
	width: auto;
	background-color: #c1e2ea;
	padding: 10px;
}
.cart_form select {
	margin-bottom: 4px;
}
.cart_form input {
	margin-bottom: 4px;
}
.price {
	font-size: 14px;
	padding-bottom: 5px;
}
.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 #685674;
	}
	
	.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: #c1e2ea;
		}
		.inventory_items .item .availability .notavailable {
			color: #685674;
		}
	.inventory_items .item .item_properties {
		float: left;
		padding: 10px;
	}

