
body {
    background-color: grey;
    font-family: Arial, sans-serif;
    min-width: 600px;
    color: #d3d1d1;
	min-width: 800px;
}
h1 {
    font-style: normal;
    font-weight: lighter;
    font-size: 16px;
    margin: 5px;
    color: black;
}
header {
    text-align: center;
    margin: 0 auto;
	margin-top: 55px;
}
nav {
    background-color: #ff8830;
    height: 45px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    color: #6c6969;
    text-align: left;
	font-weight:100;
}
nav ul li {
    display: inline-block;
    padding-right: 40px;
}

/* unvisited link */
a:link {
    color: black;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #bec4be;
}

/* mouse over link */
a:hover {
    color: #faf0fa;
}

/* selected link */
a:active {
    color: #bebec3;
}
    
#main {
    border: solid 2px #0dacf2;
    border-radius: 5px;
    float: left;
    width: 40%;
	margin-left: 10%;
    background-color: #484646;
    min-height: 465px;

}
#column {
    border: solid 2px #0dacf2;
    margin-left: 10px;
    border-radius: 5px;
    float:left;
    width: 40%;
    background-color: #484646;
    min-height: 465px;
}
footer {
    background-color: #9ec2d1;
    max-height: 75px;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    color: #6c6969;
    text-align: left;
	line-height: .3;
	padding-left: 40px;
}