/*  I just learned how to create COMMENTS in CSS documents.  */

/*  This sets the background color for links to change  */
/*  to blue when the mouse hovers over a link.  */
a:hover {
  text-decoration: underline;
  background: #0066BB;
/*  background-image: none; */
  color: #FFFFFF;
}

/*  This is for the links that point to daily journal entries.  */
.daylink {
  font-size: xx-small;
  font-family : Arial, Helvetica, sans-serif; 
  background: none;
  color : #000080; 
  text-align : left; 
}

/*  This is for the links that point to other pages.  */
.link {
  font-size: small;
  font-family : Arial, Helvetica, sans-serif; 
  background: none;
  color : #000080; 
  text-align : left; 
}

/*  This is for the daily journal entries.  */
.journal {
  text-align: left;
; font: normal x-small Verdana, Arial, Helvetica, sans-serif
}

/*  This for quotations from emails.  */
.email {
  font-family: "Courier New", Courier, mono;
  font-size: small;
  margin-right: 50px;
  margin-left: 50px;
}
