/* 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: 10%;
    left: 20%;
    width: 60%;
    height: 70%;
    background-color: #EEE;
    color: #333;
    padding: 0px;
}

.jqmOverlay
{
    background-color: #000;
}

/* 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(10 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');    
}

#jqmTitle
{
	background: transparent url(../images/background_titles.png) repeat-x scroll 0 100%;
	background-color: #eeeeee;
	border: 1px solid #ccc;
	border-bottom: none;
	width: 100%;
	height: 1.75em;
}
#jqmTitle span
{
	margin-left: 20px;
	margin-top: 7px;
	margin-bottom: 0px;
	float: left;
	display: inline;
	font-size: 0.85em;
	font-weight: bold;
	color: #5887a1;
	line-height: 120%;
}
#jqmTitle .jqmClose
{
    height: 1.75em;
    width: 1.75em;
    float: right;
    background: transparent url(../images/close.png) no-repeat scroll 50% 50%;
    cursor: pointer;
}

#jqmIFrame
{
	background-color: #ffffff;
	border: 1px solid #ccc;
    padding: 0px;
    width: 100%;
    height: 100%;
}

#jqmContent
{
    width: 100%;
    height: 100%;
    display: block;
    clear: both;
    background: #111;
	margin-bottom: 10px;
	overflow-x: hidden;
}
