@charset "UTF-8";

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

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

/* Register Inhalt  */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-left: #ddd 1px solid;
	border-bottom: #b3b4b4 1px solid;	
	border-top: #ddd 1px solid;
	border-right: #b3b4b4 1px solid;
}

.CollapsiblePanelSuche {
	margin: 0px;
	padding: 0px;
	border: 0px;
}


/* Registerkarte geschlossen */
.CollapsiblePanelTab, .CollapsiblePanelTabSuche {
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}


.CollapsiblePanelTab {
	font-size:11px;
	background-image:url(/files/gfx/layout/back_abc.gif);
}


.CollapsiblePanelTabSuche {
	font-size:12px;
	font-weight: bold;	
}



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

/* 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 {
	color: black;
	text-decoration: none;
}

/* Registerkarte offen */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-image:url(/files/gfx/layout/back_abc_active.gif);
}



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

.CollapsiblePanelClosed .CollapsiblePanelTab {
 /* background-color: #EFEFEF */
}

/* Registerkarte Hover */
.CollapsiblePanelTabHover, .CollapsiblePanelOpen, .CollapsiblePanelTabHover {
	background-image:url(/files/gfx/layout/back_abc_hover.gif);
}

.CollapsiblePanelTabHoverSuche, .CollapsiblePanelOpenSuche, .CollapsiblePanelTabHoverSuche {
	background-color: #fff;
}


/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #3399FF;
}
