/* 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: 17%;
    left: 50%;*/
    
   /* margin-left: -300px;
    width: 546px;
	height: 379px;*/
    
    background-color: transparent;
    color: #333;
    border:0px;
    padding: 1px;
}

.jqmOverlay { background-color: #000; }

/*joe additions*/

#modalParentWrapper
{
    float:left;
}

.clearBoth
{
    clear:both;
}
#modalChildHeadLeft
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_top_lft.png');
}
#modalChildHeadCenter
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_top_cntr.png');
}
#modalChildHeadRight
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_top_rgt.png');
}
#modalChildBodyLeft
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_lft_cntr.png');
}
#modalChildBodyCenter
{
    background-image:url('/resources/css/jquery/modal/graphics/content_bg.png');
}
#modal_content
{
}
#modalChildBodyRight
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_rgt_cntr.png');
}
#modalChildFootLeft
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_btm_lft.png');
}
#modalChildFootCenter
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_btm_cntr.png');
}
#modalChildFootRight
{
    background-image:url('/resources/css/jquery/modal/graphics/brdr_btm_rgt.png');
}

/* 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) / 100) + 'px');
}