@charset "UTF-8";

/* SpryAccordion.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 Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	text-align: right;
	color:#888;
	cursor: pointer;
	font: 1.3em Lucida Sans, Arial, Helvetica, sans-serif;
	letter-spacing:0.2em;
	line-height:2.0em;
	width: 270px;
	overflow:hidden;
	-moz-user-select: none;
	-khtml-user-select: none;
	outline:none;
}

.AccordionAerzte {
	cursor: pointer;
	font: 1.0em Lucida Sans, Arial, Helvetica, sans-serif;
	letter-spacing:0.2em;
	line-height:1.0em;
	overflow:hidden;
	-moz-user-select: none;
	-khtml-user-select: none;
	outline:none;
}

	margin: 0px;
	padding: 0px;
}

.AccordionAerzte {
	margin: 0px;
	padding-left: 15px;
}

.AccordionPanelTab {
	background-color: #FFF;
	margin: 0px;
	padding: 0px 50px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-align:right;
}

.AccordionPanelTab2 {
	color: #0061AA;
	margin: 0px;
	padding-bottom: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent  {
	overflow: auto;
	margin: 0px;
	padding-right: 0px;
	font: 0.75em Lucida Sans, Arial, Helvetica, sans-serif;
	letter-spacing: 0.0em;
	line-height:1.2em;
	text-align:right;
}

.AccordionPanelContentAerzte  {
	overflow: auto;
	margin-bottom: 0px;
	font: 1.0em Lucida Sans, Arial, Helvetica, sans-serif;
	letter-spacing: 0.0em;
	line-height:1.5em;
}

.AccordionPanelContent a:hover  {
	background-color: #FFF;
	background-image: url(../images/image_highlight2.gif);
	background-position: right;
	background-repeat:no-repeat;
	padding-right: 50px;
}

.AccordionPanelContent a {
	padding-right: 50px;
	outline: none;
}

.AccordionPanelContent p {
	line-height: 0.5em;
	padding-top:5px;
}

.navi {
	background-color: #FFF;
	background-image: url(../images/image_highlight2.gif);
	background-position: right;
	background-repeat:no-repeat;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFF;
	background-image: url(../images/image_highlight.gif);
	background-position: right;
	background-repeat:no-repeat;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #555555;
	background-image: url(../images/image_highlight.gif);
	background-position: right;
	background-repeat:no-repeat;
}

.AccordionPanelTab2Hover {
	color: #888;
	background-position: right;
	background-repeat:no-repeat;
}


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

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFF;
	background-image: url(../images/image_highlight.gif);
	background-position: right;
	background-repeat:no-repeat;
}
/* Rules for Printing */

@media print {

  .Accordion {
  overflow: visible !important;
  }
  
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  }
}