
/* defines the whole area in which the ebay auctions are displayed */
.ebay {
}

/* the title above all ebay sales */
.ebay_title {
}

/* list element representing one ebay sale */
.ebay_sale{
	height:			92px;
	padding-top:	8px;
}

/* the area that contains info about end time and price of the auction */
.ebay_sale_info{
	position: relative;
	top: 8px;
	left: 8px;
	
}

/* the link of the ebay sale */
.ebay_sale_info a{
}

/* the class around the ebay sale image */
.ebay_sale_image{
	height:		84px; 
	width:		80px; 
	padding: 	4px; 
	float:		left;
}

/* style information for the thumbnail of the auction itself */
.ebay_sale_image img{
	border:		none;
}

/* list element that is displayed when there are no sales */
.ebay_no_sales{
	font-size: 1.3em;
}