@charset "UTF-8";

/* The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
 
.Accordion {
	border-bottom: none;
	overflow: hidden;
	background-color:transparent;
	width:220px;
}

/* The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
 
span.AccordionPanelTab {
    display:block;
    width: 220px;
	background-color: #008133;
	border-bottom: solid 2px #008133;
	padding: 4px 2px 4px 5px;
	font-family:"Arial Black";
	letter-spacing:0.05em;
	color:#FFFFFF;
	font-size:18px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: hidden;
	margin: 2px 0 2px 0;
	padding: 0;
	/*height: 118px;*/
	font-family:Arial, Helvetica, sans-serif
	font-size: 14px;
	font-weight:bold;
	color: #008133;
	text-decoration: none;
	text-align: left;
}


/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFFF00;
	color: #008133;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */

.AccordionPanelTabHover {
	color: #008133;
	background-color:#FFFF00;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #008133;
	background-color:#FFFF00;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */

.AccordionFocused .AccordionPanelTab {
	background-color: #008133;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFFF00;
	color:#008133;
}
