/*
	css for the modal widget
*/

.ui-modal{
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	-webkit-border-radius:10px; /* Saf3+, Chrome */
	-moz-border-radius:10px; /* FF1+ */
	border-radius:10px; /* Opera 10.5, IE 9 */ 
	background: #fff;
	padding: 10px 20px;
}

.ui-modal .modal-close{
	width: 20px;
	height: 20px;
	background-image: url(/console/widgets/images/modal-close.png);
	background-repeat:no-repeat;
	margin-right:-10px;
	cursor: pointer;
	float: right;
}

.ui-modal-overlay{
	opacity: .75;
	-moz-opacity: .75;
	filter:alpha(opacity=75);
	background: #000;
	position: absolute;
	left:0;
	top:0;
	left:0;
	bottom:0;
	width:100%;
}