/* 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). */
	
.jqmWindowContainer {
    display: none;    
    position: fixed;
    top: 20%;
    left: 50%;    
    margin-left: -300px;
    width: 600px;	    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    
}

.jqmWindowContent 
{
	padding: 12px;
}

.jqmOverlay { background-color: #000; }
   
/* --------------------------- */   
.jqmClose
{ 
	/*background:#0195D9; */
	/*border:1px solid #FFDD00; 
	color:#000; 
	clear:right; */
	border: none;	
	color: #000;
	float:right;
	cursor:pointer;
	font-size: 9px; 
	width: 20px;
	height: 20px;
	margin-top: 2px;	
}   
 
#jqmContent
{ 
	width:99%; 
	height:95%; 
	display: block; 
	clear:both; 
	margin:auto; 
	background:#111; 
	border:1px solid #444; 
}

#jqmTitle
{
	height: 20px;
	background-color:#fff;
	overflow: hidden;
}

#jqmTitle p
{
	margin: 0;
	padding: 2px 0 0 12px;
	/*padding: 12px;*/
	/*float: left;*/
	font-weight: bold;
	
	
}

/*#jqmTitle a
{
	float: right;
}*/


