/************************************************************/
/* Accordion v2.0											*/
/*															*/
/* A lightweight accordion that is built with scriptaculous	*/
/* and works properly in every browser.						*/
/*															*/
/* http://stickmanlabs.com/accordion/						*/
/*															*/
/* Date: Dec 16, 2008										*/
/*															*/
/* These styles are for when the accordion script is used	*/
/* for Upcoming Events, Blue Notes, and News				*/
/* on landing pages.										*/
/************************************************************/

/* Accordion Container */
div#accordion_container
{
	overflow: hidden;
	height: 236px;	
	margin-top: -1px;
	
	#height: 234px;	/* For IE 7 */
}

	/* Section Title (aka 'The Toggle') */
	.accordion_toggle 
	{		
		height: 30px;
		display: block;
		
		color: #666666 !Important;    
		font-size: 123.1% !Important;
		font-weight: bold;
		text-decoration: none;

		padding-top: 8px;   
		padding-left: 20px; 
	    
		outline: none;       
	
		/* Set the Background for default */
		background: url(/images/template/accordion/toggle-off.jpg) repeat-x top left !Important;
	}
		
		/* Section Title Hover */
		.accordion_toggle:hover
		{
			/* Set the Background if you want Rollovers */
			background: url(/images/template/accordion/toggle-on.jpg) top left repeat-x !important;
		}
		
		/* Section Title Active */
		.accordion_toggle_active 
		{
			color: #669bda !Important;
			font-size: 123.1% !Important;
			/* Set the Background for when a Section is active.  */
			background: url(/images/template/accordion/toggle-on.jpg) top left repeat-x !important;
		}
			
			
	/* Accordion Content */
	.accordion_content 
	{
		background-color: #ffffff;
		color: #444444;
		overflow: hidden;		
	}
				
		/* UL (used for sub section) */
		.accordion_content ul
		{ 
			margin: 0;
			padding: 0;       
			margin-left: 20px; 
			padding-top: 11px;
			padding-bottom: 5px;
			background: white;
			display: block;
			height: 106px;
		}

			.accordion_content ul li
			{
				height: 27px;
				list-style: none;
				background: white;

				#height: 26px; /* For IE7 */
			}

				.accordion_content ul li a,
				.accordion_content ul li a:link,
				.accordion_content ul li a:visited,
				.accordion_content ul li a:link:active, .accordion_content ul li a:visited:active
				{
	               
					font-size: 93% !Important;
					color: #666666;
					text-decoration: none;
					font-family: Verdana;
				}
				

					.accordion_content ul li a:hover
					{
						text-decoration: underline;
					}