/* Appearance of links, in general */

a:link, a:visited, a:active, a:hover {
  text-decoration: none;
  font-weight: bold; 
  }
a:link {
  color: blue;
  }
a:visited {
  color: purple;
  }
a:active {
  }
a:hover {
  text-decoration: underline;
  color: #red; }

/* Appearance of the document body */

html, body {
  margin: 0; padding: 0;
  width: 100%; height: 100%;
  }
  
body {
  background-color: azure;
  font-family: sans-serif; font-weight: normal;
  font-size: 13px; line-height: 15px;
  color: black;
  }

td {
  font-family: sans-serif; font-weight: normal;
  font-size: 13px; line-height: 15px;
  color: black;
  }
li {
  font-family: sans-serif; font-weight: normal;
  font-size: 13px; line-height: 15px;
  color: black;
  }

.leftButton {
  background-color: lightblue;
  border:1px solid green;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  font-family: sans-serif; font-weight: normal;
  font-size: 14px;
  color: green;
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  }

.candButton {
  background-color: lightblue;
  border:1px solid green;
  font-family: sans-serif; font-weight: normal;
  font-size: 13px;
  line-spacing: 16px;
  color: black;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  }

.candButton:active {
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  background-color: #lightyellow;
  }

.candButton:hover {
  background-color: #lightyellow;
  }

.candImage {
  width: 72px;
  height: 96px;
  background-color: gold;
  border:1px solid green;
  -moz-transition: all 0.25s linear;
  -moz-border-radius: 5px;
  -webkit-transition: all 0.25s linear;
  -webkit-border-radius: 5px;"></TD></TR>
  }

.candImage:active {
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  }

.candImage:hover {
  opacity: 0.75;
  }

