/* 
    Document   : stylesheet_05_messages
    Created on : 12.01.2010, 22:00:53
    Author     : jnitschke
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

.messageStackSuccess, .messageStackError, .messageStackWarning, .messageStackCaution {
  margin: 5px 25px;
  font-weight: normal;
  padding: 5px 25px;
  border: solid 1px #F7941D;
}

.messageStackSuccess img, .messageStackError img, .messageStackWarning img, .messageStackCaution img {
  display: none;
}

.messageStackSuccess {
  margin: 5px 25px;
  background: transparent url(../images/icons/success.gif) no-repeat 5px 5px;
  color: #F7941D;
}

.messageStackError {
  background: transparent url(../images/icons/error.gif) no-repeat 5px 5px;
  color: red;
}

.messageStackCaution {
  background: transparent url(../images/icons/warning.gif) no-repeat 5px 5px;
  color: red;
}

.messageStackCaution em {
  margin-left: 2em;
}

.messageStackWarning {
  background: transparent url(../images/icons/warning.gif) no-repeat 5px 5px;
  color: #F7941D;
}

.alertBlack {
  font-weight: bold;
}

.alert {
  color: #F7941D;
}



