/*
**********************************************
***      created by Boris Schmakowski      ***
***          www.schmakowski.de            ***
**********************************************
*/


nav {
	background-color: #004684;
	position: fixed;
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
	-webkit-transition: padding 0.45s ease;
       -moz-transition: padding 0.45s ease;
        -ms-transition: padding 0.45s ease;
         -o-transition: padding 0.45s ease;
            transition: padding 0.45s ease;
}
nav.fixed {
	padding: 0;
	-webkit-transition: padding 1s ease;
       -moz-transition: padding 1s ease;
        -ms-transition: padding 1s ease;
         -o-transition: padding 1s ease;
            transition: padding 1s ease;
}
nav::after {		/* Hintergrund drehen ohne Text zu drehen*/
	content: '';
	display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;

	background-color: #004684;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#004684+0,2773b0+100 */
	background: -moz-linear-gradient(top,  rgba(0,70,132,1) 0%, rgba(39,115,176,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,70,132,1) 0%,rgba(39,115,176,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,70,132,1) 0%,rgba(39,115,176,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004684', endColorstr='#2773b0',GradientType=0 ); /* IE6-9 */


    -ms-transform-origin: right bottom;
    -ms-transform: skewY(-1.4deg);
    -webkit-transform-origin: right bottom;
    -webkit-transform: skewY(-1.4deg);
    transform-origin: right bottom;
    transform: skewY(-1.4deg);
    z-index: 0;
    -webkit-transition: -webkit-transform 0.45s ease;
       -moz-transition: -moz-transform 0.45s ease;
        -ms-transition: -ms-transform 0.45s ease;
         -o-transition: -o-transform 0.45s ease;
            transition: transform 0.45s ease;*/
}
/* nav.fixed::after {
	transform: rotate(0deg);
	-webkit-transition: -webkit-transform 1.5s ease;
       -moz-transition: -moz-transform 1.5s ease;
        -ms-transition: -ms-transform 1.5s ease;
         -o-transition: -o-transform 1.5s ease;
            transition: transform 1.5s ease;
}*/

body#bos-118 nav::after {
/* 	background: #004684; */
}




nav > div {
	margin: 0 auto;
	width: 100%;
}
nav ul.nav {
	position: relative;
	margin: 0;
	padding: 0;
	text-align:left;
}
/*
body#bos-118 nav ul.nav {
	text-align: center;
}
*/

nav ul.nav li {
	display: inline-block;
	list-style: none;
	padding: 12px 16px 12px 16px;
	position: relative;
}

nav ul.nav li a,
nav ul.nav li span {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 0px 2px 2px 2px;
	color: #ffffff;
	font-size: 20px;
	line-height: 20px;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0px 0px 8px rgba(0, 71, 133, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	-webkit-transition: border .25s ease;
       -moz-transition: border .25s ease;
        -ms-transition: border .25s ease;
         -o-transition: border .25s ease;
            transition: border .25s ease;

}
nav ul.nav li:first-child {
	padding-left: 0px;
}
nav ul.nav li:last-child {
	padding-right: 0px;
}
@media screen and (max-width: 870px) {
	nav ul.nav {
		padding-bottom: 10px;
	}
	nav ul.nav li {
		display: block;
	}
	nav ul.nav li a,
	nav ul.nav li span {
		display: block;
		padding: 5px 25px 4px 0px;
	}
}

nav ul.nav li a:hover
/*, nav ul.nav li span:hover*/ {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	-webkit-transition: border .25s ease;
       -moz-transition: border .25s ease;
        -ms-transition: border .25s ease;
         -o-transition: border .25s ease;
            transition: border .25s ease;
}

nav ul.nav li ul {
	position: absolute;
	margin: 0px 0 0 -16px;
	padding: 10px 20px 15px 20px;

	background-color: #004684;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#075493+0,1864a2+100 */
background: -moz-linear-gradient(top,  rgba(7,84,147,1) 0%, rgba(24,100,162,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(7,84,147,1) 0%,rgba(24,100,162,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(7,84,147,1) 0%,rgba(24,100,162,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#075493', endColorstr='#1864a2',GradientType=0 ); /* IE6-9 */

	text-align: left;
	z-index: 1;
	opacity: 0;
    visibility: hidden;
    top: 1.8em;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

body#bos-118 nav ul.nav li ul {
/* 	background: #004684; */
}

nav ul.nav li:nth-child(2) ul {
	min-width: 188px;
}

nav ul.nav li:hover ul {
	opacity: 1;
    visibility: visible;
    top: 2em;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
nav ul.nav li ul li {
	display: block;
	list-style: none;
	padding: 10px 0px 0px 0px !important;
}
nav ul.nav li ul li a,
nav ul.nav li ul li span {
	font-size: 18px;
	line-height: 18px;
}

nav ul.nav > li.active > a,
nav ul.nav > li.active > span {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
nav ul li ul.nav-child li.active a,
nav ul li ul.nav-child li.active span {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

nav ul.nav li span {
	cursor:context-menu;
	cursor:default;
}

div.nav-collapse.opened {
	
}
div.nav-collapse.opened ul li {
	display: block;
	padding: 3px 0px 3px 0;
}
div.nav-collapse.opened ul li ul {
	position: relative;
	display: none;
	top: auto;
	opacity: 1;
	visibility: visible;
	z-index:1 ;
	background: none;
}
div.nav-collapse.opened ul li.active ul {
	display: block;
}
div.nav-collapse.opened ul li ul li {
	display: block;
	padding-left: 10px;
}


/*! responsive-nav.js 1.0.32 by @viljamis */

/*.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 100%;
  display: block;
}*/

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  /*Üoverflow: hidden;*/
  zoom: 1;
}

.js .nav-collapse.opened {
  max-height: 9999px;
}
html.js-nav-active .nav-collapse.opened {
  max-height: 9999px !important;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  color: #ffffff;
  	text-align: right;
  	display: block;
	padding: 0;
	font-variant: small-caps;
	letter-spacing: 0.05em;
	font-size: 16px;
	line-height: 1.6em;
	text-decoration: none !important;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}
.nav-toggle:hover {
	color: #ffffff;
}
.nav-toggle:active {
	color: #ffffff;
}
.nav-toggle:visited {
	color: #ffffff;
}

.nav-toggle span {
}
span.menutext {
	font-size: 22px;
}
span.icon-menu-3 {
	font-size: 14px;
	font-weight: 300;
	vertical-align: baseline;
	display: inline-block;
	width: 20px;
}
a.nav-toggle.active span.icon-menu-3 {
	display: none;
}
a.nav-toggle span.icon-cancel-2 {
	display: none;
}
a.nav-toggle.active span.icon-cancel-2 {
	font-size: 14px;
	vertical-align: baseline;
	display: inline-block;
	width: 20px;
}

@media screen and (min-width: 1000px) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}

