
    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_a1a52eb864914b3b8d8b865a.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_2574d402fe304e338b53a7a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_5464846e60a6798582a3a8a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_b4758648d37042ab149826f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953125;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_7924bcde5e3df85c0069e06f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953125;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_3c3e3c25250ab5e45eb05945.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;}
.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:-21.600000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:21.600000px;}
.ls21{letter-spacing:-3.048000px;}
.ls18{letter-spacing:-2.952000px;}
.lsb{letter-spacing:-2.160000px;}
.lsf{letter-spacing:-2.046000px;}
.ls2a{letter-spacing:-1.866000px;}
.ls10{letter-spacing:-1.632000px;}
.ls11{letter-spacing:-1.542000px;}
.ls23{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.044000px;}
.ls14{letter-spacing:-0.948000px;}
.ls25{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.798000px;}
.ls7{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.642000px;}
.ls15{letter-spacing:-0.606000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1f{letter-spacing:-0.423600px;}
.lse{letter-spacing:-0.368400px;}
.ls29{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.247800px;}
.ls13{letter-spacing:-0.100800px;}
.ls1c{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.030240px;}
.ls27{letter-spacing:0.120960px;}
.lsd{letter-spacing:0.121200px;}
.ls22{letter-spacing:0.273600px;}
.ls4{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.337200px;}
.ls16{letter-spacing:0.394560px;}
.ls1b{letter-spacing:0.394800px;}
.ls2{letter-spacing:0.468000px;}
.lsc{letter-spacing:0.489600px;}
.ls1a{letter-spacing:0.598800px;}
.ls12{letter-spacing:0.642000px;}
.ls0{letter-spacing:1.728000px;}
.ls3{letter-spacing:1.848000px;}
.ls1{letter-spacing:1.920960px;}
.ls20{letter-spacing:5.051520px;}
.ls1d{letter-spacing:5.052000px;}
.ls1e{letter-spacing:6.480000px;}
.ls28{letter-spacing:11.986560px;}
.ls26{letter-spacing:42.226560px;}
.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:-41.664960px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws3{word-spacing:-14.158080px;}
.wse{word-spacing:-14.063280px;}
.wsd{word-spacing:-14.005680px;}
.ws6{word-spacing:-13.789680px;}
.ws4{word-spacing:-13.668480px;}
.ws10{word-spacing:-13.596480px;}
.wsa{word-spacing:-13.567680px;}
.wsf{word-spacing:-13.244880px;}
.wsc{word-spacing:-13.062480px;}
.wsb{word-spacing:-12.720480px;}
.ws11{word-spacing:-12.348480px;}
.ws9{word-spacing:-12.126480px;}
.ws8{word-spacing:-12.036480px;}
.ws12{word-spacing:-11.802480px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-1447.340880px;}
._4{margin-left:-1328.000640px;}
._6{margin-left:-1000.336080px;}
._8{margin-left:-579.479160px;}
._a{margin-left:-7.935600px;}
._d{margin-left:-6.514560px;}
._11{margin-left:-5.415360px;}
._9{margin-left:-4.164960px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.391040px;}
._1{width:1.146720px;}
._2{width:2.450880px;}
._3{width:3.569760px;}
._e{width:4.976640px;}
._f{width:6.350400px;}
._10{width:7.404960px;}
._12{width:8.407680px;}
._c{width:10.117440px;}
._b{width:11.672640px;}
._13{width:15.560640px;}
._14{width:17.270880px;}
._17{width:18.303360px;}
._1b{width:19.304640px;}
._18{width:20.442240px;}
._19{width:21.893760px;}
._1a{width:23.045760px;}
._1c{width:24.223440px;}
._1d{width:25.280640px;}
._16{width:30.584160px;}
._15{width:32.356800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:7.200000px;}
.y99{bottom:28.440000px;}
.y96{bottom:35.640000px;}
.y98{bottom:49.680000px;}
.y6{bottom:57.240000px;}
.y97{bottom:70.914000px;}
.y95{bottom:86.076000px;}
.y32{bottom:90.756000px;}
.y94{bottom:92.196000px;}
.y5c{bottom:92.556000px;}
.y87{bottom:104.436000px;}
.y31{bottom:111.636000px;}
.y5b{bottom:113.436000px;}
.y86{bottom:125.316000px;}
.y5a{bottom:130.716000px;}
.y30{bottom:132.876000px;}
.y93{bottom:134.316000px;}
.y85{bottom:146.556000px;}
.y2f{bottom:153.750000px;}
.y92{bottom:155.550000px;}
.y84{bottom:167.430000px;}
.y2e{bottom:174.990000px;}
.y91{bottom:176.430000px;}
.y83{bottom:188.670000px;}
.y2d{bottom:195.915000px;}
.y90{bottom:197.715000px;}
.y82{bottom:209.595000px;}
.y2c{bottom:217.155000px;}
.y8f{bottom:218.595000px;}
.y81{bottom:230.835000px;}
.y2b{bottom:238.035000px;}
.y8e{bottom:239.835000px;}
.y80{bottom:251.715000px;}
.y2a{bottom:259.275000px;}
.y8d{bottom:260.715000px;}
.y7f{bottom:272.955000px;}
.y29{bottom:280.155000px;}
.y8c{bottom:281.955000px;}
.y7e{bottom:293.835000px;}
.y28{bottom:301.395000px;}
.y8b{bottom:302.835000px;}
.y7d{bottom:315.075000px;}
.y27{bottom:322.305000px;}
.y8a{bottom:324.105000px;}
.y7c{bottom:335.985000px;}
.y26{bottom:343.545000px;}
.y89{bottom:344.985000px;}
.y7b{bottom:357.225000px;}
.y25{bottom:364.425000px;}
.y88{bottom:366.225000px;}
.y7a{bottom:378.105000px;}
.y24{bottom:385.665000px;}
.y59{bottom:387.105000px;}
.y79{bottom:399.345000px;}
.y23{bottom:406.545000px;}
.y58{bottom:408.345000px;}
.y78{bottom:420.225000px;}
.y22{bottom:427.785000px;}
.y57{bottom:429.225000px;}
.y77{bottom:441.465000px;}
.y21{bottom:448.710000px;}
.y56{bottom:450.510000px;}
.y76{bottom:462.390000px;}
.y20{bottom:469.950000px;}
.y55{bottom:471.390000px;}
.y75{bottom:483.630000px;}
.y1f{bottom:490.830000px;}
.y54{bottom:492.630000px;}
.y74{bottom:504.510000px;}
.y53{bottom:513.510000px;}
.y1e{bottom:513.870000px;}
.y73{bottom:525.750000px;}
.y52{bottom:534.750000px;}
.y1d{bottom:544.110000px;}
.y72{bottom:546.630000px;}
.y51{bottom:555.630000px;}
.y1c{bottom:565.350000px;}
.y71{bottom:567.870000px;}
.y50{bottom:576.900000px;}
.y1b{bottom:586.260000px;}
.y70{bottom:588.780000px;}
.y4f{bottom:597.780000px;}
.y1a{bottom:607.500000px;}
.y6f{bottom:610.020000px;}
.y4e{bottom:619.020000px;}
.y19{bottom:628.380000px;}
.y6e{bottom:630.900000px;}
.y4d{bottom:639.900000px;}
.y18{bottom:649.620000px;}
.y6d{bottom:652.140000px;}
.y4c{bottom:661.140000px;}
.y17{bottom:670.500000px;}
.y6c{bottom:673.020000px;}
.y4b{bottom:682.020000px;}
.y16{bottom:691.740000px;}
.y6b{bottom:694.260000px;}
.y4a{bottom:703.290000px;}
.y15{bottom:712.650000px;}
.y6a{bottom:715.170000px;}
.y49{bottom:724.170000px;}
.y14{bottom:733.890000px;}
.y69{bottom:736.410000px;}
.y48{bottom:745.410000px;}
.y13{bottom:754.770000px;}
.y68{bottom:757.290000px;}
.y47{bottom:766.290000px;}
.y12{bottom:776.010000px;}
.y67{bottom:778.170000px;}
.y46{bottom:787.170000px;}
.y11{bottom:796.890000px;}
.y66{bottom:799.410000px;}
.y45{bottom:808.410000px;}
.y10{bottom:818.130000px;}
.y65{bottom:820.290000px;}
.y44{bottom:829.335000px;}
.yf{bottom:839.055000px;}
.y64{bottom:841.575000px;}
.y43{bottom:850.575000px;}
.ye{bottom:859.935000px;}
.y63{bottom:862.455000px;}
.y42{bottom:871.455000px;}
.yd{bottom:883.335000px;}
.y62{bottom:883.695000px;}
.y41{bottom:892.695000px;}
.yc{bottom:904.575000px;}
.y40{bottom:913.575000px;}
.yb{bottom:925.455000px;}
.y61{bottom:925.815000px;}
.y3f{bottom:934.815000px;}
.y60{bottom:946.695000px;}
.ya{bottom:947.055000px;}
.y3e{bottom:955.725000px;}
.y5f{bottom:967.965000px;}
.y9{bottom:969.765000px;}
.y3d{bottom:976.965000px;}
.y5e{bottom:988.845000px;}
.y8{bottom:994.605000px;}
.y3c{bottom:997.845000px;}
.y5d{bottom:1010.085000px;}
.y3b{bottom:1019.085000px;}
.y7{bottom:1028.085000px;}
.y3a{bottom:1039.965000px;}
.y39{bottom:1061.205000px;}
.y5{bottom:1066.965000px;}
.y38{bottom:1082.130000px;}
.y4{bottom:1097.610000px;}
.y37{bottom:1103.370000px;}
.y36{bottom:1124.250000px;}
.y3{bottom:1128.570000px;}
.y35{bottom:1145.490000px;}
.y2{bottom:1159.170000px;}
.y34{bottom:1166.370000px;}
.y1{bottom:1191.930000px;}
.y33{bottom:1193.730000px;}
.hb{height:2.518594px;}
.h8{height:46.866094px;}
.h6{height:51.329531px;}
.h5{height:52.890469px;}
.h7{height:55.601016px;}
.h2{height:55.666406px;}
.h3{height:57.927656px;}
.h9{height:62.163910px;}
.h4{height:74.762578px;}
.ha{height:84.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:211.035000px;}
.w4{width:580.890000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:7.560000px;}
.x1{left:54.035987px;}
.x5{left:75.275987px;}
.x6{left:102.275987px;}
.x4{left:108.035987px;}
.x7{left:190.869000px;}
.x8{left:265.065000px;}
.x3{left:296.024987px;}
.x2{left:704.054987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:19.200000pt;}
.ls21{letter-spacing:-2.709333pt;}
.ls18{letter-spacing:-2.624000pt;}
.lsb{letter-spacing:-1.920000pt;}
.lsf{letter-spacing:-1.818667pt;}
.ls2a{letter-spacing:-1.658667pt;}
.ls10{letter-spacing:-1.450667pt;}
.ls11{letter-spacing:-1.370667pt;}
.ls23{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-0.928000pt;}
.ls14{letter-spacing:-0.842667pt;}
.ls25{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.570667pt;}
.ls15{letter-spacing:-0.538667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1f{letter-spacing:-0.376533pt;}
.lse{letter-spacing:-0.327467pt;}
.ls29{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.220267pt;}
.ls13{letter-spacing:-0.089600pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.026880pt;}
.ls27{letter-spacing:0.107520pt;}
.lsd{letter-spacing:0.107733pt;}
.ls22{letter-spacing:0.243200pt;}
.ls4{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.299733pt;}
.ls16{letter-spacing:0.350720pt;}
.ls1b{letter-spacing:0.350933pt;}
.ls2{letter-spacing:0.416000pt;}
.lsc{letter-spacing:0.435200pt;}
.ls1a{letter-spacing:0.532267pt;}
.ls12{letter-spacing:0.570667pt;}
.ls0{letter-spacing:1.536000pt;}
.ls3{letter-spacing:1.642667pt;}
.ls1{letter-spacing:1.707520pt;}
.ls20{letter-spacing:4.490240pt;}
.ls1d{letter-spacing:4.490667pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls28{letter-spacing:10.654720pt;}
.ls26{letter-spacing:37.534720pt;}
.ws0{word-spacing:-37.035520pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.584960pt;}
.wse{word-spacing:-12.500693pt;}
.wsd{word-spacing:-12.449493pt;}
.ws6{word-spacing:-12.257493pt;}
.ws4{word-spacing:-12.149760pt;}
.ws10{word-spacing:-12.085760pt;}
.wsa{word-spacing:-12.060160pt;}
.wsf{word-spacing:-11.773227pt;}
.wsc{word-spacing:-11.611093pt;}
.wsb{word-spacing:-11.307093pt;}
.ws11{word-spacing:-10.976427pt;}
.ws9{word-spacing:-10.779093pt;}
.ws8{word-spacing:-10.699093pt;}
.ws12{word-spacing:-10.491093pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-1286.525227pt;}
._4{margin-left:-1180.445013pt;}
._6{margin-left:-889.187627pt;}
._8{margin-left:-515.092587pt;}
._a{margin-left:-7.053867pt;}
._d{margin-left:-5.790720pt;}
._11{margin-left:-4.813653pt;}
._9{margin-left:-3.702187pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.019307pt;}
._2{width:2.178560pt;}
._3{width:3.173120pt;}
._e{width:4.423680pt;}
._f{width:5.644800pt;}
._10{width:6.582187pt;}
._12{width:7.473493pt;}
._c{width:8.993280pt;}
._b{width:10.375680pt;}
._13{width:13.831680pt;}
._14{width:15.351893pt;}
._17{width:16.269653pt;}
._1b{width:17.159680pt;}
._18{width:18.170880pt;}
._19{width:19.461120pt;}
._1a{width:20.485120pt;}
._1c{width:21.531947pt;}
._1d{width:22.471680pt;}
._16{width:27.185920pt;}
._15{width:28.761600pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:6.400000pt;}
.y99{bottom:25.280000pt;}
.y96{bottom:31.680000pt;}
.y98{bottom:44.160000pt;}
.y6{bottom:50.880000pt;}
.y97{bottom:63.034667pt;}
.y95{bottom:76.512000pt;}
.y32{bottom:80.672000pt;}
.y94{bottom:81.952000pt;}
.y5c{bottom:82.272000pt;}
.y87{bottom:92.832000pt;}
.y31{bottom:99.232000pt;}
.y5b{bottom:100.832000pt;}
.y86{bottom:111.392000pt;}
.y5a{bottom:116.192000pt;}
.y30{bottom:118.112000pt;}
.y93{bottom:119.392000pt;}
.y85{bottom:130.272000pt;}
.y2f{bottom:136.666667pt;}
.y92{bottom:138.266667pt;}
.y84{bottom:148.826667pt;}
.y2e{bottom:155.546667pt;}
.y91{bottom:156.826667pt;}
.y83{bottom:167.706667pt;}
.y2d{bottom:174.146667pt;}
.y90{bottom:175.746667pt;}
.y82{bottom:186.306667pt;}
.y2c{bottom:193.026667pt;}
.y8f{bottom:194.306667pt;}
.y81{bottom:205.186667pt;}
.y2b{bottom:211.586667pt;}
.y8e{bottom:213.186667pt;}
.y80{bottom:223.746667pt;}
.y2a{bottom:230.466667pt;}
.y8d{bottom:231.746667pt;}
.y7f{bottom:242.626667pt;}
.y29{bottom:249.026667pt;}
.y8c{bottom:250.626667pt;}
.y7e{bottom:261.186667pt;}
.y28{bottom:267.906667pt;}
.y8b{bottom:269.186667pt;}
.y7d{bottom:280.066667pt;}
.y27{bottom:286.493333pt;}
.y8a{bottom:288.093333pt;}
.y7c{bottom:298.653333pt;}
.y26{bottom:305.373333pt;}
.y89{bottom:306.653333pt;}
.y7b{bottom:317.533333pt;}
.y25{bottom:323.933333pt;}
.y88{bottom:325.533333pt;}
.y7a{bottom:336.093333pt;}
.y24{bottom:342.813333pt;}
.y59{bottom:344.093333pt;}
.y79{bottom:354.973333pt;}
.y23{bottom:361.373333pt;}
.y58{bottom:362.973333pt;}
.y78{bottom:373.533333pt;}
.y22{bottom:380.253333pt;}
.y57{bottom:381.533333pt;}
.y77{bottom:392.413333pt;}
.y21{bottom:398.853333pt;}
.y56{bottom:400.453333pt;}
.y76{bottom:411.013333pt;}
.y20{bottom:417.733333pt;}
.y55{bottom:419.013333pt;}
.y75{bottom:429.893333pt;}
.y1f{bottom:436.293333pt;}
.y54{bottom:437.893333pt;}
.y74{bottom:448.453333pt;}
.y53{bottom:456.453333pt;}
.y1e{bottom:456.773333pt;}
.y73{bottom:467.333333pt;}
.y52{bottom:475.333333pt;}
.y1d{bottom:483.653333pt;}
.y72{bottom:485.893333pt;}
.y51{bottom:493.893333pt;}
.y1c{bottom:502.533333pt;}
.y71{bottom:504.773333pt;}
.y50{bottom:512.800000pt;}
.y1b{bottom:521.120000pt;}
.y70{bottom:523.360000pt;}
.y4f{bottom:531.360000pt;}
.y1a{bottom:540.000000pt;}
.y6f{bottom:542.240000pt;}
.y4e{bottom:550.240000pt;}
.y19{bottom:558.560000pt;}
.y6e{bottom:560.800000pt;}
.y4d{bottom:568.800000pt;}
.y18{bottom:577.440000pt;}
.y6d{bottom:579.680000pt;}
.y4c{bottom:587.680000pt;}
.y17{bottom:596.000000pt;}
.y6c{bottom:598.240000pt;}
.y4b{bottom:606.240000pt;}
.y16{bottom:614.880000pt;}
.y6b{bottom:617.120000pt;}
.y4a{bottom:625.146667pt;}
.y15{bottom:633.466667pt;}
.y6a{bottom:635.706667pt;}
.y49{bottom:643.706667pt;}
.y14{bottom:652.346667pt;}
.y69{bottom:654.586667pt;}
.y48{bottom:662.586667pt;}
.y13{bottom:670.906667pt;}
.y68{bottom:673.146667pt;}
.y47{bottom:681.146667pt;}
.y12{bottom:689.786667pt;}
.y67{bottom:691.706667pt;}
.y46{bottom:699.706667pt;}
.y11{bottom:708.346667pt;}
.y66{bottom:710.586667pt;}
.y45{bottom:718.586667pt;}
.y10{bottom:727.226667pt;}
.y65{bottom:729.146667pt;}
.y44{bottom:737.186667pt;}
.yf{bottom:745.826667pt;}
.y64{bottom:748.066667pt;}
.y43{bottom:756.066667pt;}
.ye{bottom:764.386667pt;}
.y63{bottom:766.626667pt;}
.y42{bottom:774.626667pt;}
.yd{bottom:785.186667pt;}
.y62{bottom:785.506667pt;}
.y41{bottom:793.506667pt;}
.yc{bottom:804.066667pt;}
.y40{bottom:812.066667pt;}
.yb{bottom:822.626667pt;}
.y61{bottom:822.946667pt;}
.y3f{bottom:830.946667pt;}
.y60{bottom:841.506667pt;}
.ya{bottom:841.826667pt;}
.y3e{bottom:849.533333pt;}
.y5f{bottom:860.413333pt;}
.y9{bottom:862.013333pt;}
.y3d{bottom:868.413333pt;}
.y5e{bottom:878.973333pt;}
.y8{bottom:884.093333pt;}
.y3c{bottom:886.973333pt;}
.y5d{bottom:897.853333pt;}
.y3b{bottom:905.853333pt;}
.y7{bottom:913.853333pt;}
.y3a{bottom:924.413333pt;}
.y39{bottom:943.293333pt;}
.y5{bottom:948.413333pt;}
.y38{bottom:961.893333pt;}
.y4{bottom:975.653333pt;}
.y37{bottom:980.773333pt;}
.y36{bottom:999.333333pt;}
.y3{bottom:1003.173333pt;}
.y35{bottom:1018.213333pt;}
.y2{bottom:1030.373333pt;}
.y34{bottom:1036.773333pt;}
.y1{bottom:1059.493333pt;}
.y33{bottom:1061.093333pt;}
.hb{height:2.238750pt;}
.h8{height:41.658750pt;}
.h6{height:45.626250pt;}
.h5{height:47.013750pt;}
.h7{height:49.423125pt;}
.h2{height:49.481250pt;}
.h3{height:51.491250pt;}
.h9{height:55.256809pt;}
.h4{height:66.455625pt;}
.ha{height:75.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.586667pt;}
.w4{width:516.346667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:6.720000pt;}
.x1{left:48.031988pt;}
.x5{left:66.911988pt;}
.x6{left:90.911988pt;}
.x4{left:96.031988pt;}
.x7{left:169.661333pt;}
.x8{left:235.613333pt;}
.x3{left:263.133322pt;}
.x2{left:625.826655pt;}
}




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