/* 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: 25px;
    left: 35%;
    
    width: 940px;
    height:665px;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 0px;
	margin:0;
    margin-left:-300px;
}


	
* html .jqmWindow {
    display: none;
   
	position:absolute;
    width: 940px;
    height:665px;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 0px;
	margin:0;
    margin-left:-200px;
	z-index:100000000;
}





