@charset "UTF-8";
.CollapsiblePanel {
	margin: 0px;
	padding: 0px; font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:12px;

	border-bottom: dotted 1px #CCC;
}

/* 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 {
	 font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:12px;
	font-weight: bold  ; color:#333; text-transform:uppercase;
	background-color: #ccc;
	border-bottom: dotted 1px #999;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}


.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px;
}
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color:  #EEE; border-left:5px #F60 solid; -moz-border-radius: 0em .3em .3em 0em;

}


.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #999; color: #fff; border-left:5px #F60 solid;  -moz-border-radius: 0em .3em .3em 0em;

}

/* 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.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #999 ; color:#FFF;
}

