@charset "UTF-8";

.CollapsiblePanel_hist {
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #7f194c;
	width: 180px;
	margin-bottom: 0;
	margin-left: 0px;
	text-align: center;
}

.CollapsiblePanel_histTab {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #7f194c;
	text-align: left;
	margin-top: 8px;
	margin-bottom: 8px;
	font: 0.85em Verdana, Arial, Helvetica, sans-serif;
}
/* 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.
 */
.CollapsiblePanel_histContent #dates {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #7f194c;
	font-size: .9em;
	text-align: left;
	width: 190px;
	margin: 5px auto;
	height: auto;
	overflow: visible;
	line-height: 1.2em;
}
#dates {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #7f194c;
	font-size: 0.9em;
	margin-top: 3px;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
	text-align: center;
	width: 160px;
	
/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
 .CollapsiblePanel_histTab a hover {color:#FF3399; text-decoration: underline;}

.CollapsiblePanel_histTab a hover {color:#FF3399; text-decoration: underline;}

.CollapsiblePanel_histTab a {
	color: #7f194c;
	font-size: 1em;
	width: 110px;
}

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

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanel_histTabHover,  .CollapsiblePanel_histOpen .CollapsiblePanel_histTabHover {text-decoration:underline;}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanel_histFocused .CollapsiblePanel_histTab {
}
