
div.jGrowl {
    z-index: 200000;
    color: #fff;
    /*font-size: 12px;*/
}

/** Special IE6 Style Positioning **/
div.ie6 {
    position: absolute;
}

    div.ie6.top-right {
        right: auto;
        bottom: auto;
        left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
        top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    }

    div.ie6.top-left {
        left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
        top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    }

    div.ie6.bottom-right {
        left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
        top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    }

    div.ie6.bottom-left {
        left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
        top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    }

    div.ie6.center {
        left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
        top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
        width: 100%;
    }

/** Normal Style Positions **/
div.jGrowl {
    position: absolute;
}

body > div.jGrowl {
    position: fixed;
}

div.jGrowl.top-left {
    left: 0px;
    top: 0px;
}

div.jGrowl.top-right {
    right: 0px;
    top: 0px;
}

div.jGrowl.bottom-left {
    left: 0px;
    bottom: 0px;
}

div.jGrowl.bottom-right {
    right: 0px;
    bottom: 0px;
}

div.jGrowl.center {
    height: 0;
    /*top: 				17px;*/
    top: 43px;
    width: 50%;
    left: 25%;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
    margin-left: auto;
    margin-right: auto;
}

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
    background-color: #000;
    /*opacity: 				.9;*/
    /*-ms-filter: 			"progid:DXImageTransform.Microsoft.Alpha(Opacity=9)";*/
    /*filter: 				progid:DXImageTransform.Microsoft.Alpha(Opacity=9);*/
    zoom: 1;
    /*width: 					235px;*/
    width: 400px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    /*font-family: Tahoma, Arial, Helvetica, sans-serif;*/
    font-size: 1em;
    text-align: left;
    display: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

div.jGrowl div.jGrowl-notification {
    /*min-height: 			40px;*/
}


    div.jGrowl div.jGrowl-notification div.jGrowl-header {
        font-weight: bold;
        /*font-size: 13px;*/
        line-height: 2em;
    }

    div.jGrowl div.jGrowl-notification div.jGrowl-close {
        z-index: 99;
        float: right;
        font-weight: bold;
        font-size: 1.3em;
        cursor: pointer;
    }

div.jGrowl div.jGrowl-closer {
    padding-top: 4px;
    padding-bottom: 4px;
    cursor: pointer;
    font-size: .9em;
    font-weight: bold;
    text-align: center;
}

div.jGrowl div.warning {
    /*background-color: #fcf8e3; 
    border: 1px solid rgba(0, 0, 0, 0.1);*/
    background-color: #C1E2F3;
    border: 3px solid #5bc0de;
    color: #333;
}

    div.jGrowl div.warning hr {
        color: #c09853;
    }

div.jGrowl div.success {
    /*background-color: #dff0d8;  
    border: 1px solid rgba(0, 0, 0, 0.1);*/
    background-color: #dff0d8;
    border: 3px solid #8fb551;
    color: #468847;
}

    div.jGrowl div.success hr {
        color: #468847;
    }


div.jGrowl div.error {
    /*background-color: #f2dede;*/
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    background-color: rgb(249, 212, 218);
    border: 3px solid rgba(0, 0, 0, 0.1);
    color: #b94a48;
}

    div.jGrowl div.error hr {
        color: #b94a48;
    }

div.jGrowl div.info {
    background-color: #a4d1ff;
    border: 3px solid rgba(0, 0, 0, 0.1);
    color: #003c77;
}

    div.jGrowl div.info hr {
        color: #003c77;
    }

/** Hide jGrowl when printing **/
@media print {
    div.jGrowl {
        display: none;
    }
}