
#container {
	margin: 0 0;
	width: 100%;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	margin:0px;
	padding: 0px;
	background-color: #000;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 100%;
	box-shadow: 0px 6px 12px 0 rgba(0,0,0, 0.7), 0px 6px 12px 0 rgba(255, 215, 0, 0.7);
    border-bottom: 2px inset gold;
    z-index: 1000;
}

#logo {
//	display: block;
	padding: 0px;
	margin: 0px;
//	float: left;
}
#logo img {
	height: 40px;
	width: auto;
}
#logo_mobi {
	display: none;
}

/* Since we'll have the "ul li" "float:left" we need to add a clear after the container. */

nav:after {
	content: "";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul", and adding "position:relative" */
nav ul {
//	float: right;
	text-align: center;
	padding:0;
	margin: 0 0 0 -6px;
	list-style: none;
	position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
	vertical-align: middle;
	margin: 5px 10px;
	display: inline-block;
//	float: left;
	font-weight: bold;
	background-color: none;
	text-align: center;
	border: 0px solid red;
}

/* Styling the links */
nav a {
	display:block;
	padding: 0px 5px;
	color:#FFF;
	font-size:17px;
	text-decoration:none;
}

nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
nav a:hover {
//	background-color: #000000;
	color: #000;
	text-shadow:
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,

		1px 1px 1px #fff,
		-1px -1px 1px #fff,
		-1px 1px 1px #fff,
		1px -1px 1px #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute;
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */
	left:170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

#m_slct {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	font-size: 15px;
	padding: 0px 6px 0px 6px;
	letter-spacing: 0px;
	border-radius: 6px;	-moz-border-radius: 6px; -webkit-border-radius: 6px;
	border: 2px inset gold;
}
#m_pg {
//	font-size: 16px;
	font-weight: bold;
	padding: 1px 7px;
	background: gold;
	color: #000;
	border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px;
	letter-spacing: 0.5px;
}
#m_ut {
	color: var(--gold);
//	font-size: 12px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
//	line-height: 100%;
}
#m_horse_hammer {
	position: absolute;
	top: 0;
	right: 10px;
	height: 90px;
	width: auto;
}
.m_lnk { color: #fff; }
a.m_lnk:link { text-decoration: none; color: #fff; }
a.m_lnk:hover {
	color: #000;
	text-shadow:
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,
		0 0 16px gold,

		1px 1px 1px #fff,
		-1px -1px 1px #fff,
		-1px 1px 1px #fff,
		1px -1px 1px #fff;
}
a.m_lnk:active {
	text-shadow: none;
	color: gold;
}

@media (max-width: 1020px) {	/*****************************************************************************************/
}

@media (max-width : 900px) {	/*****************************************************************************************/

	#logo {
		display: none;
	}
	#logo_mobi {
		display: block;
		padding: 5px 0;
	}
	#logo_mobi img {
		max-height: 57px;
//		height: 57px;
		max-width: 100%;
		width: auto;
	}
	#m_slct {
		text-transform: uppercase;
	}
	#m_pg {
		font-family: 'Roboto Slab', serif;
		padding: 2px 0 2px 22px;
		font-size: calc(120%);
	}
	#m_horse_hammer {
		right: 5px;
		height: 90px;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		color:#FFF;
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 2px;
		display: block;
		background-color: #6c622e;
		padding: 5px 0px;
		text-decoration:none;
		border:none;
		text-shadow:
			1px 1px 1px #000,
			-1px -1px 1px #000,
			-1px 1px 1px #000,
			1px -1px 1px #000,

			0 0 12px gold,
			0 0 12px gold,
			0 0 12px gold,
			0 0 12px gold,
			0 0 12px gold;
	}

	.toggle:hover {
		background-color: #000000;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		text-align: left;
		float: left;
		display: block;
		width: 100%;
		padding: 6px 35px;
		text-transform: uppercase;
		background-image: url(applique_menu.png);
		background-size: 48px auto;
		background-repeat: no-repeat;
    	background-position: -3px 0;

		border: 0px solid red;
	}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #000000;
	}

	nav ul li ul li .toggle,
	nav ul ul a,
	nav ul ul ul a{
		padding:14px 20px;
		color:#FFF;
		font-size:17px;
	}


	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #212121;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}

	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}

	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */
	}
}

@media (max-width: 850px) {	/*****************************************************************************************/
}

@media (max-width: 640px) {	/*****************************************************************************************/
/*
	nav {
		position: fixed;
		top: 0;
		width: 100%;
		height: auto;
	}
*/
}

@media (max-width: 520px) {	/*****************************************************************************************/
}

@media (max-width: 400px) {	/*****************************************************************************************/
}

@media (max-width : 330px) {
	nav ul li {
		display:block;
		width: 94%;
	}
}

@media print {
	nav {
		display: none;
	}
}
