﻿#dialog-overlay
{
	/* set it to fill the whil screen */
	width: 100%;
	height: 100%; /* transparency for different browsers */
	filter: alpha(opacity=40);
	-moz-opacity: 0.4;
	-khtml-opacity: 0.4;
	opacity: 0.4;
	background: #dcdcdc; /* make sure it appear behind the dialog box but above everything else */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3000; /* hide it by default */
	display: none;
}
#dialog-box
{
	/* css3 drop shadow */
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* css3 border radius */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #eee; /* styling of the dialog box, i have a fixed dimension for this demo */
	width: 328px; /* make sure it has the highest z-index */
	position: absolute;
	z-index: 5000; /* hide it by default */
	display: none;
}
#dialog-box .dialog-content
{
	/* style the content */
	text-align: center;
	margin: 2px 2px;
	color: #ffffff;
	font-family: arial;
	font-size: 12px;
	background-color: #dcdcdc;
	height: 25px;
}
#dialog-box a
{
	text-align: right;
	margin: 2px 2px;
	font-family: arial;
	font-size: 11px;
	right: 2px;
	position: absolute;
	/*background-color:#dcdcdc;*/
}
#dialog-box .dialog-content ul
{
	margin: 10px 0 10px 20px;
	padding: 0;
	height: 50px;
}


