/*base font settings*/

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:76%;
	color:#FFFFFF;
	}

/*the following classes are to demonstrate better line heights for narrow columns*/	
.narrow1{
	width: 50%;
	line-height: 1.3em;
	}
.narrow2{
	width: 50%;
	line-height: 1.5em;
	}
		
/*typography*/
h1 {
	font-size: 1.2em;
	font-weight: bold;
	color: #0A3569;
	padding: 0;
	margin: 0;
	/*both set to zero and padding in header div is used instead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	
	}
	
h2 {
	font-size: 1.4em;
	margin: 1.2em 0em -1.2em 0em;
	font-weight: normal;
	}
h3 {
	font-size: 1.2em;
	margin: 1.2em 0em -1.2em 0em;
	font-weight: normal;
	}
h4 {
	font-size: 1.0em;
	margin: 1.2em 0em -1.2em 0em;
	font-weight: bold;
	}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em -1.2em 0em;
	font-weight: bold;
	}
h6 {
	font-size: 1.0em;
	margin: 1.2em 0em -1.2em 0em;
	font-weight: bold;
	}
	
hr {
	background: url(/images/line.gif) 15px repeat-x;
	height: 15px;
	border: 0;
	}
	
img {
	border: 0;
	}
ol, ul, li {/*
	list-style: none;*/
	font-size: 1.0em;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em; 
	}
p {
	font-size: 1.0em;
	line-height: 1.8em;
	margin: 1.2em 0em 1.2em 0em;
	}
li > p {
	margin-top: 0.2em;
	}
pre {/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
	font-family: monospace;
	font-size: 1.0em;
	}
strong, b {
	font-weight: bold;
	}

	/* Links
------------------------------------*/

a:link {
	font-weight:normal;
	color: #FFCC00;
	text-decoration:underline;
	}
a:visited {
	font-weight:normal;
	color: #DDECFF;
	text-decoration:underline;
	}
a:active {
	font-weight:normal;
	color: #FFFFFF;
	text-decoration:underline;
	}
a:hover {
	text-decoration: none;
	color: #FFCC00;
	background: #02076A;
	}