/* 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: 10%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #000;
    color: #fff;
    border: 1px solid #999999;
    padding: 12px;
	font-size:100%;
	max-height:70%;
	overflow:auto;
}

.jqmWindow a{
	color:#FF9900;
	text-decoration:none;
}

.jqmWindow a:hover{
	color:#FF9900;
	text-decoration:underline;
}

.jqmWindow h2{
	margin:0;
	padding-top:5px;
	padding-bottom:5px;
	color:#FFFFFF;
}

.jqmWindow hr {color: #000; background-color: #000; border: 1px solid #fff; border-style: none none solid; }

.jqmOverlay { background-color: #000; }

