/*CSS for PopUp Box */
#backgroundPopup{
	display:none;
	position:fixed;
	height:100%;
	width:100%;
	opacity: 0.4;
	top:0;
	left:0;
	background:#000000;
	z-index:199;
}
.background40 {
	display:none;
	position:fixed;
	height:100%;
	width:100%;
	opacity: 0.4;
	top:0;
	left:0;
	background:#000000;
	z-index:199;
}
.popupBox {		/*	Common for all Popup Boxes	*/
	position: fixed;
	background: #FFFFFF;
	border: 2px solid #cecece;
	z-index: 201;
	font-size: 12px;
	box-shadow: 5px 5px 5px #000000;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	display: none;
}
#loginBox {
	border-radius: 15px;
}
.popupBox h2{
	text-align:left;
	color:#7b3d95;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	font-size: 14px;
	font-weight: bold;
	padding: 4px;
	margin: 5px;
}
.closeButton {
	right: 10px;
	top: 5px;
	position:absolute;
	color:#6fa5fd;
	cursor:pointer;
} 
.closeButton2 {	/* By default, does not close popup. Must be done in source of page */
	right: 10px;
	top: 5px;
	position:absolute;
	color:#6fa5fd;
	cursor:pointer;
}
.popupForm {
	font-size: 12px;
}
.popupForm p {
	margin-top: 4px;
	margin-right: 15px;
	margin-bottom: 7px;
}
.popupForm .label {
	display: inline-block;
	width: 75px;
	vertical-align: top;
	text-align: right;
	margin-right: 5px;
}
.popupForm input[type="submit"] {
	margin-left: 82px;
	font-size: 12px;
}
.popupForm input[type="checkbox"] {
	margin: 0 3px 0 0;
}
.popupMsg, #confirmPopup, #alertPopup {
	text-align: center;
}
#confirmPopup, #alertPopup {
	color: #000;
	padding: 5px;
	max-width: 500px;
}
#confirmPopup span, #alertPopup span {
	text-transform: uppercase;
}
.err {
	color: #F00;
}
#l_loginEr {
	padding-left: 5px;
}
#editTabPopup {
	padding-top: 6px;
}
.popupMenu {
	border: 1px solid black;
	padding: 0;
	position: absolute;
	background-color: #fff;
	z-index: 3;
}
.popupBox h6 {
	background-color: #686868;
	color: #fff;
	text-align: center;
	padding: 3px;
	font-size: 14px;
	text-transform: uppercase;
}
#confirmPopup, #alertPopup {
	z-index: 999;
}
#clrPopupBack, #clrBack {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}