html{
  background: black;
}
body{
  background: black;
  font-family: Courier New, Courier, monospace;
  color: #0f0;
}
a,
a:visited{
  color: inherit;
  text-decoration: none;
}

::-moz-selection{
  background: #0f0;
  color: black;
}
::selection{
  background: #0f0;
  color: black;
}

#owrap{
  display: table;
  position: static;
  height: 100%;
  margin: auto;
  width: 400px;
  text-align: center;
}

#iwrap{
  display: table-cell;
  vertical-align: middle;
  position: static;
}

#iiwrap{
  height: 400px;
}

#header{
  font-weight: bold;
  font-size: 150%;
}

#help-wrap{
  font-weight: bold;
  text-align: right;
}
#help{
  cursor: pointer;
}
#help-text{
  font-weight: bold;
  position: absolute;
  width: 400px;
  z-index: 3;
  background: black;
  height: 400px;
  text-align: left;
  cursor: default;
}
#ok-wrap{
  text-align: right;
}
#ok{
  cursor: pointer;
}

#input{
  width: 400px;
  border: 2px solid #0f0;
  padding: 4px;
  background: black;
  margin-bottom: 10px;
  margin-top: 3px;
  font-weight: bold;
  color: #0f0;
  font-family: Courier New, Courier, monospace;
}

#board{
  height: 300px;
  border: 2px solid #0f0;
  border-right: 0px;
}

#board.lose{
  background: #0f0;
}


#left-paddle,
#right-paddle{
  position: relative;
  background: #0f0;
  width: 10px;
  height: 80px;
  margin-top: 2px;
  margin-bottom: 2px;
}

#right-paddle{
  float: right;
  margin-right: 2px;
  top: 50px;
}

#left-paddle{
  float: left;
  margin-left: 2px;
  top: 20px;
  display: none;
}

#ball{
  position: relative;
  left: 40px;
  top: 50px;
  background: #f00;
  -moz-border-radius: 10px;
  width: 20px;
  height: 20px;
}

#board.lose #ball{
  background: black;
}

#win-message,
#lose-message{
  display: none;
  font-size: large;
  font-weight: bold;
  position: relative;
  color: black;
}
#lose-message a{
  text-decoration: underline;
}
#board.win #win-message,
#board.lose #lose-message{
  display: block;
}

#points {
  float: left;
}

#footer {
  text-align: right;
  font-family: monospace;
  font-size: 75%;
}

#cc{
  position: relative;
  top: 4px;
}
