body {
  margin:0;
  padding:0;
  /*font-family: 'Bitter', sans-serif;*/
  font-family: 'Signika', sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.1em;
  line-height: 1.5em;
}

a {
  color: #FF0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

pre {
  font-family: 'Fira Mono', monospace;
  background-color: #C5C5C5;
  border: 1px solid #404040;
  border-radius: 5px;
  font-size: 0.9em;
  overflow: auto;
}

img {
  border: 0px;
}

th {
  text-align: left;
  font-weight: bold;
}

#maincontainer {
  margin:0 auto;
  width: 1000px;
}

#topsection {
  height: 85px;
}

#topsection h1 {
  margin: 10px 0 0 10px;
  color: #000000;
  font-size: 2.5em;
}

#topsection h2 {
  margin: 10px 0 0 25px;
}

#contentwrapper {
  float: left;
  width: 100%;
}

#contentcolumn {
  /*margin-left: 75px;*/
  background-color: #DDDDDD;
  border: 1px solid #000000;
  border-radius: 5px;
}

#rightcolumn {
  float: right;
  width: 250px;
  margin-left: -100%;
  font-size: 0.750em;
}

#rightcolumn ul {
  list-style: none;
  display: inline;
}

#leftcolumn {
  float: left;
  width: 80px;
  margin-left: -100%;
  font-size: 1em;
  line-height: normal;
  text-align: center;
  background-color: #0F0F0F;
  border: 1px solid #777;
  border-radius: 5px;
}

#leftcolumn ul {
  list-style: none;
  display: inline;
}

#leftcolumn li {

}

#adframe {
  clear: left;
  width: 100%;
  height: 95px;
  text-align: center;
  padding: 0;
  font-size: 1em;
  line-height: normal;
  z-index: 1;
}

#navbar {
  clear: left;
  width: 100%;
  height: 20px;
  text-align: center;
  padding: 0;
  font-size: 1.125em;
  line-height: normal;
}

/*#navbar a {
  color: #000000;
} */

#footer {
  clear: left;
  width: 100%;
  background: #FFFFFF;
  color: #000000;
  height: 18px;
  font-size: 0.625em;
  padding: 0;
  margin-top: 10px;
  margin-left, margin-right, margin-bottom: 0;
  text-align: center;  
}

#fileTable {
  font-family: 'Fira Mono', monospace;
  border: 1px solid #777;
  border-radius: 5px;  
}

#contentcolumn h2 {
  font-size: 1.25em;
}

#contentcolumn h1 {
  font-size: 1.5em;
}

.fileCell {
  border-right: 1px solid #777;
  border-top: 1px solid #777;
}

.innertube {
  margin: 10px;
  margin-top: 0;
}

.postdate {
  margin-left: 10px;
  font-size: 1em;
  font-weight: normal;
}

.posttitle {
  font-weight: bold;
  font-size: 1.125em;
}

.downloadButton {
   border-top: 1px solid #96d1f8;
   background: #65a9d7;
   background: -webkit-gradient(linear, left top, left bottom, from(#1DCF0B), to(#A2FE3E));
   background: -webkit-linear-gradient(top, #1DCF0B, #A2FE3E);
   background: -moz-linear-gradient(top, #1DCF0B, #A2FE3E);
   background: -ms-linear-gradient(top, #1DCF0B, #A2FE3E);
   background: -o-linear-gradient(top, #1DCF0B, #A2FE3E);
   padding: 8.5px 17px;
   -webkit-border-radius: 28px;
   -moz-border-radius: 28px;
   border-radius: 28px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: white;
   font-size: 1.500em;
   font-family: Georgia, serif;
   text-decoration: none;
   vertical-align: middle;
}
.downloadButton:hover {
   border-top-color: #28597a;
   background: #28597a;
   color: #ccc;
}
.downloadButton:active {
   border-top-color: #1b435e;
   background: #1b435e;
}

.cmdtext {
    font-family: 'Fira Mono', monospace;
    border: 1px dotted #000000;
    padding: 2px;
}

#menuToggle {
  display: block;
  position: relative;
  top: -20px;
  left: 50px;
  
  z-index: 1;

  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  /*z-index: 2; /* and place it over the hamburger */
  z-index: 2147483647;
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  /*background: #cdcdcd;*/
  background: #000000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 50px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 2147483647;
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}
