
    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_4e0d148829f1951b60a50b02.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_2e1e881ae3e0fd9d1899331c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_5fbd5b279a57c965455e5c58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_9cbb5af80f9ce755e9b5f186.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_1b43711c2fa79ca13dd4afb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-6.216000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-23.352000px;}
.ws20{word-spacing:-18.348000px;}
.ws11{word-spacing:-3.432000px;}
.ws14{word-spacing:-2.904000px;}
.ws7{word-spacing:-2.376000px;}
.ws3{word-spacing:-2.112000px;}
.ws17{word-spacing:-1.320000px;}
.ws13{word-spacing:-0.990000px;}
.ws22{word-spacing:-0.264000px;}
.ws1f{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.198000px;}
.ws27{word-spacing:1.188000px;}
.ws1a{word-spacing:1.386000px;}
.ws28{word-spacing:1.782000px;}
.ws5{word-spacing:2.310000px;}
.ws2{word-spacing:2.376000px;}
.ws2d{word-spacing:3.102000px;}
.ws23{word-spacing:3.300000px;}
.ws19{word-spacing:3.366000px;}
.ws6{word-spacing:3.828000px;}
.wsf{word-spacing:3.894000px;}
.ws4{word-spacing:4.422000px;}
.ws12{word-spacing:4.686000px;}
.ws16{word-spacing:4.752000px;}
.ws1d{word-spacing:5.148000px;}
.wsa{word-spacing:5.412000px;}
.ws26{word-spacing:6.138000px;}
.ws21{word-spacing:6.216000px;}
.ws1c{word-spacing:6.534000px;}
.wse{word-spacing:8.514000px;}
.wsc{word-spacing:8.646000px;}
.wsd{word-spacing:8.844000px;}
.ws10{word-spacing:9.108000px;}
.ws2a{word-spacing:9.174000px;}
.ws15{word-spacing:9.438000px;}
.ws8{word-spacing:9.834000px;}
.ws9{word-spacing:10.560000px;}
.ws2e{word-spacing:10.692000px;}
.ws2c{word-spacing:12.276000px;}
.ws1b{word-spacing:12.474000px;}
.ws25{word-spacing:13.068000px;}
.ws29{word-spacing:13.728000px;}
.ws2b{word-spacing:14.982000px;}
.ws24{word-spacing:19.272000px;}
.ws1e{word-spacing:26.202000px;}
.wsb{word-spacing:27.918000px;}
._b{margin-left:-7.326000px;}
._0{margin-left:-4.302000px;}
._7{margin-left:-3.210000px;}
._1{margin-left:-1.528800px;}
._2{width:1.161600px;}
._8{width:2.996400px;}
._5{width:4.349400px;}
._4{width:5.464800px;}
._3{width:7.068600px;}
._6{width:9.042000px;}
._a{width:10.269600px;}
._e{width:11.510400px;}
._9{width:13.332000px;}
._10{width:15.034800px;}
._f{width:16.658400px;}
._c{width:19.635000px;}
._d{width:20.908800px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:86.225700px;}
.y45{bottom:97.652850px;}
.y32{bottom:101.904750px;}
.y79{bottom:104.975700px;}
.y44{bottom:116.402850px;}
.y31{bottom:120.654750px;}
.y78{bottom:123.725700px;}
.y43{bottom:135.152850px;}
.y30{bottom:139.404750px;}
.y77{bottom:142.475700px;}
.y42{bottom:153.902850px;}
.y2f{bottom:158.154900px;}
.y76{bottom:161.225700px;}
.y41{bottom:172.652850px;}
.y2e{bottom:176.904900px;}
.y75{bottom:179.975700px;}
.y40{bottom:191.402850px;}
.y2d{bottom:195.654900px;}
.y74{bottom:198.725700px;}
.y2c{bottom:214.404900px;}
.y73{bottom:217.475700px;}
.y2b{bottom:233.154900px;}
.y72{bottom:236.225700px;}
.y2a{bottom:251.904900px;}
.y71{bottom:254.975700px;}
.y29{bottom:270.654900px;}
.y70{bottom:277.977750px;}
.y28{bottom:289.404900px;}
.y6f{bottom:296.727750px;}
.y27{bottom:308.154900px;}
.y6e{bottom:315.477750px;}
.y26{bottom:326.904900px;}
.y6d{bottom:334.227750px;}
.y3f{bottom:345.654900px;}
.y25{bottom:349.906800px;}
.y6c{bottom:352.977750px;}
.y3e{bottom:364.404900px;}
.y24{bottom:368.656800px;}
.y6b{bottom:371.727750px;}
.y3d{bottom:383.154900px;}
.y23{bottom:387.406800px;}
.y6a{bottom:390.477750px;}
.y3c{bottom:401.904900px;}
.y22{bottom:406.156800px;}
.y69{bottom:409.227750px;}
.y3b{bottom:420.654900px;}
.y21{bottom:424.906800px;}
.y68{bottom:427.977750px;}
.y3a{bottom:439.404900px;}
.y20{bottom:443.656800px;}
.y67{bottom:446.727750px;}
.y39{bottom:458.154900px;}
.y1f{bottom:462.406800px;}
.y66{bottom:465.477750px;}
.y38{bottom:476.904900px;}
.y1e{bottom:481.156800px;}
.y65{bottom:484.227750px;}
.y1d{bottom:499.906800px;}
.y64{bottom:502.977750px;}
.y1c{bottom:518.656800px;}
.y63{bottom:521.727750px;}
.y1b{bottom:537.406800px;}
.y62{bottom:544.729650px;}
.y1a{bottom:556.156800px;}
.y61{bottom:563.479650px;}
.y19{bottom:574.906800px;}
.y60{bottom:582.229650px;}
.y18{bottom:593.656800px;}
.y5f{bottom:600.979650px;}
.y17{bottom:612.406800px;}
.y5e{bottom:619.729650px;}
.y16{bottom:631.156800px;}
.y5d{bottom:638.479650px;}
.y15{bottom:649.906800px;}
.y5c{bottom:657.229650px;}
.y37{bottom:668.656800px;}
.y14{bottom:672.908700px;}
.y5b{bottom:675.979650px;}
.y36{bottom:687.406800px;}
.y13{bottom:691.658700px;}
.y5a{bottom:694.729650px;}
.y35{bottom:706.156800px;}
.y12{bottom:710.408700px;}
.y59{bottom:713.479650px;}
.y34{bottom:724.906800px;}
.y11{bottom:729.158700px;}
.y58{bottom:732.229650px;}
.y33{bottom:743.656800px;}
.y10{bottom:747.908700px;}
.y57{bottom:750.979650px;}
.yf{bottom:766.658700px;}
.y56{bottom:769.729650px;}
.ye{bottom:785.408700px;}
.y55{bottom:788.479650px;}
.yd{bottom:804.158700px;}
.y54{bottom:811.481700px;}
.yc{bottom:822.908700px;}
.y53{bottom:830.231700px;}
.y82{bottom:831.973800px;}
.yb{bottom:841.658700px;}
.y52{bottom:848.981700px;}
.y81{bottom:850.723800px;}
.ya{bottom:860.408700px;}
.y51{bottom:867.731700px;}
.y80{bottom:869.473800px;}
.y9{bottom:879.158700px;}
.y50{bottom:886.481700px;}
.y7f{bottom:888.223800px;}
.y8{bottom:897.908700px;}
.y4f{bottom:905.231700px;}
.y7e{bottom:906.973800px;}
.y4e{bottom:923.981700px;}
.y7{bottom:928.176000px;}
.y7d{bottom:929.975850px;}
.y4d{bottom:942.731700px;}
.y7c{bottom:952.977750px;}
.y6{bottom:958.176000px;}
.y4c{bottom:961.481700px;}
.y7b{bottom:971.727750px;}
.y4b{bottom:980.231700px;}
.y5{bottom:988.176000px;}
.y4a{bottom:998.981700px;}
.y49{bottom:1017.731700px;}
.y4{bottom:1023.323700px;}
.y48{bottom:1036.481700px;}
.y3{bottom:1039.823700px;}
.y47{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y46{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h3{height:43.681641px;}
.h4{height:43.740234px;}
.h8{height:48.049805px;}
.h7{height:48.082031px;}
.h6{height:48.114258px;}
.h5{height:61.154297px;}
.h2{height:61.236328px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:87.291450px;}
.x8{left:106.299300px;}
.x7{left:400.040700px;}
.x5{left:411.514950px;}
.x9{left:476.716500px;}
.xa{left:497.976450px;}
.x11{left:501.283350px;}
.x3{left:508.762800px;}
.xc{left:530.126100px;}
.x4{left:550.108050px;}
.xf{left:567.943950px;}
.xe{left:585.950550px;}
.xd{left:614.527500px;}
.x10{left:698.469600px;}
.x2{left:775.393650px;}
.x12{left:806.396250px;}
.xb{left:828.593850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-5.525333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-20.757333pt;}
.ws20{word-spacing:-16.309333pt;}
.ws11{word-spacing:-3.050667pt;}
.ws14{word-spacing:-2.581333pt;}
.ws7{word-spacing:-2.112000pt;}
.ws3{word-spacing:-1.877333pt;}
.ws17{word-spacing:-1.173333pt;}
.ws13{word-spacing:-0.880000pt;}
.ws22{word-spacing:-0.234667pt;}
.ws1f{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.176000pt;}
.ws27{word-spacing:1.056000pt;}
.ws1a{word-spacing:1.232000pt;}
.ws28{word-spacing:1.584000pt;}
.ws5{word-spacing:2.053333pt;}
.ws2{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.757333pt;}
.ws23{word-spacing:2.933333pt;}
.ws19{word-spacing:2.992000pt;}
.ws6{word-spacing:3.402667pt;}
.wsf{word-spacing:3.461333pt;}
.ws4{word-spacing:3.930667pt;}
.ws12{word-spacing:4.165333pt;}
.ws16{word-spacing:4.224000pt;}
.ws1d{word-spacing:4.576000pt;}
.wsa{word-spacing:4.810667pt;}
.ws26{word-spacing:5.456000pt;}
.ws21{word-spacing:5.525333pt;}
.ws1c{word-spacing:5.808000pt;}
.wse{word-spacing:7.568000pt;}
.wsc{word-spacing:7.685333pt;}
.wsd{word-spacing:7.861333pt;}
.ws10{word-spacing:8.096000pt;}
.ws2a{word-spacing:8.154667pt;}
.ws15{word-spacing:8.389333pt;}
.ws8{word-spacing:8.741333pt;}
.ws9{word-spacing:9.386667pt;}
.ws2e{word-spacing:9.504000pt;}
.ws2c{word-spacing:10.912000pt;}
.ws1b{word-spacing:11.088000pt;}
.ws25{word-spacing:11.616000pt;}
.ws29{word-spacing:12.202667pt;}
.ws2b{word-spacing:13.317333pt;}
.ws24{word-spacing:17.130667pt;}
.ws1e{word-spacing:23.290667pt;}
.wsb{word-spacing:24.816000pt;}
._b{margin-left:-6.512000pt;}
._0{margin-left:-3.824000pt;}
._7{margin-left:-2.853333pt;}
._1{margin-left:-1.358933pt;}
._2{width:1.032533pt;}
._8{width:2.663467pt;}
._5{width:3.866133pt;}
._4{width:4.857600pt;}
._3{width:6.283200pt;}
._6{width:8.037333pt;}
._a{width:9.128533pt;}
._e{width:10.231467pt;}
._9{width:11.850667pt;}
._10{width:13.364267pt;}
._f{width:14.807467pt;}
._c{width:17.453333pt;}
._d{width:18.585600pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:76.645067pt;}
.y45{bottom:86.802533pt;}
.y32{bottom:90.582000pt;}
.y79{bottom:93.311733pt;}
.y44{bottom:103.469200pt;}
.y31{bottom:107.248667pt;}
.y78{bottom:109.978400pt;}
.y43{bottom:120.135867pt;}
.y30{bottom:123.915333pt;}
.y77{bottom:126.645067pt;}
.y42{bottom:136.802533pt;}
.y2f{bottom:140.582133pt;}
.y76{bottom:143.311733pt;}
.y41{bottom:153.469200pt;}
.y2e{bottom:157.248800pt;}
.y75{bottom:159.978400pt;}
.y40{bottom:170.135867pt;}
.y2d{bottom:173.915467pt;}
.y74{bottom:176.645067pt;}
.y2c{bottom:190.582133pt;}
.y73{bottom:193.311733pt;}
.y2b{bottom:207.248800pt;}
.y72{bottom:209.978400pt;}
.y2a{bottom:223.915467pt;}
.y71{bottom:226.645067pt;}
.y29{bottom:240.582133pt;}
.y70{bottom:247.091333pt;}
.y28{bottom:257.248800pt;}
.y6f{bottom:263.758000pt;}
.y27{bottom:273.915467pt;}
.y6e{bottom:280.424667pt;}
.y26{bottom:290.582133pt;}
.y6d{bottom:297.091333pt;}
.y3f{bottom:307.248800pt;}
.y25{bottom:311.028267pt;}
.y6c{bottom:313.758000pt;}
.y3e{bottom:323.915467pt;}
.y24{bottom:327.694933pt;}
.y6b{bottom:330.424667pt;}
.y3d{bottom:340.582133pt;}
.y23{bottom:344.361600pt;}
.y6a{bottom:347.091333pt;}
.y3c{bottom:357.248800pt;}
.y22{bottom:361.028267pt;}
.y69{bottom:363.758000pt;}
.y3b{bottom:373.915467pt;}
.y21{bottom:377.694933pt;}
.y68{bottom:380.424667pt;}
.y3a{bottom:390.582133pt;}
.y20{bottom:394.361600pt;}
.y67{bottom:397.091333pt;}
.y39{bottom:407.248800pt;}
.y1f{bottom:411.028267pt;}
.y66{bottom:413.758000pt;}
.y38{bottom:423.915467pt;}
.y1e{bottom:427.694933pt;}
.y65{bottom:430.424667pt;}
.y1d{bottom:444.361600pt;}
.y64{bottom:447.091333pt;}
.y1c{bottom:461.028267pt;}
.y63{bottom:463.758000pt;}
.y1b{bottom:477.694933pt;}
.y62{bottom:484.204133pt;}
.y1a{bottom:494.361600pt;}
.y61{bottom:500.870800pt;}
.y19{bottom:511.028267pt;}
.y60{bottom:517.537467pt;}
.y18{bottom:527.694933pt;}
.y5f{bottom:534.204133pt;}
.y17{bottom:544.361600pt;}
.y5e{bottom:550.870800pt;}
.y16{bottom:561.028267pt;}
.y5d{bottom:567.537467pt;}
.y15{bottom:577.694933pt;}
.y5c{bottom:584.204133pt;}
.y37{bottom:594.361600pt;}
.y14{bottom:598.141067pt;}
.y5b{bottom:600.870800pt;}
.y36{bottom:611.028267pt;}
.y13{bottom:614.807733pt;}
.y5a{bottom:617.537467pt;}
.y35{bottom:627.694933pt;}
.y12{bottom:631.474400pt;}
.y59{bottom:634.204133pt;}
.y34{bottom:644.361600pt;}
.y11{bottom:648.141067pt;}
.y58{bottom:650.870800pt;}
.y33{bottom:661.028267pt;}
.y10{bottom:664.807733pt;}
.y57{bottom:667.537467pt;}
.yf{bottom:681.474400pt;}
.y56{bottom:684.204133pt;}
.ye{bottom:698.141067pt;}
.y55{bottom:700.870800pt;}
.yd{bottom:714.807733pt;}
.y54{bottom:721.317067pt;}
.yc{bottom:731.474400pt;}
.y53{bottom:737.983733pt;}
.y82{bottom:739.532267pt;}
.yb{bottom:748.141067pt;}
.y52{bottom:754.650400pt;}
.y81{bottom:756.198933pt;}
.ya{bottom:764.807733pt;}
.y51{bottom:771.317067pt;}
.y80{bottom:772.865600pt;}
.y9{bottom:781.474400pt;}
.y50{bottom:787.983733pt;}
.y7f{bottom:789.532267pt;}
.y8{bottom:798.141067pt;}
.y4f{bottom:804.650400pt;}
.y7e{bottom:806.198933pt;}
.y4e{bottom:821.317067pt;}
.y7{bottom:825.045333pt;}
.y7d{bottom:826.645200pt;}
.y4d{bottom:837.983733pt;}
.y7c{bottom:847.091333pt;}
.y6{bottom:851.712000pt;}
.y4c{bottom:854.650400pt;}
.y7b{bottom:863.758000pt;}
.y4b{bottom:871.317067pt;}
.y5{bottom:878.378667pt;}
.y4a{bottom:887.983733pt;}
.y49{bottom:904.650400pt;}
.y4{bottom:909.621067pt;}
.y48{bottom:921.317067pt;}
.y3{bottom:924.287733pt;}
.y47{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y46{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h3{height:38.828125pt;}
.h4{height:38.880208pt;}
.h8{height:42.710938pt;}
.h7{height:42.739583pt;}
.h6{height:42.768229pt;}
.h5{height:54.359375pt;}
.h2{height:54.432292pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:77.592400pt;}
.x8{left:94.488267pt;}
.x7{left:355.591733pt;}
.x5{left:365.791067pt;}
.x9{left:423.748000pt;}
.xa{left:442.645733pt;}
.x11{left:445.585200pt;}
.x3{left:452.233600pt;}
.xc{left:471.223200pt;}
.x4{left:488.984933pt;}
.xf{left:504.839067pt;}
.xe{left:520.844933pt;}
.xd{left:546.246667pt;}
.x10{left:620.861867pt;}
.x2{left:689.238800pt;}
.x12{left:716.796667pt;}
.xb{left:736.527867pt;}
}




    .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; }
  