@charset "UTF-8";

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-left: solid 1px #CCC;
	border-right: solid 1px #ccc;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #CCC;
	margin-bottom:6px;
}


.CollapsiblePanelTab {
	font: bold 12px sans-serif;
	background-color: #dfecfb;
	margin: 0px;
	padding-left:20px;
	padding-top:8px;
	Padding-bottom:8px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image:url(/mentalhealth/images/icon_nolines_plus.gif);
	background-position:left;
	background-repeat:no-repeat;
}


.CollapsiblePanelContent {
	margin: 0px;
	border-top: solid 1px #CCC;
	border-bottom: solid 4px #dddddd;
	padding:20px;
	font: Arial, Helvetica, sans-serif;
	line-height:18px;
	color:#333;
	background-color:#fff;
}


.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;

}

.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #dfecfb;
	background-image:url(/mentalhealth/images/icon_nolines_minus.gif);
	background-position:left;
	background-repeat:no-repeat;

}


.CollapsiblePanelClosed .CollapsiblePanelTab {
/* background-color: #EFEFEF; */
}


.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color:#f8e8c6;
}


.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #f8e8c6;
}
