/*----------------------------------------------
 |  base.css |
 |-----------
 |  Basic elements (body,a,img,hr...)
 *---------------------------------------------*/
body {
  background-color: white;  
  font-family: Georgia;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin: 0px;
  padding: 0px;
  padding-bottom: 20px;
  color: black;
}

a:link, a:active, a:visited {
  color: #00924B;
  text-decoration: none;  
}

a:hover {
  color: #00924B;
  text-decoration: underline;  
}

hr {
  padding: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  border: 1px solid #ABA000;
  height: 1px;
  width: 80%;
}

img {
  border: none;
}

img.left {
  float: left;
  margin-bottom: 5px;
  margin-right: 10px;
  border: 5px solid #EEEEEE;
}

img.right {
  float: right;
  margin-bottom: 5px;
  margin-left: 10px;
  border: 5px solid #EEEEEE;
}