/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
nav {
	height: 60px;
	width: 100%;
	background: #4D4861;
	/*background: url('../img/blanc-80.png');*/
	position: relative;
	border-bottom: 2px solid #4D4861;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 700px;
	height: 60px;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #fff;
	font-size: 0.9em;
	display: inline-block;
	width: 140px;
	text-align: center;
	text-decoration: none;
	line-height: 60px;
	text-shadow: 1px 1px 0px #283744;
}
nav li a {
	border-right: 1px solid #453E46;
	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 {
	text-decoration: underline;
}
nav a.bg-mauve:hover, nav a.bg-mauve:active {
	background-color: #9b8db5;
}
nav a.bg-mauve2:hover, nav a.bg-mauve2:active {
	background-color: #a599bd;
}
nav a.bg-mauve3:hover, nav a.bg-mauve3:active {
	background-color: #b0a5c4;
}
nav a.bg-mauve4:hover, nav a.bg-mauve4:active {
	background-color: #bab1cc;
}
nav a.bg-mauve5:hover, nav a.bg-mauve5:active {
	background-color: #c5bdd4;
}
nav a#pull {
	display: none;
}

/* Fixed nav */
/* this make our menu fixed top */
.f-nav{ 
	z-index: 9999; 
	position: fixed; 
	left: 0; 
	top: 0; 
	width: 100%;
}

.nav-logo {
	background: url("../img/nav-logo.png") no-repeat;
	background-size: 160px;
	background-position: 30px 16px;
}

/*Styles for screen 768px and lower*/
@media screen and (max-width: 768px) {
	nav {
		border-bottom: 0;
		height: auto;
	}
	nav ul {
		width: 100%;
		height: 50px;
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
/* 		background-color: #283744; */
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../img/nav-icon.png') no-repeat;
		background-position: center;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 15px;
	}
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
		height: 50px;
	}
	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 30px;
  	}
  	nav a:hover, nav a:active {
		text-decoration: none;
		background-color: #605770;
	}
  	.double {
		line-height: 50px;
	}
	.court {
		width: 100%;
		line-height: 50px;
	}
}