/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

 /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
 /* Animations */

  @-moz-keyframes modal-appear {
    0% {
      opacity: .8;
      -webkit-transform: scale(0.99) translate3d(0, 0, 0);
      -moz-transform: scale(0.99) translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -moz-transform: scale(1) translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes modal-appear {
    0% {
      opacity: .8;
      -webkit-transform: scale(0.99) translate3d(0, 0, 0);
      -moz-transform: scale(0.99) translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -moz-transform: scale(1) translate3d(0, 0, 0);
    }
  }
  @-o-keyframes modal-appear {
    0% {
      opacity: .8;
      -webkit-transform: scale(0.99) translate3d(0, 0, 0);
      -moz-transform: scale(0.99) translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -moz-transform: scale(1) translate3d(0, 0, 0);
    }
  }
  @-ms-keyframes modal-appear {
    0% {
      opacity: .8;
      -webkit-transform: scale(0.99) translate3d(0, 0, 0);
      -moz-transform: scale(0.99) translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -moz-transform: scale(1) translate3d(0, 0, 0);
    }
  }
  @keyframes modal-appear {
    0% {
      opacity: .8;
      -webkit-transform: scale(0.99) translate3d(0, 0, 0);
      -moz-transform: scale(0.99) translate3d(0, 0, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: scale(1) translate3d(0, 0, 0);
      -moz-transform: scale(1) translate3d(0, 0, 0);
    }
}

.modal-backdrop.fade.in::before {
    border:6px solid #fff;
    border-radius:40px;
    height:40px;
    left:50%;
    margin:-15px 0 0 -15px;
    opacity:0;
    position:absolute;
    top:35%;
    width:40px;
    content: '';
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count:infinite;
}

@-webkit-keyframes pulsate {
    0% {
      transform:scale(.1);
      opacity: 0.0;
    }
    50% {
      opacity:1;
    }
    100% {
      transform:scale(1.2);
      opacity:0;
    }
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30040;
}

body .modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  -webkit-animation-duration: 250ms;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-name: modal-appear;
  -moz-animation-duration: 250ms;
  -moz-animation-timing-function: ease-out;
  -moz-animation-name: modal-appear;
  -o-animation-duration: 250ms;
  -o-animation-timing-function: ease-out;
  -o-animation-name: modal-appear;
  -ms-animation-duration: 250ms;
  -ms-animation-timing-function: ease-out;
  -ms-animation-name: modal-appear;
  animation-duration: 250ms;
  animation-timing-function: ease-out;
  animation-name: modal-appear;   
}
body .modal.fade
{
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(.99) translate3d(0, 0, 0);
  -moz-transform: scale(.99) translate3d(0, 0, 0);
  -o-transform: scale(.99) translate3d(0, 0, 0);
  -ms-transform: scale(.99) translate3d(0, 0, 0);
  transform: scale(.99) translate3d(0, 0, 0);
}
body .modal.fade.in
{
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1) translate3d(0, 0, 0);
  -moz-transform: scale(1) translate3d(0, 0, 0);
  -o-transform: scale(1) translate3d(0, 0, 0);
  -ms-transform: scale(1) translate3d(0, 0, 0);
  transform: scale(1) translate3d(0, 0, 0);
}


.modal-dialog {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: 100%;
  padding: 10px;
  z-index: 30050;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 1px 8px #555;
  -moz-box-shadow: 0px 1px 8px #555;
  box-shadow: 0px 1px 8px #555;
  background-clip: padding-box;
  outline: none;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30030;
  background-color: #000000;
  background: rgb(153,153,153);
  background: -moz-radial-gradient(center, ellipse cover, rgba(153,153,153,1) 0%, rgba(85,85,85,1) 43%, rgba(0,0,0,1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(153,153,153,1)), color-stop(43%,rgba(85,85,85,1)), color-stop(100%,rgba(0,0,0,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(153,153,153,1) 0%,rgba(85,85,85,1) 43%,rgba(0,0,0,1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(153,153,153,1) 0%,rgba(85,85,85,1) 43%,rgba(0,0,0,1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(153,153,153,1) 0%,rgba(85,85,85,1) 43%,rgba(0,0,0,1) 100%);
  background: radial-gradient(ellipse at center, rgba(153,153,153,1) 0%,rgba(85,85,85,1) 43%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#000000',GradientType=1 );
}
.modal-backdrop.fade {
  transition: opacity .4s ease-out;
  -moz-transition: opacity .4s ease-out;
  -webkit-transition: opacity .4s ease-out;
  -ms-transition: opacity .4s ease-out;
  -o-transition: opacity .4s ease-out;  
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.45;
  filter: alpha(opacity=45);
}
.modal-header {
  padding: 13px 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  -moz-border-top-left-radius: 2px;
  -moz-border-top-right-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
}
.modal .fc_close
{
  position: absolute;
  padding: 7px 12px;
  background: none;
  border: none;
  box-shadow: none;
  font-size: 24px;
  color: #999;
  top: 0;
  right: 0;
  font-weight: bold;
  font-family: Arial;
  cursor: pointer;
  z-index: 20001;
}
.modal .fc_close:hover,
.modal .fc_close:focus
{
  color: #555;
  outline: none;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .modal-dialog {
    left: 50%;
    right: auto;
    width: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
