#notification-bar-messages {
  width: 100%;
  position: relative;
}
.notification-bar-message {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  color: #735005;
  text-align: center;
  line-height: 1.4em;
  zoom: 1;
}
.notification-bar-message.collapsible:hover {
  cursor: pointer;
}
.notification-bar-status .content-left {
  float: left;
  text-align: left;
  color: #fff;
  padding: 0 10px;
  margin: 10px 10px 0 0;
  font-size: 15px;
  font-style: italic;
  width: 11%;
  overflow: hidden;
}
.notification-bar-status .content-right {
  float: right;
  color: #fff;
  margin: 10px 12px 0 0;
  width: 11%;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 3px;
  background-color: red;
}
.notification-bar-message .content {
  margin: 0;
  padding: .5em 1.5em 0 1.5em;
  border-bottom: .5em solid transparent;
  overflow: hidden;
  float: left;
  width: 66%;
}
.notification-bar-message .content a {
  text-decoration: underline;
}
.notification-bar-status {
  background-color: #A4C639;
}
#notification-bar-show {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: transparent #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  z-index: 1;
}
.notification-bar-show {
  display: block;
  width: 16px;
  height: 16px;
  /* Ugly hack for IE, as it does not support Box Shadow. */
  border-left: 1px solid #666\9;
  border-bottom: 1px solid #666\9;
}
/* And for Opera too. Ugh. */
noindex:-o-prefocus, .notification-bar-show {
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
}
