/*****************************************************************************************************
	DELETE Popup Boxes
*****************************************************************************************************/
.no-close .ui-dialog-titlebar-close {
  display: none;
}
.ui-dialog
{
	background: #eeeeee;
	background: -moz-linear-gradient(top,  #eeeeee 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #eeeeee 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
	z-index:9999999;
	padding: 5px;
	-webkit-box-shadow: 0 0 5px 0 #000000, inset 0 0 5px -2px #000000;
	box-shadow: 0 0 5px 0 #000000, inset 0 0 5px -2px #000000;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	outline: none;
}
.ui-dialog-titlebar
{
	background: #333333;
	background: -moz-linear-gradient(top,  #333333 0%, #666666 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#666666));
	background: -webkit-linear-gradient(top,  #333333 0%,#666666 100%);
	background: -o-linear-gradient(top,  #333333 0%,#666666 100%);
	background: -ms-linear-gradient(top,  #333333 0%,#666666 100%);
	background: linear-gradient(to bottom,  #333333 0%,#666666 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#666666',GradientType=0 );
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 5px;
	padding: 5px;
	color: #FFF;
	font-weight: bold;
	cursor: move;
}
.ui-widget-overlay{
	opacity: 0.7;
  background: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 102;
}
.ui-dialog-buttonpane{
	text-align:center;
}
.ui-dialog-buttonset{
	text-align:center;	
}
.ui-button{
	font-size:12px; 
	font-weight:bold; 
	padding:5px 15px; 
	margin-left:5px; 
	margin-right:5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f1f1f1), color-stop(51%,#e1e1e1), color-stop(100%,#f6f6f6));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
	outline: none;
}
.ui-button:hover{
	border: 2px inset buttonface;
}