
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9b47a0494c86e26cc2e70d85.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_10823578785948b013311442.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1f1703b5c65daf37d41f7f4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_a15c6db4deee68791bd95b77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_5e7e6bfa465eb7ff949fd454.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.463800px;}
.ls1c{letter-spacing:-0.303000px;}
.ls9{letter-spacing:-0.292200px;}
.ls1b{letter-spacing:-0.228000px;}
.ls21{letter-spacing:-0.115200px;}
.ls11{letter-spacing:-0.107400px;}
.ls26{letter-spacing:-0.069600px;}
.lsc{letter-spacing:-0.067200px;}
.ls1e{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls24{letter-spacing:-0.049680px;}
.ls1d{letter-spacing:-0.041040px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037200px;}
.ls20{letter-spacing:0.064200px;}
.lsb{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.097200px;}
.ls15{letter-spacing:0.140400px;}
.ls14{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.175200px;}
.ls13{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.190200px;}
.ls18{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.210000px;}
.ls22{letter-spacing:0.479520px;}
.ls27{letter-spacing:0.858000px;}
.ls17{letter-spacing:0.894240px;}
.lse{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.906000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls23{letter-spacing:5.934240px;}
.ls1a{letter-spacing:8.814240px;}
.ls19{letter-spacing:12.186720px;}
.ls16{letter-spacing:42.570720px;}
.lsd{letter-spacing:45.306720px;}
.ls5{letter-spacing:64.170720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.411760px;}
.ws18{word-spacing:-14.363760px;}
.wse{word-spacing:-13.715160px;}
.ws12{word-spacing:-13.692360px;}
.ws9{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.646160px;}
.ws13{word-spacing:-13.569960px;}
.ws6{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.464720px;}
.ws15{word-spacing:-13.456080px;}
.wsa{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.440960px;}
.ws17{word-spacing:-13.436160px;}
.wsb{word-spacing:-13.398360px;}
.ws14{word-spacing:-13.390560px;}
.wsd{word-spacing:-13.277760px;}
.wsf{word-spacing:-13.202760px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-9.145560px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.180760px;}
._16{margin-left:-5.605920px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.293200px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._8{width:2.906400px;}
._a{width:4.521600px;}
._e{width:6.035760px;}
._c{width:7.290720px;}
._b{width:9.023760px;}
._9{width:10.338480px;}
._f{width:11.752800px;}
._13{width:14.824080px;}
._10{width:16.015680px;}
._11{width:17.051520px;}
._12{width:18.167040px;}
._14{width:27.584640px;}
._15{width:29.795760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y95{bottom:7.200000px;}
.y94{bottom:28.440000px;}
.y91{bottom:35.640000px;}
.y93{bottom:49.674000px;}
.y6{bottom:57.600000px;}
.y92{bottom:70.914000px;}
.y31{bottom:105.156000px;}
.y90{bottom:108.036000px;}
.y65{bottom:111.816000px;}
.y8f{bottom:113.436000px;}
.y30{bottom:126.216000px;}
.y64{bottom:132.876000px;}
.y8e{bottom:134.496000px;}
.y2f{bottom:147.276000px;}
.y63{bottom:153.930000px;}
.y8d{bottom:155.550000px;}
.y2e{bottom:168.150000px;}
.y62{bottom:174.990000px;}
.y8c{bottom:176.610000px;}
.y2d{bottom:190.110000px;}
.y61{bottom:196.050000px;}
.y8b{bottom:197.670000px;}
.y2c{bottom:211.170000px;}
.y60{bottom:217.110000px;}
.y8a{bottom:218.730000px;}
.y2b{bottom:232.230000px;}
.y5f{bottom:238.170000px;}
.y89{bottom:239.790000px;}
.y2a{bottom:253.290000px;}
.y5e{bottom:259.230000px;}
.y88{bottom:260.850000px;}
.y29{bottom:274.350000px;}
.y5d{bottom:280.290000px;}
.y87{bottom:281.910000px;}
.y28{bottom:295.410000px;}
.y77{bottom:301.170000px;}
.y5c{bottom:301.350000px;}
.y86{bottom:302.970000px;}
.y27{bottom:316.470000px;}
.y5b{bottom:322.410000px;}
.y76{bottom:323.130000px;}
.y85{bottom:324.030000px;}
.y26{bottom:337.575000px;}
.y5a{bottom:343.515000px;}
.y75{bottom:344.235000px;}
.y84{bottom:345.135000px;}
.y25{bottom:358.635000px;}
.y59{bottom:364.575000px;}
.y74{bottom:365.295000px;}
.y83{bottom:366.195000px;}
.y24{bottom:379.695000px;}
.y58{bottom:385.635000px;}
.y73{bottom:386.355000px;}
.y82{bottom:387.255000px;}
.y23{bottom:400.755000px;}
.y57{bottom:406.695000px;}
.y72{bottom:407.415000px;}
.y81{bottom:408.315000px;}
.y22{bottom:421.815000px;}
.y56{bottom:427.755000px;}
.y71{bottom:428.475000px;}
.y80{bottom:429.375000px;}
.y21{bottom:442.875000px;}
.y55{bottom:448.815000px;}
.y70{bottom:449.535000px;}
.y7f{bottom:450.435000px;}
.y20{bottom:463.935000px;}
.y54{bottom:469.875000px;}
.y6f{bottom:470.595000px;}
.y7e{bottom:471.495000px;}
.y1f{bottom:484.995000px;}
.y53{bottom:490.935000px;}
.y6e{bottom:491.655000px;}
.y7d{bottom:492.555000px;}
.y1e{bottom:506.055000px;}
.y52{bottom:511.995000px;}
.y6d{bottom:512.715000px;}
.y7c{bottom:513.615000px;}
.y1d{bottom:527.115000px;}
.y51{bottom:533.055000px;}
.y6c{bottom:533.775000px;}
.y7b{bottom:534.675000px;}
.y1c{bottom:548.175000px;}
.y50{bottom:554.115000px;}
.y6b{bottom:554.835000px;}
.y7a{bottom:555.735000px;}
.y1b{bottom:569.235000px;}
.y4f{bottom:575.175000px;}
.y6a{bottom:575.895000px;}
.y79{bottom:576.795000px;}
.y1a{bottom:590.295000px;}
.y4e{bottom:596.265000px;}
.y69{bottom:596.985000px;}
.y78{bottom:597.885000px;}
.y19{bottom:611.385000px;}
.y4d{bottom:617.325000px;}
.y68{bottom:618.945000px;}
.y18{bottom:634.425000px;}
.y4c{bottom:638.205000px;}
.y67{bottom:640.005000px;}
.y4b{bottom:659.985000px;}
.y66{bottom:660.885000px;}
.y17{bottom:664.665000px;}
.y4a{bottom:681.945000px;}
.y16{bottom:685.725000px;}
.y49{bottom:703.005000px;}
.y15{bottom:706.785000px;}
.y48{bottom:724.065000px;}
.y14{bottom:727.845000px;}
.y47{bottom:745.125000px;}
.y13{bottom:748.905000px;}
.y46{bottom:766.185000px;}
.y12{bottom:769.965000px;}
.y45{bottom:787.245000px;}
.y11{bottom:791.025000px;}
.y44{bottom:808.305000px;}
.y10{bottom:812.085000px;}
.y43{bottom:829.365000px;}
.yf{bottom:833.145000px;}
.y42{bottom:850.425000px;}
.ye{bottom:856.545000px;}
.y41{bottom:871.530000px;}
.yd{bottom:878.370000px;}
.y40{bottom:892.590000px;}
.yc{bottom:905.910000px;}
.y3f{bottom:913.650000px;}
.yb{bottom:926.970000px;}
.y3e{bottom:934.710000px;}
.ya{bottom:948.030000px;}
.y3d{bottom:955.770000px;}
.y9{bottom:964.770000px;}
.y3c{bottom:976.830000px;}
.y8{bottom:987.090000px;}
.y3b{bottom:997.890000px;}
.y7{bottom:1012.110000px;}
.y3a{bottom:1018.950000px;}
.y39{bottom:1040.010000px;}
.y5{bottom:1052.430000px;}
.y38{bottom:1061.070000px;}
.y37{bottom:1082.130000px;}
.y4{bottom:1084.650000px;}
.y36{bottom:1103.190000px;}
.y3{bottom:1116.690000px;}
.y35{bottom:1124.250000px;}
.y34{bottom:1145.340000px;}
.y2{bottom:1148.940000px;}
.y33{bottom:1166.400000px;}
.y1{bottom:1183.500000px;}
.y32{bottom:1194.300000px;}
.hc{height:2.864531px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hb{height:85.140000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:53.999987px;}
.x2{left:79.559987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x5{left:191.370000px;}
.x6{left:264.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls1c{letter-spacing:-0.269333pt;}
.ls9{letter-spacing:-0.259733pt;}
.ls1b{letter-spacing:-0.202667pt;}
.ls21{letter-spacing:-0.102400pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls26{letter-spacing:-0.061867pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls1e{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls24{letter-spacing:-0.044160pt;}
.ls1d{letter-spacing:-0.036480pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033067pt;}
.ls20{letter-spacing:0.057067pt;}
.lsb{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.086400pt;}
.ls15{letter-spacing:0.124800pt;}
.ls14{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.155733pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.169067pt;}
.ls18{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.186667pt;}
.ls22{letter-spacing:0.426240pt;}
.ls27{letter-spacing:0.762667pt;}
.ls17{letter-spacing:0.794880pt;}
.lse{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.805333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls23{letter-spacing:5.274880pt;}
.ls1a{letter-spacing:7.834880pt;}
.ls19{letter-spacing:10.832640pt;}
.ls16{letter-spacing:37.840640pt;}
.lsd{letter-spacing:40.272640pt;}
.ls5{letter-spacing:57.040640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.810453pt;}
.ws18{word-spacing:-12.767787pt;}
.wse{word-spacing:-12.191253pt;}
.ws12{word-spacing:-12.170987pt;}
.ws9{word-spacing:-12.160853pt;}
.wsc{word-spacing:-12.129920pt;}
.ws13{word-spacing:-12.062187pt;}
.ws6{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.968640pt;}
.ws15{word-spacing:-11.960960pt;}
.wsa{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.947520pt;}
.ws17{word-spacing:-11.943253pt;}
.wsb{word-spacing:-11.909653pt;}
.ws14{word-spacing:-11.902720pt;}
.wsd{word-spacing:-11.802453pt;}
.wsf{word-spacing:-11.735787pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-8.129387pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-516.605120pt;}
._16{margin-left:-4.983040pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.038400pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._8{width:2.583467pt;}
._a{width:4.019200pt;}
._e{width:5.365120pt;}
._c{width:6.480640pt;}
._b{width:8.021120pt;}
._9{width:9.189760pt;}
._f{width:10.446933pt;}
._13{width:13.176960pt;}
._10{width:14.236160pt;}
._11{width:15.156907pt;}
._12{width:16.148480pt;}
._14{width:24.519680pt;}
._15{width:26.485120pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:6.400000pt;}
.y94{bottom:25.280000pt;}
.y91{bottom:31.680000pt;}
.y93{bottom:44.154667pt;}
.y6{bottom:51.200000pt;}
.y92{bottom:63.034667pt;}
.y31{bottom:93.472000pt;}
.y90{bottom:96.032000pt;}
.y65{bottom:99.392000pt;}
.y8f{bottom:100.832000pt;}
.y30{bottom:112.192000pt;}
.y64{bottom:118.112000pt;}
.y8e{bottom:119.552000pt;}
.y2f{bottom:130.912000pt;}
.y63{bottom:136.826667pt;}
.y8d{bottom:138.266667pt;}
.y2e{bottom:149.466667pt;}
.y62{bottom:155.546667pt;}
.y8c{bottom:156.986667pt;}
.y2d{bottom:168.986667pt;}
.y61{bottom:174.266667pt;}
.y8b{bottom:175.706667pt;}
.y2c{bottom:187.706667pt;}
.y60{bottom:192.986667pt;}
.y8a{bottom:194.426667pt;}
.y2b{bottom:206.426667pt;}
.y5f{bottom:211.706667pt;}
.y89{bottom:213.146667pt;}
.y2a{bottom:225.146667pt;}
.y5e{bottom:230.426667pt;}
.y88{bottom:231.866667pt;}
.y29{bottom:243.866667pt;}
.y5d{bottom:249.146667pt;}
.y87{bottom:250.586667pt;}
.y28{bottom:262.586667pt;}
.y77{bottom:267.706667pt;}
.y5c{bottom:267.866667pt;}
.y86{bottom:269.306667pt;}
.y27{bottom:281.306667pt;}
.y5b{bottom:286.586667pt;}
.y76{bottom:287.226667pt;}
.y85{bottom:288.026667pt;}
.y26{bottom:300.066667pt;}
.y5a{bottom:305.346667pt;}
.y75{bottom:305.986667pt;}
.y84{bottom:306.786667pt;}
.y25{bottom:318.786667pt;}
.y59{bottom:324.066667pt;}
.y74{bottom:324.706667pt;}
.y83{bottom:325.506667pt;}
.y24{bottom:337.506667pt;}
.y58{bottom:342.786667pt;}
.y73{bottom:343.426667pt;}
.y82{bottom:344.226667pt;}
.y23{bottom:356.226667pt;}
.y57{bottom:361.506667pt;}
.y72{bottom:362.146667pt;}
.y81{bottom:362.946667pt;}
.y22{bottom:374.946667pt;}
.y56{bottom:380.226667pt;}
.y71{bottom:380.866667pt;}
.y80{bottom:381.666667pt;}
.y21{bottom:393.666667pt;}
.y55{bottom:398.946667pt;}
.y70{bottom:399.586667pt;}
.y7f{bottom:400.386667pt;}
.y20{bottom:412.386667pt;}
.y54{bottom:417.666667pt;}
.y6f{bottom:418.306667pt;}
.y7e{bottom:419.106667pt;}
.y1f{bottom:431.106667pt;}
.y53{bottom:436.386667pt;}
.y6e{bottom:437.026667pt;}
.y7d{bottom:437.826667pt;}
.y1e{bottom:449.826667pt;}
.y52{bottom:455.106667pt;}
.y6d{bottom:455.746667pt;}
.y7c{bottom:456.546667pt;}
.y1d{bottom:468.546667pt;}
.y51{bottom:473.826667pt;}
.y6c{bottom:474.466667pt;}
.y7b{bottom:475.266667pt;}
.y1c{bottom:487.266667pt;}
.y50{bottom:492.546667pt;}
.y6b{bottom:493.186667pt;}
.y7a{bottom:493.986667pt;}
.y1b{bottom:505.986667pt;}
.y4f{bottom:511.266667pt;}
.y6a{bottom:511.906667pt;}
.y79{bottom:512.706667pt;}
.y1a{bottom:524.706667pt;}
.y4e{bottom:530.013333pt;}
.y69{bottom:530.653333pt;}
.y78{bottom:531.453333pt;}
.y19{bottom:543.453333pt;}
.y4d{bottom:548.733333pt;}
.y68{bottom:550.173333pt;}
.y18{bottom:563.933333pt;}
.y4c{bottom:567.293333pt;}
.y67{bottom:568.893333pt;}
.y4b{bottom:586.653333pt;}
.y66{bottom:587.453333pt;}
.y17{bottom:590.813333pt;}
.y4a{bottom:606.173333pt;}
.y16{bottom:609.533333pt;}
.y49{bottom:624.893333pt;}
.y15{bottom:628.253333pt;}
.y48{bottom:643.613333pt;}
.y14{bottom:646.973333pt;}
.y47{bottom:662.333333pt;}
.y13{bottom:665.693333pt;}
.y46{bottom:681.053333pt;}
.y12{bottom:684.413333pt;}
.y45{bottom:699.773333pt;}
.y11{bottom:703.133333pt;}
.y44{bottom:718.493333pt;}
.y10{bottom:721.853333pt;}
.y43{bottom:737.213333pt;}
.yf{bottom:740.573333pt;}
.y42{bottom:755.933333pt;}
.ye{bottom:761.373333pt;}
.y41{bottom:774.693333pt;}
.yd{bottom:780.773333pt;}
.y40{bottom:793.413333pt;}
.yc{bottom:805.253333pt;}
.y3f{bottom:812.133333pt;}
.yb{bottom:823.973333pt;}
.y3e{bottom:830.853333pt;}
.ya{bottom:842.693333pt;}
.y3d{bottom:849.573333pt;}
.y9{bottom:857.573333pt;}
.y3c{bottom:868.293333pt;}
.y8{bottom:877.413333pt;}
.y3b{bottom:887.013333pt;}
.y7{bottom:899.653333pt;}
.y3a{bottom:905.733333pt;}
.y39{bottom:924.453333pt;}
.y5{bottom:935.493333pt;}
.y38{bottom:943.173333pt;}
.y37{bottom:961.893333pt;}
.y4{bottom:964.133333pt;}
.y36{bottom:980.613333pt;}
.y3{bottom:992.613333pt;}
.y35{bottom:999.333333pt;}
.y34{bottom:1018.080000pt;}
.y2{bottom:1021.280000pt;}
.y33{bottom:1036.800000pt;}
.y1{bottom:1052.000000pt;}
.y32{bottom:1061.600000pt;}
.hc{height:2.546250pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hb{height:75.680000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:47.999988pt;}
.x2{left:70.719988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x5{left:170.106667pt;}
.x6{left:235.386667pt;}
}




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