/*
* Default CSS for Moobot Accordion Plugin
*/

/*
* Style for the accordion container
*/
.accordion-container {
}


/*
* The default accordion toggler for closed and hidden accordion sections
*/
.toggler {
	color: #353535;
	margin: 0;
	padding: 1px 0 1px 20px;
	font: bold 1.2em "Lucida Grande", Lucida, Verdana, sans-serif;
	border-bottom: 2px ridge #cfcfcf;
	background-color: #e9e9e9;
}

/*
* The toggler for the active and open accordion section
*/
.toggler-active {
	color: #413c3d;
	margin: 0;
	padding: 1px 0 1px 20px;
	font: bold 1.2em "Lucida Grande", Lucida, Verdana, sans-serif;
	border-bottom: 2px ridge #cfcfcf;
	background-color: #e4d4ba;
}

/*
* The content of any accordion section
*/ 
.element {
}
  
