html, body {
  position: relative;
  min-width: 1200px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto",sans-serif;
  font-size: 15px;
  color: #666666;
}
html { 
  overflow-y: scroll;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(/fonts/MaterialIcons-Regular.woff) format('woff');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

input[type="submit"], input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 45px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 15px;
  color: #666;
  background-color: #eff0f1;
  border: 1px solid #ccc;
  cursor: pointer;
  box-shadow: 0 1px #666;
  margin: 0;
  padding: 0 20px;
}

input[type="submit"]:hover, input[type="button"]:hover {
  background-color: #eee; 
  color: #333;
}

input[type="submit"]:active, input[type="button"]:active {
  background-color: #eee; 
  color: #eee;
  transform: translateY(1px);
  box-shadow: 0 1px #eee;
}

.blue {
  color: #007ac6;
}
.red {
  color: #db4437;
}
.orange {
  color: orange;
}
.hidden {
  display: none;
}

.menu a {
  display: block;
  outline: 0;
}
.menu a:focus {
  color: #007ac6;
}

.bottom {
  margin-top: 15px;
  font-size: 9px;
  text-transform: uppercase;
}