@media print{
 .errorMessage{
  display: none;
 }
 
 .errorNotice{
  display: none;
 }
}

.errorMessage{
 margin: 0px 10%;
 padding: 0px 20px;
 font-family: sans-serif;
 text-align: center;
 color: white;
 font-size: 10pt;
 font-weight: normal;
 background-color: red;
 position: fixed;
 left: 0px;
 top: 10px;
 z-index: 999;
}

.errorNotice{
 margin: 0px 10%;
 padding: 0px 20px;
 font-family: sans-serif;
 text-align: center;
 color: white;
 font-size: 10pt;
 font-weight: normal;
 background-color: green;
 position: fixed;
 left: 0px;
 top: 10px;
 z-index: 999;
}
