/* 
Document   : style
Created on : 30-Jan-2009, 11:20:42
Author     : ivan
Description:
Purpose of the stylesheet follows.
*/

/* 
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
  display: block;
}

body {    
  font-family: helvetica, sans-serif;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: smaller;
}

td {
  vertical-align: top;
}

a.menu {
  color: white;
  background-color: black;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
}

.content, .innerBox {
  background-image: url(images/background.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}

.heading {
  font-weight: bold;
  font-variant: small-caps;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.title {
  margin: 2px;
  padding: 0px; 
}

.innerBox {
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  background-image: url(images/50pcBackground.png);
  background-color: #eeeeee;
}

.odd {
  background-color: #d6f1ca;
}
.even {
  background-color: #a7e08e;
}
.odd, .even {
  padding: 1px;
}

