/* Gordon's external stylesheet for his Photo gallery web site. */

/* CSS rule #1 - for older browsers that don't understand the shortcut _background_ attribute with no qualifiers */
body {
  background-color: #CCFFFF;
  background-image: url(canvas.jpg);
  font-size: 12px; }

/* CSS rule #2 - set default body styles */
body {
  background: #CCFFFF url(canvas.jpg);
  font-family: Geneva, sans-serif, serif; 
  font-size: 12px; }

/* CSS rule #3 - set generic header, paragraph and unordered list styles */
h1, h2, h3, h4, h5, h6, p, ul {
  color: black;
}

/* CSS rule #4 - set horizontal rule styles */
hr {
  width: 98%;
  color: #006666;
}

/* CSS rule #5 - set generic list item styles */
li {
   color: black;
   font-size: 8pt;
}

/* CSS rule #6 - define anchor pseudo-classes and associated styles */
a:link { color: blue; font-size: 90%; }
a:hover { color: green; font-size: 100%; background-color: yellow; background: yellow; }
a:active { color: green; font-size: 100%; }
a:visited { color: red; font-size: 100%; }

/* CSS rule #7 - define stylesheet class and associated styles */
.dedication {
   font-weight: bold;
   color: #006666;
}

/* CSS rule #8 - define quote class and associated styles */
.quote {
   font-style: italic;
   color: #3300FF;
}

/* CSS rule #9 - define stylesheet class and associated styles */
.navbar {
   background: #CCCCCC url(../images/granite.gif);
   padding-left: 5px;
   padding-right: 5px;
   margin-left: 0;
   margin-right: 0;
   margin-top: 0;
   margin-bottom: 0;
}