.jGrowl {
    z-index: 9999;
    color: #ffffff;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: fixed;
}
.jGrowl.top-left {
    left: 0px;
    top: 0px;
}
.jGrowl.top-right {
    right: 0px;
    top: 0px;
}
.jGrowl.bottom-left {
    left: 0px;
    bottom: 0px;
}
.jGrowl.bottom-right {
    right: 0px;
    bottom: 0px;
}
.jGrowl.center {
    top: 0px;
    width: 50%;
    left: 25%;
}
.jGrowl.center .jGrowl-notification,
.jGrowl.center .jGrowl-closer {
    margin-left: auto;
    margin-right: auto;
}
.jGrowl-notification {
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(90);
    filter: progid:DXImageTransform.Microsoft.Alpha(90);
    zoom: 1;
    width: 250px;
    /*padding: 10px;*/
    margin: 10px;
    text-align: left;
    display: none;
    border-radius: 5px;
    min-height: 40px;
    font-family: sans-serif;
    position: relative;
}
.jGrowl-notification i {
    margin-right: 5px;
    font-size: 1.1em;
}
.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.jGrowl-notification .jGrowl-header {
    font-size: 0.9em;
    padding: 15px 30px 5px 15px;
}
.jGrowl-notification .jGrowl-message {
    font-size: 1em;
    padding: 0 30px 10px 15px;
    word-wrap: break-word;
    text-align: justify;
}
.jGrowl-notification .jGrowl-close {
    background-color: #2f2f2f;
    color: inherit;
    border: none;
    z-index: 99;
    float: right;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    width: 24px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    right: -1px;
}
.jGrowl-notification .jGrowl-close .jGrowl-close-div1{
    position: relative;
    height: 100%;
}
.jGrowl-notification .jGrowl-close .jGrowl-close-div2{
    position: absolute;
    top: 45%;
    left: 50%;
    margin: -15% 0 0 -25%;
}
.jGrowl-notification-tipo-default{
    background-color: #000000;
}
.jGrowl-notification-tipo-error{
    background-color: #660000;
}
.jGrowl-notification-tipo-information{
    background-color: #002FAF;
}
.jGrowl-notification-tipo-success{
    background-color: #006600;
}
.jGrowl-notification-tipo-warning{
    background-color: #A28700;
}
.jGrowl-closer {
    background-color: #000000;
    opacity: 0.99;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(90);
    filter: progid:DXImageTransform.Microsoft.Alpha(90);
    zoom: 1;
    width: 250px;
    padding: 10px;
    margin: 10px;
    text-align: left;
    display: none;
    border-radius: 5px;
    padding-top: 4px;
    padding-bottom: 4px;
    cursor: pointer;
    font-size: .9em;
    font-weight: bold;
    text-align: center;
}
.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
/** Hide jGrowl when printing **/
@media print {
    .jGrowl {
        display: none;
    }
}