@charset "UTF-8";
.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

.account-notification-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto;
  width: 550px;
  padding: 30px 50px; }
  .account-notification-container h2 {
    margin: 0px 0px 10px 0px; }
  @media not print {
    .account-notification-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-notification-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-notification-container a {
      color: #000;
      text-decoration: none; } }

.account-section {
  padding-top: 20px;
  padding-bottom: 20px; }
  .account-section h2, .account-section h3 {
    margin: 0px 0px 16px 0px; }
  .account-section p {
    line-height: 21px; }

.account-cancel-link {
  font-size: 14px; }

.account-aligned-container, .account-subscription-container, .account-wide-container, .payment-form-container {
  margin: 34px 0px 30px 262px;
  min-height: 550px; }
  @media not print {
    .account-aligned-container a, .account-subscription-container a, .account-wide-container a, .payment-form-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-aligned-container a:hover, .account-subscription-container a:hover, .account-wide-container a:hover, .payment-form-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-aligned-container a, .account-subscription-container a, .account-wide-container a, .payment-form-container a {
      color: #000;
      text-decoration: none; } }

.account-aligned-container {
  width: 400px; }

.account-subscription-container {
  width: 586px; }

.account-wide-container {
  margin-left: 190px;
  padding: 0 50px; }

.account-field {
  margin: 15px 0px; }
  .account-field:before, .account-field:after {
    content: " ";
    display: table; }
  .account-field:after {
    clear: both; }

.account-field-label {
  color: #555;
  width: 230px;
  margin-bottom: 3px; }

.account-submit-group {
  margin-top: 20px; }

.account-field-value, .payment-expiry-value, .payment-cvc-value, .payment-zip-value {
  padding: 0px; }
  .account-field-value input[type='text'], .payment-expiry-value input[type='text'], .payment-cvc-value input[type='text'], .payment-zip-value input[type='text'], .account-field-value input[type='password'], .payment-expiry-value input[type='password'], .payment-cvc-value input[type='password'], .payment-zip-value input[type='password'], .account-field-value input[type='email'], .payment-expiry-value input[type='email'], .payment-cvc-value input[type='email'], .payment-zip-value input[type='email'] {
    color: #000;
    border: none;
    background: transparent;
    background-color: #f7fcfc;
    border: solid 1px #dff3f7;
    height: 33px;
    line-height: 35px;
    width: 100%;
    box-shadow: 0px 0px 4px rgba(73, 203, 227, 0.01);
    transition: box-shadow 0.1s ease-in-out; }
    .account-field-value input[type='text']:focus, .payment-expiry-value input[type='text']:focus, .payment-cvc-value input[type='text']:focus, .payment-zip-value input[type='text']:focus, .account-field-value input[type='password']:focus, .payment-expiry-value input[type='password']:focus, .payment-cvc-value input[type='password']:focus, .payment-zip-value input[type='password']:focus, .account-field-value input[type='email']:focus, .payment-expiry-value input[type='email']:focus, .payment-cvc-value input[type='email']:focus, .payment-zip-value input[type='email']:focus {
      outline: none; }
    .account-field-value input[type='text']:focus, .payment-expiry-value input[type='text']:focus, .payment-cvc-value input[type='text']:focus, .payment-zip-value input[type='text']:focus, .account-field-value input[type='password']:focus, .payment-expiry-value input[type='password']:focus, .payment-cvc-value input[type='password']:focus, .payment-zip-value input[type='password']:focus, .account-field-value input[type='email']:focus, .payment-expiry-value input[type='email']:focus, .payment-cvc-value input[type='email']:focus, .payment-zip-value input[type='email']:focus {
      box-shadow: 0px 0px 4px #49cbe3;
      transition: box-shadow 0.1s ease-in-out; }

.account-field-value-group {
  padding-left: 20px; }
  .account-field-value-group label {
    padding-top: 10px;
    display: block; }

.account-error-text {
  background-color: #f7dfdf;
  padding: 12px;
  font-size: 13px; }

.account-success {
  background-color: #d5f7d9;
  padding: 20px 20px 20px 30px; }

.account-error {
  background-color: #f7dfdf;
  padding: 20px 20px 20px 30px; }

.account-bevel-box.account-success {
  border-top: solid 1px #c7e7cb;
  border-left: solid 1px #c7e7cb;
  border-right: solid 1px #a1bba4;
  border-bottom: solid 1px #a1bba4; }

.account-form-container .account-success {
  margin: 10px -30px; }

.account-form-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto;
  width: 320px; }
  .account-form-container h2 {
    margin: 0px 0px 10px 0px; }
  @media not print {
    .account-form-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-form-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-form-container a {
      color: #000;
      text-decoration: none; } }
  .account-form-container .account-tos-assent-checkbox {
    float: left;
    margin-top: 3px; }
  .account-form-container .account-tos-assent-copy {
    float: left;
    margin-left: 10px;
    width: 290px; }
  .account-form-container .account-tos-field {
    margin-top: 25px;
    margin-bottom: 25px; }

#account-nav {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  position: absolute;
  bottom: 43px;
  top: 48px;
  width: 188px; }
  #account-nav a {
    text-decoration: none;
    color: #000; }
  #account-nav .pane {
    border-left: solid 4px transparent; }
    #account-nav .pane span {
      font-size: 14px; }
    #account-nav .pane:hover {
      background-color: #efeee9; }
  #account-nav .pane.active {
    border-left-color: #0e92ad; }

.internal-stripe-information-table {
  margin-bottom: 15px; }
  .internal-stripe-information-table caption {
    text-align: left;
    font-weight: bold;
    padding-bottom: 5px; }
  .internal-stripe-information-table td {
    padding: 5px;
    border: solid 1px #aaa; }

.account-bevel-box {
  border-top: solid 1px #dfdfdf;
  border-left: solid 1px #dfdfdf;
  border-right: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
  margin-left: -30px;
  margin-top: 25px;
  padding-left: 30px;
  padding-right: 30px; }

.learn-more-link {
  float: right;
  font-size: 14px; }

.choice-table {
  display: table;
  width: 100%; }
  .choice-table > * {
    display: table-row; }
    .choice-table > * > * {
      display: table-cell;
      padding-bottom: 15px; }
      .choice-table > * > *:first-child {
        width: 280px; }

.account-subscription-choice input[type="radio"] {
  margin-right: 10px; }

.account-subscription-billing-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 15px; }

.account-subscription-table {
  margin-bottom: 10px; }
  .account-subscription-table td {
    padding: 2px 0px; }
    .account-subscription-table td.left-col {
      padding-right: 10px; }

.account-subscription-cancel-link {
  display: block;
  float: right;
  margin-top: 8px;
  font-size: 14px; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* Progress Bar */
.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #b0d0ef;
  border-radius: 2px;
  background-clip: padding-box;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden; }
  .progress .determinate {
    position: absolute;
    background-color: inherit;
    top: 0;
    bottom: 0;
    background-color: #3a81f0;
    transition: width .3s linear; }
  .progress .indeterminate {
    background-color: #3a81f0; }
    .progress .indeterminate:before {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
    .progress .indeterminate:after {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      animation-delay: 1.15s; }

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }
@-moz-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }
@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }
@-moz-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }
/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.brief-container-loading {
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  background-position: 50% 150px;
  background-repeat: no-repeat; }
  .brief-container-loading * {
    opacity: 0.5; }

.progress-container {
  margin: 0 auto;
  width: 415px; }
  .progress-container > .progress-explainer {
    text-align: center; }
  .progress-container > .progress {
    margin-bottom: 20px; }

.brief-screenshot {
  width: 500px; }

.clerk-screenshot {
  width: 532px;
  border: solid 1px #dadada; }

.request-clerk-demo {
  font-size: 14px;
  float: right;
  margin-right: 25px;
  margin-top: 12px;
  padding: 6px 12px;
  padding-top: 7px;
  background-color: #3c80c4;
  border: none;
  border-radius: 1px; }
  .request-clerk-demo a {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white;
    text-decoration: none; }
    @media print {
      .request-clerk-demo a {
        font-family: Georgia, 'Times New Roman', serif; } }

.brief-container {
  min-height: 200px;
  padding-bottom: 60px;
  width: 1230px;
  -webkit-print-color-adjust: exact; }
  .brief-container th {
    font-size: 16px;
    text-align: left; }
    .brief-container th.sortable {
      padding-bottom: 10px;
      border-bottom: solid 1px #dadada;
      cursor: pointer; }
      .brief-container th.sortable span {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/sort_both.png");
        background-repeat: no-repeat;
        background-position: center right;
        padding-right: 21px;
        display: inline-block; }
        @media print {
          .brief-container th.sortable span {
            background-image: none !important; } }
      .brief-container th.sortable.ascending span {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/sort_up.png"); }
      .brief-container th.sortable.descending span {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/sort_down.png"); }
  .brief-container .casedata-pill {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid;
    border-radius: 11px;
    line-height: normal;
    padding: 2px 6px;
    margin-bottom: 10px; }
    .brief-container .casedata-pill span {
      padding-left: 5px; }
      .brief-container .casedata-pill span:before {
        float: left; }
    .brief-container .casedata-pill.exclamation-mark span:before {
      content: "!";
      margin-left: 3px;
      margin-right: 2px; }
    .brief-container .casedata-pill.x-mark span:before {
      content: "✗";
      margin-left: 2px; }
    .brief-container .casedata-pill.check-mark span:before {
      content: "✓"; }
    .brief-container .casedata-pill.bullet span:before {
      content: "•";
      margin-left: 3px;
      margin-right: 2px; }
    .brief-container .casedata-pill.callout {
      color: #3c80c4; }
  .brief-container .results-body {
    margin-left: 40px;
    margin-bottom: 40px; }
    .brief-container .results-body td {
      vertical-align: top;
      padding-bottom: 16px; }
      .brief-container .results-body td.pills {
        /* Align text with case name along baseline */
        padding-top: 2px;
        padding-right: 30px;
        min-width: 84px; }
      @media not print {
        .brief-container .results-body td.case {
          max-width: 615px; } }
  .brief-container .actions {
    margin: 0px 170px 0px 40px; }
    .brief-container .actions .item {
      margin: 15px 0;
      line-height: 1.5em; }
      .brief-container .actions .item::before {
        content: "";
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/checkbox.svg");
        background-repeat: no-repeat;
        width: 17px;
        height: 17px;
        position: absolute;
        margin-top: 2px;
        margin-left: -26px; }
    .brief-container .actions .case-name-container {
      display: inline; }
  .brief-container .legend {
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-anchor: end;
    margin-top: 5px; }
  .brief-container .parties .legend {
    float: left; }
  .brief-container .vertical-bars .chart, .brief-container .vertical-bars .legend, .brief-container .pie .chart, .brief-container .pie .legend {
    float: left; }
  .brief-container .visuals {
    margin-left: 40px;
    margin-bottom: 20px; }
    .brief-container .visuals .chart-container {
      margin-bottom: 20px; }
    .brief-container .visuals .caption {
      margin-bottom: 20px;
      font-size: 15px;
      margin-right: 170px;
      line-height: 1.5em; }
    .brief-container .visuals table {
      float: left; }
      .brief-container .visuals table td.title {
        padding: 10px;
        vertical-align: top;
        font-size: 12px;
        float: right;
        text-align: right; }
      .brief-container .visuals table.single-chart {
        margin-top: 25px; }
    .brief-container .visuals .overlay-label {
      font-family: Arial, sans-serif;
      font-size: 10px;
      text-anchor: middle;
      fill: black; }
    .brief-container .visuals .c1 .overlay-label {
      fill: white; }
    .brief-container .visuals .red-palette .c1 {
      fill: #a50f15; }
    .brief-container .visuals .red-palette .c2 {
      fill: #ef3b2c; }
    .brief-container .visuals .red-palette .c3 {
      fill: #fc9272; }
    .brief-container .visuals .orange-palette .c1 {
      fill: #d94801; }
    .brief-container .visuals .orange-palette .c2 {
      fill: #fd8d3c; }
    .brief-container .visuals .orange-palette .c3 {
      fill: #fdd0a2; }
    .brief-container .visuals .yellow-palette .c1 {
      fill: #fec44f; }
      .brief-container .visuals .yellow-palette .c1 .overlay-label {
        fill: black; }
    .brief-container .visuals .yellow-palette .c2 {
      fill: #fee391; }
    .brief-container .visuals .yellow-palette .c3 {
      fill: #fff7bc; }
    .brief-container .visuals .green-palette .c1 {
      fill: #004529; }
    .brief-container .visuals .green-palette .c2 {
      fill: #41ab5d; }
    .brief-container .visuals .green-palette .c3 {
      fill: #addd8e; }
    .brief-container .visuals .blue-palette .c1 {
      fill: #08306b; }
    .brief-container .visuals .blue-palette .c2 {
      fill: #6baed6; }
    .brief-container .visuals .blue-palette .c3 {
      fill: #c6dbef; }
    .brief-container .visuals .purple-palette .c1 {
      fill: #3f007d; }
    .brief-container .visuals .purple-palette .c2 {
      fill: #807dba; }
    .brief-container .visuals .purple-palette .c3 {
      fill: #bcbddc; }
  .brief-container .casedata-context .visuals table {
    margin-bottom: 15px; }
    .brief-container .casedata-context .visuals table td.title {
      width: 150px; }
  @media not print {
    .brief-container .case-name-container a {
      color: #0967cb;
      text-decoration: none; }
    .brief-container .case-name-container a:hover {
      text-decoration: underline; }
    .brief-container .case-name-container a:visited {
      color: #823da5; } }
  @media print {
    .brief-container .case-name-container a {
      color: #000;
      text-decoration: none; } }
  .brief-container .case-name-container .case-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .brief-container .case-name-container .case-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .brief-container .treatment-container {
    display: inline-block;
    width: inherit;
    padding-right: 10px; }
    .brief-container .treatment-container .treatment {
      display: inline-block; }
    .brief-container .treatment-container .pill {
      white-space: nowrap; }
  .brief-container div.cite {
    color: #6a6a6a;
    font-size: 12px;
    font-weight: 700; }
  .brief-container #treatment-table .case-name-cell {
    padding: 10px 10px 10px 0px; }
  .brief-container .status {
    white-space: nowrap;
    text-align: center; }
  .brief-container .brief-table-wide, .brief-container .brief-upload-no-cites-error {
    margin: 15px auto;
    width: 730px; }
    @media print {
      .brief-container .brief-table-wide, .brief-container .brief-upload-no-cites-error {
        margin: 0.4in auto;
        width: 7in; } }
  @media print {
    .brief-container .citation-info {
      font-size: 12px;
      margin-left: 20px; }
      .brief-container .citation-info p {
        margin: 4px 0; }
      .brief-container .citation-info ul {
        margin: 4px 0; } }
  .brief-container #palette-container {
    position: absolute;
    right: 25px; }
  .brief-container #palette {
    font-size: 12px;
    float: right; }
    .brief-container #palette form {
      display: inline; }
    @media print {
      .brief-container #palette {
        display: none; } }
    .brief-container #palette #print-button.clerk-palette-button {
      margin-top: -3px; }
    .brief-container #palette .download-cases-button {
      background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/download_icon.png);
      background-position: 7px 6px;
      background-size: 12px;
      position: relative; }
      .brief-container #palette .download-cases-button .confirm {
        position: absolute;
        left: -90px;
        top: 50%;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 5px 8px;
        height: 15px;
        margin-top: -12.5px;
        border-radius: 3px; }
        .brief-container #palette .download-cases-button .confirm:after {
          content: "";
          border: 5px solid transparent;
          border-left-color: rgba(0, 0, 0, 0.8);
          position: absolute;
          top: 50%;
          margin-top: -5px;
          right: -10px; }
  .brief-container .level-of-analysis {
    margin-top: 0;
    width: 6px; }
  .brief-container .loa-container {
    width: 38px; }
  .brief-container .icon-similar-cases {
    background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/similar_cases.png"); }
  .brief-container .see-more {
    font-size: 14px;
    margin-left: 40px; }
    @media not print {
      .brief-container .see-more a {
        color: #0967cb;
        text-decoration: none; }
      .brief-container .see-more a:hover {
        text-decoration: underline; } }
    @media print {
      .brief-container .see-more a {
        color: #000;
        text-decoration: none; } }
  .brief-container .deep-dive-heading {
    page-break-before: always; }
  @media print {
    .brief-container .debug-all-cites, .brief-container .debug-overview, .brief-container .debug-similar, .brief-container .lawyers,
    .brief-container .suggested-clusters-debug {
      display: none; } }

.brief-container .icon, .brief-upload-container .icon {
  background-size: 100%;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle; }
  .brief-container .icon.toa, .brief-upload-container .icon.toa {
    cursor: pointer;
    margin-right: 5px;
    vertical-align: top; }
  .brief-container .icon.loa, .brief-upload-container .icon.loa {
    margin-left: 5px;
    margin-top: -5px; }
  .brief-container .icon.loa-explanation, .brief-upload-container .icon.loa-explanation {
    vertical-align: top;
    margin-top: -1px; }
  .brief-container .icon.overview-header, .brief-upload-container .icon.overview-header {
    height: 25px;
    width: 25px;
    vertical-align: top;
    margin-left: 5px; }
.brief-container .icon-warning, .brief-upload-container .icon-warning {
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/warning.png"); }

.brief-set-metadata {
  margin: 0 auto;
  width: 700px; }
  .brief-set-metadata table {
    table-layout: fixed;
    margin: 20px 0; }
  .brief-set-metadata .continue-button {
    margin: 20px 0; }
  .brief-set-metadata .form-field {
    width: 540px; }
  .brief-set-metadata .form-label {
    width: 160px; }
  .brief-set-metadata .metadata form {
    text-align: center; }
    .brief-set-metadata .metadata form * {
      text-align: left; }
  .brief-set-metadata .metadata h3 {
    text-align: center; }
  .brief-set-metadata .metadata p {
    line-height: 28px; }
    .brief-set-metadata .metadata p.upload-status {
      margin-top: 40px;
      margin-bottom: 10px;
      line-height: 24px;
      padding: 0 40px; }
  .brief-set-metadata .metadata table .select2-container {
    width: 100%; }
  .brief-set-metadata .metadata .court .select2-container {
    min-width: 160px; }
  .brief-set-metadata .metadata .filename {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .brief-set-metadata .metadata .filename {
        font-family: Georgia, 'Times New Roman', serif; } }
  .brief-set-metadata .metadata .instructions {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center; }
    @media print {
      .brief-set-metadata .metadata .instructions {
        font-family: Georgia, 'Times New Roman', serif; } }
    .brief-set-metadata .metadata .instructions .reason {
      font-size: 18px; }
  .brief-set-metadata .metadata .judge .select2-container {
    min-width: 285px; }
    .brief-set-metadata .metadata .judge .select2-container .select2-selection__clear {
      padding-left: 5px; }
  .brief-set-metadata .metadata .judge .popover {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.5; }
  .brief-set-metadata .metadata .trial-court-position .select2-container {
    min-width: 215px; }
  .brief-set-metadata .metadata .trial-court-position .appellate-role {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height .5s ease-in-out; }
    .brief-set-metadata .metadata .trial-court-position .appellate-role .select2-container {
      min-width: 125px; }
  .brief-set-metadata .select2-container {
    margin: 0 4px;
    vertical-align: bottom; }
    .brief-set-metadata .select2-container .select2-selection {
      border-radius: 0; }
    .brief-set-metadata .select2-container .select2-selection__choice {
      border-radius: 0;
      font-weight: normal; }
    .brief-set-metadata .select2-container .select2-selection__rendered {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .brief-set-metadata .select2-container .select2-selection__rendered {
          font-family: Georgia, 'Times New Roman', serif; } }
    .brief-set-metadata .select2-container .select2-search__field {
      font-weight: normal; }

.brief-upload-form {
  width: 415px;
  margin: 0px auto;
  text-align: center; }
  .brief-upload-form input[type=checkbox] {
    margin-bottom: 15px; }
  .brief-upload-form [disabled] + #brief-upload-label {
    cursor: not-allowed;
    background-color: #86a4c2; }
  .brief-upload-form .brief-upload-pdf-warning {
    font-size: 14px;
    padding-top: 10px; }
  .brief-upload-form select, .brief-upload-form .select2 {
    width: 100%;
    margin-bottom: 15px; }

.brief-upload-intro {
  margin: 0 auto;
  width: 650px;
  text-align: center;
  overflow-y: hidden;
  transition: max-height .5s ease-in-out; }
  @media not print {
    .brief-upload-intro a {
      color: #0967cb;
      text-decoration: none; }
    .brief-upload-intro a:hover {
      text-decoration: underline; } }
  @media print {
    .brief-upload-intro a {
      color: #000;
      text-decoration: none; } }
  .brief-upload-intro .call-to-action {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .brief-upload-intro .call-to-action {
        font-family: Georgia, 'Times New Roman', serif; } }

@media print {
  .brief-overview {
    margin: 0 .25in; } }
.brief-overview .filename {
  text-align: center;
  margin: 25px 0; }
.brief-overview .overview-table {
  margin: 0 auto 50px auto;
  page-break-inside: avoid; }
  @media not print {
    .brief-overview .overview-table {
      width: 808px; } }
  @media not print {
    .brief-overview .overview-table a {
      color: #0967cb;
      text-decoration: none; }
    .brief-overview .overview-table a:hover {
      text-decoration: underline; } }
  @media print {
    .brief-overview .overview-table a {
      color: #000;
      text-decoration: none; } }
  .brief-overview .overview-table td > *:first-child, .brief-overview .overview-table th > *:first-child {
    margin-top: 0; }
  .brief-overview .overview-table td > *:last-child, .brief-overview .overview-table th > *:last-child {
    margin-bottom: 0; }
  .brief-overview .overview-table td h4, .brief-overview .overview-table th h4 {
    font-size: 18px; }
  .brief-overview .overview-table td:nth-of-type(2), .brief-overview .overview-table th:nth-of-type(2) {
    white-space: nowrap;
    text-align: right; }
  .brief-overview .overview-table > thead {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    display: table-row-group; }
    .brief-overview .overview-table > thead th {
      font-size: 20px;
      padding-top: 15px;
      padding-bottom: 15px; }
      .brief-overview .overview-table > thead th:first-of-type {
        padding-left: 25px; }
      .brief-overview .overview-table > thead th:last-of-type {
        padding-right: 25px; }
  .brief-overview .overview-table > tbody {
    border: 1px solid #ccc; }
    .brief-overview .overview-table > tbody > tr > td {
      vertical-align: top;
      padding-top: 25px;
      padding-bottom: 25px; }
      .brief-overview .overview-table > tbody > tr > td:first-of-type {
        padding-left: 20px; }
      .brief-overview .overview-table > tbody > tr > td:last-of-type {
        padding-right: 35px; }
      .brief-overview .overview-table > tbody > tr > td:nth-of-type(2) {
        font-size: 18px;
        font-weight: bold; }
  .brief-overview .overview-table .visuals .caption {
    margin-right: 20px; }
.brief-overview td.title {
  width: 100px; }
.brief-overview .grade-chart {
  margin: 15px auto 0 auto; }
  .brief-overview .grade-chart td, .brief-overview .grade-chart th {
    padding: 5px 10px; }
    .brief-overview .grade-chart td.categories, .brief-overview .grade-chart th.categories {
      width: 180px; }
    .brief-overview .grade-chart td.score, .brief-overview .grade-chart td.grade, .brief-overview .grade-chart th.score, .brief-overview .grade-chart th.grade {
      text-align: center; }
      .brief-overview .grade-chart td.score span, .brief-overview .grade-chart td.grade span, .brief-overview .grade-chart th.score span, .brief-overview .grade-chart th.grade span {
        font-family: 'Archer SSm A', 'Archer SSm B';
        font-style: normal;
        font-weight: 700; }
        @media print {
          .brief-overview .grade-chart td.score span, .brief-overview .grade-chart td.grade span, .brief-overview .grade-chart th.score span, .brief-overview .grade-chart th.grade span {
            font-family: Georgia, 'Times New Roman', serif; } }
    .brief-overview .grade-chart td.score, .brief-overview .grade-chart th.score {
      width: 75px; }
    .brief-overview .grade-chart td.grade, .brief-overview .grade-chart th.grade {
      width: 100px; }
    .brief-overview .grade-chart td .points-container, .brief-overview .grade-chart th .points-container {
      font-size: 12px;
      width: 28px;
      height: 28px;
      border-radius: 14px; }
      .brief-overview .grade-chart td .points-container .points, .brief-overview .grade-chart th .points-container .points {
        padding-top: 7px; }
  .brief-overview .grade-chart .totals {
    border-top: 1px solid #ccc; }
.brief-overview .points-container {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: inline-block;
  font-size: 18px;
  margin-left: 5px;
  text-align: center; }
  .brief-overview .points-container.attitude-negative {
    background-color: #ba4c2b; }
  .brief-overview .points-container.attitude-caution {
    background-color: #eaa115; }
  .brief-overview .points-container.attitude-positive {
    background-color: green; }
  .brief-overview .points-container .points {
    padding-top: 10px;
    color: white;
    display: inline-block; }
.brief-overview .visuals {
  margin: 0; }
.brief-overview .insights-bg-copy {
  display: none; }
@media print {
  .brief-overview .see-details {
    display: none; } }

.brief-name strong {
  font-size: 19px;
  vertical-align: middle; }

.tab-name {
  font-weight: bold; }

.brief-header {
  width: 1230px;
  height: 60px;
  background-color: #fff;
  border-bottom: solid 1px #bbb;
  z-index: 4; }
  @media screen {
    .brief-header {
      position: fixed; } }
  @media print {
    .brief-header {
      width: 7in; } }
  .brief-header .brief-name {
    margin: 17px 0 17px 45px; }
    @media print {
      .brief-header .brief-name {
        margin: 0.17in 0px 0px 0px; } }
    .brief-header .brief-name span {
      display: inline-block;
      font-size: 17px;
      white-space: nowrap;
      width: 700px;
      margin-left: 66px;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: middle;
      padding-top: 1px; }
      @media print {
        .brief-header .brief-name span {
          width: 5in;
          margin-left: 0.25in; } }

#upload-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/upload_icon.png);
  background-position: 7px 6px;
  background-size: 12px;
  background-repeat: no-repeat; }

.brief-palette-button {
  width: 94px;
  margin-right: 14px; }

.brief-upload-container {
  margin: 0 auto;
  min-height: 580px;
  padding: 35px; }
  .brief-upload-container.center-vertical .progress-container {
    /* This is lazy (since it won't dynamically adjust to the container
    width), but much simpler than what you'd need to actually center in
    css. */
    margin-top: 200px; }
  .brief-upload-container .instructions {
    margin: 40px 0; }

.call-to-action {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  padding: 9px 12px;
  background-color: #3c80c4;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none; }

#brief-upload-form input[type="file"], .brief-upload-container input[type="file"] {
  position: absolute;
  overflow: hidden;
  width: 0.1px;
  height: 0.1px;
  z-index: -100;
  opacity: 0; }

.brief-header-spacer {
  height: 60px; }

#navbar.clerk-header {
  padding-left: 0;
  position: fixed;
  width: 1230px;
  border-bottom: 1px solid #ccc;
  border-top: none;
  z-index: 4; }
  #navbar.clerk-header .brief-name {
    width: 220px;
    display: inline-block;
    padding-top: 18px; }
    #navbar.clerk-header .brief-name strong {
      padding-left: 45px; }
  #navbar.clerk-header .tabs {
    display: inline-block; }

.brief-tab {
  page-break-after: always; }
  @media not print {
    .brief-tab {
      display: none; } }
  .brief-tab.selected {
    display: block; }
  .brief-tab:last-of-type {
    page-break-after: auto; }
  .brief-tab .sidebar {
    position: fixed;
    bottom: 0;
    top: 105px;
    width: 280px;
    overflow: auto; }
    .brief-tab .sidebar .table-of-contents .has-full-content:before {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/star_gold.png");
      display: inline-block;
      width: 12px;
      height: 12px;
      margin-right: 4px;
      content: ""; }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .brief-tab .sidebar .table-of-contents .has-full-content:before {
          background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/star_gold_2x.png");
          background-size: 12px 12px; } }
    .brief-tab .sidebar .table-of-contents .has-no-content {
      color: #999; }
    .brief-tab .sidebar .table-of-contents .level-0, .brief-tab .sidebar .table-of-contents .level-1 {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .brief-tab .sidebar .table-of-contents .level-0, .brief-tab .sidebar .table-of-contents .level-1 {
          font-family: Georgia, 'Times New Roman', serif; } }
    .brief-tab .sidebar .table-of-contents .expandable {
      /* Highlight each child separately on hover. */ }
      .brief-tab .sidebar .table-of-contents .expandable .icon-chevron {
        position: absolute;
        width: 8px;
        top: 0;
        bottom: 0;
        padding-right: 7px; }
        .brief-tab .sidebar .table-of-contents .expandable .icon-chevron:after {
          content: "";
          background: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/chevron_down.png") no-repeat center;
          background-size: 8px 8px;
          position: absolute;
          width: 8px;
          top: 0;
          bottom: 0;
          opacity: 0.4; }
      .brief-tab .sidebar .table-of-contents .expandable.level-1 .icon-chevron {
        padding-left: 20px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-1 .icon-chevron + div {
          padding-left: 42px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-2 .icon-chevron {
        padding-left: 35px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-2 .icon-chevron + div {
          padding-left: 57px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-3 .icon-chevron {
        padding-left: 50px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-3 .icon-chevron + div {
          padding-left: 72px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-4 .icon-chevron {
        padding-left: 65px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-4 .icon-chevron + div {
          padding-left: 87px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-5 .icon-chevron {
        padding-left: 80px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-5 .icon-chevron + div {
          padding-left: 102px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-6 .icon-chevron {
        padding-left: 95px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-6 .icon-chevron + div {
          padding-left: 117px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-7 .icon-chevron {
        padding-left: 110px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-7 .icon-chevron + div {
          padding-left: 132px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-8 .icon-chevron {
        padding-left: 125px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-8 .icon-chevron + div {
          padding-left: 147px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-9 .icon-chevron {
        padding-left: 140px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-9 .icon-chevron + div {
          padding-left: 162px; }
      .brief-tab .sidebar .table-of-contents .expandable.level-10 .icon-chevron {
        padding-left: 155px; }
        .brief-tab .sidebar .table-of-contents .expandable.level-10 .icon-chevron + div {
          padding-left: 177px; }
      .brief-tab .sidebar .table-of-contents .expandable.collapsed .icon-chevron:after {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/chevron_right.png"); }
      .brief-tab .sidebar .table-of-contents .expandable:hover {
        background-color: transparent; }
      .brief-tab .sidebar .table-of-contents .expandable > div:hover {
        background-color: #efeee9; }
    .brief-tab .sidebar .pane.annotated {
      padding-right: 45px; }
      .brief-tab .sidebar .pane.annotated .negative:after {
        content: "✗";
        color: #ba4c2b;
        float: right;
        margin-right: -23px; }
      .brief-tab .sidebar .pane.annotated .positive:after {
        content: "✓";
        color: green;
        float: right;
        margin-right: -25px; }
      .brief-tab .sidebar .pane.annotated .warning:after {
        content: "";
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/warning.png");
        background-size: 100%;
        width: 20px;
        height: 20px;
        float: right;
        margin-right: -25px;
        margin-top: -1px; }
  .brief-tab .content {
    margin-left: 281px;
    padding: 0 50px; }
    @media print {
      .brief-tab .content {
        width: auto;
        margin: 0 .25in;
        padding: 0; } }
    .brief-tab .content header {
      margin-bottom: 40px;
      font-family: Arial, sans-serif;
      width: 80%;
      font-size: 17px; }
      .brief-tab .content header:first-child {
        margin-top: 30px; }
      .brief-tab .content header > div {
        padding: 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
        border-radius: 2px; }
        .brief-tab .content header > div > *:first-child {
          margin-top: 0; }
        .brief-tab .content header > div > *:last-child {
          margin-bottom: 0; }
      .brief-tab .content header > div + div {
        margin-top: 25px; }
    .brief-tab .content h2 {
      margin: 55px 0 30px 0; }
    .brief-tab .content h3 {
      margin: 20px 0; }

.invisible {
  visibility: hidden; }

table.case-comparison-table {
  font-size: 14px;
  line-height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  width: 100%; }
  table.case-comparison-table td, table.case-comparison-table th {
    padding: 15px; }
  table.case-comparison-table td.treatment-cell {
    width: 180px; }
  table.case-comparison-table tr.matched-member {
    border: solid 3px #76aee7; }
    table.case-comparison-table tr.matched-member td:last-child {
      border-right: solid 3px #76aee7; }
  table.case-comparison-table tr.matching-header > th.match {
    font-size: 10px;
    max-width: 5px;
    transform: rotate(-45deg); }
  table.case-comparison-table tr.primary-header th, table.case-comparison-table td {
    border: 1px solid #ccc; }
  table.case-comparison-table tr.no-bottom-border td {
    border-bottom: none; }
  table.case-comparison-table tr.no-top-border td {
    border-top: none;
    padding-top: 0; }
    @media print {
      table.case-comparison-table tr.no-top-border td {
        padding: 0; } }
  table.case-comparison-table th.loa-header {
    font-size: 9px;
    line-height: 12px; }
  table.case-comparison-table .case-name {
    font-size: 15px; }
  table.case-comparison-table .case-pills-cell {
    padding-top: 18px;
    width: 84px; }
    table.case-comparison-table .case-pills-cell .casedata-pill {
      width: 66px;
      margin-left: auto;
      margin-right: auto; }
  table.case-comparison-table .match {
    text-align: center;
    width: 5px; }
  table.case-comparison-table .member-text {
    font-size: 14px;
    line-height: 20px; }
    @media not print {
      table.case-comparison-table .member-text a {
        color: #0967cb;
        text-decoration: none; }
      table.case-comparison-table .member-text a:hover {
        text-decoration: underline; }
      table.case-comparison-table .member-text a:visited {
        color: #823da5; } }
    @media print {
      table.case-comparison-table .member-text a {
        color: #000;
        text-decoration: none; } }
  table.case-comparison-table .toggle {
    text-align: center;
    border: none; }
    table.case-comparison-table .toggle a {
      color: gray; }
    @media print {
      table.case-comparison-table .toggle {
        display: none; } }

.brief-outcomes a {
  color: #0088cc;
  text-decoration: none; }
.brief-outcomes .by-outcome-container {
  margin-bottom: 40px; }
.brief-outcomes .cases-in-brief {
  margin-bottom: 10px; }
  .brief-outcomes .cases-in-brief td {
    vertical-align: top; }
  .brief-outcomes .cases-in-brief .case-name-container {
    margin-top: -6px; }
  .brief-outcomes .cases-in-brief .treatment-container {
    float: none; }
.brief-outcomes .outcome-chart {
  margin-bottom: 100px; }
  .brief-outcomes .outcome-chart h3 a {
    font-size: 19px;
    color: black; }
  .brief-outcomes .outcome-chart th {
    text-align: center; }
  .brief-outcomes .outcome-chart .case-grid {
    margin: 0;
    width: 100%;
    page-break-inside: avoid; }
    .brief-outcomes .outcome-chart .case-grid td, .brief-outcomes .outcome-chart .case-grid th {
      padding: 10px;
      border: 1px solid #ccc; }
    .brief-outcomes .outcome-chart .case-grid th {
      color: #616161;
      font-size: 13px; }
      .brief-outcomes .outcome-chart .case-grid th.y-label {
        vertical-align: middle;
        width: 105px;
        padding-bottom: 40px;
        padding-top: 40px; }
      .brief-outcomes .outcome-chart .case-grid th span.label {
        color: black;
        display: block;
        font-size: 14px;
        padding: 3px 0; }
    .brief-outcomes .outcome-chart .case-grid td {
      vertical-align: top;
      width: 350px; }
      .brief-outcomes .outcome-chart .case-grid td.analog {
        border-color: green; }
      .brief-outcomes .outcome-chart .case-grid td.counter {
        border-color: #eaa115; }
      .brief-outcomes .outcome-chart .case-grid td.analog, .brief-outcomes .outcome-chart .case-grid td.counter {
        border-width: 2px; }
      .brief-outcomes .outcome-chart .case-grid td ul {
        list-style-type: none;
        padding: 0; }
        .brief-outcomes .outcome-chart .case-grid td ul li {
          margin: 20px 10px; }
      .brief-outcomes .outcome-chart .case-grid td a.toggle {
        color: gray;
        display: block;
        margin: 0 auto;
        text-align: center; }
        @media print {
          .brief-outcomes .outcome-chart .case-grid td a.toggle {
            display: none; } }
      .brief-outcomes .outcome-chart .case-grid td .box-label {
        display: block;
        font-style: italic;
        text-align: center; }
      .brief-outcomes .outcome-chart .case-grid td .box-label, .brief-outcomes .outcome-chart .case-grid td .toggle {
        font-size: 14px; }
      .brief-outcomes .outcome-chart .case-grid td .case-name-container {
        margin-bottom: 4px; }
      .brief-outcomes .outcome-chart .case-grid td .treatment-container {
        float: right; }
    .brief-outcomes .outcome-chart .case-grid .case-header {
      padding: 20px 40px 0px 40px; }
      .brief-outcomes .outcome-chart .case-grid .case-header .case-name {
        font-size: 16px; }
      .brief-outcomes .outcome-chart .case-grid .case-header .cited-case-winner {
        font-size: 15px; }
      .brief-outcomes .outcome-chart .case-grid .case-header p {
        margin: 20px 0; }
      .brief-outcomes .outcome-chart .case-grid .case-header .case-outcome {
        font-family: 'Archer SSm A', 'Archer SSm B';
        font-style: normal;
        font-weight: 700; }
        @media print {
          .brief-outcomes .outcome-chart .case-grid .case-header .case-outcome {
            font-family: Georgia, 'Times New Roman', serif; } }
      .brief-outcomes .outcome-chart .case-grid .case-header .treatment {
        font-weight: normal;
        display: inline-block;
        margin-left: 8px;
        vertical-align: top; }
.brief-outcomes .treatment-container {
  margin: 0 15px 1px 4px;
  vertical-align: bottom;
  width: initial; }

.treatments .case-to-watch {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 50px;
  width: 100%; }
  .treatments .case-to-watch td {
    border: 1px solid #ccc;
    padding: 20px 40px; }
  .treatments .case-to-watch thead .case-name {
    font-size: 16px; }
  .treatments .case-to-watch .treatment {
    font-weight: normal;
    display: inline-block;
    margin-left: 8px;
    vertical-align: top; }
  @media not print {
    .treatments .case-to-watch a {
      color: #0967cb;
      text-decoration: none; }
    .treatments .case-to-watch a:hover {
      text-decoration: underline; }
    .treatments .case-to-watch a:visited {
      color: #823da5; } }
  @media print {
    .treatments .case-to-watch a {
      color: #000;
      text-decoration: none; } }
  .treatments .case-to-watch .case-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .treatments .case-to-watch .case-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .treatments .case-to-watch .cite {
    margin-top: 4px;
    margin-bottom: 10px; }
  .treatments .case-to-watch .cited-case-description {
    font-style: italic; }
  .treatments .case-to-watch .snippets-intro {
    margin: 10px 0; }
  .treatments .case-to-watch .snippets {
    margin-bottom: 15px;
    margin-left: 40px; }
    @media not print {
      .treatments .case-to-watch .snippets a {
        color: black;
        text-decoration: none; }
      .treatments .case-to-watch .snippets a:hover {
        text-decoration: underline; } }
    @media print {
      .treatments .case-to-watch .snippets a {
        color: #000;
        text-decoration: none; } }
    .treatments .case-to-watch .snippets .more {
      font-size: 12px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      text-decoration: none;
      color: #6a6a6a; }
      @media print {
        .treatments .case-to-watch .snippets .more {
          font-family: Georgia, 'Times New Roman', serif; } }
      @media print {
        .treatments .case-to-watch .snippets .more {
          display: none; } }
.treatments .case-comparison-table th {
  border: solid 1px #dadada;
  padding: 15px; }
.treatments .case-comparison-table .level-of-analysis, .treatments .case-comparison-table .vulnerability-score {
  margin-top: 5px; }
.treatments .case-comparison-table .vulnerability-score {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: #6a6a6a; }
  @media print {
    .treatments .case-comparison-table .vulnerability-score {
      font-family: Georgia, 'Times New Roman', serif; } }
.treatments figure {
  margin: 20px 0 0 0; }

.quotations .visuals figure {
  text-align: center;
  display: inline-block;
  margin-left: 0;
  margin-right: 0; }
  .quotations .visuals figure figcaption {
    font-size: 14px;
    font-family: Arial, sans-serif; }
.quotations .quotation-list + h3 {
  margin-top: 60px; }
.quotations .quotation-header, .quotations .quotation-item {
  font-size: 14px;
  line-height: 20px;
  table-layout: fixed;
  width: 100%; }
  .quotations .quotation-header td, .quotations .quotation-header th, .quotations .quotation-item td, .quotations .quotation-item th {
    padding: 20px;
    vertical-align: top; }
.quotations .quotation-header {
  margin-bottom: -20px;
  text-decoration: underline; }
.quotations .quotation-item {
  margin: 20px 0; }
  .quotations .quotation-item p {
    margin: 0; }
  .quotations .quotation-item tbody {
    border: solid 1px #dadada; }
  .quotations .quotation-item td {
    border-left: solid 1px #dadada; }

.references .reference-header {
  text-decoration: underline; }

.matched {
  background-color: #d6ebff;
  border: 1px solid #b0d5f9; }
  .matched.addition {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    background-color: #d6ffd6;
    border: 1px solid #a6daa6;
    text-decoration: underline; }
    @media print {
      .matched.addition {
        font-family: Georgia, 'Times New Roman', serif; } }
  .matched.deletion {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    background-color: #ffb2b2;
    border: 1px solid #fb8f8f;
    text-decoration: line-through; }
    @media print {
      .matched.deletion {
        font-family: Georgia, 'Times New Roman', serif; } }
  .matched.modification {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    background-color: #FFF3B9;
    border: 1px solid #fbd419; }
    @media print {
      .matched.modification {
        font-family: Georgia, 'Times New Roman', serif; } }

.supporting-cases table.case-comparison-table {
  page-break-inside: avoid; }
  .supporting-cases table.case-comparison-table > thead {
    display: table-row-group; }
.supporting-cases td {
  vertical-align: top; }
  .supporting-cases td.case-name-cell {
    width: 310px; }
    .supporting-cases td.case-name-cell .treatment-container {
      float: none;
      margin-bottom: 1px;
      margin-left: 4px;
      vertical-align: bottom; }
  .supporting-cases td.member-text {
    padding: 0 15px; }
    .supporting-cases td.member-text p {
      margin-top: 15px;
      margin-bottom: 15px; }
      .supporting-cases td.member-text p a {
        color: black; }
.supporting-cases .brief-quote td {
  padding: 25px; }
  .supporting-cases .brief-quote td p {
    margin: 0; }
  .supporting-cases .brief-quote td .brief-text {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .supporting-cases .brief-quote td .brief-text {
        font-family: Georgia, 'Times New Roman', serif; } }

.suggested-clusters ul {
  padding-left: 0px; }
  .suggested-clusters ul li {
    list-style-type: none;
    margin: 20px 0px; }
.suggested-clusters td {
  vertical-align: top; }
.suggested-clusters td.case-list {
  width: 370px;
  padding: 0px 20px 10px 20px; }
.suggested-clusters .case-comparison-table {
  table-layout: fixed; }
.suggested-clusters .treatment-container {
  float: right;
  margin-bottom: 1px;
  margin-left: 4px; }
.suggested-clusters .suggested-cluster-outcome-bias {
  font-style: italic; }
  .suggested-clusters .suggested-cluster-outcome-bias td {
    padding: 12px;
    text-align: center; }
.suggested-clusters .suggested-exemplar-text {
  font-weight: bold; }
.suggested-clusters tr.brief-quote td {
  padding: 10px 25px; }
@media not print {
  .suggested-clusters a {
    color: #0967cb;
    text-decoration: none; }
  .suggested-clusters a:hover {
    text-decoration: underline; } }
@media print {
  .suggested-clusters a {
    color: #000;
    text-decoration: none; } }
.suggested-clusters .reason-show, .suggested-clusters .reason-hide {
  font-style: italic; }
  @media print {
    .suggested-clusters .reason-show, .suggested-clusters .reason-hide {
      display: none; } }
.suggested-clusters .suggested-exemplar td {
  padding: 25px; }
.suggested-clusters .already-cited {
  font-style: italic;
  margin-bottom: 10px; }
.suggested-clusters .suggested-cluster-heading {
  text-align: center; }
  .suggested-clusters .suggested-cluster-heading .label {
    font-weight: bold; }
.suggested-clusters a.toggle {
  color: gray;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none; }
  @media print {
    .suggested-clusters a.toggle {
      display: none; } }
.suggested-clusters .brief-quote div, .suggested-clusters .reason-show, .suggested-clusters .citation-container {
  margin-top: 10px; }
.suggested-clusters .suggestion-reason {
  font-style: italic; }
.suggested-clusters .brief-quote .brief-text, .suggested-clusters .brief-quote .citation-container {
  margin-left: 25px;
  margin-right: 25px; }
.suggested-clusters .visuals p.explanation {
  margin-bottom: 50px; }
.suggested-clusters .argument-section {
  margin-bottom: 50px; }

.debug-all-cites ul {
  margin-top: 0;
  margin-bottom: 0; }

.debug-overview .dl-horizontal {
  font-size: 14px;
  line-height: 20px; }
  .debug-overview .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .debug-overview .dl-horizontal dt {
        font-family: Georgia, 'Times New Roman', serif; } }
  .debug-overview .dl-horizontal dd {
    margin-left: 180px; }

.debug-similar .content h3 {
  margin-top: 60px; }
  @media not print {
    .debug-similar .content h3 a {
      color: #0967cb;
      text-decoration: none; }
    .debug-similar .content h3 a:hover {
      text-decoration: underline; }
    .debug-similar .content h3 a:visited {
      color: #823da5; } }
  @media print {
    .debug-similar .content h3 a {
      color: #000;
      text-decoration: none; } }
.debug-similar td, .debug-similar th {
  border: 1px solid #ccc;
  padding: 10px; }
  @media not print {
    .debug-similar td a, .debug-similar th a {
      color: #0967cb;
      text-decoration: none; }
    .debug-similar td a:hover, .debug-similar th a:hover {
      text-decoration: underline; }
    .debug-similar td a:visited, .debug-similar th a:visited {
      color: #823da5; } }
  @media print {
    .debug-similar td a, .debug-similar th a {
      color: #000;
      text-decoration: none; } }
  .debug-similar td.score, .debug-similar th.score {
    background-color: #ddd; }
.debug-similar .table-container {
  max-width: 850px;
  margin: 20px 0 40px;
  overflow-x: auto; }

#document-view.brief-render {
  font-size: 14px;
  background-color: #eee; }
  @media not print {
    #document-view.brief-render a[data-refglobal] {
      color: #0967cb;
      text-decoration: none; }
    #document-view.brief-render a[data-refglobal]:hover {
      text-decoration: underline; }
    #document-view.brief-render a[data-refglobal]:visited {
      color: #823da5; } }
  @media print {
    #document-view.brief-render a[data-refglobal] {
      color: #000;
      text-decoration: none; } }
  @media print {
    #document-view.brief-render {
      display: none; } }
  #document-view.brief-render .case-body, #document-view.brief-render .statute-body {
    font-size: 14px;
    background-color: #fff;
    margin-left: 281px; }
    #document-view.brief-render .case-body > :first-child, #document-view.brief-render .statute-body > :first-child {
      margin-top: 30px; }
  #document-view.brief-render .tableofauthorities {
    margin-top: 15px; }
    #document-view.brief-render .tableofauthorities > p {
      text-align: center; }
    #document-view.brief-render .tableofauthorities > p.tab-suggestion {
      text-align: left; }
    #document-view.brief-render .tableofauthorities table {
      margin-top: 15px;
      width: 100%; }
    #document-view.brief-render .tableofauthorities td {
      max-width: 300px;
      padding: 10px; }
      #document-view.brief-render .tableofauthorities td:first-child {
        padding-left: 0; }
      #document-view.brief-render .tableofauthorities td:last-child {
        padding-right: 0; }
    #document-view.brief-render .tableofauthorities .pages-cell {
      text-align: right; }
    @media not print {
      #document-view.brief-render .tableofauthorities .tab-suggestion a {
        color: #0967cb;
        text-decoration: none; }
      #document-view.brief-render .tableofauthorities .tab-suggestion a:hover {
        text-decoration: underline; } }
    @media print {
      #document-view.brief-render .tableofauthorities .tab-suggestion a {
        color: #000;
        text-decoration: none; } }
  #document-view.brief-render .tableofcontents {
    width: 650px;
    margin: 60px 0px; }
    @media not print {
      #document-view.brief-render .tableofcontents .tocheading-linked {
        color: #0967cb;
        text-decoration: none; }
      #document-view.brief-render .tableofcontents .tocheading-linked:hover {
        text-decoration: underline; } }
    @media print {
      #document-view.brief-render .tableofcontents .tocheading-linked {
        color: #000;
        text-decoration: none; } }
    #document-view.brief-render .tableofcontents .toc-heading-cell {
      padding-right: 80px;
      padding-bottom: 10px; }
    #document-view.brief-render .tableofcontents .toc-page-cell {
      vertical-align: bottom;
      padding-bottom: 10px; }
  #document-view.brief-render .parties {
    text-align: center;
    margin: 40px 0; }
    #document-view.brief-render .parties .party .name {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      margin-top: 10px; }
      @media print {
        #document-view.brief-render .parties .party .name {
          font-family: Georgia, 'Times New Roman', serif; } }
      #document-view.brief-render .parties .party .name + div {
        margin: 4px 0 10px 0; }
  #document-view.brief-render .counsel {
    margin: 40px 0; }
    #document-view.brief-render .counsel p {
      margin: 0; }
  #document-view.brief-render p.party {
    margin: 10px 0; }
  #document-view.brief-render .suggestion {
    padding-bottom: 0;
    cursor: pointer; }
    #document-view.brief-render .suggestion.good {
      border-bottom: 1px dotted green; }
    #document-view.brief-render .suggestion.bad {
      border-bottom: 1px dotted #ba4c2b; }
    #document-view.brief-render .suggestion.judge, #document-view.brief-render .suggestion.lawyer {
      border-bottom: 1px dotted #0967cb; }
    #document-view.brief-render .suggestion.support-match {
      padding-top: 5px;
      background-color: rgba(0, 128, 255, 0.1); }
  #document-view.brief-render .popover ul {
    margin: 0;
    padding-left: 20px; }
    #document-view.brief-render .popover ul li + li {
      margin-top: 5px; }
  @media not print {
    #document-view.brief-render .popover a {
      color: #0967cb;
      text-decoration: none; }
    #document-view.brief-render .popover a:hover {
      text-decoration: underline; } }
  @media print {
    #document-view.brief-render .popover a {
      color: #000;
      text-decoration: none; } }

.suggested-cluster-table td.row-heading {
  width: 170px; }
.suggested-cluster-table td {
  vertical-align: top; }
.suggested-cluster-table .row-spacer td {
  height: 30px; }

.reference-list {
  margin-bottom: 60px; }
  .reference-list table {
    table-layout: fixed;
    width: 100%; }
  .reference-list th, .reference-list td {
    padding: 20px; }
  .reference-list tbody {
    font-size: 14px;
    line-height: 20px; }
  .reference-list td {
    border: 1px solid #ccc; }
  .reference-list .citation {
    color: black;
    font-style: normal; }

.spinner-container {
  height: 650px;
  position: relative; }
  .spinner-container .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .spinner-container .spinner {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
        background-size: 20px 20px; } }

#error-modal .modal-header {
  padding-left: 20px; }
#error-modal .modal-body {
  padding: 0 20px; }
  @media not print {
    #error-modal .modal-body a {
      color: #0967cb;
      text-decoration: none; }
    #error-modal .modal-body a:hover {
      text-decoration: underline; } }
  @media print {
    #error-modal .modal-body a {
      color: #000;
      text-decoration: none; } }
#error-modal .modal-footer {
  text-align: center; }

@media print {
  #navbar {
    display: none; }

  .brief-header-spacer {
    display: none; }

  .sidebar {
    display: none; } }
.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

.find-toggle {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 9px;
  background-image: none;
  padding: 6px 12px;
  font-size: 14px;
  width: 141px; }
  .find-toggle input[type=checkbox] {
    cursor: pointer;
    float: left;
    margin-top: 2px;
    margin-right: 5px; }

.find-btn {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 9px;
  background-image: none;
  padding: 6px 12px;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px; }
  .find-btn.up {
    margin-right: 0; }
    .find-btn.up div {
      width: 16px;
      height: 16px;
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_up.png"); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .find-btn.up div {
          background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_up.2x.png");
          background-size: 16px 16px; } }
  .find-btn.down {
    border-left: none; }
    .find-btn.down div {
      width: 16px;
      height: 16px;
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_down.png"); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .find-btn.down div {
          background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_down.2x.png");
          background-size: 16px 16px; } }

#search-field-container {
  position: relative; }
  #search-field-container.find:after {
    content: attr(countString);
    position: absolute;
    right: 10px;
    top: 6px;
    color: #aaa;
    font-size: 14px; }

#page-case-reader #search-field-container, #page-legislation-bill #search-field-container, #page-statute-section #search-field-container,
#page-statute-heading #search-field-container, #page-statute-const_article #search-field-container, #page-demo-overlay #search-field-container {
  width: 480px; }
  #page-case-reader #search-field-container input[type='text'], #page-legislation-bill #search-field-container input[type='text'], #page-statute-section #search-field-container input[type='text'],
  #page-statute-heading #search-field-container input[type='text'], #page-statute-const_article #search-field-container input[type='text'], #page-demo-overlay #search-field-container input[type='text'] {
    width: 470px; }

button {
  -webkit-appearance: button;
  cursor: pointer; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  opacity: .2;
  padding: 0; }
  .modal-header .close:hover {
    opacity: .5; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.clearfix:before, .modal-trial-overview .feature-section:before,
.clearfix:after,
.modal-trial-overview .feature-section:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.clearfix:after, .modal-trial-overview .feature-section:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
/* NOTE: This file contains rules for displaying the content of a
 * case. Depending on the media type, it must be combined with either
 * site_styles.scss or print_styles.scss to fully style a case. The rules in
 * common.scss should be those that are used in both media types.
 */
#document-view {
  background-color: white;
  color: black; }
  #document-view a[data-refglobal] {
    color: black; }
  #document-view blockquote {
    padding-left: 10%;
    padding-right: 10%;
    margin-left: 0;
    margin-right: 0;
    border: none; }
  #document-view hr {
    border: none;
    height: 1px;
    color: #ddd;
    background-color: #ddd;
    width: 7in; }
  #document-view iframe {
    border: 0;
    width: 100%;
    height: 500px; }
  #document-view td {
    padding: 1%; }
  #document-view .align-center {
    text-align: center;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none; }
  #document-view .case-header .parties {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      #document-view .case-header .parties {
        font-family: Georgia, 'Times New Roman', serif; } }
    #document-view .case-header .parties .roles {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 500; }
      @media print {
        #document-view .case-header .parties .roles {
          font-family: Georgia, 'Times New Roman', serif; } }
  #document-view .case-header .noteanchor a {
    color: black; }
  #document-view .case-header .treatment {
    display: inline-block; }
  #document-view .case-body, #document-view .statute-body {
    line-height: 1.5;
    margin: 0;
    padding-top: 0;
    position: relative; }
    #document-view .case-body h1, #document-view .statute-body h1, #document-view .case-body h2, #document-view .statute-body h2, #document-view .case-body h3, #document-view .statute-body h3, #document-view .case-body h4, #document-view .statute-body h4, #document-view .case-body h5, #document-view .statute-body h5, #document-view .case-body h6, #document-view .statute-body h6 {
      word-wrap: break-word;
      -webkit-hyphens: none;
      -moz-hyphens: none;
      -ms-hyphens: none;
      -o-hyphens: none;
      hyphens: none; }
    #document-view .case-body .active-highlight, #document-view .statute-body .active-highlight {
      background-color: #ffc40d; }
    #document-view .case-body .counsel, #document-view .statute-body .counsel {
      line-height: 1.286; }
    #document-view .case-body .opinion > .heading:first-child, #document-view .statute-body .opinion > .heading:first-child, #document-view .case-body #counsel-heading, #document-view .statute-body #counsel-heading {
      margin-top: 0; }
  #document-view .counsel .pagenumber, #document-view .publication .pagenumber {
    display: none; }
  #document-view .heading {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none; }
  #document-view .noteanchor a, #document-view .notemarker a {
    text-decoration: none; }
  #document-view .notemarker {
    padding-left: 1em; }
  #document-view .pagenumber {
    white-space: nowrap;
    font-weight: normal; }
    #document-view .pagenumber:before {
      content: attr(margin);
      position: absolute;
      background-color: white; }
    #document-view .pagenumber:after, #document-view .pagenumber:before {
      color: #919191;
      font-style: normal; }
    #document-view .pagenumber:after {
      content: attr(val); }
  #document-view .underline {
    text-decoration: underline; }
  #document-view #text-frame {
    position: relative;
    margin-left: 360px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    #document-view #text-frame.loaded {
      opacity: 1;
      filter: alpha(opacity=100); }

@page {
  margin-left: 0;
  margin-right: 0; }
.toggle-checkbox-button {
  padding: 5px;
  display: block;
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  z-index: -1;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  text-align: left; }
  .toggle-checkbox-button input {
    cursor: pointer;
    margin-right: 6px;
    margin-top: 1px;
    margin-left: 1px;
    float: left; }

#highlight-toggle.checked {
  background-color: #FFF3B9; }

#treatment-highlight-toggle {
  margin-top: 5px;
  background-color: #dae6f7; }
  #treatment-highlight-toggle.checked {
    background-color: #aec7ee; }

.brief-container #palette .download-cases-button, #upload-button, #color-pro-button, #print-button, #review-button, #refhighlight-button, #treatment-review-button, .num-unreviewed-refs, #copy-tool .copy-button {
  margin-top: 5px;
  padding: 5px 15px 5px 25px;
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-repeat: no-repeat;
  text-align: left;
  height: 15px; }

.palette-link {
  text-decoration: none; }

#color-pro-button {
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png");
  background-position: 6px 6px;
  background-color: #dae6f7; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    #color-pro-button {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#print-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/print_icon.png);
  background-position: 7px 6px;
  background-size: 12px; }

#review-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/edit_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

#refhighlight-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/eye_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

#treatment-review-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/edit_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

.num-unreviewed-refs {
  padding: 5px 6px; }
  .num-unreviewed-refs .count {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .num-unreviewed-refs .count {
        font-family: Georgia, 'Times New Roman', serif; } }

#save-treatment-button {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 12px;
  margin-top: 15px;
  float: right;
  padding: 5px 10px; }

.reviewable {
  background-color: #FF9999;
  cursor: pointer; }

.matchable {
  background-color: #ffc789;
  cursor: pointer; }

.rg-match {
  background-color: #96a9ff;
  cursor: pointer; }

#page-case-reader .modal *, #page-statute-section .modal * {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
#page-case-reader .modal .modal-dialog, #page-statute-section .modal .modal-dialog {
  margin-top: 110px; }
#page-case-reader .modal .modal-title, #page-statute-section .modal .modal-title {
  display: inline; }
#page-case-reader .modal .format, #page-statute-section .modal .format {
  color: #848484;
  display: inline;
  margin-left: 14px; }
#page-case-reader .modal .modal-content, #page-statute-section .modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
#page-case-reader .modal .select-button, #page-statute-section .modal .select-button {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: inline;
  padding: 6px 12px; }
#page-case-reader .modal .target-text, #page-statute-section .modal .target-text {
  margin-top: 15px;
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  font-family: none; }
#page-case-reader .modal .target-text, #page-case-reader .modal .target-text *, #page-statute-section .modal .target-text, #page-statute-section .modal .target-text * {
  user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text; }

#page-case-reader .citation-example, #page-account-citation .citation-example {
  border-top: 1px solid #e5e5e5;
  padding: 20px 20px 0 20px;
  font-family: none; }
#page-case-reader .citation-example, #page-case-reader .citation-example *, #page-account-citation .citation-example, #page-account-citation .citation-example * {
  user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text; }
#page-case-reader #save-button, #page-account-citation #save-button {
  float: right; }

.dropdown-menu-tool {
  position: relative; }
  .dropdown-menu-tool * {
    cursor: pointer; }
  .dropdown-menu-tool.disabled > *:not(.confirm) {
    opacity: 0.5; }
  .dropdown-menu-tool.disabled * {
    cursor: default; }
  .dropdown-menu-tool .expand {
    position: absolute;
    /* Put this div just inside copy-button.  If it lies on top of
       copy-button it will mask copy-button's borders.  And if we
       add a border all the way around .expand, it will noticeably
       double up when the button is disabled. */
    top: 1px;
    right: 1px;
    height: 25px;
    width: 20px;
    border-left: solid 1px #aaa;
    background-color: #fafafa; }
    .dropdown-menu-tool .expand .chevron {
      background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/chevron_down.png);
      background-size: 10px;
      background-repeat: no-repeat;
      position: absolute;
      height: 10px;
      width: 10px;
      right: 5px;
      top: 50%;
      margin-top: -5px;
      opacity: 0.7; }
  .dropdown-menu-tool .menu {
    position: absolute;
    top: 26px;
    background-color: #fafafa;
    border: solid 1px #aaa;
    right: 0;
    z-index: 1; }
    .dropdown-menu-tool .menu.transparent {
      /* Using display: none or visibility: hidden appears to prevent us
         from hearing click events in the menu in IE 9. */
      opacity: 0;
      z-index: -100;
      cursor: default; }
      .dropdown-menu-tool .menu.transparent * {
        cursor: default; }
    .dropdown-menu-tool .menu .item {
      position: relative; }
      .dropdown-menu-tool .menu .item ~ .item {
        border-top: solid 1px #e4e4e2; }
    .dropdown-menu-tool .menu label {
      display: block;
      padding: 10px 5px 10px 20px; }
      .dropdown-menu-tool .menu label:hover {
        background-color: #efeee9; }
      .dropdown-menu-tool .menu label.active:before {
        content: "\2713";
        position: absolute;
        left: 7px;
        color: #0e92ad; }

#color-state-tool .menu label {
  width: 100px; }

#copy-tool.disabled .copy-hotspot {
  display: none; }
#copy-tool .copy-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/copy_icon.png);
  background-size: 13px;
  background-position: 6px 6px; }
  #copy-tool .copy-button.basic {
    background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      #copy-tool .copy-button.basic {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
        background-size: 13px 13px; } }
  #copy-tool .copy-button .copy-hotspot {
    position: absolute;
    top: 0;
    right: 22px;
    bottom: 0;
    left: 0;
    /* This is necessary for IE.  Otherwise the overlay won't get click
       events when the user clicks on the underlying text.
       From
       https://github.com/sass/sass/issues/363#issuecomment-65670316
       */
    background-color: rgba(0, 0, 0, 0); }
#copy-tool .expand {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
#copy-tool .menu label {
  width: 75px; }
  #copy-tool .menu label.custom-format {
    width: 55px; }
  #copy-tool .menu label.zeroclipboard-is-hover {
    background-color: #efeee9; }
#copy-tool .menu .edit {
  position: absolute;
  right: 0;
  width: 20px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #e4e4e2;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
  #copy-tool .menu .edit:hover {
    background-color: #efeee9; }
  #copy-tool .menu .edit > div {
    position: absolute;
    font-size: 14px;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    text-align: center;
    width: 100%; }
#copy-tool .confirm {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  right: 98px;
  color: #fff;
  padding: 5px 8px;
  height: 15px;
  top: 50%;
  margin-top: -12.5px;
  border-radius: 3px; }
  #copy-tool .confirm:after {
    content: "";
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: -10px; }

#customize-modal .modal-content {
  cursor: default; }

.document-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
  overflow-y: scroll;
  width: 359px;
  height: 10000px; }
  .document-sidebar .pane:not(#outline-header) {
    font-size: 14px; }
    .document-sidebar .pane:not(#outline-header) .text {
      padding-top: 10px;
      padding-bottom: 10px; }
  .document-sidebar #outline-header {
    font-size: 15px; }
    .document-sidebar #outline-header #outline-label {
      overflow: auto;
      font-weight: 700;
      text-transform: uppercase; }
    .document-sidebar #outline-header .debug-link, .document-sidebar #outline-header .citing-cases {
      float: right;
      padding-left: 5px;
      font-weight: 700; }
      @media not print {
        .document-sidebar #outline-header .debug-link a, .document-sidebar #outline-header .citing-cases a {
          color: #0967cb;
          text-decoration: none; }
        .document-sidebar #outline-header .debug-link a:hover, .document-sidebar #outline-header .citing-cases a:hover {
          text-decoration: underline; } }
      @media print {
        .document-sidebar #outline-header .debug-link a, .document-sidebar #outline-header .citing-cases a {
          color: #000;
          text-decoration: none; } }
    .document-sidebar #outline-header .sections {
      white-space: nowrap; }
    .document-sidebar #outline-header .clearfix, .document-sidebar #outline-header .modal-trial-overview .feature-section, .modal-trial-overview .document-sidebar #outline-header .feature-section {
      padding: 0; }
  .document-sidebar a:hover {
    text-decoration: underline; }

#case-sidebar .level-0, #case-sidebar .level-1 {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700; }
  @media print {
    #case-sidebar .level-0, #case-sidebar .level-1 {
      font-family: Georgia, 'Times New Roman', serif; } }
@media print {
  #case-sidebar {
    display: none; } }

@media not print {
  #breadcrumbs a {
    color: #0967cb;
    text-decoration: none; }
  #breadcrumbs a:hover {
    text-decoration: underline; } }
@media print {
  #breadcrumbs a {
    color: #000;
    text-decoration: none; } }

#section-sidebar #breadcrumbs, #heading-sidebar #breadcrumbs {
  font-size: 16px; }
  #section-sidebar #breadcrumbs a:hover .toc-heading-specifier, #heading-sidebar #breadcrumbs a:hover .toc-heading-specifier {
    text-decoration: underline; }

#heading-sidebar #breadcrumbs a:first-child .pane {
  border-top: solid 1px #e4e4e2; }
#heading-sidebar .table-of-contents .pane:first-child {
  border-top: solid 1px #e4e4e2; }
@media print {
  #heading-sidebar {
    display: none; } }

#page-statute-section #document-view, #page-statute-heading #document-view {
  min-height: 400px; }

#document-view #spinner {
  position: fixed;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    #document-view #spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
#document-view #palette {
  width: 92px;
  margin-top: 9px;
  margin-right: 9.5px;
  float: right;
  font-size: 12px; }
#document-view #dropdown-container {
  height: 0;
  top: 48px;
  z-index: 2;
  position: -webkit-sticky;
  position: sticky; }
  @media print {
    #document-view #dropdown-container {
      display: none; } }
  #document-view #dropdown-container .dropdown-content {
    position: relative;
    height: 46px;
    top: -46px; }
#document-view #dropdown-header {
  border-bottom: solid 1px #ddd;
  background-color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 870px;
  min-height: 20px;
  padding-top: 12.5px;
  padding-bottom: 12.5px; }
  #document-view #dropdown-header span {
    vertical-align: middle; }
  #document-view #dropdown-header span.pro-icon {
    vertical-align: baseline; }
  #document-view #dropdown-header.hidden {
    display: none; }
#document-view #dropdown-header-content {
  min-height: 20px;
  font-size: 16px;
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700;
  overflow: hidden; }
  @media print {
    #document-view #dropdown-header-content {
      font-family: Georgia, 'Times New Roman', serif; } }
  #document-view #dropdown-header-content.truncated {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
@media not print {
  #document-view #text-frame {
    margin-left: 360px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    #document-view #text-frame.loaded {
      opacity: 1;
      filter: alpha(opacity=100); } }
#document-view .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  #document-view .fade.in {
    opacity: 1; }
#document-view .toggleable-highlight {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .toggleable-highlight.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #FFF3B9; }
#document-view .target {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FFF3B9; }
#document-view .query, #document-view.query > a {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FFC864; }
#document-view .query.active {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FF8C00; }
#document-view .toggleable-highlight, #document-view .target, #document-view .query {
  padding: 2.5px 0 2.5px 0; }
#document-view .note .toggleable-highlight, #document-view .note .target, #document-view .note .query {
  padding: 0.7px 0 0.7px 0; }
#document-view .treated-negative, #document-view .review-treated-negative {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-negative.highlight, #document-view .review-treated-negative.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #ffb2b2; }
  #document-view .treated-negative:before, #document-view .review-treated-negative:before {
    color: red; }
#document-view .treated-warning, #document-view .review-treated-warning {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-warning.highlight, #document-view .review-treated-warning.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #fed698; }
  #document-view .treated-warning:before, #document-view .review-treated-warning:before {
    color: darkorange; }
#document-view .treated-caution, #document-view .treated-contrast, #document-view .review-treated-caution,
#document-view .review-treated-contrast {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-caution.highlight, #document-view .treated-contrast.highlight, #document-view .review-treated-caution.highlight,
  #document-view .review-treated-contrast.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #ffffb2; }
  #document-view .treated-caution:before, #document-view .treated-contrast:before, #document-view .review-treated-caution:before,
  #document-view .review-treated-contrast:before {
    color: goldenrod; }
#document-view .treated-positive, #document-view .review-treated-positive {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-positive.highlight, #document-view .review-treated-positive.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #b2d9b2; }
  #document-view .treated-positive:before, #document-view .review-treated-positive:before {
    color: green; }
#document-view .treated-cited, #document-view .treated-discussed, #document-view .review-treated-cited,
#document-view .review-treated-discussed {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-cited.highlight, #document-view .treated-discussed.highlight, #document-view .review-treated-cited.highlight,
  #document-view .review-treated-discussed.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #aec7ee; }
  #document-view .treated-cited:before, #document-view .treated-discussed:before, #document-view .review-treated-cited:before,
  #document-view .review-treated-discussed:before {
    color: blue; }
#document-view .treated-unknown, #document-view .review-treated-unknown {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-unknown.highlight, #document-view .review-treated-unknown.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #d9b2d9; }
  #document-view .treated-unknown:before, #document-view .review-treated-unknown:before {
    color: purple; }
#document-view .reference {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .reference.highlight {
    padding-left: 3px;
    padding-right: 3px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }
  #document-view .reference.certain-automated-treatment, #document-view .reference.unreviewed-treatment, #document-view .reference.reviewed-treatment {
    padding: 0 0 0 3px; }
  #document-view .reference.certain-automated-treatment:before {
    content: "▲";
    font-style: normal; }
  #document-view .reference.reviewed-treatment {
    padding: 0 0 0 3px; }
    #document-view .reference.reviewed-treatment:before {
      content: "✓";
      font-style: normal; }
  #document-view .reference.unreviewed-treatment {
    padding: 0 0 0 3px; }
    #document-view .reference.unreviewed-treatment:before {
      content: "●";
      font-style: normal; }
  #document-view .reference .edit-icons {
    padding: 0 3px 0 3px;
    font-style: normal; }
    #document-view .reference .edit-icons span {
      cursor: pointer; }
    #document-view .reference .edit-icons .flag.checked {
      color: red; }
  #document-view .reference .review-treatment-form .edit-button {
    float: right; }
#document-view .pill.basic {
  font-size: 14px;
  padding: 2px 8px; }
  #document-view .pill.basic .pro-icon {
    margin: 0 1px -1px 0; }

#header-container .treatment {
  float: left;
  margin-right: 30px;
  margin-top: 0.5px;
  font-weight: normal; }

#case-html {
  background-color: white; }
  #case-html .noteanchor + .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 10px 15px;
    max-width: 322px;
    background-color: white;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    #case-html .noteanchor + .popover.top {
      margin-top: -10px; }
    #case-html .noteanchor + .popover.right {
      margin-left: 10px; }
    #case-html .noteanchor + .popover.bottom {
      margin-top: 10px; }
    #case-html .noteanchor + .popover.left {
      margin-left: -10px; }
  #case-html .popover .arrow,
  #case-html .popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #case-html .popover > .arrow, #case-html .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #case-html .popover > .arrow {
    border-width: 10px; }
  #case-html .popover > .arrow:after {
    border-width: 10px;
    content: ""; }
  #case-html .popover.top > .arrow {
    left: 50%;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -10px; }
    #case-html .popover.top > .arrow:after {
      content: " ";
      bottom: 1px;
      margin-left: -10px;
      border-bottom-width: 0;
      border-top-color: #fff; }
  #case-html .popover.right > .arrow {
    top: 50%;
    left: -10px;
    margin-top: -10px;
    border-left-width: 0;
    border-right-color: rgba(0, 0, 0, 0.25); }
    #case-html .popover.right > .arrow:after {
      content: " ";
      left: 1px;
      bottom: -10px;
      border-left-width: 0;
      border-right-color: #fff; }
  #case-html .popover.bottom > .arrow {
    left: 50%;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -10px; }
    #case-html .popover.bottom > .arrow:after {
      content: " ";
      top: 1px;
      margin-left: -10px;
      border-top-width: 0;
      border-bottom-color: #fff; }
  #case-html .popover.left > .arrow {
    top: 50%;
    right: -10px;
    margin-top: -10px;
    border-right-width: 0;
    border-left-color: rgba(0, 0, 0, 0.25); }
    #case-html .popover.left > .arrow:after {
      content: " ";
      right: 1px;
      border-right-width: 0;
      border-left-color: #fff;
      bottom: -10px; }
  #case-html .popover {
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    text-align: left; }
    #case-html .popover small {
      word-wrap: break-word;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      -o-hyphens: auto;
      hyphens: auto;
      text-align: justify; }
  #case-html .popover-content {
    /* To override any inherited style from the popover's parent. */
    font-style: normal;
    font-weight: normal;
    color: black; }
  #case-html .treatment .popover {
    max-width: 330px; }

@page {
  margin-left: 0.25in;
  margin-right: 0.25in; }
@media not print {
  /* From
     https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
  */
  /* NOTE: This file and print_styles.scss contain rules specific to display on
   * the website or when printing, respectively. Generally speaking, any rule in
   * this file should have a related rule in print_styles.scss, and vice
   * versa. Rules that should be applied to both media types should be in
   * common.scss.
   */
  #document-view a[data-refglobal] {
    text-decoration: underline; }
  #document-view blockquote {
    font-size: 12px;
    line-height: 17px; }
  #document-view h1 {
    font-size: 28px; }
  #document-view h2 {
    font-size: 21px; }
  #document-view h3 {
    font-size: 18px; }
  #document-view h4 {
    font-size: 17px; }
  #document-view h5 {
    font-size: 15px; }
  #document-view h6 {
    font-size: 14px; }
  #document-view hr {
    width: 500px; }
  #document-view .case-header, #document-view .case-body, #document-view .statute-body, #document-view #header-container {
    padding-left: 145px;
    padding-right: 145px;
    /* Reduce margins once .margin disappears */ }
  #document-view .case-header {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Header w/o citeable */ }
    #document-view .case-header > p {
      /* Default is margin-bottom: 10px.  Move that to the top so we
          can selectively remove it between parallel cites & dates with
          CSS */
      margin: 10px auto 0; }
    #document-view .case-header .parties {
      line-height: 30px;
      margin-bottom: 20px;
      font-size: 21px; }
      #document-view .case-header .parties .party {
        margin-top: 10px; }
        #document-view .case-header .parties .party.in-re {
          margin-bottom: 12px;
          margin-top: 40px; }
          #document-view .case-header .parties .party.in-re:first-child {
            margin-top: 10px; }
      #document-view .case-header .parties .roles {
        font-size: 13px; }
    #document-view .case-header .treatment {
      /* Make it so there's $padding + $extra-margin visible above and
          below the pill. */
      margin-top: 10px;
      margin-bottom: 15.5px; }
    #document-view .case-header .cite + .cite, #document-view .case-header .date + .date {
      margin-top: 4px; }
    #document-view .case-header .publication {
      font-size: 11px; }
  #document-view .case-body, #document-view .statute-body {
    padding-top: 24px;
    padding-bottom: 40px;
    text-align: justify;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    -webkit-hyphenate-limit-lines: 3;
    -moz-hyphenate-limit-lines: 3;
    -ms-hyphenate-limit-lines: 3;
    -o-hyphenate-limit-lines: 3;
    hyphenate-limit-lines: 3; }
    #document-view .case-body h1, #document-view .statute-body h1, #document-view .case-body h2, #document-view .statute-body h2, #document-view .case-body h3, #document-view .statute-body h3, #document-view .case-body h4, #document-view .statute-body h4, #document-view .case-body h5, #document-view .statute-body h5, #document-view .case-body h6, #document-view .statute-body h6 {
      word-wrap: break-word;
      -webkit-hyphens: none;
      -moz-hyphens: none;
      -ms-hyphens: none;
      -o-hyphens: none;
      hyphens: none; }
    #document-view .case-body p, #document-view .statute-body p {
      margin: 0 0 10px; }
    #document-view .case-body pre, #document-view .statute-body pre {
      max-width: 580px; }
    #document-view .case-body .counsel, #document-view .statute-body .counsel {
      overflow: auto; }
      #document-view .case-body .counsel .window, #document-view .statute-body .counsel .window {
        position: relative;
        max-height: 90px;
        overflow-y: hidden; }
        #document-view .case-body .counsel .window:after, #document-view .statute-body .counsel .window:after {
          content: " ";
          display: block;
          position: absolute;
          height: 50px;
          bottom: 0px;
          width: 100%;
          background: linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%); }
        #document-view .case-body .counsel .window.expanded:after, #document-view .statute-body .counsel .window.expanded:after {
          visibility: hidden; }
      #document-view .case-body .counsel .toggle, #document-view .statute-body .counsel .toggle {
        font-size: 13px;
        color: rgba(0, 0, 0, 0.302);
        line-height: 1.385;
        text-decoration: none; }
    #document-view .case-body .note > *, #document-view .statute-body .note > * {
      font-size: 12px;
      line-height: 16px; }
    #document-view .case-body .opinion + .opinion, #document-view .statute-body .opinion + .opinion, #document-view .case-body p + .opinion, #document-view .statute-body p + .opinion {
      margin-top: 100px; }
    #document-view .case-body .popover, #document-view .statute-body .popover {
      display: none; }
  #document-view .metadata {
    margin-bottom: 16px; }
    #document-view .metadata > p {
      margin-bottom: 0; }
  #document-view .noteanchor > a, #document-view .notemarker > a {
    color: #ba4c2b; }
  #document-view .pagenumber {
    font-size: 11px; }
    #document-view .pagenumber:before {
      left: 40px; }
  #document-view #text-frame {
    font-size: 14px; } }
@media print {
  /* NOTE: This file and site_styles.scss contain rules specific to display when
   * printing or on the website, respectively. Generally speaking, any rule in
   * this file should have a related rule in site_styles.scss, and vice
   * versa. Rules that should be applied to both media types should be in
   * common.scss.
   */
  #page {
    width: auto !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0; }

  #document-view a[data-refglobal] {
    text-decoration: none; }
  #document-view blockquote {
    font-size: 9pt;
    line-height: 1; }
  #document-view h1 {
    font-size: 20pt; }
  #document-view h2 {
    font-size: 17pt; }
  #document-view h3 {
    font-size: 14pt; }
  #document-view h4 {
    font-size: 12pt; }
  #document-view h5 {
    font-size: 11.5pt; }
  #document-view h6 {
    font-size: 11pt; }
  #document-view h2, #document-view h3, #document-view h4, #document-view h5, #document-view h6 {
    margin: 12pt 0; }
  #document-view hr {
    width: 5.25in; }
  #document-view .case-header, #document-view .case-body, #document-view .statute-body, #document-view #header-container {
    padding-left: 1in;
    padding-right: 1in; }
  #document-view .case-header {
    font-size: 9pt;
    padding: 0.2in 0;
    /* Header w/o citeable */ }
    #document-view .case-header > p {
      /* Default is margin-bottom: 10px.  Move that to the top so
          we can selectively remove it between parallel cites &
          dates with CSS */
      margin: 0.10in auto 0; }
    #document-view .case-header .parties {
      font-size: 16pt;
      line-height: 16pt;
      margin-bottom: 16pt; }
      #document-view .case-header .parties .party {
        margin-top: 7pt; }
        #document-view .case-header .parties .party.in-re {
          margin-bottom: 0.25in;
          margin-top: 0.75; }
          #document-view .case-header .parties .party.in-re:first-child {
            margin-top: 0.2in; }
      #document-view .case-header .parties .roles {
        font-size: 10pt; }
    #document-view .case-header .treatment {
      /* Make it so there's $padding + $extra-margin visible above
      and below the pill. */
      margin-top: 7pt;
      margin-bottom: 0.0972222222in; }
    #document-view .case-header .cite + .cite, #document-view .case-header .date + .date {
      margin-top: 3pt; }
    #document-view .case-header .publication {
      font-size: 9pt; }
  #document-view .case-body, #document-view .statute-body {
    text-align: left;
    padding-bottom: 0.75in; }
    #document-view .case-body p, #document-view .statute-body p {
      margin: 0 0 0.1in; }
    #document-view .case-body pre, #document-view .statute-body pre {
      max-width: 5.5in; }
    #document-view .case-body .counsel div.window, #document-view .statute-body .counsel div.window {
      max-height: none; }
      #document-view .case-body .counsel div.window:after, #document-view .statute-body .counsel div.window:after {
        display: none; }
    #document-view .case-body .counsel a.toggle, #document-view .statute-body .counsel a.toggle {
      display: none; }
    #document-view .case-body .note > *, #document-view .statute-body .note > * {
      font-size: 8pt;
      line-height: 11pt; }
    #document-view .case-body .opinion + .opinion, #document-view .statute-body .opinion + .opinion, #document-view .case-body p + .opinion, #document-view .statute-body p + .opinion {
      margin-top: 1.8in; }
    #document-view .case-body .popover, #document-view .statute-body .popover {
      display: none; }
  #document-view .metadata {
    margin-bottom: 0.3in; }
    #document-view .metadata > p {
      margin-bottom: 0; }
  #document-view .noteanchor > a, #document-view .notemarker > a {
    color: black; }
  #document-view .pagenumber {
    color: black;
    font-size: 9pt; }
    #document-view .pagenumber:after, #document-view .pagenumber:before {
      color: black; }
    #document-view .pagenumber:before {
      left: 0; }
  #document-view #text-frame {
    font-size: 10pt;
    margin: 0 0.25in; } }
.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

#case-description {
  background-color: #fff;
  border-top: solid 1px #ddd;
  margin: 0px;
  padding: 20px 100px 20px 190px; }

#page-case-citator .page-indicator {
  margin-top: 0; }
  #page-case-citator .page-indicator > div {
    height: 84px;
    line-height: 84px; }
    #page-case-citator .page-indicator > div .treatment {
      display: table;
      line-height: normal;
      margin-left: auto;
      margin-right: auto; }
      #page-case-citator .page-indicator > div .treatment .pill {
        font-size: 15px;
        max-width: 100px;
        padding: 5px 15px;
        text-align: center; }
        #page-case-citator .page-indicator > div .treatment .pill.basic {
          padding: 5px 10px; }
      #page-case-citator .page-indicator > div .treatment .popover {
        font-weight: normal;
        z-index: 5; }

#case-description span.citation {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: italic;
  font-weight: 500;
  font-size: 13px; }
  @media print {
    #case-description span.citation {
      font-family: Georgia, 'Times New Roman', serif; } }
#case-description h2 {
  margin: 0px;
  padding: 0px;
  font-size: 20px; }
#case-description a {
  text-decoration: none;
  color: black; }
#case-description #history {
  border-top: solid 1px #e4e4e2;
  margin-top: 16px;
  padding-top: 16px;
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700;
  color: #999; }
  @media print {
    #case-description #history {
      font-family: Georgia, 'Times New Roman', serif; } }
  #case-description #history > ol {
    list-style: none;
    padding-left: 0;
    max-height: 40px;
    margin: 10px 0px 0px 0px;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out; }
  @media not print {
    #case-description #history a {
      color: #0967cb;
      text-decoration: none; }
    #case-description #history a:hover {
      text-decoration: underline; } }
  @media print {
    #case-description #history a {
      color: #000;
      text-decoration: none; } }
  #case-description #history .more > a {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    font-size: 12px; }
    @media print {
      #case-description #history .more > a {
        font-family: Georgia, 'Times New Roman', serif; } }

.treatment-summary {
  border-bottom: solid 1px #e4e4e2;
  padding: 16px 30px 16px 0px; }
  @media not print {
    .treatment-summary a {
      color: #0967cb;
      text-decoration: none; }
    .treatment-summary a:hover {
      text-decoration: underline; } }
  @media print {
    .treatment-summary a {
      color: #000;
      text-decoration: none; } }
  .treatment-summary p {
    margin: 10px 0px 10px 0px; }
  .treatment-summary .summary-label {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 16px; }
    @media print {
      .treatment-summary .summary-label {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: italic;
  font-weight: 500; }
  @media print {
    .citation {
      font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }

#search-results-controls {
  background-color: #e5f3f4;
  width: 800px;
  margin: 0px;
  margin-left: 18px;
  float: left;
  padding: 18px;
  background-color: #d8eaec; }
  #search-results-controls span {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      #search-results-controls span {
        font-family: Georgia, 'Times New Roman', serif; } }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

.code-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto; }
  .code-container .level-1 {
    padding-left: 15px; }
  .code-container .level-2 {
    padding-left: 30px; }
  .code-container .level-3 {
    padding-left: 45px; }
  .code-container .level-4 {
    padding-left: 60px; }
  .code-container .level-5 {
    padding-left: 75px; }
  .code-container .level-6 {
    padding-left: 90px; }
  .code-container .level-7 {
    padding-left: 105px; }
  .code-container .level-8 {
    padding-left: 120px; }
  .code-container .level-9 {
    padding-left: 135px; }
  .code-container .level-10 {
    padding-left: 150px; }
  .code-container .statute-header-code {
    text-align: center; }
  .code-container .level-0, .code-container .level-1 {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .code-container .level-0, .code-container .level-1 {
        font-family: Georgia, 'Times New Roman', serif; } }
  .code-container tr.highlight {
    background-color: #FFF3B9; }
  .code-container td {
    padding-top: 3px;
    padding-bottom: 3px; }
    @media not print {
      .code-container td a {
        color: #0967cb;
        text-decoration: none; }
      .code-container td a:hover {
        text-decoration: underline; } }
    @media print {
      .code-container td a {
        color: #000;
        text-decoration: none; } }
  .code-container .sections {
    white-space: nowrap;
    padding-left: 25px; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.docs-premium-features h2 {
  margin: 0px 0px 30px 0px;
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf; }
.docs-premium-features h3 {
  margin: 0px 0px 16px 0px; }
.docs-premium-features img {
  border: 1px solid #ccc; }
.docs-premium-features p {
  line-height: 24px; }
.docs-premium-features ul {
  width: 260px; }
.docs-premium-features .product-section {
  font-size: 16px;
  margin: 40px 0; }
.docs-premium-features .feature-description {
  float: left; }
.docs-premium-features .more {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700;
  color: #ba4c2b;
  cursor: pointer;
  font-size: 20px;
  margin: 35px 0; }
  @media print {
    .docs-premium-features .more {
      font-family: Georgia, 'Times New Roman', serif; } }
.docs-premium-features .overflow-features {
  display: none;
  width: 940px; }
  .docs-premium-features .overflow-features h3 {
    font-size: 18px; }
  .docs-premium-features .overflow-features .feature-section {
    display: inline-block;
    margin-bottom: 40px;
    width: 450px; }
    .docs-premium-features .overflow-features .feature-section .feature-description {
      padding-top: 0;
      width: 230px; }
    .docs-premium-features .overflow-features .feature-section > img, .docs-premium-features .overflow-features .feature-section .screenshot-row {
      float: right; }
    .docs-premium-features .overflow-features .feature-section > img {
      width: 198px; }
    .docs-premium-features .overflow-features .feature-section .screenshot-row {
      font-size: 0;
      margin-bottom: 10px;
      width: 200px; }
      .docs-premium-features .overflow-features .feature-section .screenshot-row .small-screenshot {
        width: 93px; }
        .docs-premium-features .overflow-features .feature-section .screenshot-row .small-screenshot:first-child {
          margin-right: 10px; }
  .docs-premium-features .overflow-features .feature-section-pair .feature-section {
    float: right; }
    .docs-premium-features .overflow-features .feature-section-pair .feature-section:first-child {
      float: left; }
.docs-premium-features .top-features img {
  width: 568px; }
  .docs-premium-features .top-features img.small-screenshot {
    width: 273px; }
    .docs-premium-features .top-features img.small-screenshot:first-child {
      margin-right: 10px; }
.docs-premium-features .top-features .feature-description {
  float: left;
  padding-top: 20px;
  padding-right: 40px;
  width: 260px; }
.docs-premium-features .top-features .feature-section {
  border-bottom: 1px solid #dfdfdf;
  padding: 0 35px 35px 35px;
  margin: 35px 0;
  width: 870px; }
.docs-premium-features .top-features .screenshot-row {
  float: right;
  font-size: 0;
  margin-bottom: 10px;
  width: 570px; }

.modal-trial-overview, .docs-premium-features {
  font-size: 14px; }
  .modal-trial-overview .feature-chart-container, .docs-premium-features .feature-chart-container {
    margin: 40px auto;
    width: 550px; }
    .modal-trial-overview .feature-chart-container:before, .modal-trial-overview .feature-chart-container:after, .docs-premium-features .feature-chart-container:before, .docs-premium-features .feature-chart-container:after {
      content: " ";
      display: table; }
    .modal-trial-overview .feature-chart-container:after, .docs-premium-features .feature-chart-container:after {
      clear: both; }
    .modal-trial-overview .feature-chart-container td, .docs-premium-features .feature-chart-container td {
      vertical-align: top;
      padding: 0 20px; }
    .modal-trial-overview .feature-chart-container .chart-left, .docs-premium-features .feature-chart-container .chart-left {
      float: left;
      padding-right: 40px; }
    .modal-trial-overview .feature-chart-container .chart-right, .docs-premium-features .feature-chart-container .chart-right {
      float: right; }
  .modal-trial-overview hr, .docs-premium-features hr {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 20px;
    margin-top: 30px; }
  .modal-trial-overview ul, .docs-premium-features ul {
    list-style-type: none;
    padding-left: 0px;
    margin-top: 0px;
    border-top: solid 1px #ccc;
    padding-top: 11px; }
  .modal-trial-overview li:before, .docs-premium-features li:before {
    padding-right: 10px; }
  .modal-trial-overview .free-feature-list li, .docs-premium-features .free-feature-list li {
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 10px 11px;
    padding-left: 0px; }
  .modal-trial-overview .pro-feature-list li, .docs-premium-features .pro-feature-list li {
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/check_mark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-position: 0px 5px;
    background-repeat: no-repeat;
    background-size: 10px 11px;
    padding-left: 16px; }
  .modal-trial-overview .feature-heading, .docs-premium-features .feature-heading {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 6px;
    margin-top: 2px; }
  .modal-trial-overview .feature-price, .docs-premium-features .feature-price {
    display: inline-block;
    float: right;
    margin-right: 5px;
    margin-top: 2px;
    color: #666;
    font-style: italic; }

#user-history {
  padding-left: 189px;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee; }
  #user-history ul.pagination {
    padding-left: 0px; }
    #user-history ul.pagination li:first-child a {
      padding-left: 0px; }
  #user-history table {
    font-size: 14px;
    margin-right: 100px;
    margin-bottom: 15px; }
  #user-history tr td {
    padding-top: 10px; }
  #user-history .time {
    color: #aaa;
    text-align: right;
    white-space: nowrap; }
  #user-history .type {
    padding-left: 25px;
    padding-right: 45px;
    white-space: nowrap; }
  #user-history .action_REMOVE {
    text-decoration: line-through; }
  #user-history .description a {
    text-decoration: none;
    color: #0967cb; }
    #user-history .description a:hover {
      text-decoration: underline; }
  #user-history .description .line2 {
    color: #aaa;
    font-size: 12px; }
  #user-history .date-link {
    display: inline-block;
    margin-bottom: 13px;
    font-size: 16px; }
  #user-history .date-separator {
    display: inline-block;
    width: 15px;
    text-align: center; }
    #user-history .date-separator.big {
      width: 35px; }
  #user-history a.date-link {
    color: #aaa;
    text-decoration: none; }
    #user-history a.date-link:hover {
      text-decoration: underline; }

#document-view .bill-body h1, #document-view .bill-body h2, #document-view .bill-body h3, #document-view .bill-body h4, #document-view .bill-body h5, #document-view .bill-body h6 {
  padding: 0;
  text-align: left; }

#page-judge-index #header-spacer, #page-trial_judge-index #header-spacer, #page-lawyer-index #header-spacer {
  height: 105px; }

.lookup-container {
  width: 650px;
  margin: 120px auto 0px auto;
  text-align: center;
  padding-bottom: 100px;
  min-height: 210px; }

.lookup-typeahead {
  margin-top: 30px;
  margin-bottom: 30px; }
  .lookup-typeahead .tt-menu {
    text-align: left;
    font-family: Arial; }
    .lookup-typeahead .tt-menu .tt-dataset {
      width: 415px;
      padding-top: 8px;
      padding-bottom: 8px; }
    .lookup-typeahead .tt-menu .tt-selectable {
      cursor: pointer;
      padding: 1px 16px;
      margin-left: 0px; }
  .lookup-typeahead input {
    border: solid 1px #999;
    height: 28px;
    padding-left: 15px;
    font-family: Arial;
    width: 400px; }
    .lookup-typeahead input:focus {
      outline: none; }

pre, blockquote, tr, img {
  page-break-inside: avoid; }

p {
  orphans: 3;
  widows: 3; }

h2, h3 {
  page-break-after: avoid; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

#navbar {
  border-top: solid 1px #bbb;
  height: 56px;
  padding-left: 320px;
  background-color: #fff; }
  #navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: 0; }
    #navbar ul li {
      font-size: 14px;
      display: inline-block;
      position: relative;
      text-align: center; }
      #navbar ul li a {
        color: #848484;
        display: inline-block;
        padding: 20px 16px;
        text-decoration: none; }
      #navbar ul li ul {
        display: none;
        left: -1px;
        position: absolute;
        background-color: white;
        border: solid 1px #bbb;
        border-top: none; }
        #navbar ul li ul li {
          display: block; }
      #navbar ul li:hover > ul {
        display: block; }
    #navbar ul .selected a span {
      border-bottom: solid 4px #0c8fad;
      padding-bottom: 16px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: #0c8fad; }
      @media print {
        #navbar ul .selected a span {
          font-family: Georgia, 'Times New Roman', serif; } }

.page-indicator {
  float: left;
  color: #aaa;
  font-weight: bold;
  margin-top: 24px; }
  .page-indicator > div {
    width: 189px;
    display: table-cell;
    text-align: center;
    vertical-align: middle; }

#brief-upload-modal .modal-content {
  border-radius: 0;
  box-shadow: none; }

.pagination {
  display: inline-block; }
  .pagination > li {
    cursor: default;
    padding: 4px;
    font-size: 14px;
    display: inline; }
    .pagination > li > a {
      text-decoration: none;
      color: #000;
      position: relative; }
    .pagination > li span.active {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      border: solid 1px #e2e2e2;
      padding-top: 7px; }
      @media print {
        .pagination > li span.active {
          font-family: Georgia, 'Times New Roman', serif; } }
    .pagination > li > a, .pagination > li > span {
      float: left;
      padding: 8px; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

.account-notification-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto;
  width: 550px;
  padding: 30px 50px; }
  .account-notification-container h2 {
    margin: 0px 0px 10px 0px; }
  @media not print {
    .account-notification-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-notification-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-notification-container a {
      color: #000;
      text-decoration: none; } }

.account-section {
  padding-top: 20px;
  padding-bottom: 20px; }
  .account-section h2, .account-section h3 {
    margin: 0px 0px 16px 0px; }
  .account-section p {
    line-height: 21px; }

.account-cancel-link {
  font-size: 14px; }

.account-aligned-container, .account-subscription-container, .account-wide-container, .payment-form-container {
  margin: 34px 0px 30px 262px;
  min-height: 550px; }
  @media not print {
    .account-aligned-container a, .account-subscription-container a, .account-wide-container a, .payment-form-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-aligned-container a:hover, .account-subscription-container a:hover, .account-wide-container a:hover, .payment-form-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-aligned-container a, .account-subscription-container a, .account-wide-container a, .payment-form-container a {
      color: #000;
      text-decoration: none; } }

.account-aligned-container {
  width: 400px; }

.account-subscription-container {
  width: 586px; }

.account-wide-container {
  margin-left: 190px;
  padding: 0 50px; }

.account-field {
  margin: 15px 0px; }
  .account-field:before, .account-field:after {
    content: " ";
    display: table; }
  .account-field:after {
    clear: both; }

.account-field-label {
  color: #555;
  width: 230px;
  margin-bottom: 3px; }

.account-submit-group {
  margin-top: 20px; }

.account-field-value, .payment-expiry-value, .payment-cvc-value, .payment-zip-value {
  padding: 0px; }
  .account-field-value input[type='text'], .payment-expiry-value input[type='text'], .payment-cvc-value input[type='text'], .payment-zip-value input[type='text'], .account-field-value input[type='password'], .payment-expiry-value input[type='password'], .payment-cvc-value input[type='password'], .payment-zip-value input[type='password'], .account-field-value input[type='email'], .payment-expiry-value input[type='email'], .payment-cvc-value input[type='email'], .payment-zip-value input[type='email'] {
    color: #000;
    border: none;
    background: transparent;
    background-color: #f7fcfc;
    border: solid 1px #dff3f7;
    height: 33px;
    line-height: 35px;
    width: 100%;
    box-shadow: 0px 0px 4px rgba(73, 203, 227, 0.01);
    transition: box-shadow 0.1s ease-in-out; }
    .account-field-value input[type='text']:focus, .payment-expiry-value input[type='text']:focus, .payment-cvc-value input[type='text']:focus, .payment-zip-value input[type='text']:focus, .account-field-value input[type='password']:focus, .payment-expiry-value input[type='password']:focus, .payment-cvc-value input[type='password']:focus, .payment-zip-value input[type='password']:focus, .account-field-value input[type='email']:focus, .payment-expiry-value input[type='email']:focus, .payment-cvc-value input[type='email']:focus, .payment-zip-value input[type='email']:focus {
      outline: none; }
    .account-field-value input[type='text']:focus, .payment-expiry-value input[type='text']:focus, .payment-cvc-value input[type='text']:focus, .payment-zip-value input[type='text']:focus, .account-field-value input[type='password']:focus, .payment-expiry-value input[type='password']:focus, .payment-cvc-value input[type='password']:focus, .payment-zip-value input[type='password']:focus, .account-field-value input[type='email']:focus, .payment-expiry-value input[type='email']:focus, .payment-cvc-value input[type='email']:focus, .payment-zip-value input[type='email']:focus {
      box-shadow: 0px 0px 4px #49cbe3;
      transition: box-shadow 0.1s ease-in-out; }

.account-field-value-group {
  padding-left: 20px; }
  .account-field-value-group label {
    padding-top: 10px;
    display: block; }

.account-error-text {
  background-color: #f7dfdf;
  padding: 12px;
  font-size: 13px; }

.account-success {
  background-color: #d5f7d9;
  padding: 20px 20px 20px 30px; }

.account-error {
  background-color: #f7dfdf;
  padding: 20px 20px 20px 30px; }

.account-bevel-box.account-success {
  border-top: solid 1px #c7e7cb;
  border-left: solid 1px #c7e7cb;
  border-right: solid 1px #a1bba4;
  border-bottom: solid 1px #a1bba4; }

.account-form-container .account-success {
  margin: 10px -30px; }

.account-form-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto;
  width: 320px; }
  .account-form-container h2 {
    margin: 0px 0px 10px 0px; }
  @media not print {
    .account-form-container a {
      color: #0967cb;
      text-decoration: none; }
    .account-form-container a:hover {
      text-decoration: underline; } }
  @media print {
    .account-form-container a {
      color: #000;
      text-decoration: none; } }
  .account-form-container .account-tos-assent-checkbox {
    float: left;
    margin-top: 3px; }
  .account-form-container .account-tos-assent-copy {
    float: left;
    margin-left: 10px;
    width: 290px; }
  .account-form-container .account-tos-field {
    margin-top: 25px;
    margin-bottom: 25px; }

#account-nav {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  position: absolute;
  bottom: 43px;
  top: 48px;
  width: 188px; }
  #account-nav a {
    text-decoration: none;
    color: #000; }
  #account-nav .pane {
    border-left: solid 4px transparent; }
    #account-nav .pane span {
      font-size: 14px; }
    #account-nav .pane:hover {
      background-color: #efeee9; }
  #account-nav .pane.active {
    border-left-color: #0e92ad; }

.internal-stripe-information-table {
  margin-bottom: 15px; }
  .internal-stripe-information-table caption {
    text-align: left;
    font-weight: bold;
    padding-bottom: 5px; }
  .internal-stripe-information-table td {
    padding: 5px;
    border: solid 1px #aaa; }

.account-bevel-box {
  border-top: solid 1px #dfdfdf;
  border-left: solid 1px #dfdfdf;
  border-right: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
  margin-left: -30px;
  margin-top: 25px;
  padding-left: 30px;
  padding-right: 30px; }

.learn-more-link {
  float: right;
  font-size: 14px; }

.choice-table {
  display: table;
  width: 100%; }
  .choice-table > * {
    display: table-row; }
    .choice-table > * > * {
      display: table-cell;
      padding-bottom: 15px; }
      .choice-table > * > *:first-child {
        width: 280px; }

.account-subscription-choice input[type="radio"] {
  margin-right: 10px; }

.account-subscription-billing-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 15px; }

.account-subscription-table {
  margin-bottom: 10px; }
  .account-subscription-table td {
    padding: 2px 0px; }
    .account-subscription-table td.left-col {
      padding-right: 10px; }

.account-subscription-cancel-link {
  display: block;
  float: right;
  margin-top: 8px;
  font-size: 14px; }

.secure-field .popover-content {
  line-height: normal;
  font-size: 12px;
  width: 150px; }

.secure-field input {
  background-image: none !important; }

.payment-column-field, .expiry-field, .payment-column-zip {
  float: left;
  width: 140px;
  margin-top: 0px;
  margin-bottom: 15px; }

.expiry-field {
  float: left;
  margin-right: 34px; }

.payment-expiry-value {
  float: left;
  margin-right: 10px;
  width: 56px; }

.payment-cvc-value {
  float: left;
  width: 144px; }

.payment-column-zip {
  clear: left; }

.payment-zip-value {
  float: left;
  width: 124px; }

.payment-form-container {
  display: inline-block;
  margin-top: 0; }
  .payment-form-container .clearfix, .payment-form-container .modal-trial-overview .feature-section, .modal-trial-overview .payment-form-container .feature-section {
    margin-bottom: 5px; }
  .payment-form-container .account-field-label {
    font-family: Arial;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px; }
  .payment-form-container ul {
    line-height: 21px;
    padding-left: 0px;
    list-style-type: none; }
    .payment-form-container ul li:before {
      content: "\2713";
      color: #00ad00;
      padding-right: 10px; }

.lock-field {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock.png);
  background-repeat: no-repeat;
  background-position: top 8px right 10px;
  background-size: 18px; }

.cc-info-icon {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/info_icon.png);
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-left: 2px; }

.payment-form-container .popover {
  font-size: 13px; }

.cc-logo {
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 24px;
  display: inline-block; }

.cc-logo-visa {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/visa.png); }

.cc-logo-mastercard {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/mastercard.png); }

.cc-logo-amex {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/amex.png); }

.cc-logo-dinersclub {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/dinersclub.png); }

.cc-logo-discover {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/discover.png); }

.cc-logo-unionpay {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/unionpay.png); }

.cc-logo-jcb {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/jcb.png); }

.cc-logo-maestro {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/maestro.png); }

.cc-logo-forbrugsforeningen {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/forbrugsforeningen.png); }

.cc-logo-dankort {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/cc/dankort.png); }

.cc-logo {
  vertical-align: top; }

.account-field-value .cc-logo, .payment-expiry-value .cc-logo, .payment-cvc-value .cc-logo, .payment-zip-value .cc-logo {
  margin-top: 6px;
  margin-left: -53px;
  margin-right: 5px; }

.account-payment-summary {
  line-height: 23px; }
  .account-payment-summary .cc-logo {
    margin-right: 5px;
    margin-top: 2px;
    background-size: 30px;
    width: 30px;
    height: 18px; }

.account-payment-note {
  font-size: 13px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Arial; }

.cc-update-link {
  margin-top: 10px; }

.account-field-value input.cc-number, .payment-expiry-value input.cc-number, .payment-cvc-value input.cc-number, .payment-zip-value input.cc-number {
  width: 320px; }

.cc-stars {
  font-size: 13px; }

.ssl-badge {
  margin-top: 22px;
  height: 50px; }
  .ssl-badge .digicert-badge {
    width: 63px;
    height: 37px;
    float: left;
    margin-left: 39px; }
    .ssl-badge .digicert-badge img {
      width: 63px;
      height: 37px; }
  .ssl-badge .payment-secure-note {
    float: left;
    font-size: 14px;
    color: #555;
    padding-top: 2px; }
    .ssl-badge .payment-secure-note span {
      display: inline-block;
      margin-top: 9px; }
    .ssl-badge .payment-secure-note .lock {
      background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock.png);
      background-repeat: no-repeat;
      background-position: top 6px left 0px;
      background-size: 18px;
      opacity: 0.5;
      width: 16px;
      height: 30px;
      float: left;
      margin-right: 10px; }

.refer-a-friend-form {
  font-size: 14px; }

.debug-result {
  font-size: 14px;
  border-top: 1px solid #ddd;
  padding-top: 13px; }
  .debug-result table {
    max-width: 100%; }
  .debug-result th {
    text-align: left; }
  .debug-result .table {
    width: 100%;
    margin-bottom: 13px; }
    .debug-result .table > thead > tr > th,
    .debug-result .table > thead > tr > td,
    .debug-result .table > tbody > tr > th,
    .debug-result .table > tbody > tr > td,
    .debug-result .table > tfoot > tr > th,
    .debug-result .table > tfoot > tr > td {
      padding: 8px;
      line-height: 1.5;
      vertical-align: top;
      border-top: 1px solid #ddd; }
    .debug-result .table > thead > tr > th {
      vertical-align: bottom;
      border-bottom: 2px solid #ddd; }
    .debug-result .table > caption + thead > tr:first-child > th,
    .debug-result .table > caption + thead > tr:first-child > td,
    .debug-result .table > colgroup + thead > tr:first-child > th,
    .debug-result .table > colgroup + thead > tr:first-child > td,
    .debug-result .table > thead:first-child > tr:first-child > th,
    .debug-result .table > thead:first-child > tr:first-child > td {
      border-top: 0; }
    .debug-result .table > tbody + tbody {
      border-top: 2px solid #ddd; }

[id^=page-search-] #header-spacer {
  height: 105px; }

#page-statute-citator #header-spacer {
  height: 112px; }

#page-case-citator #header-spacer {
  min-height: 131px; }

#results-statutes, #results-cases {
  width: 786px;
  border: solid 1px #ddd;
  background-color: #fff;
  margin: 25px auto;
  position: relative;
  min-height: 145px;
  padding: 5px 34px 20px 34px; }
  #results-statutes .overlay, #results-cases .overlay {
    min-height: 0px; }
  #results-statutes h3, #results-cases h3 {
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 14px;
    font-size: 18px; }
  #results-statutes .results-rest, #results-cases .results-rest {
    font-size: 15px;
    border-top: solid 1px #e4e4e2;
    padding-top: 15px; }
    @media not print {
      #results-statutes .results-rest a, #results-cases .results-rest a {
        color: #0967cb;
        text-decoration: none; }
      #results-statutes .results-rest a:hover, #results-cases .results-rest a:hover {
        text-decoration: underline; } }
    @media print {
      #results-statutes .results-rest a, #results-cases .results-rest a {
        color: #000;
        text-decoration: none; } }

@-webkit-keyframes right {
  0% {
    -webkit-transform: translate(-10px); }
  50% {
    -webkit-transform: translate(10px); }
  100% {
    -webkit-transform: translate(-10px); } }
@-webkit-keyframes left {
  0% {
    -webkit-transform: translate(10px); }
  50% {
    -webkit-transform: translate(-10px); }
  100% {
    -webkit-transform: translate(10px); } }
@-moz-keyframes right {
  0% {
    -moz-transform: translate(-10px); }
  50% {
    -moz-transform: translate(10px); }
  100% {
    -moz-transform: translate(-10px); } }
@-moz-keyframes left {
  0% {
    -moz-transform: translate(10px); }
  50% {
    -moz-transform: translate(-10px); }
  100% {
    -moz-transform: translate(10px); } }
@keyframes right {
  0% {
    transform: translate(-10px); }
  50% {
    transform: translate(10px); }
  100% {
    transform: translate(-10px); } }
@keyframes left {
  0% {
    transform: translate(10px); }
  50% {
    transform: translate(-10px); }
  100% {
    transform: translate(10px); } }
#unified-search-error {
  width: 786px;
  border: solid 1px #ddd;
  background-color: #fff;
  margin: 25px auto;
  padding: 8px 34px 8px 34px; }

#unified-search-description {
  width: 786px;
  margin: 16px auto;
  padding: 8px 34px 0px 34px;
  border: none; }

.search-center-text {
  text-align: center; }

#page-search-everything_initial #header {
  position: relative; }
#page-search-everything_initial #header-spacer {
  display: none; }

#search-large #what-can-i-search-for {
  margin-top: 65px;
  font-size: 14px; }
#search-large #logo-search {
  margin: 130px 0px 70px 0px;
  width: 373px; }
#search-large #search-input-container {
  margin: auto;
  width: 645px;
  background-color: #fff;
  height: 36px;
  border: solid 1px #aaa; }
  #search-large #search-input-container img {
    margin: 5px 0px 0px 16px;
    float: left; }
  #search-large #search-input-container input {
    border: none;
    height: 34px;
    padding-left: 15px;
    background: transparent;
    width: 630px; }
    #search-large #search-input-container input:focus {
      outline: none; }
  #search-large #search-input-container input[type="submit"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px; }
  #search-large #search-input-container .tt-menu {
    width: 645px;
    padding-left: 0px; }
    #search-large #search-input-container .tt-menu .tt-suggestion, #search-large #search-input-container .tt-menu .tt-dataset-header {
      padding-left: 15px; }
    #search-large #search-input-container .tt-menu .tt-separator {
      margin-left: 15px;
      margin-right: 15px; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

.find-toggle {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 9px;
  background-image: none;
  padding: 6px 12px;
  font-size: 14px;
  width: 141px; }
  .find-toggle input[type=checkbox] {
    cursor: pointer;
    float: left;
    margin-top: 2px;
    margin-right: 5px; }

.find-btn {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 9px;
  background-image: none;
  padding: 6px 12px;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px; }
  .find-btn.up {
    margin-right: 0; }
    .find-btn.up div {
      width: 16px;
      height: 16px;
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_up.png"); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .find-btn.up div {
          background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_up.2x.png");
          background-size: 16px 16px; } }
  .find-btn.down {
    border-left: none; }
    .find-btn.down div {
      width: 16px;
      height: 16px;
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_down.png"); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .find-btn.down div {
          background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664//img/chevron_down.2x.png");
          background-size: 16px 16px; } }

#search-field-container {
  position: relative; }
  #search-field-container.find:after {
    content: attr(countString);
    position: absolute;
    right: 10px;
    top: 6px;
    color: #aaa;
    font-size: 14px; }

#page-case-reader #search-field-container, #page-legislation-bill #search-field-container, #page-statute-section #search-field-container,
#page-statute-heading #search-field-container, #page-statute-const_article #search-field-container, #page-demo-overlay #search-field-container {
  width: 480px; }
  #page-case-reader #search-field-container input[type='text'], #page-legislation-bill #search-field-container input[type='text'], #page-statute-section #search-field-container input[type='text'],
  #page-statute-heading #search-field-container input[type='text'], #page-statute-const_article #search-field-container input[type='text'], #page-demo-overlay #search-field-container input[type='text'] {
    width: 470px; }

button {
  -webkit-appearance: button;
  cursor: pointer; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  opacity: .2;
  padding: 0; }
  .modal-header .close:hover {
    opacity: .5; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.clearfix:before, .modal-trial-overview .feature-section:before,
.clearfix:after,
.modal-trial-overview .feature-section:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.clearfix:after, .modal-trial-overview .feature-section:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
/* NOTE: This file contains rules for displaying the content of a
 * case. Depending on the media type, it must be combined with either
 * site_styles.scss or print_styles.scss to fully style a case. The rules in
 * common.scss should be those that are used in both media types.
 */
#document-view {
  background-color: white;
  color: black; }
  #document-view a[data-refglobal] {
    color: black; }
  #document-view blockquote {
    padding-left: 10%;
    padding-right: 10%;
    margin-left: 0;
    margin-right: 0;
    border: none; }
  #document-view hr {
    border: none;
    height: 1px;
    color: #ddd;
    background-color: #ddd;
    width: 7in; }
  #document-view iframe {
    border: 0;
    width: 100%;
    height: 500px; }
  #document-view td {
    padding: 1%; }
  #document-view .align-center {
    text-align: center;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none; }
  #document-view .case-header .parties {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      #document-view .case-header .parties {
        font-family: Georgia, 'Times New Roman', serif; } }
    #document-view .case-header .parties .roles {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 500; }
      @media print {
        #document-view .case-header .parties .roles {
          font-family: Georgia, 'Times New Roman', serif; } }
  #document-view .case-header .noteanchor a {
    color: black; }
  #document-view .case-header .treatment {
    display: inline-block; }
  #document-view .case-body, #document-view .statute-body {
    line-height: 1.5;
    margin: 0;
    padding-top: 0;
    position: relative; }
    #document-view .case-body h1, #document-view .statute-body h1, #document-view .case-body h2, #document-view .statute-body h2, #document-view .case-body h3, #document-view .statute-body h3, #document-view .case-body h4, #document-view .statute-body h4, #document-view .case-body h5, #document-view .statute-body h5, #document-view .case-body h6, #document-view .statute-body h6 {
      word-wrap: break-word;
      -webkit-hyphens: none;
      -moz-hyphens: none;
      -ms-hyphens: none;
      -o-hyphens: none;
      hyphens: none; }
    #document-view .case-body .active-highlight, #document-view .statute-body .active-highlight {
      background-color: #ffc40d; }
    #document-view .case-body .counsel, #document-view .statute-body .counsel {
      line-height: 1.286; }
    #document-view .case-body .opinion > .heading:first-child, #document-view .statute-body .opinion > .heading:first-child, #document-view .case-body #counsel-heading, #document-view .statute-body #counsel-heading {
      margin-top: 0; }
  #document-view .counsel .pagenumber, #document-view .publication .pagenumber {
    display: none; }
  #document-view .heading {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none; }
  #document-view .noteanchor a, #document-view .notemarker a {
    text-decoration: none; }
  #document-view .notemarker {
    padding-left: 1em; }
  #document-view .pagenumber {
    white-space: nowrap;
    font-weight: normal; }
    #document-view .pagenumber:before {
      content: attr(margin);
      position: absolute;
      background-color: white; }
    #document-view .pagenumber:after, #document-view .pagenumber:before {
      color: #919191;
      font-style: normal; }
    #document-view .pagenumber:after {
      content: attr(val); }
  #document-view .underline {
    text-decoration: underline; }
  #document-view #text-frame {
    position: relative;
    margin-left: 360px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    #document-view #text-frame.loaded {
      opacity: 1;
      filter: alpha(opacity=100); }

@page {
  margin-left: 0;
  margin-right: 0; }
.toggle-checkbox-button {
  padding: 5px;
  display: block;
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  z-index: -1;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  text-align: left; }
  .toggle-checkbox-button input {
    cursor: pointer;
    margin-right: 6px;
    margin-top: 1px;
    margin-left: 1px;
    float: left; }

#highlight-toggle.checked {
  background-color: #FFF3B9; }

#treatment-highlight-toggle {
  margin-top: 5px;
  background-color: #dae6f7; }
  #treatment-highlight-toggle.checked {
    background-color: #aec7ee; }

.brief-container #palette .download-cases-button, #upload-button, #color-pro-button, #print-button, #review-button, #refhighlight-button, #treatment-review-button, .num-unreviewed-refs, #copy-tool .copy-button {
  margin-top: 5px;
  padding: 5px 15px 5px 25px;
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-repeat: no-repeat;
  text-align: left;
  height: 15px; }

.palette-link {
  text-decoration: none; }

#color-pro-button {
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png");
  background-position: 6px 6px;
  background-color: #dae6f7; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    #color-pro-button {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#print-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/print_icon.png);
  background-position: 7px 6px;
  background-size: 12px; }

#review-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/edit_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

#refhighlight-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/eye_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

#treatment-review-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/edit_icon.png);
  background-size: 15px;
  background-position: 6px 6px; }

.num-unreviewed-refs {
  padding: 5px 6px; }
  .num-unreviewed-refs .count {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .num-unreviewed-refs .count {
        font-family: Georgia, 'Times New Roman', serif; } }

#save-treatment-button {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 12px;
  margin-top: 15px;
  float: right;
  padding: 5px 10px; }

.reviewable {
  background-color: #FF9999;
  cursor: pointer; }

.matchable {
  background-color: #ffc789;
  cursor: pointer; }

.rg-match {
  background-color: #96a9ff;
  cursor: pointer; }

#page-case-reader .modal *, #page-statute-section .modal * {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
#page-case-reader .modal .modal-dialog, #page-statute-section .modal .modal-dialog {
  margin-top: 110px; }
#page-case-reader .modal .modal-title, #page-statute-section .modal .modal-title {
  display: inline; }
#page-case-reader .modal .format, #page-statute-section .modal .format {
  color: #848484;
  display: inline;
  margin-left: 14px; }
#page-case-reader .modal .modal-content, #page-statute-section .modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
#page-case-reader .modal .select-button, #page-statute-section .modal .select-button {
  background-color: #fafafa;
  border: solid 1px #aaa;
  color: #333;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: inline;
  padding: 6px 12px; }
#page-case-reader .modal .target-text, #page-statute-section .modal .target-text {
  margin-top: 15px;
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  font-family: none; }
#page-case-reader .modal .target-text, #page-case-reader .modal .target-text *, #page-statute-section .modal .target-text, #page-statute-section .modal .target-text * {
  user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text; }

#page-case-reader .citation-example, #page-account-citation .citation-example {
  border-top: 1px solid #e5e5e5;
  padding: 20px 20px 0 20px;
  font-family: none; }
#page-case-reader .citation-example, #page-case-reader .citation-example *, #page-account-citation .citation-example, #page-account-citation .citation-example * {
  user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text; }
#page-case-reader #save-button, #page-account-citation #save-button {
  float: right; }

.dropdown-menu-tool {
  position: relative; }
  .dropdown-menu-tool * {
    cursor: pointer; }
  .dropdown-menu-tool.disabled > *:not(.confirm) {
    opacity: 0.5; }
  .dropdown-menu-tool.disabled * {
    cursor: default; }
  .dropdown-menu-tool .expand {
    position: absolute;
    /* Put this div just inside copy-button.  If it lies on top of
       copy-button it will mask copy-button's borders.  And if we
       add a border all the way around .expand, it will noticeably
       double up when the button is disabled. */
    top: 1px;
    right: 1px;
    height: 25px;
    width: 20px;
    border-left: solid 1px #aaa;
    background-color: #fafafa; }
    .dropdown-menu-tool .expand .chevron {
      background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/chevron_down.png);
      background-size: 10px;
      background-repeat: no-repeat;
      position: absolute;
      height: 10px;
      width: 10px;
      right: 5px;
      top: 50%;
      margin-top: -5px;
      opacity: 0.7; }
  .dropdown-menu-tool .menu {
    position: absolute;
    top: 26px;
    background-color: #fafafa;
    border: solid 1px #aaa;
    right: 0;
    z-index: 1; }
    .dropdown-menu-tool .menu.transparent {
      /* Using display: none or visibility: hidden appears to prevent us
         from hearing click events in the menu in IE 9. */
      opacity: 0;
      z-index: -100;
      cursor: default; }
      .dropdown-menu-tool .menu.transparent * {
        cursor: default; }
    .dropdown-menu-tool .menu .item {
      position: relative; }
      .dropdown-menu-tool .menu .item ~ .item {
        border-top: solid 1px #e4e4e2; }
    .dropdown-menu-tool .menu label {
      display: block;
      padding: 10px 5px 10px 20px; }
      .dropdown-menu-tool .menu label:hover {
        background-color: #efeee9; }
      .dropdown-menu-tool .menu label.active:before {
        content: "\2713";
        position: absolute;
        left: 7px;
        color: #0e92ad; }

#color-state-tool .menu label {
  width: 100px; }

#copy-tool.disabled .copy-hotspot {
  display: none; }
#copy-tool .copy-button {
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/copy_icon.png);
  background-size: 13px;
  background-position: 6px 6px; }
  #copy-tool .copy-button.basic {
    background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      #copy-tool .copy-button.basic {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
        background-size: 13px 13px; } }
  #copy-tool .copy-button .copy-hotspot {
    position: absolute;
    top: 0;
    right: 22px;
    bottom: 0;
    left: 0;
    /* This is necessary for IE.  Otherwise the overlay won't get click
       events when the user clicks on the underlying text.
       From
       https://github.com/sass/sass/issues/363#issuecomment-65670316
       */
    background-color: rgba(0, 0, 0, 0); }
#copy-tool .expand {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
#copy-tool .menu label {
  width: 75px; }
  #copy-tool .menu label.custom-format {
    width: 55px; }
  #copy-tool .menu label.zeroclipboard-is-hover {
    background-color: #efeee9; }
#copy-tool .menu .edit {
  position: absolute;
  right: 0;
  width: 20px;
  top: 0;
  bottom: 0;
  border-left: solid 1px #e4e4e2;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }
  #copy-tool .menu .edit:hover {
    background-color: #efeee9; }
  #copy-tool .menu .edit > div {
    position: absolute;
    font-size: 14px;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    text-align: center;
    width: 100%; }
#copy-tool .confirm {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  right: 98px;
  color: #fff;
  padding: 5px 8px;
  height: 15px;
  top: 50%;
  margin-top: -12.5px;
  border-radius: 3px; }
  #copy-tool .confirm:after {
    content: "";
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: -10px; }

#customize-modal .modal-content {
  cursor: default; }

.document-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
  overflow-y: scroll;
  width: 359px;
  height: 10000px; }
  .document-sidebar .pane:not(#outline-header) {
    font-size: 14px; }
    .document-sidebar .pane:not(#outline-header) .text {
      padding-top: 10px;
      padding-bottom: 10px; }
  .document-sidebar #outline-header {
    font-size: 15px; }
    .document-sidebar #outline-header #outline-label {
      overflow: auto;
      font-weight: 700;
      text-transform: uppercase; }
    .document-sidebar #outline-header .debug-link, .document-sidebar #outline-header .citing-cases {
      float: right;
      padding-left: 5px;
      font-weight: 700; }
      @media not print {
        .document-sidebar #outline-header .debug-link a, .document-sidebar #outline-header .citing-cases a {
          color: #0967cb;
          text-decoration: none; }
        .document-sidebar #outline-header .debug-link a:hover, .document-sidebar #outline-header .citing-cases a:hover {
          text-decoration: underline; } }
      @media print {
        .document-sidebar #outline-header .debug-link a, .document-sidebar #outline-header .citing-cases a {
          color: #000;
          text-decoration: none; } }
    .document-sidebar #outline-header .sections {
      white-space: nowrap; }
    .document-sidebar #outline-header .clearfix, .document-sidebar #outline-header .modal-trial-overview .feature-section, .modal-trial-overview .document-sidebar #outline-header .feature-section {
      padding: 0; }
  .document-sidebar a:hover {
    text-decoration: underline; }

#case-sidebar .level-0, #case-sidebar .level-1 {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700; }
  @media print {
    #case-sidebar .level-0, #case-sidebar .level-1 {
      font-family: Georgia, 'Times New Roman', serif; } }
@media print {
  #case-sidebar {
    display: none; } }

@media not print {
  #breadcrumbs a {
    color: #0967cb;
    text-decoration: none; }
  #breadcrumbs a:hover {
    text-decoration: underline; } }
@media print {
  #breadcrumbs a {
    color: #000;
    text-decoration: none; } }

#section-sidebar #breadcrumbs, #heading-sidebar #breadcrumbs {
  font-size: 16px; }
  #section-sidebar #breadcrumbs a:hover .toc-heading-specifier, #heading-sidebar #breadcrumbs a:hover .toc-heading-specifier {
    text-decoration: underline; }

#heading-sidebar #breadcrumbs a:first-child .pane {
  border-top: solid 1px #e4e4e2; }
#heading-sidebar .table-of-contents .pane:first-child {
  border-top: solid 1px #e4e4e2; }
@media print {
  #heading-sidebar {
    display: none; } }

#page-statute-section #document-view, #page-statute-heading #document-view {
  min-height: 400px; }

#document-view #spinner {
  position: fixed;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    #document-view #spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
#document-view #palette {
  width: 92px;
  margin-top: 9px;
  margin-right: 9.5px;
  float: right;
  font-size: 12px; }
#document-view #dropdown-container {
  height: 0;
  top: 48px;
  z-index: 2;
  position: -webkit-sticky;
  position: sticky; }
  @media print {
    #document-view #dropdown-container {
      display: none; } }
  #document-view #dropdown-container .dropdown-content {
    position: relative;
    height: 46px;
    top: -46px; }
#document-view #dropdown-header {
  border-bottom: solid 1px #ddd;
  background-color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 870px;
  min-height: 20px;
  padding-top: 12.5px;
  padding-bottom: 12.5px; }
  #document-view #dropdown-header span {
    vertical-align: middle; }
  #document-view #dropdown-header span.pro-icon {
    vertical-align: baseline; }
  #document-view #dropdown-header.hidden {
    display: none; }
#document-view #dropdown-header-content {
  min-height: 20px;
  font-size: 16px;
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 700;
  overflow: hidden; }
  @media print {
    #document-view #dropdown-header-content {
      font-family: Georgia, 'Times New Roman', serif; } }
  #document-view #dropdown-header-content.truncated {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
@media not print {
  #document-view #text-frame {
    margin-left: 360px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out; }
    #document-view #text-frame.loaded {
      opacity: 1;
      filter: alpha(opacity=100); } }
#document-view .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  #document-view .fade.in {
    opacity: 1; }
#document-view .toggleable-highlight {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .toggleable-highlight.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #FFF3B9; }
#document-view .target {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FFF3B9; }
#document-view .query, #document-view.query > a {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FFC864; }
#document-view .query.active {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  background-color: #FF8C00; }
#document-view .toggleable-highlight, #document-view .target, #document-view .query {
  padding: 2.5px 0 2.5px 0; }
#document-view .note .toggleable-highlight, #document-view .note .target, #document-view .note .query {
  padding: 0.7px 0 0.7px 0; }
#document-view .treated-negative, #document-view .review-treated-negative {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-negative.highlight, #document-view .review-treated-negative.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #ffb2b2; }
  #document-view .treated-negative:before, #document-view .review-treated-negative:before {
    color: red; }
#document-view .treated-warning, #document-view .review-treated-warning {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-warning.highlight, #document-view .review-treated-warning.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #fed698; }
  #document-view .treated-warning:before, #document-view .review-treated-warning:before {
    color: darkorange; }
#document-view .treated-caution, #document-view .treated-contrast, #document-view .review-treated-caution,
#document-view .review-treated-contrast {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-caution.highlight, #document-view .treated-contrast.highlight, #document-view .review-treated-caution.highlight,
  #document-view .review-treated-contrast.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #ffffb2; }
  #document-view .treated-caution:before, #document-view .treated-contrast:before, #document-view .review-treated-caution:before,
  #document-view .review-treated-contrast:before {
    color: goldenrod; }
#document-view .treated-positive, #document-view .review-treated-positive {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-positive.highlight, #document-view .review-treated-positive.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #b2d9b2; }
  #document-view .treated-positive:before, #document-view .review-treated-positive:before {
    color: green; }
#document-view .treated-cited, #document-view .treated-discussed, #document-view .review-treated-cited,
#document-view .review-treated-discussed {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-cited.highlight, #document-view .treated-discussed.highlight, #document-view .review-treated-cited.highlight,
  #document-view .review-treated-discussed.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #aec7ee; }
  #document-view .treated-cited:before, #document-view .treated-discussed:before, #document-view .review-treated-cited:before,
  #document-view .review-treated-discussed:before {
    color: blue; }
#document-view .treated-unknown, #document-view .review-treated-unknown {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .treated-unknown.highlight, #document-view .review-treated-unknown.highlight {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background-color: #d9b2d9; }
  #document-view .treated-unknown:before, #document-view .review-treated-unknown:before {
    color: purple; }
#document-view .reference {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out; }
  #document-view .reference.highlight {
    padding-left: 3px;
    padding-right: 3px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }
  #document-view .reference.certain-automated-treatment, #document-view .reference.unreviewed-treatment, #document-view .reference.reviewed-treatment {
    padding: 0 0 0 3px; }
  #document-view .reference.certain-automated-treatment:before {
    content: "▲";
    font-style: normal; }
  #document-view .reference.reviewed-treatment {
    padding: 0 0 0 3px; }
    #document-view .reference.reviewed-treatment:before {
      content: "✓";
      font-style: normal; }
  #document-view .reference.unreviewed-treatment {
    padding: 0 0 0 3px; }
    #document-view .reference.unreviewed-treatment:before {
      content: "●";
      font-style: normal; }
  #document-view .reference .edit-icons {
    padding: 0 3px 0 3px;
    font-style: normal; }
    #document-view .reference .edit-icons span {
      cursor: pointer; }
    #document-view .reference .edit-icons .flag.checked {
      color: red; }
  #document-view .reference .review-treatment-form .edit-button {
    float: right; }
#document-view .pill.basic {
  font-size: 14px;
  padding: 2px 8px; }
  #document-view .pill.basic .pro-icon {
    margin: 0 1px -1px 0; }

#header-container .treatment {
  float: left;
  margin-right: 30px;
  margin-top: 0.5px;
  font-weight: normal; }

#case-html {
  background-color: white; }
  #case-html .noteanchor + .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 10px 15px;
    max-width: 322px;
    background-color: white;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    #case-html .noteanchor + .popover.top {
      margin-top: -10px; }
    #case-html .noteanchor + .popover.right {
      margin-left: 10px; }
    #case-html .noteanchor + .popover.bottom {
      margin-top: 10px; }
    #case-html .noteanchor + .popover.left {
      margin-left: -10px; }
  #case-html .popover .arrow,
  #case-html .popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #case-html .popover > .arrow, #case-html .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #case-html .popover > .arrow {
    border-width: 10px; }
  #case-html .popover > .arrow:after {
    border-width: 10px;
    content: ""; }
  #case-html .popover.top > .arrow {
    left: 50%;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -10px; }
    #case-html .popover.top > .arrow:after {
      content: " ";
      bottom: 1px;
      margin-left: -10px;
      border-bottom-width: 0;
      border-top-color: #fff; }
  #case-html .popover.right > .arrow {
    top: 50%;
    left: -10px;
    margin-top: -10px;
    border-left-width: 0;
    border-right-color: rgba(0, 0, 0, 0.25); }
    #case-html .popover.right > .arrow:after {
      content: " ";
      left: 1px;
      bottom: -10px;
      border-left-width: 0;
      border-right-color: #fff; }
  #case-html .popover.bottom > .arrow {
    left: 50%;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -10px; }
    #case-html .popover.bottom > .arrow:after {
      content: " ";
      top: 1px;
      margin-left: -10px;
      border-top-width: 0;
      border-bottom-color: #fff; }
  #case-html .popover.left > .arrow {
    top: 50%;
    right: -10px;
    margin-top: -10px;
    border-right-width: 0;
    border-left-color: rgba(0, 0, 0, 0.25); }
    #case-html .popover.left > .arrow:after {
      content: " ";
      right: 1px;
      border-right-width: 0;
      border-left-color: #fff;
      bottom: -10px; }
  #case-html .popover {
    word-wrap: break-word;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    text-align: left; }
    #case-html .popover small {
      word-wrap: break-word;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      -o-hyphens: auto;
      hyphens: auto;
      text-align: justify; }
  #case-html .popover-content {
    /* To override any inherited style from the popover's parent. */
    font-style: normal;
    font-weight: normal;
    color: black; }
  #case-html .treatment .popover {
    max-width: 330px; }

@page {
  margin-left: 0.25in;
  margin-right: 0.25in; }
@media not print {
  /* From
     https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
  */
  /* NOTE: This file and print_styles.scss contain rules specific to display on
   * the website or when printing, respectively. Generally speaking, any rule in
   * this file should have a related rule in print_styles.scss, and vice
   * versa. Rules that should be applied to both media types should be in
   * common.scss.
   */
  #document-view a[data-refglobal] {
    text-decoration: underline; }
  #document-view blockquote {
    font-size: 12px;
    line-height: 17px; }
  #document-view h1 {
    font-size: 28px; }
  #document-view h2 {
    font-size: 21px; }
  #document-view h3 {
    font-size: 18px; }
  #document-view h4 {
    font-size: 17px; }
  #document-view h5 {
    font-size: 15px; }
  #document-view h6 {
    font-size: 14px; }
  #document-view hr {
    width: 500px; }
  #document-view .case-header, #document-view .case-body, #document-view .statute-body, #document-view #header-container {
    padding-left: 145px;
    padding-right: 145px;
    /* Reduce margins once .margin disappears */ }
  #document-view .case-header {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Header w/o citeable */ }
    #document-view .case-header > p {
      /* Default is margin-bottom: 10px.  Move that to the top so we
          can selectively remove it between parallel cites & dates with
          CSS */
      margin: 10px auto 0; }
    #document-view .case-header .parties {
      line-height: 30px;
      margin-bottom: 20px;
      font-size: 21px; }
      #document-view .case-header .parties .party {
        margin-top: 10px; }
        #document-view .case-header .parties .party.in-re {
          margin-bottom: 12px;
          margin-top: 40px; }
          #document-view .case-header .parties .party.in-re:first-child {
            margin-top: 10px; }
      #document-view .case-header .parties .roles {
        font-size: 13px; }
    #document-view .case-header .treatment {
      /* Make it so there's $padding + $extra-margin visible above and
          below the pill. */
      margin-top: 10px;
      margin-bottom: 15.5px; }
    #document-view .case-header .cite + .cite, #document-view .case-header .date + .date {
      margin-top: 4px; }
    #document-view .case-header .publication {
      font-size: 11px; }
  #document-view .case-body, #document-view .statute-body {
    padding-top: 24px;
    padding-bottom: 40px;
    text-align: justify;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    -webkit-hyphenate-limit-lines: 3;
    -moz-hyphenate-limit-lines: 3;
    -ms-hyphenate-limit-lines: 3;
    -o-hyphenate-limit-lines: 3;
    hyphenate-limit-lines: 3; }
    #document-view .case-body h1, #document-view .statute-body h1, #document-view .case-body h2, #document-view .statute-body h2, #document-view .case-body h3, #document-view .statute-body h3, #document-view .case-body h4, #document-view .statute-body h4, #document-view .case-body h5, #document-view .statute-body h5, #document-view .case-body h6, #document-view .statute-body h6 {
      word-wrap: break-word;
      -webkit-hyphens: none;
      -moz-hyphens: none;
      -ms-hyphens: none;
      -o-hyphens: none;
      hyphens: none; }
    #document-view .case-body p, #document-view .statute-body p {
      margin: 0 0 10px; }
    #document-view .case-body pre, #document-view .statute-body pre {
      max-width: 580px; }
    #document-view .case-body .counsel, #document-view .statute-body .counsel {
      overflow: auto; }
      #document-view .case-body .counsel .window, #document-view .statute-body .counsel .window {
        position: relative;
        max-height: 90px;
        overflow-y: hidden; }
        #document-view .case-body .counsel .window:after, #document-view .statute-body .counsel .window:after {
          content: " ";
          display: block;
          position: absolute;
          height: 50px;
          bottom: 0px;
          width: 100%;
          background: linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%); }
        #document-view .case-body .counsel .window.expanded:after, #document-view .statute-body .counsel .window.expanded:after {
          visibility: hidden; }
      #document-view .case-body .counsel .toggle, #document-view .statute-body .counsel .toggle {
        font-size: 13px;
        color: rgba(0, 0, 0, 0.302);
        line-height: 1.385;
        text-decoration: none; }
    #document-view .case-body .note > *, #document-view .statute-body .note > * {
      font-size: 12px;
      line-height: 16px; }
    #document-view .case-body .opinion + .opinion, #document-view .statute-body .opinion + .opinion, #document-view .case-body p + .opinion, #document-view .statute-body p + .opinion {
      margin-top: 100px; }
    #document-view .case-body .popover, #document-view .statute-body .popover {
      display: none; }
  #document-view .metadata {
    margin-bottom: 16px; }
    #document-view .metadata > p {
      margin-bottom: 0; }
  #document-view .noteanchor > a, #document-view .notemarker > a {
    color: #ba4c2b; }
  #document-view .pagenumber {
    font-size: 11px; }
    #document-view .pagenumber:before {
      left: 40px; }
  #document-view #text-frame {
    font-size: 14px; } }
@media print {
  /* NOTE: This file and site_styles.scss contain rules specific to display when
   * printing or on the website, respectively. Generally speaking, any rule in
   * this file should have a related rule in site_styles.scss, and vice
   * versa. Rules that should be applied to both media types should be in
   * common.scss.
   */
  #page {
    width: auto !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0; }

  #document-view a[data-refglobal] {
    text-decoration: none; }
  #document-view blockquote {
    font-size: 9pt;
    line-height: 1; }
  #document-view h1 {
    font-size: 20pt; }
  #document-view h2 {
    font-size: 17pt; }
  #document-view h3 {
    font-size: 14pt; }
  #document-view h4 {
    font-size: 12pt; }
  #document-view h5 {
    font-size: 11.5pt; }
  #document-view h6 {
    font-size: 11pt; }
  #document-view h2, #document-view h3, #document-view h4, #document-view h5, #document-view h6 {
    margin: 12pt 0; }
  #document-view hr {
    width: 5.25in; }
  #document-view .case-header, #document-view .case-body, #document-view .statute-body, #document-view #header-container {
    padding-left: 1in;
    padding-right: 1in; }
  #document-view .case-header {
    font-size: 9pt;
    padding: 0.2in 0;
    /* Header w/o citeable */ }
    #document-view .case-header > p {
      /* Default is margin-bottom: 10px.  Move that to the top so
          we can selectively remove it between parallel cites &
          dates with CSS */
      margin: 0.10in auto 0; }
    #document-view .case-header .parties {
      font-size: 16pt;
      line-height: 16pt;
      margin-bottom: 16pt; }
      #document-view .case-header .parties .party {
        margin-top: 7pt; }
        #document-view .case-header .parties .party.in-re {
          margin-bottom: 0.25in;
          margin-top: 0.75; }
          #document-view .case-header .parties .party.in-re:first-child {
            margin-top: 0.2in; }
      #document-view .case-header .parties .roles {
        font-size: 10pt; }
    #document-view .case-header .treatment {
      /* Make it so there's $padding + $extra-margin visible above
      and below the pill. */
      margin-top: 7pt;
      margin-bottom: 0.0972222222in; }
    #document-view .case-header .cite + .cite, #document-view .case-header .date + .date {
      margin-top: 3pt; }
    #document-view .case-header .publication {
      font-size: 9pt; }
  #document-view .case-body, #document-view .statute-body {
    text-align: left;
    padding-bottom: 0.75in; }
    #document-view .case-body p, #document-view .statute-body p {
      margin: 0 0 0.1in; }
    #document-view .case-body pre, #document-view .statute-body pre {
      max-width: 5.5in; }
    #document-view .case-body .counsel div.window, #document-view .statute-body .counsel div.window {
      max-height: none; }
      #document-view .case-body .counsel div.window:after, #document-view .statute-body .counsel div.window:after {
        display: none; }
    #document-view .case-body .counsel a.toggle, #document-view .statute-body .counsel a.toggle {
      display: none; }
    #document-view .case-body .note > *, #document-view .statute-body .note > * {
      font-size: 8pt;
      line-height: 11pt; }
    #document-view .case-body .opinion + .opinion, #document-view .statute-body .opinion + .opinion, #document-view .case-body p + .opinion, #document-view .statute-body p + .opinion {
      margin-top: 1.8in; }
    #document-view .case-body .popover, #document-view .statute-body .popover {
      display: none; }
  #document-view .metadata {
    margin-bottom: 0.3in; }
    #document-view .metadata > p {
      margin-bottom: 0; }
  #document-view .noteanchor > a, #document-view .notemarker > a {
    color: black; }
  #document-view .pagenumber {
    color: black;
    font-size: 9pt; }
    #document-view .pagenumber:after, #document-view .pagenumber:before {
      color: black; }
    #document-view .pagenumber:before {
      left: 0; }
  #document-view #text-frame {
    font-size: 10pt;
    margin: 0 0.25in; } }
.specifier {
  float: left;
  margin-left: -70px;
  text-align: right;
  width: 60px; }

a.statute-link {
  color: #000; }

.statute-section {
  min-height: 22px;
  position: relative; }
  .statute-section .statute-section {
    padding-left: 12px; }
  .statute-section p:after {
    content: "\00A0";
    display: table; }

.statute-header-code {
  font-size: 21px;
  font-weight: bold;
  margin-top: 10px;
  font-style: italic; }

.statute-header-section {
  font-size: 21px; }

.statute-body {
  padding-top: 18px; }

.statute-body table {
  word-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  hyphens: none;
  word-wrap: normal; }

.statute-history {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: italic;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media print {
    .statute-history {
      font-family: Georgia, 'Times New Roman', serif; } }
  .statute-history:not(:last-child) {
    border-bottom: 1px solid #e4e4e2; }

.toc-heading-specifier {
  float: left;
  padding-right: 5px; }

.toc-heading-name {
  overflow: auto; }

.section-demarcator {
  padding-top: 10px;
  padding-bottom: 2px;
  margin-left: -70px; }
  @media not print {
    .section-demarcator a {
      color: #0967cb;
      text-decoration: none; }
    .section-demarcator a:hover {
      text-decoration: underline; } }
  @media print {
    .section-demarcator a {
      color: #000;
      text-decoration: none; } }

@media print {
  #section-sidebar {
    display: none; }

  .statute-body .statute-link {
    text-decoration: none; } }
span.tooltip-cursor-target {
  cursor: pointer;
  padding-bottom: 20px; }

span.tooltip-text-target {
  border-bottom: dotted 1px #000; }

.popover-text {
  font-size: 13px;
  width: 300px;
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    .popover-text {
      font-family: Georgia, 'Times New Roman', serif; } }
  .popover-text .example {
    padding-left: 20px;
    padding-top: 4px;
    font-family: Arial, sans-serif; }

.popover.fade, .tooltip.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .popover.fade.in, .tooltip.fade.in {
    opacity: 1; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 10px 15px;
  max-width: 400px;
  background-color: white;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 10px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -10px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }
.popover.right > .arrow {
  top: 50%;
  left: -10px;
  margin-top: -10px;
  border-left-width: 0;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -10px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }
.popover.left > .arrow {
  top: 50%;
  right: -10px;
  margin-top: -10px;
  border-right-width: 0;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.popover {
  word-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  hyphens: none;
  text-align: left; }
  .popover small {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    text-align: justify; }

.popover-content {
  /* To override any inherited style from the popover's parent. */
  font-style: normal;
  font-weight: normal; }

#tos-modal {
  line-height: 20px;
  font-size: 14px; }
  #tos-modal .subscribe-button {
    display: none; }
  @media not print {
    #tos-modal a {
      color: #0967cb;
      text-decoration: none; }
    #tos-modal a:hover {
      text-decoration: underline; } }
  @media print {
    #tos-modal a {
      color: #000;
      text-decoration: none; } }
  #tos-modal .modal-body {
    margin-top: 10px; }
  #tos-modal a.tos-new-window-link {
    display: block;
    float: left; }
  #tos-modal .tos-terms-container {
    font-size: 13px;
    height: 300px;
    width: 570px;
    overflow-x: hidden;
    overflow-y: scroll; }
    #tos-modal .tos-terms-container hr {
      display: none; }
    #tos-modal .tos-terms-container h1 {
      font-size: 19px; }
    #tos-modal .tos-terms-container h2 {
      font-size: 15px; }
  #tos-modal .modal-content {
    border: solid 1px #aaaaaa;
    border-radius: 0;
    box-shadow: none;
    width: 630px; }
    #tos-modal .modal-content .modal-header, #tos-modal .modal-content .modal-body, #tos-modal .modal-content .modal-footer {
      padding: 15px 30px; }
  #tos-modal .modal-dialog {
    margin-top: 80px; }
  #tos-modal .tos-modal-checkbox-container {
    text-align: left; }
  #tos-modal button[type='submit'] {
    vertical-align: top; }
    #tos-modal button[type='submit'].disabled {
      color: #999; }
    #tos-modal button[type='submit'].button-teal {
      background-color: #00807d;
      border-color: #006664;
      color: #fff; }
  #tos-modal .spinner {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
    background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      #tos-modal .spinner {
        background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
        background-size: 20px 20px; } }
  #tos-modal.trial-downgrade-modal .modal-content {
    width: 640px; }
  #tos-modal.trial-downgrade-modal .modal-header button.close {
    margin-top: 16px; }
  #tos-modal.trial-downgrade-modal .modal-footer {
    margin-right: 0px; }
    #tos-modal.trial-downgrade-modal .modal-footer button {
      margin-right: 0px; }
  #tos-modal.trial-downgrade-modal .modal-subscribe {
    float: left; }

.modal-trial-overview .feature-section {
  margin-bottom: 40px; }
  .modal-trial-overview .feature-section.feature-section-last {
    margin-bottom: 10px; }
.modal-trial-overview .feature-intro {
  margin-bottom: 25px; }
.modal-trial-overview h3 {
  margin-top: 0px;
  margin-bottom: 7px; }
.modal-trial-overview .screenshot-row {
  margin-bottom: 15px;
  float: left; }
.modal-trial-overview img {
  width: 270px;
  border: solid 1px #aaa;
  float: left;
  margin-left: 20px; }
  .modal-trial-overview img.small-screenshot {
    width: 124px; }
.modal-trial-overview td.clerk-details {
  display: none; }
.modal-trial-overview ul {
  width: 230px; }
.modal-trial-overview .feature-description {
  float: left;
  width: 270px; }
.modal-trial-overview .more {
  display: none; }

.tt-hint {
  color: #999; }

.judge-typeahead .tt-dataset-judge-search {
  width: 210px;
  margin-top: 0px;
  padding: 0px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 0; }
.judge-typeahead .tt-input {
  border: 1px solid transparent; }
.judge-typeahead .tt-hint {
  border: 1px solid #bbb; }
.judge-typeahead .tt-not-found {
  margin-left: 6px; }
.judge-typeahead .tt-selectable {
  margin-left: 6px; }
.judge-typeahead .tt-suggestion:hover {
  background-color: #e4e4e2; }
.judge-typeahead .tt-cursor {
  background-color: #e4e4e2; }

.lookup-typeahead .tt-dataset-lookup {
  width: 210px;
  margin-top: 0px;
  padding: 0px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 0; }
.lookup-typeahead .tt-hint {
  border: 1px solid #bbb; }
.lookup-typeahead .tt-not-found {
  margin-left: 6px; }
.lookup-typeahead .tt-selectable {
  margin-left: 6px; }
.lookup-typeahead .tt-suggestion:hover {
  background-color: #e4e4e2; }
.lookup-typeahead .tt-cursor {
  background-color: #e4e4e2; }

.tt-dataset-suggestions span.tt-case-cites, .tt-dataset-suggestions span.tt-case-date {
  color: #777;
  font-size: 15px; }
.tt-dataset-suggestions .tt-action {
  color: #ba4c2b;
  font-style: italic; }
.tt-dataset-suggestions .tt-category {
  color: #0f92ae; }
.tt-dataset-suggestions .tt-action strong.tt-highlight, .tt-dataset-suggestions .tt-category strong.tt-highlight, .tt-dataset-suggestions .tt-case-date strong.tt-highlight {
  font-weight: normal; }
.tt-dataset-suggestions .tt-separator {
  border-bottom: solid 1px #ccc;
  margin: 8px; }

#search-field-container, #search-input-container {
  text-align: left;
  font-family: Arial, sans-serif; }
  #search-field-container .tt-menu, #search-input-container .tt-menu {
    background-color: #fff;
    border: solid 1px #aaa;
    margin-left: -1px;
    padding: 10px 0px; }
  #search-field-container .tt-suggestion:hover, #search-field-container .tt-cursor, #search-input-container .tt-suggestion:hover, #search-input-container .tt-cursor {
    background-color: #e4e4e2;
    cursor: pointer; }

.treatment-typeahead-container {
  padding-bottom: 15px; }
  .treatment-typeahead-container .tt-dataset-treatment-search {
    width: 313px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0;
    margin: 0; }
  .treatment-typeahead-container .tt-input {
    border: 1px solid #bbb; }
  .treatment-typeahead-container .tt-hint {
    border: 1px solid transparent; }
  .treatment-typeahead-container .tt-not-found {
    margin-left: 12px; }
  .treatment-typeahead-container .tt-selectable {
    margin-left: 6px; }
  .treatment-typeahead-container input[type=text] {
    width: 292px;
    padding: 7px 12px;
    border: 1px solid #bbb; }
  .treatment-typeahead-container .tt-menu {
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 6px #ccc;
    max-height: 167px;
    overflow: auto; }
    .treatment-typeahead-container .tt-menu .tt-suggestion {
      padding: 6px; }
    .treatment-typeahead-container .tt-menu .tt-suggestion:hover {
      background-color: #e4e4e2; }
    .treatment-typeahead-container .tt-menu .tt-cursor {
      background-color: #e4e4e2; }

.sidebar {
  background-color: #f8f7f5;
  border-right: solid 1px #e4e4e2;
  float: left;
  clear: both; }
  .sidebar .pane {
    line-height: 19px;
    border-bottom: solid 1px #e4e4e2;
    font-size: 14px; }
    .sidebar .pane > div {
      padding-top: 13px;
      padding-bottom: 13px; }
      .sidebar .pane > div:first-child {
        padding-left: 20px; }
      .sidebar .pane > div:last-child {
        padding-right: 25px; }
    .sidebar .pane.level-1 > div:first-child {
      padding-left: 35px; }
    .sidebar .pane.level-2 > div:first-child {
      padding-left: 50px; }
    .sidebar .pane.level-3 > div:first-child {
      padding-left: 65px; }
    .sidebar .pane.level-4 > div:first-child {
      padding-left: 80px; }
    .sidebar .pane.level-5 > div:first-child {
      padding-left: 95px; }
    .sidebar .pane.level-6 > div:first-child {
      padding-left: 110px; }
    .sidebar .pane.level-7 > div:first-child {
      padding-left: 125px; }
    .sidebar .pane.level-8 > div:first-child {
      padding-left: 140px; }
    .sidebar .pane.level-9 > div:first-child {
      padding-left: 155px; }
    .sidebar .pane.level-10 > div:first-child {
      padding-left: 170px; }
  .sidebar .truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .sidebar .table-of-contents .pane {
    position: relative;
    /* Use a pseudo-element for active items instead of a border on
            .pane, so that border-left and border-top aren't vying
            for pixels at the top-left corner */ }
    .sidebar .table-of-contents .pane:hover {
      background-color: #efeee9; }
    .sidebar .table-of-contents .pane:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 0;
      /* Let clicks go through to the elements underneath. */
      border-left: 4px solid transparent;
      -webkit-transition: border-color 0.3s ease-in-out;
      transition: border-color 0.3s ease-in-out; }
    .sidebar .table-of-contents .pane.active:after {
      border-left-color: #0e92ad; }

/* From
   https://www.smashingmagazine.com/2014/06/sassy-z-index-management-for-complex-layouts/
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ccc;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0); }
  .carousel-control.right {
    left: auto;
    right: 0; }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #ccc;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .carousel-control .icon-next {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#ccc' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0); }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }

  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }

  .carousel-indicators {
    bottom: 20px; } }
@media not print {
  html {
    background-color: #e2e2e2; } }
body {
  font-family: 'Archer SSm A', 'Archer SSm B';
  font-style: normal;
  font-weight: 500; }
  @media print {
    body {
      font-family: Georgia, 'Times New Roman', serif; } }

#page {
  background-color: #fff;
  width: 1230px;
  margin: auto;
  box-shadow: 0px 0px 10px #aaa;
  display: table;
  position: relative; }

#page-judge-index #page, #page-trial_judge-index #page, #page-lawyer-index #page {
  background-color: #f8f4f1; }

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
  width: 1230px;
  border-bottom: solid 1px #bbb;
  background-color: #0f92ae; }
  @media print {
    #header {
      display: none; } }

.clearfix:before, .modal-trial-overview .feature-section:before, .clearfix:after, .modal-trial-overview .feature-section:after {
  content: " ";
  display: table; }
.clearfix:after, .modal-trial-overview .feature-section:after {
  clear: both; }

#header-spacer {
  display: block;
  height: 48px; }
  @media print {
    #header-spacer {
      display: none; } }

#logo, #search-bar, #gear {
  height: 47px;
  float: left; }

#logo {
  width: 174px;
  background-color: #ba4c2b;
  padding-left: 15px;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/judicata_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 122px; }
  #logo img {
    margin-top: 10px; }

.pro-icon {
  height: 13px;
  width: 13px;
  vertical-align: baseline;
  display: inline-block;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_13x13.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .pro-icon {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/pro_icon_26x26.png");
      background-size: 13px 13px; } }

#search > * {
  display: inline-block; }
  #search > *.hidden {
    display: none; }

#search-field {
  font-family: Arial, sans-serif; }

#search-field-container {
  margin: 9px 6px 6px 22px;
  width: 570px;
  border: solid 1px #aaa;
  height: 28px;
  background: #fff;
  padding: 0px; }
  #search-field-container input[type='text'] {
    border: none;
    padding-left: 10px;
    height: 26px;
    line-height: 27px;
    background: transparent;
    width: 560px;
    font-size: 16px; }
    #search-field-container input[type='text']:focus {
      outline: none; }
  #search-field-container .tt-menu {
    width: 570px;
    padding-left: 0px; }
    #search-field-container .tt-menu .tt-suggestion, #search-field-container .tt-menu .tt-dataset-header {
      padding-left: 8px; }
    #search-field-container .tt-menu .tt-separator {
      margin-left: 8px;
      margin-right: 8px; }

#search-bar {
  width: 929px;
  background: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/header_bg.jpg);
  background-repeat: no-repeat;
  background-size: 929px; }
  #search-bar input[type='submit'] {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    width: 75px; }
  #search-bar form {
    float: left; }
  #search-bar .upgrade-now {
    background-color: #fafafa;
    border: solid 1px #aaa;
    color: #333;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 6px;
    vertical-align: top;
    margin-top: 9px;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    float: right;
    margin-right: 11px;
    padding-top: 7px;
    background-color: #3c80c4;
    border: none;
    border-radius: 1px; }
    #search-bar .upgrade-now a {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      color: white;
      text-decoration: none; }
      @media print {
        #search-bar .upgrade-now a {
          font-family: Georgia, 'Times New Roman', serif; } }

#gear {
  width: 111px;
  background-color: #0f92ae;
  background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/gear.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }

.header-notification-spaced #gear-menu {
  top: 80px; }

#gear-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 111px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa; }
  #gear-menu ul {
    margin: 0;
    list-style-type: none;
    background-color: white;
    padding-left: 0; }
  #gear-menu li {
    font-size: 15px; }
    #gear-menu li a {
      display: block;
      padding-left: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      text-decoration: none;
      color: black; }
      #gear-menu li a:hover {
        color: white;
        background-color: #0F92AE; }

.sidebar.search-sidebar {
  width: 305px; }
  .sidebar.search-sidebar input[type=text] {
    outline: none;
    padding: 3px 8px;
    width: 190px;
    margin-bottom: 4px;
    border: 1px solid #bbb; }
  .sidebar.search-sidebar .sidebar-header {
    height: 19px; }
    .sidebar.search-sidebar .sidebar-header > div {
      padding: 0; }
  .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
    text-decoration: none;
    color: #b3b2b0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500; }
    @media print {
      .sidebar.search-sidebar .more a, .sidebar.search-sidebar .filter-tree a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .sidebar.search-sidebar .pane {
    font-size: 12px;
    line-height: normal;
    border-bottom: solid 1px #e4e4e2;
    padding: 15px 18px; }
    .sidebar.search-sidebar .pane .expando-closed, .sidebar.search-sidebar .pane .expando-half-open, .sidebar.search-sidebar .pane .expando-open {
      overflow: hidden;
      transition: 0.3s; }
    .sidebar.search-sidebar .pane .expando-closed {
      max-height: 0px; }
    .sidebar.search-sidebar .pane .expando-half-open {
      max-height: 70px; }
    .sidebar.search-sidebar .pane .expando-open {
      max-height: 1500px;
      overflow: auto; }
    .sidebar.search-sidebar .pane .filter-list.expando-closed {
      padding: 0; }
    .sidebar.search-sidebar .pane .filter-list > div {
      display: table;
      padding: 4px 0px; }
    .sidebar.search-sidebar .pane .heading {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700; }
      @media print {
        .sidebar.search-sidebar .pane .heading {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane hr {
      border: 0;
      height: 1px;
      margin: 0;
      background-color: #e4e4e2; }
    .sidebar.search-sidebar .pane.selector > div input[type='checkbox'], .sidebar.search-sidebar .pane.selector > div input[type='radio'] {
      margin-right: 10px;
      margin-top: 1px;
      float: left; }
    .sidebar.search-sidebar .pane.selector > div label {
      max-width: 210px;
      float: left; }
    .sidebar.search-sidebar .pane.selector div {
      padding: 4px 0px; }
      .sidebar.search-sidebar .pane.selector div.level-of-analysis {
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0; }
    .sidebar.search-sidebar .pane.selector .filter-count {
      color: #666;
      font-size: 11px;
      position: absolute;
      right: 0; }
      .sidebar.search-sidebar .pane.selector .filter-count.lock {
        height: 11px;
        width: 11px;
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/lock-filters.png);
        background-size: 100%; }
    .sidebar.search-sidebar .pane.selector .label-container {
      display: inline;
      padding: 0;
      width: 100%; }
    .sidebar.search-sidebar .pane.selector .filter-value {
      width: 100%;
      position: relative; }
    .sidebar.search-sidebar .pane .case-text-filter input.disabled {
      background-color: #EEE; }
    .sidebar.search-sidebar .pane > div:before, .sidebar.search-sidebar .pane > div:after {
      content: " ";
      display: table; }
    .sidebar.search-sidebar .pane > div:after {
      clear: both; }
    .sidebar.search-sidebar .pane .disabled-filter > label, .sidebar.search-sidebar .pane .disabled-filter > .filter-count {
      opacity: 0.4; }
    .sidebar.search-sidebar .pane .pane {
      border-bottom: none; }
    .sidebar.search-sidebar .pane .filter-results {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      float: left; }
      @media print {
        .sidebar.search-sidebar .pane .filter-results {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane .clear-filters {
      font-size: 15px;
      float: right; }
      .sidebar.search-sidebar .pane .clear-filters a {
        font-style: normal; }
    .sidebar.search-sidebar .pane .filter-tree {
      position: relative;
      width: 100%;
      display: table;
      clear: both; }
      .sidebar.search-sidebar .pane .filter-tree .children {
        width: 100%;
        box-sizing: border-box;
        display: inline-block;
        padding-left: 25px; }
      .sidebar.search-sidebar .pane .filter-tree a {
        clear: both;
        display: block;
        padding-top: 4px;
        margin-left: 25px; }
    .sidebar.search-sidebar .pane .pro-icon {
      margin: 0 6px -2px 0px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank .expando {
      padding: 0; }
    .sidebar.search-sidebar .pane.filedon-filter-bank div.range {
      position: relative;
      margin: 5px 0;
      padding: 0px; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range a {
        color: #666;
        text-decoration: none; }
      .sidebar.search-sidebar .pane.filedon-filter-bank div.range.selected a {
        font-weight: bold; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input.date {
      width: 4em;
      height: 14px;
      padding: 3px 8px; }
    .sidebar.search-sidebar .pane.filedon-filter-bank input[type='submit'] {
      background-color: #fafafa;
      border: solid 1px #aaa;
      color: #333;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      height: 22px; }
    .sidebar.search-sidebar .pane.treatment-filter-bank div label {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      font-family: Arial, sans-serif; }
      @media print {
        .sidebar.search-sidebar .pane.treatment-filter-bank div label {
          font-family: Georgia, 'Times New Roman', serif; } }
    .sidebar.search-sidebar .pane.treatment-filter-bank input[type='checkbox'].filter {
      margin-top: 0; }

#search-results-error {
  padding: 20px;
  float: left;
  width: 860px; }

.search-results-description {
  padding-bottom: 16px;
  border-bottom: solid 1px #e4e4e2;
  font-size: 15px;
  min-height: 18px; }
  @media not print {
    .search-results-description a {
      color: #0967cb;
      text-decoration: none; }
    .search-results-description a:hover {
      text-decoration: underline; } }
  @media print {
    .search-results-description a {
      color: #000;
      text-decoration: none; } }
  .search-results-description #query-type-menu-container {
    float: right; }
  .search-results-description div {
    margin-bottom: 10px; }
  .search-results-description .spelling-correction {
    font-size: 16px; }

#search-results-container {
  float: left;
  position: relative;
  width: 860px;
  background-color: #fff;
  padding: 0px 30px; }
  #search-results-container .paginator {
    text-align: center; }
  #search-results-container .search-results-header {
    background-color: #fff;
    padding-top: 16px;
    padding-bottom: 15px;
    border-bottom: solid 1px #e4e4e2;
    position: relative;
    font-size: 15px;
    width: 860px;
    z-index: 3; }
    @media not print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-header .clear-applied-filters a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-header .clear-applied-filters a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters {
      margin-left: 12px; }
    #search-results-container .search-results-header #staff-options, #search-results-container .search-results-header .clear-applied-filters a {
      border-left: solid 1px #ccc;
      background-repeat: no-repeat;
      background-position: center right;
      padding-left: 12px; }
  #search-results-container .search-results-feedback {
    border-bottom: solid 1px #e4e4e2;
    margin: 0px 100px 0px 40px;
    padding: 20px 30px 20px 0px; }
    @media not print {
      #search-results-container .search-results-feedback a {
        color: #0967cb;
        text-decoration: none; }
      #search-results-container .search-results-feedback a:hover {
        text-decoration: underline; } }
    @media print {
      #search-results-container .search-results-feedback a {
        color: #000;
        text-decoration: none; } }
    #search-results-container .search-results-feedback p {
      margin: 10px 0px 10px 0px; }
    #search-results-container .search-results-feedback .confirm-query-change {
      font-size: 18px; }
  #search-results-container .query-tip-prompt {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 700;
    color: #ba4c2b;
    font-size: 16px; }
    @media print {
      #search-results-container .query-tip-prompt {
        font-family: Georgia, 'Times New Roman', serif; } }
  #search-results-container .search-results {
    padding-top: 10px; }
  #search-results-container #search-results {
    padding-bottom: 20px; }

.treatment {
  cursor: pointer;
  font-family: Arial, sans-serif; }
  .treatment .pill {
    position: relative;
    border: 1px solid;
    padding: 2px 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: normal; }
    .treatment .pill.attitude-positive {
      color: #52a7b9; }
    .treatment .pill.attitude-unknown {
      color: #6a6a6a; }
    .treatment .pill.basic {
      padding: 3px 4px; }
      .treatment .pill.basic .pro-icon {
        height: 13px;
        width: 13px;
        margin: 0 1px -2px 0; }
  .treatment .expand {
    background-position: right center;
    background-size: 18px 4px;
    background-repeat: no-repeat;
    /* .pill font-size + padding */
    height: 18px;
    width: 25px;
    /* Center vertically */
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: -25px; }
    @media not print {
      .treatment .expand {
        background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png); } }
  .treatment .popover {
    top: auto;
    left: auto;
    cursor: default;
    padding: 13px 16px;
    margin-top: 5px;
    z-index: 2;
    box-shadow: 0px 3px 9px -1px #aaa;
    color: #6a6a6a;
    font-size: 13px; }
    .treatment .popover div + div {
      margin-top: 8px; }

.search-result {
  margin-bottom: 16px;
  padding: 1px 100px 1px 0px; }
  @media not print {
    .search-result a {
      color: #0967cb;
      text-decoration: none; }
    .search-result a:hover {
      text-decoration: underline; }
    .search-result a:visited {
      color: #823da5; } }
  @media print {
    .search-result a {
      color: #000;
      text-decoration: none; } }
  .search-result .treatment {
    margin-left: 8px; }
  .search-result a:hover {
    text-decoration: underline; }
  .search-result .case-name, .search-result .statute-name {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 15px; }
    @media print {
      .search-result .case-name, .search-result .statute-name {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .name-container {
    margin-bottom: 4px; }
    .search-result .name-container > * {
      display: inline-block;
      vertical-align: middle; }
  .search-result .cite {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #6a6a6a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media print {
      .search-result .cite {
        font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .snippet {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px; }
    .search-result .snippet a {
      color: inherit; }
  .search-result .more {
    margin-top: 4px;
    margin-bottom: 4px; }
    .search-result .more a {
      text-decoration: none;
      color: #6a6a6a;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-size: 12px; }
      @media print {
        .search-result .more a {
          font-family: Georgia, 'Times New Roman', serif; } }
  .search-result .missing {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6a6a6a; }
    .search-result .missing .missing-term {
      text-decoration: line-through; }

.results-body {
  padding-left: 0;
  /* Get rid of default ol padding */ }

.right-column {
  float: right;
  /* Set the width so that there's some left padding. */
  width: 720px; }

.level-of-analysis {
  border: 1px solid #bbb;
  float: left;
  height: 5px;
  width: 26px;
  margin-top: 5px; }
  .level-of-analysis.filled {
    background-color: #c3c3c3;
    border-color: #a0a0a0; }
  .level-of-analysis + .level-of-analysis {
    margin-left: 2px; }

.treatment-container {
  float: left;
  margin-top: 2px;
  /* Align text with case name along baseline */
  /* There are four levels of discussion.  Set the width of the
     treatment container to accommodate them. */
  width: 118px; }
  .treatment-container + .right-column {
    /* Override the right column's width to make room for the
       treatment. */
    width: 612px; }
  .treatment-container .unreviewed:before {
    position: absolute;
    left: 15px;
    content: "●";
    font-style: normal; }
  .treatment-container .reviewed:before {
    position: absolute;
    left: 15px;
    content: "✓";
    font-style: normal; }

.case-to-case-treatment {
  border: 1px solid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  text-align: center; }

.attitude-negative {
  color: #ba4c2b; }

.attitude-warning {
  color: #ea845f; }

.attitude-caution, .attitude-contrast {
  color: #eaa115; }

.attitude-positive {
  color: green; }

.attitude-discussed {
  color: #5698ca; }

.attitude-cited {
  color: #52a7b9; }

.attitude-uncited {
  color: #6a6a6a; }

.attitude-unknown {
  color: #6a6a6a; }

.hidden {
  display: none; }

.overlay {
  left: 0;
  top: 0;
  min-height: 300px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
  /* IE 8 */
  background: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* Everyone else */
  background: rgba(255, 255, 255, 0.5); }
  .overlay .loading-container {
    position: absolute;
    top: 40%;
    left: 50%; }
    .overlay .loading-container > div {
      width: 6px;
      height: 6px;
      margin: 6px auto;
      border-radius: 50px;
      background: #bbb; }
    .overlay .loading-container > div:nth-child(1) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(2) {
      -webkit-animation: left 0.6s infinite ease-in-out;
      -moz-animation: left 0.6s infinite ease-in-out;
      animation: left 0.6s infinite ease-in-out; }
    .overlay .loading-container > div:nth-child(3) {
      -webkit-animation: right 0.6s infinite ease-in-out;
      -moz-animation: right 0.6s infinite ease-in-out;
      animation: right 0.6s infinite ease-in-out; }

.frame-background {
  min-height: 650px;
  background-color: #f8f4f1;
  padding-top: 1px;
  padding-bottom: 16px;
  position: relative; }

.search-menu-container {
  display: inline-block;
  float: right;
  text-align: right;
  margin-left: 12px; }
  .search-menu-container .results-sort-by-label {
    float: left; }
  .search-menu-container .search-menu select {
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    padding: 0px 0px 0px 5px;
    font-size: 15px;
    height: 18px;
    width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .search-menu-container .search-menu select:focus {
      outline: none; }
  .search-menu-container .search-menu {
    height: 17px;
    width: 157px;
    overflow: hidden;
    background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/menu_glyph.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px 4px;
    border: solid 1px #bbb;
    background-color: #f9f9f9;
    padding: 3px 26px 3px 3px;
    margin-top: -4px;
    float: left;
    margin-left: 8px; }

#footer {
  font-size: 12px;
  text-align: center;
  width: 100%;
  border-top: solid 1px #e4e4e2;
  padding-bottom: 15px;
  padding-top: 12px;
  clear: both; }
  @media not print {
    #footer {
      background-color: #f8f7f5; } }
  @media not print {
    #footer a {
      color: #0967cb;
      text-decoration: none; }
    #footer a:hover {
      text-decoration: underline; } }
  @media print {
    #footer a {
      color: #000;
      text-decoration: none; } }
  #footer a:hover {
    text-decoration: underline; }
  #footer span {
    padding-left: 10px;
    padding-right: 10px; }
    @media print {
      #footer span.site-links {
        display: none; } }

.button-small, .docs-premium-features button {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 5px 11px; }
  .button-small[disabled], .docs-premium-features button[disabled] {
    color: #aaa;
    cursor: default; }

.button-large, .account-submit-group button[type='submit'] {
  display: inline-block;
  color: #333;
  margin-right: 15px;
  background-color: #efefef;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border: solid 1px #aaa;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -3px;
  padding: 10px 22px; }
  .button-large[disabled], .account-submit-group button[disabled][type='submit'] {
    color: #aaa;
    cursor: default; }

.citation-settings.loading .spinner {
  visibility: visible; }
.citation-settings.loading .citation-example {
  opacity: 0.5; }
.citation-settings * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.citation-settings .spinner {
  width: 20px;
  height: 20px;
  vertical-align: top;
  background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.gif");
  display: inline-block;
  visibility: hidden; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .citation-settings .spinner {
      background-image: url("/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/loading_indicator.2x.gif");
      background-size: 20px 20px; } }
.citation-settings .citation-example {
  padding-top: 10px; }

#notification {
  width: 1230px;
  z-index: 9;
  border-bottom: solid 1px #4176e0;
  background-color: #4893f8;
  color: #fff;
  padding-top: 7px;
  height: 24px;
  text-align: center;
  font-family: Arial;
  font-size: 14px; }
  #notification .content {
    font-weight: bold;
    color: #fff; }
  #notification.hidden {
    display: none; }
  #notification a {
    color: #fff; }
  #notification .close {
    cursor: pointer;
    line-height: 0px;
    color: #ccdcfc;
    font-size: 26px;
    display: block;
    vertical-align: top;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 500;
    font-weight: bold; }
    @media print {
      #notification .close {
        font-family: Georgia, 'Times New Roman', serif; } }
    #notification .close:hover {
      color: #fff; }

.upgrade-modal .modal-dialog {
  width: 700px; }
.upgrade-modal .modal-header {
  padding: 30px; }
.upgrade-modal .modal-content {
  border: solid 1px #aaa;
  border-radius: 0;
  box-shadow: none; }
.upgrade-modal .modal-body {
  padding: 0; }
  .upgrade-modal .modal-body a {
    color: #007f7d;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .upgrade-modal .modal-body a {
        font-family: Georgia, 'Times New Roman', serif; } }
  .upgrade-modal .modal-body .explanation {
    margin: 30px; }
  .upgrade-modal .modal-body .carousel {
    margin: 0 15px 0 15px; }
    .upgrade-modal .modal-body .carousel .content-container {
      position: relative; }
      .upgrade-modal .modal-body .carousel .content-container .item {
        width: 570px;
        height: 185px;
        margin: 0;
        padding: 0 50px; }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-section {
          margin: 0 auto;
          display: flex;
          align-items: center;
          height: 100%; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical {
            display: inline-block;
            width: 0; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image {
              margin-bottom: 10px; }
              .upgrade-modal .modal-body .carousel .content-container .item .feature-section .vertical .image:last-child {
                margin-bottom: 0; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image {
            width: 270px;
            border: solid 1px #aaa;
            float: left;
            margin-left: 20px;
            background-size: contain; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.small-screenshot {
              width: 124px; }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.overall-treatment {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/overall_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.case-treatment-pill {
              height: 69px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/case_treatment_pill.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.citing-treatment {
              height: 122px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/citing_treatment.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.treatment-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/treatment_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.loa-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/loa_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.cwc {
              height: 98px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/cwc.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.pub-filters {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/pub_filters.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.depubed {
              height: 80px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/depubed.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.trial-judge-filters {
              height: 105px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/trial_judge.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.judge-tab {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/judge_tab.jpg); }
            .upgrade-modal .modal-body .carousel .content-container .item .feature-section .image.color {
              height: 96px;
              background-image: url(/static/a8dd35ce271ecc1dac5d021bbd7745b3aa6d8664/img/onboarding_modal/carousel/color.jpg); }
        .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container {
          margin: 0 auto; }
          .upgrade-modal .modal-body .carousel .content-container .item .feature-chart-container ul {
            margin-bottom: 0px; }
      .upgrade-modal .modal-body .carousel .content-container .carousel-control {
        width: 5%; }
    .upgrade-modal .modal-body .carousel .carousel-indicators {
      padding: 0;
      margin: 30px auto 20px auto;
      position: relative;
      bottom: 0;
      left: initial; }
      .upgrade-modal .modal-body .carousel .carousel-indicators li {
        vertical-align: middle; }
.upgrade-modal .modal-footer {
  padding: 30px 0;
  text-align: center; }
  .upgrade-modal .modal-footer .get-pro {
    display: inline-block;
    color: #333;
    margin-right: 15px;
    background-color: #efefef;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    border: solid 1px #aaa;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 4px;
    margin-top: -3px;
    display: inline;
    padding: 6px 12px;
    text-decoration: none;
    margin: 0;
    background-color: #007f7d;
    border-color: #006563;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700;
    color: white; }
    .upgrade-modal .modal-footer .get-pro[disabled] {
      color: #aaa;
      cursor: default; }
    @media print {
      .upgrade-modal .modal-footer .get-pro {
        font-family: Georgia, 'Times New Roman', serif; } }

.citation-container {
  color: #999; }
  .citation-container .citation {
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: italic;
    font-weight: 500;
    color: #999;
    /* So links don't still show up as blue */ }
    @media print {
      .citation-container .citation {
        font-family: Georgia, 'Times New Roman', serif; } }

#page-help-tc_docs .help-container {
  padding-top: 30px;
  padding-bottom: 30px; }
  #page-help-tc_docs .help-container p, #page-help-tc_docs .help-container li, #page-help-tc_docs .help-container a {
    font-size: 14px;
    line-height: normal; }
  #page-help-tc_docs .help-container th, #page-help-tc_docs .help-container td {
    font-size: 14px; }
  #page-help-tc_docs .help-container th, #page-help-tc_docs .help-container td:first-child {
    text-align: center;
    line-height: 14px; }
  #page-help-tc_docs .help-container table {
    margin-bottom: 30px; }
  #page-help-tc_docs .help-container #variant td:first-child {
    line-height: inherit;
    text-align: left; }

.help-container {
  background: #fff;
  border: solid 1px #ddd;
  width: 600px;
  padding: 30px 120px;
  margin: 30px auto;
  padding: 0px 120px;
  /* Hack to get hash navigation jumps to keep targets under the header
     with a little extra padding for breathing space */
  /* Screenshots of the sidebar */ }
  .help-container p {
    margin: 10px 0; }
  .help-container .toc ul {
    list-style-type: none;
    margin: 10px 0;
    padding-left: 0px; }
    .help-container .toc ul ul {
      margin: 0;
      padding-left: 10px; }
    .help-container .toc ul li {
      margin: 1px 0px; }
  .help-container .toc .category {
    margin-bottom: 10px; }
  .help-container .faq-heading:target:before {
    content: "";
    display: block;
    height: 67px;
    /* fixed header height */
    margin: -27px 0 0;
    /* negative fixed header height */ }
  .help-container .faq-item {
    margin: 5px 0 30px 0;
    /* Hack to get hash navigation jumps to keep targets under the header */ }
    .help-container .faq-item .faq-question {
      font-size: 15px;
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: normal;
      font-weight: 700;
      margin-bottom: 2px; }
      @media print {
        .help-container .faq-item .faq-question {
          font-family: Georgia, 'Times New Roman', serif; } }
    .help-container .faq-item strong {
      font-family: 'Archer SSm A', 'Archer SSm B';
      font-style: italic;
      font-weight: 500;
      font-weight: bold; }
      @media print {
        .help-container .faq-item strong {
          font-family: Georgia, 'Times New Roman', serif; } }
    .help-container .faq-item .faq-question:target:before {
      content: "";
      display: block;
      height: 47px;
      /* fixed header height */
      margin: -47px 0 0;
      /* negative fixed header height */ }
  .help-container h1 {
    font-size: 25px;
    margin: 25px 0 0 0;
    font-family: 'Archer SSm A', 'Archer SSm B';
    font-style: normal;
    font-weight: 700; }
    @media print {
      .help-container h1 {
        font-family: Georgia, 'Times New Roman', serif; } }
  .help-container h2, .help-container h3, .help-container h4 {
    margin-bottom: 0; }
  .help-container h2 {
    font-size: 19px; }
  @media not print {
    .help-container a {
      color: #0967cb;
      text-decoration: none; }
    .help-container a:hover {
      text-decoration: underline; } }
  @media print {
    .help-container a {
      color: #000;
      text-decoration: none; } }
  .help-container p, .help-container li {
    font-size: 13px;
    line-height: 20px; }
  .help-container .top-link {
    font-size: 11px;
    display: block;
    line-height: 17px; }
  .help-container img {
    width: 558px;
    border: 1px solid #ddd;
    margin-top: 10px;
    margin-left: 40px; }
  .help-container img.middle {
    margin-bottom: 10px; }
  .help-container .sidebar-img {
    width: 305px; }
  .help-container table {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px; }
    .help-container table .treatment {
      float: left;
      clear: left;
      cursor: auto;
      margin: 3px 0px; }
      .help-container table .treatment .pill {
        border: none; }
    .help-container table p {
      margin: 0; }
      .help-container table p ~ p {
        margin-top: 10px; }
    .help-container table th {
      background-color: #eee;
      white-space: nowrap; }
    .help-container table td, .help-container table th {
      border: solid 1px #888;
      padding: 10px; }

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*# sourceMappingURL=judicata.css.map */
