span.button, span.button input
, span.shortbutton, span.shortbutton input
, span.mediumbutton, span.mediumbutton input
, span.backbutton, span.backbutton input
, span.buttondisabled, span.buttondisabled input
, span.mediumbuttondisabled, span.mediumbuttondisabled input {
    background: transparent url(../images/btn_common.png) no-repeat;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    height: 20px;
    overflow: visible;
    margin: 0;
    padding: 0;
    text-decoration: none;
    background-position: right 0;
}

span.button input, span.shortbutton input, span.mediumbutton input, span.backbutton input, span.buttondisabled input, span.mediumbuttondisabled input {
	background-position: 0 0;
    padding-left: 20px;
    padding-right: 10px;
    padding-bottom: 3px;
    margin-right: 2px;
}

span.shortbutton {
    width: 72px;
}

span.shortbutton input{
    float: left;
}

span.backbutton {
    background-position: right -40px;
}

span.backbutton input {
    background-position: 0 -40px;
}

span.buttondisabled, span.mediumbuttondisabled {
    background-position:right -80px;
}

span.buttondisabled input, span.mediumbuttondisabled input {
    background-position: 0 -80px;
}

span.button:hover, span.button-behavior-hover, span.shortbutton:hover, span.shortbutton-behavior-hover, span.mediumbutton:hover, span.mediumbutton-behavior-hover {
	background-position: right -20px;
}

span.button:hover input, span.button-behavior-hover input, span.shortbutton:hover input, span.shortbutton-behavior-hover input, span.mediumbutton:hover input, span.mediumbutton-behavior-hover input {
	background-position: 0 -20px;
}

span.backbutton:hover, span.backbutton-behavior-hover {
	background-position: right -60px;
}

span.backbutton:hover input, span.backbutton-behavior-hover input {
	background-position: 0 -60px;
}

span.button input, span.shortbutton input, span.mediumbutton input {
	_behavior: expression(
		(function(el){
			if( typeof( behavior_onMouseEnter) == 'undefined'){
				behavior_onMouseEnter = function(el){
					var dEl = this.parentNode;
					var sClass = dEl.className;
					dEl.__defaultClassName = sClass;
					dEl.className = sClass + ' button-behavior-hover';
					this.setCapture();
				};

				behavior_onMouseLeave = function(el) {
					var dEl = this.parentNode;
					dEl.className = dEl.__defaultClassName;
					dEl.__defaultClassName = undefined;
					this.releaseCapture();
				};
			};

			el.runtimeStyle.behavior = 'none';
			el.onmouseenter = behavior_onMouseEnter;
			el.onmouseleave = behavior_onMouseLeave;
		})(this));
}

span.backbutton input {
	_behavior: expression(
		(function(el){
			if( typeof( behavior_onMouseEnterBack) == 'undefined'){
				behavior_onMouseEnterBack = function(el){
					var dEl = this.parentNode;
					var sClass = dEl.className;
					dEl.__defaultClassName = sClass;
					dEl.className = sClass + ' backbutton-behavior-hover';
					this.setCapture();
				};

				behavior_onMouseLeaveBack = function(el) {
					var dEl = this.parentNode;
					dEl.className = dEl.__defaultClassName;
					dEl.__defaultClassName = undefined;
					this.releaseCapture();
				};
			};

			el.runtimeStyle.behavior = 'none';
			el.onmouseenter = behavior_onMouseEnterBack;
			el.onmouseleave = behavior_onMouseLeaveBack;
		})(this));
}

@-moz-document url-prefix(http) {
    span.button input, span.shortbutton input, span.mediumbutton input, span.backbutton input, span.buttondisabled input {
 		padding-bottom: 5px;       
        text-indent: 0;
        padding-left: 18px;
        padding-right: 8px;
    }
}