INPUT.selExpand
{
	background:white url(/img/expand.png) no-repeat center right;
	width:180px;
	padding-right:20px;
	cursor:default;
	color:red;
	font-weight:bold;
}
DIV.selExpand
{
	position:absolute;
	display:none;
	width:0%;
	overflow-y:auto;
}
DIV.selExpand TABLE
{	background:#ffffff;
	border:#666666 solid 1px;
}
DIV.selExpand INPUT
{
	border:none;
	cursor:default;
	width:100%;
}
DIV.selExpand IFRAME
{
  display:block;
  position:absolute;
  top:0px;
  left:0px;
  z-index:-1;
  filter:mask();
  width:200px;
  height:expression(screen.height+'px');
}
INPUT.selHover
{
	background-color:highlight;
	color:highlighttext;
}
INPUT.selOut
{
	background-color:white;
	color:black;
}

window.onclick=new function()
{	var Elems=document.getElementsByTagName('div');
	for(var i=0;i<Elems.length;i++)
	{		if(Elems[i].className=='selExpand')
		{			Elems[i].style.display='none';
		}
	}
}