/*****************************************************************
** dicemachine.css
** 
** This is the CSS file for the "dicemachine" html page. 
** 
** Copyright 2004 by Brian Douglas Skinner <skinner@gumption.org>
*****************************************************************/

html, body {
  background: #000000;
  /* color: rgb(0%,0%,0%); */
}


/*****************************************************************
** Menu styles
*/

#menuBar {
  background: #cccccc;  
  width: 100%;
  height: 22px;
  margin-bottom: 0px;
}

#menuBarBlankSpace {
  background: #cccccc; 
  width: 100%;
  height: 22px;
}

.mainMenuItem {
  background: #cccccc;
  font-family: Arial; 
  font-size: 12px; 
  float: left;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 5px;
  padding-right: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: #cccccc;
}

.mainMenuItem a {
  vertical-align: middle;
}

.subMenu {
  background: #cccccc;
  border-style: outset;
  border-width: 2px;
  border-color: #ffffff #000000 #000000 #ffffff;
  display: none;
  visibility: hidden;
  z-index: 11;
}

#subMenuDiceMachine {
  position: absolute;
}

#subMenuPlayers {
  position: absolute;
}

.subMenuItem {
  background: #cccccc;
  font-family: Arial; 
  font-size: 12px; 
}

.subMenuItem td {
  margin: 0px;
  border: 0px;
  padding: 1px 4px 1px 4px;
}

.subMenuItem:first-child {
  width: 8px;
  text-align: right;
}

.subMenuItem:hover {
  background: #000d77;
  color: #ffffff;
}

.menuTable {
  border: 0px;
  margin: 0px;
  padding: 0px;
}


/*****************************************************************
** Major page regions
*/

#mainArea {
  background: rgb(95%,95%,100%);
  border-top: solid thin #000000;
}

#leftSide {
  background: rgb(95%,95%,100%);  
  float: left;
  padding: 0% 2%;
  width: 45%;
}

#rightSide {
  background: rgb(95%,95%,100%);
  float: right;
  width: 50%;
}

.clearing {
  height: 0px;
  clear: both;
  margin: 0px;
}

.center {
  text-align: center;
}


/*****************************************************************
** Left side elements
*/

#currentRoll {
  font-family: cursive;
  font-size: 600%;
  font-weight: bold;
  background: rgb(95%,95%,100%);
  border-style: none;
  text-align: center;
}
  /* color: rgb(0%,0%,0%); */

#rollDice {
  font-size: xx-large;
  padding: 0px;
  margin: 0px;
}

#turnCounter {
  font-family: sans-serif;
  font-size: xx-large;
  background: rgb(95%,95%,100%);
  color: rgb(10%,10%,10%);
  border-style: none;
  text-align: center;
  width: 100%;
}

#outerTurnScrollWell {
  width: 100%;
  background: rgb(90%,90%,90%); 
  border: solid 1px rgb(70%,70%,70%);
  visibility: hidden;
}

#innerTurnScrollWell {
  width: 100%;
  background: rgb(90%,90%,90%); 
  border: none;
}

#turnScrollGrip {
  width: 99%;
  background: #cccccc;  
  color: rgb(0%,0%,0%);
  font-size: x-small;
  font-family: sans-serif;
  border-style: outset;
  text-align: center;
  margin-left: 0%;
  margin-right: 0%;
  vertical-align: 2px;
}

#rollCustom {
  vertical-align: middle;
}

#oneto {
  font-family: sans-serif;
  font-size: medium;
  width: 20px;
  background: rgb(95%,95%,100%);
  color: rgb(0%,0%,0%);
  border-style: none;
  text-align: center;
}

#customRollMax {
  font-family: sans-serif;
  font-size: medium;
  width: 25px;
}

#customRoll {
  font-family: sans-serif;
  font-size: xx-large;
  width: 40px;
  background: rgb(95%,95%,100%);
  color: rgb(40%,40%,40%);
  border-style: none;
  text-align: center; 
  vertical-align: middle;
}


/*****************************************************************
** Right side elements
*/

#histogramTable {
  width: 100%;
}

.rowLabel {
  width: 5%;
  font-size: x-large;
  font-family: sans-serif;
  color: rgb(100%,0%,0%);
}

.histBar {
  width: 100%;
  background: rgb(95%,95%,100%);  
}

.inputBar {
  width: 100%;
  background: rgb(0%,0%,0%);  
  color: rgb(100%,100%,100%);
  font-size: x-large;
  font-family: sans-serif;
  border-style: none;
  text-align: right;
}


/*****************************************************************
** Debug text area
*/

#debugOutput {
  font-family: Courier, monospace;
  font-size: x-small;
  border-style: none;
  text-align: left;
  visibility: hidden;
}


