/* Main.css
------------------------------
Author:    Luke Paireepinart
Copyright: Nico Schüler

Texas State University
Summer 2009
------------------------------
Brief Summary:
Style sheet for the website.
Contains all of the common style for the overall site.
program-specific styles are in separate style sheets.
*/


/******************
*    Navigation   *
******************/
table.menu
{
  border: 1px solid;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

td.menu
{
  border: 1px solid #006;
  background: #AACCEE;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: bold;
  font-size: x-large;
  cursor: pointer;
}


/******************
*     Buttons     *
******************/
.SubmitButton
{
    border: 1px solid #006;
    background: #AACCEE;
}

input.TextInput
{
    border: 1px solid;
    background: #FFFFCC;
}
input.CheckBox
{

}

/******************
*    Containers   *
******************/
body
{
  text-align: center;
  font-size: 15pt;
  background-color: #E7FFFF;
}

#outerBorder
{
  width: 800px;
  height: auto;
  min-height: 400px;
  margin: auto auto;
  border: solid;
  border-width: 2px;
  border-color: black;
  text-align: center;
}

#innerBorder
{
  margin: auto auto;
  width: auto;
  height: auto;
  min-height: 396px;
  min-width: 796px;
  background-color:#DDFFDD;
  border: solid;
  border-width: 2px;
  border-color: #AACCEE;
  text-align: center;
}

#container
{
  margin: auto auto;
  width: auto;
  height: auto;
}
#content
{
  margin: 20px 20px 20px 20px;
  width: auto;
}
#copy
{
  margin-top: 100px;
  text-align: center;
  width: auto;
}

#occurrence
{
  margin: 25px 25px;
  border: 2px solid green;
  padding: 25px;
}

#error
{
  font-weight: bold;
  font-family: monospace;
  font-size: smaller;
  color: red;
}