﻿
/* Create menu bar */
.menu {	
	display: inline-block;	
	position: relative;
	max-width: 1100px;
	padding: 0;
	margin: 10px auto;
	height: 30px;
	z-index: 200;
}

/* Create menu bar divider (if needed) */
.menu .menu-divider {
	border-right:1px solid #dfca9c;
	margin:0;
	height:30px;
	margin-bottom:-20px;
	padding:0;
}

/* Strip the ul of padding and list styling */
.menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: relative;
}

/* Create a horizontal list with spacing */
.menu ul li {
	display:inline-block;	
	float: left;
}

/* Style for menu links */
.menu ul li a {
	display:block;
	/* min-width:140px;   Set to make all menul links the same width */
	height: 50;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	font-family: moonshiner-regular;
	font-size: 1.5em;
	letter-spacing: 0.04em;
	color: #ffffff;
	background: transparent;
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

/* Set color for highlighted menu selection (if needed) */
.menu .highlighted>a {
	color: #818285;
	
}

/* Hover state for top level links */
.menu ul li a:hover {
	color: #fbd05b;
}

/* Hide dropdown links until they are needed */
.menu ul ul {
	position: absolute;
	padding-top: 13px;	
	opacity: 0;
	visibility: hidden;
	display: none;
	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}

/* Create 2nd level dropdown list */
.menu ul ul li {
	float: none; 
	position: relative;
}

/* Style for dropdown links */
.menu ul ul li a {
	background: rgba(255,255,255,0.85);	
	color: #56565b;
	height: 40px;
	line-height: 40px;
	text-align: left;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 1em;
}

/* Hover state for dropdown links */
.menu ul li:hover ul a:hover {
	background: rgba(4,98,64,0.859);
	color: #fff;	
}

/* Create 3rd level dropdown list */
.menu ul ul ul {
	position: absolute;
	padding-top: 0;
	padding-left: 0;	
	left: 100%;
	border-style: solid;
	border-color: #000000;
	border-width: 1px 0 0 0;
	top: -1px;
	margin-left: -1px;
}

/* Make dropdown links vertical */
.menu ul li ul li {
	display: block;
	float: none;
}

/* Prevent text wrapping */
.menu ul li ul li a {
	min-width: 100px;
	white-space: nowrap;
	padding: 0 20px;
	border-style: solid;
	border-color: #000000;
	border-width: 0 1px 1px 1px;
}
.menu ul li ul li ul li a {
	min-width: 100px;
	white-space: nowrap;
	padding: 0 20px;
	border-style: solid;
	border-color: #000000;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
}

/* Display the dropdown on hover */
.menu ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	display: block;
}

/* Style for arrows */
.menu ul li .arrow:after {
	content: "";
	float: right;
	text-align: right;
	width: 0; 
	height: 0; 
	display: block;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;	
	border-top: 4px solid #818285;
	top: 9px;
	margin: 15px 0 0 5px;
	position: relative;
}

/* Style for 2nd level arrows */
.menu ul ul li .arrow:after {
	content: "";
	float: right;
	text-align: right;
	width: 0; 
	height: 0; 
	display: block;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;	
	border-left: 4px solid #fff;
	top: 6px;
	position: relative;
	margin: 10px 0 0 10px;
}


/* Responsive Styles */

@media screen and (max-width : 767px){
	
	
	
}

@media screen and (min-width : 768px) and (max-width : 900px){
	


}

@media screen and (min-width : 901px) and (max-width : 1100px){
	
/* Style for menu links */
.menu ul li a {
	padding-left: 14px;
	padding-right: 14px;
}

}