/*

styles.css - high beam research stylesheet / v1.0
the basic style rules that style HTML elements, a base class or two, and some color abstractions

*/


/* BEGIN: basic tag definitions ============================================= */

BODY {
	margin: 0; padding: 0;
	background-color: #FFF;
	color: #000;
	font-family: 'lucida grande', tahoma, arial, helvetica, sans-serif;
	font-size: 100%;
}

/* -- header styles */
H1, H2, H3, H4, H5, H6 { color: #369; margin: 0; padding: 0; }
H1 { font-size: 115%; /*/*//*/ font-size: large; /* */ }
H2 { font-size: 110%; /*/*//*/ font-size: large; /* */ }
H3 { font-size: 95%; /*/*//*/ font-size: medium; /* */ }
H4 { font-size: 80%; /*/*//*/ font-size: medium; /* */ }
H5 { font-size: 75%; /*/*//*/ font-size: small; /* */ }
H6 { font-size: 70%; /*/*//*/ font-size: small; /* */ }

H6 { color: #000; }


/* -- standard elements we'll use for text on the site */
/* .txt should be used on DIVs and SPANs instead of a P (when text is not logically a paragraph) */
P, LI, DT, DD, PRE, .txt { font-size: 70%; /*/*//*/ font-size: small; /* */ }
P { margin-top: 0em; }

/* just for NS4 */
/*/*//*/ DL, OL, UL { font-family: geneva, arial, helvetica, sans-serif; color: #000; font-size: small; } /* */ 

/* -- our link colors */
A { color: #C00; }
A:link { color: #C00; }
A:active { color: #C00; }
A:hover { color: #C00; }
A:visited { color: #C00; }


/* -- control of margin/padding on these elements */
FORM { margin: 0; padding: 0; }
FIELDSET { margin: 0 !important; padding: 0 !important; border: none !important; }
LEGEND { margin: 0; padding: 0; }

/* -- some form elements to be styled, maybe? */
SELECT, OPTION, INPUT, TEXTAREA { }


/* -- lists lists lists! */

/* just for NS4 */
/*/*//*/
UL { margin-left: -2em; }
.sideCol UL LI { margin-bottom: 5px; }
/* */

.noBullet { margin: 0; padding: 0;
	/*/*//*/ margin-left: -2em; margin-bottom: 8px; /* */ /* just for NS4 */
	}

.noBullet LI { /*/*/ list-style: none; /* */  /*hide from NS4 */ }

.dotBullet { margin: 0; padding: 0; margin-left: 1em; }
.dotBullet LI {
	list-style-image: url(/img/icon.bullet.dot.gif);
	margin: 0; padding: 0;
	}


DL, DT, DD { margin: 0; padding: 0; }
DT { font-weight: bold; }
DD {
	/*/*/margin-bottom: 1em;/* */    /* hide from NS4 */
	/*/*//*/margin-left: -2em;/* */  /* just for NS4 */
	}

/* -- hide HRs */
HR { display: none; }

.print {
	color: #000;
	font-family: times, times roman;
	font-size: 1.5em;
} 

/* END: basic tag definitions */
