/* CSS Document */
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
     -moz-transition:    -moz-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  border:1px solid #000;
  background-color:#d3b34b;
  /*border-radius: 6px;*/
  
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  /*border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);*/
  /*border-radius: 6px;*/
  outline: none;
/*  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
*/}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  text-align:right;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
  font-size:26px;
  text-align:center;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  font-size:24px; font-weight:700;
}
.modal-footer a {
  font-size:24px; font-weight:700;
  color:#2e4164; text-decoration:underline;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
    background: none repeat scroll 0 0 #EAEAEA;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    color: #444444;
    cursor: pointer;
    font-family: 'Yanone Kaffeesatz',sans-serif;
    font-size: 16px;
    padding: 5px 10px;
    transition: all 0.3s ease 0s;
    width: auto;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-footer .btn {
 background: none repeat scroll 0 0 #EAEAEA;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    color: #444444;
    cursor: pointer;
    font-family: 'Yanone Kaffeesatz',sans-serif;
    font-size: 16px;
    padding: 5px 10px;
    transition: all 0.3s ease 0s;
    width: auto;	
}
.modal-footer .btn:hover {
    background: none repeat scroll 0 0 #000000;
    color: #FFFFFF;
}

/* UI Dialog */
.window_confirm {
	font-size:1.6em !important;
	border:2px solid #2e4164 !important;
}

.window_confirm .ui-dialog-content {
	min-height:inherit !important;
	text-align:center;
	font-size:0.8em;
}

.window_confirm .ui-dialog-buttonpane {
	text-align:center;
}

.window_confirm .ui-dialog-titlebar {
	display:none;
}

.window_confirm .ui-dialog-buttonset {
	float:none !important;
	text-align: center !important;
	margin-left:20px !important;
}

.window_confirm button {
    background-color: #2e4164;
    border: 0 none;
    color: #ebebeb !important;
    cursor: pointer !important;
    margin: 0px !important;
    text-align: center;
	padding:5px 8px;
}

.ui-widget-overlay {
	background:none !important;
	background-color:#000000 !important;
	filter: alpha(opacity=50) !important;
	opacity: .5 !important;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
   /* -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);*/
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}