
    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_b8ad7c26ee5b38ed7b8e9edc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.145020;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_548187bacdf2920a0d709957.woff')format("woff");}.ff2{font-family:ff2;line-height:1.144043;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_83b2289c43ba19cd22a0f24a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.145020;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_e025da91ca2b54676b1182e2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.042969;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_3aa33914900da91ba5ccee7e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042969;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_20727d67c242e3aeb00c07fb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.144043;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:ff7;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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:ff8;src:url('chunks/assets/font_1f07bcdc608576daec0dc397.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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;}
.lsf{letter-spacing:-18.660000px;}
.ls7{letter-spacing:-6.660000px;}
.ls3{letter-spacing:-6.000000px;}
.ls2{letter-spacing:-4.500000px;}
.ls6{letter-spacing:-1.212000px;}
.ls9{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.408000px;}
.ls4{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.336000px;}
.ls12{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.108000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012000px;}
.lse{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.599400px;}
.lsc{letter-spacing:0.744000px;}
.ls15{letter-spacing:1.500000px;}
.ls16{letter-spacing:9.000000px;}
.ls17{letter-spacing:138.000000px;}
.ls14{letter-spacing:198.150000px;}
.ls13{letter-spacing:846.450000px;}
.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:-21.000000px;}
.ws7{word-spacing:-18.744000px;}
.ws1{word-spacing:-18.552000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.892000px;}
.wsb{word-spacing:-17.748000px;}
.ws6{word-spacing:-17.664000px;}
.ws5{word-spacing:-17.604000px;}
.ws9{word-spacing:-17.592000px;}
.wsc{word-spacing:-17.400000px;}
.ws2{word-spacing:-16.788000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:14.808000px;}
._d{margin-left:-17.568000px;}
._b{margin-left:-15.486000px;}
._c{margin-left:-14.346000px;}
._9{margin-left:-13.242000px;}
._4{margin-left:-8.856000px;}
._1{margin-left:-7.272000px;}
._8{margin-left:-5.496000px;}
._5{margin-left:-3.816000px;}
._0{margin-left:-2.016000px;}
._6{margin-left:-1.002000px;}
._2{width:1.782000px;}
._3{width:3.684000px;}
._a{width:5.088000px;}
._7{width:6.372000px;}
._e{width:7.446000px;}
._f{width:12.054000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:240.150000px;}
.y0{bottom:0.000000px;}
.y20{bottom:10.155000px;}
.y1{bottom:59.250000px;}
.y75{bottom:115.162500px;}
.y1e{bottom:126.412500px;}
.y5b{bottom:127.162500px;}
.y73{bottom:132.787500px;}
.y40{bottom:139.162500px;}
.y74{bottom:144.787500px;}
.y1d{bottom:156.045000px;}
.y5a{bottom:156.795000px;}
.y72{bottom:162.795000px;}
.y3f{bottom:168.795000px;}
.y59{bottom:186.825000px;}
.y77{bottom:192.825000px;}
.y1c{bottom:198.075000px;}
.y3e{bottom:198.825000px;}
.y71{bottom:204.825000px;}
.y58{bottom:216.825000px;}
.y1b{bottom:228.075000px;}
.y3d{bottom:228.825000px;}
.y70{bottom:234.450000px;}
.y57{bottom:246.450000px;}
.y1a{bottom:257.700000px;}
.y3c{bottom:258.450000px;}
.y6f{bottom:264.450000px;}
.y56{bottom:276.450000px;}
.y19{bottom:287.700000px;}
.y5f{bottom:288.450000px;}
.y6e{bottom:294.075000px;}
.y90{bottom:296.700000px;}
.y3b{bottom:300.450000px;}
.y55{bottom:306.120000px;}
.y18{bottom:317.745000px;}
.y5e{bottom:318.120000px;}
.y8f{bottom:322.620000px;}
.y6d{bottom:324.120000px;}
.y3a{bottom:330.120000px;}
.y54{bottom:336.120000px;}
.y17{bottom:347.370000px;}
.y5d{bottom:348.120000px;}
.y6c{bottom:354.120000px;}
.y8e{bottom:356.370000px;}
.y39{bottom:360.120000px;}
.y53{bottom:366.120000px;}
.y16{bottom:377.370000px;}
.y5c{bottom:378.120000px;}
.y8d{bottom:382.245000px;}
.y6b{bottom:383.745000px;}
.y38{bottom:390.120000px;}
.y15{bottom:407.370000px;}
.y52{bottom:407.745000px;}
.y8c{bottom:408.120000px;}
.y37{bottom:419.745000px;}
.y6a{bottom:425.775000px;}
.y14{bottom:437.025000px;}
.y51{bottom:437.775000px;}
.y8b{bottom:446.025000px;}
.y36{bottom:449.775000px;}
.y69{bottom:455.775000px;}
.y13{bottom:467.025000px;}
.y50{bottom:467.775000px;}
.y8a{bottom:472.275000px;}
.y35{bottom:479.775000px;}
.y68{bottom:485.400000px;}
.y12{bottom:497.025000px;}
.y4f{bottom:497.400000px;}
.y34{bottom:509.400000px;}
.y89{bottom:510.150000px;}
.y67{bottom:515.400000px;}
.y11{bottom:526.650000px;}
.y4e{bottom:527.400000px;}
.y88{bottom:536.025000px;}
.y33{bottom:539.400000px;}
.y66{bottom:545.445000px;}
.y10{bottom:556.695000px;}
.y4d{bottom:557.445000px;}
.y87{bottom:561.945000px;}
.y32{bottom:569.445000px;}
.y65{bottom:575.070000px;}
.y4c{bottom:587.070000px;}
.yf{bottom:598.320000px;}
.y31{bottom:599.070000px;}
.y86{bottom:600.195000px;}
.y4b{bottom:617.070000px;}
.y85{bottom:626.070000px;}
.ye{bottom:628.320000px;}
.y30{bottom:629.070000px;}
.y4a{bottom:647.070000px;}
.yd{bottom:658.320000px;}
.y2f{bottom:659.100000px;}
.y84{bottom:663.975000px;}
.y64{bottom:676.725000px;}
.yc{bottom:687.975000px;}
.y2e{bottom:688.725000px;}
.y83{bottom:690.225000px;}
.y63{bottom:706.725000px;}
.yb{bottom:717.975000px;}
.y2d{bottom:718.725000px;}
.y82{bottom:728.100000px;}
.y62{bottom:736.725000px;}
.ya{bottom:747.975000px;}
.y49{bottom:748.725000px;}
.y81{bottom:753.975000px;}
.y2c{bottom:760.725000px;}
.y61{bottom:766.350000px;}
.y9{bottom:777.630000px;}
.y48{bottom:778.380000px;}
.y80{bottom:787.395000px;}
.y2b{bottom:790.380000px;}
.y60{bottom:796.380000px;}
.y8{bottom:807.630000px;}
.y47{bottom:808.380000px;}
.y7f{bottom:813.630000px;}
.y2a{bottom:820.380000px;}
.y7{bottom:837.630000px;}
.y46{bottom:838.005000px;}
.y29{bottom:850.005000px;}
.y7e{bottom:851.505000px;}
.y6{bottom:867.255000px;}
.y45{bottom:868.005000px;}
.y7d{bottom:877.380000px;}
.y28{bottom:880.005000px;}
.y1f{bottom:887.895000px;}
.y5{bottom:897.300000px;}
.y44{bottom:898.050000px;}
.y7c{bottom:903.300000px;}
.y27{bottom:910.050000px;}
.y4{bottom:927.300000px;}
.y43{bottom:927.675000px;}
.y7b{bottom:937.050000px;}
.y26{bottom:939.675000px;}
.y42{bottom:957.675000px;}
.y7a{bottom:962.925000px;}
.y25{bottom:969.675000px;}
.y76{bottom:987.675000px;}
.y79{bottom:988.800000px;}
.y3{bottom:989.175000px;}
.y24{bottom:999.675000px;}
.y78{bottom:1014.705000px;}
.y23{bottom:1029.330000px;}
.y2{bottom:1049.580000px;}
.y22{bottom:1059.330000px;}
.y41{bottom:1090.080000px;}
.y21{bottom:1113.705000px;}
.h8{height:55.089844px;}
.h5{height:60.037500px;}
.h4{height:62.367188px;}
.h1{height:62.437500px;}
.h3{height:64.271484px;}
.h7{height:65.645508px;}
.h2{height:82.634766px;}
.h6{height:208.020557px;}
.h0{height:1188.000000px;}
.w2{width:36.412500px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.037486px;}
.x2{left:144.449986px;}
.x5{left:162.074986px;}
.x4{left:400.274986px;}
.x3{left:540.224986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-16.586667pt;}
.ls7{letter-spacing:-5.920000pt;}
.ls3{letter-spacing:-5.333333pt;}
.ls2{letter-spacing:-4.000000pt;}
.ls6{letter-spacing:-1.077333pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls4{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.298667pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.532800pt;}
.lsc{letter-spacing:0.661333pt;}
.ls15{letter-spacing:1.333333pt;}
.ls16{letter-spacing:8.000000pt;}
.ls17{letter-spacing:122.666667pt;}
.ls14{letter-spacing:176.133333pt;}
.ls13{letter-spacing:752.400000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws7{word-spacing:-16.661333pt;}
.ws1{word-spacing:-16.490667pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.904000pt;}
.wsb{word-spacing:-15.776000pt;}
.ws6{word-spacing:-15.701333pt;}
.ws5{word-spacing:-15.648000pt;}
.ws9{word-spacing:-15.637333pt;}
.wsc{word-spacing:-15.466667pt;}
.ws2{word-spacing:-14.922667pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:13.162667pt;}
._d{margin-left:-15.616000pt;}
._b{margin-left:-13.765333pt;}
._c{margin-left:-12.752000pt;}
._9{margin-left:-11.770667pt;}
._4{margin-left:-7.872000pt;}
._1{margin-left:-6.464000pt;}
._8{margin-left:-4.885333pt;}
._5{margin-left:-3.392000pt;}
._0{margin-left:-1.792000pt;}
._6{margin-left:-0.890667pt;}
._2{width:1.584000pt;}
._3{width:3.274667pt;}
._a{width:4.522667pt;}
._7{width:5.664000pt;}
._e{width:6.618667pt;}
._f{width:10.714667pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:213.466667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:9.026667pt;}
.y1{bottom:52.666667pt;}
.y75{bottom:102.366667pt;}
.y1e{bottom:112.366667pt;}
.y5b{bottom:113.033333pt;}
.y73{bottom:118.033333pt;}
.y40{bottom:123.700000pt;}
.y74{bottom:128.700000pt;}
.y1d{bottom:138.706667pt;}
.y5a{bottom:139.373333pt;}
.y72{bottom:144.706667pt;}
.y3f{bottom:150.040000pt;}
.y59{bottom:166.066667pt;}
.y77{bottom:171.400000pt;}
.y1c{bottom:176.066667pt;}
.y3e{bottom:176.733333pt;}
.y71{bottom:182.066667pt;}
.y58{bottom:192.733333pt;}
.y1b{bottom:202.733333pt;}
.y3d{bottom:203.400000pt;}
.y70{bottom:208.400000pt;}
.y57{bottom:219.066667pt;}
.y1a{bottom:229.066667pt;}
.y3c{bottom:229.733333pt;}
.y6f{bottom:235.066667pt;}
.y56{bottom:245.733333pt;}
.y19{bottom:255.733333pt;}
.y5f{bottom:256.400000pt;}
.y6e{bottom:261.400000pt;}
.y90{bottom:263.733333pt;}
.y3b{bottom:267.066667pt;}
.y55{bottom:272.106667pt;}
.y18{bottom:282.440000pt;}
.y5e{bottom:282.773333pt;}
.y8f{bottom:286.773333pt;}
.y6d{bottom:288.106667pt;}
.y3a{bottom:293.440000pt;}
.y54{bottom:298.773333pt;}
.y17{bottom:308.773333pt;}
.y5d{bottom:309.440000pt;}
.y6c{bottom:314.773333pt;}
.y8e{bottom:316.773333pt;}
.y39{bottom:320.106667pt;}
.y53{bottom:325.440000pt;}
.y16{bottom:335.440000pt;}
.y5c{bottom:336.106667pt;}
.y8d{bottom:339.773333pt;}
.y6b{bottom:341.106667pt;}
.y38{bottom:346.773333pt;}
.y15{bottom:362.106667pt;}
.y52{bottom:362.440000pt;}
.y8c{bottom:362.773333pt;}
.y37{bottom:373.106667pt;}
.y6a{bottom:378.466667pt;}
.y14{bottom:388.466667pt;}
.y51{bottom:389.133333pt;}
.y8b{bottom:396.466667pt;}
.y36{bottom:399.800000pt;}
.y69{bottom:405.133333pt;}
.y13{bottom:415.133333pt;}
.y50{bottom:415.800000pt;}
.y8a{bottom:419.800000pt;}
.y35{bottom:426.466667pt;}
.y68{bottom:431.466667pt;}
.y12{bottom:441.800000pt;}
.y4f{bottom:442.133333pt;}
.y34{bottom:452.800000pt;}
.y89{bottom:453.466667pt;}
.y67{bottom:458.133333pt;}
.y11{bottom:468.133333pt;}
.y4e{bottom:468.800000pt;}
.y88{bottom:476.466667pt;}
.y33{bottom:479.466667pt;}
.y66{bottom:484.840000pt;}
.y10{bottom:494.840000pt;}
.y4d{bottom:495.506667pt;}
.y87{bottom:499.506667pt;}
.y32{bottom:506.173333pt;}
.y65{bottom:511.173333pt;}
.y4c{bottom:521.840000pt;}
.yf{bottom:531.840000pt;}
.y31{bottom:532.506667pt;}
.y86{bottom:533.506667pt;}
.y4b{bottom:548.506667pt;}
.y85{bottom:556.506667pt;}
.ye{bottom:558.506667pt;}
.y30{bottom:559.173333pt;}
.y4a{bottom:575.173333pt;}
.yd{bottom:585.173333pt;}
.y2f{bottom:585.866667pt;}
.y84{bottom:590.200000pt;}
.y64{bottom:601.533333pt;}
.yc{bottom:611.533333pt;}
.y2e{bottom:612.200000pt;}
.y83{bottom:613.533333pt;}
.y63{bottom:628.200000pt;}
.yb{bottom:638.200000pt;}
.y2d{bottom:638.866667pt;}
.y82{bottom:647.200000pt;}
.y62{bottom:654.866667pt;}
.ya{bottom:664.866667pt;}
.y49{bottom:665.533333pt;}
.y81{bottom:670.200000pt;}
.y2c{bottom:676.200000pt;}
.y61{bottom:681.200000pt;}
.y9{bottom:691.226667pt;}
.y48{bottom:691.893333pt;}
.y80{bottom:699.906667pt;}
.y2b{bottom:702.560000pt;}
.y60{bottom:707.893333pt;}
.y8{bottom:717.893333pt;}
.y47{bottom:718.560000pt;}
.y7f{bottom:723.226667pt;}
.y2a{bottom:729.226667pt;}
.y7{bottom:744.560000pt;}
.y46{bottom:744.893333pt;}
.y29{bottom:755.560000pt;}
.y7e{bottom:756.893333pt;}
.y6{bottom:770.893333pt;}
.y45{bottom:771.560000pt;}
.y7d{bottom:779.893333pt;}
.y28{bottom:782.226667pt;}
.y1f{bottom:789.240000pt;}
.y5{bottom:797.600000pt;}
.y44{bottom:798.266667pt;}
.y7c{bottom:802.933333pt;}
.y27{bottom:808.933333pt;}
.y4{bottom:824.266667pt;}
.y43{bottom:824.600000pt;}
.y7b{bottom:832.933333pt;}
.y26{bottom:835.266667pt;}
.y42{bottom:851.266667pt;}
.y7a{bottom:855.933333pt;}
.y25{bottom:861.933333pt;}
.y76{bottom:877.933333pt;}
.y79{bottom:878.933333pt;}
.y3{bottom:879.266667pt;}
.y24{bottom:888.600000pt;}
.y78{bottom:901.960000pt;}
.y23{bottom:914.960000pt;}
.y2{bottom:932.960000pt;}
.y22{bottom:941.626667pt;}
.y41{bottom:968.960000pt;}
.y21{bottom:989.960000pt;}
.h8{height:48.968750pt;}
.h5{height:53.366667pt;}
.h4{height:55.437500pt;}
.h1{height:55.500000pt;}
.h3{height:57.130208pt;}
.h7{height:58.351562pt;}
.h2{height:73.453125pt;}
.h6{height:184.907161pt;}
.h0{height:1056.000000pt;}
.w2{width:32.366667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.033321pt;}
.x2{left:128.399988pt;}
.x5{left:144.066655pt;}
.x4{left:355.799988pt;}
.x3{left:480.199988pt;}
}




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