@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 {
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 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.
 */
 #CollapsiblePanel1 .CollapsiblePanelContent {
	margin: 0px;
	display: none;
	padding: 5px;
	position: absolute;
	background:#998C76;
	width: 170px;
	height: 50px;
	z-index: 1051;
	text-align: left;
	border-bottom:3px solid #423F39;

}
 #CollapsiblePanel2 .CollapsiblePanelContent {
	margin: 0px;
	display: none;
	padding: 5px;
	position: absolute;
	background:#8E9977;
	width: 170px;
	height: 100px;
	z-index: 1049;
	text-align: left;
	border-bottom:3px solid #484C3D;
	
}
 #CollapsiblePanel3 .CollapsiblePanelContent, #CollapsiblePanel3_home .CollapsiblePanelContent {
	margin: 0px;
	display: none;
	padding: 5px;
	position: absolute;
	background:#cb848a;
	width: 170px;
	height: 200px;
	z-index: 1039;
	text-align: left;
	border-bottom:3px solid #980915;
	overflow:auto;
	
}


.CollapsiblePanelContent form label
{
text-align:left;
}
.CollapsiblePanelContent a
{ color: #fff;
text-decoration:none;
font-size:12px;
}

/* 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.
 */
.CollapsiblePanelTab a {
	color: #fff;
	text-decoration: none;
		border: none;

}
.CollapsiblePanelTab
{
heigh: 15px;
border: none;
padding-left: 5px;

}
#CollapsiblePanel3 .CollapsiblePanelTab, #CollapsiblePanel3_home .CollapsiblePanelTab {
	font-size:12px;
	text-transform:uppercase;
	margin:0px;
	background-color: #980915;
	color:#FFF;
}
#CollapsiblePanel3.CollapsiblePanelClosed .CollapsiblePanelTab, #CollapsiblePanel3_home.CollapsiblePanelClosed .CollapsiblePanelTab{
		background-color: #cb848a;
}
	
#CollapsiblePanel3.CollapsiblePanelOpen .CollapsiblePanelTab, #CollapsiblePanel3_home.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #980915;
	color:#FFF;
	}

/* 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.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
		border: none;

}
#CollapsiblePanel4 .CollapsiblePanelTab {
	font-size:14px;
	text-transform:uppercase;
	width:180px;
	margin:0px;
}
#CollapsiblePanel4.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #000;
	-moz-opacity: 0.9;
	opacity:0.9;
	filter: alpha(opacity=90);
}

/* 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 {
color: #fff;
margin: 0px;
	background:url(../immagini/bag_pannello.gif) #545454 no-repeat;

	margin-bottom:-2px;
		border: none;

	}*/

