@charset "UTF-8";

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


 */
.Accordion {
	overflow: hidden;
	/* width: 255px; */
	border-left: solid 0px black;
	border-right: solid 0px black;
	border-bottom: solid 0px black;
}


/* espace entre les sections */
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") 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 tab container.
 */
.AccordionPanelTab {
	color: #FF0000; /*couleur des entetes non selectionnees */
	margin: 0px;
	cursor: pointer;
	padding: 10px 25px 5px 30px; /* premier px hauteur dernier px longueur entete onglet*/
	font-weight: bold;
	background-repeat: no-repeat;
	background-image: url(images/accnormal2.gif); 
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 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 {
	margin: 0px 15px 10px 10px;
	padding: 0px 10px 0px 0px; /* emplacement du texte dans l'accordeon */
	background-image: url(images/acctitre.gif); /* image de fond de l'accordeon */
}

/* 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 {
	color: #FF0000;
	/*background-image: url(images/accbas.gif); */
}

.tabTop {
	background-position: 0px 0px; /* poistion de l'onglet superieur */
	padding-top: 15px; /*position du texte dans l'entete du premier onglet */
}
.middleTab {
	background-position: 0px -134px; /*position des onglets du milieux */
}

.accordion_255_tab {
	margin: 0px;
	font-weight: bold;
}

.acontent {
	height:178px;  /* hauteur de espace pour ecrire */
	width:220px; /* largeur de l'espace pour écrire */
	overflow: auto; /* ascenceur */
	padding: 10px 10px 10px 10px; /* position du texte */
}

.AccordionBottom {
	width: 260px; /* taille du pied de l'accordeon */
	height: 33px;
	background-repeat: no-repeat;
	background-position: 0px bottom;
	background-image: url(images/accbas.gif);
}
