/* Generic class for all drop areas */
.dropArea {
	border-top: 1px solid  #7e7b76;
	border-left: 1px solid  #7e7b76;
	border-right: 1px solid  #efeeeb;
	border-bottom: 1px solid  #efeeeb;
}

/* Class for a static drop area, so the sizes are set here */
.staticDropArea {
	width:580px;
	height:250px;
	overflow-x:hidden;
	overflow-y:auto;
}

/* Container of all drop areas */
.dropAreasContainer {
	/*height: 160px;*/
}

/* General classes */

/* General item class */
.item {
	border-top: 1px solid  black;
	border-left: 0px solid  black;
	border-right: 0px solid  black;
	padding-left: 5px;
	-moz-user-select: none;
}

/* General class for last item */
.lastItem {
	border-bottom: 1px solid  black;
}


/* Silver drop area classes */
.silverDropArea, .silverItem, .silverButton {
	background-color: #FEA928;
	background-image:url(website/images/jerky_basket.jpg);
	background-position:center;
	background-repeat:no-repeat;
	
}



.silverHighlight {
	background-color: #FEA928;
}

/* Gold drop area classes */
.goldDropArea, .goldItem, .goldButton {
	background-color:#FFCE9D;
	background-image:url(website/images/my_basket.jpg);
	background-position:center;
	background-repeat:no-repeat;
}

.goldHighlight {
	background-color: #FFCE9D;
}

.product-name {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#000000;
}
.product-description {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	color:#333333;
}