@charset "UTF-8";
/* CSS Document */

html, body {
  margin: 0;
  background-image: url(marbled.jpg);
  background-repeat: repeat;
  background-color: #CCC;
}
div {
  box-sizing: border-box;
}
#header {
  position: fixed;
  z-index: 999;
  margin: 0 auto;
  left: 0; right: 0;
  background-color: #696969;
  width: 85%;
  height: 70px;
  border-radius: 25px 25px 0px 0px;
  padding-left: 5px;
  padding-right: 5px;
}
#centralize {
  position: relative;
  top: 70px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 85%;
}
#wrapper {
  display: table-row;
}
.left {
  background-color: #7fffd4;
  width: 18%;
  height: auto;
  display: table-cell;
  border-radius: 0px 0px 0px 25px;
}

.right {
  margin-top: 70px;
  margin-bottom: 10px;
  background-color: #ffe4c4;
  width: 82%;
  height: auto;
  border-radius: 0px 0px 25px 0px;
  display: table-cell;
}

#footer {
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #d3d3d3;
  width: 85%;
  height: 70px;
  clear: both;
  box-shadow: 10px 10px 5px #888888;
  padding: 20px;
}

#footer p {
    color: #00008b;
    text-align: center;
}

h1 {
color: white;
float: left;
}

h3 {
float: right;
color: white;
}
h3 a {
  color: white;
}

h2 {
    color: #00008b;
    margin-top: 20px;
    margin-bottom: 1px;
    margin-left: 30px;
    margin-right: 50px;
}

p {
    margin-top: 2px;
    margin-bottom: 1px;
    margin-left: 30px;
    margin-right: 50px;
}

ul {
    margin-top: 2px;
    margin-bottom: 1px;
}

li {
    margin-top: 2px;
    margin-bottom: 1px;
    margin-left: 10px;
    margin-right: 50px;
}

hr {
    margin: 0px;
    color: #00008b;
}

/*.custommargins {
	margin-top: 1px;
    margin-bottom: 1px;
	margin-left: 20px;
	margin-right: 20px;
}

.headingmargins {
	margin-top: 20px;
    margin-bottom: 1px;
	margin-left: 20px;
	margin-right: 20px;
}*/