@charset "iso-8859-1";

/*******************************************************************************
*  rMenu.css : 2008-11-08
*******************************************************************************/
ul.rMenu,
ul.rMenu ul,
ul.rMenu li,
ul.rMenu a {
	display: block;
	margin: 0;
	padding: 0;
}
ul.rMenu,
ul.rMenu li,
ul.rMenu ul {
	list-style: none;
}
ul.rMenu ul {
	display: none;		/* Unternavigation ausblenden */
}
ul.rMenu li {
	position: relative;
	z-index: 1;
}
ul.rMenu li:hover {
	z-index: 999;
}
ul.rMenu li:hover > ul/* hide from IE5.0 because it gets confused by this selector */ {
	display: block;		/* show the sub-menu */
	position: absolute;
}

/*******************************************************************************
 * Extended Menu Mechanics
 */
ul.rMenu-hor li {
	float: left;
	width: auto;
}
ul.rMenu-ver li {
	float: none;
	width: auto;
}
ul.rMenu-ver, ul.rMenu-ver ul {
	width: 14em;
}
ul.rMenu-wide {
	width: 100%;
}
ul.rMenu-vRight {
	float: right;
	width: auto;
}
ul.rMenu-lFloat {
	float: left;
	width: auto;
}
ul.rMenu-noFloat {
	float: none;
	width: auto;
}
/*******************************************************************************
 * DROP POSITIONS
 */
ul.rMenu-hor ul {
	top: auto;		/* a value of 100% creates a problem in IE 5.0 and Opera 7.23 */
	right: auto;
	left: auto;
	margin-top: -1px;
}
ul.rMenu-ver ul {
	left: 60%;
	right: auto;
	top: auto;
	margin-top: 1.5em;
}
ul.rMenu-vRight ul,
ul.rMenu-hRight ul.rMenu-ver ul,
ul.rMenu-dRight,
ul.rMenu-dRight ul {
	left: -60%;
	right: auto;
	top: auto;
	margin-top: -0.5em;
}
ul.rMenu-hRight ul {
	left: auto;
	right: 0;
	top: auto;
	margin-top: -1px;
}
/*******************************************************************************
 * General
 */
ul.rMenu li a {
	border: solid 0px #FFFFFF	/* border around all anchor tags */
}
ul.rMenu-hor li {
	margin-bottom: -1px;
	margin-left: -1px;
}
ul.rMenu-hor {
	padding-left: 1px ;
}
ul.rMenu-ver li {
	margin-left: 0;
	margin-top: 0px;
}
ul.rMenu-ver {
	border-top: solid 0px #fff;
}
ul.rMenu li a:link,
ul.rMenu li a:hover,
ul.rMenu li a:visited,
ul.rMenu li a:active {
	padding: 4px 10px 5px 10px;
}
ul.rMenu li a:link,
ul.rMenu li a:hover,
ul.rMenu li a:visited,
ul.rMenu li a:active,
ul.rMenu-ver li a:link,
ul.rMenu-ver li a:hover,
ul.rMenu-ver li a:visited,
ul.rMenu-ver li a:active,
ul.rMenu li.rMenu-expand a:link,
ul.rMenu li.rMenu-expand a:hover,
ul.rMenu li.rMenu-expand a:visited,
ul.rMenu li.rMenu-expand a:active,
ul.rMenu-hor li a:link,
ul.rMenu-hor li a:hover,
ul.rMenu-hor li a:visited,
ul.rMenu-hor li a:active {
	text-decoration: none;
	font-weight: normal;
	border-style: solid;
	border-width: 0;
	border-color: #FFFFFF;
}
ul.rMenu,
ul.rMenu-ver,
ul.rMenu-hor {
	border-style: solid;
	border-width: 0 1px 0 0;
	border-color: #FFFFFF;
}
ul.rMenu li.sfhover a:active,
ul.rMenu li:hover a:active {
	color: #fff;
	background-color: #99BB33;
}
ul.rMenu li {
	background-color: #336600;	/* default background color of menu items */
}
ul.rMenu li:hover,
ul.rMenu li.sfhover {
	background-color: #336600;
}
ul.rMenu li a:hover {
	background-color: #99BB33;
}

/*******************************************************************************
 * HACKS 
 */
* html ul.rMenu {
	display: inline-block;	/* this is for IE/Mac. */
	/* \*/ display: block;
	position: relative;		/* IE 5.0/Mac needs */
	/* \*/ position: static;/* reset position attribute for IE/Win as it
							   causes z-index problems */
}
* html ul.rMenu ul {
	float: left;	/* IE/Mac 5.0 needs this. */
	/* \*/ float: none;	/* reset the rule for non-Macs */
	width: 14em;
}
ul.rMenu ul {
	background-color: #fff;
}
* html ul.rMenu-ver li,
* html ul.rMenu-hor li ul.rMenu-ver li {
	width: 100%;
	float: left;
	clear: left;
}
*:first-child+html ul.rMenu-ver > li:hover ul/* hide from IE5.0 because it gets confused by this selector */ {
	min-width: 0;
}
ul.rMenu li a {
	position: relative;
	min-width: 0;		/* triggers hasLayout for IE 7 */
}
* html ul.rMenu-hor li {
	width: 14em;	/* IE Mac doesn't do auto widths so specify a width 
				   for the sake of IE/Mac. Salt to taste. */
	/* \*/ width: auto;	/* now undo previous rule for non Macs by using 
						   the IE Mac backslash comment hack */
}
* html div.rMenu-center {
	position: relative;
	z-index: 1;		/* IE 6 and earlier need a little help with
					   z-indexes on centered menus */
}
/*html :not([lang*=""]) div.rMenu-center ul.rMenu li a:hover {
	height: 100%;	
}*//* for Netscape 6 */
/*html: not([lang*=""])  div.rMenu-center ul.rMenu li a:hover {
	height: auto;	
}*//* reset for Netscape 7 and better */

/*******************************************************************************
 * HACKS : Suckerfish w/Form Field Support (for IE 5.5 & 6.x)
 */
* html ul.rMenu ul {
	display: block;
	position: absolute;	/* ovewrite original functionality of hiding
				   element so we can hide these off screen */
}
* html ul.rMenu ul,
* html ul.rMenu-hor ul,
* html ul.rMenu-ver ul,
* html ul.rMenu-vRight ul,
* html ul.rMenu-hRight ul.rMenu-ver ul,
* html ul.rMenu-hRight ul {
	left: -10000px;
}
* html ul.rMenu li.sfhover {
	z-index: 999;
}
* html ul.rMenu li.sfhover ul {
	left: auto;
}
* html ul.rMenu li.sfhover ul ul,
* html ul.rMenu li.sfhover ul ul ul { 
	display: none;
}
* html ul.rMenu li.sfhover ul,
* html ul.rMenu li li.sfhover ul,
* html ul.rMenu li li li.sfhover ul {
	display: block;
}

* html ul.rMenu-ver li.sfhover ul {
	left: 60%;
}
* html ul.rMenu-vRight li.sfhover ul,
* html ul.rMenu-hRight ul.rMenu-ver li.sfhover ul {
	left: -60%;		/* ^ ditto ^ */
}
* html ul.rMenu iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

/*******************************************************************************
 *Clearfix
 */
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {
	min-width: 0;		/* trigger hasLayout for IE7 */
	display: inline-block;
	/* \*/	display: block;	/* Hide from IE Mac */
}
* html .clearfix {
	/* \*/  height: 1%;	/* Hide from IE Mac */ 
}

/******************************************************************************/