/**
 * 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:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #02021c) );
	background:-moz-linear-gradient( center top, #000000 5%, #02021c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#02021c');
	background-color:#000000;
	-webkit-border-top-left-radius:5px;
	-moz-border-radius-topleft:5px;
	border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topright:5px;
	border-top-right-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-moz-border-radius-bottomright:5px;
	border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-moz-border-radius-bottomleft:5px;
	border-bottom-left-radius:5px;
	text-indent:0px;
	border:1px solid #ffffff;
	display:inline-block;
	color:#fafafa;
	font-family:Arial;
	font-size:12px;
	font-weight:bold;
	font-style:normal;
	height:34px;
	line-height:34px;
	width:103px;
	text-decoration:none;
	text-align:center;
}
.cssButtonHover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #02021c), color-stop(1, #000000) );
	background:-moz-linear-gradient( center top, #02021c 5%, #000000 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#02021c', endColorstr='#000000');
	background-color:#02021c;
}