@charset "UTF-8";

.Accordion {
	overflow: hidden;
	z-index: 2;
}

.Accordion a {
	font-weight: bold;
	color: #CC99FF;
}
.Accordion h2 {
	display: none;
	font-size: 12px;
}

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

.AccordionPanelTab {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 28px;
	padding-left: 40px;
	overflow: hidden;
}

/* to change the appearance of all the panel tabs when the
 * Accordion has focus. 
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}

/* to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}
