/* the overlay that obscures the background whenever a window is being displayed */
#chromeFadeOverlay
{
	z-index: 3;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-image:url('/images/fade_overlay.png');
	background-repeat: repeat;
}

/* this section contains styles for the incompatible browser warning popup */
div#browserWarningPopup
{
	z-index: 4;
	display: none;
	position: absolute;
	width: 600px;
	border: 2px solid black;
	background-color: white;
	text-align: left;
}

div#browserWarningPopup > p
{
	font-size: 17px;
	margin: 15px;
}

div#browserWarningPopup > div.heading
{
	background-color: #aed6db;
	margin: 3px;
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 12px;
	padding-left: 3px;
	padding-top: 1px;
	padding-bottom: 1px;
}

div#browserWarningPopup > div.windowControls
{
	margin-top: 25px;
	margin-bottom: 15px;
	text-align: center;
}

div#browserWarningPopup div.windowControls input
{
	display: block;
	width: 350px;
	margin: 5px;
}
