.messageContainer{
    margin-bottom: 10px;
    -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
}

.messageContainer.info {
    border: 1px solid #cadcea;
    background: #e1f2fc;
    background: -webkit-gradient(linear, left top, left bottom, from(#e1f2fc), to(#cae9fd));
    background: -moz-linear-gradient(top,  #e1f2fc,  #cae9fd);
    /*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e1f2fc', endColorstr='#cae9fd');*/
    color: #225b86;
}

.messageContainer.error {
    border: 1px solid #eeb7ba;
    background: #fae2e2;
    background: -webkit-gradient(linear, left top, left bottom, from(#fae2e2), to(#f2cacb));
    background: -moz-linear-gradient(top,  #fae2e2,  #f2cacb);
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fae2e2', endColorstr='#f2cacb');*/
    color: #be4741;
}


.messageContainer.success {
    border: 1px solid #b8c97b;
    background: #e5edc4;
    background: -webkit-gradient(linear, left top, left bottom, from(#e5edc4), to(#d9e4ac));
    background: -moz-linear-gradient(top,  #e5edc4,  #d9e4ac);
    /*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5edc4', endColorstr='#d9e4ac');*/
    color: #3f7227;
}

.messageContainer.warning {
    border: 1px solid #e5dbaa;
    background: #ffffc0;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffc0), to(#f9ee9c));
    background: -moz-linear-gradient(top,  #ffffc0,  #f9ee9c);
    /*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc0', endColorstr='#f9ee9c');*/
    color: #6d7829;
}

.message {
	padding: 8px 8px 8px 31px;
	color: #646464;
	background-position: 10px 8px;
	background-repeat: no-repeat;
    line-height: 12px;
    font-size: 11px;
}
    .message h3 { margin-top: 0; }
    .message p { margin-bottom: 3px; }
    .message strong { text-shadow: 0 1px 0 #fff; font-size: 12px; padding-bottom: 4px; }
    .message br { display: block; }

.message.info { background-image:url('../img/icons/icon_notification_information.png'); }
.message.info strong { color: #225b86; }
.message.error { background-image:url('../img/icons/icon_notification_error.png'); }
.message.error strong { color: #be4741; }
.message.success { background-image:url('../img/icons/icon_notification_success.png'); }
.message.success strong { color: #3f7227; }
.message.warning { background-image:url('../img/icons/icon_notification_attention.png'); }
.message.warning strong { color: #6d7829; }
.message.note { background-image:url('../img/icons/icon_notification_note.png'); }
.message.note strong { color: #656565; }

