html,body{  

	max-width: 100%;
	overflow-x: hidden;
	
}

*, *:before, *:after{
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;
	
}

body {
	
	margin: 0;
	padding-top: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.43;
	color: #333;

}

p {
	
	margin: 0;
	padding: 0;
	
}

::selection {

	color: #ededed;
	background: black;
	
}

::-moz-selection { /* Code for Firefox */
	color: #ededed;
	background: black;
}

.navigate {
	
	height: 50px;
	width: 100%;
	position: fixed;
	top: 0;
	background-color: #2F343B;/*#f8f8f8;*/
	z-index: 100;
	
}

.navigate img {
	
	float: left;
	height: 100%;
	padding: 15px 10px;
	padding-right: 0px;
	
}

.navigate a, .in-dropper {
	
	float: left;
	display: block;
	height: 100%;
	color: #dadde1;
	/*text-align: center;*/
	padding: 15px 15px;
	line-height: 20px;
	text-decoration: none;

}

.navigate  a h1 {
	
	margin: 0;
	text-align: left;
	font-size: 18px;
	font-weight: 300;
	
}

.navigate .drop-right a:hover, .in-dropper:hover {
	
	background-color: #4b535d;
	
}


.drop-reference {
	
	display: none;
	float:left;
	margin-top: 50px;
	/*Exact width of the "#Further" <div>*/
	margin-left: -108px;
	
}

.drop-reference a{
	
	float: none;
	display: block;
	text-align: left;
	width: 200px;
	background-color: #2F343B;
	
}

.active {
	
	background-color: #4b535d;
	
}

.in-dropper {
	
	cursor: pointer;
	
}

#arrow-down {
	
	float: right;
	margin-left: 15px;
	
}

	.bar-box {
		
		padding: 3px 10px;
		margin: 8px 15px 0px 0px;
		border-radius: 10%;
		border: solid 1px #4b535d; /*#ddd;*/
		background-color: transparent;
		cursor: pointer;
		display: none;
		
		position: absolute;
		right: 0;
		top: 0;
		
	}

	.bar-box:hover {
		
		background-color: #4b535d; /*#ddd;*/
		
	}

	.bar-line {
		
		height: 2px;
		width: 22px;
		margin: 5px auto;
		border-radius: 1px;
		background-color: #dadde1; /*#e3e5e8; #888;*/
		
	}

	
@media screen and (max-width: 800px){
	
	.bar-box {
		
		display: block;
		
	}
	
	.drop-right {display: none;}

	.navigate.responsive .drop-right {
		
		display: block;
		float: right;
		background-color: #2F343B;
		
	}

	.navigate.responsive .drop-right a, .in-dropper {
		
		float: none;
		display: block;
		text-align: left;
		width: 250px;
		
	}

	.navigate.responsive .main-head {
		
		float: none;
		/*I don't like this, but it cannot be solved with padding or margins:*/
		/*Note: this number matches the padding from .navigate a {} above */ 
		position: relative;
		left: 15px;
		
	}
	
	.drop-reference {
		
		margin-top: 0px;
		margin-left: 0px;
		
	}
		
}



.footsy {

	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;

}

.footsy-in {
	
	margin: 0 auto;
	padding: 5px;
	width: 75%;
	border-top: 1px solid #bbb;
	font-size: 10px;
	text-align: center;
	

}