/*
	$Revision$
*/
/* 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). */
/* Settings */
/* Sprite Management */
/*
SPRITE USAGE EXAMPLE: 
width: $image-width(sprite-file($map, $map-file-name));
height: $image-height(sprite-file($map, $map-file-name));
background: sprite($icons, file-name) no-repeat; 
*/
/* line 22, ../Sass/jqModal.scss */
.jqmWindow {
  display: none;
  z-index: 9000;
  position: fixed;
  top: 25%;
  left: 50%;
  margin-left: -300px;
  width: 100% !important;
  max-width: 600px !important;
  border-radius: 5px;
  background-color: white;
  padding: 0;
}
@media all and (max-width: 37.49em) {
  /* line 22, ../Sass/jqModal.scss */
  .jqmWindow {
    left: unset;
    margin-left: unset;
  }
}

/* line 43, ../Sass/jqModal.scss */
.jqmOverlay {
  background-color: #000;
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
/* line 46, ../Sass/jqModal.scss */
* iframe.jqm {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
/* line 54, ../Sass/jqModal.scss */
* html .jqmWindow {
  position: absolute;
  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

/* line 59, ../Sass/jqModal.scss */
.jqmdX {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 0 0 0 15px;
  height: 15px;
  width: 0px;
  background: transparent url(/Images/Icons/icn_close_sml.png) no-repeat top left;
  overflow: hidden;
  outline: none;
}

/* line 72, ../Sass/jqModal.scss */
.HHModalPopup .modal-content {
  padding: 20px;
}

/* line 76, ../Sass/jqModal.scss */
.jqmClose {
  cursor: pointer;
}

/* line 80, ../Sass/jqModal.scss */
DIV.HHModalPopup {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

/* line 87, ../Sass/jqModal.scss */
DIV.HHModalPopup H1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  padding: 15px 20px;
  background: #50C2D2;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* line 100, ../Sass/jqModal.scss */
DIV.HHModalPopup p {
  line-height: 1.5;
  font-size: 14px;
  margin: 5px;
}

/* line 106, ../Sass/jqModal.scss */
DIV.secondary_details DIV.HHModalPopup P {
  padding: inherit !important;
  margin: 12px !important;
}
