
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	z-index:1000;
}


.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
	
}
.sf-menu ul li {
	width:			100%;
}

/*current*/

li.current a
{
	color:#ffa740;	
}

.current
{
}


/*descendant*/
.descendant
{
	/*background-color:#fdd18d;*/
}

li.descendant a
{
	color:#ffa740;	
}


/* formmating hover nav*/
ul.sf-menu li ul li.current
{	
}


.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
	
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
	font-family:Tahoma,Verdana,Lucida Sans Unicode, "lucida sans", Georgia, Tahoma;	
}
.sf-menu a {
	/*border-left:	1px solid #fff;*/
	border-bottom:1px solid #5b5c5c;
	padding: 		.35em 1em;	
	font-size:16px;
    padding-left: 10px;   
    text-decoration:none;
    
	
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	
}
.sf-menu li {
	/*background:		#BDD2FF;*/
}
.sf-menu li li {
	background:		#000000;
	z-index:1000;
}
.sf-menu li li li {
	background:		#9AAEDB;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active 
{
	/*background color */
	/*background:		#fdeacb;*/
	/* font color */
	color: #ffffff;
	outline:		0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator 
{
	border:0px solid #c0c0c0; 
	color:#ffffff;
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	line-height:10px;
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background: url('../../../javascripts/superfish/images/arrows-brown.png' ) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.6em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background: url( '../../../javascripts/superfish/images/shadow.png' ) no-repeat bottom right;
	padding: 0px 8px 9px 0px;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-moz-border-radius-topleft: 17px;
	-moz-border-radius-bottomright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-top-left-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
	-webkit-border-bottom-right-radius: 17px;
	width: 255px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}



/*--------- vertical ------------------------------------------------------------------------------*/
/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.sf-vertical, .sf-vertical li {
	/*width:	10em;*/
	width: 220px;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
	left:	17.0em; /* match ul width */
	top:	0;
	width:220px;
}

/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.sf-vertical a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}




/*-------------------------- breadcrump  --------------------------------------------------*/

#breadcrumb ul
{
	list-style: none;
	margin: 0px;
	height: 18px;
	padding: 0px;
	border: 0px solid #c0c0c0;
}

#breadcrumb li
{
	float: left;
	list-style: none;
	padding: 0px;
	margin-right: 5px;
	margin-left:0px;
	border: 0px solid #c0c0c0;
	height: 15px;
	line-height: 13px;	
}

.breadcrumb_separator
{
	width: 6px;
	float: left;
	margin: 0px;	
}

#breadcrumb a
{
	color: #666666;
	display: block;
	text-decoration: underline;	
}

#breadcrumb a:hover
{
	text-decoration: none;
}

#breadcrumb span
{
	color: #ffffff;
	border: 0px solid #c0c0c0;	
	height: 15px;
	padding:0;
	margin:0;
	display:inline;
}


/*-------------------------Aufbau und Elemente der Fussnavigation----------------------------------------------------*/


#navigation_feet a
{
	/*border: 1px solid #ffffff;*/
	color: #2a364c;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	font-size: 14px;
	font-variant: small-caps;
	font-family: "Century Gothic" , Arial, Verdana;
}

#navigation_feet a:hover
{
	/*border: 1px solid #ffffff;*/
	color: #000000;
	text-decoration: underline;
}


/*-------------------------entfernt html-Link-Formatierung ------------------------------*/


.linkrepair
{
	text-decoration: none;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 0px 0px 0px;
	border: 0px;
}

/*------------------------------------------------------*/

.navigation_head_a
{
	font-size: 11px;
	text-decoration: underline;
	color: #7c1c20;
}

/*------------------------------------------------------*/

.flag
{
    border:none;
	width:17px;
	height:15px;
	vertical-align:bottom;
}

.flag_link
{
    text-decoration:none;
    vertical-align:middle;
}

/*------------- DC subnav -------------------------*/

.dc_subnav_ul
{
	list-style:none;
	border:0px solid #c0c0c0;
	margin:0;
	padding:0;
}

.dc_subnav_li
{
	border-bottom:1px solid #fdd392;
	margin:0;
	padding:0;
	padding-top:2px;
	padding-bottom:2px;
	
}

.dc_subnav_a
{
	border-left:	1px solid #fff;
	color:			#722e01;
	text-decoration:underline;	
}

.dc_subnav_a:hover
{
	border-left:	1px solid #fff;
	color:			#722e01;
	text-decoration:none;	
}


.dc_subnav_date
{
	font-size:10px;
	font-weight:bold;
	margin-left:5px;
	
}
