/*購物三步驟*/
#cart_step{
	width:580px;
   height:70px;
   margin-left:auto;
   margin-right:auto;
}

/*購物步驟1-填寫訂購資料(灰色)*/
.cart_step1{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step1.png);
	text-indent:-99999px;
}

/*購物步驟1-填寫訂購資料(有顏色)*/
.cart_step1_on{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step1_2.png);
	text-indent:-99999px;
}

/*購物步驟2-確認資料(灰色)*/
.cart_step2{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step2.png);
	text-indent:-99999px;
}

/*購物步驟2-確認資料(有顏色)*/
.cart_step2_on{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step2_2.png);
	text-indent:-99999px;
}

/*購物步驟3-完成訂購(灰色)*/
.cart_step3{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step3.png);
	text-indent:-99999px;
}

/*購物步驟3-完成訂購(有顏色)*/
.cart_step3_on{
   float:left;
   width:165px;
   height:70px;
	background-image:url(../images/step3_2.png);
	text-indent:-99999px;
}

/*購物三步驟中間的箭頭*/
.step_arrow{
   float:left;
   width:29px;
   height:70px;
   margin-left:5px;
   margin-right:5px;
   background-image:url(../images/step_arrow.gif);
   background-repeat:no-repeat;
   background-position:center center;
}

/*購物車的產品列表 css*/

/*購物車列表的產品小圖*/
.cart_product_pic{
  width:65px;
  float:left;
  border:1px solid #CCC;
  margin-right:5px;
  margin-top:4px;
  margin-bottom:4px;
}

/*購物車列表中的產品名稱區塊*/
.cart_product_data{
   float:left;
   margin-top:4px;
   margin-bottom:4px;
   border:0px solid #333333;
   word-break: normal;
}
/*當購物車列表畫面是寬版時，產品名稱會加上這個class*/
.product_title_wide{
   width:560px;
   overflow-x:hidden;
}

/*沒有要調整小圖示的話，請把 background-image 那一行去掉*/
/*現貨商品*/
.cart_product{
   margin-top:2px;
   margin-bottom:5px;
   text-indent:38px;
   background-image:url(../images/cart_onsale.gif);
   background-repeat:no-repeat;
   background-position:left top;
}

/*活動商品*/
.cart_event{
   margin-top:2px;
   margin-bottom:5px;
   text-indent:38px;
   background-image:url(../images/cart_event.gif);
   background-repeat:no-repeat;
   background-position:left top;
}

/*加購商品*/
.cart_add_product{
   text-indent:38px;
   background-image:url(../images/cart_add_product.gif);
   background-repeat:no-repeat;
   background-position:left top;
   margin-left:70px;
}

/*贈品*/
.cart_gift{
  margin-top:2px;
  margin-bottom:5px;
  text-indent:38px;
  background-image:url(../images/cart_gift.gif);
  background-repeat:no-repeat;
  background-position:left top;
}


/*刪除鈕*/
.cart_del_btn{
display:block;
   height:10px;
   width:10px;
   text-indent:-9999px;
   background-image:url(../images/cart_del_btn.png);
   background-repeat:no-repeat;
   background-position:center center;
}

/*海外區域*/
#abroad_area span{
    float:left;
    display:block;
    height:30px;
    line-height:30px;
    margin:5px;
}
#abroad_area ul{
    float:left;
    list-style-type:none; 
    margin:0px;
    padding:0px;
}
#abroad_area li{
    float:left;
    width:100px;
    height:30px;
    line-height:30px;
    border:1px solid #ccc;
    margin:5px;
}

#abroad_area li.current{
    background-color:#CCC;
}
