@charset "UTF-8";


.ausklapp {
	overflow: hidden;
	width: 90%;
	font-size: 12px;
	height: auto;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	padding-right: 15px;
}


.ausklappPanel {
	margin: 0px;
	padding: 0px;
}


.ausklappPanelTab {
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #BB8F00;
	text-decoration: underline;
}


.ausklappPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 85px;
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "ausklappPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the ausklapp.
 */
.ausklappPanelOpen .ausklappPanelTab {

}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "ausklappPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.ausklappPanelTabHover {
	color: #BB8F00;
}
.ausklappPanelOpen .ausklappPanelTabHover {
	color: #BB8F00;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * ausklapp has focus. The "ausklappFocused" class is programatically added and removed
 * whenever the ausklapp gains or loses keyboard focus.
 */
.ausklappFocused .ausklappPanelTab {
	color: #BB8F00;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the ausklapp has focus.
 */
.ausklappFocused .ausklappPanelOpen .ausklappPanelTab {

}

