/* Basic settings */
body { color: black; font-family: arial }
a:link		{ color: blue }
a:visited	{ color: #0000a0 }
a:hover		{ color: black }
a:active	{ color: red }

/* NOTE: top right bottom left */

/* used to box things together */
.fullbox	{ border-style: solid; border-width: 1px; border-color: black; margin-left: 10px; margin-right: 10px; }
.topbox		{ border-style: solid; border-width: 1px 1px 0 1px; border-color: black; 
			margin-bottom: 0; }
.bottombox	{ border-style: solid; border-width: 0 1px 1px 1px; border-color: black; 
			margin-top: 0; background-color: white; }

/* How to display the content */
h1 { font-size: 200%; text-align: center; font-weight: 800; }
h2 { font-size: 100%; text-align: left; font-weight: bold; padding: 0.25em; }
p	{ margin-bottom: 0.5em; padding-right: 1em; padding-left: 1em; text-align: left; }
ul	{ margin-top: 0; margin-bottom: 0.5em; padding-top: 0.5em; } 
ul ul { padding-top: 0; margin-bottom: 0; }
div.bottombox p.firstline { margin-top: 0; padding-top: 0.5em; padding-bottom: 0; }

p.img { text-align: center; }

/* For navigations at the top of the page */
.navlinks	{ margin: 0; padding: 0.25em; border-style: solid; border-width: 0px 1px 0 1px; border-color: black; text-align: left; }

/* Displays the title as an unmarked link */
h1 a			{ text-decoration: none; }
h1 a:link		{ color: black; }
h1 a:visited	{ color: black; }
h1 a:hover		{ color: black; }
h1 a:active		{ color: black; }

/* random other items */
.postscript { font-size: 80%; font-style: italic }
ul { list-style-type: circle }
a.joe:hover { background-color: black; color: #00ff00 }
a.highstick:hover { background-color: red; color: white; font-weight: bold }


