/* This stylesheet (dept_local_style.css) is used to control colors and other design elements that are unique to each department site. It is used in conjunction with the specific stylesheet for each department site. 

IMPORTANT: For the cascade of properties to inherit as designed, the two stylesheets must be linked in the head of the document in this order: first depts_global_style.css and then the local stylesheet. */


.colortop
	{
	background-color: #000000;
	margin: 0px;
	}

.colorsidenav
	{
	background-color: #000000;
	}

/* These declarations change the color and text-decoration properties of navtop (initially defined in depts_global_style.css) to achieve the mouseover effect. */
	
A.navtop:hover
	{
	color: #BFBFBF;
	text-decoration: underline;
	} 		

/* This declaration changes the color and text-decoration properties of navside (initially defined in depts_global_style.css) to achieve the mouseover effect. */

A.navside:hover 	
	{
	color: #993399;
	text-decoration: underline;
	}

/* Use the URhere class on plain text in the left nav to indicate that you are on the page that is named. Use the URhere class on a link to indicate that you are on a lower level page in the section indicated. */
.URhere
	{
	color: #993399;
	}

a.URhere:hover
	{
	color: #BFBFBF;
	text-decoration: underline;
	}

/* These selectors change the color of the headings throughout the site. */
h1, h2, h3
	{
	color: #000000;
	}
	
th
	{
	color: #FFFFFF;
	font-size: 80%;
	background-color: #E0E0E0;
	padding: .2em;
	}

