/*----------------------------------------------
 |  base.css |
 |-----------
 |  Basic elements (body,a,img,hr...)
 *---------------------------------------------*/
body {
  background-color: #FFFFFF;  
  background-image: url(../images/bg.gif);
  font-family: Trebuchet MS;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin: 0px;
  padding: 0px;
  padding-bottom: 20px;
  padding-top: 20px;
  color: #534640;
}

a:link, a:active, a:visited {
  color: #790000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;  
}

hr {
  border: 1px dashed #EEEEEE;
  height: 1px;
}

img {
  border: none;
}

img.left {
  float: left;
  margin-bottom: 5px;
  margin-right: 10px;
}

img.right {
  float: right;
  margin-bottom: 5px;
  margin-left: 10px;
}


img.center {
  margin-bottom: 5px;
  margin-right: auto;
  margin-left: auto;
}