/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 20 mars 2015, 11:01:31
    Author     : sweffling
*/

/* Message Boxes */
.msgBox {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 250px;
    min-width: 150px;
    color: #aaa;
    background: rgb(0, 0, 0); /* compatibility fallback */
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 2px 2px 6px #666;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-box-shadow: 2px 2px 6px #666;
    -webkit-box-shadow: 2px 2px 5px #666;
    position: absolute;
    display: none;
    z-index: 1002;
    top: 50%;
    left: 40%;
}

.messageErreur, .messageWarning, .messageInformation {
    width: 40%;
    padding: 15px 15px 15px 50px;
    margin: 10px auto;
    text-align: center;
    border-radius: 10px;
}

.messageErreur {
    background: #f6b6b6 url('/images/message/errorMedium30.png') no-repeat 10px;
    border: 2px solid #FF7373;
    color: #d00000;
}

.messageWarning {
    background: #fffda7 url('/images/message/messageWarning.png') no-repeat 10px;
    border: 2px solid #bc9700;
    color: #785d00;
}

.messageInformation {
    background: #d8d2f4 url('/images/message/information_32.png') no-repeat 10px;
    border: 2px solid #212787;
    color: #212787;
}

#sessionMessageInformation, #sessionMessageWarning, #sessionMessageErreur {
    position: absolute;
    left: 400px;
    top: 5px;
    z-index: 1000;
}

.messageErreurSoft {
    color: #d00000;
    font-weight: bold;
}
