﻿/*------------------------------------------MessageBox-----------------------------------------------*/
.mbInfo, .mbSuccess, .mbWarning, .mbError, .mbValidation
{
    border: 1px solid;
    background-repeat: no-repeat;
    background-position: 10px center;
    font-family: Tahoma;
    font-size: 16px;
    height: 50px;
}
.mbInfo
{
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url(   'images/info.png' );
}
.mbSuccess
{
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url(   'images/success.png' );
}
.mbWarning
{
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url(   'images/warning.png' );
}
.mbError
{
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('images/error.png' );
}
.mbContainer
{
   clear:both;
   
    width: 962px;
    margin-right: auto;
    margin-left: auto;
    z-index: 1000;
    padding: 0px;
    text-align: center;
    display: table;
    height: 40px;
}
.mbInfo p, .mbSuccess p, .mbWarning p, .mbError p
{
    padding: 0px 50px;
}
.mbInfo a, .mbSuccess a, .mbWarning a, .mbError a
{
    float: right;
    padding: 10px;
    cursor: pointer;
}
.mbContainer img
{
    border: none;
}

/* validation */
.mbValidation
{
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url(   'images/error.png' );
}
.mbValidation ul
{
    padding: 0px 30px;
}
.mbClose
{
    width: 10px;
    height: 10px;
    background: url(   'images/close.png' ) no-repeat center center;
}
/*-----------------------------------------------------------------------------------------*/