﻿/**
 * POPUP CONTAINER STYLES
 */

#popupMask 
{
    
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	opacity: .4;
	filter: alpha(opacity=70);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */

	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image/**/: url("maskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {,
      border-left: solid 1px #959595;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #cccccc;
    border-right: solid 1px #cccccc;
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner 
{
    
     border-left: solid 1px #000000;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #cccccc;
    border-right: solid 1px #cccccc;

	filter: alpha(opacity=70);
	background-color: #ffffff;
}
#popupInner2
{
  border-left: solid 1px #000000;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #cccccc;
    border-right: solid 1px #cccccc;  

position:absolute;    
background-color: #ffffff;
filter: alpha(opacity=89); 
opacity: .4;   
}
#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	background-color: #ffffff;
	font-weight: bold;
	height: 18px;
	border-bottom: 2px solid #CECECE;
	border-top: 1px solid #CECECE;
	border-left: 1px solid #CECECE;
	border-right: 1px solid #CECECE;
	position: relative;
	z-index: 203;
	color:Black;
	font-size:10px;
	font-family:Verdana;
	}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls 
{
    border-left: solid 2px #959595;
	float: right;
	cursor: pointer;
	cursor: hand;
	
}
.txtpop
{
font-size:9px;
font-family:Verdana;
color:Black  ;
text-align:justify  
}
