@charset "UTF-8";

/* SpryCollapsiblePanel.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
}

.CollapsiblePanelTab {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border: 1px solid #CCCCFF;
	background-image: url(../images/spryPlus.gif);
	background-repeat: no-repeat;
	background-position: left;
}

.CollapsiblePanelTabHover {  
	background-color: #CCCCFF;
	text-decoration: none;
	color: #6600CC;
	background-image: url(../images/spryPlusHover.gif);
	background-repeat: no-repeat;
	background-position: left;
}

.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #FFFFFF;
	text-decoration: none;
	background-image: url(../images/spryMinus.gif);
	background-repeat: no-repeat;
	background-position: left;
	border: 1px dotted #CCCCFF;	
}

.CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #FFFFFF;
	text-decoration: none;
	color: #FF6600;
	background-image: url(../images/spryMinusHover.gif);
	background-repeat: no-repeat;
	background-position: left;
}

.CollapsiblePanelContent {
	margin: 0px;
	padding: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCFF;
	background-color: #FFFFCC;
	list-style-image: url(../images/normalbulletSpry.gif);
}


/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	text-decoration: none;
	color: #6666CC;
	border: none;
}


.CollapsiblePanelFocused .CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #CCCCFF;
	text-decoration: none;
	background-image: url(../images/spryPlusHover.gif);
	background-repeat: no-repeat;
	background-position: left;
}

