/*
 *	John's custom styles
Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective.

Note: a:active MUST come after a:hover in the CSS definition in order to be effective.
 */
.home {
    background-color:black;
    padding-left:10px;
    padding-top:5px
}
/* unvisited link */
.home a:link {
  color: aqua;
}

/* visited link */
.home a:visited {
  color: aqua;
}

/* mouse over link */
.home a:hover {
  color: palegreen;
}

/* selected link */
.home a:active {
  color: blue;
}

