/* 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: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay { background-color: #000; }



/************************
 * live services window *
 */
#popup {
  background-color: #E9E1D4;
  width: 100%;
}
#popup :-moz-any-link:focus {
  outline: none;
}
#popup.modal {
  position: absolute;
  
  top: 160px;
  left: 50%;
  width: 728px;
  height: 357px;
  margin-left: -364px;
  
}

#modal_link,
#modal_x {
  display: block;
  position: absolute;
  text-indent: -5000px
}

#modal_link {
  top: 25px;
  left: 25px;
  width: 678px;
  height: 307px;
}

#modal_x {
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
}

