@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


.Accordion {
	border-left: solid 1px black;
	border-right: solid 1px gray;
	border-bottom: solid 1px black;
	overflow: hidden;
}


.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.
 *
 */
.AccordionPanelTab {
	background-image: url(../i_hp/bg_menuspry.jpg);
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	font-weight:bold;
	margin: 0px;
	padding: 2px;
	height: 18px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a Panel's Content area. 
 */
.AccordionPanelContent {
	overflow: auto;
	margin-top: 10px;
	padding: 0px;
	height: 150px;
}

/* 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: #e3ecad;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	
	font-style: oblique;
	font-weight:bold;
	background-image: none;
	background-color: #e3ecad;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #000;
}

.AccordionFocused .AccordionPanelTab {
	background-color: #c1d72e;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #e3ecad;
}
