/* 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;
    overflow: auto;
    top: 10px;
    left: 50%;
    margin-left: -300px;
    width: 600px;
    background-color: #D4D7E6;
    color: #333;
    border: 1px solid black;
    padding: 0;
}

#modal-div-homepage {
	width:817px;
	height:556px;
	top:20px;
	left:40%;
	border:0;
}

#modal-div-homepage #transparency {
    position:absolute;   
    top:0px;   
    left:0px;   
	z-index:-1;
	width:817px;
	height:556px;
	opacity:0.5;   
    filter:alpha(opacity=50);   
    -moz-opacity:0.5;  
	background-color:#DEDEDE;
}

#modal-div-homepage #container {
	position:relative;
	top:5px;
	left:5px;
	width:807px;
	height:496px;
	margin:auto;
	background: url(/images/welcomebg.jpg) no-repeat 0 0;
	font-family:Arial, Helvetica, sans-serif;
	padding:40px 20px 40px 20px;
	
}

#modal-div-homepage #container h3 {
	color:#637fb1;
	font-style:italic;
	font-size:14px;
	margin-bottom:10px;
}

#modal-div-homepage #container #column-1 {
	float:left;
	width:40%;
}

#modal-div-homepage #container #column-2 {
	float:left;
	width:60%;
}

#modal-div-homepage #close-modal {
	position:relative;
	top:-55px;
	left:725px;
}


.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(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

