/*************************************************
* hotel.css
*
* Defines the styles for the entire site.
*
* Author: Craig Thayer (craigthayer@comcast.net)
*************************************************/

/* main page styles */
table.main{
  border-width: 1;
  border-style: solid;
  border-color: #000000;
}

td.main_center{
  text-align: center;
}

p.copyright{
  font-style: italic;
  font-size: 10pt;
}

a.disclaimer{
  font-size: 10pt;
}

a.useragreement{
  font-size: 10pt;
}

a.contact{
  font-size: 10pt;
}

/* search page styles */
table.search{
  border-width: 1;
  border-style: solid;
  border-color: #000000;
  width: 500;
}

tr.search_even{
  background-color: #FFFFFF;
}

tr.search_odd{
  background-color: #FFFFCC;
}

td.search{
  border-top-width: 1;
  border-top-style: solid;
  border-top-color: #000000;
}

/* detail page styles */
table.detail{
  border-width: 1;
  border-style: solid;
  border-color: #000000;
  width: 300;
}

td.detail_center{
  text-align: center;
}

/* edit page styles */
table.edit{
  border-width: 1;
  border-style: solid;
  border-color: #000000;
  width: 400;
}

td.edit_center{
  text-align: center;
}

p.edit_error{
  color: red;
}

p.edit_success{
  color: green;
}

.required {
color: red;
font-size: small;
}