@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Bordures extérieures du menu accordéon*/
 
.Accordion {
	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;
}

/* Titres des l'onglet qui sont fermés.*/

.AccordionPanelTab {
	height:23px;
	font-size:13px;
	color:#ffffff;
	font-weight:bold;
	margin: 0;
	padding: 5px 0 0 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image:url(../_images/fondAccordionPanelTab.gif);
	background-repeat: no-repeat;
	text-transform: uppercase;
	border-bottom:solid 1px #ffffff;
}

/* Bloc de contenu du menu accordéon */

.AccordionPanelContent {
	overflow: auto;
	margin: 0;
	padding: 0;
	height: 150px;
	background-color:#99d1f1;
}

/* Titres de l'onglet ouvert */

.AccordionPanelOpen .AccordionPanelTab {
	color:#ffffff;
}

/* Quand on passe la souris sur les titres*/
.AccordionPanelTabHover {
}
.AccordionPanelOpen .AccordionPanelTabHover {
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {

}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
}
