@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;
}

/* Styl hlavního panelu zavřeného */
.CollapsiblePanelTab {
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image: url(../cz_img/mn1-1.jpg);
	background-repeat: no-repeat;
	height: 32px;
	width: 170px;
}
/* styl vnořeného panelu*/
.CollapsiblePanelContent {
	padding: 0px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 29px;
	line-height: 18px;
}

/* 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;
}

/* Styl hlavního panelu otevčeného */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-image: url(../cz_img/mn1-3.jpg);
	background-repeat: no-repeat;
	height: 32px;
	width: 170px;
}
/* Styl hlavního panelu otevčeného při Hover */
.CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-image: url(../cz_img/mn1-4.jpg);
	background-repeat: no-repeat;
	height: 32px;
	width: 170px;
}
/* Styl hlavního panelu zavřeného při Hover */
.CollapsiblePanelTabHover,  .CollapsiblePanelTab .CollapsiblePanelTabHover {
	background-image: url(../cz_img/mn1-2.jpg);
	background-repeat: no-repeat;
	height: 32px;
	width: 170px;
	text-align: center;
}

/* 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-image: url(../cz_img/mn1-3.jpg);
	background-repeat: no-repeat;
	height: 32px;
	width: 170px;
}*/

