nav#navbar, nav#navbar * {
	margin: 0;
	padding: 0;
	font-family: Helvetica Neue, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

nav#navbar {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	left: 0;
	pointer-events: none;
	z-index: 10;

}

.nav-break {
	width: 100%;
	height: 35px;
	position: relative;
	background: url(../images/navbreakaway.png);
}

nav#navbar:target {
	top: 0;
}


nav#navbar:target a#appear {
	opacity: 0;
}


nav#navbar ul {
	list-style-type: none;
	display: block;
	height: 70px;
	line-height: 60px;
	width: 100%;
	background: url(../images/headerpattern.png);
	pointer-events: auto;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	
	-webkit-box-shadow: rgba(0,0,0,0.6) 0px 0px 2px;
	-moz-box-shadow: rgba(0,0,0,0.6) 0px 0px 2px;
	-o-box-shadow: rgba(0,0,0,0.6) 0px 0px 2px;
	box-shadow: rgba(0,0,0,0.6) 0px 0px 2px;
}
div.nav-holder {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	left: 0;
	pointer-events: none;
	z-index: -1;
}
div.nav-holder ul {
	list-style-type: none;
	display: block;
	height: 70px;
	line-height: 60px;
	width: 100%;
	background: url(../images/headerpattern.png);
	pointer-events: auto;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	z-index: -1;
}

nav#navbar ul li {
	display: inline-block;
}

nav#navbar ul li:first-child {
	margin-left: 40px;
}

nav#navbar ul li a, nav#navbar ul li a:visited {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	height: 59px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 1px;
	text-decoration: none;
	
	
	-webkit-transition: background .2s;
	-moz-transition: background .2s;
	-o-transition: background .2s;
	transition: background .2s;
}

nav#navbar ul li a:hover {
	background: #333;
	background: rgba(0,0,0,0.4)
}

nav#navbar ul li a:active {
	position: relative;
	top: 1px;
}

/* webkit scrollbar */
#navbar ::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
	height: 50px;
	background-color: rgba(250,250,250,0.4);
	-webkit-border-radius: 100px;
	-moz-border-radius:  100px;
	border-radius:  100px;
}

::-webkit-scrollbar-thumb:horizontal {
	height: 50px;
	background-color: rgba(250,250,250,0.4);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}