/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;

}

/* Basic Styles */
body {
	background-color: #ece8e5;
}
nav {
	height: 40px;
	width: 100%;
	font-size: 16pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	background: #eee; /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,204,0,1) 0%, rgba(255,153,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,204,0,1)), color-stop(100%,rgba(255,153,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,204,0,1) 0%,rgba(255,153,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,204,0,1) 0%,rgba(255,153,0,1) 100%); /* Opera11.10+ */
	background: linear-gradient(top, rgba(255,204,0,1) 0%,rgba(255,153,0,1) 100%); /* W3C */
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #CC9900;
}
nav ul {
	padding: 0;
	width: 1150px;
	height: 40px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #a4133c;
	display: inline-block;
	width: 140px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
}
nav li a {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CC9900;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	color: #ffffff;
	background-color: #ab203a;
}
nav a#pull {
	display: none;
}

/*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;
  	}
}

/*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: #eee; /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,204,0,1) 30%, rgba(255,153,0,1) 70%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,rgba(255,204,0,1)), color-stop(70%,rgba(255,153,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,204,0,1) 30%,rgba(255,153,0,1) 70%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,204,0,1) 30%,rgba(255,153,0,1) 70%); /* Opera11.10+ */
	background: linear-gradient(top, rgba(255,204,0,1) 30%,rgba(255,153,0,1) 70%); /* W3C */
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		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 #576979;
	}
}