/* 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}); */
  
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 10px;
	z-index:50000;/* above UDM at 20000 */
}

.glossaryTrigger{
	text-decoration:none;
	border-bottom:1px solid #FFaa00;
}

.jqmOverlay { background-color: #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(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

.jqmAlertTitle{
  /*margin:5px 2px;*/
  height:20px;
  color:#FFF;
}
.jqmAlertTitle h1{
	margin:5px 2px;
	padding:0px 0px 0px 5px;
	font-size:14px;
	text-transform:capitalize;
	color:#F99c1c;
	font-family:verdana,arial,helvetica;
	float:left;
	height:20px;
}

div.jqmWindow .jqmClose em{display:none;}
div.jqmWindow .jqmClose {
  width:15px;
  height:13px;
  display:block;
  float:right;
  clear:right;
  background:transparent url(/media/pics/site/close.gif) 0 0 no-repeat;
  margin:5px;
}

div.jqmAlertContent{
	padding:10px 5px;
	border:1px dotted #111;
	background:#fff;
	letter-spacing:0px;
	font-family:verdana,arial,helvetica;
	font-size:12px;
	height:300px;
	overflow:auto;
	clear:both;
}

.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 */