/* Typography and generic text design */
* {
    box-sizing: border-box;
}
body {
    margin: 0 10px 20px 10px;
    max-width: 535px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333;
}
p {
    margin: 0 0 10px;
}
a, a:visited {
    color: #428BCA;
    text-decoration: none;
}
a:hover, a:focus {
    color: #2A6496;
    text-decoration: underline;
}
table {
    border-spacing: 0px;
    border-collapse: collapse;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
h1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0px 0px 10px;
}
h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    margin: 40px 0px 20px;
    padding-bottom: 9px;
    border-bottom: 1px solid #eee;
}
h3 {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0px 0px 20px;
}
nav {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
nav ul {
    padding-left: 0;
    list-style: none;
}
nav li {
}
nav a {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    outline-radius: 4px;
    -moz-outline-radius: 4px;
    -webkit-outline-radius: 4px;
}
nav a:hover, nav a:focus {
    background: #eee;
    text-decoration: none;
}


/* Page-specific layout */
header {
    display: block;
    margin: 20px 0 30px;
    padding: 20px 60px;
    background-color: #428bca;
    border-radius: 6px;
    color: #fff;
}
header p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200;
}

#schedule-table {
    text-align: left;
}
#schedule-table td,th {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 10px;
    vertical-align: baseline;
}
#schedule-table th {
    border-radius: 5px;
}
#schedule-table ul {
    padding-left: 10px; /* same as other elements in bootstrap */
    margin-left: 0;
}

#schedule-table tr:nth-of-type(even) { background-color: #e8edff;}
#schedule-table tr:nth-of-type(odd) { background-color: #ffffff;}

#mechanics td {
    vertical-align: top;
}
#mechanics td:first-child {
    padding-right: 10px;
    font-weight: bold;
}

table{counter-reset:section;}
.count:before
{
    counter-increment:section;
    content:counter(section);
}


@media (min-width: 768px) {
  nav {
    position: fixed;
    top: 15px;
    left: 10px;
  }
  body {
      margin-left: 15em;
  }
}
@media (max-width: 767px) {
  .nav-only-sidebar { display: none !important }
}

