/* This is some basic CSS for the example widgets provided with
   XBLinJS. There are some Moz-specific elaborations but nothing that 
   should make it fail to render in other browsers. */

/* Drop down specifications */

div.DropDownDiv {
  border: 4px ridge #888888;
  background-color: white;
  font-size: 90%;
  font-family: Arial;
}

div.DropDownInterior {
  margin: 0px;
  padding: 0px;
}

div.DropDownChoice0 {
  width: 100%;
  background-color: #FFFFFF;
  cursor: crosshair;
}

div.DropDownChoice1 {
  width: 100%;
  background-color: #EEEEEE;
  cursor: crosshair;
}

div.SelectedChoice {
  background-color: #000000;
  color: #FFFFFF;
  cursor: crosshair;
}

div.DropDownEmpty {
  background-color: #FFFFFF;
  color: #BBBBBB;
  font-style: italic;
}

.fullWidth {
  width: 100%;
}

/* Javascript Console CSS */
.Console { 
  background-color: white; 
  border: 1px solid black;
  padding-left: 2px;
}

.ConsoleOutput { 
  white-space: -moz-pre-wrap;
  color: black;
  background: white;
  margin: 0;
}

.ConsoleInputBox {
  padding: 0;
  border: none;
  width: 100%;
}

.ConsoleError { 
  color: red;
}

.ConsoleInput, .ConsoleInputBox {
  color: blue;
  background: white;
  font: inherit;
  font-weight: bold;
  width: 100%;
  margin-top: .5em;
}

.ConsoleTabComplete {
  color: purple;
}

.ConsolePrint {
  color: brown;
}

.ConsolePropList {
  color: green;
}

.ConsoleMessage {
  color: green;
}

.ConsoleHelpDisplay {
  color: #8888FF;
}

.ConsoleHelp {
  vertical-align: super;
  font-size: x-small;
}

.ConsoleAccessKey {
  font-size: smaller;
  font-family: monospace;
  color: #8888FF;
}

.ConsoleShellCommands {
  border: 2px dashed #BBBBFF;
  background-color: #EEEEFF;
  margin-left: 1em;
  margin-right: 1em;
}