/*
 * torrey style.css
 *
 * Include in documents this in the <head></head> section:
 * <link rel="stylesheet" type="text/css" href="/style.css">
 *
 * Copyright © 2002 Dan Anderson. All rights reserved.
 */

/* "Global" Settings */
body		{ background: #ffffcc; color: black }
a:link		{ color: blue }
a:active	{ color: red }
a:visited	{ color: purple }

/*
 * Style Classes
 * Include in documents via the "class" property.  E.g.,
 * <td class="menubar"> or <span class="signature">
 */
.menubar	{ background: #34208b; color: white;
		  text-align: left; font-size: 10pt; font-weight: bold;
		  font-family: arial,helvetica,univers,verdana,geneva,"lucida sans",sans-serif; }
.menubar a:link {text-decoration: none; color: white }
.menubar a:visited {text-decoration: none; color: white }
.menubar a:hover {text-decoration: none; background: blue; color: #ffffcc }
.menubar a:active {text-decoration: none; color: #ffffcc }

.signature	{ color: gray; text-align: left; font-size: 8pt; }

/* end, holly style.css */

