@charset "UTF-8";
/* CSS Document */

 #popupbox{
  margin: 0; 
  margin-left: 40%; /* This gets it relatively center on the screen */
  margin-right: 40%; /* This gets it relatively center on the screen */
  margin-top:20%; /* Makes it a little off the top of the screen */
  padding: 0; /*  Make the text not touching the top on the login box */
  width: 275px; /* For centering it on the screen */
  height: auto; /* The height of the login box */
  position: absolute; /* Makes sure its absolute so it doesn't dock with everything else */
  background: #ffffff; /* Login Box background color. Change this if desired. */
  border: solid #00ccff 2px; /* Makes a black border around the login box */
  z-index: 10000; /* Makes it on top of everything else */
  font-family: arial; /* Sets the font */
  visibility: hidden; /* Makes it hidden at first. Very Important.*/
  }
  h1.loghead {background:#00ccff;width:93%;height:10px;padding:10px;margin:0;font-size:12px;color:#ffffff;}
  a.closeme {position:absolute;top:10px;right:10px;color:#ffffff;}

