/* Basic Layout Styles */
body {
  font-family: 'Raleway', sans-serif;
  color: #232a33;
}
header {
  width: 100%;
  z-index: 99999;
  position: fixed;
  background-color: white;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}
main {
  padding-top: 60px;
}
table, tbody, tr, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* General Styles */
.align-left {
  float: left;
}
.align-right {
  float: right;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-bold {
  font-weight: 700;
}
.text-primary {
  color: #2155ad;
}
.text-primary-light {
  color: #d9e3f3;
}
.text-white {
  color: white;
}