<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles for dashboard output */ 


/* Header style */

.navbar-inverse {
  background-color: #ffffff;
  border-bottom: 1px solid #d7d7d7;
}
.navbar-inverse .navbar-brand {
  color: rgba(77, 77, 77, 1); 
  font-weight:500;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, Helvetica, lato, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.navbar-inverse .navbar-brand:hover {
}
.navbar-logo img {
  height: 30px;
  margin-top: 8px;
  border-right: 1px solid #ddd;
  padding-right: 10px;
}

/* Dashboard panel title */
.chart-title {
  font-weight: normal;
}

/* In case of scroll layout, make sure the panel scrollable in case 
   you have a taller content such as a long text content. */
.vertical-layout-scroll .chart-stage {
  /* 40px = 32px (.chart-title area height) + 8px (bottom margin) */ 
  height: calc( 100% - 40px );
  overflow: auto;
}

/* Dashboard content */

.dashboard-container {
  color: inherit;
}

.dashboard-container a {
  background-color: transparent;
  color: #00ab6d;
  text-decoration: none;
}

.dashboard-container a:active,
.dashboard-container a:hover {
  outline-width: 0;
}


/* Exploratory specific styles */

/* error message that rmd engine shows */
.dashboard-container .viz-not-found {
  border: 1px solid #e0e0e0;
  width: 100%;
  height: 500px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, Helvetica, lato, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align:center;
  padding-top:247px;
  padding-left:20px;
  padding-right:20px;
  color: #999;
  background-color:#f8f8f8;
  
}
/* error message that viz rendering engine shows */
.dashboard-container .viz-rendering-error {
  border: 1px solid #e0e0e0;
  color: #999;
  background-color:#f8f8f8;
}

.dashboard-container pre.missing-message {
  border: 1px solid #e0e0e0;
  color: #999;
  background-color:#f8f8f8;
  padding:20px;
  margin-top: 0;
  margin-bottom: 20px;
  overflow: hidden;
  
} 
.dashboard-container pre.missing-message code {
  font-size: 13px;
  color: #999;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, Helvetica, lato, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/**
 * Each row should have a static height except rows that contain 
 * only single values in scroll layout mode. 
 */
.vertical-layout-scroll .dashboard-row.charts-only, 
.vertical-layout-scroll .dashboard-row.single-values-and-charts {
  height: 480px;
  flex: 0 0 480px;
}

/**
 * Single value chart handling. 
 * Rmarkdown html transforms the DOM tree on the fly depending on the available 
 * window width such as taking off dashboard-row class so don't depend on their
 * css classes. 
 */
.single-values-only {
  min-height:120px;
  flex:1 1 0px!important;
}
/** 
 * Use this at the last single value row if the page contains only 
 * singe values in order to avoid having extra spaces between rows.
 * This class doesn't apply flex: 1 1 configuration so that it expands
 * the height of the panel to use the rest of page space. 
 */
.single-values-only-last-row {
  min-height:120px;
}
.single-value {
  height:112px;
  max-height:112px;
}
.single-value.responsive {
  height:unset;
  max-height:unset;
}
.single-value &gt; .chart-title {
  display:none;
  /* hack to return 0 for $(".chart-title") in adjustedHeight in flexdashboard
     to avoid adding extra height to the original data-height value to 
     make the shorter row height work properly. */
  padding:0;
  border:0;
  font-size:0;
}
.single-value &gt; .chart-stage.chart-stage-flex{
  padding:0;
  overflow: hidden;
}
.single-value &gt; .chart-stage.chart-stage-flex &gt; .chart-shim {
  top:0; bottom:0; left:3px; right:0;
}
.single-value &gt; .chart-stage.chart-stage-flex &gt; .chart-shim .viz-container.markdown-viz-container .single-value-box {
  height:100%;
}
.single-value &gt; .chart-stage.chart-stage-flex &gt; .chart-shim .viz-container.markdown-viz-container .single-value-innerbox {
  border:none!important;
}


/* Subset of styles used in the markdown note. */

.markdown-note-content {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4em;
  color:#565867; 
  font-family: "Helvetica Neue", Arial, Helvetica, "ヒラギノ角ゴシック","Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  word-wrap: break-word;
  padding: 14px; 
  /* #15819: Use the full available height of the current dashboard panel. */
  height:100%; 
}

.markdown-note-content .viz-container, .markdown-note-content table {
  font-family: "Helvetica Neue", Arial, Helvetica, "ヒラギノ角ゴシック","Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.markdown-note-content .pl-c {
  color: #6a737d;
}

.markdown-note-content .pl-c1,
.markdown-note-content .pl-s .pl-v {
  color: #005cc5;
}

.markdown-note-content .pl-e,
.markdown-note-content .pl-en {
  color: #6f42c1;
}

.markdown-note-content .pl-smi,
.markdown-note-content .pl-s .pl-s1 {
  color: #24292e;
}

.markdown-note-content .pl-ent {
  color: #22863a;
}

.markdown-note-content .pl-k {
  color: #d73a49;
}

.markdown-note-content .pl-s,
.markdown-note-content .pl-pds,
.markdown-note-content .pl-s .pl-pse .pl-s1,
.markdown-note-content .pl-sr,
.markdown-note-content .pl-sr .pl-cce,
.markdown-note-content .pl-sr .pl-sre,
.markdown-note-content .pl-sr .pl-sra {
  color: #032f62;
}

.markdown-note-content .pl-v,
.markdown-note-content .pl-smw {
  color: #e36209;
}

.markdown-note-content .pl-bu {
  color: #b31d28;
}

.markdown-note-content .pl-ii {
  color: #fafbfc;
  background-color: #b31d28;
}

.markdown-note-content .pl-c2 {
  color: #fafbfc;
  background-color: #d73a49;
}

.markdown-note-content .pl-c2::before {
  content: "^M";
}

.markdown-note-content .pl-sr .pl-cce {
  font-weight: bold;
  color: #22863a;
}

.markdown-note-content .pl-ml {
  color: #735c0f;
}

.markdown-note-content .pl-mh,
.markdown-note-content .pl-mh .pl-en,
.markdown-note-content .pl-ms {
  font-weight: bold;
  color: #005cc5;
}

.markdown-note-content .pl-mi {
  font-style: italic;
  color: #24292e;
}

.markdown-note-content .pl-mb {
  font-weight: bold;
  color: #24292e;
}

.markdown-note-content .pl-md {
  color: #b31d28;
  background-color: #ffeef0;
}

.markdown-note-content .pl-mi1 {
  color: #22863a;
  background-color: #f0fff4;
}

.markdown-note-content .pl-mc {
  color: #e36209;
  background-color: #ffebda;
}

.markdown-note-content .pl-mi2 {
  color: #f6f8fa;
  background-color: #005cc5;
}

.markdown-note-content .pl-mdr {
  font-weight: bold;
  color: #6f42c1;
}

.markdown-note-content .pl-ba {
  color: #586069;
}

.markdown-note-content .pl-sg {
  color: #959da5;
}

.markdown-note-content .pl-corl {
  text-decoration: underline;
  color: #032f62;
}

.markdown-note-content .octicon {
  display: inline-block;
  vertical-align: text-top;
  fill: currentColor;
}

.markdown-note-content a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.markdown-note-content a:active,
.markdown-note-content a:hover {
  outline-width: 0;
}

.markdown-note-content strong {
  font-weight: inherit;
}

.markdown-note-content strong {
  font-weight: bolder;
}


.markdown-note-content img {
  border-style: none;
}

.markdown-note-content .figure {
  margin-bottom: 38px;
}

.markdown-note-content svg:not(:root) {
  overflow: hidden;
}

.markdown-note-content code,
.markdown-note-content kbd,
.markdown-note-content pre {
  font-family: Menlo, Monaco, "Courier New", Courier, monospace;
  font-size: 13px;
  color: #565867;
  line-height: 1.8em;
}

.markdown-note-content hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.markdown-note-content input {
  font: inherit;
  margin: 0;
}

.markdown-note-content input {
  overflow: visible;
}

.markdown-note-content [type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

.markdown-note-content * {
  box-sizing: border-box;
}

.markdown-note-content input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.markdown-note-content a {
  color: #00ab6d;
  text-decoration: none;

}

.markdown-note-content .nav-tabs&gt;li&gt;a {
  color: #00ab6d;
}

.markdown-note-content .nav-tabs&gt;li.active&gt;a {
  color: #555;
}

.markdown-note-content a:hover {
  text-decoration: underline;
}

.markdown-note-content strong {
  font-weight: 600;
}

.markdown-note-content hr {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe2e5;
}

.markdown-note-content hr::before {
  display: table;
  content: "";
}

.markdown-note-content hr::after {
  display: table;
  clear: both;
  content: "";
}

.markdown-note-content table {
  border-spacing: 0;
  border-collapse: collapse;
}

.markdown-note-content td,
.markdown-note-content th {
  padding: 0;
}

/* Plain table support. Overriding bootstrap table style */
.markdown-note-content .table&gt;tbody&gt;tr&gt;td, 
.markdown-note-content .table&gt;tbody&gt;tr&gt;th, 
.markdown-note-content .table&gt;tfoot&gt;tr&gt;td, 
.markdown-note-content .table&gt;tfoot&gt;tr&gt;th, 
.markdown-note-content .table&gt;thead&gt;tr&gt;td, 
.markdown-note-content .table&gt;thead&gt;tr&gt;th {
  border-top:1px solid #dfe2e5;
  border-bottom:1px solid #dfe2e5;
  border-left:1px solid #dfe2e5;
  border-right:1px solid #dfe2e5;
}

.markdown-note-content .table&gt;caption+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .table&gt;caption+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .table&gt;colgroup+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .table&gt;colgroup+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .table&gt;thead:first-child&gt;tr:first-child&gt;td, 
.markdown-note-content .table&gt;thead:first-child&gt;tr:first-child&gt;th {
  border-top:1px solid #dfe2e5;
  border-bottom:1px solid #dfe2e5;
  border-left:1px solid #dfe2e5;
  border-right:1px solid #dfe2e5;
} 

/* Restore the table styles for kable/pagedtable table types */
.markdown-note-content .pagedtable .table&gt;tbody&gt;tr&gt;td, 
.markdown-note-content .pagedtable .table&gt;tbody&gt;tr&gt;th, 
.markdown-note-content .pagedtable .table&gt;tfoot&gt;tr&gt;td, 
.markdown-note-content .pagedtable .table&gt;tfoot&gt;tr&gt;th, 
.markdown-note-content .pagedtable .table&gt;thead&gt;tr&gt;td,
.markdown-note-content .pagedtable .table&gt;thead&gt;tr&gt;th,
.markdown-note-content .kable-table .table&gt;tbody&gt;tr&gt;td, 
.markdown-note-content .kable-table .table&gt;tbody&gt;tr&gt;th, 
.markdown-note-content .kable-table .table&gt;tfoot&gt;tr&gt;td, 
.markdown-note-content .kable-table .table&gt;tfoot&gt;tr&gt;th, 
.markdown-note-content .kable-table .table&gt;thead&gt;tr&gt;td,
.markdown-note-content .kable-table .table&gt;thead&gt;tr&gt;th {
  border-top: 1px solid #ddd;
  border-bottom:0;
  border-left:0;
  border-right:0;
}

.markdown-note-content .pagedtable .table&gt;caption+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .pagedtable .table&gt;caption+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .pagedtable .table&gt;colgroup+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .pagedtable .table&gt;colgroup+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .pagedtable .table&gt;thead:first-child&gt;tr:first-child&gt;td, 
.markdown-note-content .pagedtable .table&gt;thead:first-child&gt;tr:first-child&gt;th,
.markdown-note-content .kable-table .table&gt;caption+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .kable-table .table&gt;caption+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .kable-table .table&gt;colgroup+thead&gt;tr:first-child&gt;td, 
.markdown-note-content .kable-table .table&gt;colgroup+thead&gt;tr:first-child&gt;th, 
.markdown-note-content .kable-table .table&gt;thead:first-child&gt;tr:first-child&gt;td, 
.markdown-note-content .kable-table .table&gt;thead:first-child&gt;tr:first-child&gt;th {
  border-top: 0;
  border-bottom:0;
  border-left:0;
  border-right:0;
}

.markdown-note-content .pagedtable .table&gt;thead&gt;tr&gt;th ,
.markdown-note-content .pagedtable .table&gt;thead:first-child&gt;tr:first-child&gt;th,
.markdown-note-content .kable-table .table&gt;thead&gt;tr&gt;th ,
.markdown-note-content .kable-table .table&gt;thead:first-child&gt;tr:first-child&gt;th {
  border-bottom:2px solid #ddd;
}

.markdown-note-content li {
  margin-left: 15px;
  margin-bottom: 5px;
}
.markdown-note-content li:first-child {
  margin-top: 5px;
}

.markdown-note-content blockquote {
  margin: 0;
}

.markdown-note-content ul,
.markdown-note-content ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.markdown-note-content ol ol,
.markdown-note-content ul ol {
  list-style-type: lower-roman;
}

.markdown-note-content ul ul ol,
.markdown-note-content ul ol ol,
.markdown-note-content ol ul ol,
.markdown-note-content ol ol ol {
  list-style-type: lower-alpha;
}

.markdown-note-content dd {
  margin-left: 0;
}

.markdown-note-content pre {
  margin-top: 0;
  margin-bottom: 0;
}

.markdown-note-content .octicon {
  vertical-align: text-bottom;
}

.markdown-note-content .pl-0 {
  padding-left: 0 !important;
}

.markdown-note-content .pl-1 {
  padding-left: 4px !important;
}

.markdown-note-content .pl-2 {
  padding-left: 8px !important;
}

.markdown-note-content .pl-3 {
  padding-left: 16px !important;
}

.markdown-note-content .pl-4 {
  padding-left: 24px !important;
}

.markdown-note-content .pl-5 {
  padding-left: 32px !important;
}

.markdown-note-content .pl-6 {
  padding-left: 40px !important;
}

.markdown-note-content::before {
  display: table;
  content: "";
}

.markdown-note-content::after {
  display: table;
  clear: both;
  content: "";
}

.markdown-note-content&gt;*:first-child {
  margin-top: 0 !important;
}

.markdown-note-content&gt;*:last-child {
  margin-bottom: 0 !important;
}

.markdown-note-content a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.markdown-note-content .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}

.markdown-note-content .anchor:focus {
  outline: none;
}

.markdown-note-content blockquote,
.markdown-note-content ul,
.markdown-note-content ol,
.markdown-note-content dl,
.markdown-note-content table,
.markdown-note-content pre {
  margin-top: 0;
  margin-bottom: 1.4em; 
}

.markdown-note-content blockquote {
  font-size: 17px;
}

.markdown-note-content p {
  margin-top: 0;
  margin-bottom: 1.4em;
}

.markdown-note-content hr {
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: #e1e4e8;
  border: 0;
}

.markdown-note-content blockquote {
  padding: 0 1em;
  color: #6a737d;
  border-left: 0.25em solid #dfe2e5;
}

.markdown-note-content blockquote&gt;:first-child {
  margin-top: 0;
}

.markdown-note-content blockquote&gt;:last-child {
  margin-bottom: 0;
}

.markdown-note-content kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
}

.markdown-note-content h1,
.markdown-note-content h2,
.markdown-note-content h3,
.markdown-note-content h4,
.markdown-note-content h5,
.markdown-note-content h6 {
  margin: 1.7em 0 1.0em 0;
  line-height:1.24; 
  color:#444659; 
  font-weight: 600;
}

.markdown-note-content h1 .octicon-link,
.markdown-note-content h2 .octicon-link,
.markdown-note-content h3 .octicon-link,
.markdown-note-content h4 .octicon-link,
.markdown-note-content h5 .octicon-link,
.markdown-note-content h6 .octicon-link {
  color: #1b1f23;
  vertical-align: middle;
  visibility: hidden;
}

.markdown-note-content h1:hover .anchor,
.markdown-note-content h2:hover .anchor,
.markdown-note-content h3:hover .anchor,
.markdown-note-content h4:hover .anchor,
.markdown-note-content h5:hover .anchor,
.markdown-note-content h6:hover .anchor {
  text-decoration: none;
}

.markdown-note-content h1:hover .anchor .octicon-link,
.markdown-note-content h2:hover .anchor .octicon-link,
.markdown-note-content h3:hover .anchor .octicon-link,
.markdown-note-content h4:hover .anchor .octicon-link,
.markdown-note-content h5:hover .anchor .octicon-link,
.markdown-note-content h6:hover .anchor .octicon-link {
  visibility: visible;
}

.markdown-note-content h1 {
  border-bottom: 1px solid transparent;
  font-size: 33px; 
  margin: 1.3em 0 0.67em;
}

.markdown-note-content h2 {
  font-size: 22px; 
  border-bottom: 1px solid transparent;
}

.markdown-note-content h3 {
  font-size: 20px; 
}

.markdown-note-content h4 {
  font-size: 18px;
  color: #6a737d;
}

.markdown-note-content h5 {
  font-size: 1.1em;
  color: #6a737d;
}

.markdown-note-content h6 {
  font-size: 0.8em;
  color: #6a737d;
  font-weight: normal;
}

.markdown-note-content ul,
.markdown-note-content ol {
  padding-left: 2em;
}

.markdown-note-content ul ul,
.markdown-note-content ul ol,
.markdown-note-content ol ol,
.markdown-note-content ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.markdown-note-content p.caption {
  font-size:0.8em;
  margin-top:4px;
  color:#999999;
  /* Center align doesn't work well. It aligns to the center of the whole text area, not aligned to the image. */
  /* text-align:center; */
}

.markdown-note-content li&gt;p {
  margin-top: 24px;
}

.markdown-note-content dl {
  padding: 0;
}

.markdown-note-content dl dt {
  padding: 0;
  margin-top: 24px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.markdown-note-content dl dd {
  padding: 0 16px;
  margin-bottom: 24px;
}

.markdown-note-content img {
  max-width: 100%;
  box-sizing: content-box;
  background-color: #fff;
}

.markdown-note-content code {
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 0;
  background-color: rgba(27,31,35,0.05);
  border-radius: 3px;
}

.markdown-note-content code::before,
.markdown-note-content code::after {
  letter-spacing: -0.2em;
  content: "\00a0";
}

.markdown-note-content pre {
  word-wrap: normal;
}

.markdown-note-content pre&gt;code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre-wrap;
  background: transparent;
  border: 0;
}

.markdown-note-content .highlight {
  margin-bottom: 24px;
}

.markdown-note-content .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

.markdown-note-content .highlight pre,
.markdown-note-content pre {
  padding: 24px;
  overflow: auto;
  background-color: #f8f8f8!important;
  border-radius: 3px;
  border: none;
}

.markdown-note-content pre code {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

@media (max-width : 766px) { 
  /* Avoid having very wide content width on mobile #14646 */
  .markdown-note-content pre code {
    word-break: break-all;
  }
}

.markdown-note-content pre code::before,
.markdown-note-content pre code::after {
  content: normal;
}

.markdown-note-content .full-commit .btn-outline:not(:disabled):hover {
  color: #005cc5;
  border-color: #005cc5;
}

.markdown-note-content kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px Menlo, Monaco, "Courier New", Courier, monospace;
  
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #f8f8f8;
  border: solid 1px #d1d5da;
  border-bottom-color: #c6cbd1;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #c6cbd1;
}

.markdown-note-content :checked+.radio-label {
  position: relative;
  z-index: 1;
  border-color: #0366d6;
}

.markdown-note-content .task-list-item {
  list-style-type: none;
}

.markdown-note-content .task-list-item+.task-list-item {
  margin-top: 3px;
}

.markdown-note-content .task-list-item input {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}

.markdown-note-content hr {
  border-bottom-color: #eaecef;
  height:1px; 
  width:80%;
  margin-left:auto; 
  margin-right:auto;
  margin-top:48px; 
  margin-bottom:48px;
}

.markdown-note-content ul.nav li {
  margin: 10px 0 -2px 0;
}

.markdown-note-content ul.nav &gt; a {
  color: #00ab6d;
}

.markdown-note-content ul.nav {
  padding-left: 0;
}

.markdown-note-content .nav-pills&gt;li.active&gt;a, 
.markdown-note-content .nav-pills&gt;li.active&gt;a:focus,
.markdown-note-content .nav-pills&gt;li.active&gt;a:hover {
  background-color: #00ab6d;
  color: #fff;
}

.markdown-note-content .nav-pills&gt;li&gt;a {
  color: #00ab6d;
}
</pre></body></html>