#container {
    width:960px;
    margin: 0 auto;
}

.menu-nav {
    position:relative;
    
    height:40px;
    font-size:35px; /* font-size for all the writing */
    color:#999;
    margin: 0 auto;
    margin-top: 0px; /* margin between top of page and top of main menu */
}

.menu-nav ul {
    list-style:none;
    color: #FFF;
}
 
.menu-nav ul li {
     float:left;
     position:
     relative;
}
.menu-nav ul li a {
    border-right:50px solid transparent; /* right border for main menu */
    border-left:50px solid transparent; /* left border for main menu */
    padding:0px; /* space between writing and border in main and drop-down, disattaches the main from the drop-down menu */
    display:block;
    text-decoration:none;
    text-align:center;
    color:#ffffff;
    
    text-shadow: 0 -1px 0 #111;
}

.menu-nav ul li a:hover {
    
    color:#fff;
}
 

.menu-nav ul li ul {
    display: none;
}
 
.menu-nav ul li:hover ul {
    display:
    block;
    position:
    absolute;
    top:18px;/* the distance between the main and the drop-down menus */
    min-width:200px;/*the width of the drop down menu - the different options in a column or in a row */
    left:0;
    margin-top: -1px;
}  
 
.menu-nav ul li:hover ul li a {
    display:block;
    color:#000000;/* the color of the font in the drop-down menu */
    width: 70px;/* the size of the box in the drop-down menu */
    text-align: center;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000000;
    background: #8a8c8f; /* the color of the drop-down menu */
}
 
.menu-nav ul li ul li:first-child a {
    border-top:none;
}
 
.menu-nav ul li ul li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
}
 
.menu-nav ul li:hover ul li a:hover {
      color:#ffffff;
}
