body
  {
  margin: 0;
  padding: 0 0 0 0;
  }
div#fixedBox
  {
  position: absolute;
  top: 0px;
	right: 15px;
	background: #cc4444;
	padding: 0px 5px 0px 5px;
	color:#FFF;
  }
a.alerta {
	color:#FFF;
	text-decoration:none;
}

@media screen
  {
  /* Don't do this at home */
	div#fixedBox
    {
    position: fixed;
    }
  * html
    {
    overflow-y: hidden;
    }
  * html body
    {
    overflow-y: auto;
    height: 100%;
    padding: 0 0 0 0;
    font-size: 100%;
    }
  * html div#fixedBox
    {
    position: absolute;  
    }
  /* All done. */
  }

