@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600);	

/*---------------Mobile----------------*/
@media only screen and (min-width: 0px){
body, form, ul, li, a, img, button, button:focus{
	font-family: open sans;
	padding: 0;
	margin: 0;
	font-size: 18px;
	outline: 0;
}

#buffer {
	padding-top: 120px;
	padding-bottom: 30px;
	width: 100%;
}

#nav_menu {
	display: block;
	width: 100%;
	z-index: 999;
	box-shadow: 0 1px 6px #d0cdcd;
	background-color: white;
	position: fixed;
	white-space: nowrap;
}

#logo {
	display: block;
	vertical-align: middle;
	text-align: center;
}

#wts_logo {
	width: 40%;
	min-width: 300px;
}

#mobilenav{
	float: left;
	height: 50px;

}

#nav_btn{
	height: 100%;
	background: url("../logo/icons/menu.png") center no-repeat;
	background-color: #ffe000;
	background-size: 15px;
	vertical-align: middle;
	padding: 25px;
	border-style: none;
}

#nav {
	display: none;
	margin-top: 50px;
	vertical-align: middle;
	background-color: white;
	width: 100%;
	position: absolute;

}

#nav ul{
	width: 100%;
	vertical-align: center;
}

#nav li {
	margin: 0;
	height: 100%;

}
#nav a {
	display: block;
	color: #262626;
	line-height: 60px;
	text-decoration: none;
	padding-left: 30px;
	padding-right: 10px;
	margin-left: -5;
	font-size: 14px;
	font-weight: bold;
	vertical-align: middle;
	-webkit-transition-duration: .3s;
	border-bottom-style: solid;
	border-width: 1px;
	border-color: #d0cdcd;
}

#nav a:hover {
	background-color: white;
	-webkit-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	-moz-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
}

#nav a:active {
	background-color: white;
	-webkit-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	-moz-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
}

.current_page {
	background-color: white;
	-webkit-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	-moz-box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
	box-shadow: inset 16px 0px 0px -1px rgba(255,224,0,1);
}

#search {
	overflow: hidden;
	height: 50px;

}

#search_bar{
	height: 100%;
	
}
input {
	border-radius: 0;
	-webkit-appearance: none;
}

#input {
	width: 80%;
	height: 100%;
	float: left;
	display: inline-block;
	outline: none;
	font-size: 16px;
	padding-left: 10px;
	border-style: none;
	border-radius: 0;
	background-color: #f9f7f7;
	vertical-align: middle;
	overflow: hidden;

}

#search_button {
	width: 20%;
	height: 100%;
	float: right;
	background: url("../logo/icons/search_icon.png") center no-repeat;
	background-size: 15px;
	vertical-align: middle;
	margin-left: -5;
	padding: 25px;
	border-style: none;
	background-color: #ffe000; /* For browsers that do not support gradients */
}

#nav_btn:hover, #search_button:hover{
	cursor: pointer;
}

/*---------------Tablet----------------*/

@media only screen and (min-width: 760px) {
	#buffer {
		padding-top: 150px;
	}

	#mobilenav {
		display: none;
	}

	#nav {
		display: inline-block;
		float: left;
		margin: 0;
		vertical-align: middle;
		width: auto;
		position: relative;

	}

	#nav ul{
		height: 100%;
		vertical-align: center;
	}

	#nav li {
		display: inline-block;
		margin: 0;
		height: 100%;
	}

	#nav a {
		border-style: none;
		padding-left: 10px;
	}

	#nav a:hover {
		background-color: white;
		-webkit-box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
		-moz-box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
		box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
	}

	.current_page {
		background-color: white;
		-webkit-box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
		-moz-box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
		box-shadow: inset 0px -7px 0px -2px rgba(255,224,0,1);
	}

	#search {
		float: right;
		height: 60px;
	}


	#input {
		width: 300px;
	}

	#search_button {
		width: auto;
	}



}


/*---------------Destop----------------*/
@media only screen and (min-width: 1120px){
	#buffer {
		padding-top: 75px;
	}

	#nav_menu {
		height: 60px;
	}

	#nav{
		display: inline-block;
	}

	#logo {
		float: left;
		vertical-align: middle;
		text-align: left;
		height: 100%;
		overflow: hidden;
		white-space: nowrap;
	}

	#wts_logo {
		width: auto;
		height: 100%;
	}

}


