
div.popupsearch
{
	position: absolute;
	width: 550px;
	text-align: center;
	padding: 5px;	
	border-style: solid;
	border-width: 2px;
	border-color: #454545;
	background: white;
	visibility: hidden;
	z-index:1002;
}

div.popupsearchmask
{
	position: absolute;
	background: #555555;
	filter: alpha(opacity=50);
	opacity: 0.50;
	visibility: hidden;
	z-index:1001;/* this should be high enough to overcome just about anything */
}

/**
 * this is a neat hack to get around the antique select combos in ie 6
 *
 * http://www.hedgerwow.com/360/bugs/css-select-free.html
 *
 */
iframe.popupsearchmask
{
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;/*must have*/
	top:0;/*must have*/
	left:0;/*must have*/
	z-index:-1;/*must have*/
	filter:mask();/*must have*/
	width:3000px;/*must have for any big value*/
	height:3000px/*must have for any big value*/;
}

div.popupsearchlabel {
	text-align: left;
	font-size: 8pt;
	font-family: verdana,arial,sans-serif;
}