@CHARSET "UTF-8";
/*
 * button implementation
 */
/* setup right part of button image */
a.button {
background: transparent url('../resimages/shop_cbs_button.png') no-repeat top right;
border:0;
cursor:pointer;
display: block;
height: 44px;
padding:0;
width: 134px;
}
a.button:hover {
background: transparent url('../resimages/shop_cbs_button_hi.png') no-repeat top right;
}
a.button:active {
background: transparent url('../resimages/shop_cbs_button_dn.png') no-repeat top right;
}

/* get rid of dotted outline when pressing button in firefox */
a.button:focus { -moz-outline: 0px ! important ; }


/*
 * arrow button
 */
 
/* setup right part of button image */
a.button_arrow {
background: transparent url('../resimages/arrow_button.png') no-repeat top right;
border:0;
cursor:pointer;
display: block;
height: 27px;
padding:0;
width: 27px;
}
a.button_arrow:hover {
background: transparent url('../resimages/arrow_button_hi.png') no-repeat top right;
}
a.button_arrow:active {
background: transparent url('../resimages/arrow_button_dn.png') no-repeat top right;
}

/* get rid of dotted outline when pressing button in firefox */
a.button_arrow:focus { -moz-outline: 0px ! important ; }

