@charset "UTF-8";

/* toggle.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

/* This is the selector for the toggleTab. 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 ("toggleTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * toggle panel tab container.
 */
.toggleTab {
	margin: 0px;
	padding: 0px;
	padding-bottom:5px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background: url(../images/off.jpg) 0 0 no-repeat;
	color: #ccc7c0;
	font-weight: bold;
	padding-left: 25px;
}

/* This is the selector for a toggle'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 toggle's open/close animations. Placing a non-zero padding on the content
 * element can cause the toggle to abruptly grow in height while the panels animate.
 *
 * The name of the class ("toggleContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * toggle content container.
 */
.toggleContent {
	margin: 0px;
	padding: 0px;
	line-height: 16px;
	padding-left: 30px;
}

.toggleContent ul {
	list-style: none;
}

.toggleContent ul li {
	line-height: 16px;
}

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

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "toggleOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the toggle.
 */
.toggleOpen .toggleTab {
	background: url(../images/on.jpg) 0 0 no-repeat;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "toggleTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
/*.toggleTabHover,  .toggleOpen .toggleTabHover {
	background-color: #CCC;
}
*/
/* This is an example of how to change the appearance of all the panel tabs when the
 * toggle has focus. The "toggleFocused" class is programatically added and removed
 * whenever the toggle gains or loses keyboard focus.
 */
/*.toggleFocused .toggleTab {
	background-color: #3399FF;
}
*/

