/*
 * file:    mazeLayout.css
 * author:  Michael Laskowski
 * date:    1/21/2008
 * purpose: layout for maze game, primarily concerned with placement of maze on page
 *          and styling spoken word box. Other styles are defined via javascript style
 *          property in mazeVisualGenerator.js
 */

#mazeContainer {
  position: absolute; left: 25%;
}

#wordSaidBox {
  position: absolute; top: 3%; left:1%;
  width: 20%;
  padding:  1px 0px;
  border:   1px solid green;
  background-color:yellow;
  text-align: center;
}

#wordSaidBoxLabel {
  margin:   0px 0px auto 0px;
  border-bottom: 1px solid black;
  font-weight: bold;
  color: green;
}

#wordSaidBoxLabel span {
  font-size:80%;
}

