#notificationsContainer {
  position           : absolute;

  width              : 350px;

  z-index            : 1;

  border-radius      : 8px;
  background         : #fff;
  color              : #444;

  display            : none;

  -moz-box-shadow    : 0 0 25px 0 #888;
  -webkit-box-shadow : 0 0 25px 0 #888;
  box-shadow         : 0 0 25px 0 #888;

}

#notificationsContainer div {
}

#notificationsContainer div.closeButton {
  position : absolute;
  right    : 5px;
  top      : 5px;
  cursor   : pointer;
}

#notificationsContainer div.pointerPart {
  position : absolute;
  left     : 60px;
  top      : -10px;
}

#notificationsContainer div.middlePart {
  margin : 16px 16px;
}

#notificationsContainer div.subject {
  font-size   : 13px;
  font-weight : bold;
}

#notificationsContainer div.main {

}

#notificationsContainer table tr td {
  vertical-align : top;
}

#notificationsContainer div.image {
  padding-right : 13px;
}

#notificationsContainer div.body {
  font-size : 11px;
  margin    : 5px 0 0 0;
}


