@charset "UTF-8";

/* SpryCollapsiblePanel2.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel2 container. For our
 * default style, the CollapsiblePanel2 is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel2 widget, set a width on
 * the CollapsiblePanel2 container. By default, our CollapsiblePanel2 expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel2") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel2 container.
 */
.CollapsiblePanel2 {
	margin: 0px;
	padding: 0px;
	border: none;
	display: block
}

/* This is the selector for the CollapsiblePanel2Tab. 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 ("CollapsiblePanel2Tab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel2 panel tab container.
 */
.CollapsiblePanel2Tab {
	color:#FFFFFF;
	background-color: #0284db;
	margin: 0px 0px 15px 0px;
	padding: 3px 0px 3px 20px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image: url(../../images/interface/onglet-bleu-ferme.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.CollapsiblePanel2Tab h2 {
	color:#FFFFFF;
	margin: 0px;
	padding: 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
}

/* This is the selector for a CollapsiblePanel2'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 CollapsiblePanel2's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel2 to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanel2Content") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel2 content container.
 */
.CollapsiblePanel2Content {
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

/* An anchor tag can be used inside of a CollapsiblePanel2Tab 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.
 */
.CollapsiblePanel2Tab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanel2Open" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel2.
 */
.CollapsiblePanel2Open .CollapsiblePanel2Tab {
	background-color: #0284db;
	background-image: url(../../images/interface/onglet-bleu-ouvert.gif);
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanel2TabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanel2TabHover,  .CollapsiblePanel2Open .CollapsiblePanel2TabHover {
	background-color: #0295F7;
	background-image: url(../../images/interface/onglet-bleu-ferme-over.gif);
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel2 has focus. The "CollapsiblePanel2Focused" class is programatically added and removed
 * whenever the CollapsiblePanel2 gains or loses keyboard focus.
 */
.CollapsiblePanel2Focused .CollapsiblePanel2Tab {
}

