/*
Stylesheet for any additional styles that are required by the content team after the build.
All selectors should be prefixed with .content__region to avoid conflicts.
This file should not be compiled from sass.
*/

/*** table style - border on bottom row ***/

.content__region .table-wrap {
    width: 100%;
    overflow-y: auto;
    _overflow: auto;
    margin-bottom: 20px;
}

.content__region .table-wrap table th {
    background: #DCE9F2;
}

.content__region .table-wrap table th p {
    color: #175299;
    letter-spacing: 2px;
    margin-left: 10px;
    text-align: left;
}


.content__region .table-wrap table tr {
    border: 1px solid #fff;
    border-bottom: 1px solid #CCE0EB;
}

.content__region .table-wrap table tr td {
    text-align: left;
    padding: 10px;
}

/*** table style - border on all cells ***/

.content__region .table-wrap-cells {
    width: 100%;
    overflow-y: auto;
    _overflow: auto;
    margin-bottom: 20px;
}

.content__region .table-wrap-cells table th {
    border: 1px solid #3B70B1;
    background: #3B70B1;
    padding: 4px;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #fff;
}


.content__region .table-wrap-cells table th p {
    font-family: "Century Gothic", "Questrial", sans-serif;
    color: #fff;
    letter-spacing: 2px;
    font-size: 1.2em;
    font-weight: 400;
}

.content__region .table-wrap-cells table tr td {
    text-align: center;
    border: 1px solid #CCE0EB;
    padding: 5px;
}



/*blockquote*/

.content__region blockquote {
    font-style: italic;
    font-weight: 400;
    padding: 0.5em;
    quotes: "“" "”";
    margin: 1em 0;
    display: inline-block;
    *display: inline;
    position: relative;
    text-align: center;
  }

.content__region blockquote p {
    color: #444;
    line-height: 1.2em;
    font-size: 1.4em;
    padding: 0 40px;
    margin: 0;
    text-align: left;
  }

.content__region blockquote p:before,
.content__region blockquote p:after {
    color: #1C5794;
    font-size: 2em;
    position: absolute;
}
.content__region blockquote p:before {
    content: open-quote;
    top: 10px;
    left: 10px;
}
.content__region blockquote p::after {
    content: close-quote;
    top: 10px;
    right: 10px;
}

.content__region .cite {
  font-size: 1em;
  color: #444;
  margin: 20px 20px;
  margin-bottom: 0;
  text-align: left;
  position: relative;
  border-bottom: 2px solid #d9e3ef;
  display: inline-block;
  float: left;
}

