html {
	scroll-behavior: smooth;
}

#static-header {
	position: fixed;
	top: -250px;
	display: none;
	z-index: 2;
	margin: -4px -5px;
	padding: 4px 5px;
	background: #FFF;
	animation: fadein 1s;
	transition: top 0.2s ease;
}

.hasjs #static-header {
	display: block;
}

#static-header.shown {
	top: 4px;
}

@media (max-width: 700px) {
	#static-header.shown {
		top: 0;
	}
}

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

#static-header .dropdown .small-icon > a {
	color: #105289;
}

/* Search box only appears in the static header, not the regular nav bar */
#static-search-box {
	display: none;
}

#static-header #static-search-box {
	display: list-item;
	float: right;
	margin-top: 4px;
	margin-left: 15px;
	font-size: 100%;
	box-shadow: none;
}

.rtl #static-header #static-search-box {
	float: left;
	margin-left: 0;
	margin-right: 15px;
}

#static-header li.breadcrumbs {
	padding-top: 3px;
}
