/* 
-------------------------------------------------------------------------
All formatting is controlled using CSS (cascading style sheets)
most are straight forward but if you require additional assistance about
options available then please visit http://www.w3schools.com/css/
--------------------------------------------------------------------------
*/

/* border around product image */
.pictborder { 
	border: 1px solid #003366; 
}

/* List Price text styling */
.listprice { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
	text-decoration: line-through;
}

/* Price text styling */
.price {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
}

/* Border and background color around each product */
.outerborder {
	border: 2px outset #000099;
	background-color: #FFFFFF;
}
