/*
 * Editor.md
 *
 * @file        editormd.css
 * @version     v1.5.0
 * @description Open source online markdown editor.
 * @license     MIT License
 * @author      Pandao
 * {@link       https://github.com/pandao/editor.md}
 * @updateTime  2015-06-09
 */

@charset "UTF-8";
/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
.editormd {
  width: 90%;
  height: 640px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-family: "Meiryo UI", "Microsoft YaHei", "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, "Monaco", monospace, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
}
.editormd *, .editormd *:before, .editormd *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.editormd a {
  text-decoration: none;
}
.editormd img {
  border: none;
  vertical-align: middle;
}
.editormd > textarea,
.editormd .editormd-html-textarea,
.editormd .editormd-markdown-textarea {
  width: 0;
  height: 0;
  outline: 0;
  resize: none;
}
.editormd .editormd-html-textarea,
.editormd .editormd-markdown-textarea {
  display: none;
}
.editormd input[type="text"],
.editormd input[type="button"],
.editormd input[type="submit"],
.editormd select, .editormd textarea, .editormd button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.editormd ::-webkit-scrollbar {
  height: 10px;
  width: 7px;
  background: rgba(0, 0, 0, 0.1);
}
.editormd ::-webkit-scrollbar:hover {
  background: rgba(0, 0, 0, 0.2);
}
.editormd ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.editormd ::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  /* Webkit browsers */
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  /* Firefox */
  -ms-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  /* IE9 */
  -o-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  /* Opera(Old) */
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  /* IE9+, News */
  background-color: rgba(0, 0, 0, 0.4);
}

.editormd-user-unselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.editormd-toolbar {
  width: 100%;
  min-height: 37px;
  background: #fff;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid #ddd;
}

.editormd-toolbar-container {
  padding: 0 8px;
  min-height: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.editormd-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.editormd-menu > li {
  margin: 0;
  padding: 5px 1px;
  display: inline-block;
  position: relative;
}
.editormd-menu > li.divider {
  display: inline-block;
  text-indent: -9999px;
  margin: 0 5px;
  height: 65%;
  border-right: 1px solid #ddd;
}
.editormd-menu > li > a {
  outline: 0;
  color: #666;
  display: inline-block;
  min-width: 24px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #fff;
  -webkit-transition: all 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: all 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: all 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-menu > li > a:hover, .editormd-menu > li > a.active {
  border: 1px solid #ddd;
  background: #eee;
}
.editormd-menu > li > a > .fa {
  text-align: center;
  display: block;
  padding: 5px;
}
.editormd-menu > li > a > .editormd-bold {
  padding: 5px 2px;
  display: inline-block;
  font-weight: bold;
}
.editormd-menu > li:hover .editormd-dropdown-menu {
  display: block;
}
.editormd-menu > li + li > a {
  margin-left: 3px;
}

.editormd-dropdown-menu {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  width: 148px;
  list-style: none;
  position: absolute;
  top: 33px;
  left: 0;
  z-index: 100;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  /* Webkit browsers */
  -moz-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  /* Firefox */
  -ms-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  /* IE9 */
  -o-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  /* Opera(Old) */
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  /* IE9+, News */
}
.editormd-dropdown-menu:before, .editormd-dropdown-menu:after {
  width: 0;
  height: 0;
  display: block;
  content: "";
  position: absolute;
  top: -11px;
  left: 8px;
  border: 5px solid transparent;
}
.editormd-dropdown-menu:before {
  border-bottom-color: #ccc;
}
.editormd-dropdown-menu:after {
  border-bottom-color: #ffffff;
  top: -10px;
}
.editormd-dropdown-menu > li > a {
  color: #666;
  display: block;
  text-decoration: none;
  padding: 8px 10px;
}
.editormd-dropdown-menu > li > a:hover {
  background: #f6f6f6;
  -webkit-transition: all 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: all 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: all 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-dropdown-menu > li + li {
  border-top: 1px solid #ddd;
}

.editormd-container {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 35px 0 0;
  position: relative;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.editormd-dialog {
  color: #666;
  position: fixed;
  z-index: 99999;
  display: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* Webkit browsers */
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* Firefox */
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* IE9 */
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* Opera(Old) */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* IE9+, News */
  background: #fff;
  font-size: 14px;
}

.editormd-dialog-container {
  position: relative;
  padding: 20px;
  line-height: 1.4;
}
.editormd-dialog-container h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
.editormd-dialog-container h1 .fa {
  color: #2C7EEA;
  padding-right: 5px;
}
.editormd-dialog-container h1 small {
  padding-left: 5px;
  font-weight: normal;
  font-size: 12px;
  color: #999;
}
.editormd-dialog-container select {
  color: #999;
  padding: 3px 8px;
  border: 1px solid #ddd;
}

.editormd-dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 18px;
  color: #ccc;
  -webkit-transition: color 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: color 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: color 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-dialog-close:hover {
  color: #999;
}

.editormd-dialog-header {
  padding: 11px 20px;
  border-bottom: 1px solid #eee;
  -webkit-transition: background 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: background 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: background 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-dialog-header:hover {
  background: #f6f6f6;
}

.editormd-dialog-title {
  font-size: 14px;
}

.editormd-dialog-footer {
  padding: 10px 0 0 0;
  text-align: right;
}

.editormd-dialog-info {
  width: 420px;
}
.editormd-dialog-info h1 {
  font-weight: normal;
}
.editormd-dialog-info .editormd-dialog-container {
  padding: 20px 25px 25px;
}
.editormd-dialog-info .editormd-dialog-close {
  top: 10px;
  right: 10px;
}
.editormd-dialog-info p > a, .editormd-dialog-info .hover-link:hover {
  color: #2196F3;
}
.editormd-dialog-info .hover-link {
  color: #666;
}
.editormd-dialog-info a .fa-external-link {
  display: none;
}
.editormd-dialog-info a:hover {
  color: #2196F3;
}
.editormd-dialog-info a:hover .fa-external-link {
  display: inline-block;
}

.editormd-mask,
.editormd-container-mask,
.editormd-dialog-mask {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.editormd-mask,
.editormd-dialog-mask-bg {
  background: #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.editormd-mask {
  position: fixed;
  background: #000;
  opacity: 0.2;
  /* W3C */
  filter: alpha(opacity=20);
  /* IE */
  z-index: 99998;
}

.editormd-container-mask,
.editormd-dialog-mask-con {
  background: url(../images/loading.gif) no-repeat center center;
  -webkit-background-size: 32px 32px;
  /* Chrome, iOS, Safari */
  -moz-background-size: 32px 32px;
  /* Firefox 3.6~4.0 */
  -o-background-size: 32px 32px;
  /* Opera 9.5 */
  background-size: 32px 32px;
  /* IE9+, New */
}

.editormd-container-mask {
  z-index: 20;
  display: block;
  background-color: #fff;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .editormd-container-mask,
  .editormd-dialog-mask-con {
    background-image: url(../images/loading@2x.gif);
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3) {
  .editormd-container-mask,
  .editormd-dialog-mask-con {
    background-image: url(../images/loading@3x.gif);
  }
}
.editormd-code-block-dialog textarea,
.editormd-preformatted-text-dialog textarea {
  width: 100%;
  height: 400px;
  margin-bottom: 6px;
  overflow: auto;
  border: 1px solid #eee;
  background: #fff;
  padding: 15px;
  resize: none;
}

.editormd-code-toolbar {
  color: #999;
  font-size: 14px;
  margin: -5px 0 10px;
}

.editormd-grid-table {
  width: 99%;
  display: table;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.editormd-grid-table-row {
  width: 100%;
  display: table-row;
}
.editormd-grid-table-row a {
  font-size: 1.4em;
  width: 5%;
  height: 36px;
  color: #999;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  border: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: background-color 300ms ease-out, color 100ms ease-in;
  /* Safari, Chrome */
  -moz-transition: background-color 300ms ease-out, color 100ms ease-in;
  /* Firefox 4.0~16.0 */
  transition: background-color 300ms ease-out, color 100ms ease-in;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-grid-table-row a.selected {
  color: #666;
  background-color: #eee;
}
.editormd-grid-table-row a:hover {
  color: #777;
  background-color: #f6f6f6;
}

.editormd-tab-head {
  list-style: none;
  border-bottom: 1px solid #ddd;
}
.editormd-tab-head li {
  display: inline-block;
}
.editormd-tab-head li a {
  color: #999;
  display: block;
  padding: 6px 12px 5px;
  text-align: center;
  text-decoration: none;
  margin-bottom: -1px;
  border: 1px solid #ddd;
  -webkit-border-top-left-radius: 3px;
  -moz-border-top-left-radius: 3px;
  -ms-border-top-left-radius: 3px;
  -o-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-top-right-radius: 3px;
  -ms-border-top-right-radius: 3px;
  -o-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  background: #f6f6f6;
  -webkit-transition: all 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: all 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: all 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-tab-head li a:hover {
  color: #666;
  background: #eee;
}
.editormd-tab-head li.active a {
  color: #666;
  background: #fff;
  border-bottom-color: #fff;
}
.editormd-tab-head li + li {
  margin-left: 3px;
}

.editormd-tab-box {
  padding: 20px 0;
}

.editormd-form {
  color: #666;
}
.editormd-form label {
  float: left;
  display: block;
  width: 75px;
  text-align: left;
  padding: 7px 0 15px 5px;
  margin: 0 0 2px;
  font-weight: normal;
}
.editormd-form br {
  clear: both;
}
.editormd-form iframe {
  display: none;
}
.editormd-form input:focus {
  outline: 0;
}
.editormd-form input[type="text"], .editormd-form input[type="number"] {
  color: #999;
  padding: 8px;
  border: 1px solid #ddd;
}
.editormd-form input[type="number"] {
  width: 40px;
  display: inline-block;
  padding: 6px 8px;
}
.editormd-form input[type="text"] {
  display: inline-block;
  width: 264px;
}
.editormd-form .fa-btns {
  display: inline-block;
}
.editormd-form .fa-btns a {
  color: #999;
  padding: 7px 10px 0 0;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.editormd-form .fa-btns .fa {
  font-size: 1.3em;
}
.editormd-form .fa-btns label {
  float: none;
  display: inline-block;
  width: auto;
  text-align: left;
  padding: 0 0 0 5px;
  cursor: pointer;
}

.editormd-form input[type="submit"], .editormd-form .editormd-btn, .editormd-form button,
.editormd-dialog-container input[type="submit"],
.editormd-dialog-container .editormd-btn,
.editormd-dialog-container button,
.editormd-dialog-footer input[type="submit"],
.editormd-dialog-footer .editormd-btn,
.editormd-dialog-footer button {
  color: #666;
  min-width: 75px;
  cursor: pointer;
  background: #fff;
  padding: 7px 10px;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: background 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: background 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-form input[type="submit"]:hover, .editormd-form .editormd-btn:hover, .editormd-form button:hover,
.editormd-dialog-container input[type="submit"]:hover,
.editormd-dialog-container .editormd-btn:hover,
.editormd-dialog-container button:hover,
.editormd-dialog-footer input[type="submit"]:hover,
.editormd-dialog-footer .editormd-btn:hover,
.editormd-dialog-footer button:hover {
  background: #eee;
}
.editormd-form .editormd-btn,
.editormd-dialog-container .editormd-btn,
.editormd-dialog-footer .editormd-btn {
  padding: 5px 8px 4px\0;
}
.editormd-form .editormd-btn + .editormd-btn,
.editormd-dialog-container .editormd-btn + .editormd-btn,
.editormd-dialog-footer .editormd-btn + .editormd-btn {
  margin-left: 8px;
}

.editormd-file-input {
  width: 75px;
  height: 32px;
  margin-left: 8px;
  position: relative;
  display: inline-block;
}
.editormd-file-input input[type="file"] {
  width: 75px;
  height: 32px;
  opacity: 0;
  cursor: pointer;
  background: #000;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.editormd-file-input input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}
.editormd-file-input:hover input[type="submit"] {
  background: #eee;
}

.editormd .CodeMirror, .editormd-preview {
  display: inline-block;
  width: 50%;
  height: 100%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

.editormd-preview {
  position: absolute;
  top: 35px;
  right: 0;
  right: -1px\0;
  overflow: auto;
  line-height: 1.6;
  display: none;
  background: #fff;
}

.editormd .CodeMirror {
  z-index: 10;
  float: left;
  border-right: 1px solid #ddd;
  font-size: 14px;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 1.6;
  margin-top: 35px;
}
.editormd .CodeMirror pre {
  font-size: 14px;
  padding: 0 12px;
}
.editormd .CodeMirror-linenumbers {
  padding: 0 5px;
}
.editormd .CodeMirror-selected {
  background: #70B7FF;
}
.editormd .CodeMirror-focused .CodeMirror-selected {
  background: #70B7FF;
}
.editormd .CodeMirror, .editormd .CodeMirror-scroll, .editormd .editormd-preview {
  -webkit-overflow-scrolling: touch;
}
.editormd .styled-background {
  background-color: #ff7;
}
.editormd .CodeMirror-focused .cm-matchhighlight {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==);
  background-position: bottom;
  background-repeat: repeat-x;
}
.editormd .CodeMirror-empty.CodeMirror-focused {
  outline: none;
}
.editormd .CodeMirror pre.CodeMirror-placeholder {
  color: #999;
}
.editormd .cm-trailingspace {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==);
  background-position: bottom left;
  background-repeat: repeat-x;
}
.editormd .cm-tab {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  background-position: right;
  background-repeat: no-repeat;
}

/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
@font-face {
  font-family: 'editormd-logo';
  src: url("../fonts/editormd-logo.eot?-5y8q6h");
  src: url(".../fonts/editormd-logo.eot?#iefix-5y8q6h") format("embedded-opentype"), url("../fonts/editormd-logo.woff?-5y8q6h") format("woff"), url("../fonts/editormd-logo.ttf?-5y8q6h") format("truetype"), url("../fonts/editormd-logo.svg?-5y8q6h#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.editormd-logo,
.editormd-logo-1x,
.editormd-logo-2x,
.editormd-logo-3x,
.editormd-logo-4x,
.editormd-logo-5x,
.editormd-logo-6x,
.editormd-logo-7x,
.editormd-logo-8x {
  font-family: 'editormd-logo';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: inherit;
  line-height: 1;
  display: inline-block;
  text-rendering: auto;
  vertical-align: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.editormd-logo:before,
.editormd-logo-1x:before,
.editormd-logo-2x:before,
.editormd-logo-3x:before,
.editormd-logo-4x:before,
.editormd-logo-5x:before,
.editormd-logo-6x:before,
.editormd-logo-7x:before,
.editormd-logo-8x:before {
  content: "\e1987";
  /*
  HTML Entity &#xe1987;
  example: <span class="editormd-logo">&#xe1987;</span>
  */
}

.editormd-logo-1x {
  font-size: 1em;
}

.editormd-logo-lg {
  font-size: 1.2em;
}

.editormd-logo-2x {
  font-size: 2em;
}

.editormd-logo-3x {
  font-size: 3em;
}

.editormd-logo-4x {
  font-size: 4em;
}

.editormd-logo-5x {
  font-size: 5em;
}

.editormd-logo-6x {
  font-size: 6em;
}

.editormd-logo-7x {
  font-size: 7em;
}

.editormd-logo-8x {
  font-size: 8em;
}

.editormd-logo-color {
  color: #2196F3;
}

/*! github-markdown-css | The MIT License (MIT) | Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) | https://github.com/sindresorhus/github-markdown-css */
@font-face {
  font-family: octicons-anchor;
  src: url(data:font/woff;charset=utf-8;base64,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) format("woff");
}
.markdown-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333;
  overflow: hidden;
  font-family: "Microsoft YaHei", Helvetica, "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", "Monaco", monospace, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
}

.markdown-body a {
  background: transparent;
}

.markdown-body a:active,
.markdown-body a:hover {
  outline: 0;
}

.markdown-body strong {
  font-weight: bold;
}

.markdown-body h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.markdown-body img {
  border: 0;
}

.markdown-body hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

.markdown-body pre {
  overflow: auto;
}

.markdown-body code,
.markdown-body kbd,
.markdown-body pre {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1em;
}

.markdown-body input {
  color: inherit;
  font: inherit;
  margin: 0;
}

.markdown-body html input[disabled] {
  cursor: default;
}

.markdown-body input {
  line-height: normal;
}

.markdown-body input[type="checkbox"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

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

.markdown-body * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.markdown-body input {
  font: 13px/1.4 Helvetica, arial, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
}

.markdown-body a {
  color: #4183c4;
  text-decoration: none;
}

.markdown-body a:hover,
.markdown-body a:active {
  text-decoration: underline;
}

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

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

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

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.markdown-body h1 {
  font-size: 30px;
}

.markdown-body h2 {
  font-size: 21px;
}

.markdown-body h3 {
  font-size: 16px;
}

.markdown-body h4 {
  font-size: 14px;
}

.markdown-body h5 {
  font-size: 12px;
}

.markdown-body h6 {
  font-size: 11px;
}

.markdown-body blockquote {
  margin: 0;
}

.markdown-body ul,
.markdown-body ol {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

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

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

.markdown-body dd {
  margin-left: 0;
}

.markdown-body code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
}

.markdown-body pre {
  margin-top: 0;
  margin-bottom: 0;
  font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.markdown-body .octicon {
  font: normal normal 16px octicons-anchor;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.markdown-body .octicon-link:before {
  content: '\f05c';
}

.markdown-body > *:first-child {
  margin-top: 0 !important;
}

.markdown-body > *:last-child {
  margin-bottom: 0 !important;
}

.markdown-body .anchor {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding-right: 6px;
  padding-left: 30px;
  margin-left: -30px;
}

.markdown-body .anchor:focus {
  outline: none;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  position: relative;
  margin-top: 1em;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
  display: none;
  color: #000;
  vertical-align: middle;
}

.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
  padding-left: 8px;
  margin-left: -30px;
  text-decoration: none;
}

.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
  display: inline-block;
}

.markdown-body h1 {
  padding-bottom: 0.3em;
  font-size: 2.25em;
  line-height: 1.2;
  border-bottom: 1px solid #eee;
}

.markdown-body h1 .anchor {
  line-height: 1;
}

.markdown-body h2 {
  padding-bottom: 0.3em;
  font-size: 1.75em;
  line-height: 1.225;
  border-bottom: 1px solid #eee;
}

.markdown-body h2 .anchor {
  line-height: 1;
}

.markdown-body h3 {
  font-size: 1.5em;
  line-height: 1.43;
}

.markdown-body h3 .anchor {
  line-height: 1.2;
}

.markdown-body h4 {
  font-size: 1.25em;
}

.markdown-body h4 .anchor {
  line-height: 1.2;
}

.markdown-body h5 {
  font-size: 1em;
}

.markdown-body h5 .anchor {
  line-height: 1.1;
}

.markdown-body h6 {
  font-size: 1em;
  color: #777;
}

.markdown-body h6 .anchor {
  line-height: 1.1;
}

.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre {
  margin-top: 0;
  margin-bottom: 16px;
}

/*
.markdown-body hr {
  height: 4px;
  padding: 0;
  margin: 16px 0;
  background-color: #e7e7e7;
  border: 0 none;
}*/
.markdown-body ul,
.markdown-body ol {
  padding-left: 2em;
}

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

.markdown-body li > p {
  margin-top: 16px;
}

.markdown-body dl {
  padding: 0;
}

.markdown-body dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: bold;
}

.markdown-body dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

.markdown-body blockquote {
  padding: 0 15px;
  color: #777;
  border-left: 4px solid #ddd;
}

.markdown-body blockquote > :first-child {
  margin-top: 0;
}

.markdown-body blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-body table {
  display: block;
  width: 100%;
  overflow: auto;
  word-break: normal;
  word-break: keep-all;
}

.markdown-body table th {
  font-weight: bold;
}

.markdown-body table th,
.markdown-body table td {
  padding: 6px 13px;
  border: 1px solid #ddd;
}

.markdown-body table tr {
  background-color: #fff;
  border-top: 1px solid #ccc;
}

.markdown-body table tr:nth-child(2n) {
  background-color: #f8f8f8;
}

.markdown-body img {
  max-width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.markdown-body code {
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 0;
  font-size: 85%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
}

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

.markdown-body pre > code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

.markdown-body .highlight {
  margin-bottom: 16px;
}

.markdown-body .highlight pre,
.markdown-body pre {
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background-color: #f7f7f7;
  border-radius: 3px;
}

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

.markdown-body pre {
  word-wrap: normal;
}

.markdown-body pre code {
  display: inline;
  max-width: initial;
  padding: 0;
  margin: 0;
  overflow: initial;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

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

.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #555;
  vertical-align: middle;
  background-color: #fcfcfc;
  border: solid 1px #ccc;
  border-bottom-color: #bbb;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #bbb;
}

.markdown-body .pl-c {
  color: #969896;
}

.markdown-body .pl-c1,
.markdown-body .pl-mdh,
.markdown-body .pl-mm,
.markdown-body .pl-mp,
.markdown-body .pl-mr,
.markdown-body .pl-s1 .pl-v,
.markdown-body .pl-s3,
.markdown-body .pl-sc,
.markdown-body .pl-sv {
  color: #0086b3;
}

.markdown-body .pl-e,
.markdown-body .pl-en {
  color: #795da3;
}

.markdown-body .pl-s1 .pl-s2,
.markdown-body .pl-smi,
.markdown-body .pl-smp,
.markdown-body .pl-stj,
.markdown-body .pl-vo,
.markdown-body .pl-vpf {
  color: #333;
}

.markdown-body .pl-ent {
  color: #63a35c;
}

.markdown-body .pl-k,
.markdown-body .pl-s,
.markdown-body .pl-st {
  color: #a71d5d;
}

.markdown-body .pl-pds,
.markdown-body .pl-s1,
.markdown-body .pl-s1 .pl-pse .pl-s2,
.markdown-body .pl-sr,
.markdown-body .pl-sr .pl-cce,
.markdown-body .pl-sr .pl-sra,
.markdown-body .pl-sr .pl-sre,
.markdown-body .pl-src {
  color: #df5000;
}

.markdown-body .pl-mo,
.markdown-body .pl-v {
  color: #1d3e81;
}

.markdown-body .pl-id {
  color: #b52a1d;
}

.markdown-body .pl-ii {
  background-color: #b52a1d;
  color: #f8f8f8;
}

.markdown-body .pl-sr .pl-cce {
  color: #63a35c;
  font-weight: bold;
}

.markdown-body .pl-ml {
  color: #693a17;
}

.markdown-body .pl-mh,
.markdown-body .pl-mh .pl-en,
.markdown-body .pl-ms {
  color: #1d3e81;
  font-weight: bold;
}

.markdown-body .pl-mq {
  color: #008080;
}

.markdown-body .pl-mi {
  color: #333;
  font-style: italic;
}

.markdown-body .pl-mb {
  color: #333;
  font-weight: bold;
}

.markdown-body .pl-md,
.markdown-body .pl-mdhf {
  background-color: #ffecec;
  color: #bd2c00;
}

.markdown-body .pl-mdht,
.markdown-body .pl-mi1 {
  background-color: #eaffea;
  color: #55a532;
}

.markdown-body .pl-mdr {
  color: #795da3;
  font-weight: bold;
}

.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 10px;
  color: #555;
  vertical-align: middle;
  background-color: #fcfcfc;
  border: solid 1px #ccc;
  border-bottom-color: #bbb;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #bbb;
}

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

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

.markdown-body .task-list-item input {
  float: left;
  margin: 0.3em 0 0.25em -1.6em;
  vertical-align: middle;
}

.markdown-body :checked + .radio-label {
  z-index: 1;
  position: relative;
  border-color: #4183c4;
}

.editormd-preview-container, .editormd-html-preview {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
  overflow: auto;
  width: 100%;
  background-color: #fff;
}
.editormd-preview-container blockquote, .editormd-html-preview blockquote {
  color: #666;
  border-left: 4px solid #ddd;
  padding-left: 20px;
  margin-left: 0;
  font-size: 14px;
  font-style: italic;
}
.editormd-preview-container p code, .editormd-html-preview p code {
  margin-left: 5px;
  margin-right: 4px;
}
.editormd-preview-container abbr, .editormd-html-preview abbr {
  background: #ffffdd;
}
.editormd-preview-container hr, .editormd-html-preview hr {
  height: 1px;
  border: none;
  border-top: 1px solid #ddd;
  background: none;
}
.editormd-preview-container code, .editormd-html-preview code {
  border: 1px solid #ddd;
  background: #f6f6f6;
  padding: 3px;
  border-radius: 3px;
  font-size: 14px;
}
.editormd-preview-container pre, .editormd-html-preview pre {
  border: 1px solid #ddd;
  background: #f6f6f6;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.editormd-preview-container pre code, .editormd-html-preview pre code {
  padding: 0;
}
.editormd-preview-container pre, .editormd-preview-container code, .editormd-preview-container kbd, .editormd-html-preview pre, .editormd-html-preview code, .editormd-html-preview kbd {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.editormd-preview-container table thead tr, .editormd-html-preview table thead tr {
  background-color: #F8F8F8;
}
.editormd-preview-container p.editormd-tex, .editormd-html-preview p.editormd-tex {
  text-align: center;
}
.editormd-preview-container span.editormd-tex, .editormd-html-preview span.editormd-tex {
  margin: 0 5px;
}
.editormd-preview-container .emoji, .editormd-html-preview .emoji {
  width: 24px;
  height: 24px;
}
.editormd-preview-container .katex, .editormd-html-preview .katex {
  font-size: 1.4em;
}
.editormd-preview-container .sequence-diagram, .editormd-preview-container .flowchart, .editormd-html-preview .sequence-diagram, .editormd-html-preview .flowchart {
  margin: 0 auto;
  text-align: center;
}
.editormd-preview-container .sequence-diagram svg, .editormd-preview-container .flowchart svg, .editormd-html-preview .sequence-diagram svg, .editormd-html-preview .flowchart svg {
  margin: 0 auto;
}
.editormd-preview-container .sequence-diagram text, .editormd-preview-container .flowchart text, .editormd-html-preview .sequence-diagram text, .editormd-html-preview .flowchart text {
  font-size: 15px !important;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

/*! Pretty printing styles. Used with prettify.js. */
/* SPAN elements with the classes below are added by prettyprint. */
.pln {
  color: #000;
}

/* plain text */
@media screen {
  .str {
    color: #080;
  }

  /* string content */
  .kwd {
    color: #008;
  }

  /* a keyword */
  .com {
    color: #800;
  }

  /* a comment */
  .typ {
    color: #606;
  }

  /* a type name */
  .lit {
    color: #066;
  }

  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  .pun, .opn, .clo {
    color: #660;
  }

  .tag {
    color: #008;
  }

  /* a markup tag name */
  .atn {
    color: #606;
  }

  /* a markup attribute name */
  .atv {
    color: #080;
  }

  /* a markup attribute value */
  .dec, .var {
    color: #606;
  }

  /* a declaration; a variable name */
  .fun {
    color: red;
  }

  /* a function name */
}
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
  .str {
    color: #060;
  }

  .kwd {
    color: #006;
    font-weight: bold;
  }

  .com {
    color: #600;
    font-style: italic;
  }

  .typ {
    color: #404;
    font-weight: bold;
  }

  .lit {
    color: #044;
  }

  .pun, .opn, .clo {
    color: #440;
  }

  .tag {
    color: #006;
    font-weight: bold;
  }

  .atn {
    color: #404;
  }

  .atv {
    color: #060;
  }
}
/* Put a border around prettyprinted code snippets. */
pre.prettyprint {
  padding: 2px;
  border: 1px solid #888;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
}

/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
  list-style-type: none;
}

/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
  background: #eee;
}

.editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint {
  padding: 10px;
  border: 1px solid #ddd;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums {
  color: #999;
  padding-left: 2.5em;
}
.editormd-preview-container ol.linenums li, .editormd-html-preview ol.linenums li {
  list-style-type: decimal;
}
.editormd-preview-container ol.linenums li code, .editormd-html-preview ol.linenums li code {
  border: none;
  background: none;
  padding: 0;
}

.editormd-preview-container .editormd-toc-menu, .editormd-html-preview .editormd-toc-menu {
  margin: 8px 0 12px 0;
  display: inline-block;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc, .editormd-html-preview .editormd-toc-menu > .markdown-toc {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ddd;
  display: inline-block;
  font-size: 1em;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul {
  width: 160%;
  min-width: 180px;
  position: absolute;
  left: -1px;
  top: -2px;
  z-index: 100;
  padding: 0 10px 10px;
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Webkit browsers */
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Firefox */
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* IE9 */
  -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Opera(Old) */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* IE9+, News */
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li ul {
  width: 100%;
  min-width: 180px;
  border: 1px solid #ddd;
  display: none;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a {
  color: #666;
  padding: 6px 10px;
  display: block;
  -webkit-transition: background-color 500ms ease-out;
  /* Safari, Chrome */
  -moz-transition: background-color 500ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: background-color 500ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a:hover, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a:hover {
  background-color: #f6f6f6;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc li, .editormd-html-preview .editormd-toc-menu > .markdown-toc li {
  position: relative;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul {
  position: absolute;
  top: 32px;
  left: 10%;
  display: none;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Webkit browsers */
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Firefox */
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* IE9 */
  -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* Opera(Old) */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  /* IE9+, News */
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after {
  pointer-events: pointer-events;
  position: absolute;
  left: 15px;
  top: -6px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-width: 0 6px 6px;
  z-index: 10;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before {
  border-bottom-color: #ccc;
}
.editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after {
  border-bottom-color: #ffffff;
  top: -5px;
}
.editormd-preview-container .editormd-toc-menu ul, .editormd-html-preview .editormd-toc-menu ul {
  list-style: none;
}
.editormd-preview-container .editormd-toc-menu a, .editormd-html-preview .editormd-toc-menu a {
  text-decoration: none;
}
.editormd-preview-container .editormd-toc-menu h1, .editormd-html-preview .editormd-toc-menu h1 {
  font-size: 16px;
  padding: 5px 0 10px 10px;
  line-height: 1;
  border-bottom: 1px solid #eee;
}
.editormd-preview-container .editormd-toc-menu h1 .fa, .editormd-html-preview .editormd-toc-menu h1 .fa {
  padding-left: 10px;
}
.editormd-preview-container .editormd-toc-menu .toc-menu-btn, .editormd-html-preview .editormd-toc-menu .toc-menu-btn {
  color: #666;
  min-width: 180px;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: background-color 500ms ease-out;
  /* Safari, Chrome */
  -moz-transition: background-color 500ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: background-color 500ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-preview-container .editormd-toc-menu .toc-menu-btn:hover, .editormd-html-preview .editormd-toc-menu .toc-menu-btn:hover {
  background-color: #f6f6f6;
}
.editormd-preview-container .editormd-toc-menu .toc-menu-btn .fa, .editormd-html-preview .editormd-toc-menu .toc-menu-btn .fa {
  float: right;
  padding: 3px 0 0 10px;
  font-size: 1.3em;
}

.markdown-body .editormd-toc-menu ul {
  padding-left: 0;
}
.markdown-body .highlight pre, .markdown-body pre {
  line-height: 1.6;
}

hr.editormd-page-break {
  border: 1px dotted #ccc;
  font-size: 0;
  height: 2px;
}

@media only print {
  hr.editormd-page-break {
    background: none;
    border: none;
    height: 0;
  }
}
.editormd-html-preview textarea {
  display: none;
}
.editormd-html-preview hr.editormd-page-break {
  background: none;
  border: none;
  height: 0;
}

.editormd-preview-close-btn {
  color: #fff;
  padding: 4px 6px;
  font-size: 18px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
  border-radius: 500px;
  display: none;
  background-color: #ccc;
  position: absolute;
  top: 25px;
  right: 35px;
  z-index: 19;
  -webkit-transition: background-color 300ms ease-out;
  /* Safari, Chrome */
  -moz-transition: background-color 300ms ease-out;
  /* Firefox 4.0~16.0 */
  transition: background-color 300ms ease-out;
  /* IE >9, FF >15, Opera >12.0 */
}
.editormd-preview-close-btn:hover {
  background-color: #999;
}

.editormd-preview-active {
  width: 100%;
  padding: 40px;
}

/* Preview dark theme */
.editormd-preview-theme-dark {
  color: #777;
  background: #2C2827;
}
.editormd-preview-theme-dark .editormd-preview-container {
  color: #888;
  background-color: #2C2827;
}
.editormd-preview-theme-dark .editormd-preview-container pre.prettyprint {
  border: none;
}
.editormd-preview-theme-dark .editormd-preview-container blockquote {
  color: #555;
  padding: 0.5em;
  background: #222;
  border-color: #333;
}
.editormd-preview-theme-dark .editormd-preview-container abbr {
  color: #fff;
  padding: 1px 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #ff9900;
}
.editormd-preview-theme-dark .editormd-preview-container code {
  color: #fff;
  border: none;
  padding: 1px 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #5A9600;
}
.editormd-preview-theme-dark .editormd-preview-container table {
  border: none;
}
.editormd-preview-theme-dark .editormd-preview-container .fa-emoji {
  color: #B4BF42;
}
.editormd-preview-theme-dark .editormd-preview-container .katex {
  color: #FEC93F;
}
.editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc {
  background: #fff;
  border: none;
}
.editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc h1 {
  border-color: #ddd;
}
.editormd-preview-theme-dark .markdown-body h1, .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body hr {
  border-color: #222;
}
.editormd-preview-theme-dark pre {
  color: #999;
  background-color: #111;
  background-color: rgba(0, 0, 0, 0.4);
  /* plain text */
}
.editormd-preview-theme-dark pre .pln {
  color: #999;
}
.editormd-preview-theme-dark li.L1, .editormd-preview-theme-dark li.L3, .editormd-preview-theme-dark li.L5, .editormd-preview-theme-dark li.L7, .editormd-preview-theme-dark li.L9 {
  background: none;
}
.editormd-preview-theme-dark [class*=editormd-logo] {
  color: #2196F3;
}
.editormd-preview-theme-dark .sequence-diagram text {
  fill: #fff;
}
.editormd-preview-theme-dark .sequence-diagram rect, .editormd-preview-theme-dark .sequence-diagram path {
  color: #fff;
  fill: #64D1CB;
  stroke: #64D1CB;
}
.editormd-preview-theme-dark .flowchart rect, .editormd-preview-theme-dark .flowchart path {
  stroke: #A6C6FF;
}
.editormd-preview-theme-dark .flowchart rect {
  fill: #A6C6FF;
}
.editormd-preview-theme-dark .flowchart text {
  fill: #5879B4;
}

@media screen {
  .editormd-preview-theme-dark {
    /* string content */
    /* a keyword */
    /* a comment */
    /* a type name */
    /* a literal value */
    /* punctuation, lisp open bracket, lisp close bracket */
    /* a markup tag name */
    /* a markup attribute name */
    /* a markup attribute value */
    /* a declaration; a variable name */
    /* a function name */
  }
  .editormd-preview-theme-dark .str {
    color: #080;
  }
  .editormd-preview-theme-dark .kwd {
    color: #ff9900;
  }
  .editormd-preview-theme-dark .com {
    color: #444444;
  }
  .editormd-preview-theme-dark .typ {
    color: #606;
  }
  .editormd-preview-theme-dark .lit {
    color: #066;
  }
  .editormd-preview-theme-dark .pun, .editormd-preview-theme-dark .opn, .editormd-preview-theme-dark .clo {
    color: #660;
  }
  .editormd-preview-theme-dark .tag {
    color: #ff9900;
  }
  .editormd-preview-theme-dark .atn {
    color: #6C95F5;
  }
  .editormd-preview-theme-dark .atv {
    color: #080;
  }
  .editormd-preview-theme-dark .dec, .editormd-preview-theme-dark .var {
    color: #008BA7;
  }
  .editormd-preview-theme-dark .fun {
    color: red;
  }
}
.editormd-onlyread .editormd-toolbar {
  display: none;
}
.editormd-onlyread .CodeMirror {
  margin-top: 0;
}
.editormd-onlyread .editormd-preview {
  top: 0;
}

.editormd-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  border: none;
  margin: 0 auto;
}

/* Editor.md Dark theme */
.editormd-theme-dark {
  border-color: #1a1a17;
}
.editormd-theme-dark .editormd-toolbar {
  background: #1A1A17;
  border-color: #1a1a17;
}
.editormd-theme-dark .editormd-menu > li > a {
  color: #777;
  border-color: #1a1a17;
}
.editormd-theme-dark .editormd-menu > li > a:hover, .editormd-theme-dark .editormd-menu > li > a.active {
  border-color: #333;
  background: #333;
}
.editormd-theme-dark .editormd-menu > li.divider {
  border-right: 1px solid #111;
}
.editormd-theme-dark .CodeMirror {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
