
    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_0d4caf2c832f94b06434b145.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_092a9a1cc0df75e3d0d62f13.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_d05347e0f546f3fdd8fbc508.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_02b1d864a3c32ac96bd2d7ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_4429b71c2cd1c1fef8520610.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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:0.000000px;}
.ls0{letter-spacing:0.048000px;}
.ls2{letter-spacing:122.370000px;}
.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;}
}
.ws3{word-spacing:-23.400000px;}
.ws0{word-spacing:-17.160000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:1161.312000px;}
._0{width:444.840000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y14{bottom:35.058000px;}
.y23{bottom:57.558000px;}
.y6d{bottom:116.883000px;}
.y89{bottom:117.108000px;}
.ya0{bottom:120.108000px;}
.y13{bottom:120.183000px;}
.y3a{bottom:122.733000px;}
.y73{bottom:126.858000px;}
.yd2{bottom:137.358000px;}
.yba{bottom:142.233000px;}
.y49{bottom:142.458000px;}
.y88{bottom:142.983000px;}
.y9f{bottom:145.983000px;}
.y12{bottom:146.058000px;}
.ye7{bottom:147.858000px;}
.y36{bottom:148.608000px;}
.y72{bottom:167.733000px;}
.y9e{bottom:171.858000px;}
.y11{bottom:171.933000px;}
.ye6{bottom:173.733000px;}
.y22{bottom:174.483000px;}
.y48{bottom:177.708000px;}
.yb9{bottom:183.108000px;}
.y87{bottom:183.858000px;}
.yd1{bottom:193.608000px;}
.y9d{bottom:197.733000px;}
.y10{bottom:197.808000px;}
.y71{bottom:198.108000px;}
.y35{bottom:200.358000px;}
.y6c{bottom:211.758000px;}
.y5b{bottom:211.908000px;}
.y47{bottom:212.208000px;}
.ye5{bottom:214.608000px;}
.y9c{bottom:223.608000px;}
.yf{bottom:223.683000px;}
.y70{bottom:223.983000px;}
.y86{bottom:224.733000px;}
.y21{bottom:226.233000px;}
.yd0{bottom:228.483000px;}
.y5a{bottom:237.783000px;}
.y9b{bottom:249.483000px;}
.y20{bottom:252.108000px;}
.ye4{bottom:255.483000px;}
.y6b{bottom:257.733000px;}
.y6f{bottom:258.858000px;}
.ycf{bottom:263.358000px;}
.y59{bottom:263.658000px;}
.yb8{bottom:264.858000px;}
.y9a{bottom:275.358000px;}
.y34{bottom:277.983000px;}
.yfa{bottom:287.733000px;}
.y58{bottom:289.533000px;}
.y85{bottom:291.483000px;}
.ye3{bottom:296.358000px;}
.y6a{bottom:296.733000px;}
.y99{bottom:301.233000px;}
.y39{bottom:303.858000px;}
.yce{bottom:304.233000px;}
.yb7{bottom:305.733000px;}
.y57{bottom:315.408000px;}
.y98{bottom:327.108000px;}
.yf9{bottom:328.608000px;}
.y2b{bottom:329.733000px;}
.ycd{bottom:330.108000px;}
.y84{bottom:332.358000px;}
.yb6{bottom:336.108000px;}
.ye2{bottom:337.233000px;}
.y69{bottom:340.233000px;}
.y6e{bottom:340.608000px;}
.ye{bottom:353.058000px;}
.yf8{bottom:354.483000px;}
.y2a{bottom:355.608000px;}
.ycc{bottom:355.983000px;}
.y97{bottom:367.983000px;}
.yb5{bottom:370.983000px;}
.y46{bottom:372.933000px;}
.y83{bottom:373.233000px;}
.ye1{bottom:378.108000px;}
.yd{bottom:378.933000px;}
.y1f{bottom:381.483000px;}
.ycb{bottom:381.858000px;}
.yf7{bottom:384.858000px;}
.yb4{bottom:396.858000px;}
.y96{bottom:398.358000px;}
.y68{bottom:398.583000px;}
.yc{bottom:404.808000px;}
.y33{bottom:407.358000px;}
.yca{bottom:407.733000px;}
.y45{bottom:408.183000px;}
.yf6{bottom:410.733000px;}
.y82{bottom:414.108000px;}
.ye0{bottom:418.983000px;}
.y67{bottom:424.458000px;}
.y29{bottom:433.233000px;}
.yc9{bottom:433.608000px;}
.yb3{bottom:437.733000px;}
.y44{bottom:443.433000px;}
.y56{bottom:444.783000px;}
.ydf{bottom:449.358000px;}
.yf5{bottom:451.608000px;}
.y32{bottom:459.108000px;}
.y66{bottom:465.333000px;}
.y81{bottom:465.858000px;}
.y95{bottom:468.108000px;}
.y55{bottom:470.658000px;}
.yc8{bottom:474.483000px;}
.yde{bottom:475.233000px;}
.yf4{bottom:477.483000px;}
.yb2{bottom:478.608000px;}
.y43{bottom:478.683000px;}
.y28{bottom:484.983000px;}
.y54{bottom:496.533000px;}
.y65{bottom:497.808000px;}
.y94{bottom:508.983000px;}
.y1e{bottom:510.858000px;}
.y42{bottom:513.933000px;}
.yc7{bottom:515.358000px;}
.ydd{bottom:516.108000px;}
.yf3{bottom:518.358000px;}
.yb{bottom:534.183000px;}
.y93{bottom:534.858000px;}
.y1d{bottom:536.733000px;}
.yc6{bottom:541.233000px;}
.yb1{bottom:543.858000px;}
.y41{bottom:549.183000px;}
.y64{bottom:556.158000px;}
.ydc{bottom:556.983000px;}
.yf2{bottom:559.233000px;}
.ya{bottom:560.058000px;}
.y92{bottom:560.733000px;}
.y37{bottom:562.608000px;}
.yc5{bottom:571.608000px;}
.yb0{bottom:578.733000px;}
.ydb{bottom:582.858000px;}
.y40{bottom:583.683000px;}
.yf1{bottom:585.108000px;}
.y9{bottom:585.933000px;}
.y31{bottom:588.483000px;}
.y80{bottom:595.233000px;}
.y63{bottom:597.033000px;}
.y91{bottom:601.608000px;}
.y8{bottom:611.808000px;}
.yc4{bottom:612.483000px;}
.y27{bottom:614.358000px;}
.yf0{bottom:615.483000px;}
.yaf{bottom:619.608000px;}
.y7f{bottom:621.108000px;}
.yda{bottom:623.733000px;}
.y53{bottom:625.908000px;}
.y90{bottom:627.483000px;}
.y62{bottom:629.508000px;}
.y7{bottom:637.683000px;}
.yc3{bottom:638.358000px;}
.y30{bottom:640.233000px;}
.yae{bottom:645.483000px;}
.yef{bottom:650.358000px;}
.y52{bottom:651.783000px;}
.y8f{bottom:657.858000px;}
.y6{bottom:663.558000px;}
.yc2{bottom:664.233000px;}
.yd9{bottom:664.608000px;}
.y1c{bottom:666.108000px;}
.yad{bottom:671.358000px;}
.y7e{bottom:672.858000px;}
.y51{bottom:677.658000px;}
.yee{bottom:685.233000px;}
.y61{bottom:687.858000px;}
.yc1{bottom:690.108000px;}
.y1b{bottom:691.983000px;}
.y3f{bottom:694.458000px;}
.yac{bottom:697.233000px;}
.y7d{bottom:698.733000px;}
.y50{bottom:703.533000px;}
.yd8{bottom:705.483000px;}
.yc0{bottom:715.983000px;}
.y1a{bottom:717.858000px;}
.yab{bottom:723.108000px;}
.y7c{bottom:724.608000px;}
.y3e{bottom:725.133000px;}
.yed{bottom:726.108000px;}
.y60{bottom:728.733000px;}
.y4f{bottom:729.408000px;}
.y19{bottom:743.733000px;}
.yd7{bottom:746.358000px;}
.yaa{bottom:748.983000px;}
.y8e{bottom:750.483000px;}
.y5f{bottom:754.608000px;}
.y4e{bottom:755.283000px;}
.y3d{bottom:755.808000px;}
.ybf{bottom:756.858000px;}
.yec{bottom:766.983000px;}
.y2f{bottom:769.608000px;}
.ya9{bottom:774.858000px;}
.y7b{bottom:776.358000px;}
.y5e{bottom:780.483000px;}
.y3c{bottom:786.483000px;}
.yd6{bottom:787.233000px;}
.y5{bottom:792.933000px;}
.y2e{bottom:795.483000px;}
.yeb{bottom:797.358000px;}
.ybe{bottom:797.733000px;}
.ya8{bottom:800.733000px;}
.y7a{bottom:802.233000px;}
.y5d{bottom:806.358000px;}
.yd5{bottom:813.108000px;}
.y8d{bottom:817.233000px;}
.y3b{bottom:820.308000px;}
.y2d{bottom:821.358000px;}
.yea{bottom:823.233000px;}
.ya7{bottom:826.608000px;}
.y79{bottom:828.108000px;}
.y5c{bottom:832.233000px;}
.yd4{bottom:838.983000px;}
.y2c{bottom:847.233000px;}
.y78{bottom:853.983000px;}
.y8c{bottom:858.108000px;}
.y4{bottom:861.858000px;}
.ya6{bottom:867.483000px;}
.ybd{bottom:868.983000px;}
.y18{bottom:873.108000px;}
.y77{bottom:879.858000px;}
.ye9{bottom:883.983000px;}
.y4d{bottom:884.658000px;}
.ya5{bottom:893.358000px;}
.ybc{bottom:894.858000px;}
.y17{bottom:898.983000px;}
.y8b{bottom:909.858000px;}
.ybb{bottom:920.733000px;}
.ya4{bottom:923.733000px;}
.y16{bottom:924.858000px;}
.y8a{bottom:935.733000px;}
.y76{bottom:946.608000px;}
.ya3{bottom:949.608000px;}
.y15{bottom:950.733000px;}
.ye8{bottom:961.608000px;}
.yfc{bottom:963.408000px;}
.y4c{bottom:966.408000px;}
.y75{bottom:972.483000px;}
.y26{bottom:976.608000px;}
.ya2{bottom:984.483000px;}
.yd3{bottom:987.483000px;}
.y3{bottom:989.283000px;}
.yfb{bottom:995.883000px;}
.y38{bottom:1002.483000px;}
.y4b{bottom:1007.283000px;}
.y74{bottom:1013.358000px;}
.ya1{bottom:1019.358000px;}
.y2{bottom:1021.758000px;}
.y25{bottom:1028.358000px;}
.y4a{bottom:1039.758000px;}
.y24{bottom:1054.233000px;}
.h8{height:50.160000px;}
.h5{height:50.490000px;}
.h3{height:50.556000px;}
.h4{height:64.344000px;}
.h6{height:68.940000px;}
.h7{height:73.536000px;}
.h2{height:91.920000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:22.800000px;}
.x1{left:108.600000px;}
.x6{left:114.900000px;}
.xc{left:120.600000px;}
.xa{left:122.100000px;}
.x9{left:134.850000px;}
.x11{left:138.150000px;}
.xb{left:160.200000px;}
.x12{left:168.150000px;}
.x13{left:198.150000px;}
.xf{left:217.500000px;}
.x14{left:228.150000px;}
.x10{left:231.900000px;}
.x5{left:247.800000px;}
.xd{left:371.325000px;}
.xe{left:389.925000px;}
.x8{left:398.700000px;}
.x3{left:402.675000px;}
.x15{left:416.850000px;}
.x2{left:423.150000px;}
.x7{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042667pt;}
.ls2{letter-spacing:108.773333pt;}
.ws3{word-spacing:-20.800000pt;}
.ws0{word-spacing:-15.253333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1032.277333pt;}
._0{width:395.413333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y14{bottom:31.162667pt;}
.y23{bottom:51.162667pt;}
.y6d{bottom:103.896000pt;}
.y89{bottom:104.096000pt;}
.ya0{bottom:106.762667pt;}
.y13{bottom:106.829333pt;}
.y3a{bottom:109.096000pt;}
.y73{bottom:112.762667pt;}
.yd2{bottom:122.096000pt;}
.yba{bottom:126.429333pt;}
.y49{bottom:126.629333pt;}
.y88{bottom:127.096000pt;}
.y9f{bottom:129.762667pt;}
.y12{bottom:129.829333pt;}
.ye7{bottom:131.429333pt;}
.y36{bottom:132.096000pt;}
.y72{bottom:149.096000pt;}
.y9e{bottom:152.762667pt;}
.y11{bottom:152.829333pt;}
.ye6{bottom:154.429333pt;}
.y22{bottom:155.096000pt;}
.y48{bottom:157.962667pt;}
.yb9{bottom:162.762667pt;}
.y87{bottom:163.429333pt;}
.yd1{bottom:172.096000pt;}
.y9d{bottom:175.762667pt;}
.y10{bottom:175.829333pt;}
.y71{bottom:176.096000pt;}
.y35{bottom:178.096000pt;}
.y6c{bottom:188.229333pt;}
.y5b{bottom:188.362667pt;}
.y47{bottom:188.629333pt;}
.ye5{bottom:190.762667pt;}
.y9c{bottom:198.762667pt;}
.yf{bottom:198.829333pt;}
.y70{bottom:199.096000pt;}
.y86{bottom:199.762667pt;}
.y21{bottom:201.096000pt;}
.yd0{bottom:203.096000pt;}
.y5a{bottom:211.362667pt;}
.y9b{bottom:221.762667pt;}
.y20{bottom:224.096000pt;}
.ye4{bottom:227.096000pt;}
.y6b{bottom:229.096000pt;}
.y6f{bottom:230.096000pt;}
.ycf{bottom:234.096000pt;}
.y59{bottom:234.362667pt;}
.yb8{bottom:235.429333pt;}
.y9a{bottom:244.762667pt;}
.y34{bottom:247.096000pt;}
.yfa{bottom:255.762667pt;}
.y58{bottom:257.362667pt;}
.y85{bottom:259.096000pt;}
.ye3{bottom:263.429333pt;}
.y6a{bottom:263.762667pt;}
.y99{bottom:267.762667pt;}
.y39{bottom:270.096000pt;}
.yce{bottom:270.429333pt;}
.yb7{bottom:271.762667pt;}
.y57{bottom:280.362667pt;}
.y98{bottom:290.762667pt;}
.yf9{bottom:292.096000pt;}
.y2b{bottom:293.096000pt;}
.ycd{bottom:293.429333pt;}
.y84{bottom:295.429333pt;}
.yb6{bottom:298.762667pt;}
.ye2{bottom:299.762667pt;}
.y69{bottom:302.429333pt;}
.y6e{bottom:302.762667pt;}
.ye{bottom:313.829333pt;}
.yf8{bottom:315.096000pt;}
.y2a{bottom:316.096000pt;}
.ycc{bottom:316.429333pt;}
.y97{bottom:327.096000pt;}
.yb5{bottom:329.762667pt;}
.y46{bottom:331.496000pt;}
.y83{bottom:331.762667pt;}
.ye1{bottom:336.096000pt;}
.yd{bottom:336.829333pt;}
.y1f{bottom:339.096000pt;}
.ycb{bottom:339.429333pt;}
.yf7{bottom:342.096000pt;}
.yb4{bottom:352.762667pt;}
.y96{bottom:354.096000pt;}
.y68{bottom:354.296000pt;}
.yc{bottom:359.829333pt;}
.y33{bottom:362.096000pt;}
.yca{bottom:362.429333pt;}
.y45{bottom:362.829333pt;}
.yf6{bottom:365.096000pt;}
.y82{bottom:368.096000pt;}
.ye0{bottom:372.429333pt;}
.y67{bottom:377.296000pt;}
.y29{bottom:385.096000pt;}
.yc9{bottom:385.429333pt;}
.yb3{bottom:389.096000pt;}
.y44{bottom:394.162667pt;}
.y56{bottom:395.362667pt;}
.ydf{bottom:399.429333pt;}
.yf5{bottom:401.429333pt;}
.y32{bottom:408.096000pt;}
.y66{bottom:413.629333pt;}
.y81{bottom:414.096000pt;}
.y95{bottom:416.096000pt;}
.y55{bottom:418.362667pt;}
.yc8{bottom:421.762667pt;}
.yde{bottom:422.429333pt;}
.yf4{bottom:424.429333pt;}
.yb2{bottom:425.429333pt;}
.y43{bottom:425.496000pt;}
.y28{bottom:431.096000pt;}
.y54{bottom:441.362667pt;}
.y65{bottom:442.496000pt;}
.y94{bottom:452.429333pt;}
.y1e{bottom:454.096000pt;}
.y42{bottom:456.829333pt;}
.yc7{bottom:458.096000pt;}
.ydd{bottom:458.762667pt;}
.yf3{bottom:460.762667pt;}
.yb{bottom:474.829333pt;}
.y93{bottom:475.429333pt;}
.y1d{bottom:477.096000pt;}
.yc6{bottom:481.096000pt;}
.yb1{bottom:483.429333pt;}
.y41{bottom:488.162667pt;}
.y64{bottom:494.362667pt;}
.ydc{bottom:495.096000pt;}
.yf2{bottom:497.096000pt;}
.ya{bottom:497.829333pt;}
.y92{bottom:498.429333pt;}
.y37{bottom:500.096000pt;}
.yc5{bottom:508.096000pt;}
.yb0{bottom:514.429333pt;}
.ydb{bottom:518.096000pt;}
.y40{bottom:518.829333pt;}
.yf1{bottom:520.096000pt;}
.y9{bottom:520.829333pt;}
.y31{bottom:523.096000pt;}
.y80{bottom:529.096000pt;}
.y63{bottom:530.696000pt;}
.y91{bottom:534.762667pt;}
.y8{bottom:543.829333pt;}
.yc4{bottom:544.429333pt;}
.y27{bottom:546.096000pt;}
.yf0{bottom:547.096000pt;}
.yaf{bottom:550.762667pt;}
.y7f{bottom:552.096000pt;}
.yda{bottom:554.429333pt;}
.y53{bottom:556.362667pt;}
.y90{bottom:557.762667pt;}
.y62{bottom:559.562667pt;}
.y7{bottom:566.829333pt;}
.yc3{bottom:567.429333pt;}
.y30{bottom:569.096000pt;}
.yae{bottom:573.762667pt;}
.yef{bottom:578.096000pt;}
.y52{bottom:579.362667pt;}
.y8f{bottom:584.762667pt;}
.y6{bottom:589.829333pt;}
.yc2{bottom:590.429333pt;}
.yd9{bottom:590.762667pt;}
.y1c{bottom:592.096000pt;}
.yad{bottom:596.762667pt;}
.y7e{bottom:598.096000pt;}
.y51{bottom:602.362667pt;}
.yee{bottom:609.096000pt;}
.y61{bottom:611.429333pt;}
.yc1{bottom:613.429333pt;}
.y1b{bottom:615.096000pt;}
.y3f{bottom:617.296000pt;}
.yac{bottom:619.762667pt;}
.y7d{bottom:621.096000pt;}
.y50{bottom:625.362667pt;}
.yd8{bottom:627.096000pt;}
.yc0{bottom:636.429333pt;}
.y1a{bottom:638.096000pt;}
.yab{bottom:642.762667pt;}
.y7c{bottom:644.096000pt;}
.y3e{bottom:644.562667pt;}
.yed{bottom:645.429333pt;}
.y60{bottom:647.762667pt;}
.y4f{bottom:648.362667pt;}
.y19{bottom:661.096000pt;}
.yd7{bottom:663.429333pt;}
.yaa{bottom:665.762667pt;}
.y8e{bottom:667.096000pt;}
.y5f{bottom:670.762667pt;}
.y4e{bottom:671.362667pt;}
.y3d{bottom:671.829333pt;}
.ybf{bottom:672.762667pt;}
.yec{bottom:681.762667pt;}
.y2f{bottom:684.096000pt;}
.ya9{bottom:688.762667pt;}
.y7b{bottom:690.096000pt;}
.y5e{bottom:693.762667pt;}
.y3c{bottom:699.096000pt;}
.yd6{bottom:699.762667pt;}
.y5{bottom:704.829333pt;}
.y2e{bottom:707.096000pt;}
.yeb{bottom:708.762667pt;}
.ybe{bottom:709.096000pt;}
.ya8{bottom:711.762667pt;}
.y7a{bottom:713.096000pt;}
.y5d{bottom:716.762667pt;}
.yd5{bottom:722.762667pt;}
.y8d{bottom:726.429333pt;}
.y3b{bottom:729.162667pt;}
.y2d{bottom:730.096000pt;}
.yea{bottom:731.762667pt;}
.ya7{bottom:734.762667pt;}
.y79{bottom:736.096000pt;}
.y5c{bottom:739.762667pt;}
.yd4{bottom:745.762667pt;}
.y2c{bottom:753.096000pt;}
.y78{bottom:759.096000pt;}
.y8c{bottom:762.762667pt;}
.y4{bottom:766.096000pt;}
.ya6{bottom:771.096000pt;}
.ybd{bottom:772.429333pt;}
.y18{bottom:776.096000pt;}
.y77{bottom:782.096000pt;}
.ye9{bottom:785.762667pt;}
.y4d{bottom:786.362667pt;}
.ya5{bottom:794.096000pt;}
.ybc{bottom:795.429333pt;}
.y17{bottom:799.096000pt;}
.y8b{bottom:808.762667pt;}
.ybb{bottom:818.429333pt;}
.ya4{bottom:821.096000pt;}
.y16{bottom:822.096000pt;}
.y8a{bottom:831.762667pt;}
.y76{bottom:841.429333pt;}
.ya3{bottom:844.096000pt;}
.y15{bottom:845.096000pt;}
.ye8{bottom:854.762667pt;}
.yfc{bottom:856.362667pt;}
.y4c{bottom:859.029333pt;}
.y75{bottom:864.429333pt;}
.y26{bottom:868.096000pt;}
.ya2{bottom:875.096000pt;}
.yd3{bottom:877.762667pt;}
.y3{bottom:879.362667pt;}
.yfb{bottom:885.229333pt;}
.y38{bottom:891.096000pt;}
.y4b{bottom:895.362667pt;}
.y74{bottom:900.762667pt;}
.ya1{bottom:906.096000pt;}
.y2{bottom:908.229333pt;}
.y25{bottom:914.096000pt;}
.y4a{bottom:924.229333pt;}
.y24{bottom:937.096000pt;}
.h8{height:44.586667pt;}
.h5{height:44.880000pt;}
.h3{height:44.938667pt;}
.h4{height:57.194667pt;}
.h6{height:61.280000pt;}
.h7{height:65.365333pt;}
.h2{height:81.706667pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:20.266667pt;}
.x1{left:96.533333pt;}
.x6{left:102.133333pt;}
.xc{left:107.200000pt;}
.xa{left:108.533333pt;}
.x9{left:119.866667pt;}
.x11{left:122.800000pt;}
.xb{left:142.400000pt;}
.x12{left:149.466667pt;}
.x13{left:176.133333pt;}
.xf{left:193.333333pt;}
.x14{left:202.800000pt;}
.x10{left:206.133333pt;}
.x5{left:220.266667pt;}
.xd{left:330.066667pt;}
.xe{left:346.600000pt;}
.x8{left:354.400000pt;}
.x3{left:357.933333pt;}
.x15{left:370.533333pt;}
.x2{left:376.133333pt;}
.x7{left:421.266667pt;}
}




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