/* product list CSS */

/* encloses all products on a single page */
.prodlist {
	height: 550px;
}

/* encloses a single product */
.productdiv {
	padding: 10px;
}

/* the basic info that makes up a product in the list */
.productimg {
	float: left;
	width: 150px;
}

.productinfo {
	margin-left: 10px;
}

.productprice {
	font-size: large;
	font-weight: bolder;
}

.productname {
	margin-top: 1em;
	overflow: auto;
	width: 750px;
	height: 74px;
	font-weight: bolder;
}

/* The pagination links at the bottom of the list */
.page-links {
	margin-left: 10px;
}


