/* Dynamic Display Styling */

/* Border around each product box */
.productbox {
	height: 190px;
	width: 100px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #FFCC66;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-left: 4px;
	background-color: #FFFCE;
} 

/* Product Name fonts */
.s9name {
	font-size: 10px;
	font-family: Tahoma,Geneva,sans-serif;
	text-align: center;
	color: #266cab;
	font-weight: bold;
	height: 45px;
	}

/* Product desciption */
.s9desc {
	color: #11539D;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	display: none;
}

/* Product Price fonts */
.s9price {
	font-weight: bold;
	color: #C33;
	line-height: normal; /* line height allows us to create spacing above and below the text to give extra spacing */
	font-size: 12px;
	background-color: #FFFF00;
	text-align: center;
	height: 20px;
	width: 115px;
	background-image: url(images/bkg-price-small.gif);
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-repeat: no-repeat;
	left: 15px;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
}

/* List Price */
.s9listprice {
	font-size: 12px;
	color: #999999;
	text-decoration: line-through;
}

/* savings fonts and decorration */
.savings {
	color: #990000;
	line-height: 200%;
	border: 1px solid #FF9900;
	background-color: #FFFFCC;
	padding-right: 4px;
	padding-left: 4px;
}

/* // end Dynamic Display */
