
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #EEEEEE; /* body background is grey */
}






img { /* image borders are invisible - same color as body background; */
  border: thin solid #EEEEEE;
/*border-top-width   : thin; */
/*border-right-width : thin; */
/*border-bottom-width: thin; */
/*border-left-width  : thin; */
/*border-color       : #EEEEEE; */
}

img.lnk:hover { /* when mouse is over linked image */
  border: thin solid #0000FF; /* border changes to blue */
  border-color:      #0000FF;
  cursor: pointer;            /* cursor changes to hand */
}

a:hover { /* when mouse is over links */
  background-color: yellow; /* background changes to yellow */
}

td { /* table cells are centered */
  text-align: center;
}

/* Classes */

.Bld { /* items in this class are bolded */
  font-weight: bold;
}

.Ctr { /* items in this class are centered horizontally */
  text-align  : center;
  margin-left : auto;
  margin-right: auto;
}

.Lrg { /* items in this class are Large */
  font-size: large;
}
.Rit { /* items in this class are right-justified */
  text-align: right;
}
.Lft { /* items in this class are left -justified */
  text-align: left;
}
.Sml {
  text-size: small;
}
.Spacer {
  width: 40px;
}
