/* jQuery Modal
 * Copyright 2014 Kevin Sylvestre
 * 1.1.9
 */
.modaled {
  overflow: hidden;
  -webkit-overflow-style: none;
  -moz-overflow-style: none;
  -ms-overflow-style: none; }
  .modaled::-webkit-scrollbar {
    display: none !important;
    width: 0 !important; }
  .modaled::-moz-scrollbar {
    display: none !important;
    width: 0 !important; }
  .modaled::-ms-scrollbar {
    display: none !important;
    width: 0 !important; }

.modaler {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 4000; }
  .modaler .modal {
    position: relative;
    top: inherit;
    left: inherit;
    right: inherit;
    margin: 40px auto; }

.modal {
  position: fixed;
  background: #FFF;
  top: 20%;
  left: 50%;
  right: 50%;
  width: 620px;
  margin: 0 -320px;
  z-index: 4000;
  box-shadow: 0 2px 8px #000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: -webkit-transform, opacity, filter;
  -moz-transition-property: -moz-transform, opacity, filter;
  transition-property: transform, opacity, filter;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }
  .modal.fade {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8); }
  .modal .modal-header, .modal .modal-footer, .modal .modal-body, .modal .header, .modal .footer, .modal .body {
    padding: 10px; }
    .modal .modal-header:before, .modal .modal-header:after, .modal .modal-footer:before, .modal .modal-footer:after, .modal .modal-body:before, .modal .modal-body:after, .modal .header:before, .modal .header:after, .modal .footer:before, .modal .footer:after, .modal .body:before, .modal .body:after {
      content: " ";
      display: table;
      clear: both; }
  .modal .modal-header *, .modal .modal-footer *, .modal .header *, .modal .footer * {
    margin: 0; }
  .modal .modal-body, .modal .body {
    min-height: 240px;
    max-height: 480px;
    overflow: auto; }
  .modal .modal-header, .modal .header {
    border-bottom: 1px solid #EEE; }
  .modal .modal-footer, .modal .footer {
    border-top: 1px solid #EEE; }
  .modal .close {
    color: gray;
    float: right;
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    text-align: center; }

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-property: -webkit-transform, opacity, filter;
  -moz-transition-property: -moz-transform, opacity, filter;
  transition-property: transform, opacity, filter; }
  .vignette.fade {
    opacity: 0;
    filter: alpha(opacity=0); }

/*# sourceMappingURL=jquery.modal.css.map */
