﻿nav ul{
    list-style: none;
    position: relative;
    z-index: 300;
    font-weight: normal;

}


nav li{
    position: relative;
    float:left;
}

nav ul li a{
    display: block;
            float: left;
        padding: 13px 20px 10px;
        color: #000;
        text-transform: uppercase;
		 font-family: 'Quicksand', sans-serif;
    border-bottom: 1px solid #000
}


nav ul li a:hover{
        color: #FFF;
		background: #f56e23;
}

nav ul li ul{
    display: none;
    position: absolute;
    background: #fff;
    color: #000000;
    margin-top: 40px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;

}

nav ul li ul li{    
}

nav ul li ul li:first-child > a {
-moz-border-radius: 3px 3px 0 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}

nav ul li ul li:last-child > a {
-moz-border-radius: 0 0 3px 3px;
-webkit-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
}

nav ul li ul li a {    
    padding: 15px 15px;
    background: #ffffff;
    color: #000000;
    white-space: nowrap;
    text-transform: none;
    display: block;
    float:none;
    text-transform: uppercase;
    width: 200px;
    border-bottom: none;
}

nav ul li ul li a:hover{    
    color: #ffffff;    
    background:#ff8a01; 
    background-image: -webkit-linear-gradient(#ff8a01 0%, #ff4e01 100%); 
    background-image: -moz-linear-gradient(#ff8a01 0%, #ff4e01 100%); 
    background-image: -o-linear-gradient(#ff8a01 0%, #ff4e01 100%); 
    background-image: linear-gradient(#ff8a01 0%, #ff4e01 100%);
}

nav ul li ul li:first-child > a:after {
        content: '';
        position: absolute;
        left: 40px;
        top: -6px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #fff;
}

nav ul li ul li:first-child a:hover:after {
        border-bottom-color: #ff8a01;
}