/*********************
styles used to control and searchtips pop up window
copy from  How to create a stunning and smooth popup using jquery 
http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/
access on 2/28/2009
***************/

#backgroundPopup{  
	display: none;    
	position: fixed;  
	_position: absolute; /* hack for internet explorer 6*/  
	height: 100%;
    width: 100%;  
	top: 0;
	left: 0;
	background: #000000;  
	border: 1px solid #cecece;  
	z-index: 100;  
}  

.popuptips{  
	display: none;  
	position: fixed;  
	_position: absolute; /* hack for internet explorer 6*/  
	width: 608px;  
	background: #FFFFFF;  
	border: 2px solid #cecece;  
	z-index: 102;  
	padding: 12px;  
	font-size: 13pt;  
}
  
.popuptips h1{  
	text-align: left;  
	color: #6FA5FD;  
	font-size: 22px;  
	font-weight: 700;  
	border-bottom: 1px dotted #D3D3D3;  
	padding-bottom: 2px;  
	margin-bottom: 20px;  
} 
 
.popuptipsClose{  
	border: 1px solid #cecece; 
	color: #6fa5fd;  
	cursor: pointer;
	display: block;
	font-size: 14px;  
	font-weight: 700;  
	line-height: 14px;  
	padding: 0 2px;
	position: absolute;  
	right: 6px;  
	top: 4px;  
}  


