/* popwin.cs - Copyright Doug Ashbaugh 2005 */
/* creates opacity background to cover entire page */

/* Use this for debugging only 
#popwinStorage {
	display:block !important;	
	height:0px;
}
*/

#popwinOverlay{
	text-align:center;
	z-index:500;
	background-color:#999999;
	filter:alpha(opacity=50);
	-moz-opacity:.50; /* for gecko browser */
	opacity:.50;
	width:100%;
	padding:0px !important;
	margin:0px !important;
}

/* This div is set to same size as application */
#popwin{
	z-index:550;
	background-color:transparent; /* */
	/* background-color:#663399; /* */
	position: absolute;
	margin:auto;
	left:0px;
	top:0px;
	height:100%;
	width:100%;
	overflow:hidden;
	display:block;
	/* border: 3px solid #FF0000; /**/
	padding:0px !important;
}

/* popwin container 1 drops 50% from top */
#popwinContainer1 {
    z-index:551;
	position:relative;
	display:block;
	height:90%;
	width:90%;
	padding:0px !important;
	/* background-color:#FCC000; /* */
	background-color:transparent; /* */
	vertical-align:middle;
	left:5%; /* */
	top:5%;
}

/* popwin container 2 brings window back up to center */
#popwinContainer2 {
	z-index:552;
	position:relative;
	height:90%;
	overflow:auto;
	width:90%;
	display:block;
	/* background-color:#FF0000; /* */
	background-color:transparent; /* */
	border:0px;
	border-style:none;
	vertical-align:middle;
	left:5%; /* */
	top:5%;
	padding:0px !important;
}

#popwinContainer3 {
	z-index:553;
	height:98%;
	width:98%;
	border:3px;
	border-style:solid; /* */
	border-color:#000066;
	border: 3px solid #000066; /* */
	background-color:#FFFFFF; /* */
	padding:0px;
	vertical-align:middle;
	/* margin:auto; /* */
	left:5%;
	top:5%;
}

.popwinTestText {
	font-weight:bold;
	font-size: 15px;
}

/* makes all selects inside popwin window visible */
#popwin  div select {
 	visibility:visible !important;
}

/* EOF */
