/* 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: 86px;
    left: 50%;
    
    margin-left: -339px;
   /* width: 600px;*/
    
    background-color: #E0E5E9;
	/*background-image:url(../images/login_box_bg.png);*/
	background-image:url(../images/modal_bg.jpg);
	background-repeat:repeat-x;
	background-position:top;
    color: #333;
   /* border: 4px solid #ACB8C4;*/
    padding: 0px;
	/*width:678px; height:354px;*/
	/*background: #F5F5F5;*/
	/*background: -moz-linear-gradient(top, #F5F5F5, #D1D1D1);
	background: -webkit-gradient(linear,  left top, left bottom, from(#F5F5F5), to(#D1D1D1);*/
}

.jqmWindow_Login {
    display: none;
    
   /* position: fixed;*/
    top: 86px;
    left: 50%;
    
    margin-left: -219px;
   /* width: 600px;*/
    
    background-color: #E0E5E9;
	/*background-image:url(../images/login_box_bg.png);*/
	background-image:url(../images/modal_bg.jpg);
	background-repeat:repeat-x;
	background-position:top;
    color: #333;
    /*border: 4px solid #ACB8C4;
    padding: 0px;
	width:438px; height:330px;*/
	/*background: #F5F5F5;*/
	/*background: -moz-linear-gradient(top, #F5F5F5, #D1D1D1);
	background: -webkit-gradient(linear,  left top, left bottom, from(#F5F5F5), to(#D1D1D1);*/
}

.jqmWindow_Activity{display: none; position: fixed; top: 123px; left: 50%; margin-left: -247px;}

.jqmOverlay { background-color: transparent; }

/* 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');
}
* html .jqmWindow_Login {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}


.error{ color:#F15957; font-family: 'open_sansitalic'; padding-left:20px; font-size:12px; line-height:230%;}
