html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

footer a {
    color: aquamarine;
    text-decoration: none;
}
footer a:visited {
	color: aquamarine;
	text-decoration: none;
}

footer a:hover {
	color: blanchedalmond;
	text-decoration: underline;

}

footer a:active {
	color: chocolate;
	text-decoration: none;
}

#searchResults {
    border: thin solid darkblue;
}

#searchResults .row-striped {
    border: thin solid darkblue;
}

.content {
    flex: 1;
}

.row-striped:not(:last-child) {
    border-bottom-width: 0;
}
.row-striped:nth-of-type(odd) {
    background-color: beige;
}
.row-striped:nth-of-type(even) {
    background-color: ivory;
}
