/*CSS for site_map.html
September 6, 2006
*/


ul.sitemap {
font-family:Arial, Helvetica, sans-serif;
padding: 0em;
margin-left: 0em;
}


/*the font sizes for the list items on the sitemap are decreased to 81% of whats 
listed here because of the style applied to the body tag -approx line 12-- throughout
the site. list level 2 and 3 are each 1em bold, 1em normal respectively so should show up
as consistent with the tabletext size text throughout the rest of the site. */


.list1 {
	font-size: 1.2em;
	font-weight: bold;
	padding: inherit;
	margin-left: 1em;
	list-style-type:none;
	margin-bottom: 0.5em;
}
/*used an image for the bullet to get bullets of different colors and for consistancy across browsers
had to use the 'background position settings so that the bullet imgs would line up correctly in IE

margin-left moves the whole line item to the left
list style type has to be none or bullet will show up by default
background position puts the distance between the image and the first character of text-- -.02 em to the left--.3em vertically
text indent puts space between the image and the first character
*/

.list2 {
	font-size: .97em;
	padding: inherit;
	margin-left: 2em;
	list-style-type:none;
	line-height: 1em;
	margin-top: 0.60em;
	font-weight: bold;
	background-image: url(../images/template/a2li_reddot.gif);
	background-repeat: no-repeat;
	background-position: 0em 0.2em;
	display: list-item;
	text-indent: 0.95em;
}


.list3 {
	font-size: .97em;
	padding: inherit;
	margin-left: 3.5em;
	line-height: 1.3em;
	background-image: url(../images/template/a3li_bluedot.gif);
	background-repeat: no-repeat;
	background-position: -0.01em 0.4em;
	display: list-item;
	list-style-type:none;
	text-indent: 0.95em;
	margin-top: .15em;
}

.list4 {
	font-size: 0.93em;
	padding: inherit;
	margin-left: 5em;
	line-height: 1.4em;
	background-image: url(../images/template/a4li_blackdot.gif);
	background-repeat: no-repeat;
	background-position: -0.04em 0.5em;
	display: list-item;
	list-style-type:none;
	text-indent: .85em;
}





/* these a styles are added bere because i removed these from 
the site_map.html page when i detached the page from the template. 
On the template, these a: tags have no text decoration-underline.
so now the links on the site map 
can be underlined, and still have the same link colors as the rest of the site.*/

a:link {
	color: #084681;
}
a:visited {
	color: #084681;
}
a:hover {
	color: #cc0000;
}
a:active {
	color: #084681;
}
