
/*Styles for screen 480px and lower*/
	/*@media screen and (max-width: 480px) {
		nav ul li {
			width: 50%;
		}
		nav a#pull {
			display: inline-block;
			float: right;
			width: 45px;
			position: relative;
			background-color: rgba(255,255,255,0.5);
			padding: 5px 0px 0px 0px;
		}
		nav a#pull:after {
			content:"";
			background: url('images/menu.png') no-repeat;
			width: 30px;
			height: 30px;
			display: inline-block;
			position: absolute;
			right: 0px;
			top: 0px;
		}

		
	}

/*Styles for screen 360px and lower*/
	/*@media screen and (max-width: 360px) {
		nav ul li {
			width: 100%;
		}
	}

/*Styles for screen 320px and lower*/
	/*@media screen and (max-width: 320px) {
		nav ul li {
			width: 100%;
		}
		nav ul li a {
			text-decoration: none;
		}
	}