@charset "UTF-8";
/* CSS Document */

nav {
	width:100%;
	background-color:#b23427;
}


.innerNav {
	max-width:960px;
	margin:0 auto;
}

/* New Nav Style*/
nav ul {
  list-style:none;
  color:#FFFFFF;
  padding:0;
  margin:0;
  text-align:center;
  -webkit-transition:max-height 0.4s;
  -ms-transition:max-height 0.4s;
  -moz-transition:max-height 0.4s;
  -o-transition:max-height 0.4s;
  transition:max-height 0.4s;
}

nav a:link,nav a:active,nav a:visited {
	color:#FFFFFF;
	padding:1.6em;
	display:block;
}

nav ul li {
  display:inline-block;
  cursor:pointer;
}


nav ul li:hover {
  background-color:#800000;
}

.handle {
    width:100%;
    background:#0a3149;
    text-align:right;
    box-sizing:border-box;
    padding:1.2em;
    cursor:pointer;
    color:#FFFFFF;
    display:none;
	font-size:1.5em;
  }

nav ul li:hover > ul
{
	
	max-height:100%;
}
