body {
 color: #00EECC;
 background-color: #000000;
 text-align:center;
}

div {
 margin: auto;
 width: 95%;
 text-align:center; 
 }

div.button {
    display: flex;              /* establish flex container */
    flex-direction: row;     /* stack flex items vertically */
    justify-content: center;    /* center items vertically, in this case */
    align-items: center;        /* center items horizontally, in this case */
 }

 p {
 margin: auto;
 width: 95%;
 text-align:center;
}

/* unvisited link */
a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

table, th {
 margin: auto;  
 width: 98%;
 text-align:center;
 }

td {
 text-align:center;
 vertical-align: middle;
}

#MYFRAME {
  -moz-transform: scale(0.3, 0.3); 
  -webkit-transform: scale(0.3, 0.3); 
  -o-transform: scale(0.3, 0.3);
  -ms-transform: scale(0.3, 0.3);
  transform: scale(0.3, 0.3); 
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

#RBSH {
}
