/*
 * Cascading Style Sheet (CSS) for Kramer Family.
 * Copyright (c) 2004, Steven M. Kramer.  All rights reserved
 *
 * This is the default CSS for all regular (non-error) pages.
 *
 * See www.w3schools.com/css for CSS details.
 * See www.w3schools.com/css/ccs_colornames.asp for colors.
 * See www.websitetips.com/css for CSS tips.
 */

@import url("/css/kramer-common.css");

BODY {
  color: rgb(0,0,205);			/* medium blue */
  background-color: rgb(255,228,196) }	/* bisque */
HR {
  color: rgb(0,0,205) }
A:link {
  color: rgb(72,61,139) }		/* dark slate blue */
A:active {
  color: rgb(0,0,139) }			/* dark blue */
A:visited {
  color: rgb(148,0,211) }		/* dark violet */
A:hover {				/* must be after link & active */
  color: rgb(25,25,112) }		/* midnight blue */
A:focus {				/* for input */
  background: rgb(209,146,117) }	/* feldspar */
A:focus:hover {				/* for background while hovering */
  background: rgb(222,184,135) }	/* burly wood */
P.copyright {
  color: rgb(255,228,196);		/* bisque */
  background-color: rgb(0,0,205) }	/* medium blue */
TH {
  color: rgb(255,228,196);		/* bisque */
  background-color: rgb(0,0,205) }	/* medium blue */

