
    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_dba3544247e3931a8ffce907.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_d6db9db476fbcd66aad45539.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_34b072ac2682c022e6c33812.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.801000;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_61eb5b3f98b985e249ff81bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_10a03d8b63aeb4210289f928.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_a783c7956dcea8708a769014.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws2{word-spacing:-36.994084px;}
.ws4{word-spacing:-36.670817px;}
.ws0{word-spacing:-31.665925px;}
.ws7{word-spacing:-30.197379px;}
.wsc{word-spacing:-25.200495px;}
.ws3{word-spacing:-24.272861px;}
.ws6{word-spacing:-22.805593px;}
.wsa{word-spacing:-19.204236px;}
.ws8{word-spacing:-16.691895px;}
.ws9{word-spacing:-15.602879px;}
.wsb{word-spacing:-14.405428px;}
.ws1{word-spacing:-13.337883px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-3.242737px;}
._1{margin-left:-1.447304px;}
.fc5{color:rgb(15,67,127);}
.fc4{color:rgb(255,255,255);}
.fc3{color:transparent;}
.fc2{color:rgb(250,201,64);}
.fc1{color:rgb(40,64,126);}
.fc0{color:rgb(239,240,239);}
.fs8{font-size:36.013569px;}
.fs2{font-size:66.689413px;}
.fsd{font-size:72.027138px;}
.fsb{font-size:78.014394px;}
.fsa{font-size:83.459475px;}
.fse{font-size:84.001650px;}
.fsc{font-size:96.021179px;}
.fs3{font-size:108.040707px;}
.fs7{font-size:114.027963px;}
.fsf{font-size:117.404235px;}
.fs5{font-size:121.364307px;}
.fs0{font-size:126.002475px;}
.fs9{font-size:150.986893px;}
.fs1{font-size:158.329624px;}
.fs6{font-size:183.354083px;}
.fs4{font-size:184.970420px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.ye{bottom:5.742508px;}
.y14{bottom:5.766854px;}
.y8{bottom:5.777972px;}
.y34{bottom:6.710320px;}
.y24{bottom:9.171352px;}
.y21{bottom:9.214638px;}
.y1d{bottom:9.428432px;}
.ya{bottom:11.474625px;}
.y10{bottom:11.499014px;}
.y4{bottom:11.510089px;}
.y1b{bottom:13.901577px;}
.y1f{bottom:14.093310px;}
.yd{bottom:27.350607px;}
.y13{bottom:27.374952px;}
.y7{bottom:27.386070px;}
.y2e{bottom:32.637301px;}
.y33{bottom:33.412933px;}
.y2d{bottom:43.891542px;}
.y42{bottom:48.930340px;}
.yc{bottom:48.958705px;}
.y12{bottom:48.983050px;}
.y6{bottom:48.994169px;}
.y74{bottom:53.099812px;}
.y5b{bottom:54.300256px;}
.y2c{bottom:55.145782px;}
.y32{bottom:60.115545px;}
.y2b{bottom:66.400022px;}
.y41{bottom:73.689668px;}
.y5a{bottom:76.808736px;}
.y2a{bottom:77.654263px;}
.y73{bottom:77.859141px;}
.y29{bottom:88.908503px;}
.y40{bottom:98.448997px;}
.y59{bottom:99.317217px;}
.y72{bottom:102.618469px;}
.y58{bottom:121.825698px;}
.y3f{bottom:123.208326px;}
.y71{bottom:127.377798px;}
.y3e{bottom:147.967655px;}
.y70{bottom:152.137127px;}
.y57{bottom:170.203885px;}
.y3d{bottom:172.726983px;}
.y6f{bottom:176.896456px;}
.y56{bottom:192.712366px;}
.y6e{bottom:201.655784px;}
.y55{bottom:215.220847px;}
.y6d{bottom:226.415113px;}
.y3c{bottom:236.667136px;}
.y54{bottom:237.729327px;}
.y11{bottom:242.370006px;}
.yf{bottom:253.170006px;}
.y53{bottom:260.237808px;}
.y3b{bottom:261.426465px;}
.y3a{bottom:286.185793px;}
.y6c{bottom:302.713894px;}
.y39{bottom:310.945122px;}
.y52{bottom:319.267573px;}
.y6b{bottom:327.473222px;}
.yb{bottom:329.130003px;}
.y9{bottom:339.930002px;}
.y23{bottom:349.290002px;}
.y6a{bottom:352.232551px;}
.y25{bottom:356.532850px;}
.y51{bottom:363.118485px;}
.y38{bottom:374.363966px;}
.y69{bottom:376.991880px;}
.y50{bottom:385.626966px;}
.y37{bottom:399.123294px;}
.y68{bottom:401.751209px;}
.y22{bottom:403.222940px;}
.y4f{bottom:408.135446px;}
.y5{bottom:409.769999px;}
.y3{bottom:420.569999px;}
.y36{bottom:423.882623px;}
.y4e{bottom:430.643927px;}
.y1e{bottom:434.969998px;}
.y20{bottom:437.849998px;}
.y35{bottom:448.641952px;}
.y67{bottom:466.389638px;}
.y4d{bottom:469.477762px;}
.y1a{bottom:480.689996px;}
.y1c{bottom:482.129996px;}
.y75{bottom:487.511486px;}
.y66{bottom:491.148967px;}
.y4c{bottom:491.986243px;}
.y2{bottom:512.599730px;}
.y4b{bottom:514.494724px;}
.y65{bottom:515.908295px;}
.y4a{bottom:537.003204px;}
.y64{bottom:540.667624px;}
.y63{bottom:565.426953px;}
.y31{bottom:573.569992px;}
.y49{bottom:575.684108px;}
.y62{bottom:590.186282px;}
.y48{bottom:598.192589px;}
.y19{bottom:610.389907px;}
.y47{bottom:620.701070px;}
.y61{bottom:633.027446px;}
.y46{bottom:643.209550px;}
.y18{bottom:647.528900px;}
.y60{bottom:663.413895px;}
.y45{bottom:665.718031px;}
.y17{bottom:684.667893px;}
.y5f{bottom:693.800344px;}
.y27{bottom:696.029448px;}
.y44{bottom:699.347634px;}
.y16{bottom:721.806886px;}
.y5e{bottom:724.186793px;}
.y43{bottom:729.734083px;}
.y26{bottom:732.043017px;}
.y28{bottom:766.600361px;}
.y15{bottom:791.545304px;}
.y30{bottom:794.525413px;}
.y5d{bottom:799.461253px;}
.y5c{bottom:836.600246px;}
.y2f{bottom:842.918647px;}
.h13{height:32.664307px;}
.h10{height:41.039998px;}
.hc{height:41.399998px;}
.h4{height:53.999998px;}
.h7{height:60.487298px;}
.ha{height:62.639997px;}
.he{height:62.999997px;}
.h19{height:65.328614px;}
.h6{height:66.239997px;}
.h17{height:70.759055px;}
.h16{height:75.697744px;}
.h1a{height:76.189496px;}
.h15{height:81.359997px;}
.hd{height:87.018208px;}
.h18{height:87.091209px;}
.h3{height:90.343774px;}
.h9{height:97.992921px;}
.h11{height:103.423362px;}
.h1b{height:106.485641px;}
.h5{height:113.522341px;}
.h8{height:114.284245px;}
.h12{height:124.922072px;}
.hb{height:132.623791px;}
.h14{height:136.945112px;}
.hf{height:144.116310px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w3{width:28.439999px;}
.w5{width:31.319999px;}
.wc{width:33.119999px;}
.wb{width:33.479999px;}
.w9{width:65.159997px;}
.w8{width:146.879994px;}
.we{width:249.839990px;}
.wa{width:263.879989px;}
.w7{width:343.079986px;}
.w6{width:379.799984px;}
.w4{width:395.639984px;}
.wd{width:438.915391px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x6{left:1.233244px;}
.x18{left:10.445342px;}
.x15{left:13.469919px;}
.x3{left:14.759999px;}
.x19{left:16.090047px;}
.x16{left:17.918861px;}
.x8{left:20.290792px;}
.x7{left:26.954941px;}
.x1f{left:28.798007px;}
.x5{left:30.239999px;}
.x2{left:31.679999px;}
.xa{left:34.288253px;}
.x1e{left:37.973496px;}
.x9{left:41.744187px;}
.x21{left:44.729791px;}
.x20{left:53.574920px;}
.x1d{left:61.449138px;}
.x4{left:65.560854px;}
.x17{left:76.458495px;}
.x1{left:87.117400px;}
.x13{left:88.543347px;}
.x1c{left:90.342540px;}
.x24{left:105.892532px;}
.x50{left:123.278366px;}
.x14{left:127.810094px;}
.x25{left:138.406735px;}
.xb{left:144.825995px;}
.x22{left:147.726653px;}
.x26{left:161.917547px;}
.x23{left:170.551659px;}
.x27{left:198.687260px;}
.x34{left:445.879909px;}
.x37{left:448.271435px;}
.x2f{left:451.978775px;}
.x2e{left:460.999752px;}
.x2d{left:462.388947px;}
.x36{left:468.071864px;}
.x35{left:479.044749px;}
.x1a{left:507.565994px;}
.x33{left:518.070897px;}
.x28{left:523.622886px;}
.x30{left:529.013440px;}
.x2b{left:539.010736px;}
.x1b{left:540.502232px;}
.x31{left:547.618106px;}
.x32{left:555.074040px;}
.x2a{left:556.226206px;}
.x3a{left:563.884482px;}
.x39{left:578.180885px;}
.x38{left:586.979947px;}
.x3b{left:594.323685px;}
.x3c{left:603.801866px;}
.x29{left:607.695578px;}
.x2c{left:649.003350px;}
.x48{left:867.186252px;}
.x10{left:869.777489px;}
.x3e{left:872.617188px;}
.x11{left:883.799963px;}
.xe{left:892.079963px;}
.x3f{left:893.118075px;}
.x40{left:897.180153px;}
.x41{left:899.888204px;}
.x3d{left:908.718681px;}
.xc{left:917.999962px;}
.x12{left:931.512565px;}
.x46{left:978.269815px;}
.x45{left:1010.625756px;}
.x47{left:1012.454570px;}
.x42{left:1013.667918px;}
.x43{left:1016.481478px;}
.x44{left:1021.827242px;}
.x49{left:1025.364827px;}
.x4d{left:1034.772669px;}
.x4e{left:1038.430297px;}
.x4b{left:1045.006993px;}
.x4c{left:1046.554451px;}
.xd{left:1074.599955px;}
.x4a{left:1084.678191px;}
.xf{left:1165.679951px;}
.x4f{left:1173.446011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-32.883630pt;}
.ws4{word-spacing:-32.596282pt;}
.ws0{word-spacing:-28.147489pt;}
.ws7{word-spacing:-26.842114pt;}
.wsc{word-spacing:-22.400440pt;}
.ws3{word-spacing:-21.575877pt;}
.ws6{word-spacing:-20.271638pt;}
.wsa{word-spacing:-17.070432pt;}
.ws8{word-spacing:-14.837240pt;}
.ws9{word-spacing:-13.869226pt;}
.wsb{word-spacing:-12.804825pt;}
.ws1{word-spacing:-11.855896pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-2.882433pt;}
._1{margin-left:-1.286493pt;}
.fs8{font-size:32.012061pt;}
.fs2{font-size:59.279479pt;}
.fsd{font-size:64.024123pt;}
.fsb{font-size:69.346128pt;}
.fsa{font-size:74.186200pt;}
.fse{font-size:74.668133pt;}
.fsc{font-size:85.352159pt;}
.fs3{font-size:96.036184pt;}
.fs7{font-size:101.358189pt;}
.fsf{font-size:104.359320pt;}
.fs5{font-size:107.879384pt;}
.fs0{font-size:112.002200pt;}
.fs9{font-size:134.210571pt;}
.fs1{font-size:140.737444pt;}
.fs6{font-size:162.981408pt;}
.fs4{font-size:164.418151pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.ye{bottom:5.104452pt;}
.y14{bottom:5.126093pt;}
.y8{bottom:5.135975pt;}
.y34{bottom:5.964729pt;}
.y24{bottom:8.152313pt;}
.y21{bottom:8.190790pt;}
.y1d{bottom:8.380829pt;}
.ya{bottom:10.199666pt;}
.y10{bottom:10.221346pt;}
.y4{bottom:10.231190pt;}
.y1b{bottom:12.356957pt;}
.y1f{bottom:12.527387pt;}
.yd{bottom:24.311650pt;}
.y13{bottom:24.333291pt;}
.y7{bottom:24.343174pt;}
.y2e{bottom:29.010934pt;}
.y33{bottom:29.700385pt;}
.y2d{bottom:39.014704pt;}
.y42{bottom:43.493635pt;}
.yc{bottom:43.518849pt;}
.y12{bottom:43.540489pt;}
.y6{bottom:43.550372pt;}
.y74{bottom:47.199833pt;}
.y5b{bottom:48.266894pt;}
.y2c{bottom:49.018473pt;}
.y32{bottom:53.436040pt;}
.y2b{bottom:59.022242pt;}
.y41{bottom:65.501928pt;}
.y5a{bottom:68.274432pt;}
.y2a{bottom:69.026011pt;}
.y73{bottom:69.208125pt;}
.y29{bottom:79.029780pt;}
.y40{bottom:87.510220pt;}
.y59{bottom:88.281971pt;}
.y72{bottom:91.216417pt;}
.y58{bottom:108.289509pt;}
.y3f{bottom:109.518512pt;}
.y71{bottom:113.224710pt;}
.y3e{bottom:131.526804pt;}
.y70{bottom:135.233002pt;}
.y57{bottom:151.292342pt;}
.y3d{bottom:153.535096pt;}
.y6f{bottom:157.241294pt;}
.y56{bottom:171.299881pt;}
.y6e{bottom:179.249586pt;}
.y55{bottom:191.307419pt;}
.y6d{bottom:201.257878pt;}
.y3c{bottom:210.370787pt;}
.y54{bottom:211.314958pt;}
.y11{bottom:215.440005pt;}
.yf{bottom:225.040005pt;}
.y53{bottom:231.322496pt;}
.y3b{bottom:232.379080pt;}
.y3a{bottom:254.387372pt;}
.y6c{bottom:269.079017pt;}
.y39{bottom:276.395664pt;}
.y52{bottom:283.793398pt;}
.y6b{bottom:291.087309pt;}
.yb{bottom:292.560002pt;}
.y9{bottom:302.160002pt;}
.y23{bottom:310.480001pt;}
.y6a{bottom:313.095601pt;}
.y25{bottom:316.918089pt;}
.y51{bottom:322.771987pt;}
.y38{bottom:332.767969pt;}
.y69{bottom:335.103893pt;}
.y50{bottom:342.779525pt;}
.y37{bottom:354.776262pt;}
.y68{bottom:357.112185pt;}
.y22{bottom:358.420391pt;}
.y4f{bottom:362.787063pt;}
.y5{bottom:364.239999pt;}
.y3{bottom:373.839999pt;}
.y36{bottom:376.784554pt;}
.y4e{bottom:382.794602pt;}
.y1e{bottom:386.639998pt;}
.y20{bottom:389.199998pt;}
.y35{bottom:398.792846pt;}
.y67{bottom:414.568567pt;}
.y4d{bottom:417.313567pt;}
.y1a{bottom:427.279997pt;}
.y1c{bottom:428.559997pt;}
.y75{bottom:433.343543pt;}
.y66{bottom:436.576859pt;}
.y4c{bottom:437.321105pt;}
.y2{bottom:455.644204pt;}
.y4b{bottom:457.328643pt;}
.y65{bottom:458.585151pt;}
.y4a{bottom:477.336182pt;}
.y64{bottom:480.593444pt;}
.y63{bottom:502.601736pt;}
.y31{bottom:509.839993pt;}
.y49{bottom:511.719207pt;}
.y62{bottom:524.610028pt;}
.y48{bottom:531.726746pt;}
.y19{bottom:542.568806pt;}
.y47{bottom:551.734284pt;}
.y61{bottom:562.691063pt;}
.y46{bottom:571.741823pt;}
.y18{bottom:575.581244pt;}
.y60{bottom:589.701240pt;}
.y45{bottom:591.749361pt;}
.y17{bottom:608.593683pt;}
.y5f{bottom:616.711417pt;}
.y27{bottom:618.692843pt;}
.y44{bottom:621.642341pt;}
.y16{bottom:641.606121pt;}
.y5e{bottom:643.721594pt;}
.y43{bottom:648.652518pt;}
.y26{bottom:650.704904pt;}
.y28{bottom:681.422543pt;}
.y15{bottom:703.595826pt;}
.y30{bottom:706.244812pt;}
.y5d{bottom:710.632224pt;}
.y5c{bottom:743.644663pt;}
.y2f{bottom:749.261019pt;}
.h13{height:29.034940pt;}
.h10{height:36.479998pt;}
.hc{height:36.799998pt;}
.h4{height:47.999998pt;}
.h7{height:53.766487pt;}
.ha{height:55.679998pt;}
.he{height:55.999998pt;}
.h19{height:58.069879pt;}
.h6{height:58.879998pt;}
.h17{height:62.896938pt;}
.h16{height:67.286884pt;}
.h1a{height:67.723997pt;}
.h15{height:72.319997pt;}
.hd{height:77.349519pt;}
.h18{height:77.414408pt;}
.h3{height:80.305577pt;}
.h9{height:87.104819pt;}
.h11{height:91.931878pt;}
.h1b{height:94.653903pt;}
.h5{height:100.908747pt;}
.h8{height:101.585995pt;}
.h12{height:111.041842pt;}
.hb{height:117.887814pt;}
.h14{height:121.728988pt;}
.hf{height:128.103386pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w3{width:25.279999pt;}
.w5{width:27.839999pt;}
.wc{width:29.439999pt;}
.wb{width:29.759999pt;}
.w9{width:57.919998pt;}
.w8{width:130.559995pt;}
.we{width:222.079991pt;}
.wa{width:234.559990pt;}
.w7{width:304.959987pt;}
.w6{width:337.599986pt;}
.w4{width:351.679985pt;}
.wd{width:390.147014pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x6{left:1.096217pt;}
.x18{left:9.284748pt;}
.x15{left:11.973261pt;}
.x3{left:13.119999pt;}
.x19{left:14.302264pt;}
.x16{left:15.927876pt;}
.x8{left:18.036259pt;}
.x7{left:23.959947pt;}
.x1f{left:25.598228pt;}
.x5{left:26.879999pt;}
.x2{left:28.159999pt;}
.xa{left:30.478447pt;}
.x1e{left:33.754218pt;}
.x9{left:37.105944pt;}
.x21{left:39.759814pt;}
.x20{left:47.622151pt;}
.x1d{left:54.621456pt;}
.x4{left:58.276314pt;}
.x17{left:67.963107pt;}
.x1{left:77.437689pt;}
.x13{left:78.705197pt;}
.x1c{left:80.304480pt;}
.x24{left:94.126695pt;}
.x50{left:109.580769pt;}
.x14{left:113.608973pt;}
.x25{left:123.028209pt;}
.xb{left:128.734218pt;}
.x22{left:131.312581pt;}
.x26{left:143.926708pt;}
.x23{left:151.601475pt;}
.x27{left:176.610898pt;}
.x34{left:396.337697pt;}
.x37{left:398.463498pt;}
.x2f{left:401.758911pt;}
.x2e{left:409.777557pt;}
.x2d{left:411.012397pt;}
.x36{left:416.063879pt;}
.x35{left:425.817554pt;}
.x1a{left:451.169773pt;}
.x33{left:460.507464pt;}
.x28{left:465.442565pt;}
.x30{left:470.234168pt;}
.x2b{left:479.120654pt;}
.x1b{left:480.446429pt;}
.x31{left:486.771649pt;}
.x32{left:493.399147pt;}
.x2a{left:494.423294pt;}
.x3a{left:501.230651pt;}
.x39{left:513.938564pt;}
.x38{left:521.759953pt;}
.x3b{left:528.287720pt;}
.x3c{left:536.712770pt;}
.x29{left:540.173847pt;}
.x2c{left:576.891867pt;}
.x48{left:770.832224pt;}
.x10{left:773.135545pt;}
.x3e{left:775.659723pt;}
.x11{left:785.599967pt;}
.xe{left:792.959967pt;}
.x3f{left:793.882734pt;}
.x40{left:797.493469pt;}
.x41{left:799.900626pt;}
.x3d{left:807.749939pt;}
.xc{left:815.999966pt;}
.x12{left:828.011169pt;}
.x46{left:869.573169pt;}
.x45{left:898.334006pt;}
.x47{left:899.959618pt;}
.x42{left:901.038149pt;}
.x43{left:903.539092pt;}
.x44{left:908.290882pt;}
.x49{left:911.435402pt;}
.x4d{left:919.797928pt;}
.x4e{left:923.049153pt;}
.x4b{left:928.895105pt;}
.x4c{left:930.270624pt;}
.xd{left:955.199960pt;}
.x4a{left:964.158392pt;}
.xf{left:1036.159957pt;}
.x4f{left:1043.063121pt;}
}




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