﻿div.whiteOverlay 
{
	background-color:#000;
	cursor:wait;
}

div.jqDrag
{
	cursor: move;
}

div.jqmDialog {
	display: none;
    position: fixed;
    top: 17%;
    left: 50%;
    margin-left: -200px;
	width: 400px;
	overflow: hidden;
	font-family: tahoma;
	font-size : 12px;
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
div.jqmDialog {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
	 font-family: tahoma;
	 font-size : 12px;     
}


/* [[[ Title / Top Classes ]]] */
div.jqmdTC { 
	background-image : url('../img/dialogcentertop.PNG');
	background-repeat : repeat-x;
	color: black;
	padding: 7px 22px 8px 7px;
	font-family: tahoma;
	font-weight: bold;
	font-size : 12px;
}
div.jqmdTL 
{
	background-image : url('../img/dialoglefttop.PNG');
	background-repeat : no-repeat;
	padding-left: 7px;
}
div.jqmdTR 
{
	background-image : url('../img/dialogrighttop.PNG');
	background-repeat : no-repeat;
	background-position : right top;
	padding-right: 7px;
}


/* [[[ Body / Message Classes ]]] */
div.jqmdBC {
	background: url('../img/dialogBorderCenter.png') repeat-x center bottom;
	padding: 7px 7px 7px;
	/*height: 100%;*/
	overflow: auto;
	background-color : white;
	color : Black;
}
div.jqmdBL 
{
	 background: url('../img/dialogBorderLeft.png') no-repeat left bottom; 
	 padding-left: 3px; 
}
div.jqmdBR 
{
	 background: url('../img/dialogBorderRight.png') no-repeat right bottom;
	 padding-right: 3px;
}

div.jqmdMSG 
{
	color : Black;
	font-family: tahoma;
	font-size : 12px;
}


/* [[[ Button classes ]]] */
input.jqmdX {
	position: absolute;
	right: 7px;
	top: 4px;
	padding: 0 0 0 24px;
	height: 24px;
	width: 0px;
	background: url('../img/btnClosePopupNormal.png') no-repeat top left;
	overflow: hidden;
}
input.jqmdXFocus 
{
	position: absolute;
	right: 7px;
	top: 4px;
	padding: 0 0 0 24px;
	height: 24px;
	width: 0px;
	background: url('../img/btnClosePopupHover.png') no-repeat top left;
	overflow: hidden;
}

div.jqmdBC button, div.jqmdBC input[type="button"] {
	margin: 8px 10px 4px 10px;
	color: #777;
	background-color: #fff;
	cursor: pointer;
}

div.jqmDialog input:focus, div.jqmDialog input.iefocus { background-color: #eaffc3; }
