/*
---------------------------------------------------------------
  Note that styles you apply to the main menu items are inherited by the sub menus items too.
  If you'd like to avoid this, you could use child selectors (not supported by IE6) - for example:
  .sm-custom > li > a { ... } instead of .sm-custom a { ... }
---------------------------------------------------------------*/
	#main-menu {
		position:relative;
		z-index:9999;
		width:auto;
	}
	#main-menu222 ul{
		width:12em; /* fixed width only please - you can use the "subMenusMinWidth"/"subMenusMaxWidth" script options to override this if you like */
	}
#menu-button {
  display:none;
  /* style it as you like... */
}
#menu-button222:before {
  content:'Menu -';
}
#menu-button222.collapsed:before {
  content:'Menu +';
}
@media screen and (max-width: 979px) {
  /* show the button on small screens */
  #menu-button {
    display:inline;
  }
  /* hide the menu when it has the "collapsed" class set by the script */
  #main-menu.collapsed222 {
    display:none;
  }
}
.navbar #main-menu {
	display: block;
	margin-top: 100px;
}

ul.sm222 {
	background-color: silver;
	float: left;
}




/* Menu box
===================*/

	.sm-custom {
		padding:0 10px;
		background222:#eee;
	}
	.sm-custom-vertical {
		padding:10px 0;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
	}
	.sm-custom ul {
		border:1px solid #bbb;
		padding:5px 0;
		background:#fff;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
		-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		box-shadow:0 5px 9px rgba(0,0,0,0.2);
	}
	/* first sub level carets */
	.sm-custom > li > ul:before {
		content:'';
		position:absolute;
		top:-18px;
		left:30px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:9px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #bbb transparent;
	}
	.sm-custom > li > ul:after {
		content:'';
		position:absolute;
		top:-16px;
		left:31px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:8px;
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #fff transparent;
	}
	/* no carets for vertical main */
	.sm-custom-vertical > li > ul:before, .sm-custom-vertical > li > ul:after {
		display:none;
	}


/* Menu items
===================*/

	.sm-custom a {
		padding:12px;
		color:#555;
		font-size:18px;
		line-height:17px;

		text-decoration:none;
	}
	.sm-custom a:hover, .sm-custom a:focus, .sm-custom a:active,
	.sm-custom a.highlighted {
		color:#D23600;
	}
	.sm-custom-vertical a:hover, .sm-custom-vertical a:focus, .sm-custom-vertical a:active,
	.sm-custom-vertical a.highlighted {
		background:#fff;
	}
	.sm-custom a.has-submenu {
		padding-right:25px;
	}
	.sm-custom-vertical a,
 	.sm-custom ul a {
		padding:10px 20px;
	}
	.sm-custom-vertical a.has-submenu,
 	.sm-custom ul a.has-submenu {
		padding-right:40px;
	}
	.sm-custom ul a {
		font-size:16px;
	}
	.sm-custom ul a:hover, .sm-custom ul a:focus, .sm-custom ul a:active,
	.sm-custom ul a.highlighted {
		color:#D23600;
		background:#eee;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-custom a.current, .sm-custom a.current:hover, .sm-custom a.current:focus, .sm-custom a.current:active {
		color:#D23600;
	}


/* Sub menu indicators
===================*/

	.sm-custom a span.sub-arrow {
		position:absolute;
		right:12px;
		top:50%;
		margin-top:-3px;
		/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
		width:0;
		height:0;
		overflow:hidden;
		border-width:4px; /* tweak size of the arrow */
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}
	.sm-custom-vertical a span.sub-arrow,
 	.sm-custom ul a span.sub-arrow {
		right:15px;
		top:50%;
		margin-top:-5px;
		border-width:5px;
		border-style:dashed dashed dashed solid;
		border-color:transparent transparent transparent #555;
	}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/

	.sm-custom span.scroll-up, .sm-custom span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		background:#fff;
		height:20px;
		/* width and position will be automatically set by the script */
	}
	.sm-custom span.scroll-up:hover, .sm-custom span.scroll-down:hover {
		background:#eee;
	}
	.sm-custom span.scroll-up-arrow, .sm-custom span.scroll-down-arrow {
		position:absolute;
		top:0;
		left:50%;
		margin-left:-6px;
		/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
		width:0;
		height:0;
		overflow:hidden;
		border-width:6px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #555 transparent;
	}
	.sm-custom span.scroll-up:hover span.scroll-up-arrow {
		border-color:transparent transparent #D23600 transparent;
	}
	.sm-custom span.scroll-down-arrow {
		top:8px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}
	.sm-custom span.scroll-down:hover span.scroll-down-arrow {
		border-color:#D23600 transparent transparent transparent;
	}


/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/


/* decrease horizontal main menu items left/right padding to avoid wrapping */
@media screen and (max-width: 850px) {
	.sm-custom:not(.sm-custom-vertical) > li > a {
		padding-left:8px;
		padding-right:8px;
	}
	.sm-custom:not(.sm-custom-vertical) > li > a.has-submenu {
		padding-right:25px;
	}
}
@media screen and (max-width: 750px) {
	.sm-custom:not(.sm-custom-vertical) > li > a {
		padding-left:3px;
		padding-right:3px;
	}
	.sm-custom:not(.sm-custom-vertical) > li > a.has-submenu {
		padding-right:25px;
	}
}


@media screen and (max-width: 979px) {
	.navbar #main-menu { margin-top: 0px;}
	/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
	ul.sm-custom{width:auto !important;}
	ul.sm-custom ul{display:none;position:static !important;top:auto !important;left:auto !important;margin-left:0 !important;margin-top:0 !important;width:auto !important;min-width:0 !important;max-width:none !important;}
	ul.sm-custom>li{float:none;}
	ul.sm-custom>li>a,ul.sm-custom ul.sm-nowrap>li>a{white-space:normal;}
	ul.sm-custom iframe{display:none;}

	/* Uncomment this rule to disable completely the sub menus for small screen devices */
	/*.sm-custom ul, .sm-custom span.sub-arrow, .sm-custom iframe {
		display:none !important;
	}*/


/* Menu box
===================*/

	.sm-custom {
		padding:0;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
	}
	.sm-custom ul {
		border:0;
		padding:0;
		/* darken the background of the sub menus */
		background:rgba(130,130,130,0.1);
		-moz-border-radius:0;
		-webkit-border-radius:0;
		border-radius:0;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
	/* no carets */
	.sm-custom > li > ul:before, .sm-custom > li > ul:after {
		display:none;
	}


/* Menu items
===================*/

	.sm-custom a {
		padding:13px 5px 13px 28px !important;
		color:#555 !important;
		background:transparent !important;
	}
	.sm-custom a.current {
		color:#D23600 !important;
	}
	/* add some text indentation for the 2+ level sub menu items */
	.sm-custom ul a {
		border-left:8px solid transparent;
	}
	.sm-custom ul ul a {
		border-left:16px solid transparent;
	}
	.sm-custom ul ul ul a {
		border-left:24px solid transparent;
	}
	.sm-custom ul ul ul ul a {
		border-left:32px solid transparent;
	}
	.sm-custom ul ul ul ul ul a {
		border-left:40px solid transparent;
	}


/* Sub menu indicators
===================*/

	.sm-custom a span.sub-arrow,
	.sm-custom ul a span.sub-arrow {
		top:50%;
		margin-top:-9px;
		right:auto;
		left:6px;
		margin-left:0;
		width:17px;
		height:17px;
		font:normal 16px/16px monospace !important;
		text-align:center;
		border:0;
		text-shadow:none;
		background:rgba(255,255,255,0.6);
		-moz-border-radius:50px;
		-webkit-border-radius:50px;
		border-radius:50px;
	}
	/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
	.sm-custom a.highlighted span.sub-arrow {
		display:none !important;
	}


/* Items separators
===================*/

	.sm-custom li {
		border-top:1px solid rgba(0,0,0,0.05);
	}
	.sm-custom > li:first-child {
		border-top:0;
	}

}


@media screen and (max-width: 991px) {

	.navbar-collapse ul.nav > li > a{

		background-image: url("/fileadmin/media/template/smartPfeilDown.png");
    	background-position: right center;
		background-repeat: no-repeat;
	}
	.navbar-collapse ul.nav > li.open > a,
	.navbar-collapse ul.nav > li.open > a:hover,
	.navbar-collapse ul.nav > li.open > a:focus {

		background-image: url("/fileadmin/media/template/smartPfeilUp.png");
		background-position: right center;
		background-repeat: no-repeat;

	}
}



@media screen and (min-width: 992px) {
	.navbar-collapse {
		padding: 0px;
	}
	.navbar {

	}
	.navbar .nav > li > a {

	}
	.navbar .nav > li {


	}
	.navbar .nav > li li{


	}
	ul.nav {

	}
	.navbar .nav > li > a .sub-arrow{

	}
	.nav li > a:hover, .nav li> a:focus,
	.nav .open > a, .nav .open > a:hover, .nav .open > a:focus,
	.navbar .nav > li.active > a {


	}

	ul.dropdown-menu {

	}
	ul.dropdown-menu li {


	}
	ul.dropdown-menu li:first-child {

	}
	.navbar-nav ul .sub-arrow {

	}
	ul.dropdown-menu a {

	}


}


@media screen and (min-width: 1200px) {
	.navbar .nav > li {

	}

}


.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {


}

