body {
  background-image: url("/images/background.gif");
  font-family: verdana;
  font-size: 12px;
  color: #523226;
}

html {
  cursor: url("/images/catcursor.gif"), auto;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #523226;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #523226;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: #b08271;
}

::selection {
  color: white;
  background: #b08271;
}

a:hover {
  cursor:url("/images/catcursor.gif"), auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.header {
  background-color: #4a8253;
  padding: 7px;
  color: #fff0f0;
  text-align:center;
}

.topnav {
  overflow: hidden;
  background-color: #84c48e;
}

#container {
  max-width: 850px;
  margin: 0 auto;
  background-color: white;
  height: 600px;
  border: 1px solid;
  border-color: #523226;
  overflow: auto;
}

.topnav a {
  float: left;
  display: block;
  color:#0f3014;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
}

.topnav a:hover {
  background-color: #7dad86;
  color: #d2fad9;
}

#flex {
  display: flex;
}

.column {
  margin: 12px;
  float: left;
}

.column.side {
  width: 25%;
}

.column.middle {
  width: 75%;
  max-height: 450px;
  overflow: auto;
}

.box {
  margin: 10px;
  padding: 10px;
  height: 420px;
  border: 1px solid;
  border-color: #523226;
  overflow: auto;
}

.pageholder {
  padding: 14px;
  max-height: 450px;
  overflow: auto;
}

.unstyled {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.smallheading {
  font-size: 15px;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}