main.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679
  1. /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
  2. /* ==========================================================================
  3. * * HTML5 display definitions
  4. * * ========================================================================== */
  5. /**
  6. * * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */
  7. article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  8. display: block;
  9. }
  10. /**
  11. * * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */
  12. audio, canvas, video {
  13. display: inline-block;
  14. *display: inline;
  15. *zoom: 1;
  16. }
  17. /**
  18. * * Prevent modern browsers from displaying `audio` without controls.
  19. * * Remove excess height in iOS 5 devices. */
  20. audio:not([controls]) {
  21. display: none;
  22. height: 0;
  23. }
  24. /**
  25. * * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  26. * * Known issue: no IE 6 support. */
  27. [hidden] {
  28. display: none;
  29. }
  30. /* ==========================================================================
  31. * * Base
  32. * * ========================================================================== */
  33. /**
  34. * * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
  35. * * `em` units.
  36. * * 2. Prevent iOS text size adjust after orientation change, without disabling
  37. * * user zoom. */
  38. html {
  39. font-size: 100%;
  40. /* 1 */
  41. -ms-text-size-adjust: 100%;
  42. /* 2 */
  43. -webkit-text-size-adjust: 100%;
  44. /* 2 */
  45. font-family: sans-serif;
  46. }
  47. /**
  48. * * Address `font-family` inconsistency between `textarea` and other form
  49. * * elements. */
  50. button, input, select, textarea {
  51. font-family: sans-serif;
  52. }
  53. /**
  54. * * Address margins handled incorrectly in IE 6/7. */
  55. body {
  56. margin: 0;
  57. }
  58. /* ==========================================================================
  59. * * Links
  60. * * ========================================================================== */
  61. /**
  62. * * Address `outline` inconsistency between Chrome and other browsers. */
  63. a:focus {
  64. outline: thin dotted;
  65. }
  66. a:active, a:hover {
  67. outline: 0;
  68. }
  69. /**
  70. * * Improve readability when focused and also mouse hovered in all browsers. */
  71. /* ==========================================================================
  72. * * Typography
  73. * * ========================================================================== */
  74. /**
  75. * * Address font sizes and margins set differently in IE 6/7.
  76. * * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
  77. * * and Chrome. */
  78. h1 {
  79. font-size: 2em;
  80. margin: 0.67em 0;
  81. }
  82. h2 {
  83. font-size: 1.5em;
  84. margin: 0.83em 0;
  85. }
  86. h3 {
  87. font-size: 1.17em;
  88. margin: 1em 0;
  89. }
  90. h4, .tsd-index-panel h3 {
  91. font-size: 1em;
  92. margin: 1.33em 0;
  93. }
  94. h5 {
  95. font-size: 0.83em;
  96. margin: 1.67em 0;
  97. }
  98. h6 {
  99. font-size: 0.67em;
  100. margin: 2.33em 0;
  101. }
  102. /**
  103. * * Address styling not present in IE 7/8/9, Safari 5, and Chrome. */
  104. abbr[title] {
  105. border-bottom: 1px dotted;
  106. }
  107. /**
  108. * * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */
  109. b, strong {
  110. font-weight: bold;
  111. }
  112. blockquote {
  113. margin: 1em 40px;
  114. }
  115. /**
  116. * * Address styling not present in Safari 5 and Chrome. */
  117. dfn {
  118. font-style: italic;
  119. }
  120. /**
  121. * * Address differences between Firefox and other browsers.
  122. * * Known issue: no IE 6/7 normalization. */
  123. hr {
  124. box-sizing: content-box;
  125. height: 0;
  126. }
  127. /**
  128. * * Address styling not present in IE 6/7/8/9. */
  129. mark {
  130. background: #ff0;
  131. color: #000;
  132. }
  133. /**
  134. * * Address margins set differently in IE 6/7. */
  135. p, pre {
  136. margin: 1em 0;
  137. }
  138. /**
  139. * * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */
  140. code, kbd, pre, samp {
  141. font-family: monospace, serif;
  142. _font-family: "courier new", monospace;
  143. font-size: 1em;
  144. }
  145. /**
  146. * * Improve readability of pre-formatted text in all browsers. */
  147. pre {
  148. white-space: pre;
  149. white-space: pre-wrap;
  150. word-wrap: break-word;
  151. }
  152. /**
  153. * * Address CSS quotes not supported in IE 6/7. */
  154. q {
  155. quotes: none;
  156. }
  157. q:before, q:after {
  158. content: "";
  159. content: none;
  160. }
  161. /**
  162. * * Address `quotes` property not supported in Safari 4. */
  163. /**
  164. * * Address inconsistent and variable font size in all browsers. */
  165. small {
  166. font-size: 80%;
  167. }
  168. /**
  169. * * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  170. sub {
  171. font-size: 75%;
  172. line-height: 0;
  173. position: relative;
  174. vertical-align: baseline;
  175. }
  176. sup {
  177. font-size: 75%;
  178. line-height: 0;
  179. position: relative;
  180. vertical-align: baseline;
  181. top: -0.5em;
  182. }
  183. sub {
  184. bottom: -0.25em;
  185. }
  186. /* ==========================================================================
  187. * * Lists
  188. * * ========================================================================== */
  189. /**
  190. * * Address margins set differently in IE 6/7. */
  191. dl, menu, ol, ul {
  192. margin: 1em 0;
  193. }
  194. dd {
  195. margin: 0 0 0 40px;
  196. }
  197. /**
  198. * * Address paddings set differently in IE 6/7. */
  199. menu, ol, ul {
  200. padding: 0 0 0 40px;
  201. }
  202. /**
  203. * * Correct list images handled incorrectly in IE 7. */
  204. nav ul, nav ol {
  205. list-style: none;
  206. list-style-image: none;
  207. }
  208. /* ==========================================================================
  209. * * Embedded content
  210. * * ========================================================================== */
  211. /**
  212. * * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
  213. * * 2. Improve image quality when scaled in IE 7. */
  214. img {
  215. border: 0;
  216. /* 1 */
  217. -ms-interpolation-mode: bicubic;
  218. }
  219. /* 2 */
  220. /**
  221. * * Correct overflow displayed oddly in IE 9. */
  222. svg:not(:root) {
  223. overflow: hidden;
  224. }
  225. /* ==========================================================================
  226. * * Figures
  227. * * ========================================================================== */
  228. /**
  229. * * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */
  230. figure, form {
  231. margin: 0;
  232. }
  233. /* ==========================================================================
  234. * * Forms
  235. * * ========================================================================== */
  236. /**
  237. * * Correct margin displayed oddly in IE 6/7. */
  238. /**
  239. * * Define consistent border, margin, and padding. */
  240. fieldset {
  241. border: 1px solid #c0c0c0;
  242. margin: 0 2px;
  243. padding: 0.35em 0.625em 0.75em;
  244. }
  245. /**
  246. * * 1. Correct color not being inherited in IE 6/7/8/9.
  247. * * 2. Correct text not wrapping in Firefox 3.
  248. * * 3. Correct alignment displayed oddly in IE 6/7. */
  249. legend {
  250. border: 0;
  251. /* 1 */
  252. padding: 0;
  253. white-space: normal;
  254. /* 2 */
  255. *margin-left: -7px;
  256. }
  257. /* 3 */
  258. /**
  259. * * 1. Correct font size not being inherited in all browsers.
  260. * * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
  261. * * and Chrome.
  262. * * 3. Improve appearance and consistency in all browsers. */
  263. button, input, select, textarea {
  264. font-size: 100%;
  265. /* 1 */
  266. margin: 0;
  267. /* 2 */
  268. vertical-align: baseline;
  269. /* 3 */
  270. *vertical-align: middle;
  271. }
  272. /* 3 */
  273. /**
  274. * * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  275. * * the UA stylesheet. */
  276. button, input {
  277. line-height: normal;
  278. }
  279. /**
  280. * * Address inconsistent `text-transform` inheritance for `button` and `select`.
  281. * * All other form control elements do not inherit `text-transform` values.
  282. * * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  283. * * Correct `select` style inheritance in Firefox 4+ and Opera. */
  284. button, select {
  285. text-transform: none;
  286. }
  287. /**
  288. * * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  289. * * and `video` controls.
  290. * * 2. Correct inability to style clickable `input` types in iOS.
  291. * * 3. Improve usability and consistency of cursor style between image-type
  292. * * `input` and others.
  293. * * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
  294. * * Known issue: inner spacing remains in IE 6. */
  295. button, html input[type=button] {
  296. -webkit-appearance: button;
  297. /* 2 */
  298. cursor: pointer;
  299. /* 3 */
  300. *overflow: visible;
  301. }
  302. /* 4 */
  303. input[type=reset], input[type=submit] {
  304. -webkit-appearance: button;
  305. /* 2 */
  306. cursor: pointer;
  307. /* 3 */
  308. *overflow: visible;
  309. }
  310. /* 4 */
  311. /**
  312. * * Re-set default cursor for disabled elements. */
  313. button[disabled], html input[disabled] {
  314. cursor: default;
  315. }
  316. /**
  317. * * 1. Address box sizing set to content-box in IE 8/9.
  318. * * 2. Remove excess padding in IE 8/9.
  319. * * 3. Remove excess padding in IE 7.
  320. * * Known issue: excess padding remains in IE 6. */
  321. input {
  322. /* 3 */
  323. }
  324. input[type=checkbox], input[type=radio] {
  325. box-sizing: border-box;
  326. /* 1 */
  327. padding: 0;
  328. /* 2 */
  329. *height: 13px;
  330. /* 3 */
  331. *width: 13px;
  332. }
  333. input[type=search] {
  334. -webkit-appearance: textfield;
  335. /* 1 */
  336. /* 2 */
  337. box-sizing: content-box;
  338. }
  339. input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  340. -webkit-appearance: none;
  341. }
  342. /**
  343. * * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  344. * * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  345. * * (include `-moz` to future-proof). */
  346. /**
  347. * * Remove inner padding and search cancel button in Safari 5 and Chrome
  348. * * on OS X. */
  349. /**
  350. * * Remove inner padding and border in Firefox 3+. */
  351. button::-moz-focus-inner, input::-moz-focus-inner {
  352. border: 0;
  353. padding: 0;
  354. }
  355. /**
  356. * * 1. Remove default vertical scrollbar in IE 6/7/8/9.
  357. * * 2. Improve readability and alignment in all browsers. */
  358. textarea {
  359. overflow: auto;
  360. /* 1 */
  361. vertical-align: top;
  362. }
  363. /* 2 */
  364. /* ==========================================================================
  365. * * Tables
  366. * * ========================================================================== */
  367. /**
  368. * * Remove most spacing between table cells. */
  369. table {
  370. border-collapse: collapse;
  371. border-spacing: 0;
  372. }
  373. /* *
  374. * *Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name> */
  375. .hljs {
  376. display: inline-block;
  377. padding: 0.5em;
  378. background: white;
  379. color: black;
  380. }
  381. .hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket {
  382. color: #008000;
  383. }
  384. .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 {
  385. color: #00f;
  386. }
  387. .xml .hljs-tag {
  388. color: #00f;
  389. }
  390. .xml .hljs-tag .hljs-value {
  391. color: #00f;
  392. }
  393. .hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value {
  394. color: #a31515;
  395. }
  396. .ruby .hljs-symbol {
  397. color: #a31515;
  398. }
  399. .ruby .hljs-symbol .hljs-string {
  400. color: #a31515;
  401. }
  402. .hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute {
  403. color: #a31515;
  404. }
  405. .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 {
  406. color: #2b91af;
  407. }
  408. .hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag {
  409. color: #808080;
  410. }
  411. .vhdl .hljs-typename {
  412. font-weight: bold;
  413. }
  414. .vhdl .hljs-string {
  415. color: #666666;
  416. }
  417. .vhdl .hljs-literal {
  418. color: #a31515;
  419. }
  420. .vhdl .hljs-attribute {
  421. color: #00b0e8;
  422. }
  423. .xml .hljs-attribute {
  424. color: #f00;
  425. }
  426. ul.tsd-descriptions > li > :first-child, .tsd-panel > :first-child, .col > :first-child, .col-11 > :first-child, .col-10 > :first-child, .col-9 > :first-child, .col-8 > :first-child, .col-7 > :first-child, .col-6 > :first-child, .col-5 > :first-child, .col-4 > :first-child, .col-3 > :first-child, .col-2 > :first-child, .col-1 > :first-child,
  427. ul.tsd-descriptions > li > :first-child > :first-child,
  428. .tsd-panel > :first-child > :first-child,
  429. .col > :first-child > :first-child,
  430. .col-11 > :first-child > :first-child,
  431. .col-10 > :first-child > :first-child,
  432. .col-9 > :first-child > :first-child,
  433. .col-8 > :first-child > :first-child,
  434. .col-7 > :first-child > :first-child,
  435. .col-6 > :first-child > :first-child,
  436. .col-5 > :first-child > :first-child,
  437. .col-4 > :first-child > :first-child,
  438. .col-3 > :first-child > :first-child,
  439. .col-2 > :first-child > :first-child,
  440. .col-1 > :first-child > :first-child,
  441. ul.tsd-descriptions > li > :first-child > :first-child > :first-child,
  442. .tsd-panel > :first-child > :first-child > :first-child,
  443. .col > :first-child > :first-child > :first-child,
  444. .col-11 > :first-child > :first-child > :first-child,
  445. .col-10 > :first-child > :first-child > :first-child,
  446. .col-9 > :first-child > :first-child > :first-child,
  447. .col-8 > :first-child > :first-child > :first-child,
  448. .col-7 > :first-child > :first-child > :first-child,
  449. .col-6 > :first-child > :first-child > :first-child,
  450. .col-5 > :first-child > :first-child > :first-child,
  451. .col-4 > :first-child > :first-child > :first-child,
  452. .col-3 > :first-child > :first-child > :first-child,
  453. .col-2 > :first-child > :first-child > :first-child,
  454. .col-1 > :first-child > :first-child > :first-child {
  455. margin-top: 0;
  456. }
  457. ul.tsd-descriptions > li > :last-child, .tsd-panel > :last-child, .col > :last-child, .col-11 > :last-child, .col-10 > :last-child, .col-9 > :last-child, .col-8 > :last-child, .col-7 > :last-child, .col-6 > :last-child, .col-5 > :last-child, .col-4 > :last-child, .col-3 > :last-child, .col-2 > :last-child, .col-1 > :last-child,
  458. ul.tsd-descriptions > li > :last-child > :last-child,
  459. .tsd-panel > :last-child > :last-child,
  460. .col > :last-child > :last-child,
  461. .col-11 > :last-child > :last-child,
  462. .col-10 > :last-child > :last-child,
  463. .col-9 > :last-child > :last-child,
  464. .col-8 > :last-child > :last-child,
  465. .col-7 > :last-child > :last-child,
  466. .col-6 > :last-child > :last-child,
  467. .col-5 > :last-child > :last-child,
  468. .col-4 > :last-child > :last-child,
  469. .col-3 > :last-child > :last-child,
  470. .col-2 > :last-child > :last-child,
  471. .col-1 > :last-child > :last-child,
  472. ul.tsd-descriptions > li > :last-child > :last-child > :last-child,
  473. .tsd-panel > :last-child > :last-child > :last-child,
  474. .col > :last-child > :last-child > :last-child,
  475. .col-11 > :last-child > :last-child > :last-child,
  476. .col-10 > :last-child > :last-child > :last-child,
  477. .col-9 > :last-child > :last-child > :last-child,
  478. .col-8 > :last-child > :last-child > :last-child,
  479. .col-7 > :last-child > :last-child > :last-child,
  480. .col-6 > :last-child > :last-child > :last-child,
  481. .col-5 > :last-child > :last-child > :last-child,
  482. .col-4 > :last-child > :last-child > :last-child,
  483. .col-3 > :last-child > :last-child > :last-child,
  484. .col-2 > :last-child > :last-child > :last-child,
  485. .col-1 > :last-child > :last-child > :last-child {
  486. margin-bottom: 0;
  487. }
  488. .container {
  489. max-width: 1200px;
  490. margin: 0 auto;
  491. padding: 0 40px;
  492. }
  493. @media (max-width: 640px) {
  494. .container {
  495. padding: 0 20px;
  496. }
  497. }
  498. .container-main {
  499. padding-bottom: 200px;
  500. }
  501. .row {
  502. display: -ms-flexbox;
  503. display: flex;
  504. position: relative;
  505. margin: 0 -10px;
  506. }
  507. .row:after {
  508. visibility: hidden;
  509. display: block;
  510. content: "";
  511. clear: both;
  512. height: 0;
  513. }
  514. .col, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  515. box-sizing: border-box;
  516. float: left;
  517. padding: 0 10px;
  518. }
  519. .col-1 {
  520. width: 8.3333333333%;
  521. }
  522. .offset-1 {
  523. margin-left: 8.3333333333%;
  524. }
  525. .col-2 {
  526. width: 16.6666666667%;
  527. }
  528. .offset-2 {
  529. margin-left: 16.6666666667%;
  530. }
  531. .col-3 {
  532. width: 25%;
  533. }
  534. .offset-3 {
  535. margin-left: 25%;
  536. }
  537. .col-4 {
  538. width: 33.3333333333%;
  539. }
  540. .offset-4 {
  541. margin-left: 33.3333333333%;
  542. }
  543. .col-5 {
  544. width: 41.6666666667%;
  545. }
  546. .offset-5 {
  547. margin-left: 41.6666666667%;
  548. }
  549. .col-6 {
  550. width: 50%;
  551. }
  552. .offset-6 {
  553. margin-left: 50%;
  554. }
  555. .col-7 {
  556. width: 58.3333333333%;
  557. }
  558. .offset-7 {
  559. margin-left: 58.3333333333%;
  560. }
  561. .col-8 {
  562. width: 66.6666666667%;
  563. }
  564. .offset-8 {
  565. margin-left: 66.6666666667%;
  566. }
  567. .col-9 {
  568. width: 75%;
  569. }
  570. .offset-9 {
  571. margin-left: 75%;
  572. }
  573. .col-10 {
  574. width: 83.3333333333%;
  575. }
  576. .offset-10 {
  577. margin-left: 83.3333333333%;
  578. }
  579. .col-11 {
  580. width: 91.6666666667%;
  581. }
  582. .offset-11 {
  583. margin-left: 91.6666666667%;
  584. }
  585. .tsd-kind-icon {
  586. display: block;
  587. position: relative;
  588. padding-left: 20px;
  589. text-indent: -20px;
  590. }
  591. .tsd-kind-icon:before {
  592. content: "";
  593. display: inline-block;
  594. vertical-align: middle;
  595. width: 17px;
  596. height: 17px;
  597. margin: 0 3px 2px 0;
  598. background-image: url(../images/icons.png);
  599. }
  600. @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  601. .tsd-kind-icon:before {
  602. background-image: url(../images/icons@2x.png);
  603. background-size: 238px 204px;
  604. }
  605. }
  606. .tsd-signature.tsd-kind-icon:before {
  607. background-position: 0 -153px;
  608. }
  609. .tsd-kind-object-literal > .tsd-kind-icon:before {
  610. background-position: 0px -17px;
  611. }
  612. .tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before {
  613. background-position: -17px -17px;
  614. }
  615. .tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before {
  616. background-position: -34px -17px;
  617. }
  618. .tsd-kind-class > .tsd-kind-icon:before {
  619. background-position: 0px -34px;
  620. }
  621. .tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  622. background-position: -17px -34px;
  623. }
  624. .tsd-kind-class.tsd-is-private > .tsd-kind-icon:before {
  625. background-position: -34px -34px;
  626. }
  627. .tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before {
  628. background-position: 0px -51px;
  629. }
  630. .tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
  631. background-position: -17px -51px;
  632. }
  633. .tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
  634. background-position: -34px -51px;
  635. }
  636. .tsd-kind-interface > .tsd-kind-icon:before {
  637. background-position: 0px -68px;
  638. }
  639. .tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before {
  640. background-position: -17px -68px;
  641. }
  642. .tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before {
  643. background-position: -34px -68px;
  644. }
  645. .tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before {
  646. background-position: 0px -85px;
  647. }
  648. .tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
  649. background-position: -17px -85px;
  650. }
  651. .tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
  652. background-position: -34px -85px;
  653. }
  654. .tsd-kind-namespace > .tsd-kind-icon:before {
  655. background-position: 0px -102px;
  656. }
  657. .tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before {
  658. background-position: -17px -102px;
  659. }
  660. .tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before {
  661. background-position: -34px -102px;
  662. }
  663. .tsd-kind-module > .tsd-kind-icon:before {
  664. background-position: 0px -102px;
  665. }
  666. .tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before {
  667. background-position: -17px -102px;
  668. }
  669. .tsd-kind-module.tsd-is-private > .tsd-kind-icon:before {
  670. background-position: -34px -102px;
  671. }
  672. .tsd-kind-enum > .tsd-kind-icon:before {
  673. background-position: 0px -119px;
  674. }
  675. .tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  676. background-position: -17px -119px;
  677. }
  678. .tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  679. background-position: -34px -119px;
  680. }
  681. .tsd-kind-enum-member > .tsd-kind-icon:before {
  682. background-position: 0px -136px;
  683. }
  684. .tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before {
  685. background-position: -17px -136px;
  686. }
  687. .tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before {
  688. background-position: -34px -136px;
  689. }
  690. .tsd-kind-signature > .tsd-kind-icon:before {
  691. background-position: 0px -153px;
  692. }
  693. .tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before {
  694. background-position: -17px -153px;
  695. }
  696. .tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before {
  697. background-position: -34px -153px;
  698. }
  699. .tsd-kind-type-alias > .tsd-kind-icon:before {
  700. background-position: 0px -170px;
  701. }
  702. .tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before {
  703. background-position: -17px -170px;
  704. }
  705. .tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before {
  706. background-position: -34px -170px;
  707. }
  708. .tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before {
  709. background-position: 0px -187px;
  710. }
  711. .tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
  712. background-position: -17px -187px;
  713. }
  714. .tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
  715. background-position: -34px -187px;
  716. }
  717. .tsd-kind-variable > .tsd-kind-icon:before {
  718. background-position: -136px -0px;
  719. }
  720. .tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before {
  721. background-position: -153px -0px;
  722. }
  723. .tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before {
  724. background-position: -119px -0px;
  725. }
  726. .tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before {
  727. background-position: -51px -0px;
  728. }
  729. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  730. background-position: -68px -0px;
  731. }
  732. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  733. background-position: -85px -0px;
  734. }
  735. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  736. background-position: -102px -0px;
  737. }
  738. .tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  739. background-position: -119px -0px;
  740. }
  741. .tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before {
  742. background-position: -170px -0px;
  743. }
  744. .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  745. background-position: -187px -0px;
  746. }
  747. .tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  748. background-position: -119px -0px;
  749. }
  750. .tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before {
  751. background-position: -204px -0px;
  752. }
  753. .tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  754. background-position: -221px -0px;
  755. }
  756. .tsd-kind-property > .tsd-kind-icon:before {
  757. background-position: -136px -0px;
  758. }
  759. .tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before {
  760. background-position: -153px -0px;
  761. }
  762. .tsd-kind-property.tsd-is-private > .tsd-kind-icon:before {
  763. background-position: -119px -0px;
  764. }
  765. .tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before {
  766. background-position: -51px -0px;
  767. }
  768. .tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  769. background-position: -68px -0px;
  770. }
  771. .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  772. background-position: -85px -0px;
  773. }
  774. .tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  775. background-position: -102px -0px;
  776. }
  777. .tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  778. background-position: -119px -0px;
  779. }
  780. .tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before {
  781. background-position: -170px -0px;
  782. }
  783. .tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  784. background-position: -187px -0px;
  785. }
  786. .tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  787. background-position: -119px -0px;
  788. }
  789. .tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before {
  790. background-position: -204px -0px;
  791. }
  792. .tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  793. background-position: -221px -0px;
  794. }
  795. .tsd-kind-get-signature > .tsd-kind-icon:before {
  796. background-position: -136px -17px;
  797. }
  798. .tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before {
  799. background-position: -153px -17px;
  800. }
  801. .tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before {
  802. background-position: -119px -17px;
  803. }
  804. .tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  805. background-position: -51px -17px;
  806. }
  807. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  808. background-position: -68px -17px;
  809. }
  810. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  811. background-position: -85px -17px;
  812. }
  813. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  814. background-position: -102px -17px;
  815. }
  816. .tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  817. background-position: -119px -17px;
  818. }
  819. .tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  820. background-position: -170px -17px;
  821. }
  822. .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  823. background-position: -187px -17px;
  824. }
  825. .tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  826. background-position: -119px -17px;
  827. }
  828. .tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  829. background-position: -204px -17px;
  830. }
  831. .tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  832. background-position: -221px -17px;
  833. }
  834. .tsd-kind-set-signature > .tsd-kind-icon:before {
  835. background-position: -136px -34px;
  836. }
  837. .tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before {
  838. background-position: -153px -34px;
  839. }
  840. .tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before {
  841. background-position: -119px -34px;
  842. }
  843. .tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  844. background-position: -51px -34px;
  845. }
  846. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  847. background-position: -68px -34px;
  848. }
  849. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  850. background-position: -85px -34px;
  851. }
  852. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  853. background-position: -102px -34px;
  854. }
  855. .tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  856. background-position: -119px -34px;
  857. }
  858. .tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  859. background-position: -170px -34px;
  860. }
  861. .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  862. background-position: -187px -34px;
  863. }
  864. .tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  865. background-position: -119px -34px;
  866. }
  867. .tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  868. background-position: -204px -34px;
  869. }
  870. .tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  871. background-position: -221px -34px;
  872. }
  873. .tsd-kind-accessor > .tsd-kind-icon:before {
  874. background-position: -136px -51px;
  875. }
  876. .tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before {
  877. background-position: -153px -51px;
  878. }
  879. .tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before {
  880. background-position: -119px -51px;
  881. }
  882. .tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before {
  883. background-position: -51px -51px;
  884. }
  885. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  886. background-position: -68px -51px;
  887. }
  888. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  889. background-position: -85px -51px;
  890. }
  891. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  892. background-position: -102px -51px;
  893. }
  894. .tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  895. background-position: -119px -51px;
  896. }
  897. .tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before {
  898. background-position: -170px -51px;
  899. }
  900. .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  901. background-position: -187px -51px;
  902. }
  903. .tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  904. background-position: -119px -51px;
  905. }
  906. .tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before {
  907. background-position: -204px -51px;
  908. }
  909. .tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  910. background-position: -221px -51px;
  911. }
  912. .tsd-kind-function > .tsd-kind-icon:before {
  913. background-position: -136px -68px;
  914. }
  915. .tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {
  916. background-position: -153px -68px;
  917. }
  918. .tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {
  919. background-position: -119px -68px;
  920. }
  921. .tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {
  922. background-position: -51px -68px;
  923. }
  924. .tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  925. background-position: -68px -68px;
  926. }
  927. .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  928. background-position: -85px -68px;
  929. }
  930. .tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  931. background-position: -102px -68px;
  932. }
  933. .tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  934. background-position: -119px -68px;
  935. }
  936. .tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {
  937. background-position: -170px -68px;
  938. }
  939. .tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  940. background-position: -187px -68px;
  941. }
  942. .tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  943. background-position: -119px -68px;
  944. }
  945. .tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {
  946. background-position: -204px -68px;
  947. }
  948. .tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  949. background-position: -221px -68px;
  950. }
  951. .tsd-kind-method > .tsd-kind-icon:before {
  952. background-position: -136px -68px;
  953. }
  954. .tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {
  955. background-position: -153px -68px;
  956. }
  957. .tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {
  958. background-position: -119px -68px;
  959. }
  960. .tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {
  961. background-position: -51px -68px;
  962. }
  963. .tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  964. background-position: -68px -68px;
  965. }
  966. .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  967. background-position: -85px -68px;
  968. }
  969. .tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  970. background-position: -102px -68px;
  971. }
  972. .tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  973. background-position: -119px -68px;
  974. }
  975. .tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {
  976. background-position: -170px -68px;
  977. }
  978. .tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  979. background-position: -187px -68px;
  980. }
  981. .tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  982. background-position: -119px -68px;
  983. }
  984. .tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {
  985. background-position: -204px -68px;
  986. }
  987. .tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  988. background-position: -221px -68px;
  989. }
  990. .tsd-kind-call-signature > .tsd-kind-icon:before {
  991. background-position: -136px -68px;
  992. }
  993. .tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {
  994. background-position: -153px -68px;
  995. }
  996. .tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {
  997. background-position: -119px -68px;
  998. }
  999. .tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  1000. background-position: -51px -68px;
  1001. }
  1002. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1003. background-position: -68px -68px;
  1004. }
  1005. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1006. background-position: -85px -68px;
  1007. }
  1008. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1009. background-position: -102px -68px;
  1010. }
  1011. .tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1012. background-position: -119px -68px;
  1013. }
  1014. .tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1015. background-position: -170px -68px;
  1016. }
  1017. .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1018. background-position: -187px -68px;
  1019. }
  1020. .tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1021. background-position: -119px -68px;
  1022. }
  1023. .tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1024. background-position: -204px -68px;
  1025. }
  1026. .tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1027. background-position: -221px -68px;
  1028. }
  1029. .tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before {
  1030. background-position: -136px -85px;
  1031. }
  1032. .tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
  1033. background-position: -153px -85px;
  1034. }
  1035. .tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
  1036. background-position: -119px -85px;
  1037. }
  1038. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {
  1039. background-position: -51px -85px;
  1040. }
  1041. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1042. background-position: -68px -85px;
  1043. }
  1044. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1045. background-position: -85px -85px;
  1046. }
  1047. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1048. background-position: -102px -85px;
  1049. }
  1050. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1051. background-position: -119px -85px;
  1052. }
  1053. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1054. background-position: -170px -85px;
  1055. }
  1056. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1057. background-position: -187px -85px;
  1058. }
  1059. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1060. background-position: -119px -85px;
  1061. }
  1062. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1063. background-position: -204px -85px;
  1064. }
  1065. .tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1066. background-position: -221px -85px;
  1067. }
  1068. .tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before {
  1069. background-position: -136px -85px;
  1070. }
  1071. .tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {
  1072. background-position: -153px -85px;
  1073. }
  1074. .tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {
  1075. background-position: -119px -85px;
  1076. }
  1077. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {
  1078. background-position: -51px -85px;
  1079. }
  1080. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1081. background-position: -68px -85px;
  1082. }
  1083. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1084. background-position: -85px -85px;
  1085. }
  1086. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1087. background-position: -102px -85px;
  1088. }
  1089. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1090. background-position: -119px -85px;
  1091. }
  1092. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1093. background-position: -170px -85px;
  1094. }
  1095. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1096. background-position: -187px -85px;
  1097. }
  1098. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1099. background-position: -119px -85px;
  1100. }
  1101. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1102. background-position: -204px -85px;
  1103. }
  1104. .tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1105. background-position: -221px -85px;
  1106. }
  1107. .tsd-kind-constructor > .tsd-kind-icon:before {
  1108. background-position: -136px -102px;
  1109. }
  1110. .tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before {
  1111. background-position: -153px -102px;
  1112. }
  1113. .tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before {
  1114. background-position: -119px -102px;
  1115. }
  1116. .tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before {
  1117. background-position: -51px -102px;
  1118. }
  1119. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1120. background-position: -68px -102px;
  1121. }
  1122. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1123. background-position: -85px -102px;
  1124. }
  1125. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1126. background-position: -102px -102px;
  1127. }
  1128. .tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1129. background-position: -119px -102px;
  1130. }
  1131. .tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1132. background-position: -170px -102px;
  1133. }
  1134. .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1135. background-position: -187px -102px;
  1136. }
  1137. .tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1138. background-position: -119px -102px;
  1139. }
  1140. .tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1141. background-position: -204px -102px;
  1142. }
  1143. .tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1144. background-position: -221px -102px;
  1145. }
  1146. .tsd-kind-constructor-signature > .tsd-kind-icon:before {
  1147. background-position: -136px -102px;
  1148. }
  1149. .tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before {
  1150. background-position: -153px -102px;
  1151. }
  1152. .tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before {
  1153. background-position: -119px -102px;
  1154. }
  1155. .tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  1156. background-position: -51px -102px;
  1157. }
  1158. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1159. background-position: -68px -102px;
  1160. }
  1161. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1162. background-position: -85px -102px;
  1163. }
  1164. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1165. background-position: -102px -102px;
  1166. }
  1167. .tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1168. background-position: -119px -102px;
  1169. }
  1170. .tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1171. background-position: -170px -102px;
  1172. }
  1173. .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1174. background-position: -187px -102px;
  1175. }
  1176. .tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1177. background-position: -119px -102px;
  1178. }
  1179. .tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1180. background-position: -204px -102px;
  1181. }
  1182. .tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1183. background-position: -221px -102px;
  1184. }
  1185. .tsd-kind-index-signature > .tsd-kind-icon:before {
  1186. background-position: -136px -119px;
  1187. }
  1188. .tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before {
  1189. background-position: -153px -119px;
  1190. }
  1191. .tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before {
  1192. background-position: -119px -119px;
  1193. }
  1194. .tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  1195. background-position: -51px -119px;
  1196. }
  1197. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1198. background-position: -68px -119px;
  1199. }
  1200. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1201. background-position: -85px -119px;
  1202. }
  1203. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1204. background-position: -102px -119px;
  1205. }
  1206. .tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1207. background-position: -119px -119px;
  1208. }
  1209. .tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1210. background-position: -170px -119px;
  1211. }
  1212. .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1213. background-position: -187px -119px;
  1214. }
  1215. .tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1216. background-position: -119px -119px;
  1217. }
  1218. .tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1219. background-position: -204px -119px;
  1220. }
  1221. .tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1222. background-position: -221px -119px;
  1223. }
  1224. .tsd-kind-event > .tsd-kind-icon:before {
  1225. background-position: -136px -136px;
  1226. }
  1227. .tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {
  1228. background-position: -153px -136px;
  1229. }
  1230. .tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {
  1231. background-position: -119px -136px;
  1232. }
  1233. .tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {
  1234. background-position: -51px -136px;
  1235. }
  1236. .tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1237. background-position: -68px -136px;
  1238. }
  1239. .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1240. background-position: -85px -136px;
  1241. }
  1242. .tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1243. background-position: -102px -136px;
  1244. }
  1245. .tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1246. background-position: -119px -136px;
  1247. }
  1248. .tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1249. background-position: -170px -136px;
  1250. }
  1251. .tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1252. background-position: -187px -136px;
  1253. }
  1254. .tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1255. background-position: -119px -136px;
  1256. }
  1257. .tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1258. background-position: -204px -136px;
  1259. }
  1260. .tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1261. background-position: -221px -136px;
  1262. }
  1263. .tsd-is-static > .tsd-kind-icon:before {
  1264. background-position: -136px -153px;
  1265. }
  1266. .tsd-is-static.tsd-is-protected > .tsd-kind-icon:before {
  1267. background-position: -153px -153px;
  1268. }
  1269. .tsd-is-static.tsd-is-private > .tsd-kind-icon:before {
  1270. background-position: -119px -153px;
  1271. }
  1272. .tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before {
  1273. background-position: -51px -153px;
  1274. }
  1275. .tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1276. background-position: -68px -153px;
  1277. }
  1278. .tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1279. background-position: -85px -153px;
  1280. }
  1281. .tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1282. background-position: -102px -153px;
  1283. }
  1284. .tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1285. background-position: -119px -153px;
  1286. }
  1287. .tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1288. background-position: -170px -153px;
  1289. }
  1290. .tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1291. background-position: -187px -153px;
  1292. }
  1293. .tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1294. background-position: -119px -153px;
  1295. }
  1296. .tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1297. background-position: -204px -153px;
  1298. }
  1299. .tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1300. background-position: -221px -153px;
  1301. }
  1302. .tsd-is-static.tsd-kind-function > .tsd-kind-icon:before {
  1303. background-position: -136px -170px;
  1304. }
  1305. .tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {
  1306. background-position: -153px -170px;
  1307. }
  1308. .tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {
  1309. background-position: -119px -170px;
  1310. }
  1311. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {
  1312. background-position: -51px -170px;
  1313. }
  1314. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1315. background-position: -68px -170px;
  1316. }
  1317. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1318. background-position: -85px -170px;
  1319. }
  1320. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1321. background-position: -102px -170px;
  1322. }
  1323. .tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1324. background-position: -119px -170px;
  1325. }
  1326. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1327. background-position: -170px -170px;
  1328. }
  1329. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1330. background-position: -187px -170px;
  1331. }
  1332. .tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1333. background-position: -119px -170px;
  1334. }
  1335. .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1336. background-position: -204px -170px;
  1337. }
  1338. .tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1339. background-position: -221px -170px;
  1340. }
  1341. .tsd-is-static.tsd-kind-method > .tsd-kind-icon:before {
  1342. background-position: -136px -170px;
  1343. }
  1344. .tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {
  1345. background-position: -153px -170px;
  1346. }
  1347. .tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {
  1348. background-position: -119px -170px;
  1349. }
  1350. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {
  1351. background-position: -51px -170px;
  1352. }
  1353. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1354. background-position: -68px -170px;
  1355. }
  1356. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1357. background-position: -85px -170px;
  1358. }
  1359. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1360. background-position: -102px -170px;
  1361. }
  1362. .tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1363. background-position: -119px -170px;
  1364. }
  1365. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1366. background-position: -170px -170px;
  1367. }
  1368. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1369. background-position: -187px -170px;
  1370. }
  1371. .tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1372. background-position: -119px -170px;
  1373. }
  1374. .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1375. background-position: -204px -170px;
  1376. }
  1377. .tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1378. background-position: -221px -170px;
  1379. }
  1380. .tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before {
  1381. background-position: -136px -170px;
  1382. }
  1383. .tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {
  1384. background-position: -153px -170px;
  1385. }
  1386. .tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {
  1387. background-position: -119px -170px;
  1388. }
  1389. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {
  1390. background-position: -51px -170px;
  1391. }
  1392. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1393. background-position: -68px -170px;
  1394. }
  1395. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1396. background-position: -85px -170px;
  1397. }
  1398. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1399. background-position: -102px -170px;
  1400. }
  1401. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1402. background-position: -119px -170px;
  1403. }
  1404. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1405. background-position: -170px -170px;
  1406. }
  1407. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1408. background-position: -187px -170px;
  1409. }
  1410. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1411. background-position: -119px -170px;
  1412. }
  1413. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1414. background-position: -204px -170px;
  1415. }
  1416. .tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1417. background-position: -221px -170px;
  1418. }
  1419. .tsd-is-static.tsd-kind-event > .tsd-kind-icon:before {
  1420. background-position: -136px -187px;
  1421. }
  1422. .tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {
  1423. background-position: -153px -187px;
  1424. }
  1425. .tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {
  1426. background-position: -119px -187px;
  1427. }
  1428. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {
  1429. background-position: -51px -187px;
  1430. }
  1431. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {
  1432. background-position: -68px -187px;
  1433. }
  1434. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {
  1435. background-position: -85px -187px;
  1436. }
  1437. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {
  1438. background-position: -102px -187px;
  1439. }
  1440. .tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {
  1441. background-position: -119px -187px;
  1442. }
  1443. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {
  1444. background-position: -170px -187px;
  1445. }
  1446. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {
  1447. background-position: -187px -187px;
  1448. }
  1449. .tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {
  1450. background-position: -119px -187px;
  1451. }
  1452. .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {
  1453. background-position: -204px -187px;
  1454. }
  1455. .tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {
  1456. background-position: -221px -187px;
  1457. }
  1458. @keyframes fade-in {
  1459. from {
  1460. opacity: 0;
  1461. }
  1462. to {
  1463. opacity: 1;
  1464. }
  1465. }
  1466. @keyframes fade-out {
  1467. from {
  1468. opacity: 1;
  1469. visibility: visible;
  1470. }
  1471. to {
  1472. opacity: 0;
  1473. }
  1474. }
  1475. @keyframes fade-in-delayed {
  1476. 0% {
  1477. opacity: 0;
  1478. }
  1479. 33% {
  1480. opacity: 0;
  1481. }
  1482. 100% {
  1483. opacity: 1;
  1484. }
  1485. }
  1486. @keyframes fade-out-delayed {
  1487. 0% {
  1488. opacity: 1;
  1489. visibility: visible;
  1490. }
  1491. 66% {
  1492. opacity: 0;
  1493. }
  1494. 100% {
  1495. opacity: 0;
  1496. }
  1497. }
  1498. @keyframes shift-to-left {
  1499. from {
  1500. transform: translate(0, 0);
  1501. }
  1502. to {
  1503. transform: translate(-25%, 0);
  1504. }
  1505. }
  1506. @keyframes unshift-to-left {
  1507. from {
  1508. transform: translate(-25%, 0);
  1509. }
  1510. to {
  1511. transform: translate(0, 0);
  1512. }
  1513. }
  1514. @keyframes pop-in-from-right {
  1515. from {
  1516. transform: translate(100%, 0);
  1517. }
  1518. to {
  1519. transform: translate(0, 0);
  1520. }
  1521. }
  1522. @keyframes pop-out-to-right {
  1523. from {
  1524. transform: translate(0, 0);
  1525. visibility: visible;
  1526. }
  1527. to {
  1528. transform: translate(100%, 0);
  1529. }
  1530. }
  1531. body {
  1532. background: #fdfdfd;
  1533. font-family: "Segoe UI", sans-serif;
  1534. font-size: 16px;
  1535. color: #222;
  1536. }
  1537. a {
  1538. color: #4da6ff;
  1539. text-decoration: none;
  1540. }
  1541. a:hover {
  1542. text-decoration: underline;
  1543. }
  1544. code, pre {
  1545. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1546. padding: 0.2em;
  1547. margin: 0;
  1548. font-size: 14px;
  1549. background-color: rgba(0, 0, 0, 0.04);
  1550. }
  1551. pre {
  1552. padding: 10px;
  1553. }
  1554. pre code {
  1555. padding: 0;
  1556. font-size: 100%;
  1557. background-color: transparent;
  1558. }
  1559. .tsd-typography {
  1560. line-height: 1.333em;
  1561. }
  1562. .tsd-typography ul {
  1563. list-style: square;
  1564. padding: 0 0 0 20px;
  1565. margin: 0;
  1566. }
  1567. .tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 {
  1568. font-size: 1em;
  1569. margin: 0;
  1570. }
  1571. .tsd-typography h5, .tsd-typography h6 {
  1572. font-weight: normal;
  1573. }
  1574. .tsd-typography p, .tsd-typography ul, .tsd-typography ol {
  1575. margin: 1em 0;
  1576. }
  1577. @media (min-width: 901px) and (max-width: 1024px) {
  1578. html.default .col-content {
  1579. width: 72%;
  1580. }
  1581. html.default .col-menu {
  1582. width: 28%;
  1583. }
  1584. html.default .tsd-navigation {
  1585. padding-left: 10px;
  1586. }
  1587. }
  1588. @media (max-width: 900px) {
  1589. html.default .col-content {
  1590. float: none;
  1591. width: 100%;
  1592. }
  1593. html.default .col-menu {
  1594. position: fixed !important;
  1595. overflow: auto;
  1596. -webkit-overflow-scrolling: touch;
  1597. z-index: 1024;
  1598. top: 0 !important;
  1599. bottom: 0 !important;
  1600. left: auto !important;
  1601. right: 0 !important;
  1602. width: 100%;
  1603. padding: 20px 20px 0 0;
  1604. max-width: 450px;
  1605. visibility: hidden;
  1606. background-color: #fff;
  1607. transform: translate(100%, 0);
  1608. }
  1609. html.default .col-menu > *:last-child {
  1610. padding-bottom: 20px;
  1611. }
  1612. html.default .overlay {
  1613. content: "";
  1614. display: block;
  1615. position: fixed;
  1616. z-index: 1023;
  1617. top: 0;
  1618. left: 0;
  1619. right: 0;
  1620. bottom: 0;
  1621. background-color: rgba(0, 0, 0, 0.75);
  1622. visibility: hidden;
  1623. }
  1624. html.default.to-has-menu .overlay {
  1625. animation: fade-in 0.4s;
  1626. }
  1627. html.default.to-has-menu header,
  1628. html.default.to-has-menu footer,
  1629. html.default.to-has-menu .col-content {
  1630. animation: shift-to-left 0.4s;
  1631. }
  1632. html.default.to-has-menu .col-menu {
  1633. animation: pop-in-from-right 0.4s;
  1634. }
  1635. html.default.from-has-menu .overlay {
  1636. animation: fade-out 0.4s;
  1637. }
  1638. html.default.from-has-menu header,
  1639. html.default.from-has-menu footer,
  1640. html.default.from-has-menu .col-content {
  1641. animation: unshift-to-left 0.4s;
  1642. }
  1643. html.default.from-has-menu .col-menu {
  1644. animation: pop-out-to-right 0.4s;
  1645. }
  1646. html.default.has-menu body {
  1647. overflow: hidden;
  1648. }
  1649. html.default.has-menu .overlay {
  1650. visibility: visible;
  1651. }
  1652. html.default.has-menu header,
  1653. html.default.has-menu footer,
  1654. html.default.has-menu .col-content {
  1655. transform: translate(-25%, 0);
  1656. }
  1657. html.default.has-menu .col-menu {
  1658. visibility: visible;
  1659. transform: translate(0, 0);
  1660. }
  1661. }
  1662. .tsd-page-title {
  1663. padding: 70px 0 20px 0;
  1664. margin: 0 0 40px 0;
  1665. background: #fff;
  1666. box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  1667. }
  1668. .tsd-page-title h1 {
  1669. margin: 0;
  1670. }
  1671. .tsd-breadcrumb {
  1672. margin: 0;
  1673. padding: 0;
  1674. color: #808080;
  1675. }
  1676. .tsd-breadcrumb a {
  1677. color: #808080;
  1678. text-decoration: none;
  1679. }
  1680. .tsd-breadcrumb a:hover {
  1681. text-decoration: underline;
  1682. }
  1683. .tsd-breadcrumb li {
  1684. display: inline;
  1685. }
  1686. .tsd-breadcrumb li:after {
  1687. content: " / ";
  1688. }
  1689. html.minimal .container {
  1690. margin: 0;
  1691. }
  1692. html.minimal .container-main {
  1693. padding-top: 50px;
  1694. padding-bottom: 0;
  1695. }
  1696. html.minimal .content-wrap {
  1697. padding-left: 300px;
  1698. }
  1699. html.minimal .tsd-navigation {
  1700. position: fixed !important;
  1701. overflow: auto;
  1702. -webkit-overflow-scrolling: touch;
  1703. box-sizing: border-box;
  1704. z-index: 1;
  1705. left: 0;
  1706. top: 40px;
  1707. bottom: 0;
  1708. width: 300px;
  1709. padding: 20px;
  1710. margin: 0;
  1711. }
  1712. html.minimal .tsd-member .tsd-member {
  1713. margin-left: 0;
  1714. }
  1715. html.minimal .tsd-page-toolbar {
  1716. position: fixed;
  1717. z-index: 2;
  1718. }
  1719. html.minimal #tsd-filter .tsd-filter-group {
  1720. right: 0;
  1721. transform: none;
  1722. }
  1723. html.minimal footer {
  1724. background-color: transparent;
  1725. }
  1726. html.minimal footer .container {
  1727. padding: 0;
  1728. }
  1729. html.minimal .tsd-generator {
  1730. padding: 0;
  1731. }
  1732. @media (max-width: 900px) {
  1733. html.minimal .tsd-navigation {
  1734. display: none;
  1735. }
  1736. html.minimal .content-wrap {
  1737. padding-left: 0;
  1738. }
  1739. }
  1740. dl.tsd-comment-tags {
  1741. overflow: hidden;
  1742. }
  1743. dl.tsd-comment-tags dt {
  1744. float: left;
  1745. padding: 1px 5px;
  1746. margin: 0 10px 0 0;
  1747. border-radius: 4px;
  1748. border: 1px solid #808080;
  1749. color: #808080;
  1750. font-size: 0.8em;
  1751. font-weight: normal;
  1752. }
  1753. dl.tsd-comment-tags dd {
  1754. margin: 0 0 10px 0;
  1755. }
  1756. dl.tsd-comment-tags dd:before, dl.tsd-comment-tags dd:after {
  1757. display: table;
  1758. content: " ";
  1759. }
  1760. dl.tsd-comment-tags dd pre, dl.tsd-comment-tags dd:after {
  1761. clear: both;
  1762. }
  1763. dl.tsd-comment-tags p {
  1764. margin: 0;
  1765. }
  1766. .tsd-panel.tsd-comment .lead {
  1767. font-size: 1.1em;
  1768. line-height: 1.333em;
  1769. margin-bottom: 2em;
  1770. }
  1771. .tsd-panel.tsd-comment .lead:last-child {
  1772. margin-bottom: 0;
  1773. }
  1774. .toggle-protected .tsd-is-private {
  1775. display: none;
  1776. }
  1777. .toggle-public .tsd-is-private,
  1778. .toggle-public .tsd-is-protected,
  1779. .toggle-public .tsd-is-private-protected {
  1780. display: none;
  1781. }
  1782. .toggle-inherited .tsd-is-inherited {
  1783. display: none;
  1784. }
  1785. .toggle-only-exported .tsd-is-not-exported {
  1786. display: none;
  1787. }
  1788. .toggle-externals .tsd-is-external {
  1789. display: none;
  1790. }
  1791. #tsd-filter {
  1792. position: relative;
  1793. display: inline-block;
  1794. height: 40px;
  1795. vertical-align: bottom;
  1796. }
  1797. .no-filter #tsd-filter {
  1798. display: none;
  1799. }
  1800. #tsd-filter .tsd-filter-group {
  1801. display: inline-block;
  1802. height: 40px;
  1803. vertical-align: bottom;
  1804. white-space: nowrap;
  1805. }
  1806. #tsd-filter input {
  1807. display: none;
  1808. }
  1809. @media (max-width: 900px) {
  1810. #tsd-filter .tsd-filter-group {
  1811. display: block;
  1812. position: absolute;
  1813. top: 40px;
  1814. right: 20px;
  1815. height: auto;
  1816. background-color: #fff;
  1817. visibility: hidden;
  1818. transform: translate(50%, 0);
  1819. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  1820. }
  1821. .has-options #tsd-filter .tsd-filter-group {
  1822. visibility: visible;
  1823. }
  1824. .to-has-options #tsd-filter .tsd-filter-group {
  1825. animation: fade-in 0.2s;
  1826. }
  1827. .from-has-options #tsd-filter .tsd-filter-group {
  1828. animation: fade-out 0.2s;
  1829. }
  1830. #tsd-filter label,
  1831. #tsd-filter .tsd-select {
  1832. display: block;
  1833. padding-right: 20px;
  1834. }
  1835. }
  1836. footer {
  1837. border-top: 1px solid #eee;
  1838. background-color: #fff;
  1839. }
  1840. footer.with-border-bottom {
  1841. border-bottom: 1px solid #eee;
  1842. }
  1843. footer .tsd-legend-group {
  1844. font-size: 0;
  1845. }
  1846. footer .tsd-legend {
  1847. display: inline-block;
  1848. width: 25%;
  1849. padding: 0;
  1850. font-size: 16px;
  1851. list-style: none;
  1852. line-height: 1.333em;
  1853. vertical-align: top;
  1854. }
  1855. @media (max-width: 900px) {
  1856. footer .tsd-legend {
  1857. width: 50%;
  1858. }
  1859. }
  1860. .tsd-hierarchy {
  1861. list-style: square;
  1862. padding: 0 0 0 20px;
  1863. margin: 0;
  1864. }
  1865. .tsd-hierarchy .target {
  1866. font-weight: bold;
  1867. }
  1868. .tsd-index-panel .tsd-index-content {
  1869. margin-bottom: -30px !important;
  1870. }
  1871. .tsd-index-panel .tsd-index-section {
  1872. margin-bottom: 30px !important;
  1873. }
  1874. .tsd-index-panel h3 {
  1875. margin: 0 -20px 10px -20px;
  1876. padding: 0 20px 10px 20px;
  1877. border-bottom: 1px solid #eee;
  1878. }
  1879. .tsd-index-panel ul.tsd-index-list {
  1880. -moz-column-count: 3;
  1881. -ms-column-count: 3;
  1882. -o-column-count: 3;
  1883. column-count: 3;
  1884. -moz-column-gap: 20px;
  1885. -ms-column-gap: 20px;
  1886. -o-column-gap: 20px;
  1887. column-gap: 20px;
  1888. padding: 0;
  1889. list-style: none;
  1890. line-height: 1.333em;
  1891. }
  1892. @media (max-width: 900px) {
  1893. .tsd-index-panel ul.tsd-index-list {
  1894. -moz-column-count: 1;
  1895. -ms-column-count: 1;
  1896. -o-column-count: 1;
  1897. column-count: 1;
  1898. }
  1899. }
  1900. @media (min-width: 901px) and (max-width: 1024px) {
  1901. .tsd-index-panel ul.tsd-index-list {
  1902. -moz-column-count: 2;
  1903. -ms-column-count: 2;
  1904. -o-column-count: 2;
  1905. column-count: 2;
  1906. }
  1907. }
  1908. .tsd-index-panel ul.tsd-index-list li {
  1909. -webkit-page-break-inside: avoid;
  1910. -moz-page-break-inside: avoid;
  1911. -ms-page-break-inside: avoid;
  1912. -o-page-break-inside: avoid;
  1913. page-break-inside: avoid;
  1914. }
  1915. .tsd-index-panel a,
  1916. .tsd-index-panel .tsd-parent-kind-module a {
  1917. color: #9600ff;
  1918. }
  1919. .tsd-index-panel .tsd-parent-kind-interface a {
  1920. color: #7da01f;
  1921. }
  1922. .tsd-index-panel .tsd-parent-kind-enum a {
  1923. color: #cc9900;
  1924. }
  1925. .tsd-index-panel .tsd-parent-kind-class a {
  1926. color: #4da6ff;
  1927. }
  1928. .tsd-index-panel .tsd-kind-module a {
  1929. color: #9600ff;
  1930. }
  1931. .tsd-index-panel .tsd-kind-interface a {
  1932. color: #7da01f;
  1933. }
  1934. .tsd-index-panel .tsd-kind-enum a {
  1935. color: #cc9900;
  1936. }
  1937. .tsd-index-panel .tsd-kind-class a {
  1938. color: #4da6ff;
  1939. }
  1940. .tsd-index-panel .tsd-is-private a {
  1941. color: #808080;
  1942. }
  1943. .tsd-flag {
  1944. display: inline-block;
  1945. padding: 1px 5px;
  1946. border-radius: 4px;
  1947. color: #fff;
  1948. background-color: #808080;
  1949. text-indent: 0;
  1950. font-size: 14px;
  1951. font-weight: normal;
  1952. }
  1953. .tsd-anchor {
  1954. position: absolute;
  1955. top: -100px;
  1956. }
  1957. .tsd-member {
  1958. position: relative;
  1959. }
  1960. .tsd-member .tsd-anchor + h3 {
  1961. margin-top: 0;
  1962. margin-bottom: 0;
  1963. border-bottom: none;
  1964. }
  1965. .tsd-navigation {
  1966. margin: 0 0 0 40px;
  1967. }
  1968. .tsd-navigation a {
  1969. display: block;
  1970. padding-top: 2px;
  1971. padding-bottom: 2px;
  1972. border-left: 2px solid transparent;
  1973. color: #222;
  1974. text-decoration: none;
  1975. transition: border-left-color 0.1s;
  1976. }
  1977. .tsd-navigation a:hover {
  1978. text-decoration: underline;
  1979. }
  1980. .tsd-navigation ul {
  1981. margin: 0;
  1982. padding: 0;
  1983. list-style: none;
  1984. }
  1985. .tsd-navigation li {
  1986. padding: 0;
  1987. }
  1988. .tsd-navigation.primary {
  1989. padding-bottom: 40px;
  1990. }
  1991. .tsd-navigation.primary a {
  1992. display: block;
  1993. padding-top: 6px;
  1994. padding-bottom: 6px;
  1995. }
  1996. .tsd-navigation.primary ul li a {
  1997. padding-left: 5px;
  1998. }
  1999. .tsd-navigation.primary ul li li a {
  2000. padding-left: 25px;
  2001. }
  2002. .tsd-navigation.primary ul li li li a {
  2003. padding-left: 45px;
  2004. }
  2005. .tsd-navigation.primary ul li li li li a {
  2006. padding-left: 65px;
  2007. }
  2008. .tsd-navigation.primary ul li li li li li a {
  2009. padding-left: 85px;
  2010. }
  2011. .tsd-navigation.primary ul li li li li li li a {
  2012. padding-left: 105px;
  2013. }
  2014. .tsd-navigation.primary > ul {
  2015. border-bottom: 1px solid #eee;
  2016. }
  2017. .tsd-navigation.primary li {
  2018. border-top: 1px solid #eee;
  2019. }
  2020. .tsd-navigation.primary li.current > a {
  2021. font-weight: bold;
  2022. }
  2023. .tsd-navigation.primary li.label span {
  2024. display: block;
  2025. padding: 20px 0 6px 5px;
  2026. color: #808080;
  2027. }
  2028. .tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a {
  2029. padding-top: 20px;
  2030. }
  2031. .tsd-navigation.secondary {
  2032. max-height: calc(100vh - 1rem - 40px);
  2033. overflow: auto;
  2034. position: -webkit-sticky;
  2035. position: sticky;
  2036. top: calc(.5rem + 40px);
  2037. transition: 0.3s;
  2038. }
  2039. .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
  2040. max-height: calc(100vh - 1rem);
  2041. top: 0.5rem;
  2042. }
  2043. .tsd-navigation.secondary ul {
  2044. transition: opacity 0.2s;
  2045. }
  2046. .tsd-navigation.secondary ul li a {
  2047. padding-left: 25px;
  2048. }
  2049. .tsd-navigation.secondary ul li li a {
  2050. padding-left: 45px;
  2051. }
  2052. .tsd-navigation.secondary ul li li li a {
  2053. padding-left: 65px;
  2054. }
  2055. .tsd-navigation.secondary ul li li li li a {
  2056. padding-left: 85px;
  2057. }
  2058. .tsd-navigation.secondary ul li li li li li a {
  2059. padding-left: 105px;
  2060. }
  2061. .tsd-navigation.secondary ul li li li li li li a {
  2062. padding-left: 125px;
  2063. }
  2064. .tsd-navigation.secondary ul.current a {
  2065. border-left-color: #eee;
  2066. }
  2067. .tsd-navigation.secondary li.focus > a,
  2068. .tsd-navigation.secondary ul.current li.focus > a {
  2069. border-left-color: #000;
  2070. }
  2071. .tsd-navigation.secondary li.current {
  2072. margin-top: 20px;
  2073. margin-bottom: 20px;
  2074. border-left-color: #eee;
  2075. }
  2076. .tsd-navigation.secondary li.current > a {
  2077. font-weight: bold;
  2078. }
  2079. @media (min-width: 901px) {
  2080. .menu-sticky-wrap {
  2081. position: static;
  2082. }
  2083. }
  2084. .tsd-panel {
  2085. margin: 20px 0;
  2086. padding: 20px;
  2087. background-color: #fff;
  2088. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  2089. }
  2090. .tsd-panel:empty {
  2091. display: none;
  2092. }
  2093. .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 {
  2094. margin: 1.5em -20px 10px -20px;
  2095. padding: 0 20px 10px 20px;
  2096. border-bottom: 1px solid #eee;
  2097. }
  2098. .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature {
  2099. margin-bottom: 0;
  2100. border-bottom: 0;
  2101. }
  2102. .tsd-panel table {
  2103. display: block;
  2104. width: 100%;
  2105. overflow: auto;
  2106. margin-top: 10px;
  2107. word-break: normal;
  2108. word-break: keep-all;
  2109. }
  2110. .tsd-panel table th {
  2111. font-weight: bold;
  2112. }
  2113. .tsd-panel table th, .tsd-panel table td {
  2114. padding: 6px 13px;
  2115. border: 1px solid #ddd;
  2116. }
  2117. .tsd-panel table tr {
  2118. background-color: #fff;
  2119. border-top: 1px solid #ccc;
  2120. }
  2121. .tsd-panel table tr:nth-child(2n) {
  2122. background-color: #f8f8f8;
  2123. }
  2124. .tsd-panel-group {
  2125. margin: 60px 0;
  2126. }
  2127. .tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 {
  2128. padding-left: 20px;
  2129. padding-right: 20px;
  2130. }
  2131. #tsd-search {
  2132. transition: background-color 0.2s;
  2133. }
  2134. #tsd-search .title {
  2135. position: relative;
  2136. z-index: 2;
  2137. }
  2138. #tsd-search .field {
  2139. position: absolute;
  2140. left: 0;
  2141. top: 0;
  2142. right: 40px;
  2143. height: 40px;
  2144. }
  2145. #tsd-search .field input {
  2146. box-sizing: border-box;
  2147. position: relative;
  2148. top: -50px;
  2149. z-index: 1;
  2150. width: 100%;
  2151. padding: 0 10px;
  2152. opacity: 0;
  2153. outline: 0;
  2154. border: 0;
  2155. background: transparent;
  2156. color: #222;
  2157. }
  2158. #tsd-search .field label {
  2159. position: absolute;
  2160. overflow: hidden;
  2161. right: -40px;
  2162. }
  2163. #tsd-search .field input,
  2164. #tsd-search .title {
  2165. transition: opacity 0.2s;
  2166. }
  2167. #tsd-search .results {
  2168. position: absolute;
  2169. visibility: hidden;
  2170. top: 40px;
  2171. width: 100%;
  2172. margin: 0;
  2173. padding: 0;
  2174. list-style: none;
  2175. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  2176. }
  2177. #tsd-search .results li {
  2178. padding: 0 10px;
  2179. background-color: #fdfdfd;
  2180. }
  2181. #tsd-search .results li:nth-child(even) {
  2182. background-color: #fff;
  2183. }
  2184. #tsd-search .results li.state {
  2185. display: none;
  2186. }
  2187. #tsd-search .results li.current,
  2188. #tsd-search .results li:hover {
  2189. background-color: #eee;
  2190. }
  2191. #tsd-search .results a {
  2192. display: block;
  2193. }
  2194. #tsd-search .results a:before {
  2195. top: 10px;
  2196. }
  2197. #tsd-search .results span.parent {
  2198. color: #808080;
  2199. font-weight: normal;
  2200. }
  2201. #tsd-search.has-focus {
  2202. background-color: #eee;
  2203. }
  2204. #tsd-search.has-focus .field input {
  2205. top: 0;
  2206. opacity: 1;
  2207. }
  2208. #tsd-search.has-focus .title {
  2209. z-index: 0;
  2210. opacity: 0;
  2211. }
  2212. #tsd-search.has-focus .results {
  2213. visibility: visible;
  2214. }
  2215. #tsd-search.loading .results li.state.loading {
  2216. display: block;
  2217. }
  2218. #tsd-search.failure .results li.state.failure {
  2219. display: block;
  2220. }
  2221. .tsd-signature {
  2222. margin: 0 0 1em 0;
  2223. padding: 10px;
  2224. border: 1px solid #eee;
  2225. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  2226. font-size: 14px;
  2227. overflow-x: auto;
  2228. }
  2229. .tsd-signature.tsd-kind-icon {
  2230. padding-left: 30px;
  2231. }
  2232. .tsd-signature.tsd-kind-icon:before {
  2233. top: 10px;
  2234. left: 10px;
  2235. }
  2236. .tsd-panel > .tsd-signature {
  2237. margin-left: -20px;
  2238. margin-right: -20px;
  2239. border-width: 1px 0;
  2240. }
  2241. .tsd-panel > .tsd-signature.tsd-kind-icon {
  2242. padding-left: 40px;
  2243. }
  2244. .tsd-panel > .tsd-signature.tsd-kind-icon:before {
  2245. left: 20px;
  2246. }
  2247. .tsd-signature-symbol {
  2248. color: #808080;
  2249. font-weight: normal;
  2250. }
  2251. .tsd-signature-type {
  2252. font-style: italic;
  2253. font-weight: normal;
  2254. }
  2255. .tsd-signatures {
  2256. padding: 0;
  2257. margin: 0 0 1em 0;
  2258. border: 1px solid #eee;
  2259. }
  2260. .tsd-signatures .tsd-signature {
  2261. margin: 0;
  2262. border-width: 1px 0 0 0;
  2263. transition: background-color 0.1s;
  2264. }
  2265. .tsd-signatures .tsd-signature:first-child {
  2266. border-top-width: 0;
  2267. }
  2268. .tsd-signatures .tsd-signature.current {
  2269. background-color: #eee;
  2270. }
  2271. .tsd-signatures.active > .tsd-signature {
  2272. cursor: pointer;
  2273. }
  2274. .tsd-panel > .tsd-signatures {
  2275. margin-left: -20px;
  2276. margin-right: -20px;
  2277. border-width: 1px 0;
  2278. }
  2279. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon {
  2280. padding-left: 40px;
  2281. }
  2282. .tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before {
  2283. left: 20px;
  2284. }
  2285. .tsd-panel > a.anchor + .tsd-signatures {
  2286. border-top-width: 0;
  2287. margin-top: -20px;
  2288. }
  2289. ul.tsd-descriptions {
  2290. position: relative;
  2291. overflow: hidden;
  2292. padding: 0;
  2293. list-style: none;
  2294. }
  2295. ul.tsd-descriptions.active > .tsd-description {
  2296. display: none;
  2297. }
  2298. ul.tsd-descriptions.active > .tsd-description.current {
  2299. display: block;
  2300. }
  2301. ul.tsd-descriptions.active > .tsd-description.fade-in {
  2302. animation: fade-in-delayed 0.3s;
  2303. }
  2304. ul.tsd-descriptions.active > .tsd-description.fade-out {
  2305. animation: fade-out-delayed 0.3s;
  2306. position: absolute;
  2307. display: block;
  2308. top: 0;
  2309. left: 0;
  2310. right: 0;
  2311. opacity: 0;
  2312. visibility: hidden;
  2313. }
  2314. ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 {
  2315. font-size: 16px;
  2316. margin: 1em 0 0.5em 0;
  2317. }
  2318. ul.tsd-parameters,
  2319. ul.tsd-type-parameters {
  2320. list-style: square;
  2321. margin: 0;
  2322. padding-left: 20px;
  2323. }
  2324. ul.tsd-parameters > li.tsd-parameter-signature,
  2325. ul.tsd-type-parameters > li.tsd-parameter-signature {
  2326. list-style: none;
  2327. margin-left: -20px;
  2328. }
  2329. ul.tsd-parameters h5,
  2330. ul.tsd-type-parameters h5 {
  2331. font-size: 16px;
  2332. margin: 1em 0 0.5em 0;
  2333. }
  2334. ul.tsd-parameters .tsd-comment,
  2335. ul.tsd-type-parameters .tsd-comment {
  2336. margin-top: -0.5em;
  2337. }
  2338. .tsd-sources {
  2339. font-size: 14px;
  2340. color: #808080;
  2341. margin: 0 0 1em 0;
  2342. }
  2343. .tsd-sources a {
  2344. color: #808080;
  2345. text-decoration: underline;
  2346. }
  2347. .tsd-sources ul, .tsd-sources p {
  2348. margin: 0 !important;
  2349. }
  2350. .tsd-sources ul {
  2351. list-style: none;
  2352. padding: 0;
  2353. }
  2354. .tsd-page-toolbar {
  2355. position: fixed;
  2356. z-index: 1;
  2357. top: 0;
  2358. left: 0;
  2359. width: 100%;
  2360. height: 40px;
  2361. color: #333;
  2362. background: #fff;
  2363. border-bottom: 1px solid #eee;
  2364. transition: transform 0.3s linear;
  2365. }
  2366. .tsd-page-toolbar a {
  2367. color: #333;
  2368. text-decoration: none;
  2369. }
  2370. .tsd-page-toolbar a.title {
  2371. font-weight: bold;
  2372. }
  2373. .tsd-page-toolbar a.title:hover {
  2374. text-decoration: underline;
  2375. }
  2376. .tsd-page-toolbar .table-wrap {
  2377. display: table;
  2378. width: 100%;
  2379. height: 40px;
  2380. }
  2381. .tsd-page-toolbar .table-cell {
  2382. display: table-cell;
  2383. position: relative;
  2384. white-space: nowrap;
  2385. line-height: 40px;
  2386. }
  2387. .tsd-page-toolbar .table-cell:first-child {
  2388. width: 100%;
  2389. }
  2390. .tsd-page-toolbar--hide {
  2391. transform: translateY(-100%);
  2392. }
  2393. .tsd-select .tsd-select-list li:before, .tsd-select .tsd-select-label:before, .tsd-widget:before {
  2394. content: "";
  2395. display: inline-block;
  2396. width: 40px;
  2397. height: 40px;
  2398. margin: 0 -8px 0 0;
  2399. background-image: url(../images/widgets.png);
  2400. background-repeat: no-repeat;
  2401. text-indent: -1024px;
  2402. vertical-align: bottom;
  2403. }
  2404. @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  2405. .tsd-select .tsd-select-list li:before, .tsd-select .tsd-select-label:before, .tsd-widget:before {
  2406. background-image: url(../images/widgets@2x.png);
  2407. background-size: 320px 40px;
  2408. }
  2409. }
  2410. .tsd-widget {
  2411. display: inline-block;
  2412. overflow: hidden;
  2413. opacity: 0.6;
  2414. height: 40px;
  2415. transition: opacity 0.1s, background-color 0.2s;
  2416. vertical-align: bottom;
  2417. cursor: pointer;
  2418. }
  2419. .tsd-widget:hover {
  2420. opacity: 0.8;
  2421. }
  2422. .tsd-widget.active {
  2423. opacity: 1;
  2424. background-color: #eee;
  2425. }
  2426. .tsd-widget.no-caption {
  2427. width: 40px;
  2428. }
  2429. .tsd-widget.no-caption:before {
  2430. margin: 0;
  2431. }
  2432. .tsd-widget.search:before {
  2433. background-position: 0 0;
  2434. }
  2435. .tsd-widget.menu:before {
  2436. background-position: -40px 0;
  2437. }
  2438. .tsd-widget.options:before {
  2439. background-position: -80px 0;
  2440. }
  2441. .tsd-widget.options, .tsd-widget.menu {
  2442. display: none;
  2443. }
  2444. @media (max-width: 900px) {
  2445. .tsd-widget.options, .tsd-widget.menu {
  2446. display: inline-block;
  2447. }
  2448. }
  2449. input[type=checkbox] + .tsd-widget:before {
  2450. background-position: -120px 0;
  2451. }
  2452. input[type=checkbox]:checked + .tsd-widget:before {
  2453. background-position: -160px 0;
  2454. }
  2455. .tsd-select {
  2456. position: relative;
  2457. display: inline-block;
  2458. height: 40px;
  2459. transition: opacity 0.1s, background-color 0.2s;
  2460. vertical-align: bottom;
  2461. cursor: pointer;
  2462. }
  2463. .tsd-select .tsd-select-label {
  2464. opacity: 0.6;
  2465. transition: opacity 0.2s;
  2466. }
  2467. .tsd-select .tsd-select-label:before {
  2468. background-position: -240px 0;
  2469. }
  2470. .tsd-select.active .tsd-select-label {
  2471. opacity: 0.8;
  2472. }
  2473. .tsd-select.active .tsd-select-list {
  2474. visibility: visible;
  2475. opacity: 1;
  2476. transition-delay: 0s;
  2477. }
  2478. .tsd-select .tsd-select-list {
  2479. position: absolute;
  2480. visibility: hidden;
  2481. top: 40px;
  2482. left: 0;
  2483. margin: 0;
  2484. padding: 0;
  2485. opacity: 0;
  2486. list-style: none;
  2487. box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  2488. transition: visibility 0s 0.2s, opacity 0.2s;
  2489. }
  2490. .tsd-select .tsd-select-list li {
  2491. padding: 0 20px 0 0;
  2492. background-color: #fdfdfd;
  2493. }
  2494. .tsd-select .tsd-select-list li:before {
  2495. background-position: 40px 0;
  2496. }
  2497. .tsd-select .tsd-select-list li:nth-child(even) {
  2498. background-color: #fff;
  2499. }
  2500. .tsd-select .tsd-select-list li:hover {
  2501. background-color: #eee;
  2502. }
  2503. .tsd-select .tsd-select-list li.selected:before {
  2504. background-position: -200px 0;
  2505. }
  2506. @media (max-width: 900px) {
  2507. .tsd-select .tsd-select-list {
  2508. top: 0;
  2509. left: auto;
  2510. right: 100%;
  2511. margin-right: -5px;
  2512. }
  2513. .tsd-select .tsd-select-label:before {
  2514. background-position: -280px 0;
  2515. }
  2516. }
  2517. img {
  2518. max-width: 100%;
  2519. }