.underlinedClass {
    border-bottom: 2px solid white;
}

ul.navigationFixedUl li a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15em;
    padding-bottom: 5px;
    display: inline-block;
    position: relative;
}

ul.navigationFixedUl li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

ul.navigationFixedUl li a:hover:after {
    width: 100%;
    left: 0;
}

ul.navigationFixedUl li span.vr {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15em;
    padding-bottom: 5px;
    display: inline-block;
    position: relative;
}

ul.navigationFixedUl li span.vr:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

ul.navigationFixedUl li span.vr:hover:after {
    width: 100%;
    left: 0;
}


