  
nav.desktop.desktop {
    position:relative;
    display:block;  
    z-index:9000;
    margin:0 auto 0 auto;
    padding:0 0 0 0;
    text-align:center;
    width:100%;
    color: black;
}
  
nav.desktop ul, nav.desktop li {
    list-style: none;  
    margin:0 0 0 0;
    padding:0 0 0 0;  
}
  
nav.desktop ul li {
    display: block;
    position: relative;
    float:left;
    text-align:center;
}
  
nav.desktop li ul {
    display: none;
}
  
  
nav.desktop ul li a { /* appearance of the first-level links */
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight:normal;
    font-size: 16px;
    line-height: 40px;
    transition:color .2s ease-in-out; -moz-transition:color .2s ease-in-out; -webkit-transition:color .2s ease-in-out;
    text-transform: uppercase;
    text-align:center;
    font-family: 'LatoWebBlack';
}
 
 
nav.desktop ul li a:hover { /* appearance of the first-level links on hover */
    height: 1%; 
    color: #212933; 
}
  
  
  
nav.desktop ul li li a { /* appearance of the sub-level links */
    width:215px;
    padding:8px 0 8px 15px;
    text-align:left;
    background:#fff;
    border-bottom:1px #EEEEEE solid;
    line-height:25px; 
    color: #212933; 
    font-family: 'montserratlight';
    font-size: 14px;
}
nav.desktop ul li li a:hover { /* appearance of the sub-level links on hover */
    color:#212933; 
    background: #EEEEEE;     
}
  
  
  
  
  
  
/* Unless needing to do something extra or experimental, DON'T edit these positioning styles below! */
nav.desktop ul ul {
    display: none;
    position: absolute; 
    top:100%;
    left:0;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
  
nav.desktop ul ul ul {
    position: absolute; 
    left: 100%;
    top:0;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
  
nav.desktop ul li:hover > ul {  
    display: block;
    line-height:18px; /* make sure your line-height always matches that of your main link styles!*/
    z-index: 100;
}
  
nav.desktop ul ul li {
    float: none; 
    position: relative;
}
  
/******MAIN NAVIGATION END******/
