/*
  For this Shopping Basket module, all id and class names will be prefixed
  with 'basket_', to prevent clashes with any other elements on the page.
*/

#basket_ {
	width:260px;
  background:url(/static/images/shoppingbasket.png) left bottom no-repeat;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
	z-index:50000;
}


#basket_ a, 
#basket_ a:hover {
  position:relative;
	color:#FCD95E;
}

#basket_ a:focus, 
#basket_ a:active {
  outline: none !important;
}


/* the top-of-screen tab */
a.basket_summary {
  text-align: right;
	padding:7px 12px 16px 6px;
  display: block;
	line-height:1;
  cursor: pointer;
	color:#FCD95E;
	text-transform:uppercase;
	font-size:12px;
}
a.basket_summary:hover {

}
 

/* The open basket */

.basket_details, 
.basket_notice {
  overflow: hidden;
  width: 100%;
}

.basket_details table {
  border-collapse: collapse;
	width:94%;
	margin-left:3%;
}

.basket_details td {
  vertical-align: top;
  line-height: 1.2em;
  border: 0px;
  padding: 6px 2px 3px 0;
}

.basket_details td.basket_itemControls {
  width: 38px;
}

.basket_details .basket_alt {

}

td.basket_itemDetails a {
  position: relative;  
}

.basket_details td.basket_itemImage img {
  height: 32px;
  margin-left: 0px;
  border: 1px solid #fff;
  margin-bottom: 2px;
	float:left;
}

div.basket_itemImage {
	margin-bottom:5px;
	overflow:auto;
	float:left;
	display:inline;
}

.basket_details td.basket_itemDetails strong {
  display: block;
  white-space: nowrap;
}
td.basket_itemDetails, 
td.basket_itemControls, 
.basket_details td.basket_itemImage {
	border-bottom:1px dashed #ffffff;
}

#basket_ .basket_details a.basket_itemRemoveLink {
  font-size: 10px;
  color: #ffffff;
  font-family: "Arial Narrow", sans-serif;
  text-transform: uppercase;
  position: relative;  
}
tr.basket_total {
  font-size: 1.2em;
}
tr.basket_total td {
	border-bottom:none;
}
p.basket_stats {
	text-align:right;
}
.basket_checkoutLink {
  text-align: right;
  font-weight:bold;
  display:block;
  font-size: 1.5em;
  padding-right:4px;
	color:#ffffff;
}

#basket_ a.basket_checkoutLink {
	color:#ffffff;
}


/* Quantity widget */

.basket_quantifier {
  width: 32px;
  height: 16px;
  background: #E9E9E9;
  border: 1px solid #999;
}
.basket_quantifier .basket_quantity {
  text-align: right;
  padding-top: 2px;
  color: #777;
  cursor: default;
}
.basket_quantifier .basket_quantityControls {
  width: 12px;
  float: right;
  margin-left: 3px;
}
.basket_quantifier .basket_quantityUp {
  background: url(/images/shp/quantity_up.gif) #CCC no-repeat;
  width: 12px;
  height: 8px;
  float: left;
  position: relative;  
}
.basket_quantifier .basket_quantityDown {
  background: url(/images/shp/quantity_down.gif) #BBB no-repeat;
  width: 12px;
  height: 8px;
  float: left;
  position: relative;  
}

/* Notification in basket dropdown */
.basket_notice div {
  position: relative;
  padding: 2px 5px;
	overflow:auto;
}
.basket_notice img { /* This is the spinner */
  float: left;
  position: relative;
  margin-top: -5px;
  height: 16px;
  margin-right: 3px;
}
.basket_notice strong {
  display: inline;
	float:left;
  white-space: nowrap;
}
.basket_notice span.basket_price {
	color:#ffffff;
	float:left;
	padding-left:10px;
}
.basket_empty {
  text-align:center;
  padding-top:2px;
  font-size:11px;
  margin-bottom:3px;
	padding-bottom:5px;
}
.basket_notice span.basket_addMessage {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-size: 11px;
  margin: 4px 0;
	color:#ffffff;
}

.basket_notice span.basket_errorMessage {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 10px;
  font-family: "Arial Narrow", sans-serif;
  display: block;
  height: 22px;
}

.notForSale { 
/* this needs to be name-spaced to fall in line with 
the rest - maybe basket_fillerNotForSale ? */  
}
