<!--

/*
** A basic style sheet for my web site. (http://www.avalon.net/~tmcintos/)
** (c) 2002 Tim McIntosh. All Rights Reserved.
**
** References:
**	http://www.w3.org/TR/REC-CSS2/
**	http://www.htmlgoodies.com/tutors/html_ref.html
*/

/* Defaults */
body
{
	padding:		0.25cm;
	background-color:	black;
	color:			white;
	font-family:		"Lucida Grande", Helvetica, Arial, sans-serif;
	font-weight:		normal;
}

/* Margins */
h1,h2,h3,h4,h5,h6	{ margin-left: 0cm }
p			{ margin-left: 1cm }
blockquote		{ margin-left: 2cm }

/*
** Reset text color in tables.
**
** Should NOT need this one, but OmniWeb seems to need it;
** I think it has something to do with compatibility w/older
** browsers.
*/
table
{
	color: white
}

/* MS Word style "professional" table format */
table.professional
{
	background-color: white;
	color: black
}

table.professional th
{
	background-color: black;
	color: white
}

/* Links */
a
{
	font-style:		oblique;
	text-decoration:	none;
}

/* Mouse-over links */
a:hover			{ text-decoration: underline }

/* Internal links */
a:link			{ color: rgb(66%,66%,100%) }
a:visited		{ color: rgb(41%,41%,75%) }

/* External links */
a.ext:link		{ color: rgb(100%,66%,33%) }
a.ext:visited		{ color: rgb(75%,41%,8%) }

/* Overline text */
.over			{ text-decoration: overline }

-->
