/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
.jqmWindow {
	display: none;
	position: fixed;
	top: 17%;
	left: 50%;
	margin-left: -300px;
	background-color: #EEE;
	color: #333;
	border: 3px solid #eee;
	padding: 0px;
	margin: 0px;
	cursor: move;
	border-radius: 8px;
}
/* Below class used in scrPatientFrame.jsp for subMenu */
.jqmTOCSubMenu {
	position: fixed;
	top: 0%;
	left: 0%;
	margin-left: -300px; /* These 4 are mandatory and fixed values*/
	font-family: Verdana;
	color: white;
	cursor: hand;
	border: solid #5A69A5 1px;
	background: #7B829C;
	font-size: 12px;
	text-decoration: none;
}

#jqmTitleText {
	display: none;
}

.jqmOverlay {
	background-color: #000;
}

.jqmClose {
	clear: right;
	float: right;
	padding: 0px;
	cursor: pointer;
}

.jqmClose:hover {
	background: black;
}
#jqmTitle {
    height: 3px;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}
.scrtitle {
	margin-left: 10px;
}
.jqmContent {
	width: 100%;
	height: 100%;
	display: block;
	clear: both;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	border-style: hidden;
	border-radius: 6px;
}

#modalWindow1 {
	z-index: 3000
}

#modalWindow2 {
	z-index: 6000
}

#modalWindow3 {
	z-index: 9000
}

#modalWindow4 {
	z-index: 12000
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: expression(this.parentNode.offsetWidth + 'px');
	height: expression(this.parentNode.offsetHeight + 'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
	position: absolute;
	top: expression(( document.documentElement.scrollTop || 
		document.body.scrollTop)+ Math.round(17* (document.documentElement.offsetHeight||
		 document.body.clientHeight)/100)+ 'px');
}

/** Added by Pravin More .. Date: 07/06/2016 **/
.boxclose {
	float: right;
	margin-top: -9px;
	margin-right: -11px;
	cursor: pointer;
	color: #fff;
	border: 3px solid #AEAEA9;
	border-radius: 32px;
	background: #605F61;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
	line-height: 0px;
	padding: 8px 4px;
}

A.boxclose{
	text-decoration: none;
}
.boxclose:before {
	content: "X";
}