@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Oswald);
body {
    background-image: url(/Images/Background.png);
}
/*div css*/
#wrapper {
	Width: 960px;
	height: 150;
	margin: 0px auto;
	position: relative;
}
header {
    width: 960px;
    height: 150px;
    position: relative;
    margin: 15px auto;
    background-color: lightblue;
}
aside {
    width: 190px;
    height: 640px;
    position: absolute;
    top: 215px;
    left: 0;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 15px;
    background-color: lightblue;
    padding: 10px;
}
section {
    width: 940px;
    height: 1835px;
    position: absolute;
    top: 215px;
    right: 0px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 15px;
    background-color: lightcyan;
    padding: 10px;
}
footer {
    width: 945px;
    height: 40px;
    position: absolute;
    top: 2095px;
    left: 0px;
    border-radius: 15px;
    background-color: lightblue;
    padding-left: 15px;
    margin-bottom: 15px;
}
nav {
  background-color: skyblue;
  height: 55px;
  width: 960px;
  float: left;
  z-index: 2;
  position: relative;
}
/*Text css*/
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}
h1, h3{
    font-family: 'Oswald', sans-serif;
}
/*Navigation bar css*/
ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 15px 4px 17px 0;
  list-style: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding: 15px 20px;
  background-color: skyblue;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
ul li:hover {
  background-color: lightcyan;
  }
/*Links CSS*/  
a:link {color: black;}
a:visited {color: black;}
a:hover {color: Grey;}
a:active {color:black;}
a{text-decoration: none;}
ol {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5em;
}
.a{
    color: greenyellow;
    text-decoration: underline;
}
.a:hover{
    color: orange;
    text-decoration: underline;
}
.a:visited{
    color: red;
    text-decoration: underline;
}