/* jQuery Notifications plugin - http://programmingmind.com */
/* notification container */
/*Modificado para centrarlo en la pagina*/
#jquery-notifications {
  position: fixed;
  width: 500px;
  left: 50%;
  margin-left:-200px;
  top: 0;
  z-index: 100000;  
}
#jquery-notifications p {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 5px;
  padding-left: 10px;
  font-family:Helvetica, Verdana, Arial, sans-serif;
  font-size:.9em;  
  font-weight: bold;
  box-shadow: 2px 2px 4px #566a7d; /*Atributo genérico*/
  -webkit-box-shadow: 2px 2px 4px #566a7d;  /*Atributo para Safari*/
  -moz-box-shadow: 0px 0px 4px #566a7d;  /*Atributo para Mozilla*/
  -moz-border-radius-bottomright: 15px;
  border-bottom-right-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-left-radius: 15px;
  /* style property for the close text */
}
#jquery-notifications p a {
  position: absolute;
  right: 10px;
  margin-right: 10px;
  color: #061a72;
  text-decoration: none;
  font-family:Helvetica, Verdana, Arial, sans-serif;
  font-size:.9em;
  padding-right: 5px;
  padding-left: 5px;
}
#jquery-notifications .notice {
  background: #EDF669;
  color: #061a72;
  text-shadow: #fff 0px 1px 1px;

}
#jquery-notifications .success {
  background: #96f96f;
  color: #045419;
  

}
#jquery-notifications .warning {
  background: #f7ae57;
  color: #753903;

}
#jquery-notifications .error {
  background: #F88410;
  color: #fff;
  text-shadow: #333 0px -1px 1px;
/*      #570f01;  */
}