/* CSS for easy notification JS */

#easyNotification {
  padding: 8px 10px;
  font-size: 13px;
  border: solid #fff;
  border-width: 0px 1px 1px 1px;
  border-radius: 0px 0px 5px 5px;
  position: relative;
  position: absolute;
  top: 0px;
  width: 300px;
  margin-left: -150px;
  left: 50%;
  text-align: center;
  filter: alpha(opacity=90); /* internet explorer */
  -khtml-opacity: 0.9;      /* khtml, old safari */
  -moz-opacity: 0.9;       /* mozilla, netscape */
  opacity: 0.9;           /* fx, safari, opera */
  -moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
  z-index: 999;
  }

#easyNotification b {
  color: white;
  }

div.info {
  background-color: #3682c6;
  color: #cde0f1;
  }

div.success {
  background-color: #48b41c;
  color: #d1ecc6;
  }

div.error {
  background-color: #b94731;
  color: #edd1cb;
  }