@charset "UTF-8";

/* SpryCollapsiblePanel2.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 CollapsiblePanel2 container. For our
 * default style, the CollapsiblePanel2 is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel2 widget, set a width on
 * the CollapsiblePanel2 container. By default, our CollapsiblePanel2 expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel2") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel2 container.
 */
.CollapsiblePanel2 {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the CollapsiblePanel2Tab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanel2Tab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel2 panel tab container.
 */
.CollapsiblePanel2Tab {
	padding-left:0px;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #033;
	text-decoration:underline;
	word-spacing: 1pt;
	line-height: 15pt;
	padding-bottom:5px;
	padding-top:5px;
}

/* This is the selector for a CollapsiblePanel2's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel2's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel2 to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanel2Content") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel2 content container.
 */
.CollapsiblePanel2Content {
	font-family:Arial, Helvetica, sans-serif;
	color:#060;
	margin: 0px;
	padding-left: 30px;
	padding-bottom:5px;
	padding-top:5px;
	font-size: 14px;
}

/* An anchor tag can be used inside of a CollapsiblePanel2Tab 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.
 */
.CollapsiblePanel2Tab a {
	color: black;
	text-decoration: none;
	cursor:pointer;

}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanel2Open" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel2.
 */
.CollapsiblePanel2Open .CollapsiblePanel2Tab {cursor:pointer;
	
	
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel2 is closed. The "CollapsiblePanel2Closed" class is programatically added and removed
 * whenever the CollapsiblePanel2 is closed.
 */

.CollapsiblePanel2Closed .CollapsiblePanel2Tab {cursor:pointer;
	
 /* background-color: #EFEFEF */
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanel2TabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanel2TabHover,  .CollapsiblePanel2Open .CollapsiblePanel2TabHover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #257d00;
	text-decoration: none;
	word-spacing: 1pt;
	line-height: 15pt;
	cursor:pointer;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel2 has focus. The "CollapsiblePanel2Focused" class is programatically added and removed
 * whenever the CollapsiblePanel2 gains or loses keyboard focus.
 */
.CollapsiblePanel2Focused .CollapsiblePanel2Tab {cursor:pointer;
	
}
