/*
---------------------------------------------------------------
  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-simple > li > a { ... } instead of .sm-simple a { ... }

a{color:#b9cdd9;text-decoration:none}
body{margin:0px}
#page{width:100%; margin:0px;}
#page #header{text-align:center; margin-top:25px;}
#page #balken{background-color: #b9cdd9;margin: 0px;width: 100%;height: 60px;margin-top:
20px;margin-bottom: 30px;}

#page #header p{color:#b9cdd9;font-family:Arial, Verdana;font-size:300%;margin-top:0px; margin-
bottom: 0px;text-align:center}

#page #main{color:#000;font-family:Arial, Verdana;font-size:100%;margin:0 auto;max-width:360px}
#page #main #left{border-color:#b9cdd9;border-style:solid;border-width:1px;padding:10px;}
#page #impressum{font-family: Arial, Verdana; margin-bottom: 30px;float: right;margin-top: 10px;}

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

	
#menu-button {
  display:none;
}
#menu-button:before {
  content:'Navigation -';
}
#menu-button.collapsed:before {
  content:'Navigation +';
}


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

	.sm-simple,
	.sm-simple ul {
        width: 98%;
        margin: 0 auto;
    }
    .sm li {
        padding: 28px 10px;
        width: 156px;
    }
    .sm li ul li{
        padding: 17px 10px;
        width: 156px;
    }
    .sm li ul li a{
        font-size: 13px;
    }
    .sm-simple ul.showSub{display: block;}

    .sm-simple ul{display:none;}
    nav#main-nav{
        background:#b9cdd9;
        width: 1280px;
    }
    nav#main-nav.with-sub-nav-border{
        border-bottom: 40px solid #5c7287;
    }
    #main-menu ul {
        position: absolute;
        top: 70px;
        height: 60px;
        left: 0;
        right: 0;
        float: left;
        z-index: 10;
        width:960px; /* fixed width only please - you can use the "subMenusMinWidth"/"subMenusMaxWidth" script options to override this if you like */
    }
    ul.sm ul li,
    ul.sm-vertical li{
        float: left;
    }
    #sub-menu.sm li{
        padding: 15px 40px;
    }


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

	.sm-simple a {
        height: 20px;
        background: url('../images/square_sprite.png') no-repeat;
        background-position: 0px 0px;
        padding: 0 0 0 30px;
		color:#FFF;
		font-size:17px;
		line-height:20px;
		text-decoration:none;
        display: inline-block;
	}
	.sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active,
	.sm-simple a.highlighted {
		background-position: 0px -20px;
		color:#000;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-simple a.current, .sm-simple a.current:hover, .sm-simple a.current:focus, .sm-simple a.current:active {
        background: url('../images/square_sprite.png') no-repeat 0px -20px;
		color:#000;
	}
	.sm-simple a.has-submenu {
		padding-right:32px;
	}
 	.sm-simple ul a.has-submenu,
	.sm-simple-vertical a.has-submenu {
		padding-right:23px;
	}


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

	.sm-simple a span.sub-arrow {
		display: none;
	}
 	.sm-simple ul a span.sub-arrow,
	.sm-simple-vertical a span.sub-arrow {
		right:auto;
		margin-left:-14px;
	}


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

/*	.sm-simple li {
		border-left:1px solid #f3f3f3;
	}
	.sm-simple li:first-child {
		border-left:0;
	}
	.sm-simple ul li,
	.sm-simple-vertical li {
		border-left:0;
		border-top:1px solid #f3f3f3;
	}
	.sm-simple ul li:first-child,
	.sm-simple-vertical li:first-child {
		border-top:0;
	}*/


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

	.sm-simple span.scroll-up, .sm-simple span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		border:solid #bbb;
		border-width:1px 0;
		background:#fff;
		height:22px;
		/* width and position will be automatically set by the script */
	}
	.sm-simple span.scroll-up-arrow, .sm-simple span.scroll-down-arrow {
		position:absolute;
		top:-2px;
		left:50%;
		margin-left:-8px;
		/* 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:8px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #555 transparent;
	}
	.sm-simple span.scroll-down-arrow {
		top:6px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}


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