/* http://www.w3schools.com/howto/howto_js_topnav.asp */

#footer {
    background-color: rgba(90,0,0,1);
    text-align: center;
}

/* Remove margins and padding from the list, and add a black background color */
ul#footer_links {
    /* styling */
    list-style-type: none;
    overflow: hidden;
    /* text-align: center; */
    /* border-bottom: solid 5px #aa3333; */
    height:4em;
    text-align: center;
    margin: 0;
}

/* Float the list items side by side */
ul#footer_links li {
    display: inline-block;
    padding-right:0.8em;
    height: 100%;
}

/* Float the list items side by side */
ul#footer_links li img {
    height: 1.5em;
}

/* Style the links inside the list items */
ul#footer_links li a {
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 1.2em .5em;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
    height: 100%;
}


/* Change background color of links on hover */
ul#footer_links li a:hover {
    background-color: rgba(0,0,0,.25);
}