@charset "UTF-8";
.Accordion {
	border-left: solid 1px #7798bb;
	border-right: solid 1px #7798bb;
	border-bottom: solid 1px #7798bb;
	overflow: hidden;
}
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}
/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * 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.
 */
.AccordionPanelTab {
	background-color: #e7eef3;
	border-top: solid 1px #7798bb;
	border-bottom: solid 1px #7798bb;
	margin: 0px;
	padding: .5em;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 110%;
	font-weight: bold;
	color: #003273;
}
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding-top: 0px;
	height: 35em;
	padding-top: 1em;
	padding-right: .5em;
	padding-bottom: 0px;
	padding-left: .5em;
	line-height: 1.5em;
}
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #f6f6e0;
}
.AccordionPanelTabHover {
	color: #003273;background-color: #f6f6e0;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #003273;background-color: #f6f6e0;
}
.AccordionFocused .AccordionPanelTab {
	color: #ffffff;background-color: #7798bb;
}
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #e7eef3;
	color: #000000;
}
