#nav {
    font-size: 0.85em;
    color:#fff;
    float:right;
    margin-top:65px;
}
#nav_wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
#nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    width:100%;
    font-weight: 400;
    float:right;
    border-bottom: 6px solid #a00067;
}
#nav ul li { 
    display: inline-block; 
    
}
#nav ul li:hover {
    

}
#nav ul li a, visited {
    color: #a00067;
    font-weight: bold;
    display: block;
    padding: 3px 24px 15px;
    margin-bottom:-5px;
    text-decoration: none;
}
#nav ul li a:hover {
    color: #5CEBAD;
}

#nav ul li:hover ul {
    display: block;

}
#nav ul ul {
    display: none;
    position: absolute;
    background-color: rgba(211,159,198,1);
    border-top: 0;
    margin-top: 6px;
    width:135px;
    border-bottom: 0;
    
}
#nav ul ul li {
    display: block;
    border-bottom: 1px dotted;
}
#nav ul ul li.last {
    display: block;
    border-bottom: 0;
}

#nav ul ul li:hover {
   background-color: #a00067;
}

#nav ul ul li a {
    color: #fff;
    padding: 13px 15px;
    text-transform: uppercase;
    font-weight: normal;
}

#nav ul ul li a:hover {
    color: #fff;
}