
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7eb5891759b0bc4372695995.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4272bd64cd4200df8438079.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a512fbca08643658c68161e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8d91992b14f989ded6a9cc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_65d418224e1bc0995469de20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_655e1211b27fe78060523f62.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.260434px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.519693px;}
.ws0{word-spacing:-13.840374px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-4.061878px;}
._4{margin-left:-2.264350px;}
._0{margin-left:-1.129961px;}
._1{width:1.434806px;}
._5{width:3.349170px;}
._16{width:5.367519px;}
._6{width:7.065908px;}
._7{width:8.161740px;}
._9{width:9.325985px;}
._15{width:10.410715px;}
._14{width:11.414082px;}
._e{width:13.995236px;}
._f{width:15.463578px;}
._11{width:21.204206px;}
._10{width:22.356570px;}
._b{width:25.556652px;}
._a{width:27.256869px;}
._d{width:29.326834px;}
._c{width:30.420936px;}
._13{width:74.825069px;}
._12{width:76.087156px;}
._8{width:111.126800px;}
._2{width:1895.322702px;}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:46.951901px;}
.fs5{font-size:52.559979px;}
.fs6{font-size:55.361498px;}
.fs2{font-size:58.165177px;}
.fs0{font-size:70.078772px;}
.fs4{font-size:81.992967px;}
.fs3{font-size:105.119958px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.360277px;}
.y5{bottom:76.980269px;}
.y31{bottom:180.839928px;}
.y30{bottom:200.819920px;}
.y2f{bottom:220.979912px;}
.y56{bottom:247.980201px;}
.y2e{bottom:249.959900px;}
.y2d{bottom:270.119892px;}
.y55{bottom:276.960189px;}
.y2c{bottom:290.279884px;}
.y54{bottom:305.760178px;}
.y2b{bottom:319.079872px;}
.y53{bottom:325.920170px;}
.y2a{bottom:339.239864px;}
.y52{bottom:346.080162px;}
.y29{bottom:359.399856px;}
.y51{bottom:375.060150px;}
.y28{bottom:388.379845px;}
.y50{bottom:395.220142px;}
.y27{bottom:408.539837px;}
.y4f{bottom:424.020130px;}
.y26{bottom:437.339825px;}
.y4e{bottom:453.000119px;}
.y25{bottom:457.499817px;}
.y4d{bottom:473.160111px;}
.y24{bottom:486.479805px;}
.y4c{bottom:502.140099px;}
.y23{bottom:506.639797px;}
.y4b{bottom:522.300091px;}
.y22{bottom:535.619786px;}
.y4a{bottom:551.100080px;}
.y21{bottom:555.599778px;}
.y49{bottom:571.260071px;}
.y20{bottom:575.759770px;}
.y1f{bottom:595.559762px;}
.y48{bottom:600.240060px;}
.y1e{bottom:615.539754px;}
.y47{bottom:620.400052px;}
.y1d{bottom:644.879742px;}
.y46{bottom:649.200040px;}
.y45{bottom:669.360032px;}
.y1c{bottom:673.679731px;}
.y44{bottom:689.520024px;}
.y1b{bottom:702.659719px;}
.y43{bottom:718.500013px;}
.y1a{bottom:722.819711px;}
.y42{bottom:738.660005px;}
.y19{bottom:742.979703px;}
.y41{bottom:758.819996px;}
.y18{bottom:763.139695px;}
.y17{bottom:783.299687px;}
.y40{bottom:787.619985px;}
.y16{bottom:803.459679px;}
.y3f{bottom:807.779977px;}
.y15{bottom:823.619671px;}
.y3e{bottom:836.759965px;}
.y14{bottom:849.539660px;}
.y13{bottom:863.939654px;}
.y3d{bottom:865.559954px;}
.y12{bottom:869.699652px;}
.y11{bottom:883.919646px;}
.y3c{bottom:885.719946px;}
.y10{bottom:889.859644px;}
.yf{bottom:904.079638px;}
.y3b{bottom:905.879938px;}
.ye{bottom:924.239630px;}
.y3a{bottom:934.859926px;}
.yd{bottom:944.399622px;}
.y39{bottom:955.019918px;}
.yc{bottom:972.839611px;}
.y38{bottom:975.179910px;}
.ya{bottom:997.679601px;}
.y37{bottom:1003.979898px;}
.yb{bottom:1005.059598px;}
.y36{bottom:1023.959890px;}
.y9{bottom:1038.179585px;}
.y35{bottom:1052.939879px;}
.y34{bottom:1073.099871px;}
.y8{bottom:1083.359567px;}
.y33{bottom:1101.899859px;}
.y7{bottom:1113.599555px;}
.y32{bottom:1122.059851px;}
.y4{bottom:1141.679543px;}
.y3{bottom:1157.339537px;}
.y2{bottom:1173.359531px;}
.y1{bottom:1193.519523px;}
.h2{height:35.213926px;}
.h4{height:38.767318px;}
.ha{height:46.057798px;}
.h8{height:51.584745px;}
.hc{height:55.794010px;}
.h3{height:57.085940px;}
.h9{height:68.744264px;}
.h1{height:68.778482px;}
.hb{height:70.626262px;}
.h7{height:80.471613px;}
.h6{height:82.633537px;}
.h5{height:105.941208px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:62.279975px;}
.x6{left:64.080759px;}
.x3{left:68.939972px;}
.x19{left:74.879970px;}
.x13{left:80.099510px;}
.x1d{left:82.801416px;}
.x15{left:128.159949px;}
.x16{left:134.099946px;}
.x1a{left:140.399944px;}
.x1b{left:172.079931px;}
.x1c{left:175.499930px;}
.x7{left:201.599919px;}
.x8{left:207.899917px;}
.x17{left:262.439895px;}
.x18{left:268.379893px;}
.x4{left:311.039695px;}
.x9{left:371.699851px;}
.xa{left:377.999849px;}
.x14{left:391.139048px;}
.x5{left:442.799823px;}
.xb{left:483.839806px;}
.xc{left:490.319804px;}
.xd{left:589.139764px;}
.xe{left:595.439762px;}
.xf{left:693.359723px;}
.x10{left:700.019720px;}
.x11{left:814.859674px;}
.x2{left:816.479673px;}
.x12{left:821.339671px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.231497pt;}
.ws1{word-spacing:-15.573060pt;}
.ws0{word-spacing:-12.302555pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-3.610559pt;}
._4{margin-left:-2.012756pt;}
._0{margin-left:-1.004409pt;}
._1{width:1.275383pt;}
._5{width:2.977040pt;}
._16{width:4.771128pt;}
._6{width:6.280807pt;}
._7{width:7.254880pt;}
._9{width:8.289764pt;}
._15{width:9.253969pt;}
._14{width:10.145851pt;}
._e{width:12.440210pt;}
._f{width:13.745402pt;}
._11{width:18.848183pt;}
._10{width:19.872507pt;}
._b{width:22.717024pt;}
._a{width:24.228328pt;}
._d{width:26.068297pt;}
._c{width:27.040832pt;}
._13{width:66.511172pt;}
._12{width:67.633027pt;}
._8{width:98.779378pt;}
._2{width:1684.731290pt;}
.fs1{font-size:41.735023pt;}
.fs5{font-size:46.719981pt;}
.fs6{font-size:49.210220pt;}
.fs2{font-size:51.702379pt;}
.fs0{font-size:62.292242pt;}
.fs4{font-size:72.882638pt;}
.fs3{font-size:93.439963pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:50.986913pt;}
.y5{bottom:68.426906pt;}
.y31{bottom:160.746602pt;}
.y30{bottom:178.506595pt;}
.y2f{bottom:196.426588pt;}
.y56{bottom:220.426845pt;}
.y2e{bottom:222.186578pt;}
.y2d{bottom:240.106571pt;}
.y55{bottom:246.186835pt;}
.y2c{bottom:258.026563pt;}
.y54{bottom:271.786825pt;}
.y2b{bottom:283.626553pt;}
.y53{bottom:289.706817pt;}
.y2a{bottom:301.546546pt;}
.y52{bottom:307.626810pt;}
.y29{bottom:319.466539pt;}
.y51{bottom:333.386800pt;}
.y28{bottom:345.226529pt;}
.y50{bottom:351.306793pt;}
.y27{bottom:363.146521pt;}
.y4f{bottom:376.906783pt;}
.y26{bottom:388.746511pt;}
.y4e{bottom:402.666772pt;}
.y25{bottom:406.666504pt;}
.y4d{bottom:420.586765pt;}
.y24{bottom:432.426494pt;}
.y4c{bottom:446.346755pt;}
.y23{bottom:450.346487pt;}
.y4b{bottom:464.266748pt;}
.y22{bottom:476.106476pt;}
.y4a{bottom:489.866737pt;}
.y21{bottom:493.866469pt;}
.y49{bottom:507.786730pt;}
.y20{bottom:511.786462pt;}
.y1f{bottom:529.386455pt;}
.y48{bottom:533.546720pt;}
.y1e{bottom:547.146448pt;}
.y47{bottom:551.466713pt;}
.y1d{bottom:573.226437pt;}
.y46{bottom:577.066703pt;}
.y45{bottom:594.986695pt;}
.y1c{bottom:598.826427pt;}
.y44{bottom:612.906688pt;}
.y1b{bottom:624.586417pt;}
.y43{bottom:638.666678pt;}
.y1a{bottom:642.506410pt;}
.y42{bottom:656.586671pt;}
.y19{bottom:660.426402pt;}
.y41{bottom:674.506664pt;}
.y18{bottom:678.346395pt;}
.y17{bottom:696.266388pt;}
.y40{bottom:700.106653pt;}
.y16{bottom:714.186381pt;}
.y3f{bottom:718.026646pt;}
.y15{bottom:732.106374pt;}
.y3e{bottom:743.786636pt;}
.y14{bottom:755.146365pt;}
.y13{bottom:767.946359pt;}
.y3d{bottom:769.386626pt;}
.y12{bottom:773.066357pt;}
.y11{bottom:785.706352pt;}
.y3c{bottom:787.306618pt;}
.y10{bottom:790.986350pt;}
.yf{bottom:803.626345pt;}
.y3b{bottom:805.226611pt;}
.ye{bottom:821.546338pt;}
.y3a{bottom:830.986601pt;}
.yd{bottom:839.466331pt;}
.y39{bottom:848.906594pt;}
.yc{bottom:864.746321pt;}
.y38{bottom:866.826587pt;}
.ya{bottom:886.826312pt;}
.y37{bottom:892.426576pt;}
.yb{bottom:893.386309pt;}
.y36{bottom:910.186569pt;}
.y9{bottom:922.826298pt;}
.y35{bottom:935.946559pt;}
.y34{bottom:953.866552pt;}
.y8{bottom:962.986281pt;}
.y33{bottom:979.466542pt;}
.y7{bottom:989.866271pt;}
.y32{bottom:997.386534pt;}
.y4{bottom:1014.826261pt;}
.y3{bottom:1028.746255pt;}
.y2{bottom:1042.986249pt;}
.y1{bottom:1060.906242pt;}
.h2{height:31.301267pt;}
.h4{height:34.459838pt;}
.ha{height:40.940265pt;}
.h8{height:45.853107pt;}
.hc{height:49.594675pt;}
.h3{height:50.743058pt;}
.h9{height:61.106013pt;}
.h1{height:61.136429pt;}
.hb{height:62.778900pt;}
.h7{height:71.530323pt;}
.h6{height:73.452033pt;}
.h5{height:94.169962pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:55.359978pt;}
.x6{left:56.960675pt;}
.x3{left:61.279975pt;}
.x19{left:66.559973pt;}
.x13{left:71.199564pt;}
.x1d{left:73.601258pt;}
.x15{left:113.919954pt;}
.x16{left:119.199952pt;}
.x1a{left:124.799950pt;}
.x1b{left:152.959939pt;}
.x1c{left:155.999938pt;}
.x7{left:179.199928pt;}
.x8{left:184.799926pt;}
.x17{left:233.279907pt;}
.x18{left:238.559905pt;}
.x4{left:276.479729pt;}
.x9{left:330.399868pt;}
.xa{left:335.999866pt;}
.x14{left:347.679154pt;}
.x5{left:393.599843pt;}
.xb{left:430.079828pt;}
.xc{left:435.839826pt;}
.xd{left:523.679791pt;}
.xe{left:529.279788pt;}
.xf{left:616.319753pt;}
.x10{left:622.239751pt;}
.x11{left:724.319710pt;}
.x2{left:725.759710pt;}
.x12{left:730.079708pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  