@font-face {
	font-family: "fogie-thin";
	src: url(/js/fonts/Fogie-Thin.otf) format("truetype");
}

.tel_header {
	float: right;
	font-size: 12px;
	color: #777;
	font-weight: 300;
}
.tel_header a {
	color: #999;
}
/* Desktop Menu */
nav {
	float: right;
	font-size: 16px;
	font-weight: 400;
	text-align: right;
	margin-top: 20px;
	width: 700px;
}

nav ul {
	float: right;
	width: 100%;
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
nav ul li {
	position: relative;
	display: inline;
}

/*Top level menu link items style*/
nav ul li a {
	width: 20%;
	color: white;
	text-decoration: none !important;
	padding-left: 0;
	padding-right: 0;
	margin-left: 30px;
	margin-right: 0;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
    background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px;
}

nav ul li a.active_menu {
	border-bottom: 2px solid #6e5819;
}
nav li a:hover {
	border-bottom: 1px solid #6e5819;
}

* html nav ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

	
/* sub menus */
nav ul li ul {
	text-align: left;
	position: absolute;
	left: -3000px;
	margin-top: 16px;
	margin-left: 20px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
}

/*Sub level menu list items (alters style from Top level List Items)*/
nav ul li ul li {
	display: list-item;
	float: none;
	background-color: rgba(255, 255, 255, 0.62);
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
nav ul li ul li ul {
	top: 0;
}

/* Sub level menu links style */
nav ul li ul li a {
	display: block;
	font-size: 13px;
	width: 170px; /*width of sub menus*/
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0;
	color: #292929 !important;
	border-top-width: 0;
	margin-top: 1px !important;
	border-bottom: none !important;
}

nav ul li ul li:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

nav ul li ul li:last-child {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

nav ul li ul li:hover {
	background-color: rgba(255, 255, 255, 0);	
}

nav ul li ul li a:hover {
	color: #A77148 !important;
}

/* Holly Hack for IE \*/
* html nav{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass{
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{ 
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	/*background-color: #ccc;*/ /* generally should be just a little lighter than the box-shadow color for CSS3 capable browsers */
}

.toplevelshadow{
	margin: 5px 0 0 5px; /* in NON CSS3 capable browsers gives the offset of the shadow */
	/* opacity: 0.8; shadow opacity mostly for NON CSS3 capable browsers. Doesn't work in IE */
}

.ddcss3support .ddshadow.toplevelshadow {
	margin: 0; /* in CSS3 capable browsers overrides offset from NON CSS3 capable browsers, allowing the box-shadow values in the next selector to govern that */
	/* opacity: 1; */ /* optionally uncomment this to remove partial opacity for browsers supporting a box-shadow property which has its own slight gradient opacity */
}

.ddcss3support .ddshadow {
	
}

@media only screen and (max-width: 959px) {
	nav {
		font-size: 15px;
		width:570px;
	}
	
	/*Top level menu link items style*/
	nav ul li a {
		margin-left: 10px;
	}
}

@media only screen and (max-width: 479px) {
	.mobielmenu img {
		margin-right: 0;
		width: 30px;
	}
}