Ingen beskrivning

main.css 69KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  1. /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
  2. /* ========================================================================== HTML5 display definitions ========================================================================== */
  3. /** Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */
  4. article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
  5. /** Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */
  6. audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
  7. /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
  8. audio:not([controls]) { display: none; height: 0; }
  9. /** Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. Known issue: no IE 6 support. */
  10. [hidden] { display: none; }
  11. /* ========================================================================== Base ========================================================================== */
  12. /** 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using `em` units. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
  13. html { font-size: 100%; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ font-family: sans-serif; }
  14. /** Address `font-family` inconsistency between `textarea` and other form elements. */
  15. button, input, select, textarea { font-family: sans-serif; }
  16. /** Address margins handled incorrectly in IE 6/7. */
  17. body { margin: 0; }
  18. /* ========================================================================== Links ========================================================================== */
  19. /** Address `outline` inconsistency between Chrome and other browsers. */
  20. a:focus { outline: thin dotted; }
  21. a:active, a:hover { outline: 0; }
  22. /** Improve readability when focused and also mouse hovered in all browsers. */
  23. /* ========================================================================== Typography ========================================================================== */
  24. /** Address font sizes and margins set differently in IE 6/7. Address font sizes within `section` and `article` in Firefox 4+, Safari 5, and Chrome. */
  25. h1 { font-size: 2em; margin: 0.67em 0; }
  26. h2 { font-size: 1.5em; margin: 0.83em 0; }
  27. h3 { font-size: 1.17em; margin: 1em 0; }
  28. h4, .tsd-index-panel h3 { font-size: 1em; margin: 1.33em 0; }
  29. h5 { font-size: 0.83em; margin: 1.67em 0; }
  30. h6 { font-size: 0.67em; margin: 2.33em 0; }
  31. /** Address styling not present in IE 7/8/9, Safari 5, and Chrome. */
  32. abbr[title] { border-bottom: 1px dotted; }
  33. /** Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */
  34. b, strong { font-weight: bold; }
  35. blockquote { margin: 1em 40px; }
  36. /** Address styling not present in Safari 5 and Chrome. */
  37. dfn { font-style: italic; }
  38. /** Address differences between Firefox and other browsers. Known issue: no IE 6/7 normalization. */
  39. hr { box-sizing: content-box; height: 0; }
  40. /** Address styling not present in IE 6/7/8/9. */
  41. mark { background: #ff0; color: #000; }
  42. /** Address margins set differently in IE 6/7. */
  43. p, pre { margin: 1em 0; }
  44. /** Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */
  45. code, kbd, pre, samp { font-family: monospace, serif; _font-family: "courier new", monospace; font-size: 1em; }
  46. /** Improve readability of pre-formatted text in all browsers. */
  47. pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
  48. /** Address CSS quotes not supported in IE 6/7. */
  49. q { quotes: none; }
  50. q:before, q:after { content: ""; content: none; }
  51. /** Address `quotes` property not supported in Safari 4. */
  52. /** Address inconsistent and variable font size in all browsers. */
  53. small { font-size: 80%; }
  54. /** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  55. sub { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
  56. sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; top: -0.5em; }
  57. sub { bottom: -0.25em; }
  58. /* ========================================================================== Lists ========================================================================== */
  59. /** Address margins set differently in IE 6/7. */
  60. dl, menu, ol, ul { margin: 1em 0; }
  61. dd { margin: 0 0 0 40px; }
  62. /** Address paddings set differently in IE 6/7. */
  63. menu, ol, ul { padding: 0 0 0 40px; }
  64. /** Correct list images handled incorrectly in IE 7. */
  65. nav ul, nav ol { list-style: none; list-style-image: none; }
  66. /* ========================================================================== Embedded content ========================================================================== */
  67. /** 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. 2. Improve image quality when scaled in IE 7. */
  68. img { border: 0; /* 1 */ -ms-interpolation-mode: bicubic; }
  69. /* 2 */
  70. /** Correct overflow displayed oddly in IE 9. */
  71. svg:not(:root) { overflow: hidden; }
  72. /* ========================================================================== Figures ========================================================================== */
  73. /** Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */
  74. figure, form { margin: 0; }
  75. /* ========================================================================== Forms ========================================================================== */
  76. /** Correct margin displayed oddly in IE 6/7. */
  77. /** Define consistent border, margin, and padding. */
  78. fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
  79. /** 1. Correct color not being inherited in IE 6/7/8/9. 2. Correct text not wrapping in Firefox 3. 3. Correct alignment displayed oddly in IE 6/7. */
  80. legend { border: 0; /* 1 */ padding: 0; white-space: normal; /* 2 */ *margin-left: -7px; }
  81. /* 3 */
  82. /** 1. Correct font size not being inherited in all browsers. 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, and Chrome. 3. Improve appearance and consistency in all browsers. */
  83. button, input, select, textarea { font-size: 100%; /* 1 */ margin: 0; /* 2 */ vertical-align: baseline; /* 3 */ *vertical-align: middle; }
  84. /* 3 */
  85. /** Address Firefox 3+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
  86. button, input { line-height: normal; }
  87. /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. Correct `select` style inheritance in Firefox 4+ and Opera. */
  88. button, select { text-transform: none; }
  89. /** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. 4. Remove inner spacing in IE 7 without affecting normal text inputs. Known issue: inner spacing remains in IE 6. */
  90. button, html input[type="button"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; }
  91. /* 4 */
  92. input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; }
  93. /* 4 */
  94. /** Re-set default cursor for disabled elements. */
  95. button[disabled], html input[disabled] { cursor: default; }
  96. /** 1. Address box sizing set to content-box in IE 8/9. 2. Remove excess padding in IE 8/9. 3. Remove excess padding in IE 7. Known issue: excess padding remains in IE 6. */
  97. input { /* 3 */ }
  98. input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ *height: 13px; /* 3 */ *width: 13px; }
  99. input[type="search"] { -webkit-appearance: textfield; /* 1 */ /* 2 */ box-sizing: content-box; }
  100. input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
  101. /** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
  102. /** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
  103. /** Remove inner padding and border in Firefox 3+. */
  104. button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
  105. /** 1. Remove default vertical scrollbar in IE 6/7/8/9. 2. Improve readability and alignment in all browsers. */
  106. textarea { overflow: auto; /* 1 */ vertical-align: top; }
  107. /* 2 */
  108. /* ========================================================================== Tables ========================================================================== */
  109. /** Remove most spacing between table cells. */
  110. table { border-collapse: collapse; border-spacing: 0; }
  111. /* Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name> */
  112. .hljs { display: inline-block; padding: 0.5em; background: white; color: black; }
  113. .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket { color: #008000; }
  114. .hljs-keyword, .hljs-id, .hljs-built_in, .css .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title { color: #00f; }
  115. .xml .hljs-tag { color: #00f; }
  116. .xml .hljs-tag .hljs-value { color: #00f; }
  117. .hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value { color: #a31515; }
  118. .ruby .hljs-symbol { color: #a31515; }
  119. .ruby .hljs-symbol .hljs-string { color: #a31515; }
  120. .hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute { color: #a31515; }
  121. .ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt { color: #2b91af; }
  122. .hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag { color: #808080; }
  123. .vhdl .hljs-typename { font-weight: bold; }
  124. .vhdl .hljs-string { color: #666666; }
  125. .vhdl .hljs-literal { color: #a31515; }
  126. .vhdl .hljs-attribute { color: #00b0e8; }
  127. .xml .hljs-attribute { color: #f00; }
  128. .col > :first-child, .col-1 > :first-child, .col-2 > :first-child, .col-3 > :first-child, .col-4 > :first-child, .col-5 > :first-child, .col-6 > :first-child, .col-7 > :first-child, .col-8 > :first-child, .col-9 > :first-child, .col-10 > :first-child, .col-11 > :first-child, .tsd-panel > :first-child, ul.tsd-descriptions > li > :first-child, .col > :first-child > :first-child, .col-1 > :first-child > :first-child, .col-2 > :first-child > :first-child, .col-3 > :first-child > :first-child, .col-4 > :first-child > :first-child, .col-5 > :first-child > :first-child, .col-6 > :first-child > :first-child, .col-7 > :first-child > :first-child, .col-8 > :first-child > :first-child, .col-9 > :first-child > :first-child, .col-10 > :first-child > :first-child, .col-11 > :first-child > :first-child, .tsd-panel > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child, .col > :first-child > :first-child > :first-child, .col-1 > :first-child > :first-child > :first-child, .col-2 > :first-child > :first-child > :first-child, .col-3 > :first-child > :first-child > :first-child, .col-4 > :first-child > :first-child > :first-child, .col-5 > :first-child > :first-child > :first-child, .col-6 > :first-child > :first-child > :first-child, .col-7 > :first-child > :first-child > :first-child, .col-8 > :first-child > :first-child > :first-child, .col-9 > :first-child > :first-child > :first-child, .col-10 > :first-child > :first-child > :first-child, .col-11 > :first-child > :first-child > :first-child, .tsd-panel > :first-child > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child > :first-child { margin-top: 0; }
  129. .col > :last-child, .col-1 > :last-child, .col-2 > :last-child, .col-3 > :last-child, .col-4 > :last-child, .col-5 > :last-child, .col-6 > :last-child, .col-7 > :last-child, .col-8 > :last-child, .col-9 > :last-child, .col-10 > :last-child, .col-11 > :last-child, .tsd-panel > :last-child, ul.tsd-descriptions > li > :last-child, .col > :last-child > :last-child, .col-1 > :last-child > :last-child, .col-2 > :last-child > :last-child, .col-3 > :last-child > :last-child, .col-4 > :last-child > :last-child, .col-5 > :last-child > :last-child, .col-6 > :last-child > :last-child, .col-7 > :last-child > :last-child, .col-8 > :last-child > :last-child, .col-9 > :last-child > :last-child, .col-10 > :last-child > :last-child, .col-11 > :last-child > :last-child, .tsd-panel > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child, .col > :last-child > :last-child > :last-child, .col-1 > :last-child > :last-child > :last-child, .col-2 > :last-child > :last-child > :last-child, .col-3 > :last-child > :last-child > :last-child, .col-4 > :last-child > :last-child > :last-child, .col-5 > :last-child > :last-child > :last-child, .col-6 > :last-child > :last-child > :last-child, .col-7 > :last-child > :last-child > :last-child, .col-8 > :last-child > :last-child > :last-child, .col-9 > :last-child > :last-child > :last-child, .col-10 > :last-child > :last-child > :last-child, .col-11 > :last-child > :last-child > :last-child, .tsd-panel > :last-child > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child > :last-child { margin-bottom: 0; }
  130. .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
  131. @media (max-width: 640px) { .container { padding: 0 20px; } }
  132. .container-main { padding-bottom: 200px; }
  133. .row { position: relative; margin: 0 -10px; }
  134. .row:after { visibility: hidden; display: block; content: ""; clear: both; height: 0; }
  135. .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 { box-sizing: border-box; float: left; padding: 0 10px; }
  136. .col-1 { width: 8.33333%; }
  137. .offset-1 { margin-left: 8.33333%; }
  138. .col-2 { width: 16.66667%; }
  139. .offset-2 { margin-left: 16.66667%; }
  140. .col-3 { width: 25%; }
  141. .offset-3 { margin-left: 25%; }
  142. .col-4 { width: 33.33333%; }
  143. .offset-4 { margin-left: 33.33333%; }
  144. .col-5 { width: 41.66667%; }
  145. .offset-5 { margin-left: 41.66667%; }
  146. .col-6 { width: 50%; }
  147. .offset-6 { margin-left: 50%; }
  148. .col-7 { width: 58.33333%; }
  149. .offset-7 { margin-left: 58.33333%; }
  150. .col-8 { width: 66.66667%; }
  151. .offset-8 { margin-left: 66.66667%; }
  152. .col-9 { width: 75%; }
  153. .offset-9 { margin-left: 75%; }
  154. .col-10 { width: 83.33333%; }
  155. .offset-10 { margin-left: 83.33333%; }
  156. .col-11 { width: 91.66667%; }
  157. .offset-11 { margin-left: 91.66667%; }
  158. .tsd-kind-icon { display: block; position: relative; padding-left: 20px; text-indent: -20px; }
  159. .tsd-kind-icon:before { content: ''; display: inline-block; vertical-align: middle; width: 17px; height: 17px; margin: 0 3px 2px 0; background-image: url(../images/icons.png); }
  160. @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-kind-icon:before { background-image: url(../images/icons@2x.png); background-size: 238px 204px; } }
  161. .tsd-signature.tsd-kind-icon:before { background-position: 0 -153px; }
  162. .tsd-kind-object-literal > .tsd-kind-icon:before { background-position: 0px -17px; }
  163. .tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -17px; }
  164. .tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -17px; }
  165. .tsd-kind-class > .tsd-kind-icon:before { background-position: 0px -34px; }
  166. .tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -34px; }
  167. .tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -34px; }
  168. .tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -51px; }
  169. .tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -51px; }
  170. .tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -51px; }
  171. .tsd-kind-interface > .tsd-kind-icon:before { background-position: 0px -68px; }
  172. .tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -68px; }
  173. .tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -68px; }
  174. .tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -85px; }
  175. .tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -85px; }
  176. .tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -85px; }
  177. .tsd-kind-module > .tsd-kind-icon:before { background-position: 0px -102px; }
  178. .tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; }
  179. .tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; }
  180. .tsd-kind-external-module > .tsd-kind-icon:before { background-position: 0px -102px; }
  181. .tsd-kind-external-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; }
  182. .tsd-kind-external-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; }
  183. .tsd-kind-enum > .tsd-kind-icon:before { background-position: 0px -119px; }
  184. .tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -119px; }
  185. .tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -119px; }
  186. .tsd-kind-enum-member > .tsd-kind-icon:before { background-position: 0px -136px; }
  187. .tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -136px; }
  188. .tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -136px; }
  189. .tsd-kind-signature > .tsd-kind-icon:before { background-position: 0px -153px; }
  190. .tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -153px; }
  191. .tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -153px; }
  192. .tsd-kind-type-alias > .tsd-kind-icon:before { background-position: 0px -170px; }
  193. .tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -170px; }
  194. .tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -170px; }
  195. .tsd-kind-variable > .tsd-kind-icon:before { background-position: -136px -0px; }
  196. .tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; }
  197. .tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  198. .tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; }
  199. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; }
  200. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; }
  201. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; }
  202. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  203. .tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; }
  204. .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; }
  205. .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  206. .tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; }
  207. .tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; }
  208. .tsd-kind-property > .tsd-kind-icon:before { background-position: -136px -0px; }
  209. .tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; }
  210. .tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  211. .tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; }
  212. .tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; }
  213. .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; }
  214. .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; }
  215. .tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  216. .tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; }
  217. .tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; }
  218. .tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; }
  219. .tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; }
  220. .tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; }
  221. .tsd-kind-get-signature > .tsd-kind-icon:before { background-position: -136px -17px; }
  222. .tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -17px; }
  223. .tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
  224. .tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -17px; }
  225. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -17px; }
  226. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -17px; }
  227. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -17px; }
  228. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
  229. .tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -17px; }
  230. .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -17px; }
  231. .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; }
  232. .tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -17px; }
  233. .tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -17px; }
  234. .tsd-kind-set-signature > .tsd-kind-icon:before { background-position: -136px -34px; }
  235. .tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -34px; }
  236. .tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
  237. .tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -34px; }
  238. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -34px; }
  239. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -34px; }
  240. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -34px; }
  241. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
  242. .tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -34px; }
  243. .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -34px; }
  244. .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; }
  245. .tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -34px; }
  246. .tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -34px; }
  247. .tsd-kind-accessor > .tsd-kind-icon:before { background-position: -136px -51px; }
  248. .tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -51px; }
  249. .tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
  250. .tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -51px; }
  251. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -51px; }
  252. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -51px; }
  253. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -51px; }
  254. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
  255. .tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -51px; }
  256. .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -51px; }
  257. .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; }
  258. .tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -51px; }
  259. .tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -51px; }
  260. .tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -68px; }
  261. .tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
  262. .tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  263. .tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
  264. .tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
  265. .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
  266. .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
  267. .tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  268. .tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
  269. .tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
  270. .tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  271. .tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
  272. .tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
  273. .tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -68px; }
  274. .tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
  275. .tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  276. .tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
  277. .tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
  278. .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
  279. .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
  280. .tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  281. .tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
  282. .tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
  283. .tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  284. .tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
  285. .tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
  286. .tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -68px; }
  287. .tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; }
  288. .tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  289. .tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; }
  290. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; }
  291. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; }
  292. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; }
  293. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  294. .tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; }
  295. .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; }
  296. .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; }
  297. .tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; }
  298. .tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; }
  299. .tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; }
  300. .tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; }
  301. .tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  302. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; }
  303. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; }
  304. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; }
  305. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; }
  306. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  307. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; }
  308. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; }
  309. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  310. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; }
  311. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; }
  312. .tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; }
  313. .tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; }
  314. .tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  315. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; }
  316. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; }
  317. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; }
  318. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; }
  319. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  320. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; }
  321. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; }
  322. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; }
  323. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; }
  324. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; }
  325. .tsd-kind-constructor > .tsd-kind-icon:before { background-position: -136px -102px; }
  326. .tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; }
  327. .tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  328. .tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; }
  329. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; }
  330. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; }
  331. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; }
  332. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  333. .tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; }
  334. .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; }
  335. .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  336. .tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; }
  337. .tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; }
  338. .tsd-kind-constructor-signature > .tsd-kind-icon:before { background-position: -136px -102px; }
  339. .tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; }
  340. .tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  341. .tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; }
  342. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; }
  343. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; }
  344. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; }
  345. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  346. .tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; }
  347. .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; }
  348. .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; }
  349. .tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; }
  350. .tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; }
  351. .tsd-kind-index-signature > .tsd-kind-icon:before { background-position: -136px -119px; }
  352. .tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -119px; }
  353. .tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
  354. .tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -119px; }
  355. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -119px; }
  356. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -119px; }
  357. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -119px; }
  358. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
  359. .tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -119px; }
  360. .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -119px; }
  361. .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; }
  362. .tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -119px; }
  363. .tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -119px; }
  364. .tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -136px; }
  365. .tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -136px; }
  366. .tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
  367. .tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -136px; }
  368. .tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -136px; }
  369. .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -136px; }
  370. .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -136px; }
  371. .tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
  372. .tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -136px; }
  373. .tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -136px; }
  374. .tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; }
  375. .tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -136px; }
  376. .tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -136px; }
  377. .tsd-is-static > .tsd-kind-icon:before { background-position: -136px -153px; }
  378. .tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -153px; }
  379. .tsd-is-static.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
  380. .tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -153px; }
  381. .tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -153px; }
  382. .tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -153px; }
  383. .tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -153px; }
  384. .tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
  385. .tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -153px; }
  386. .tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -153px; }
  387. .tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; }
  388. .tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -153px; }
  389. .tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -153px; }
  390. .tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -170px; }
  391. .tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
  392. .tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  393. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
  394. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
  395. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
  396. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
  397. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  398. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
  399. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
  400. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  401. .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
  402. .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
  403. .tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -170px; }
  404. .tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
  405. .tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  406. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
  407. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
  408. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
  409. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
  410. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  411. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
  412. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
  413. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  414. .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
  415. .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
  416. .tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -170px; }
  417. .tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; }
  418. .tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  419. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; }
  420. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; }
  421. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; }
  422. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; }
  423. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  424. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; }
  425. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; }
  426. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; }
  427. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; }
  428. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; }
  429. .tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -187px; }
  430. .tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -187px; }
  431. .tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
  432. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -187px; }
  433. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -187px; }
  434. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -187px; }
  435. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -187px; }
  436. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
  437. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -187px; }
  438. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -187px; }
  439. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; }
  440. .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -187px; }
  441. .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -187px; }
  442. .no-transition { transition: none !important; }
  443. @-webkit-keyframes fade-in { from { opacity: 0; }
  444. to { opacity: 1; } }
  445. @keyframes fade-in { from { opacity: 0; }
  446. to { opacity: 1; } }
  447. @-webkit-keyframes fade-out { from { opacity: 1; visibility: visible; }
  448. to { opacity: 0; } }
  449. @keyframes fade-out { from { opacity: 1; visibility: visible; }
  450. to { opacity: 0; } }
  451. @-webkit-keyframes fade-in-delayed { 0% { opacity: 0; }
  452. 33% { opacity: 0; }
  453. 100% { opacity: 1; } }
  454. @keyframes fade-in-delayed { 0% { opacity: 0; }
  455. 33% { opacity: 0; }
  456. 100% { opacity: 1; } }
  457. @-webkit-keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; }
  458. 66% { opacity: 0; }
  459. 100% { opacity: 0; } }
  460. @keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; }
  461. 66% { opacity: 0; }
  462. 100% { opacity: 0; } }
  463. @-webkit-keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
  464. to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } }
  465. @keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
  466. to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } }
  467. @-webkit-keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
  468. to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
  469. @keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
  470. to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
  471. @-webkit-keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
  472. to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
  473. @keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
  474. to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
  475. @-webkit-keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; }
  476. to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } }
  477. @keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; }
  478. to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } }
  479. body { background: #fdfdfd; font-family: "Segoe UI", sans-serif; font-size: 16px; color: #222; }
  480. a { color: #4da6ff; text-decoration: none; }
  481. a:hover { text-decoration: underline; }
  482. code, pre { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; padding: 0.2em; margin: 0; font-size: 14px; background-color: rgba(0, 0, 0, 0.04); }
  483. pre { padding: 10px; }
  484. pre code { padding: 0; font-size: 100%; background-color: transparent; }
  485. .tsd-typography { line-height: 1.333em; }
  486. .tsd-typography ul { list-style: square; padding: 0 0 0 20px; margin: 0; }
  487. .tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 { font-size: 1em; margin: 0; }
  488. .tsd-typography h5, .tsd-typography h6 { font-weight: normal; }
  489. .tsd-typography p, .tsd-typography ul, .tsd-typography ol { margin: 1em 0; }
  490. @media (min-width: 901px) and (max-width: 1024px) { html.default .col-content { width: 72%; }
  491. html.default .col-menu { width: 28%; }
  492. html.default .tsd-navigation { padding-left: 10px; } }
  493. @media (max-width: 900px) { html.default .col-content { float: none; width: 100%; }
  494. html.default .col-menu { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; z-index: 1024; top: 0 !important; bottom: 0 !important; left: auto !important; right: 0 !important; width: 100%; padding: 20px 20px 0 0; max-width: 450px; visibility: hidden; background-color: #fff; -webkit-transform: translate(100%, 0); transform: translate(100%, 0); }
  495. html.default .col-menu > *:last-child { padding-bottom: 20px; }
  496. html.default .overlay { content: ""; display: block; position: fixed; z-index: 1023; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.75); visibility: hidden; }
  497. html.default.to-has-menu .overlay { -webkit-animation: fade-in 0.4s; animation: fade-in 0.4s; }
  498. html.default.to-has-menu header, html.default.to-has-menu footer, html.default.to-has-menu .col-content { -webkit-animation: shift-to-left 0.4s; animation: shift-to-left 0.4s; }
  499. html.default.to-has-menu .col-menu { -webkit-animation: pop-in-from-right 0.4s; animation: pop-in-from-right 0.4s; }
  500. html.default.from-has-menu .overlay { -webkit-animation: fade-out 0.4s; animation: fade-out 0.4s; }
  501. html.default.from-has-menu header, html.default.from-has-menu footer, html.default.from-has-menu .col-content { -webkit-animation: unshift-to-left 0.4s; animation: unshift-to-left 0.4s; }
  502. html.default.from-has-menu .col-menu { -webkit-animation: pop-out-to-right 0.4s; animation: pop-out-to-right 0.4s; }
  503. html.default.has-menu body { overflow: hidden; }
  504. html.default.has-menu .overlay { visibility: visible; }
  505. html.default.has-menu header, html.default.has-menu footer, html.default.has-menu .col-content { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); }
  506. html.default.has-menu .col-menu { visibility: visible; -webkit-transform: translate(0, 0); transform: translate(0, 0); } }
  507. .tsd-page-title { padding: 70px 0 20px 0; margin: 0 0 40px 0; background: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); }
  508. .tsd-page-title h1 { margin: 0; }
  509. .tsd-breadcrumb { margin: 0; padding: 0; color: #808080; }
  510. .tsd-breadcrumb a { color: #808080; text-decoration: none; }
  511. .tsd-breadcrumb a:hover { text-decoration: underline; }
  512. .tsd-breadcrumb li { display: inline; }
  513. .tsd-breadcrumb li:after { content: " / "; }
  514. html.minimal .container { margin: 0; }
  515. html.minimal .container-main { padding-top: 50px; padding-bottom: 0; }
  516. html.minimal .content-wrap { padding-left: 300px; }
  517. html.minimal .tsd-navigation { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; box-sizing: border-box; z-index: 1; left: 0; top: 40px; bottom: 0; width: 300px; padding: 20px; margin: 0; }
  518. html.minimal .tsd-member .tsd-member { margin-left: 0; }
  519. html.minimal .tsd-page-toolbar { position: fixed; z-index: 2; }
  520. html.minimal #tsd-filter .tsd-filter-group { right: 0; -webkit-transform: none; transform: none; }
  521. html.minimal footer { background-color: transparent; }
  522. html.minimal footer .container { padding: 0; }
  523. html.minimal .tsd-generator { padding: 0; }
  524. @media (max-width: 900px) { html.minimal .tsd-navigation { display: none; }
  525. html.minimal .content-wrap { padding-left: 0; } }
  526. dl.tsd-comment-tags { overflow: hidden; }
  527. dl.tsd-comment-tags dt { clear: both; float: left; padding: 1px 5px; margin: 0 10px 0 0; border-radius: 4px; border: 1px solid #808080; color: #808080; font-size: 0.8em; font-weight: normal; }
  528. dl.tsd-comment-tags dd { margin: 0 0 10px 0; }
  529. dl.tsd-comment-tags p { margin: 0; }
  530. .tsd-panel.tsd-comment .lead { font-size: 1.1em; line-height: 1.333em; margin-bottom: 2em; }
  531. .tsd-panel.tsd-comment .lead:last-child { margin-bottom: 0; }
  532. .toggle-protected .tsd-is-private { display: none; }
  533. .toggle-public .tsd-is-private, .toggle-public .tsd-is-protected, .toggle-public .tsd-is-private-protected { display: none; }
  534. .toggle-inherited .tsd-is-inherited { display: none; }
  535. .toggle-only-exported .tsd-is-not-exported { display: none; }
  536. .toggle-externals .tsd-is-external { display: none; }
  537. #tsd-filter { position: relative; display: inline-block; height: 40px; vertical-align: bottom; }
  538. .no-filter #tsd-filter { display: none; }
  539. #tsd-filter .tsd-filter-group { display: inline-block; height: 40px; vertical-align: bottom; white-space: nowrap; }
  540. #tsd-filter input { display: none; }
  541. @media (max-width: 900px) { #tsd-filter .tsd-filter-group { display: block; position: absolute; top: 40px; right: 20px; height: auto; background-color: #fff; visibility: hidden; -webkit-transform: translate(50%, 0); transform: translate(50%, 0); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
  542. .has-options #tsd-filter .tsd-filter-group { visibility: visible; }
  543. .to-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-in 0.2s; animation: fade-in 0.2s; }
  544. .from-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-out 0.2s; animation: fade-out 0.2s; }
  545. #tsd-filter label, #tsd-filter .tsd-select { display: block; padding-right: 20px; } }
  546. footer { border-top: 1px solid #eee; background-color: #fff; }
  547. footer.with-border-bottom { border-bottom: 1px solid #eee; }
  548. footer .tsd-legend-group { font-size: 0; }
  549. footer .tsd-legend { display: inline-block; width: 25%; padding: 0; font-size: 16px; list-style: none; line-height: 1.333em; vertical-align: top; }
  550. @media (max-width: 900px) { footer .tsd-legend { width: 50%; } }
  551. .tsd-hierarchy { list-style: square; padding: 0 0 0 20px; margin: 0; }
  552. .tsd-hierarchy .target { font-weight: bold; }
  553. .tsd-index-panel .tsd-index-content { margin-bottom: -30px !important; }
  554. .tsd-index-panel .tsd-index-section { margin-bottom: 30px !important; }
  555. .tsd-index-panel h3 { margin: 0 -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; }
  556. .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 3; -moz-column-count: 3; -ms-column-count: 3; -o-column-count: 3; column-count: 3; -webkit-column-gap: 20px; -moz-column-gap: 20px; -ms-column-gap: 20px; -o-column-gap: 20px; column-gap: 20px; padding: 0; list-style: none; line-height: 1.333em; }
  557. @media (max-width: 900px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 1; -moz-column-count: 1; -ms-column-count: 1; -o-column-count: 1; column-count: 1; } }
  558. @media (min-width: 901px) and (max-width: 1024px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 2; -moz-column-count: 2; -ms-column-count: 2; -o-column-count: 2; column-count: 2; } }
  559. .tsd-index-panel ul.tsd-index-list li { -webkit-column-break-inside: avoid; -moz-column-break-inside: avoid; -ms-column-break-inside: avoid; -o-column-break-inside: avoid; column-break-inside: avoid; -webkit-page-break-inside: avoid; -moz-page-break-inside: avoid; -ms-page-break-inside: avoid; -o-page-break-inside: avoid; page-break-inside: avoid; }
  560. .tsd-index-panel a, .tsd-index-panel .tsd-parent-kind-module a { color: #9600ff; }
  561. .tsd-index-panel .tsd-parent-kind-interface a { color: #7da01f; }
  562. .tsd-index-panel .tsd-parent-kind-enum a { color: #cc9900; }
  563. .tsd-index-panel .tsd-parent-kind-class a { color: #4da6ff; }
  564. .tsd-index-panel .tsd-kind-module a { color: #9600ff; }
  565. .tsd-index-panel .tsd-kind-interface a { color: #7da01f; }
  566. .tsd-index-panel .tsd-kind-enum a { color: #cc9900; }
  567. .tsd-index-panel .tsd-kind-class a { color: #4da6ff; }
  568. .tsd-index-panel .tsd-is-private a { color: #808080; }
  569. .tsd-flag { display: inline-block; padding: 1px 5px; border-radius: 4px; color: #fff; background-color: #808080; text-indent: 0; font-size: 14px; font-weight: normal; }
  570. .tsd-anchor { position: absolute; top: -100px; }
  571. .tsd-member { position: relative; }
  572. .tsd-member .tsd-anchor + h3 { margin-top: 0; margin-bottom: 0; border-bottom: none; }
  573. .tsd-navigation { padding: 0 0 0 40px; }
  574. .tsd-navigation a { display: block; padding-top: 2px; padding-bottom: 2px; border-left: 2px solid transparent; color: #222; text-decoration: none; transition: border-left-color 0.1s; }
  575. .tsd-navigation a:hover { text-decoration: underline; }
  576. .tsd-navigation ul { margin: 0; padding: 0; list-style: none; }
  577. .tsd-navigation li { padding: 0; }
  578. .tsd-navigation.primary { padding-bottom: 40px; }
  579. .tsd-navigation.primary a { display: block; padding-top: 6px; padding-bottom: 6px; }
  580. .tsd-navigation.primary ul li a { padding-left: 5px; }
  581. .tsd-navigation.primary ul li li a { padding-left: 25px; }
  582. .tsd-navigation.primary ul li li li a { padding-left: 45px; }
  583. .tsd-navigation.primary ul li li li li a { padding-left: 65px; }
  584. .tsd-navigation.primary ul li li li li li a { padding-left: 85px; }
  585. .tsd-navigation.primary ul li li li li li li a { padding-left: 105px; }
  586. .tsd-navigation.primary > ul { border-bottom: 1px solid #eee; }
  587. .tsd-navigation.primary li { border-top: 1px solid #eee; }
  588. .tsd-navigation.primary li.current > a { font-weight: bold; }
  589. .tsd-navigation.primary li.label span { display: block; padding: 20px 0 6px 5px; color: #808080; }
  590. .tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a { padding-top: 20px; }
  591. .tsd-navigation.secondary ul { transition: opacity 0.2s; }
  592. .tsd-navigation.secondary ul li a { padding-left: 25px; }
  593. .tsd-navigation.secondary ul li li a { padding-left: 45px; }
  594. .tsd-navigation.secondary ul li li li a { padding-left: 65px; }
  595. .tsd-navigation.secondary ul li li li li a { padding-left: 85px; }
  596. .tsd-navigation.secondary ul li li li li li a { padding-left: 105px; }
  597. .tsd-navigation.secondary ul li li li li li li a { padding-left: 125px; }
  598. .tsd-navigation.secondary ul.current a { border-left-color: #eee; }
  599. .tsd-navigation.secondary li.focus > a, .tsd-navigation.secondary ul.current li.focus > a { border-left-color: #000; }
  600. .tsd-navigation.secondary li.current { margin-top: 20px; margin-bottom: 20px; border-left-color: #eee; }
  601. .tsd-navigation.secondary li.current > a { font-weight: bold; }
  602. @media (min-width: 901px) { .menu-sticky-wrap { position: static; }
  603. .no-csspositionsticky .menu-sticky-wrap.sticky { position: fixed; }
  604. .no-csspositionsticky .menu-sticky-wrap.sticky-current { position: fixed; }
  605. .no-csspositionsticky .menu-sticky-wrap.sticky-current ul.before-current, .no-csspositionsticky .menu-sticky-wrap.sticky-current ul.after-current { opacity: 0; }
  606. .no-csspositionsticky .menu-sticky-wrap.sticky-bottom { position: absolute; top: auto !important; left: auto !important; bottom: 0; right: 0; }
  607. .csspositionsticky .menu-sticky-wrap.sticky { position: -webkit-sticky; position: sticky; }
  608. .csspositionsticky .menu-sticky-wrap.sticky-current { position: -webkit-sticky; position: sticky; } }
  609. .tsd-panel { margin: 20px 0; padding: 20px; background-color: #fff; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
  610. .tsd-panel:empty { display: none; }
  611. .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { margin: 1.5em -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; }
  612. .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { margin-bottom: 0; border-bottom: 0; }
  613. .tsd-panel table { display: block; width: 100%; overflow: auto; margin-top: 10px; word-break: normal; word-break: keep-all; }
  614. .tsd-panel table th { font-weight: bold; }
  615. .tsd-panel table th, .tsd-panel table td { padding: 6px 13px; border: 1px solid #ddd; }
  616. .tsd-panel table tr { background-color: #fff; border-top: 1px solid #ccc; }
  617. .tsd-panel table tr:nth-child(2n) { background-color: #f8f8f8; }
  618. .tsd-panel-group { margin: 60px 0; }
  619. .tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 { padding-left: 20px; padding-right: 20px; }
  620. #tsd-search { transition: background-color 0.2s; }
  621. #tsd-search .title { position: relative; z-index: 2; }
  622. #tsd-search .field { position: absolute; left: 0; top: 0; right: 40px; height: 40px; }
  623. #tsd-search .field input { box-sizing: border-box; position: relative; top: -50px; z-index: 1; width: 100%; padding: 0 10px; opacity: 0; outline: 0; border: 0; background: transparent; color: #222; }
  624. #tsd-search .field label { position: absolute; overflow: hidden; right: -40px; }
  625. #tsd-search .field input, #tsd-search .title { transition: opacity 0.2s; }
  626. #tsd-search .results { position: absolute; visibility: hidden; top: 40px; width: 100%; margin: 0; padding: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
  627. #tsd-search .results li { padding: 0 10px; background-color: #fdfdfd; }
  628. #tsd-search .results li:nth-child(even) { background-color: #fff; }
  629. #tsd-search .results li.state { display: none; }
  630. #tsd-search .results li.current, #tsd-search .results li:hover { background-color: #eee; }
  631. #tsd-search .results a { display: block; }
  632. #tsd-search .results a:before { top: 10px; }
  633. #tsd-search .results span.parent { color: #808080; font-weight: normal; }
  634. #tsd-search.has-focus { background-color: #eee; }
  635. #tsd-search.has-focus .field input { top: 0; opacity: 1; }
  636. #tsd-search.has-focus .title { z-index: 0; opacity: 0; }
  637. #tsd-search.has-focus .results { visibility: visible; }
  638. #tsd-search.loading .results li.state.loading { display: block; }
  639. #tsd-search.failure .results li.state.failure { display: block; }
  640. .tsd-signature { margin: 0 0 1em 0; padding: 10px; border: 1px solid #eee; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; }
  641. .tsd-signature.tsd-kind-icon { padding-left: 30px; }
  642. .tsd-signature.tsd-kind-icon:before { top: 10px; left: 10px; }
  643. .tsd-panel > .tsd-signature { margin-left: -20px; margin-right: -20px; border-width: 1px 0; }
  644. .tsd-panel > .tsd-signature.tsd-kind-icon { padding-left: 40px; }
  645. .tsd-panel > .tsd-signature.tsd-kind-icon:before { left: 20px; }
  646. .tsd-signature-symbol { color: #808080; font-weight: normal; }
  647. .tsd-signature-type { font-style: italic; font-weight: normal; }
  648. .tsd-signatures { padding: 0; margin: 0 0 1em 0; border: 1px solid #eee; }
  649. .tsd-signatures .tsd-signature { margin: 0; border-width: 1px 0 0 0; transition: background-color 0.1s; }
  650. .tsd-signatures .tsd-signature:first-child { border-top-width: 0; }
  651. .tsd-signatures .tsd-signature.current { background-color: #eee; }
  652. .tsd-signatures.active > .tsd-signature { cursor: pointer; }
  653. .tsd-panel > .tsd-signatures { margin-left: -20px; margin-right: -20px; border-width: 1px 0; }
  654. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { padding-left: 40px; }
  655. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { left: 20px; }
  656. .tsd-panel > a.anchor + .tsd-signatures { border-top-width: 0; margin-top: -20px; }
  657. ul.tsd-descriptions { position: relative; overflow: hidden; transition: height 0.3s; padding: 0; list-style: none; }
  658. ul.tsd-descriptions.active > .tsd-description { display: none; }
  659. ul.tsd-descriptions.active > .tsd-description.current { display: block; }
  660. ul.tsd-descriptions.active > .tsd-description.fade-in { -webkit-animation: fade-in-delayed 0.3s; animation: fade-in-delayed 0.3s; }
  661. ul.tsd-descriptions.active > .tsd-description.fade-out { -webkit-animation: fade-out-delayed 0.3s; animation: fade-out-delayed 0.3s; position: absolute; display: block; top: 0; left: 0; right: 0; opacity: 0; visibility: hidden; }
  662. ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 { font-size: 16px; margin: 1em 0 0.5em 0; }
  663. ul.tsd-parameters, ul.tsd-type-parameters { list-style: square; margin: 0; padding-left: 20px; }
  664. ul.tsd-parameters > li.tsd-parameter-siganture, ul.tsd-type-parameters > li.tsd-parameter-siganture { list-style: none; margin-left: -20px; }
  665. ul.tsd-parameters h5, ul.tsd-type-parameters h5 { font-size: 16px; margin: 1em 0 0.5em 0; }
  666. ul.tsd-parameters .tsd-comment, ul.tsd-type-parameters .tsd-comment { margin-top: -0.5em; }
  667. .tsd-sources { font-size: 14px; color: #808080; margin: 0 0 1em 0; }
  668. .tsd-sources a { color: #808080; text-decoration: underline; }
  669. .tsd-sources ul, .tsd-sources p { margin: 0 !important; }
  670. .tsd-sources ul { list-style: none; padding: 0; }
  671. .tsd-page-toolbar { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 40px; color: #333; background: #fff; border-bottom: 1px solid #eee; }
  672. .tsd-page-toolbar a { color: #333; text-decoration: none; }
  673. .tsd-page-toolbar a.title { font-weight: bold; }
  674. .tsd-page-toolbar a.title:hover { text-decoration: underline; }
  675. .tsd-page-toolbar .table-wrap { display: table; width: 100%; height: 40px; }
  676. .tsd-page-toolbar .table-cell { display: table-cell; position: relative; white-space: nowrap; line-height: 40px; }
  677. .tsd-page-toolbar .table-cell:first-child { width: 100%; }
  678. .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { content: ""; display: inline-block; width: 40px; height: 40px; margin: 0 -8px 0 0; background-image: url(../images/widgets.png); background-repeat: no-repeat; text-indent: -1024px; vertical-align: bottom; }
  679. @media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { background-image: url(../images/widgets@2x.png); background-size: 320px 40px; } }
  680. .tsd-widget { display: inline-block; overflow: hidden; opacity: 0.6; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; }
  681. .tsd-widget:hover { opacity: 0.8; }
  682. .tsd-widget.active { opacity: 1; background-color: #eee; }
  683. .tsd-widget.no-caption { width: 40px; }
  684. .tsd-widget.no-caption:before { margin: 0; }
  685. .tsd-widget.search:before { background-position: 0 0; }
  686. .tsd-widget.menu:before { background-position: -40px 0; }
  687. .tsd-widget.options:before { background-position: -80px 0; }
  688. .tsd-widget.options, .tsd-widget.menu { display: none; }
  689. @media (max-width: 900px) { .tsd-widget.options, .tsd-widget.menu { display: inline-block; } }
  690. input[type=checkbox] + .tsd-widget:before { background-position: -120px 0; }
  691. input[type=checkbox]:checked + .tsd-widget:before { background-position: -160px 0; }
  692. .tsd-select { position: relative; display: inline-block; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; }
  693. .tsd-select .tsd-select-label { opacity: 0.6; transition: opacity 0.2s; }
  694. .tsd-select .tsd-select-label:before { background-position: -240px 0; }
  695. .tsd-select.active .tsd-select-label { opacity: 0.8; }
  696. .tsd-select.active .tsd-select-list { visibility: visible; opacity: 1; transition-delay: 0s; }
  697. .tsd-select .tsd-select-list { position: absolute; visibility: hidden; top: 40px; left: 0; margin: 0; padding: 0; opacity: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); transition: visibility 0s 0.2s, opacity 0.2s; }
  698. .tsd-select .tsd-select-list li { padding: 0 20px 0 0; background-color: #fdfdfd; }
  699. .tsd-select .tsd-select-list li:before { background-position: 40px 0; }
  700. .tsd-select .tsd-select-list li:nth-child(even) { background-color: #fff; }
  701. .tsd-select .tsd-select-list li:hover { background-color: #eee; }
  702. .tsd-select .tsd-select-list li.selected:before { background-position: -200px 0; }
  703. @media (max-width: 900px) { .tsd-select .tsd-select-list { top: 0; left: auto; right: 100%; margin-right: -5px; }
  704. .tsd-select .tsd-select-label:before { background-position: -280px 0; } }
  705. img { max-width: 100%; }