/* shadow */
.ui-dialog,
.ui-datepicker {
	box-shadow: 0 0 15px #999;
}

/* dialog */
.ui-dialog .ui-widget-header {
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* buttons */
.ui-button {
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/* buttons */
.ui-state-default, 
.ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default {
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
	background: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* W3C */
}
.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active {
	text-shadow: none;
	background: #fff;
}
