.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
	background: #111111;
	/*box-shadow: inset 0 0 500px 400px #111111;*/
}
.dialog {
	position: fixed;
	top: 50px; /* js will position the dialog this far down in the current scrolled area */
	left: 100px; /* js will auto-center, here for fallback */
	width: 600px;
	border-radius: 10px;
	border: 1px solid #FFFFFF;
	background: #FFFFFF;
	padding: 20px;
	/*-moz-box-shadow:#111111 2px 2px 4px;
	-webkit-box-shadow:#111111 2px 2px 4px;
	box-shadow:#111111 2px 2px 4px;*/
	-moz-box-shadow:0 0 20px #333333;
	-webkit-box-shadow:0 0 20px #333333;
	box-shadow:0 0 40px #111111;
}
.dialog-message, .dialog-widemessage {
	top: 200px;
	left: 300px; /* js will auto-center, here for fallback */
	width: 300px;
}
.dialog-widemessage {
	width: 450px;
}
.dialog-emailrequest {
	width: 400px;	
}
.dialog_close {
	content: "";
	background: url('/images/close_button.png') no-repeat top left transparent;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -20px;
	margin-right: -20px;
	border-radius: 20px;
	width: 38px;
	height: 38px;
	text-align: center;
	font-size: 20px;
	line-height: 30px;
	text-decoration: none;
}
.dialog_title {
	height: 30px;
	line-height: 1.3em;
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 10px;
	color: #333333;
}
.dialog_content {
	overflow: auto;
	text-align: left;
}
.dialog_content td {
	padding: 6px 2px;	
}
.dialog_content .label { text-align: right; padding-right: 6px; }
.dialog_buttons {
	height: 30px;
	text-align: right;
	padding-top: 25px;
}
.dialog_buttons .small_button {
	margin-left: 10px;
	font-size: 14px;
	color: #333333;
	text-decoration: none;	
	display: inline-block;
	height: 30px;
	line-height: 30px;
	background: #abd61e;
	background: rgb(161,196,45); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(161,196,45,1) 0%, rgba(171,214,30,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(161,196,45,1)), color-stop(100%,rgba(171,214,30,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(161,196,45,1) 0%,rgba(171,214,30,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(161,196,45,1) 0%,rgba(171,214,30,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(161,196,45,1) 0%,rgba(171,214,30,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(161,196,45,1) 0%,rgba(171,214,30,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1c42d', endColorstr='#abd61e',GradientType=0 ); /* IE6-9 */
	padding: 0 30px;
	border: 1px solid #666;
	text-align: center;
	text-shadow: #ecf5cf 0 1px 1px;
	border-radius: 2px;
}
.dialog_buttons .small_button:hover {
	color: #111111;	
	background: #B5EC00;
	text-shadow: #ecf5cf 0 1px 1px;
	box-shadow: inset #FFFFFF 0 0 2px;
}
.dialog_content #content {
	padding: 0;	
}
