/*
 * jQuery UI Dialog 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable.ui-resizable {
	padding: 0;
}
.ui-widget-overlay { 
	background-color: #000;
	background-image: none;
	opacity: .7;
	filter: Alpha(Opacity=70);
}
.ui-dialog {
	position: absolute;
	margin: 0 auto;
	/*
	left: 0;
	right: 0;
	*/
	/*width: 300px;*/
	font-size: 11px;
	overflow: hidden;
	border-radius: 0;
	border: none;
	background-color: #FFF;
	/*
	opacity: .6;
	filter: Alpha(Opacity=60);
	*/
	/*border: 1px solid red;*/
	/*top: 200px;*/
	z-index: 10000;
}
.ui-dialog .ui-dialog-titlebar {
	position: relative;
	top: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	height: 20px;
	background-color: #FFF;
	font-size: 13px;
	font-weight: normal;
	border: none;
	z-index: 9;
	display: block;
}
.ui-dialog .ui-dialog-title {
	position: relative;
	width: 100%;
	float: left;
	text-align: center;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	left: 20px;
	top: 10px;
	width: 19px;
	height: 19px;
	margin: 0;
	padding: 0;
	background-image: url(http://standupforfreshcontent.com/img/btn-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	outline: none;
	border-radius: 0;
	display: block;
	z-index: 11;
}
.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 0 0 0;
	margin: 0 0 0 0;
	background-color: transparent;
	border: none;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: 15px;
	background: none;
	overflow: hidden;
	zoom: 1;
	z-index: 8;
}
.ui-dialog .ui-dialog-buttonpane {
	width: 100%;
	text-align: center;
	border: 0;
	background-image: none;
	margin: 5px 0 5px 0;
	padding: 0 0 0 2px;
	background-color: #E9E9E4;
	display: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
	/*float: right;*/
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
	color: #000;
	background-color: #FFF;
	border-color: #CCC;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
	color: #003466;
	background-color: #FA8389;
	border-color: #003466;
}
.ui-dialog .ui-resizable-se {
	width: 14px;
	height: 14px;
	right: 3px;
	bottom: 3px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

/* MOBILE ONLY */
@media only screen and (max-device-width: 480px) {
.ui-dialog .ui-dialog-titlebar-close {
	width: 20px;
	height: 20px;
	right: 40px;
}
}