
@font-face {
    font-family: "hans";
    src: url(mist.otf);
}
html,body {
	margin:0;
	padding:0;
    	margin-top:0;

}

header {
    z-index:4000;
	padding:0%;
    width:100%;
    position: absolute;
}

#logo {
    padding: 8px;
	float:left;
	color:orangered;
    text-decoration: none;
	font-family:"Hans", Helvetica;
	font-size:24px;
	margin-left:5px;
}
		
nav {
	float:right;
	padding-top:10px;
}

.navitem {
	color:orangered;
	font-family:"Hans", Helvetica;
	font-size:24px;
	margin-left:15px;
    	margin-right:10px;
	text-decoration:none;
	padding:8px;
}

.navitem:first-child {
}

.navitem:hover {
	color:black;
}

#smartbutton {
	float:right;
	width:20px;
	height:15px;
	cursor:pointer;
	padding:7px;
	border-radius:0px;
	margin-top:5px;
	display:none;
}

.buttonline {
	background-color:orangered;
	height:3px;
	margin-top:4px;
}

.buttonline:first-child {
	margin-top:0px;
}

/* standard menu */
@media only screen and (min-width:551px) 
{
	#smartbutton {
		display:none;
	}

	nav {
		display:inline-block !important;
	}
   
}

/* smart menu */
@media only screen and (max-width:550px) 
{
	#smartbutton {
		display:inline-block;
	}

	nav {
		display:none;
		width:100%;
		position:relative;
		top:5px;
	}
	
	.navitem {
		border-top:1px solid orangered;

		display:block;
		margin-left:5px;
	}
	
	.navitem:hover {
		background-color:red;
        color:white;
	}
}
