/* paragraph class for diy listings */


P.listing {background: #FFFFFF }





/* link behavior */


a:link { color: #0000FF}
A:active { color: #00ff00; ; background-color: #FF0033; border-color: #9966ff black black; border: groove; border-width: thin medium medium thin}	
a:hover { color: #CC0033; background-color: #FFFF00}
a:visited { color: #330033}


/* lose link underlining */
a	{
	text-decoration: none;
	}

/* leading! - yes, html is the root element */
html	{
	line-height:	1.33
	}

/* zeroes out the defaults in preparation for redefinition */
address, blockquote, dd, dir, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, li, menu, ol, p, pre, table, ul	{
	margin:	0;
	padding:	0;
	}

/* improves layout in certain nesting contexts - this is CSS-2 stuff */
dir:first-child, dl:first-child, fieldset:first-child, form:first-child, menu:first-child, ol:first-child, p:first-child, pre:first-child, ul:first-child, dt:first-child	{
	margin-top:	0;
	}

/* this indents consecutive paragraphs, removing inter-paragraph space using CSS-2. 
Uncomment if you want to try.
p+p	{
	text-indent:	5% !important;
	margin-top:	-.667em;
	} */

/* sets minimal inter-block space */
dir, dl, fieldset, form, menu, ol, p, pre, ul	{
	margin:	.667em 0;
	}

/* puts headings closer to things headed than to previous items */
h1, h2, h3, h4, h5, h6, th	{
	margin:	1.667em 0 0 0;
	text-align:	left;
	line-height: 1.1;
	}
h1	{
	margin:	2em 0 1em 0;
	}

/* makes list-item indent proportional to column width and equal to paragraph indent -
can cause problems with lists in narrow-column contexts */
li, dd	{
	margin:	0 0 0 5%;
	}
ul ul li, ol ol li, ul ol li, ol ul li, td li	{
	margin:	0 0 0 5%;
	}
ul ul, ol ol, ul ol, ol ul	{
	margin:	0;
	}
dt	{
	margin-top:	.667em;
	}
dt:first-child	{
	margin-top:	0;
	}
blockquote	{
	margin:	.667em 0 .667em 5%;
	}
hr, address	{
	margin:	1.667em 0;
	}
h1, h2, h3, h4, h5, h6, dt, th	{
	font-weight:	bold;
	font-style:	normal;
	}

/* makes heading sizes/formatting more reasonable */
h1	{
	font-size:	1.75em;
	}
h2	{
	font-size:	1.33em;
	}
h3	{
	font-size:	1.125em;
	font-style:	italic;
	}
h4	{
	font-size:	1em;
	}
h5	{
	font-size:	1em;
	font-weight:	normal;
	font-style:	italic;
	}
h6	{
	font-size:	1em;
	font-weight:	normal;
	}
pre, code, kbd, samp, tt	{
	font-size:	1em;
	font-family: "Andale Mono", monospace;
	}
