/* 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:30%;
    left:50%;

    margin-left: -200px;
    width: 400px;

    background-color:#EEE;
    color:#333;
    border:1px solid black;
    padding:12px;

	/*font-family: "lucida grande",tahoma,verdana,arial,sans-serif;*/
}

.jqmWindow h2 {
	display:block;
	margin:0;
	padding:4px 10px 5px;
	background:#6D84B4 none repeat scroll 0 0;
	border:1px solid #3B5998;
	color:white;
	font-size:11pt;
	font-weight:bold;
}

.jqmWindow .content {
	margin:0;
	font-size:10pt;
	background:#FFFFFF none repeat scroll 0 0;
	border-color:#555555;
	border-style:solid;
	border-width:0 1px 1px;
	padding:10px;
}

.jqmWindow .content p {margin:0 0 1em;}

.jqmWindow .buttons {
	margin:0 -10px -10px;
	border-top:solid 2px #DDD;
	background:#F2F2F2 none repeat scroll 0 0;
	padding:12px;
	text-align:center;
}

/*.jqmWindow .buttons a {
	background-color:#3B5998;
	border-color:#D9DFEA #0E1F5B #0E1F5B #D9DFEA;
	border-style:solid;
	border-width:1px;
	color:#FFF;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	font-size:10pt;
	padding:4px 15px 5px;
	text-decoration:none;
}

.jqmWindow .buttons a:hover {
	color:#FF0;
}*/

#savingProgress .content, #autoSaving .content {background-image:url("images/loading.gif"); background-position:center; background-repeat:no-repeat;}

.jqmOverlay {background-color:#444;}

/* 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(30 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}