@charset "UTF-8";

.Accordion {
	border: solid 1px #2b1147;
	overflow: hidden;
}

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

.AccordionPanelTab {
	background-color: #6b38a3;
	margin: 0px;
	border: solid 1px #2b1147;	
	padding:4px;
	padding-top:6px;
	font-size:16px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height:150px;
}

.AccordionPanelContent p {padding: 0; margin: 0.3em 0.4em;}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #8651c1;
	color: #fff;
}

/* 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: #f6ff6e;
		background-color: #8651c1;

}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #f6ff6e;
	background-color:#2B1147;

}

/* 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: #8651c1;
	color: #fff;
}

/* 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: #5e2b96;
	color: #fff;
}
