/* ckdstyle.css - "house style" for ckd, ckdhr.com's pages */
/* $Id: ckdstyle.css,v 1.30 1998/08/18 20:53:33 ckd Exp $ */

/* It would be nice if someone supported the entire CSS1 spec.  Nobody does.
   Everyone seems to support slightly different subsets, too. */

/* reinstated the "background: transparent".  User style sheets will
   come. Someday.  Right?  */

/* I try to stick to the "standard 16" color names:
   aqua, black, blue, fuchsia, gray, green, lime, maroon,
   navy, olive, purple, red, silver, teal, white, and yellow */


BODY {
	background: white;
	color: black;
}

H1, H2, H3, H4 {
	font-family: Verdana, sans-serif;
	color: navy;
	background: transparent;
}

H1 {
	text-align: center;
}

/* hide stuff that's put in to make things look better with CSS off */
.csshide {
	display: none;
}

/* was subhead, but real subheads need different rendering - no border */
/* used for marking the "sub-site" name.  usually used with SMALL to get
   reasonable rendering without CSS  */
.subsite {
	font-family: Impact, Verdana, sans-serif;
	font-size: medium;
	font-weight: normal;
	border: thin solid navy; /* only shows in Netscape 4? */
	/* tried setting a background; it looked bad in NS4 */
}

/* for true subheads.  usually used with SMALL inside H1 */
.subhead {
	font-size: medium;
	font-weight: normal;
}

.motto {
	font-family: "Zapf Chancery", cursive;
	font-size: small;
	font-weight: normal;
	text-align: center;
}

DIV.tocbar {
	font-size: small;
/* WIBNI Netscape could do CSS right? */
/*	border: thin solid gray; */
	width: 20em;
	float: right;
	margin: 0em;
	background: silver;
	padding-top: 6px;
	padding-bottom: 6px;
}

DIV.tocsmall {
	font-size: small;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
}

H2 {
	text-align: right;
	margin-right: 10%;
/*	float: right; */ /* ack!  explodes on NN4 at least */
}

H3 {
	text-align: left;
	margin-left: 2%;
}

H4 {
	text-align: left;
	margin-left: 3%;
}

HR { color: silver; }

.nav {
	color: black;
	background: yellow;
	text-align: center;
	border: 1px ridge;
	padding: 10px;
}

A:link {
	color: blue;
	background: transparent;
}
A:visited {
	background: transparent;
	color: purple;
}
A:active {
	background: yellow;
	color: red;
}

UL, OL, DL, P {
	margin-left: 4%;
	margin-right: 4%;
}
