/**
 * CSS Buttons Stylesheet
 *
 * Thanks to paulm for much of the content of the CSS buttons code
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: stylesheet_css_buttons.css 2765 2006-01-01 21:15:45Z birdbrain $
 */

/* css buttons */
.cssButton,
.cssButtonHover {
    background: #cfb59c url('../images/bg-nav.gif') repeat-x 0 0;
    border: 2px solid #f7f5f4;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    color: #483c3e;
    cursor: pointer;
    font: 14px/1.4 'Century Gothic', Futura, 'URW Gothic L', Verdana, sans-serif, cursive;
    padding: 10px 7px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    white-space: nowrap;
}

.cssButton:hover,
.cssButtonHover:hover {
    background-color: #e0cebc;
    border-color: #fff;
    text-decoration: none;
}

.button_update_cart {
    color: #f00;
}

.button_update_cartHover {
    color: #000;
}
