/* menu-top */
* {       
 margin:0;
 padding:0;
 list-style:none;
 text-decoration:none;
}

.menu-top:before,
.menu-top:after {
    content: " ";
    display: table;
}
.menu-top:after {
    clear: both;
}
.menu-top {
    *zoom: 1;
}

/* Basic Styles */
nav {
	height: 64px;
	width: 100%;
	font-size: 1.6em;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	position: relative;
}

nav ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: 64px;
	text-align:center;
}
nav li {
	display:inline-block;
}
nav a {
	color: #5c3c18;
	display: block;
	padding: 0 18px 0 18px;
	margin: -9px 0 0 0;
	text-align: center;
	text-decoration: none;
	font-weight: 400;
	line-height: 64px;
}

nav a:hover, nav a:active, nav .menu-current a, nav .menu-last a:hover, nav  .menu-parent > a  {
	color: #cf0702;
	background : url(img/navi_li_hover.png) 50% 87% no-repeat;
}
nav a#pull {
	display: none;
}

/*Styles for screen 1030px and lower*/
@media screen and (max-width: 1024px) {
nav a {
	padding: 0 10px 0 10px;
}
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 770px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
		border-left: 1px solid #dac4ac;
		border-top: 1px solid #dac4ac;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
		border-right: none;
  	}
  	nav li a {
		border-bottom: 1px solid #dac4ac;
		border-right: 1px solid #dac4ac;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
		padding: 0 0 0 0;
		margin-top: 0;
  	}
	nav a:hover, nav a:active, nav .menu-current a, nav .menu-last a:hover, nav  .menu-parent > a  {
	color: #fcfaf5;
	background: none;
	background-color: #cf0702;
}
}

/*Styles for screen 480px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav a {
	  	margin-bottom: 1px;
		padding: 0 0 0 0;
		margin-top: 0;
  	}
	nav a#pull {
		display: block;
		background-color: #cf0702;
		color: #fff;
		text-shadow: none;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('img/nav-icon.png') 0px 10px no-repeat;
		width: 30px;
		height: 50px;
		display: inline-block;
		position: absolute;
		right: 25px;
		top: 10px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #dac4ac;
		padding: 0 0 0 0;
		margin-top: 0;
	}
}

