#navigation {
    font-family: 'Chicle', sans-serif;
    display: none;
    text-align: left;
    list-style-type: none;
    margin: 0;
    padding: 2px 0;
    border: 1px solid #b24c1f;
    border-width: 1px 0 0 0;
    width: 100%;
	letter-spacing: 2px;
}

#navigation li {
    display: inline;
}

#navigation a {
	transition: background-color 0.5s;
    background-color: #f07224;
    color: #141414;
    margin: 3px;
	padding: 13px;
    font-size: 25px;
    line-height: 20px;
    display: block;
}

#navigation a:hover {
	transition: background-color 0.5s;
    background-color: #b34d26;
}

#navigation a:active {
    color: #ccc;
}

@media(min-width:1100px) {
    #navigation {
        display: inline-block !important; /*Prevents the expander's js-driven "none" value from overriding this value upon window resize*/
        width: 100%;
        text-align: center;
    }

    #navigation a {
        display: inline-block;
        width: 21.25%;
        margin: 5px 2px;
    }
}