/* 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: 17%;
    left: 50%;
    
    margin-left: -265px;
    width: 480px;
    
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 24px 12px;
    text-align: center;
}

.jqmOverlay { background-color: #000; }

/* ~~~ === MODAL WINDOW ============================================================ ~~~ */
#dialog a.jqmClose
{
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    color: #0278A9;
}


