/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color:transparent !important;
	background-color: #5a6672;
	/* 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 {
	position: absolute;
	/*z-index: 201;*/ /*COMMENTED BY KUNAL FOR MAKING WINDOW VISIBLE IN RELATED LINK ON 07-04-2018 */
	z-index: 1040;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}

#popupInner {
	/*border: 2px solid #5a6672;*//*commented by suresh on 02062016*/
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar 
{    
	background-color: #5a6672;
	color: #ffffff;
	font-weight: bold;	
	height:2.0em;/*changed by Nirav from 1.3 to 2.0*/
	/*padding: 5px;*//*commented by suresh on 02062016*/
	border-bottom: 2px solid #5a6672;
	border-top: 1px solid #5a6672;
	border-left: 1px solid #5a6672;
	border-right: 1px solid #5a6672;
	position: relative;
	z-index: 203;
}

#popupTitleBarHome {
	background-color: #5a6672;
	color: #ffffff;
	font-weight: bold;
	/*modified by suresh on 02062016*/
	/*height: 1.3em;
    padding: 5px;
width:305px;
    */
	height:25px;	
	width:100%;
	border-bottom: 2px solid #5a6672;
	border-top: 1px solid #5a6672;
	border-left: 1px solid #5a6672;
	border-right: 1px solid #5a6672;
	position: relative;
	z-index: 203;
	float:right;
}

#popupTitle {
	float:left;
	font-size: 16px;
	font-weight:bold;
	color:White;
	font-family:Arial;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
/*added by suresh on 02062016*/
.popCloseBox{color:#fff; width:50px; background-color:red; border:1px solid red;  text-shadow:0 1px 0 #fff; }    
.popCloseBox:hover{color:#fff; width:50px; background-color:#F9463B; border:1px solid #FC6C63; }