/* COLORS
#858585 - Grey
#333    - Dark grey
#BBB    - Light grey
#FFF    - White */

@import url(http://fonts.googleapis.com/css?family=Open+Sans&subset=latin-ext);

/* RESET */
* {
  margin: 0;
  padding: 0;
}

/* ELEMENTS */
html {
  height: 100%;
  min-width: 300px;
}

body {
  position: relative; 
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  background: #858585;
  background: #272727;
/*  background: #0F131A;*/
}

a:visited {
  text-decoration: none;
  color: inherit;
}
a:link, a:visited {color: black;}
a:link:active, a:link:visited  {color: black;}

h1 {
  padding-left: 20px;
  font-size: 150%;
  text-decoration: none;
  color: white;
  background: black;
}

h2 {
  font-weight: bold;
  background: #DDD;
}

h3 {padding: 10px 0 5px;background: #DDD;}

@-webkit-keyframes openFooter {
  from {height: auto;line-height: 15px;color: #777;}
  to {height: auto;line-height: 25px;color: #FFF;}
}
@-webkit-keyframes closeFooter {
  from {line-height: 25px;color: #FFF;}
  to {line-height: 15px;color: #777;}
}
footer {
  display: block;
  position: fixed;
  bottom: 0px;
  height: auto;
  width: 100%;
  font-size: small;
  text-align: center;
  color: #777;
  background: #272727;
  -webkit-animation:closeFooter 0.3s;
}
footer:hover {
  cursor:default;
  -webkit-animation:openFooter 0.3s forwards;
}

/* TABLES */
table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

th {
  border: #FFF;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  background: #333;
}

tr:nth-child(even) {
  background: #BBB;
}

tr:nth-child(odd) {
  background: #858585;
}

td {
  padding: 3px 7px 2px 7px;
}

/* CLASSES */
.bold {
  font-weight: bold;
}

div.indexContent {
  width: 100%;
  margin-top: 130px;
}

div.content {
  box-sizing: border-content;
  position: relative;
  max-width: 900px;
  margin: 0px auto 60px;
  padding: 10px;
}
