/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		border-bottom: 1px solid #576979;
		border-right: 1px solid #576979;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
	h1 {
		font-size:100%;
	}
	.audio-block {
		display:block;
		width: 100%;
	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #283744;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
	content: "";
	width: 30px;
	height: 30px;
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 10px;
	background-image: url(images/nav-icon.png);
	background-repeat: no-repeat;
	}
}
@media only screen and (max-width : 360px) {
	html {
	background-color: #000;
	background-image: none;
	}
	h1 {
		font-size:35%;
	}
	h2 {
		font-size:100%;
	}
	h3 {
		font-size:100%;
	}
	p {
		font-size:100%;
	}
}
/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
	}
	h1 {
		font-size:20%;
	}
	p {
		font-size:90%;
	}
}