/* overlay when showing a message */
div.message-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2009;
}

/* Message popup */
div.message {
  top: -9999px;
  position: fixed;
  padding: 10px 0px;
  padding: 20px;
  background: #08c;
  text-align: center;
  left: 50%;
  font-weight: bold;
  border: 1px solid #AAA;
  z-index: 2010;
  color: white;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
  width: 300px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

div.message.in {
  top: 48%;
  filter: alpha(opacity=100);
  opacity: 1;
  margin-left: -150px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: 10px 10px 2px #CCC;
  -webkit-box-shadow: 10px 10px 2px #CCC;
  -moz-box-shadow: 10px 10px 2px #CCC;
  -o-box-shadow: 10px 10px 2px #CCC;
}
