/* Navigation Block */
nav {
	background-color: #262626;
	font-family: 'Roboto', sans-serif;
	height: 62px;
}

/* Menu Block */
#menu {
	position: absolute;
	top: 21px;
	left: 20px;
	z-index: 3;
}


/* Header Block */
#nav-header {
	position: absolute;
	top: 15px;
	width: 100%;
	z-index: 1;
	color: #a9a9a9;
	text-align: center;
}

/* Header Style */
.nav-h1 {
	font-size: 1.6em;
	font-weight: normal;
}

/* Logo Block */
#logo {
	position: absolute;
	top: 8px;
	right: 20px;
	width: 100%;
	z-index: 2;
	text-align: right;
}

/* Dropdown Button */
.dropbtn {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	width: 35px;
	height: 20px;
	background-image: url("/_theme/images/menu-35x20.png");
    border: none;
    cursor: pointer;
}

/* Show X Menu Instead Of Hamburger On Click */
.menu-x {
	background-image: url("/_theme/images/menu-35x20-active.png");
}

/* The dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 230px;
    margin-top: 10px;
    z-index: 4;
	background-color: #262626;
}

/* Links inside the dropdown */
.dropdown-content a {
    display: block;
    color: #a9a9a9;
    padding: 10px 16px;
	font-size: 1.4em;
    text-decoration: none;
}

/* Smaller size links inside the dropdown */
.dropdown-small {
    padding: 8px 0px;
	line-height: 20px;
	font-size: 0.8em;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	color: #ffffff;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
	display: block;
}


/* Unique styles for screen resolution of 1024px and below */
@media screen and (max-width: 1024px) {
	nav {
		height: 48px;
	}

	#menu {
		top: 14px;
		left: 15px;
	}

	#nav-header {
		top: 11px;
		color: #a9a9a9;
	}

	.nav-h1 {
		font-size: 1.2em;
	}

	#logo {
		top: 10px;
		right: 15px;
	}
}


/* Unique styles for screen resolution of 640px and below */
@media screen and (max-width: 640px) {
	nav {
		height: 48px;
	}

	#menu {
		top: 14px;
		left: 10px;
	}

	#nav-header {
		top: 11px;
		color: #a9a9a9;
	}

	.nav-h1 {
		font-size: 1.2em;
	}

	#logo {
		top: 10px;
		right: 10px;
	}

	.dropbtn {
    	width: 28px;
	    height: 20px;
    	background-image: url("/_theme/images/menu-28x20.png");
	}

	.menu-x {
		background-image: url("/_theme/images/menu-28x20-active.png");
	}
}


/* Unique styles for screen resolution of 320px and below */
@media screen and (max-width: 320px) {
	/* Hiding the header on a small screen */
	#nav-header {
		display:none;
	}
}