@charset "UTF-8";
/***************/
/* MEYER RESET */
/***************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, dl {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --oc-gray-0: #f8f9fa;
  --oc-gray-1: #f1f3f5;
  --oc-gray-2: #e9ecef;
  --oc-gray-3: #dee2e6;
  --oc-gray-4: #ced4da;
  --oc-gray-5: #adb5bd;
  --oc-gray-6: #868e96;
  --oc-gray-7: #495057;
  --oc-gray-8: #343a40;
  --oc-gray-9: #212529;
  --oc-blue-0: #e8f7ff;
  --oc-blue-6: #228ae6;
  --oc-blue-8: #1b6ec2;
  --oc-indigo-9: #364fc7;
}

body.dark-mode {
  --oc-gray-0: #212529;
  --oc-gray-1: #343a40;
  --oc-gray-2: #495057;
  --oc-gray-3: #6c757d;
  --oc-gray-4: #adb5bd;
  --oc-gray-5: #ced4da;
  --oc-gray-6: #dee2e6;
  --oc-gray-7: #e9ecef;
  --oc-gray-8: #f1f3f5;
  --oc-gray-9: #f8f9fa;
  --oc-blue-0: #444d56;
  --oc-blue-6: #80acff;
  --oc-blue-8: #81a6ed;
  --oc-indigo-9: #9775fa;
}

/**************/
/* BASE RULES */
/**************/
html {
  font-size: 16px;
}

body {
  background-color: var(--oc-gray-0);
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif", "Songti SC", serif;
  color: var(--oc-gray-8);
  line-height: 1.7em;
}

.container {
  margin: 40px 0;
  max-width: 1000px;
  padding: 0 20px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 2em;
  margin: 1em 0 16px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.6em;
  }
}

h1,
h2,
h3,
h5 {
  font-weight: bold;
}

h1 {
  font-size: 30px;
}
h1 a {
  color: inherit;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 20px;
  color: var(--oc-gray-6);
}

h6 {
  color: var(--oc-gray-6);
}

p {
  color: var(--oc-gray-8);
  margin: 1em 0;
}

a {
  color: var(--oc-blue-8);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover, a:active {
  color: var(--oc-blue-6);
}

em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: bold;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

hr {
  border: 0;
  border-top: 1px solid var(--oc-gray-2);
  margin: 1.5em auto;
}

ol > li:before,
ul > li:before {
  position: absolute;
  width: 1.4em;
  margin-left: -1.4em;
  display: inline-block;
  box-sizing: border-box;
  text-align: right;
}

ul > li:before {
  content: "•";
  padding-right: 0.3em;
  font-family: inherit;
  font-size: 1.5em;
  line-height: 1.2;
}
ul > li > ul > li:before {
  content: "◦";
  font-size: 1.2em;
}
ul > li > ul > li > ul > li:before {
  content: "▪";
}

ol {
  counter-reset: section;
}
ol > li:before {
  counter-increment: section;
  content: counter(section) ".";
  padding-right: 0.3em;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
}

ol > li,
ul > li {
  margin: 0 auto 0.4em 1.4em;
  line-height: 1.55;
}
ol > li > ol,
ol > li > ul,
ul > li > ol,
ul > li > ul {
  margin-top: 0.4em;
}

li > ol > li,
li > ul > li {
  font-size: 0.95em;
  margin: 0 auto 0.38em 1.33em;
}

dt {
  float: left;
  width: 180px;
  overflow: auto;
  clear: left;
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 1200px) {
  dt {
    width: 120px;
  }
}

dd {
  margin-left: 200px;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 1200px) {
  dd {
    margin-left: 140px;
  }
}

table {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid var(--oc-gray-2);
  border-collapse: collapse;
}

td,
th {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--oc-gray-2);
}

tbody tr:nth-child(odd) td,
tbody tr:nth-child(odd) th {
  background-color: var(--oc-gray-1);
}

blockquote {
  font-weight: 300;
  padding: 0 0 0 1.4rem;
  margin: 0 2rem 1rem 0;
  border-left: 0.2em solid var(--oc-gray-3);
}
blockquote p {
  color: var(--oc-gray-6);
}
blockquote p:last-child {
  margin-bottom: 0;
}

a.footnote, .post p a.footnote, .post ol a.footnote, .post ul a.footnote {
  margin: 0 3px;
  padding: 0 2px;
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--oc-gray-1);
  border-radius: 2px;
  -webkit-text-stroke: 0.25px;
  -webkit-transition: 0.2s ease-out all;
  text-decoration: none;
}
a.footnote:hover, .post p a.footnote:hover, .post ol a.footnote:hover, .post ul a.footnote:hover {
  background: var(--oc-gray-1);
}

.footnotes {
  border-top: 1px solid var(--oc-gray-2);
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 0 1em;
  border-radius: 5px;
}

.gmnoprint img {
  max-width: none;
}

::-moz-selection {
  background: var(--oc-gray-3);
}

::selection {
  background: var(--oc-gray-3);
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.center {
  text-align: center;
}
.center-image {
  margin: 0 auto;
  display: block;
}

.right {
  text-align: right;
}

/*********************/
/* LAYOUT / SECTIONS */
/*********************/
.wrapper-sidebar {
  width: 25%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: var(--oc-gray-0);
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  border-right: 1px solid var(--oc-gray-2);
}
@media screen and (max-width: 1200px) {
  .wrapper-sidebar {
    width: 100%;
    height: auto;
    padding-bottom: 24px;
    position: relative;
    border-bottom: 1px solid var(--oc-gray-2);
    border-right: 0;
  }
}

.sidebar {
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .sidebar {
    text-align: center;
  }
}

.site-info {
  text-align: center;
  margin: 100px auto 0;
}
@media screen and (max-width: 1200px) {
  .site-info {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
.site-info .site-avatar {
  margin: 0 auto;
  display: block;
  max-width: 200px;
  max-height: 200px;
}
@media screen and (max-width: 1200px) {
  .site-info .site-avatar {
    max-width: 120px;
    max-height: 120px;
  }
}
.site-info .site-avatar img {
  display: inline-block;
  border-radius: 2px;
}

.site-name {
  margin: 0 auto;
  color: var(--oc-gray-8);
  cursor: pointer;
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif", "Songti SC", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}

.site-description {
  margin: 15px auto;
  color: var(--oc-gray-6);
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .site-description {
    margin: 10px auto;
  }
}

.navlist {
  text-align: center;
}

nav {
  display: block;
  margin-top: 23px;
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif", "Songti SC", serif;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  nav {
    margin-top: 9px;
    font-size: 16px;
  }
}
nav a {
  margin: 0 10px;
  text-align: right;
  font-weight: 300;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  nav a {
    margin: 0 10px;
    color: var(--oc-blue-8);
  }
}

.wrapper-content {
  float: right;
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .wrapper-content {
    float: none;
    width: 100%;
  }
}

.posts .tag {
  display: inline;
  font-weight: 300;
  font-size: 14px;
}
.posts .tag li:before {
  content: "";
}
.posts .tag li {
  display: inline;
  margin: 0;
}
.posts .tag li > a {
  margin: 3px 3px 3px 0;
  padding: 0.5px 4px;
  color: var(--oc-gray-8);
  background-color: var(--oc-gray-2);
  border-radius: 3px;
}
.posts .tag li > a:hover {
  color: var(--oc-blue-8);
  background-color: var(--oc-blue-0);
}

.posts > .post {
  padding-bottom: 2em;
  border-bottom: 1px solid var(--oc-gray-2);
}

.posts > .post:last-child {
  padding-bottom: 1em;
  border-bottom: none;
}

.date {
  font-weight: 300;
  font-size: 14px;
  color: var(--oc-gray-6);
  margin-right: 4px;
}

.post h1 {
  margin-bottom: 0.1em;
}
.post .comments {
  margin-top: 10px;
}
.post .read-more {
  font-size: 15px;
}

.toc {
  width: 320px;
  height: 100%;
  overflow-y: auto;
  right: 0%;
  position: fixed;
  z-index: 4;
  padding: 20px;
}
.toc:before {
  content: "目录";
  margin: 0 0 1em 1em;
  font-weight: 700;
  font-size: 1.2em;
  display: block;
  padding-bottom: 0.6em;
  border-bottom: 3px double var(--oc-gray-2);
}
.toc li:before {
  content: "";
}
@media screen and (max-width: 1200px) {
  .toc {
    display: none;
  }
}

@media screen and (max-width: 2200px) and (min-width: 1200px) {
  .withtoc {
    padding-right: 350px;
  }
}
.pagination {
  border-top: 1px solid var(--oc-gray-2);
  font-weight: 300;
  padding: 40px 0;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .pagination {
    font-size: 14px;
    padding: 24px 0;
  }
}
.pagination > .prev {
  float: left;
  width: 50%;
}
.pagination > .prev a {
  color: var(--oc-gray-6);
  border: 1px solid var(--oc-gray-2);
  padding: 10px 20px;
  background: var(--oc-gray-0);
}
.pagination > .prev a:hover, .pagination > .prev a:focus {
  color: var(--oc-blue-6);
  border: 1px solid var(--oc-blue-6);
  background-color: var(--oc-blue-0);
}
.pagination > .next {
  float: right;
  text-align: right;
  width: 50%;
}
.pagination > .next a {
  color: var(--oc-gray-6);
  border: 1px solid var(--oc-gray-2);
  padding: 10px 20px;
  background: var(--oc-gray-0);
}
.pagination > .next a:hover, .pagination > .next a:focus {
  color: var(--oc-blue-6);
  border: 1px solid var(--oc-blue-6);
  background-color: var(--oc-blue-0);
}

.tags > .label > li:before {
  content: "";
}
.tags > .label > li {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  display: inline;
}
.tags > .label > li > a {
  display: inline-block;
  margin: 1px;
  color: var(--oc-gray-8);
  background-color: var(--oc-gray-2);
  border-radius: 3px;
}
.tags > .label > li > a:hover {
  background-color: var(--oc-blue-0);
}
.tags > .label > li > a span {
  float: left;
  padding: 0.5px 5px;
}
.tags > .label > li > a span.count {
  background-color: rgba(134, 142, 150, 0.1019607843);
  border-radius: 0 3px 3px 0;
}

.tags > .tag a {
  color: var(--oc-gray-8);
}
.tags > .tag time {
  color: var(--oc-gray-6);
  font-size: 14px;
  font-weight: 300;
  margin-left: 3px;
}

.wrapper-footer-desktop {
  margin-top: 50px;
  border-top: 1px solid var(--oc-gray-2);
  background-color: var(--oc-gray-0);
  position: absolute;
  clear: both;
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .wrapper-footer-desktop {
    display: none;
  }
}

.wrapper-footer-mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .wrapper-footer-mobile {
    display: block;
    width: 100%;
    border-top: 1px solid var(--oc-gray-2);
    background-color: var(--oc-gray-0);
  }
}

footer {
  padding: 20px 0;
  text-align: center;
}
footer p {
  font-size: 14px;
  color: var(--oc-gray-6);
}
footer .svg-icon {
  display: block;
  font-size: 0;
  list-style: none;
  margin: 0;
  text-align: center;
}
footer .svg-icon li {
  display: inline-block;
  margin: 10px;
}
footer .svg-icon svg {
  height: 20px;
  width: 20px;
  fill: var(--oc-gray-6);
}
footer .svg-icon svg:hover {
  fill: var(--oc-blue-6);
}
footer .svg-icon em {
  font-size: 18px;
  line-height: 1.5;
  margin-top: -0.75em;
  position: absolute;
  text-align: center;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
}

.theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--oc-gray-0);
  border: 1px solid var(--oc-gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background-color: var(--oc-blue-0);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--oc-gray-8);
}

/* 主题菜单样式 */
.theme-menu {
  position: fixed;
  bottom: 70px;
  left: 20px;
  z-index: 9998;
  background-color: var(--oc-gray-0);
  opacity: 0.7;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

/* 选项样式 */
.theme-option {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.theme-option:hover {
  background-color: var(--oc-blue-0);
}

.theme-option.active {
  background-color: var(--oc-blue-0);
  font-weight: bold;
}

body.dark-mode {
  --text-color: #e0e0e0;
  --divider-color: #333;
  background-color: var(--oc-gray-0);
  color: var(--oc-gray-8);
}
body.dark-mode a {
  color: var(--oc-blue-6);
}
body.dark-mode a:hover {
  color: var(--oc-blue-8);
}
body.dark-mode .wrapper-sidebar {
  background-color: var(--oc-gray-0);
  border-right-color: var(--oc-gray-2);
}
body.dark-mode .post,
body.dark-mode .sidebar,
body.dark-mode .search-container input {
  color: var(--text-color);
  border-color: var(--divider-color);
}
body.dark-mode table {
  border-color: var(--oc-gray-3);
}
body.dark-mode table tbody tr:nth-child(odd) td {
  background-color: var(--oc-gray-2);
}
body.dark-mode .gt-container {
  --gt-bg-color: var(--oc-gray-1);
  --gt-text-color: var(--oc-gray-8);
  color: var(--oc-gray-8);
}
body.dark-mode .gt-container .gt-header-textarea,
body.dark-mode .gt-container .gt-header-preview {
  background-color: var(--oc-gray-2);
  border-color: var(--oc-gray-3);
  color: var(--oc-gray-8);
}
body.dark-mode .gt-container .gt-comment-content {
  background-color: var(--oc-gray-2);
  border-color: var(--oc-gray-3);
  color: var(--oc-gray-8);
}
body.dark-mode .gt-container .gt-comment-content:hover {
  -webkit-box-shadow: 0 0.425em 1.75em 0 #949494;
  box-shadow: 0 0.425em 1.75em 0 #949494;
}
body.dark-mode .gt-container .gt-popup {
  background-color: var(--oc-gray-1);
  border-color: var(--oc-gray-3);
}
body.dark-mode .gt-container a.is--active {
  color: #ddd;
  cursor: default !important;
}
body.dark-mode .gt-container a.is--active:hover {
  color: #ddd;
}
body.dark-mode .gt-container .highlight pre,
body.dark-mode .gt-container pre {
  background-color: var(--oc-gray-1);
  color: var(--oc-gray-9);
}
body.dark-mode .highlight {
  background: var(--oc-gray-1) !important;
}
body.dark-mode .highlight .c,
body.dark-mode .highlight .cm,
body.dark-mode .highlight .c1,
body.dark-mode .highlight .cs {
  color: #8a9199 !important;
}
body.dark-mode .highlight .k,
body.dark-mode .highlight .o,
body.dark-mode .highlight .kc,
body.dark-mode .highlight .kd,
body.dark-mode .highlight .kp,
body.dark-mode .highlight .kr,
body.dark-mode .highlight .kt {
  color: #ff7b72 !important;
}
body.dark-mode .highlight .s,
body.dark-mode .highlight .sb,
body.dark-mode .highlight .sc,
body.dark-mode .highlight .sd,
body.dark-mode .highlight .s2,
body.dark-mode .highlight .se,
body.dark-mode .highlight .sh,
body.dark-mode .highlight .si,
body.dark-mode .highlight .sx,
body.dark-mode .highlight .s1,
body.dark-mode .highlight .ss {
  color: #a5d6ff !important;
}
body.dark-mode .highlight .m,
body.dark-mode .highlight .mf,
body.dark-mode .highlight .mh,
body.dark-mode .highlight .mi,
body.dark-mode .highlight .mo,
body.dark-mode .highlight .il {
  color: #79d3b3 !important;
}
body.dark-mode .highlight .na,
body.dark-mode .highlight .nb,
body.dark-mode .highlight .nc,
body.dark-mode .highlight .no,
body.dark-mode .highlight .ni,
body.dark-mode .highlight .ne,
body.dark-mode .highlight .nf,
body.dark-mode .highlight .nn,
body.dark-mode .highlight .nt,
body.dark-mode .highlight .nv,
body.dark-mode .highlight .vc,
body.dark-mode .highlight .vg,
body.dark-mode .highlight .vi {
  color: #d2a8ff !important;
}
body.dark-mode .highlight .err {
  color: #ffffff !important;
  background-color: #f87171 !important;
}
body.dark-mode .highlight .gd {
  color: #f87171 !important;
  background-color: #fee2e2 !important;
}
body.dark-mode .highlight .gi {
  color: #4ade80 !important;
  background-color: #dcfce7 !important;
}
body.dark-mode .markdown-body code {
  color: var(--oc-gray-0) !important;
}
body.dark-mode .markdown-body pre {
  color: var(--oc-gray-0) !important;
  border-color: var(--oc-gray-3) !important;
}
body.dark-mode .markdown-body .pl-c {
  color: #8a9199 !important;
}
body.dark-mode .markdown-body .pl-c1,
body.dark-mode .markdown-body .pl-s .pl-v {
  color: #7dd3fc !important;
}
body.dark-mode .markdown-body .pl-e,
body.dark-mode .markdown-body .pl-en {
  color: #d2a8ff !important;
}
body.dark-mode .markdown-body .pl-smi,
body.dark-mode .markdown-body .pl-s .pl-s1 {
  color: #e5e7eb !important;
}
body.dark-mode .markdown-body .pl-ent {
  color: #a7f3d0 !important;
}
body.dark-mode .markdown-body .pl-k {
  color: #ff7b72 !important;
}
body.dark-mode .markdown-body .pl-s,
body.dark-mode .markdown-body .pl-pds {
  color: #a5d6ff !important;
}
body.dark-mode .markdown-body .pl-v,
body.dark-mode .markdown-body .pl-smw {
  color: #fcd34d !important;
}
body.dark-mode .markdown-body .pl-bu {
  color: #f87171 !important;
}
body.dark-mode .markdown-body .pl-ii {
  color: #111827 !important;
  background-color: #f87171 !important;
}
body.dark-mode .markdown-body .pl-c2 {
  color: #111827 !important;
  background-color: #f87171 !important;
}
body.dark-mode .markdown-body .pl-sr .pl-cce {
  color: #a7f3d0 !important;
}
body.dark-mode .markdown-body .pl-ml {
  color: #fbbf24 !important;
}
body.dark-mode .markdown-body .pl-mh,
body.dark-mode .markdown-body .pl-mh .pl-en,
body.dark-mode .markdown-body .pl-ms {
  color: #7dd3fc !important;
}
body.dark-mode .markdown-body .pl-mi {
  color: #e5e7eb !important;
}
body.dark-mode code.highlighter-rouge {
  background-color: var(--oc-gray-2) !important;
  color: #e5e7eb !important;
  border: 1px solid var(--oc-gray-3) !important;
}

pre, code {
  font-family: "Menlo", "Courier New", "Monaco", monospace;
}

code.highlighter-rouge {
  font-size: 90%;
  color: #364fc7;
  background-color: #f1f3f5;
  padding: 0.1em 0.2em;
  border-radius: 3px;
}

pre.highlight {
  font-size: 14px;
  padding: 0.45em 0.45em 0.45em 0.625em;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  margin: 1em 0;
  overflow: scroll;
}

.highlight {
  background: #f8f9fa;
}

.highlight .c {
  color: #999988;
  font-style: italic;
} /* Comment */
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
} /* Error */
.highlight .k {
  font-weight: bold;
} /* Keyword */
.highlight .o {
  font-weight: bold;
} /* Operator */
.highlight .cm {
  color: #999988;
  font-style: italic;
} /* Comment.Multiline */
.highlight .cp {
  color: #999999;
  font-weight: bold;
} /* Comment.Preproc */
.highlight .c1 {
  color: #999988;
  font-style: italic;
} /* Comment.Single */
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
} /* Comment.Special */
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
} /* Generic.Deleted */
.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa;
} /* Generic.Deleted.Specific */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: #aa0000;
} /* Generic.Error */
.highlight .gh {
  color: #999999;
} /* Generic.Heading */
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
} /* Generic.Inserted */
.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa;
} /* Generic.Inserted.Specific */
.highlight .go {
  color: #888888;
} /* Generic.Output */
.highlight .gp {
  color: #555555;
} /* Generic.Prompt */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .gu {
  color: #aaaaaa;
} /* Generic.Subheading */
.highlight .gt {
  color: #aa0000;
} /* Generic.Traceback */
.highlight .kc {
  font-weight: bold;
} /* Keyword.Constant */
.highlight .kd {
  font-weight: bold;
} /* Keyword.Declaration */
.highlight .kp {
  font-weight: bold;
} /* Keyword.Pseudo */
.highlight .kr {
  font-weight: bold;
} /* Keyword.Reserved */
.highlight .kt {
  color: #445588;
  font-weight: bold;
} /* Keyword.Type */
.highlight .m {
  color: #009999;
} /* Literal.Number */
.highlight .s {
  color: #d14;
} /* Literal.String */
.highlight .na {
  color: #008080;
} /* Name.Attribute */
.highlight .nb {
  color: #0086B3;
} /* Name.Builtin */
.highlight .nc {
  color: #445588;
  font-weight: bold;
} /* Name.Class */
.highlight .no {
  color: #008080;
} /* Name.Constant */
.highlight .ni {
  color: #800080;
} /* Name.Entity */
.highlight .ne {
  color: #990000;
  font-weight: bold;
} /* Name.Exception */
.highlight .nf {
  color: #990000;
  font-weight: bold;
} /* Name.Function */
.highlight .nn {
  color: #555555;
} /* Name.Namespace */
.highlight .nt {
  color: #000080;
} /* Name.Tag */
.highlight .nv {
  color: #008080;
} /* Name.Variable */
.highlight .ow {
  font-weight: bold;
} /* Operator.Word */
.highlight .w {
  color: #bbbbbb;
} /* Text.Whitespace */
.highlight .mf {
  color: #009999;
} /* Literal.Number.Float */
.highlight .mh {
  color: #009999;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #009999;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #009999;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #d14;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #d14;
} /* Literal.String.Char */
.highlight .sd {
  color: #d14;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #d14;
} /* Literal.String.Double */
.highlight .se {
  color: #d14;
} /* Literal.String.Escape */
.highlight .sh {
  color: #d14;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #d14;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #d14;
} /* Literal.String.Other */
.highlight .sr {
  color: #009926;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #d14;
} /* Literal.String.Single */
.highlight .ss {
  color: #990073;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #999999;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #008080;
} /* Name.Variable.Class */
.highlight .vg {
  color: #008080;
} /* Name.Variable.Global */
.highlight .vi {
  color: #008080;
} /* Name.Variable.Instance */
.highlight .il {
  color: #009999;
} /* Literal.Number.Integer.Long */

/*# sourceMappingURL=style.css.map */