/* - - - - - - - - - - - - - - - - - - - - -

Title : ModalBox CSS
Author : Stephen Myers
URL : -

Created : October 18, 2006
Modified : -

- - - - - - - - - - - - - - - - - - - - - */
html, body, form
{
	height: 100%;
	width:100%;
}

.ModalBox
{
	display:none;
	top: 50px;
	left: 0px;
	position: absolute;
	z-index:9999;
	text-align:center;
}

.ModalBox[id]
{
	position:fixed;
}

#screenMask
{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.6;
	opacity:.60;
	filter: alpha(opacity=60);
}

#screenMask[id]{
	position:fixed;
}

.ModalBox .actionButtons
{
	text-align: center;
}
