/*
 * POPUP CONTAINER STYLES
 */
#popupMask
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1px;
	height: 1px;
	filter: Alpha(opacity=30);
	opacity: 0.4;
	background-color: #808080; 
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */ 
	 /* For browsers Moz, Opera, etc.*/
	 
	/*background-image: /**/ /*url("images/subModalBG.png") !important;*/
	/*background-image: none;
	background-repeat: repeat;*/
	display: none;
	z-index: 20000;
}

#popupContainer 
{
	position: absolute;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	z-index: 20001;
}

#popupInner 
{
	border: 2px solid #000000;
	background-color: #ffffff;
	width:300px;
}

#popupTitleBar 
{
	background-color: #486CAE;
	color: #ffffff;
	font-size: 1.1em;
	font-weight: bold;
	font-family:Trebuchet MS;
	height: 1.0em;
	padding: 5px;
	border-top: 1px solid #78A3F2;
	border-left: 1px solid #78A3F2;
	border-right: 1px solid #78A3F2;
	border-bottom: 1px solid #000000;
	position: relative;
	text-align:center;
}

#popupMessage 
{
	margin: 0px;
	font-size: 1.1em;
	font-weight: bold;
	font-family:Trebuchet MS;
	padding: 10px;
	text-align:center;
	position: relative;
}

#popupBody 
{
	margin: 0px;
	padding: 10px;
	text-align:center;
	position: relative;
}


