/* Drop related stuff */


#cart {
    height:410px;
    padding:40px 0 10px;
    overflow:hidden;
    position: fixed;
    top: 135px;
    width: 114px;
    background-color: #740000;
    border: 3px solid #B00000;
    border-radius: 5px 5px 5px 5px;
    display:none;
    left:10px;
}

#cart .prev {
    background:url(images/up_arrow.png) no-repeat scroll 0 0 transparent;   
    width:30px;
    height:22px;
    display:block;
    cursor:pointer;
    position:absolute;
    top:10px;
    left:42px;
}

#cart .prev:hover {
    background:url(images/up_arrow_hover.png) no-repeat scroll 0 0 transparent; 
    
    
}

#cart .next {
    background:url(images/down_arrow.png) no-repeat scroll 0 0 transparent; 
    width:30px;
    height:22px;
    display:block;
    cursor:pointer;
    position:absolute;
    top:361px;
    left:42px;
    
}

#cart .next:hover {
        background:url(images/down_arrow_hover.png) no-repeat scroll 0 0 transparent;   
    
    
}


p.cart_total {
    position:absolute;
    bottom:45px;
    font-size:12px;
    color:#FFFFFF;
    padding:0;
    margin:0;
    width:100%;
    text-align:center;
}

.btn_checkout {
    width:113px;
    height:35px;
    display:block;
    position:absolute;
    bottom:10px;
	font-size: 18px;
    color: #FFF!important;
    text-decoration: none!important;	
	font-weight: bold;
}

#cart .btn_checkout:hover {
        color: #F4F906!important;
    
}

#drop_empty{
  text-align:center;
  width:102px;
  font-size: 14px;
  color: #ffffff;
  position:absolute;
  top:150px;
  left:9px;
  z-index:25;
  text-shadow:1px 1px 0px rgba(0,0,0,.9); 
  line-height:1.2em;
  }
  
#drop_empty img {
    margin-top:5px; 
}

#dragdrop_spinner {
 background:url(images/spinner_bg.png) no-repeat scroll 0 0 transparent;
 position: absolute;
 left: 35px;
 top: 170px;
 display: none;
 z-index: 300;
 width: 32px;
 height: 32px;
 padding:10px;
}

#cart_list {
     overflow:hidden !important;
}

#cart_list ul {
     margin:0;
     padding:0
     overflow:hidden;
     position:relative;
     z-index:1;
     height:308px;
     list-style:none;
}

#cart_list li {
    background-image:none;
    margin:0 0 0;
    padding:3px 0;
    position:relative;   
    width:100% !important;
    float:left !important;
    height:72px;
    list-style:none;
}

span.item_count {
    color:#000000;
    font-size:9px;
    position:absolute;
    bottom:5px;
    left:20px;
    min-width:6px;
    min-height:6px;
    background-color:#FFF;
    border-radius:2em;
    -moz-border-radius:2em;
    -webkit-border-radius:2em;
    border:1px solid #ccc;
    padding:2px;
    text-align:center;
    line-height:10px;
}

.item_remover {
    background:url(images/delete.png) no-repeat scroll 0 0 transparent;
    width:19px;
    height:19px;
    position:absolute;
    top:0;
    right: 8px;
    text-indent:-9999px;
    border:none;
    padding:0;
}

.item_remover:hover {
    background:url(images/delete_hover.png) no-repeat scroll 0 0 transparent;
}

#cart_list li a {
    text-indent:-9999px;    
}