
div.jGrowl
{
    font-size: 12px;

    z-index: 9999;

    padding: 10px;

    color: #fff;
}

/** Special IE6 Style Positioning **/
div.ie6
{
    position: absolute;
}

div.ie6.top-right
{
    top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    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' );
}

div.ie6.top-left
{
    top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
}

div.ie6.bottom-right
{
    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' );
    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' );
}

div.ie6.bottom-left
{
    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' );
    left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
}

div.ie6.center
{
    top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );

    width: 100%;
}

/** Normal Style Positions **/
body > div.jGrowl
{
    position: fixed;
}

body > div.jGrowl.top-left
{
    top: 0;
    left: 0;
}

body > div.jGrowl.top-right
{
    top: 0;
    right: 0;
}

body > div.jGrowl.bottom-left
{
    bottom: 0;
    left: 0;
}

body > div.jGrowl.bottom-right
{
    right: 0;
    bottom: 0;
}

body > div.jGrowl.center
{
    top: 0;
    left: 25%;

    width: 50%;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification,
div.center div.jGrowl-closer
{
    margin-right: auto;
    margin-left: auto;
}

div.jGrowl div.jGrowl-notification,
div.jGrowl div.jGrowl-closer
{
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 1em;

    display: none;
    zoom: 1;

    width: 235px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;

    text-align: left;

    opacity: .85;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
    background-color: #000;

    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=85)';
    filter: 				progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
}

div.jGrowl div.jGrowl-notification
{
    min-height: 40px;
}

div.jGrowl div.jGrowl-notification div.header
{
    font-size: .85em;
    font-weight: bold;
}

div.jGrowl div.jGrowl-notification div.close
{
    font-size: 1em;
    font-weight: bold;

    z-index: 99;

    float: right;

    cursor: pointer;
}

div.jGrowl div.jGrowl-closer
{
    font-size: .9em;
    font-weight: bold;

    padding-top: 4px;
    padding-bottom: 4px;

    cursor: pointer;
    text-align: center;
}

/** Hide jGrowl when printing **/
@media print
{
    div.jGrowl
    {
        display: none;
    }
}
