body {
    font-family: monospace;
    background: rgb(189, 186, 186);
}

h1 {
    text-transform: lowercase;
}

A:link {
    text-decoration: none;
    color: black;
    /*The color of the link*/
}

A:visited {
    COLOR: black;
    /*The color of the visited link*/
}

A:hover {
    COLOR: #008000;
    font-weight: bold;
}

.navigation {
    position: fixed;
    top: 0px;
    width: 10%;
    text-transform: lowercase;
}

.content {
    position: relative;
    top: 0;
    left: 20%;
    width: 80%;
}

.logo {
    position: relative;
    top: 10px;
    left: 50px;
}

label{
	margin:0 0 3px 0;
	padding:0px;
	display:block;
	font-weight: bold;
}

.footer {
    position: fixed;
    top: 98%;
    height: 20px;
    width: 100%;
    font-size: 6pt;
    text-align: center;
    text-transform: lowercase;
    background: inherit;
}

.img-container {
    position: relative;
    top: 0;
    left: 0;
}

.img-container .tile {
    display: block;
    height: auto;
    width: 100%;
    border: 1px red solid;
}

.img-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    opacity: .5;
    border: 1px green solid;
}