* {
    margin: 0;
    padding: 0;
    font-family: "myriad-pro-semiextended", sans-serif;
    box-sizing: border-box;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

nav {
    float: left;
    width: 100%;
	max-width: 1280px;
    background: #006699;
    font-size: 1em;
    font-weight: 500;
    position: relative;
    top: 0px;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
nav ul {
    margin: 0;
    padding: 0;
}
nav a {
    display: block;
    color: #fff;
    text-decoration: none;
}
nav a:hover {
    background: #0099cc;
    color: #fff;
    text-decoration: none;
}
nav ul li {
    position: relative;
    float: left;
    list-style: none;
    color: #fff;
    transition: 0.5s;
}
nav ul li a {
    padding: 8px 20px;
    border-right: 1px solid #fff;
}
nav li {
    width: auto;
    min-width: 16.5%;
    float: left;
    position: relative;
}
nav li:last-child a {
    border-right: none;
}
/*Hover state for top level links*/
nav ul li:hover {
    background: #0099cc;
}
nav ul > li.submenu > a:after {
    display: inline-block;
    content: '';
    margin-left: 10px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    border-bottom: 5px solid transparent;
}
nav ul ul li.submenu > a:after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    border-left: 5px solid #fff;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
/*Style for dropdown links*/
nav ul ul {
    position: absolute;
    top: -9999px;
    left: -9999px;
    background: #0099cc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1;
}
nav li:hover ul a {
    background: #ddd;
    color: #006699;
    border-right: none;
}
nav li:hover a.blue {
    background: #006699;
    color: #fff;
}
nav li:hover a.red {
    background: #e2203e;
    color: #fff;
}
nav ul ul li {
    float: none;
    width: auto;
    min-width: 200px;
    white-space: nowrap;
    border-bottom: 1px solid #fff;
}
.separate {
    display: block;
    width: auto;
    height: 3px;
    background: #fff;
}
/*Hover state for dropdown links*/
nav ul ul li a:hover, nav ul ul li:hover a.blue, nav ul ul li:hover a.red {
    background: #0099cc;
    color: #fff;
}
nav ul ul li a {
    padding: 8px 20px;
}
nav ul ul li:last-child {
    border-bottom: none;
}
nav ul li:hover > ul {
    top: 100%;
    left: 0;
}
nav ul ul li:hover > ul {
    top: 0;
    left: 200px;
}
input#responsive-nav, label.responsive-nav-label {
    display: none;
}

/*Styles for screen 920px and lower*/
@media screen and (max-width: 920px) {
nav {
    height: auto;
}
nav ul {
    width: 100%;
    display: block;
    height: auto;
}
nav li {
    width: 33.3%;
    float: left;
    position: relative;
}
nav li a {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #576979;
}
nav ul li:nth-of-type(3) a {
    border-right: none;
}
nav a {
    text-align: left;
    width: 100%;
}
nav ul ul li {
    width: auto;
}
}

/*Styles for screen 660px and lower*/
@media screen and (max-width: 660px) {
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 ul li:nth-of-type(3) a {
    border-right: 1px solid #fff;
}
nav ul li:nth-child(even) a {
    border-right: none;
}
nav a {
    text-align: left;
    width: 100%;
}
nav ul ul li {
    width: auto;
    text-indent: 10px;
}
}

/*Styles for screen 480px and lower*/
@media screen and (max-width: 480px) {
label.responsive-nav-label {
    position: relative;
    display: block;
    padding: 12px 20px;
	top:10px;
    background: #006699;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid #576979;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
	z-index: 1000;
}
label.responsive-nav-label span {
    margin-right: 10px;
}
input#responsive-nav[type=checkbox]:checked ~ nav {
    position: relative;
    top: 0;
}
nav {
    position: absolute;
    top: -9999px;
    padding: 0px;
    height: auto;
}
nav ul {
    width: 100%;
    display: block;
    height: auto;
}
nav li {
    width: 100%;
    float: left;
    position: relative;
}
nav li a {
    border-bottom: 1px solid #fff;
    margin-bottom: 0px !important;
    padding: 8px 30px !important;
    background: #006699;
}
nav ul li:nth-child(odd) a {
    border-right: none;
}
nav ul ul li a {
    background: #0099cc;
    text-indent: 10px;
}
nav a {
    text-align: left;
    width: 100%;
}
}
