@charset "UTF-8";

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	background-color: #674d1f;
	border-bottom: solid 1px #CCC;
	margin: 1px;
	padding: 4px;
	cursor: auto;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	width: 500px;
	height: 20px;
	background-image: url(../images/arrowbkrd.gif);
}
#CollapsiblePanel1 {
	width: 500px;
}
#CollapsiblePanel2 {
	width: 500px;
}

/* 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: 4px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #D6E9E5;
	font-size: 12px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-color: 674d1f;
	border-right-color: 674d1f;
	border-bottom-color: 674d1f;
	border-left-color: 674d1f;
	cursor: auto;
	width: 500px;
}
