.jumbotron {
	background-color: #424750;
	padding: 5px 5px;
}

#footer {
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #424750;
    text-align: center;
    position: relative;
    border-radius: 10px;
    display: none;
}

.link {
	color: gold !important;
    text-decoration: underline !important;
}
.link:hover {
    color: gold !important;
    text-decoration: none !important;
}

.dropdown .dropdown-menu {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
}

.dropdown.open .dropdown-menu {
    max-height: 300px;
    opacity: 1;
}