#message_div {
 position: fixed;
 top: 0;
 left: 150px;
 text-align: left;
 width: 300px;
 min-height: 54px;
 padding: 5px 5px 0 25px;
 font-size: 10pt;
 background-color: #f1f6f9;
 border-radius: 0px 0px 8px 8px; 
 -moz-border-radius: 0px 0px 8px 8px; 
 -webkit-border-radius: 0px 0px 8px 8px; 
 border: 1px solid black;
 border-top: none;
 z-index: 101;
 display: none;
 cursor: pointer;
}

.success_message, .error_message, .info_message {
 color: black;
 display: none;
}

#message_div_shadow {
 position: absolute;
 width: 100%;
 opacity: 0.55;
 filter:alpha(opacity=1); /* For IE8 and earlier */
 top:0px;
 height:100%;
 z-index: 100;
 background: white;
 display: none;
}