/*
 * reddish.css: a stylesheet for my HTML files
 * Raju Varghese 2004-06-05
 */

body {
  background:LightYellow;
  margin: 4% 6% 0% 4%;
  color: FireBrick;
}

p,ol,ul,li {
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size:small;
}

code {
  font-family: monospace;
  font-size:small;
}

h1 {
  margin-left: 0%;
  color: Maroon;
}

h2 {
  color: Maroon;
  margin-left: 0%
}

h3 {
  color: Maroon;
  margin-left: 2%
}

img {
  border: 4px solid FireBrick;
}

.session {
  background: ivory;
  padding: 1em;
  border: none;
  color: black
}

.file {
  background: Turquoise;
  padding: 1em;
  border: none;
  color: black
}

.note {
  background: YellowGreen
}

input, textarea {
  background: Wheat;
  border: 1px solid FireBrick;
}

.tiny {
  font-size:50%
}

.small {
  font-size:70%;
  color: darkgray
}

/* tables */

table {
  text-align: center;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 11px;
  color: FireBrick;
  background-color: LightYellow;
  border: 1px LightYellow solid;
  border-collapse: collapse;
  border-spacing: 0px;
}

td {
  border: 1px solid LightYellow;
  text-align: left;
  background-color: Wheat;
  padding: 5px;
  margin: 5px;
}

th {
  background-color: LightSalmon;
  text-align: left;
  text-indent: 5px;
}

td.number {
  text-align: right
}