@charset "UTF-8";

/* 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:180px;
	margin:0;
	padding:0;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
	background-image:url('../images/sb_bg.gif');
	background-repeat:repeat-y;
}

.AccordionPanelTab {
	background-color: #CCCCCC;
	border-bottom:1px solid #eaeaea;
	margin: 0px;
	cursor: pointer;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height:250px;
}

.AccordionPanelContent a {
	text-decoration:none;
	color:black;
	background-image:url('../images/nav_bg.gif');
	background-repeat:no-repeat;
	text-align:left;
	padding:2px 0px 3px 50px;
	font-size:11px;
	width:120px;
	float:left;
}

.AccordionPanelContent a:hover {
	background-image:url('../images/nav_bg_ro.gif');
	text-decoration:underline;
}

.AccordionPanelContent a:active {
	background-image:url('../images/nav_bg_ro.gif');
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
}