/**
 * alertifyjs 1.4.0 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
.alertify .ajs-dialog {
  background-color: white;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}
.alertify .ajs-header {
  color: black;
  font-weight: bold;
  background: #fafafa;
  border-bottom: #eee 1px solid;
  border-radius: 2px 2px 0 0;
}
.alertify .ajs-body {
  color: black;
}
.alertify .ajs-body .ajs-content .ajs-input {
  display: block;
  width: 100%;
  padding: 8px;
  margin: 4px;
  border-radius: 2px;
  border: 1px solid #CCC;
}
.alertify .ajs-body .ajs-content p {
  margin: 0;
}
.alertify .ajs-footer {
  background: #fbfbfb;
  border-top: #eee 1px solid;
  border-radius: 0 0 2px 2px;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
  background-color: transparent;
  color: #000;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  color: #3593D2;
}
.alertify-notifier .ajs-message {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  text-align: center;
  border: solid 1px #ddd;
  border-radius: 2px;
}
.alertify-notifier .ajs-message.ajs-success {
  color: #fff;
  background: rgba(91, 189, 114, 0.95);
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-error {
  color: #fff;
  background: rgba(217, 92, 92, 0.95);
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
  border-color: #999;
}



.alertify .ajs-dialog {
	margin: 20px auto;
	padding: 0px 0px;
}
.alertify .ajs-header {
	 margin: 0px; padding: 8px 15px;
}
.alertify .ajs-footer {
	margin: 0px; padding:0px; min-height:initial;
}
.alertify .ajs-dialog {
	max-width: 80%;
}
.alertify .ajs-body .ajs-content {
  padding: 0px 15px;
  max-height:600px; overflow:auto;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
	min-height: 20px; font-size: 12px; font-weight: normal;
}

.alertify-notifier { width:auto; }
.alertify-notifier .ajs-message {  text-align:left;  width:auto; max-width:96%; box-shadow:rgba(0,0,0,.4) 0px 10px 30px 10px; }
.alertify-notifier .ajs-message.ajs-visible { margin-top:0px;}
.ajs-error a, .ajs-success a { color:#fff; }

