
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  /*display: table;*/
  font-weight: 100;
  font-family: 'Roboto';
  font-size: 16px;
  color: rgba(0,0,0,.87);
}

.tj-container {
}

p {
  margin: 0 0 1em;
  display: block;
  line-height: 1.5em;
  font-family: "Roboto";
  font-weight: 400;
}

input:required:invalid, input:focus:invalid {
  /* insert your own styles for invalid form input */
  -moz-box-shadow: none;
}

input:required:valid {
  /* insert your own styles for valid form input */
}

ul {
  margin: 1em;
}

/* HEADER */
.tj-header {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url('../images/tj-no-fear.jpg');
  height: 534px;
}

.tj-top-menu {
  display: block;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.tj-logo img {
  float: left;
  width: 270px;
}

.tj-menu-options {
  padding-top: 25px;
}

.tj-menu-horizontal {
  list-style: none;
  float: right;
}

.tj-menu-horizontal li {
  margin: 0 20px;
  float: left;
  display: list-item;
}

.tj-menu-horizontal li a {
  background-color: #efefef;
  color: #303030;
  padding: 5px 10px;
  border-radius: 10px;
  text-decoration: none;
}


/* CONTENT */
.tj-content, .tj-content-form {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.tj-content-form {
  font-size: 14px;
}

.tj-content img {
  width: 100%;
}

.tj-left-block {
  flex: 0 0 50%;
  padding: 10px;
  width: 50%;
}

.tj-text-block {
  display: block;
  position: relative;
  width: 100%;
  margin: 10px 5px;
}

.tj-text-block img {
  margin: 10px 0 20px;
}

.tj-table-block {
  float: left;
  width: 50%;
}

.tj-right-block {
  flex: 1;
  padding: 10px;
}

.tj-register-block {
  color: #fff;
  background-color: #404040;
  border-radius: 3px;
  padding: .8em;
}

.tj-register-block h1 {
  font-size: 1.6em;
  padding: .5em 0;
  margin-bottom: .5em;
  border-bottom: 1px solid;
}

.tj-register-button {
  text-align: right;
  padding: .5em 0;
  margin-top: .8em;
}

.tj-register-block a {
  cursor: pointer;
  display: inline-block;
  background: #e0e1e2;
  color: rgba(0,0,0,.6);
  margin: 0 .25em 0 0;
  padding: .7em 1.5em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: .3rem;
}

.tj-table {
  display: block;
  position: relative;
  margin-top: 20px;
  width: 100%;
}

.tj-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: 0;
}

.tj-table table tr:first-child td {
  border-top: 1px solid #d4d4d4;
}

.tj-table table tr:nth-child(even) td {
  background-color: #e9e9e9;s
}

.tj-table table tr td:first-child {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.1em;
}

.tj-table table tr td {
  border: none;
  background-color: #f4f4f4;
  padding: 10px;
  font-size: .9em;
  border-bottom: 1px solid #d4d4d4;
}


/* FOOTER */
.tj-footer {
  background-position: 50% 50%;
  background-color: #303030;
  height: 250px;
  position: relative;
  background-size: cover;
}


/* HELPERS */
.tj-registration-closed {
  width: 100%;
  padding: 20px;
}

.tj-registration-closed img {
  margin-top: 20px;
  width: 100%;
  height: auto;
  display: block;
}

.tj-clear {
  clear: both;
}