

body {
	background-color: cadetblue;
	margin-top: 0px;
}

.container {
	background-color: black;
	height: 820px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
.header {
	background-image: url(road.jpg);
	height: 170px;
	width: 950px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-style: groove;
    border-width: thick;
    border-color: red;
}
.sidebar {
	background-color: lightcyan;
	height: 600px;
	width: 170px;
	float: left;
    border-left-style: groove;
    border-left-width: 5px;
    border-left-color: red;
    border-right-style: groove;
    border-right-width: 5px;
    border-right-color: red;
}
.content {
	background-image: url("karen.jpg");
    background-size: cover;
	float: left;
	height: 600px;
	width: 775px;
    border-right-style: groove;
    border-right-width: 5px;
    border-right-color: red;
}
.footer {
	background-color: lightgray;
	clear: left;
	float: left;
	height: 20px;
	width: 950px;
    border-style: groove;
    border-width: thick;
    border-color: red;
    text-align: center;
}

.header hgroup {
    display: block;
    text-align: center;
    color: darkblue;
    font-style: italic;

}

.sidebar nav {
   width: 77%;
   float:left;
   margin: 10px auto 10px -7%;
}

.sidebar nav li {
   display: block;
   width: 100%;
   margin-left: 1%;
   margin-bottom: 5px;
}

.sidebar nav li a {
   display: block;
   width: 100%;
   height: 30px;
   line-height: 30px;
   text-align: center;
   color: white;
   font-size: 0.8em;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
   background-color: blue;
}

.sidebar nav li a:hover {
   background-color: rgb(235, 152, 66);
}