/* Dialog
----------------------------------*/
.ui-dialog { position: relative; padding: .2em; width: 300px; }
.ui-dialog .ui-dialog-titlebar {padding:0; height:0; background:#000; position: relative;}
.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; display:none; }
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: 7px; top:17px; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { border: 0; xpadding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { margin:-3px 0 0 0; padding:10px 0 10px 0; width:auto; background:#c6c6c6; border:3px solid #1d1d1c; border-top:none; }

.ui-dialog .ui-dialog-buttonpane button {
	margin-left:112px;
	padding:4px 8px;
	width:auto;
	overflow:visible;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.154em;
	font-weight:bold;
	color:#fff;
	background: #172e59;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #5970A3),
		color-stop(0.68, #172E59)
	);
	background-image: -o-linear-gradient(bottom, #5970A3 0%, #172E59 68%);
	background-image: -moz-linear-gradient(bottom, #5970A3 0%, #172E59 68%);
	background-image: -webkit-linear-gradient(bottom, #5970A3 0%, #172E59 68%);
	background-image: -ms-linear-gradient(bottom, #5970A3 0%, #172E59 68%);
	background-image: linear-gradient(to bottom, #5970A3 0%, #172E59 68%);
	border:none;
	cursor:pointer;
	border-radius:4px;
	cursor: pointer;
}

.ui-dialog .ui-dialog-buttonpane button:hover {
	color:#fff;
	cursor:pointer;
	background: #184798;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #698ED9),
		color-stop(0.68, #184798)
	);
	background-image: -o-linear-gradient(bottom, #698ED9 0%, #184798 68%);
	background-image: -moz-linear-gradient(bottom, #698ED9 0%, #184798 68%);
	background-image: -webkit-linear-gradient(bottom, #698ED9 0%, #184798 68%);
	background-image: -ms-linear-gradient(bottom, #698ED9 0%, #184798 68%);
	background-image: linear-gradient(to bottom, #698ED9 0%, #184798 68%);
}

.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
