@charset "UTF-8";

/* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* 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: auto;
	height: auto;
	border-top: 1px solid #999;

}


.AccordionPanel {
	margin: 10px;
	padding: 0;
	font-family: 'quicksandregular';
}

 
@font-face {
	font-family: 'quicksandregular';
	src: url('fonts/quicksand-regular.eot');
	src: url('fonts/quicksand-regular-webfont.eot') format('embedded-opentype'),
         url('fonts/quicksand-regular-webfont.woff') format('woff'),
         url('fonts/quicksand-regular-webfont.ttf') format('truetype'),
         url('fonts/quicksand-regular-webfont.svg#quicksandregular') format('svg');
	font-weight: normal;
	font-style: normal;
	color: #000000;
}
 
 
.AccordionPanelTab {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: 'quicksandregular';
	position: inherit;
	text-indent: 7px;
	text-transform: uppercase;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	border-bottom: 1px solid #999;
	color: #000000;
}

.AccordionPanelContent {
	overflow: auto;
	position: relative;
	height: auto;
	border-bottom: 1px solid #999;
}

.AccordionPanelContent ul   {
	padding: 10px;
	list-style-type: none;
	left: auto;
	top: auto;
}

.AccordionPanelContent ul li   {
	font-size: 14px;
	text-decoration: none;
	color: #030303;
}

.AccordionPanelContent ul li a   {
	font-family: 'quicksandregular';
	text-decoration: none;
	color: #000000;
}

#content .AccordionPanelContent ul li p{
	text-decoration: none;
	color: #000000;
}

.AccordionPanel.AccordionPanelOpen .AccordionPanelContent ul li a:hover {
	color: #009F93;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFF;
	color: #009F93;
}

.AccordionPanelTabHover {
	color: #009F93;
}


.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {

}








/* Rules for Printing */

@media print {

  .Accordion {
  overflow: visible !important;
  }
  
  .AccordionPanelContent {
	display: none !important;
	overflow: visible !important;
	height: auto !important;
  }
}
