/* Dropdown style */
.dropdown {
    width: 11em;
    margin: 0 auto;
    display: inline-block;
    font: normal 18px "FranklinITCProBold","HelveticaNeue", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.dropdown dt a {
    display: block;
    height: 2em;
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    text-decoration: none;
    color: black
}

.dropdown dt span {
    position: relative;
    display: block;
    padding: 0.3em 1em;
    line-height: 1.5em;
    border-right: 1em solid transparent;
    cursor: pointer;
}
.dropdown dt span:before{
    position:absolute;
    font-family: FontAwesome;
    right:-10px;
    content: "\f0dc";
}
.dropdown dd {
    z-index: 10;
    position: relative;
    -webkit-margin-start: 0px;
    -moz-margin-start: 0px;
    margin: 0px;
}
.dropdown dd ul {
    display: none;
    position: absolute;
    left: 0;
    top: -3.12em;
    width: 100%;
    list-style: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
    padding: 0px;
    padding-bottom: 0px;
}
.dropdown dd ul li:first-child a:after{
    position:absolute;
    font-family: FontAwesome;
    right:8px;
    content: "\f0dc";
}
.dropdown dd ul li:first-child a:hover {
    border-radius: 3px 3px 0 0;
}
.dropdown dd ul li:last-child a:hover {
    border-radius: 0 0 3px 3px;
}
.dropdown dd li a {
    display: block;
    padding: 0.3em 1em;
    line-height: 1.5em;
    text-decoration: none;
    color: black
}
.dropdown dd li a:hover {
    background-color: #2e6d9d;
    color: #fff;
    cursor: pointer;
}
