/*----------------------------------------------
 |  base.css |
 |-----------
 |  Basic elements (body,a,img,hr...)
 *---------------------------------------------*/
body {
  background-color: #FFFFFF;  
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px;
  color: #000000;
  background-image: url(../images/bg.jpg);
}

a:link, a:active, a:visited {
  color: #B31D38;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: none;  
  border-bottom: 1px dashed #B31D38;
}

a.noborder {
  border: none;
}

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

img {
  border: none;
}

img.left {
  float: left;
  margin-bottom: 15px;
  margin-right: 20px;
}

img.right {
  float: right;
  margin-bottom: 15px;
  margin-left: 20px;
}


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