
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e5d8affca2d2f734374c4649.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5ae9de116b8755d249bbc52a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_8748f3f1f1bfabd3e3c35974.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_eb54cafec886b4594539c7a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_459ba9b3337ab052d42135c8.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_5611e83612b98962bb57d00e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v2{vertical-align:-106.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.178560px;}
.ls4{letter-spacing:0.181200px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:24.480000px;}
.lsc{letter-spacing:59.904000px;}
.ls9{letter-spacing:95.904000px;}
.ls8{letter-spacing:1047.756000px;}
.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:-18.216000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-4.383360px;}
._3{margin-left:-3.192000px;}
._0{margin-left:-1.232640px;}
._1{width:1.015920px;}
._2{width:2.046240px;}
._a{width:3.209760px;}
._8{width:4.464000px;}
._9{width:5.808000px;}
._7{width:7.128000px;}
._6{width:8.136000px;}
._b{width:9.280080px;}
._4{width:10.872000px;}
._c{width:12.816000px;}
._11{width:14.112000px;}
._12{width:15.552000px;}
._13{width:16.713360px;}
._d{width:19.440000px;}
._e{width:20.592000px;}
._f{width:21.888000px;}
._10{width:22.888080px;}
._15{width:24.277440px;}
._14{width:25.352640px;}
._1a{width:26.919360px;}
._1c{width:68.832000px;}
._1d{width:69.844080px;}
._1b{width:82.728000px;}
._1e{width:112.104000px;}
._1f{width:113.112000px;}
._19{width:162.648000px;}
._17{width:261.936000px;}
._18{width:262.996080px;}
._16{width:1791.636000px;}
.fc4{color:transparent;}
.fc3{color:rgb(131,60,11);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y10{bottom:-15.480000px;}
.yd{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.060000px;}
.y5{bottom:3.420000px;}
.yf{bottom:3.780000px;}
.y6d{bottom:7.020000px;}
.yb{bottom:15.120000px;}
.ya{bottom:27.180000px;}
.y6f{bottom:30.780000px;}
.y6c{bottom:30.960000px;}
.y3{bottom:34.236000px;}
.y9{bottom:39.240000px;}
.y4{bottom:50.076000px;}
.y6{bottom:50.436000px;}
.y8{bottom:52.920000px;}
.y2{bottom:53.496000px;}
.yb3{bottom:102.636000px;}
.y94{bottom:102.816000px;}
.y6a{bottom:102.996000px;}
.ya8{bottom:109.476000px;}
.y82{bottom:111.636000px;}
.yb2{bottom:126.396000px;}
.y93{bottom:126.576000px;}
.y69{bottom:126.756000px;}
.ya7{bottom:133.236000px;}
.y81{bottom:135.396000px;}
.y3d{bottom:135.756000px;}
.yb1{bottom:150.150000px;}
.y92{bottom:150.330000px;}
.y68{bottom:150.510000px;}
.y80{bottom:155.190000px;}
.ya6{bottom:157.170000px;}
.y3c{bottom:159.510000px;}
.y91{bottom:174.090000px;}
.y67{bottom:174.450000px;}
.ya5{bottom:180.930000px;}
.y3b{bottom:183.270000px;}
.yb0{bottom:197.850000px;}
.y90{bottom:198.030000px;}
.y66{bottom:198.210000px;}
.ya4{bottom:204.690000px;}
.y3a{bottom:207.210000px;}
.y8f{bottom:217.830000px;}
.yaf{bottom:221.610000px;}
.y65{bottom:221.970000px;}
.ya3{bottom:228.450000px;}
.y39{bottom:230.970000px;}
.yae{bottom:245.370000px;}
.y64{bottom:245.730000px;}
.ya2{bottom:248.430000px;}
.y38{bottom:254.730000px;}
.yad{bottom:269.310000px;}
.y63{bottom:269.490000px;}
.y37{bottom:278.490000px;}
.yac{bottom:293.115000px;}
.y62{bottom:293.475000px;}
.y36{bottom:302.475000px;}
.yab{bottom:316.875000px;}
.y61{bottom:317.235000px;}
.y35{bottom:326.235000px;}
.yaa{bottom:340.635000px;}
.y60{bottom:340.995000px;}
.y34{bottom:349.995000px;}
.y7f{bottom:363.315000px;}
.ya9{bottom:364.575000px;}
.y5f{bottom:364.755000px;}
.y33{bottom:373.755000px;}
.y7e{bottom:387.075000px;}
.y5e{bottom:388.695000px;}
.y32{bottom:397.695000px;}
.y7d{bottom:411.015000px;}
.y5d{bottom:412.455000px;}
.ya1{bottom:417.495000px;}
.y31{bottom:421.455000px;}
.y7c{bottom:434.775000px;}
.y5c{bottom:436.215000px;}
.ya0{bottom:441.255000px;}
.y30{bottom:445.215000px;}
.y7b{bottom:458.535000px;}
.y5b{bottom:459.975000px;}
.y9f{bottom:465.015000px;}
.y2f{bottom:468.975000px;}
.y7a{bottom:482.295000px;}
.y5a{bottom:483.915000px;}
.y9e{bottom:488.955000px;}
.y2e{bottom:492.735000px;}
.y79{bottom:506.235000px;}
.y59{bottom:507.675000px;}
.y9d{bottom:512.715000px;}
.y2d{bottom:516.675000px;}
.y78{bottom:529.995000px;}
.y8e{bottom:530.895000px;}
.y58{bottom:531.435000px;}
.y9c{bottom:536.475000px;}
.y2c{bottom:540.435000px;}
.y77{bottom:553.755000px;}
.y8d{bottom:554.655000px;}
.y57{bottom:555.195000px;}
.y9b{bottom:560.235000px;}
.y2b{bottom:564.195000px;}
.y76{bottom:577.545000px;}
.y8c{bottom:578.625000px;}
.y56{bottom:579.165000px;}
.y9a{bottom:584.205000px;}
.y2a{bottom:587.985000px;}
.y75{bottom:601.485000px;}
.y8b{bottom:602.385000px;}
.y55{bottom:602.925000px;}
.y99{bottom:607.965000px;}
.y29{bottom:611.925000px;}
.y74{bottom:625.245000px;}
.y8a{bottom:626.145000px;}
.y54{bottom:626.685000px;}
.y98{bottom:631.725000px;}
.y28{bottom:635.685000px;}
.y73{bottom:649.005000px;}
.y89{bottom:649.905000px;}
.y53{bottom:650.445000px;}
.y97{bottom:655.485000px;}
.y27{bottom:659.445000px;}
.y72{bottom:672.765000px;}
.y88{bottom:673.845000px;}
.y52{bottom:674.385000px;}
.y96{bottom:679.425000px;}
.y26{bottom:683.205000px;}
.y71{bottom:692.565000px;}
.y87{bottom:697.605000px;}
.y51{bottom:698.145000px;}
.y95{bottom:699.045000px;}
.y25{bottom:707.145000px;}
.y86{bottom:721.365000px;}
.y50{bottom:721.905000px;}
.y24{bottom:730.905000px;}
.y85{bottom:745.125000px;}
.y4f{bottom:745.665000px;}
.y23{bottom:754.665000px;}
.y84{bottom:769.065000px;}
.y4e{bottom:769.605000px;}
.y22{bottom:778.425000px;}
.y83{bottom:788.865000px;}
.y4d{bottom:793.365000px;}
.y21{bottom:802.365000px;}
.y4c{bottom:817.125000px;}
.y20{bottom:826.125000px;}
.y4b{bottom:840.885000px;}
.y1f{bottom:849.930000px;}
.y70{bottom:857.670000px;}
.y4a{bottom:864.690000px;}
.y1e{bottom:873.690000px;}
.y49{bottom:888.630000px;}
.y1d{bottom:897.630000px;}
.y6e{bottom:905.370000px;}
.y48{bottom:912.390000px;}
.y1c{bottom:921.390000px;}
.y47{bottom:936.150000px;}
.y1b{bottom:945.150000px;}
.y6b{bottom:952.890000px;}
.y46{bottom:959.910000px;}
.y1a{bottom:965.490000px;}
.y45{bottom:983.850000px;}
.y19{bottom:984.570000px;}
.y18{bottom:1003.470000px;}
.y44{bottom:1007.610000px;}
.y17{bottom:1022.550000px;}
.y43{bottom:1031.370000px;}
.y16{bottom:1041.450000px;}
.y42{bottom:1055.130000px;}
.y15{bottom:1060.350000px;}
.y41{bottom:1079.070000px;}
.y14{bottom:1079.430000px;}
.y13{bottom:1099.230000px;}
.y40{bottom:1102.830000px;}
.y12{bottom:1123.350000px;}
.y3f{bottom:1126.590000px;}
.y11{bottom:1147.500000px;}
.y3e{bottom:1150.380000px;}
.y7{bottom:1181.520000px;}
.ye{bottom:1181.700000px;}
.y1{bottom:1194.120000px;}
.h9{height:14.940000px;}
.h3{height:17.460000px;}
.h7{height:40.985156px;}
.h8{height:42.086250px;}
.ha{height:47.344922px;}
.h12{height:47.520000px;}
.h11{height:47.700000px;}
.h4{height:58.651172px;}
.h10{height:60.046875px;}
.hd{height:65.010937px;}
.he{height:65.846250px;}
.h2{height:65.884219px;}
.hc{height:66.757500px;}
.h5{height:69.660000px;}
.hf{height:70.664062px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.hb{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:161.670000px;}
.w6{width:185.430000px;}
.w5{width:252.030000px;}
.w3{width:314.535000px;}
.w7{width:680.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:5.400000px;}
.x4{left:10.800000px;}
.x6{left:45.405000px;}
.x14{left:47.916000px;}
.x3{left:70.920000px;}
.x1{left:84.959987px;}
.x9{left:95.075987px;}
.xa{left:111.635987px;}
.x13{left:127.475987px;}
.x7{left:164.190000px;}
.x10{left:234.209987px;}
.xe{left:253.289987px;}
.x11{left:260.489987px;}
.x12{left:307.514987px;}
.xc{left:313.994987px;}
.xd{left:328.034987px;}
.xb{left:345.134987px;}
.x2{left:399.494987px;}
.xf{left:403.634987px;}
.x16{left:465.014987px;}
.x19{left:528.044987px;}
.x1a{left:537.764987px;}
.x8{left:650.265000px;}
.x5{left:656.025000px;}
.x17{left:688.424987px;}
.x18{left:699.809987px;}
@media print{
.v2{vertical-align:-94.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.158720pt;}
.ls4{letter-spacing:0.161067pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:21.760000pt;}
.lsc{letter-spacing:53.248000pt;}
.ls9{letter-spacing:85.248000pt;}
.ls8{letter-spacing:931.338667pt;}
.ws7{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-3.896320pt;}
._3{margin-left:-2.837333pt;}
._0{margin-left:-1.095680pt;}
._1{width:0.903040pt;}
._2{width:1.818880pt;}
._a{width:2.853120pt;}
._8{width:3.968000pt;}
._9{width:5.162667pt;}
._7{width:6.336000pt;}
._6{width:7.232000pt;}
._b{width:8.248960pt;}
._4{width:9.664000pt;}
._c{width:11.392000pt;}
._11{width:12.544000pt;}
._12{width:13.824000pt;}
._13{width:14.856320pt;}
._d{width:17.280000pt;}
._e{width:18.304000pt;}
._f{width:19.456000pt;}
._10{width:20.344960pt;}
._15{width:21.579947pt;}
._14{width:22.535680pt;}
._1a{width:23.928320pt;}
._1c{width:61.184000pt;}
._1d{width:62.083627pt;}
._1b{width:73.536000pt;}
._1e{width:99.648000pt;}
._1f{width:100.544000pt;}
._19{width:144.576000pt;}
._17{width:232.832000pt;}
._18{width:233.774293pt;}
._16{width:1592.565333pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y10{bottom:-13.760000pt;}
.yd{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.720000pt;}
.y5{bottom:3.040000pt;}
.yf{bottom:3.360000pt;}
.y6d{bottom:6.240000pt;}
.yb{bottom:13.440000pt;}
.ya{bottom:24.160000pt;}
.y6f{bottom:27.360000pt;}
.y6c{bottom:27.520000pt;}
.y3{bottom:30.432000pt;}
.y9{bottom:34.880000pt;}
.y4{bottom:44.512000pt;}
.y6{bottom:44.832000pt;}
.y8{bottom:47.040000pt;}
.y2{bottom:47.552000pt;}
.yb3{bottom:91.232000pt;}
.y94{bottom:91.392000pt;}
.y6a{bottom:91.552000pt;}
.ya8{bottom:97.312000pt;}
.y82{bottom:99.232000pt;}
.yb2{bottom:112.352000pt;}
.y93{bottom:112.512000pt;}
.y69{bottom:112.672000pt;}
.ya7{bottom:118.432000pt;}
.y81{bottom:120.352000pt;}
.y3d{bottom:120.672000pt;}
.yb1{bottom:133.466667pt;}
.y92{bottom:133.626667pt;}
.y68{bottom:133.786667pt;}
.y80{bottom:137.946667pt;}
.ya6{bottom:139.706667pt;}
.y3c{bottom:141.786667pt;}
.y91{bottom:154.746667pt;}
.y67{bottom:155.066667pt;}
.ya5{bottom:160.826667pt;}
.y3b{bottom:162.906667pt;}
.yb0{bottom:175.866667pt;}
.y90{bottom:176.026667pt;}
.y66{bottom:176.186667pt;}
.ya4{bottom:181.946667pt;}
.y3a{bottom:184.186667pt;}
.y8f{bottom:193.626667pt;}
.yaf{bottom:196.986667pt;}
.y65{bottom:197.306667pt;}
.ya3{bottom:203.066667pt;}
.y39{bottom:205.306667pt;}
.yae{bottom:218.106667pt;}
.y64{bottom:218.426667pt;}
.ya2{bottom:220.826667pt;}
.y38{bottom:226.426667pt;}
.yad{bottom:239.386667pt;}
.y63{bottom:239.546667pt;}
.y37{bottom:247.546667pt;}
.yac{bottom:260.546667pt;}
.y62{bottom:260.866667pt;}
.y36{bottom:268.866667pt;}
.yab{bottom:281.666667pt;}
.y61{bottom:281.986667pt;}
.y35{bottom:289.986667pt;}
.yaa{bottom:302.786667pt;}
.y60{bottom:303.106667pt;}
.y34{bottom:311.106667pt;}
.y7f{bottom:322.946667pt;}
.ya9{bottom:324.066667pt;}
.y5f{bottom:324.226667pt;}
.y33{bottom:332.226667pt;}
.y7e{bottom:344.066667pt;}
.y5e{bottom:345.506667pt;}
.y32{bottom:353.506667pt;}
.y7d{bottom:365.346667pt;}
.y5d{bottom:366.626667pt;}
.ya1{bottom:371.106667pt;}
.y31{bottom:374.626667pt;}
.y7c{bottom:386.466667pt;}
.y5c{bottom:387.746667pt;}
.ya0{bottom:392.226667pt;}
.y30{bottom:395.746667pt;}
.y7b{bottom:407.586667pt;}
.y5b{bottom:408.866667pt;}
.y9f{bottom:413.346667pt;}
.y2f{bottom:416.866667pt;}
.y7a{bottom:428.706667pt;}
.y5a{bottom:430.146667pt;}
.y9e{bottom:434.626667pt;}
.y2e{bottom:437.986667pt;}
.y79{bottom:449.986667pt;}
.y59{bottom:451.266667pt;}
.y9d{bottom:455.746667pt;}
.y2d{bottom:459.266667pt;}
.y78{bottom:471.106667pt;}
.y8e{bottom:471.906667pt;}
.y58{bottom:472.386667pt;}
.y9c{bottom:476.866667pt;}
.y2c{bottom:480.386667pt;}
.y77{bottom:492.226667pt;}
.y8d{bottom:493.026667pt;}
.y57{bottom:493.506667pt;}
.y9b{bottom:497.986667pt;}
.y2b{bottom:501.506667pt;}
.y76{bottom:513.373333pt;}
.y8c{bottom:514.333333pt;}
.y56{bottom:514.813333pt;}
.y9a{bottom:519.293333pt;}
.y2a{bottom:522.653333pt;}
.y75{bottom:534.653333pt;}
.y8b{bottom:535.453333pt;}
.y55{bottom:535.933333pt;}
.y99{bottom:540.413333pt;}
.y29{bottom:543.933333pt;}
.y74{bottom:555.773333pt;}
.y8a{bottom:556.573333pt;}
.y54{bottom:557.053333pt;}
.y98{bottom:561.533333pt;}
.y28{bottom:565.053333pt;}
.y73{bottom:576.893333pt;}
.y89{bottom:577.693333pt;}
.y53{bottom:578.173333pt;}
.y97{bottom:582.653333pt;}
.y27{bottom:586.173333pt;}
.y72{bottom:598.013333pt;}
.y88{bottom:598.973333pt;}
.y52{bottom:599.453333pt;}
.y96{bottom:603.933333pt;}
.y26{bottom:607.293333pt;}
.y71{bottom:615.613333pt;}
.y87{bottom:620.093333pt;}
.y51{bottom:620.573333pt;}
.y95{bottom:621.373333pt;}
.y25{bottom:628.573333pt;}
.y86{bottom:641.213333pt;}
.y50{bottom:641.693333pt;}
.y24{bottom:649.693333pt;}
.y85{bottom:662.333333pt;}
.y4f{bottom:662.813333pt;}
.y23{bottom:670.813333pt;}
.y84{bottom:683.613333pt;}
.y4e{bottom:684.093333pt;}
.y22{bottom:691.933333pt;}
.y83{bottom:701.213333pt;}
.y4d{bottom:705.213333pt;}
.y21{bottom:713.213333pt;}
.y4c{bottom:726.333333pt;}
.y20{bottom:734.333333pt;}
.y4b{bottom:747.453333pt;}
.y1f{bottom:755.493333pt;}
.y70{bottom:762.373333pt;}
.y4a{bottom:768.613333pt;}
.y1e{bottom:776.613333pt;}
.y49{bottom:789.893333pt;}
.y1d{bottom:797.893333pt;}
.y6e{bottom:804.773333pt;}
.y48{bottom:811.013333pt;}
.y1c{bottom:819.013333pt;}
.y47{bottom:832.133333pt;}
.y1b{bottom:840.133333pt;}
.y6b{bottom:847.013333pt;}
.y46{bottom:853.253333pt;}
.y1a{bottom:858.213333pt;}
.y45{bottom:874.533333pt;}
.y19{bottom:875.173333pt;}
.y18{bottom:891.973333pt;}
.y44{bottom:895.653333pt;}
.y17{bottom:908.933333pt;}
.y43{bottom:916.773333pt;}
.y16{bottom:925.733333pt;}
.y42{bottom:937.893333pt;}
.y15{bottom:942.533333pt;}
.y41{bottom:959.173333pt;}
.y14{bottom:959.493333pt;}
.y13{bottom:977.093333pt;}
.y40{bottom:980.293333pt;}
.y12{bottom:998.533333pt;}
.y3f{bottom:1001.413333pt;}
.y11{bottom:1020.000000pt;}
.y3e{bottom:1022.560000pt;}
.y7{bottom:1050.240000pt;}
.ye{bottom:1050.400000pt;}
.y1{bottom:1061.440000pt;}
.h9{height:13.280000pt;}
.h3{height:15.520000pt;}
.h7{height:36.431250pt;}
.h8{height:37.410000pt;}
.ha{height:42.084375pt;}
.h12{height:42.240000pt;}
.h11{height:42.400000pt;}
.h4{height:52.134375pt;}
.h10{height:53.375000pt;}
.hd{height:57.787500pt;}
.he{height:58.530000pt;}
.h2{height:58.563750pt;}
.hc{height:59.340000pt;}
.h5{height:61.920000pt;}
.hf{height:62.812500pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.hb{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:143.706667pt;}
.w6{width:164.826667pt;}
.w5{width:224.026667pt;}
.w3{width:279.586667pt;}
.w7{width:604.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:4.800000pt;}
.x4{left:9.600000pt;}
.x6{left:40.360000pt;}
.x14{left:42.592000pt;}
.x3{left:63.040000pt;}
.x1{left:75.519988pt;}
.x9{left:84.511988pt;}
.xa{left:99.231988pt;}
.x13{left:113.311988pt;}
.x7{left:145.946667pt;}
.x10{left:208.186655pt;}
.xe{left:225.146655pt;}
.x11{left:231.546655pt;}
.x12{left:273.346655pt;}
.xc{left:279.106655pt;}
.xd{left:291.586655pt;}
.xb{left:306.786655pt;}
.x2{left:355.106655pt;}
.xf{left:358.786655pt;}
.x16{left:413.346655pt;}
.x19{left:469.373322pt;}
.x1a{left:478.013322pt;}
.x8{left:578.013333pt;}
.x5{left:583.133333pt;}
.x17{left:611.933322pt;}
.x18{left:622.053322pt;}
}




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