/* 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: 2%;
    width: 720px;
    height: 575px;
    overflow: hidden;
    background-color: #fff;
    color: #666;
    border: 1px solid #666;
    padding: 0;
    text-align: center;
    font-size: 10px;
    left: 50%;
    margin-left: -360px;
}

#pageflip {width: 720px; height: 545px; }

* html .jqmWindow {wid\th: 722px; }
*:first-child+html .jqmWindow {width: 720px;}

#modalContent { background: url(../img/logo.gif) 7px 7px no-repeat; }
#modalContent .header_box { height: 30px; }
#modalContent .title { position: absolute; margin-left: 175px; }
/*IE6 access*/
* html #modalContent .title { ma\rgin: 0px 0 0 -185px; }
/*IE7 access*/
*:first-child+html #modalContent .title { position: absolute; margin: 0px 0 0 -185px; }


.jqmWindow img.preloader {margin: 5%; margin-top: 1%; }


.header_box a.jqmClose {
display: block;
position: absolute;
z-index: 999;
width: 18px;
height: 18px;
background: url(../img/closelabel.gif) 0 0 no-repeat;
margin: 5px 0 0 697px;
text-indent: -999em;
}

* html .header_box a.jqmClose {
ma\rgin: 5px 0 0 337px;
}

*:first-child+html .header_box a.jqmClose {
display: block;
position: absolute;
z-index: 999;
width: 18px;
height: 18px;
background: url(../img/closelabel.gif) 0 0 no-repeat;
margin: 5px 0 0 337px;
text-indent: -999em;
}


a.jqmClose:hover {
background-position: 0 100%;
}

a { outline: none; }

.jqmOverlay { background-color: #fff; }

/* 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) / 290) + 'px');
}