/**********************************************************************************
    FLASH MESSAGE
**********************************************************************************/

.flash_msg {
  background: none repeat scroll 0 0 #BCDD5B;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  z-index: 11000;
}
.flash_msg p {
  color: #FFFFFF;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  width: 972px;
  padding-left: 18px;
}
.flash_msg.success {
  background: none repeat scroll 0 0 #BCDD5B;
  border: none; /* workaround for overwritten styles by admin.css file */
  border-bottom: 1px solid #A8C84B;
  padding: 0 !important;
}
.flash_msg.success p {
  background: url(../img/flash-check.png) no-repeat scroll 0 21px transparent;
}
.flash_msg.error {
  background: none repeat scroll 0 0 #F05931;
  border: none; /* workaround for overwritten styles by admin.css file */
  border-bottom: 1px solid #DA4D27;
  padding: 0 !important;
}
.flash_msg.error p {
  background: url(../img/flash-warning.png) no-repeat scroll 0 21px transparent;
}