body
{
  background-color: black;
  margin: 0px;
  padding: 0px;
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 12px;
  font-color: white;
}


img
{
  border: 0px;
}

img#title
{
  position: absolute;
  left: 18px;
  top: 14px;
  width: 236px;
  height: 46px;
}

img#man
{
  position: absolute;
  left: 24px;
  top: 74px;
  width: 433px;
  height: 433px;
}

img#distributor
{
  position: absolute;
  left: 622px;
  top: 426px;
  width: 62px;
  height: 57px;
}


img.button
{
  position: relative;
  top: 14px;			/* Locates link buttons relative to link text */
  width: 35px;
  height: 35px;
}

a.button			/* stylizes the link text */
{
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
/* in the HTML each button is placed with CSS. the "top" value is 14 less than the location of the button due to the img.button positioning */
}

a.button:hover
{
  color: #fbe772;  /* change to whatever color you want */
}

a.button:active
{
  color: #eab259;  /* change to whatever color you want */
}