/* css for the message of the day on MOL front page */
/*                                                  */
/* The message area is a div with id="motd".        */
/* A few kinds of MOTD styles are defined here.     */
/* A message having an appropriate look can be had  */
/* by tagging the message with one of the classes   */
/* styled here.                                     */

/* reset many default styles */
#motd * {
  margin: 0;
  padding: 0;
}

/* basic elements */

/* specific motd classes */
#motd {
  width: 100%;
  padding-bottom: 10;
}

.motd_note {
  background: #E0F3D0;
  color: #000000;
  font-family: arial;
  font-size: 1em;
  text-align: center;
}

.motd_urgent {
  background: #FFFFCC;
  border-style: double;
  color: #FF0000;
  font-family: arial;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  /*text-decoration: blink;*/
}

