@charset "UTF-8";
.CollapsiblePanel  a {
	
	font-size: 75%;
}
.CollapsiblePanelTab {
	margin: 0px;
	cursor: pointer;

	padding: 0.1em 0.5em 0.1em .6em;
	background-color: #FFFFFF;
	font-size: 80%;
	font-weight: bold;
}

.CollapsiblePanelTabHover {
	background-color: #EDEEF0;
	color: #006600;
}


/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 1em;
	font-size: 100%;
	background-color: #FFFFFF;
	border-top: 1px solid #C6DFFF;
}
.CollapsiblePanel {
	margin: 0;
	padding: 2px 0;
}
.CollapsiblePanel p {

	color: #006600;
	font-style: inherit;
}

