/* Border around each product box */
.outerborder {
	border: 1px solid #166535;
} 
/* Product Name fonts */
.s9name { font-weight: bold; 
	color: #166535;
}
/* Product Price fonts */
.s9price {
	font-size: 14px;
	font-weight: bold;
	color: #c60000;
	line-height: 200%; /* line height allows us to create spacing above and below the text to give extra spacing */
}
/* List Price */
.s9listprice {
	font-size: 12px;
	color: #999999;
	text-decoration: line-through;
}
/* savings fonts and decorration */
.savings {
	font-size: 20px;
	font-weight: bold;
	color: #80A6FE;
	background-color: #F6FEF9;
	line-height: 100%;
	border: 1px dashed #3c66c7;
	padding-right: 5px;
	padding-left: 5px;

}