@charset "UTF-8";

/* SpryAccordion.css - Variation of Orig Spry Accordian styles - VNA Executives Page */


.Accordion {
	border: none;
	overflow: hidden;
}

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


.AccordionPanelTab {
	background-color: #ffffff;
	border-top: none;
	border-bottom: none;
	margin: 0px;
	padding: 2px 5px 2px 5px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelTab h4 {
	font-size: 14px;
	line-height: 20px;
	margin: 5px 0 0 0;
}

.AccordionPanelContent {
	overflow: auto;
	border-bottom: 1px dashed #dedede;
	margin: 0px;
	padding: 5px 10px;
	height: 200px;
}
.AccordionPanelContent p {
	font-size: 12px;
	line-height: 20px;
	margin: 7px 0;
}

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


.AccordionPanelTabHover {
	color: #181EA5;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #181EA5;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #ffffff;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #ffffff;
}
