/* 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 (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */

#jboxA{z-index:815;}
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 11%;
    left: 29%;
    /*margin-left: -300px;*/
    width: 560px;
	height: 400px;
/* 	overflow:auto;
    
    color: #333;
   background-color: #EEE;
    border: 3px solid #728423;
    padding: 12px;*/
	z-index:800;
}

/*
a.jqmClose,a.jqmClose:hover{background-image:url(../gfx/navhov1.gif); padding:3px; border:0px outset #CCCCCC;float:right;}
a.jqmClose,a.jqmClose:hover{text-decoration:none; font-weight:bold;}
*/
.jqmOverlay { background: #000 ; }

/* 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(10 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.jtext {background-color:#FFFFFF;}

.loader {margin: 30% }
/* :::::::::::::::: /*
/* Jquery Alert overide  */
div.jqmAlert { /* contains + positions the alert window */
	display: none;
	position: fixed;
	top: 30%;
	left: 50%;
    margin-left: -150px;
	width: 300px;
}
    
/* 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 div.jqmAlert {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

div.jqmAlertWindow {
	height:auto;
	width: auto;
	margin: auto;
	
	max-width:400px;
	padding: 0 10px 10px;
	
	background:#FFFF99;
	border:1px dotted #B9C92A;
}

.jqmAlertTitleA, .jqmAlertTitle{
	margin:5px 2px;
	height:16px;
	color:#fff;
	border:1px solid #CC0000;
	background-color:#CC0000;
}
.jqmAlertTitleA{background-color:#339900;border:1px solid #339900;}

.jqmAlertTitle h1{
    font-family:Arial, Helvetica, sans-serif;
	margin:0;
	padding-left:5px;
	padding:0;
	font-size:14px;
	text-transform:capitalize;
	letter-spacing:-1px;
	font-weight:bold;
	color:#fff;

	float:left;
	height:20px;
}

div.jqmAlert .jqmClose em{display:none;}
div.jqmAlert .jqmClose {
	width:10px;
	height:8px;
	display:block;
	float:right;
	clear:right;
	background:#CCCCCC url(../../gfx/close.png) 1px 1px no-repeat;
	margin-top:2px;
}

div.jqmAlert a.jqmClose:hover,div.jqmAlert a.jqmCloseHover{background:#999999 url(../../gfx/close.png) 1px 1px no-repeat;}
div.jqmAlert a.jqmClose{padding:2px 1px;}

div.jqmAlertContent{
	border-top:0px;
	font:11px/14pt arial;
	padding:3px;
	margin:3px;
	border:1px dotted #111;
	letter-spacing:0px;
}

/*°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
  clearing a float without additional markup
   http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

div.jqmNotice img.jqResize {position: absolute; right: 2px; bottom: 2px;}