﻿.alertBar
{
    border:1px solid #2DA1C7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color:#fff;
    box-shadow:0 -20px 20px #ddd inset;
    float:right;
    padding-right: 50px;
    padding-left:10px;
    position:relative;
    padding-bottom:5px;
}
.alertBar .icon
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    box-shadow: 0 -10px 10px #444 inset;
    background-color: #666;
    border: 1px solid #aaa;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.alertBar .Success
{
    background-position: center center;
    background-image: url('../img/icon-info.png');
    background-repeat: no-repeat;
    position:absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left:0;
}
.alertBar .Error
{
    background-position: center center;
    background-image: url('../img/icon-warn.png');
    background-repeat: no-repeat;
    position:absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left:0;
}
.alertBar .message
{
    line-height:25px;
    cursor: default;
    font-family: tahoma;
    font-size: 9pt;
    font-weight: normal;
    text-shadow: -1px 1px 1px #666;
    color: #003366;
}
.alertBar .message::selection
{
    background-color: Transparent;
}
.alertBar .message::-moz-selection
{
    background-color: Transparent;
}