button.simple {
    display:-moz-inline-box;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin: 0;
    padding: 0;
    background: none;
    width: auto;
    border: none;
    overflow: visible;
    height: 32px;
	text-decoration: none;
}
	button.simple span {
        white-space: nowrap;
        text-decoration: none;
	    margin-top: -2px;
	    margin-left: 0px;
	    margin-right: 0px;
	    margin-bottom: 0px;
	    display: block;
	    height: 26px;
	    padding: 3px 15px;

	    font-family: Helvetica, Arial, sans-serif;
/*	    font-weight: bold;*/
	    font-size: 20px;
	    line-height: 28px;

	    -webkit-border-radius: 3px;
	    -moz-border-radius: 3px;
	}
		* html button.simple span {
		    margin-top: 0;
		}
	
		/* Green */
		button.simple span.green {
	        background: #87C80A url(/img/buttons/green_large.png) repeat-x left top;
	        color: #fff;
	        text-shadow: 0px 1px 1px #78AD12;
	    }
	    button.simple:hover span.green {
	        background: #87C80A url(/img/buttons/green_large.png) repeat-x left -32px;
	    }
	
		/* Gray */
		button.simple span.gray {
	        background: #c3c3c3 url(/img/buttons/gray_large.png) repeat-x left top;
	        color: #fff;
	        text-shadow: 0px 1px 1px #646464;
	    }
	    button.simple:hover span.gray {
	        background: #c4c4c4 url(/img/buttons/gray_large.png) repeat-x left -32px;
	    }

/* Dirty IE-only hack */
button.simple {
/*    margin-top: expression(1 + "px");*/
}

/* FF specific line-height fix */
@-moz-document url-prefix() {
    button.simple {
		margin: 0;
	}
		button.simple span {
			margin-top: -2px;
			margin-left: -3px;
			margin-right: -3px;
		}
	}
}
