@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container.*/
.Accordion {
	width: 20%;
	float: left;
	margin: 0 0 0.75em 1%;
	overflow: hidden; }

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.*/
.AccordionPanel {
	margin: 0px;
	padding: 0px; }

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.*/
.AccordionPanelTab {
	margin: .1em 0;
	padding: .6em;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-color: #ccc;
	color: #000; }

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.*/
.AccordionPanelContent {
	overflow: auto;
	margin-left: 2em; }
.insideAccordionPanelContent, .doingAccordionPanelContent {
	overflow: auto;
	padding-left: 1.5em;
	line-height: 1.8em;
	font-size: .9em;
	background-color: #b0c4de; }
.insideAccordionPanelContent { height: 28.75em; }
.doingAccordionPanelContent { height: 23em; }
.insideAccordionPanelContent a, .doingAccordionPanelContent a { color: #000; }
.insideAccordionPanelContent a:hover, .doingAccordionPanelContent a:hover {
	color: #C60;
	text-decoration: underline; }


/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.*/
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #036;
	color: #fff;
	border-bottom: none; }

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.*/
.AccordionPanelTab:hover {
	background-color: #036;
	color: #fff; }
.AccordionPanelOpen .AccordionPanelTabHover {
	background-color: #036;
	color: #fff; }

/* 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.*/
/* Commented out because of IE7 Glitch
.AccordionPanelTab:focus {
	background-color: #036;
	color: #fff; }
.AccordionFocused .AccordionPanelTab {
	background-color: #036;
	color: #fff; }
*/

/* 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: #036;
	color: #fff; }

/* Accordion Expander */	
#AccordExp{
	background-color: #CCC; }