@font-face {
    font-family: 'Gotham Bold';
    src: url('gothambold1.eot');
    src: local('gothambold1'), url('gothambold1.woff') format('woff'), url('gothambold1.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Book';
    src: url('GothamBook.eot');
    src: local('GothamBook'), url('GothamBook.woff') format('woff'), url('GothamBook.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Light';
    src: url('GothamLight.eot');
    src: local('GothamLight'), url('GothamLight.woff') format('woff'), url('GothamLight.ttf') format('truetype');
}

nav {
    width: 100%;
    height: 75px;
    background-color: #1f3460;
}

nav ul {
    margin-left: auto;
    margin-right: auto;
    width: 1180px;
    /*width: 1280px;*/
    list-style-type: none;
}

nav ul li {
    padding-top: 30px;
    height: 60px;
    font-family: 'Gotham Bold';
    display: inline-block;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
}

nav ul li:hover{
    background-color: #fe6262;
}

nav ul li:hover a{
    color: #fff;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover{
    color: #fff;
    text-decoration: none;
}

nav ul li ul li{
    margin: 5px 0px 5px -40px;
    height: 18px;
    padding: 0px;
    font-size: 13px;
}

/* sub navigation */
nav li ul {    
    border-top: 8px solid #fe6262;
    background-color: rgb(145, 145, 145);
    position: absolute;
    left: 0;
    top: 82px;
    width: 400px;
}

nav li li {
    position:relative;
    margin:0;
    display:block;
    font-family: 'Gotham Bold';
}

nav li li ul {
    position:absolute;
    top:0;
    left:200px; /* make this equal to the width of the sub nav above */
    margin:0;
}

/* style all links */
nav a {
    padding:0 8px;
    margin:0 8px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    display: block;
}

nav ul li ul li a {
    padding-top: 3px;
    text-decoration: none;
    display: block;
}

nav ul li ul li a:hover {
    color: #fff;
    text-decoration: none;
    display: block;
}

/* style sub level links */
nav li li a {
    padding:0;
}

nav ul li:last-child {
    border: none;
}

nav li li:last-child a {
    border-bottom: none;
}

/* hide sub menu links */
ul.sub-menu {
    display: none;
    z-index: 2;
    text-align: left;
}