/* 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: 16%;
    left: 68%;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay { background-color: #000; }


/* 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((6 + (ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop)) + '%');
					left: expression((68 + (ignoreMe2 = document.documentElement.scrollRight ? document.documentElement.scrollRight : document.body.scrollRight)) + '%');/**/ } 

}
* html .jqmForward { /*\*/position: absolute; top: expression((6 + (ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop)) + '%');
					left: expression((68 + (ignoreMe2 = document.documentElement.scrollRight ? document.documentElement.scrollRight : document.body.scrollRight)) + '%');/**/ } 

}

.jqmCenter {
    display: none;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmForward {
	display: none;    
    position: fixed;
    top: 40%;
    left: 45%;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}