
/*STYLES FOR POPUP*/
.popwin{
    position		: absolute;			
    text-align		: left;			
    padding			: 10px;		
	box-shadow		: 3px 3px 3px grey;	
    /*border-style 	: groove; ridge*/
    border		 	: ridge 2px;
	background-color : white;	
}


.popup {	
    position		: absolute;			
    text-align		: left;		
/*	
    width			: 300px		;					
    height			: 150px		;					
*/
	max-height 		: 800px;
    padding			: 0px;		
	margin			: 0px;
	font-weight		: normal;
	font-family		: Arial, verdana, Arial;
	font-size		: 1.0em;	
    pointer-events	: all;
	line-height		: 1.5em;	
	
	/*background	: rgba(0, 150, 255, 1.0) ;  /* rgb(200,160,255); rgb(46, 154, 244); /*, lightsteelblue;	*/
	/*background	: white;  /* rgb(200,160,255); rgb(46, 154, 244); /*, lightsteelblue;	*/
	background-color : rgb(240,240,240);
	
	box-shadow		: 3px 3px 3px grey;	
    border-width	: 1px;  
    border-style 	: groove;

}

.popup a { 
	/*color : white;/*rgb(120,  0,255); 
	color: #009FBC;*/
	color: black;
}

.popup_body, .popup_outer{
      width: 95%;
      height: 100%;
	  }

.popup_body{
	padding: 0em;
	padding-right: 1.5em;

	overflow-x: hidden;
	overflow-y: scroll;
	
}
	
.popup_outer {
/*
      border: 2px solid #666666; 
*/
	position: relative;
	overflow: hidden;
}
      
.popup_inner {
	position: absolute;
	left: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-bottom : 1em;
	
} 
.popup_inner::-webkit-scrollbar {
	display: none;
}
      
.popup_inner {
	-ms-overflow-style: none;  
	overflow: -moz-scrollbars-none; 
}

