/** CSS 2.0 STYLESHEET for stokDEBUG.js alert box
    author: Giga Gerard 2014 ****/
body {
  position: relative;      /* allow positioning */
}
div.page {
  padding-bottom: 120px;      /* get some space */
}
#stokAlertBox {           /* a custom alert box */
  position: absolute;
  bottom: 0px; left: 0px;
  width: 628px;
  background-color: yellow;
  color: red;
  padding: 2px 6px;
  border-top: solid 2px red;
  border-bottom: solid 2px red;
  cursor: pointer;
  display: none;     /* show & hide dynamically */
}
