/* 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: -212px;
    width: 425px;
	height: 344px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 0px;

}

div.content {
	height: inherit;
	width: inherit;
}

.jqmOverlay { background-color: #000; }

div.jqmdTC { 
  background: #d11241; 
  color: #fff;
  padding: 7px 22px 5px 5px;
  font-family:"sans serif",verdana,tahoma,helvetica;
  font-weight: bold;
  * zoom: 1;
}


/* Button */
input.jqmdX {
  position: absolute;
  right: 7px;
  top: 4px;
  padding: 0 0 0 19px;
  height: 19px;
  width: 0px;
  background: url(/static/images/dialog/close.gif) no-repeat top left;
  overflow: hidden;
}

