
/* Override table width restrictions */
@media screen and (min-width: 767px) {

  .wy-table-responsive table td {
    /* !important prevents the common CSS stylesheets from
       overriding this as on RTD they are loaded after this stylesheet */
    white-space: normal !important;
  }

  .wy-table-responsive {
    overflow: auto !important;
  }

  .wy-nav-content {
    max-width: none;
  }
}

/* Hide the TI header on small screens */
@media screen and (max-width: 768px) {
  #header {
    display: none !important;
  }
}

/* Links in general. */
a {
    color: #189; /* TI website inline link color */
}

/* Inline code */
a .rst-content code {
    color: #189;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #555;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.6em;
  border-bottom: 1px solid #ccc;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
  margin-top: 0;
  padding-top: 0;
}

a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
  margin-top: 0;
  padding-top: 0;
}

h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
  margin-top: 10px;
}

#body {
    padding: 30px;
}

