@charset "UTF-8";

/* SpryAdvancedPanel.css - version 0.5 - Spry Pre-Release 1.6 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main AdvancedPanel container. For our
 * default style, the AdvancedPanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the AdvancedPanel widget, set a width on
 * the AdvancedPanel container. By default, our AdvancedPanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("AdvancedPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * AdvancedPanel container.
 */
.AdvancedPanel {
	margin: 5px 0 5px 0;
	padding: 0;
	width:100%;
	}

/* This is the selector for the AdvancedPanelTab. 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 ("AdvancedPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * AdvancedPanel panel tab container.
 */
.AdvancedPanelTab {
	margin: 0 0 5px 0;
	padding: 0;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-weight:bold;
	font-size:9px;
	color:#666666;
	text-align:right;
	width:100%;
}

/* This is the selector for a AdvancedPanel'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 AdvancedPanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the AdvancedPanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("AdvancedPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * AdvancedPanel content container.
 */
.AdvancedPanelContent {
	margin: 3px;
	padding: 2px;
	font-size:9px;
	width:100%;
}
.AdvancedPanelContent a:link, .AdvancedPanelContent a:visited {
}
.AdvancedPanelContent a:hover {
}
/* An anchor tag can be used inside of a AdvancedPanelTab 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.
 */
.AdvancedPanelTab a {
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AdvancedPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the AdvancedPanel.
 */
.AdvancedPanelOpen .AdvancedPanelTab {
	color:#666666;
}

/* This is an example of how to change the appearance of the panel tab when the
 * AdvancedPanel is closed. The "AdvancedPanelClosed" class is programatically added and removed
 * whenever the AdvancedPanel is closed.
 */

.AdvancedPanelClosed .AdvancedPanelTab {
 /* 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 "AdvancedPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AdvancedPanelTabHover,  .AdvancedPanelOpen .AdvancedPanelTabHover {
color:#000000;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * AdvancedPanel has focus. The "AdvancedPanelFocused" class is programatically added and removed
 * whenever the AdvancedPanel gains or loses keyboard focus.
 */
.AdvancedPanelFocused .AdvancedPanelTab {
}
