/* 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: 40px;
    left: 50%;
    
    margin-left: -355px;
    width: 650px;
    
    height: 540px;

/*    overflow: auto;
*/

	overflow-y: scroll;
	overflow-x: hidden;
	    
    background-color: #dddddd;
    color: #333333;
    border: 1px solid black;
    padding: 0 34px;
}

.jqmOverlay { background-color: #000; }

