/*andrew's css overrides */



/*** 

START MULTICOLUMN UL

This will create lists with multiple columns. This FIRST sorts items left to right, not top-down, but this is the least code-intensive way I found of doing this. Note also that if a list ends with an even number of items, the left column will appear two items longer than the right in order to self-clear the list. 

NOTE: in order to use this, class of "multicolumn" must be added to the UL.

***/

	ul.multicolumn {
	}
	
	ul.multicolumn li{
		width: 40%;
		float: left;
	}
	
	ul.multicolumn li:last-child{
		width: 40%;
		float: none;
		clear: both;
	}
	
/**** END MULTICOLUMN UL ****/	



/**** START LEVEL 2 LI format  ****/

#content-container ul li ul li {
	margin: 0 0 0 1em;;
	padding: 0;
	list-style: none;
	text-indent: -1em;
}

#content-container ul li ul li:before {
	content: "– "
}

/**** END LEVEL 2 LI format ****/




/**** UPCOMING EVENTS SIDEBAR modifications ****/

#block-views-homepage-upcoming-events-block div.article{
	font-size: 90%;
}

/**** END UPCOMING EVENTS SIDEBAR modifications ****/



/**** SITE FOOTER EDITS ****/

#site-footer-container {
	border-top: 1px solid #9f9f9f;
	background: #e2e2e2;
}

#site-footer {
	border-top: 7px solid #9f9f9f;
}

/**** SITE FOOTER EDITS ****/







