@charset "UTF-8";

 
.CollapsiblePanel {
	
	margin: 0px;
	padding: 1 0 0 0px;
	
}
 
 .CollapsiblePanelTab {
	
	font-size:12px;	 
	border-bottom: solid 0px #ddd;
	margin: 0px;
	padding: 2px;
	padding-left: 6px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	 background-image:url(../img/ic-plus.png); background-position:left middle;
 	background-repeat:no-repeat;
}

 
.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px 12px 0px 12px;

}

 
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;

	 background-image:url(../img/ic-minus.png); background-position:left middle;
 background-repeat:no-repeat;
}

/* 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.background-color: #EEE;
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
 background-image:url(../img/ic-minus.png); background-position:left middle;
 background-repeat:no-repeat;
 

 
	
}

/* 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.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #F0F8FF;
}

/* 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.background-color: #F0F8FF;
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	
}
