@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;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	margin: 0px;
	padding: 0px;
	cursor: pointer;
}

.AccordionPanelContent {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	height: 125px;
	border-top: 1px dotted #555555;
}

.AccordionPanelContent ul {
	margin-top: 5px;
	color: #444444;
	margin-left: 25px;
	list-style-image: url(../assets/images/services_list_bullet.png);
}

.AccordionPanelOpen .AccordionPanelTab {
	font-weight: bold;
}

.AccordionPanelTabHover {
	color: #000000;
	font-weight: bold;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #000000;
}

.AccordionFocused .AccordionPanelTab {

}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {

}
