@charset "UTF-8";

.Accordion {
	border:none;
	overflow: hidden;
	
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}


.AccordionPanelTab {
	width:273px;
	height:16px;
	/*background-color:#acbbd0; /*#f29400; automne */ /*#ffcf00; ete */ /*#C8CB00 printemps*/;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#444;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-align:left;
	border-bottom:#ffffff solid 1px;
	text-indent:10px;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding-left:15px;
	padding-top:10px;
	
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	color:#333;
	height: 80px;
}
.AccordionPanelContent img {
	float:left;
	padding-right:4px;
	border:none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #000000;
}


.AccordionPanelOpen .AccordionPanelTab {
	background-color: #000000;
	color:#fff;
}
.AccordionFocused {
	border:none;
	outline:none; 
}

