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

/* Basic Styles */
body {
	background-color: #ece8e5;
}
nav {
	height: 120px;
	width: 100%;

	font-size: 11pt;

	
	position: relative;

}
nav ul {
	padding: 0;
	display: inline-block;
	margin: -15px auto;
	width: 550px;
	height: 40px;
	padding-top: 20px;
	margin-left: 40px;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #642a76;
	font-size: 15px;
	display: inline-block;
	width: 101px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	font-family: 'Open Sans';
	font-weight: 600;
	
}
nav li a {
	
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	
}
nav a#pull {
	display: none;
}




@media only screen and (max-width : 992px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	
	nav li {
		width: 100%;
		text-align: center
		}
  
  
	nav a#pull {
		  display: inline;
		  margin-top: 40px;
		  margin-right: 20px;
		  float: right;
  	}
	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;
		margin-top: 40px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
	}
}