.cssgradients .ui-button.ui-state-default{
		/*gradients*/
	background: -moz-linear-gradient(top,  #727272 0%, #111111 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#727272), color-stop(100%,#111111));
	background: -webkit-linear-gradient(top,  #727272 0%,#111111 100%);
	background: -o-linear-gradient(top,  #727272 0%,#111111 100%);
	background: -ms-linear-gradient(top,  #727272 0%,#111111 100%);
	background: linear-gradient(to bottom,  #727272 0%,#111111 100%);
}
.cssgradients .ui-button.ui-state-default.ui-state-active{
		/*gradients*/
	background: -moz-linear-gradient(top,  #111111 0%, #515151 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111111), color-stop(100%,#515151));
	background: -webkit-linear-gradient(top,  #111111 0%,#515151 100%);
	background: -o-linear-gradient(top,  #111111 0%,#515151 100%);
	background: -ms-linear-gradient(top,  #111111 0%,#515151 100%);
	background: linear-gradient(to bottom,  #111111 0%,#515151 100%);
}
.cssgradients .ui-button.ui-state-disabled{
		/*gradients*/
	background: -moz-linear-gradient(top,  #444444 0%, #666666 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#666666));
	background: -webkit-linear-gradient(top,  #444444 0%,#666666 100%);
	background: -o-linear-gradient(top,  #444444 0%,#666666 100%);
	background: -ms-linear-gradient(top,  #444444 0%,#666666 100%);
	background: linear-gradient(to bottom,  #444444 0%,#666666 100%);
}