/*
	These styles override the jquery-ui css (v1.10.2) for the dialog box
*/
	.ui-dialog {
		border: solid 5px;
		border-color:dodgerblue;
		box-shadow: rgba(0,0,0,0.35) 0 1px 3px; 
		-webkit-box-shadow: rgba(0,0,0,0.35) 0 1px 3px; 
		-moz-box-shadow: rgba(0,0,0,0.35) 0 1px 3px;		
		background-color: white !important;
	}
	
	
	.ui-dialog-titlebar {
		background-image: url(/help/html/js/images/alert.png); 
		background-repeat:no-repeat; 
		background-position: 1% 47%; 
		padding: 2px 8px 3px 25px !important;
		background-color:dodgerblue;
		color:white;
		border:dodgerblue solid 1px;
	}
	
	
	/* display 'x' on close button */
	.ui-dialog-titlebar-close:before {
		content:"x";
		color:white;
	}
	
	
	.ui-dialog-titlebar-close {
		position: relative;
		left: 125px;
		background:dodgerblue !important;
		border:dodgerblue solid 1px !important;
		color:white;
		text-decoration:none;/* remove underline from 'x' */
	}
	
	.ui-dialog .ui-dialog-titlebar-close span { display: none; margin: 1px; }
	
	
	.ui-dialog-titlebar-close:hover {
		background:dodgerblue;
		border:dodgerblue solid 1px;
	}
	
	
	/* remove default close button icon */
	.ui-widget-header .ui-icon {
		background-image: none;
	}
	
	.ui-dialog-content {
		padding: 5px 3px 5px 7px;
	}
	
	.ui-dialog-contain {
		background-color:white;
	}