/* Border around items - note that you can also set the width with this */
.outerborder {
	/*border: 0px solid #6699FF;*/
	width: 100%; /* valid values are things like 300px, 100% */
	height: 120px;  /* valid values are things like 300px, 100% */
        margin: 5px;
}
/* Border around Picture - note you should set the width to slightly larger than the $maxImageSize= in the mod */
.PictureBox {
	width: 85px;
	margin: 5px;
	border: 0px solid #666666;
}
/* Format the date added text */
.date {
	font-size: 10px;
	font-style: italic;
}
/* Format the details text */
.details {
	font-size: 10px;
	color: #666666;
}
/* Format the price */
.price {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
}
.purchaseBox {
	
}
/* Product name link fonts */
/*----------------------------- */
/* unvisited link */
a.name:link { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #784318;
	font-weight: bold;
	text-decoration: none;
	
}
/* visited link */
a.name:visited { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #784318;
	font-weight: bold;
	text-decoration: none;
	
}
/* mouse over link */
a.name:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #006699;
	font-weight: bold;
	text-decoration: underline;
	
}
/* selected link */
a.name:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #784318;
	font-weight: bold;
	text-decoration: none;
	
}