/* 
-------------------------------------------------------------------------
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 {
}

/* List Price text styling */
.listprice {
	font-family: tahoma,verdana,arial;
	font-size: 10px;
	color: #F00;
	text-decoration: line-through;
}

/* Price text styling */
.price {
	font-family: tahoma,verdana,arial;
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
}

/* Border and background color around each product */
.outerborder {
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #555;
}
