/**
 * 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: #ebc96d; /* Old browsers */
	background: -moz-linear-gradient(top, #ebc96d 0%, #d0a956 50%, #ae9541 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebc96d), color-stop(50%,#d0a956), color-stop(100%,#ae9541)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ebc96d 0%,#d0a956 50%,#ae9541 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ebc96d 0%,#d0a956 50%,#ae9541 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ebc96d 0%,#d0a956 50%,#ae9541 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebc96d', endColorstr='#ae9541',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #ebc96d 0%,#d0a956 50%,#ae9541 100%); /* W3C */
	color : #000000;
	border: 2px outset #d6ba68;
	font-size: 12px;
	text-align:center;
	white-space: nowrap;
	text-decoration: none;
	font-weight: bold;
	padding: 2px 5px;
	width: auto !important;
}

.cssButtonHover {
	color: #616161;
	border-style: inset;
	text-decoration: none;
}

