
/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {

	overflow: hidden;
	width:500px;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab
{
	text-align: left;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-left: 10px;
	background-image: url(/Images/layout/accordActive.jpg);
	background-repeat: no-repeat;
	line-height: 25px;
	background-position: center center;
}

.AccordionPanelContent
{
	overflow: auto;
	margin: 0px;
	padding-left: 10px;
	padding-right: 10px;
	height: 200px;
	text-align: left;
	
}

.AccordionPanelOpen .AccordionPanelTab
{
	background-image: url(/Images/layout/accordSelected.jpg);
	background-repeat: no-repeat;
	color: #ffffff;
	padding-left: 10px;
	text-align: left;
	line-height: 25px;
	background-position: center center;
}

.AccordionPanelOpen
{
	color: #555555;
	text-align: left;
	padding-bottom: 20px;
}

.AccordionPanelTabHover
{
	background-image: url(/Images/layout/accordHover.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	padding-left: 10px;
	text-align: left;
	line-height: 25px;
	background-position: center center;
}

