
    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_4bd2ff240a96a381705883ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_47f3dbd39efeaddfeba05203.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_e076a31b45c6dedae7849c70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws9{word-spacing:-55.944000px;}
.ws1b{word-spacing:-40.536000px;}
.ws34{word-spacing:-38.166000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws6{word-spacing:-37.928100px;}
.ws4{word-spacing:-37.922700px;}
.ws65{word-spacing:-37.639800px;}
.ws7{word-spacing:-36.267000px;}
.ws8{word-spacing:-35.540100px;}
.ws12{word-spacing:-31.671900px;}
.ws14{word-spacing:-23.242200px;}
.ws44{word-spacing:-23.238600px;}
.ws67{word-spacing:-23.232600px;}
.ws5{word-spacing:-23.037000px;}
.ws33{word-spacing:-23.035200px;}
.ws1c{word-spacing:-23.032800px;}
.ws2d{word-spacing:-23.031000px;}
.ws4b{word-spacing:-23.029800px;}
.ws1a{word-spacing:-23.029200px;}
.ws53{word-spacing:-23.028600px;}
.ws43{word-spacing:-23.023800px;}
.ws6d{word-spacing:-22.742100px;}
.ws70{word-spacing:-22.739400px;}
.ws3c{word-spacing:-22.538400px;}
.ws73{word-spacing:-22.536000px;}
.ws64{word-spacing:-22.534800px;}
.ws3{word-spacing:-22.529400px;}
.ws11{word-spacing:-22.525200px;}
.ws69{word-spacing:-22.454700px;}
.ws22{word-spacing:-22.392000px;}
.ws6b{word-spacing:-22.320000px;}
.ws57{word-spacing:-22.314600px;}
.ws52{word-spacing:-22.309200px;}
.ws54{word-spacing:-22.300200px;}
.ws31{word-spacing:-21.808800px;}
.ws32{word-spacing:-21.597000px;}
.ws1e{word-spacing:-21.592800px;}
.ws5e{word-spacing:-21.310200px;}
.ws4a{word-spacing:-21.306600px;}
.ws78{word-spacing:-21.095100px;}
.ws75{word-spacing:-20.376000px;}
.ws62{word-spacing:-20.368800px;}
.ws3d{word-spacing:-20.367000px;}
.ws24{word-spacing:-19.875300px;}
.ws63{word-spacing:-19.868400px;}
.ws79{word-spacing:-19.866300px;}
.ws4c{word-spacing:-19.647000px;}
.ws68{word-spacing:-18.941100px;}
.ws5d{word-spacing:-18.920700px;}
.ws77{word-spacing:-18.222000px;}
.ws39{word-spacing:-18.217500px;}
.ws74{word-spacing:-17.712000px;}
.ws2f{word-spacing:-17.274600px;}
.ws13{word-spacing:-17.273400px;}
.wsa{word-spacing:-16.988400px;}
.ws51{word-spacing:-16.765200px;}
.ws3f{word-spacing:-16.554600px;}
.ws23{word-spacing:-16.261200px;}
.ws2c{word-spacing:-14.815800px;}
.ws72{word-spacing:-14.094900px;}
.ws18{word-spacing:-13.894800px;}
.ws3e{word-spacing:-13.662000px;}
.ws6c{word-spacing:-13.175100px;}
.ws49{word-spacing:-12.672000px;}
.wsb{word-spacing:-12.668400px;}
.ws59{word-spacing:-12.445200px;}
.ws58{word-spacing:-12.228600px;}
.ws6a{word-spacing:-11.941200px;}
.ws76{word-spacing:-11.733300px;}
.ws19{word-spacing:-11.730600px;}
.ws40{word-spacing:-11.729700px;}
.ws41{word-spacing:-11.224800px;}
.ws6f{word-spacing:-11.014200px;}
.ws5a{word-spacing:-11.007000px;}
.ws6e{word-spacing:-10.296000px;}
.ws50{word-spacing:-9.770400px;}
.ws38{word-spacing:-9.354600px;}
.ws15{word-spacing:-9.351000px;}
.ws5b{word-spacing:-7.416000px;}
.ws28{word-spacing:-7.395000px;}
.wsc{word-spacing:-6.882600px;}
.ws2b{word-spacing:-6.694200px;}
.ws30{word-spacing:-6.691500px;}
.ws3a{word-spacing:-6.189000px;}
.ws47{word-spacing:-5.241600px;}
.wsf{word-spacing:-5.022000px;}
.ws60{word-spacing:-4.733100px;}
.ws55{word-spacing:-3.593400px;}
.ws26{word-spacing:-3.085200px;}
.ws5c{word-spacing:-2.363400px;}
.ws42{word-spacing:-1.149000px;}
.wsd{word-spacing:-1.148400px;}
.ws4d{word-spacing:-0.214200px;}
.ws21{word-spacing:0.000000px;}
.ws4e{word-spacing:1.228500px;}
.ws45{word-spacing:1.449000px;}
.ws29{word-spacing:1.954800px;}
.ws2a{word-spacing:1.962600px;}
.ws3b{word-spacing:2.665800px;}
.ws35{word-spacing:2.889000px;}
.ws71{word-spacing:3.384900px;}
.ws37{word-spacing:3.398400px;}
.ws66{word-spacing:4.824900px;}
.ws61{word-spacing:4.833000px;}
.ws4f{word-spacing:5.548500px;}
.ws25{word-spacing:5.558400px;}
.ws36{word-spacing:6.989700px;}
.ws5f{word-spacing:10.380300px;}
.ws16{word-spacing:16.853400px;}
.ws56{word-spacing:17.078400px;}
.ws10{word-spacing:19.449000px;}
.ws17{word-spacing:22.098000px;}
.ws2e{word-spacing:22.680000px;}
.ws27{word-spacing:27.720000px;}
.ws46{word-spacing:29.314800px;}
.wse{word-spacing:43.927200px;}
.ws48{word-spacing:44.422500px;}
.ws1d{word-spacing:59.547600px;}
.ws1f{word-spacing:59.549400px;}
.ws20{word-spacing:83.521200px;}
.ws1{word-spacing:1037.484900px;}
._c{margin-left:-2.119200px;}
._2{margin-left:-1.107000px;}
._0{width:1.076400px;}
._3{width:16.371900px;}
._1{width:18.968400px;}
._18{width:20.448000px;}
._13{width:21.921300px;}
._21{width:23.938800px;}
._4{width:24.973200px;}
._12{width:27.832800px;}
._5{width:28.872000px;}
._6{width:29.872800px;}
._1f{width:30.951000px;}
._e{width:32.760000px;}
._7{width:35.034600px;}
._1b{width:36.102000px;}
._d{width:37.335600px;}
._17{width:38.880000px;}
._8{width:40.892400px;}
._16{width:43.702800px;}
._14{width:44.899200px;}
._19{width:46.090200px;}
._1e{width:47.223000px;}
._1a{width:48.586500px;}
._22{width:52.115700px;}
._10{width:58.824000px;}
._11{width:63.792000px;}
._1c{width:70.963200px;}
._20{width:76.810200px;}
._9{width:79.776000px;}
._a{width:86.389200px;}
._1d{width:92.288700px;}
._f{width:115.776000px;}
._b{width:119.883600px;}
._15{width:136.155600px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.825000px;}
.y39{bottom:3.840000px;}
.y52{bottom:3.855000px;}
.y40{bottom:3.975000px;}
.y2d{bottom:4.065000px;}
.y5e{bottom:4.711500px;}
.y28{bottom:8.896500px;}
.y4{bottom:12.240000px;}
.y30{bottom:22.965000px;}
.y48{bottom:24.525000px;}
.y38{bottom:24.540000px;}
.y51{bottom:24.555000px;}
.y3f{bottom:24.675000px;}
.y2c{bottom:24.765000px;}
.y5d{bottom:25.411500px;}
.y27{bottom:29.596500px;}
.y2f{bottom:43.665000px;}
.y47{bottom:45.225000px;}
.y37{bottom:45.240000px;}
.y50{bottom:45.255000px;}
.y3e{bottom:45.375000px;}
.y2b{bottom:45.465000px;}
.y5c{bottom:46.111500px;}
.y26{bottom:50.296500px;}
.y24{bottom:50.655000px;}
.y3{bottom:63.975000px;}
.y46{bottom:65.925000px;}
.y36{bottom:65.940000px;}
.y4f{bottom:65.955000px;}
.y2a{bottom:65.986500px;}
.y3d{bottom:66.075000px;}
.y5b{bottom:66.811500px;}
.y25{bottom:70.996500px;}
.y23{bottom:71.355000px;}
.y45{bottom:86.625000px;}
.y35{bottom:86.640000px;}
.y4e{bottom:86.655000px;}
.y3c{bottom:86.775000px;}
.y5a{bottom:87.511500px;}
.y1f{bottom:91.695000px;}
.y22{bottom:92.055000px;}
.y3b{bottom:107.295000px;}
.y44{bottom:107.325000px;}
.y34{bottom:107.340000px;}
.y4d{bottom:107.355000px;}
.y59{bottom:108.211500px;}
.y21{bottom:112.755000px;}
.y29{bottom:113.550000px;}
.yad{bottom:119.596500px;}
.y43{bottom:128.025000px;}
.y33{bottom:128.040000px;}
.y4c{bottom:128.055000px;}
.y58{bottom:128.911500px;}
.y20{bottom:133.275000px;}
.yac{bottom:140.296500px;}
.y61{bottom:141.375000px;}
.y42{bottom:148.725000px;}
.y32{bottom:148.740000px;}
.y4b{bottom:148.755000px;}
.y57{bottom:149.611500px;}
.y60{bottom:162.075000px;}
.y56{bottom:170.311500px;}
.yab{bottom:181.875000px;}
.y5f{bottom:182.596500px;}
.y55{bottom:191.011500px;}
.y1e{bottom:197.100000px;}
.yaa{bottom:202.575000px;}
.y54{bottom:211.711500px;}
.y73{bottom:224.175000px;}
.ya9{bottom:244.336500px;}
.y72{bottom:244.875000px;}
.y53{bottom:262.125000px;}
.ya8{bottom:265.036500px;}
.y71{bottom:265.575000px;}
.y70{bottom:286.275000px;}
.ya7{bottom:306.795000px;}
.y6f{bottom:306.975000px;}
.y84{bottom:320.655000px;}
.y6e{bottom:327.675000px;}
.y83{bottom:341.355000px;}
.y6d{bottom:348.375000px;}
.y82{bottom:362.055000px;}
.y6c{bottom:369.075000px;}
.y97{bottom:371.596500px;}
.y81{bottom:382.755000px;}
.ya6{bottom:389.775000px;}
.y80{bottom:403.455000px;}
.ya5{bottom:410.475000px;}
.y6b{bottom:410.655000px;}
.y96{bottom:413.175000px;}
.y1d{bottom:414.615000px;}
.y7f{bottom:424.155000px;}
.ya4{bottom:431.175000px;}
.y7e{bottom:444.855000px;}
.ya3{bottom:451.875000px;}
.y95{bottom:454.936500px;}
.y1c{bottom:456.375000px;}
.y7d{bottom:486.615000px;}
.y4a{bottom:491.400000px;}
.ya2{bottom:493.636500px;}
.y94{bottom:496.695000px;}
.y1b{bottom:497.955000px;}
.ya1{bottom:514.336500px;}
.y93{bottom:517.396500px;}
.ya0{bottom:535.036500px;}
.y92{bottom:538.096500px;}
.y1a{bottom:539.715000px;}
.y9f{bottom:555.736500px;}
.y91{bottom:558.796500px;}
.y19{bottom:560.415000px;}
.y9e{bottom:576.436500px;}
.y90{bottom:579.496500px;}
.y18{bottom:581.115000px;}
.y8f{bottom:600.195000px;}
.y17{bottom:601.815000px;}
.y9d{bottom:618.195000px;}
.y8e{bottom:620.896500px;}
.y16{bottom:622.515000px;}
.y9c{bottom:638.896500px;}
.y8d{bottom:641.596500px;}
.y15{bottom:643.215000px;}
.y41{bottom:657.750000px;}
.y9b{bottom:659.596500px;}
.y6a{bottom:670.575000px;}
.y8c{bottom:683.175000px;}
.y14{bottom:684.975000px;}
.y69{bottom:691.275000px;}
.y9a{bottom:701.175000px;}
.y13{bottom:705.675000px;}
.y68{bottom:711.975000px;}
.y99{bottom:721.875000px;}
.y67{bottom:732.675000px;}
.y98{bottom:742.575000px;}
.yb9{bottom:744.195000px;}
.y12{bottom:747.255000px;}
.y66{bottom:753.375000px;}
.yb8{bottom:764.895000px;}
.y7c{bottom:765.255000px;}
.y11{bottom:767.955000px;}
.y65{bottom:774.075000px;}
.yb7{bottom:785.596500px;}
.y7b{bottom:785.955000px;}
.y10{bottom:788.655000px;}
.y64{bottom:794.775000px;}
.y7a{bottom:806.655000px;}
.yf{bottom:809.355000px;}
.y3a{bottom:824.100000px;}
.yb6{bottom:827.175000px;}
.y79{bottom:827.355000px;}
.ye{bottom:830.055000px;}
.yb5{bottom:847.875000px;}
.y78{bottom:848.055000px;}
.yd{bottom:850.755000px;}
.yb4{bottom:868.575000px;}
.y77{bottom:868.755000px;}
.yc{bottom:871.455000px;}
.y63{bottom:878.295000px;}
.y76{bottom:889.455000px;}
.yb{bottom:892.155000px;}
.y75{bottom:910.155000px;}
.yb3{bottom:910.336500px;}
.yb2{bottom:931.036500px;}
.ya{bottom:933.555000px;}
.y31{bottom:948.975000px;}
.yb1{bottom:951.736500px;}
.y74{bottom:951.915000px;}
.y9{bottom:952.636500px;}
.y8b{bottom:972.975000px;}
.yb0{bottom:993.495000px;}
.y8a{bottom:993.675000px;}
.yaf{bottom:1014.195000px;}
.y89{bottom:1014.375000px;}
.y8{bottom:1034.536500px;}
.yae{bottom:1034.895000px;}
.y88{bottom:1035.075000px;}
.y87{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y86{bottom:1076.475000px;}
.y85{bottom:1097.175000px;}
.y2e{bottom:1115.250000px;}
.y6{bottom:1117.875000px;}
.y62{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h6{height:44.933789px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h9{height:61.125000px;}
.h8{height:83.550000px;}
.hb{height:124.875000px;}
.h7{height:150.900000px;}
.ha{height:166.275000px;}
.hc{height:229.200000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:105.450000px;}
.w4{width:199.275000px;}
.w5{width:200.250000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xc{left:80.025000px;}
.xb{left:108.975000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:140.220000px;}
.x9{left:146.880000px;}
.x10{left:156.600000px;}
.x2{left:160.560000px;}
.x11{left:165.600000px;}
.x5{left:210.420000px;}
.xd{left:214.350000px;}
.x7{left:227.160000px;}
.x8{left:384.838500px;}
.x6{left:392.938500px;}
.xe{left:413.550000px;}
.xf{left:613.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-49.728000pt;}
.ws1b{word-spacing:-36.032000pt;}
.ws34{word-spacing:-33.925333pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws6{word-spacing:-33.713867pt;}
.ws4{word-spacing:-33.709067pt;}
.ws65{word-spacing:-33.457600pt;}
.ws7{word-spacing:-32.237333pt;}
.ws8{word-spacing:-31.591200pt;}
.ws12{word-spacing:-28.152800pt;}
.ws14{word-spacing:-20.659733pt;}
.ws44{word-spacing:-20.656533pt;}
.ws67{word-spacing:-20.651200pt;}
.ws5{word-spacing:-20.477333pt;}
.ws33{word-spacing:-20.475733pt;}
.ws1c{word-spacing:-20.473600pt;}
.ws2d{word-spacing:-20.472000pt;}
.ws4b{word-spacing:-20.470933pt;}
.ws1a{word-spacing:-20.470400pt;}
.ws53{word-spacing:-20.469867pt;}
.ws43{word-spacing:-20.465600pt;}
.ws6d{word-spacing:-20.215200pt;}
.ws70{word-spacing:-20.212800pt;}
.ws3c{word-spacing:-20.034133pt;}
.ws73{word-spacing:-20.032000pt;}
.ws64{word-spacing:-20.030933pt;}
.ws3{word-spacing:-20.026133pt;}
.ws11{word-spacing:-20.022400pt;}
.ws69{word-spacing:-19.959733pt;}
.ws22{word-spacing:-19.904000pt;}
.ws6b{word-spacing:-19.840000pt;}
.ws57{word-spacing:-19.835200pt;}
.ws52{word-spacing:-19.830400pt;}
.ws54{word-spacing:-19.822400pt;}
.ws31{word-spacing:-19.385600pt;}
.ws32{word-spacing:-19.197333pt;}
.ws1e{word-spacing:-19.193600pt;}
.ws5e{word-spacing:-18.942400pt;}
.ws4a{word-spacing:-18.939200pt;}
.ws78{word-spacing:-18.751200pt;}
.ws75{word-spacing:-18.112000pt;}
.ws62{word-spacing:-18.105600pt;}
.ws3d{word-spacing:-18.104000pt;}
.ws24{word-spacing:-17.666933pt;}
.ws63{word-spacing:-17.660800pt;}
.ws79{word-spacing:-17.658933pt;}
.ws4c{word-spacing:-17.464000pt;}
.ws68{word-spacing:-16.836533pt;}
.ws5d{word-spacing:-16.818400pt;}
.ws77{word-spacing:-16.197333pt;}
.ws39{word-spacing:-16.193333pt;}
.ws74{word-spacing:-15.744000pt;}
.ws2f{word-spacing:-15.355200pt;}
.ws13{word-spacing:-15.354133pt;}
.wsa{word-spacing:-15.100800pt;}
.ws51{word-spacing:-14.902400pt;}
.ws3f{word-spacing:-14.715200pt;}
.ws23{word-spacing:-14.454400pt;}
.ws2c{word-spacing:-13.169600pt;}
.ws72{word-spacing:-12.528800pt;}
.ws18{word-spacing:-12.350933pt;}
.ws3e{word-spacing:-12.144000pt;}
.ws6c{word-spacing:-11.711200pt;}
.ws49{word-spacing:-11.264000pt;}
.wsb{word-spacing:-11.260800pt;}
.ws59{word-spacing:-11.062400pt;}
.ws58{word-spacing:-10.869867pt;}
.ws6a{word-spacing:-10.614400pt;}
.ws76{word-spacing:-10.429600pt;}
.ws19{word-spacing:-10.427200pt;}
.ws40{word-spacing:-10.426400pt;}
.ws41{word-spacing:-9.977600pt;}
.ws6f{word-spacing:-9.790400pt;}
.ws5a{word-spacing:-9.784000pt;}
.ws6e{word-spacing:-9.152000pt;}
.ws50{word-spacing:-8.684800pt;}
.ws38{word-spacing:-8.315200pt;}
.ws15{word-spacing:-8.312000pt;}
.ws5b{word-spacing:-6.592000pt;}
.ws28{word-spacing:-6.573333pt;}
.wsc{word-spacing:-6.117867pt;}
.ws2b{word-spacing:-5.950400pt;}
.ws30{word-spacing:-5.948000pt;}
.ws3a{word-spacing:-5.501333pt;}
.ws47{word-spacing:-4.659200pt;}
.wsf{word-spacing:-4.464000pt;}
.ws60{word-spacing:-4.207200pt;}
.ws55{word-spacing:-3.194133pt;}
.ws26{word-spacing:-2.742400pt;}
.ws5c{word-spacing:-2.100800pt;}
.ws42{word-spacing:-1.021333pt;}
.wsd{word-spacing:-1.020800pt;}
.ws4d{word-spacing:-0.190400pt;}
.ws21{word-spacing:0.000000pt;}
.ws4e{word-spacing:1.092000pt;}
.ws45{word-spacing:1.288000pt;}
.ws29{word-spacing:1.737600pt;}
.ws2a{word-spacing:1.744533pt;}
.ws3b{word-spacing:2.369600pt;}
.ws35{word-spacing:2.568000pt;}
.ws71{word-spacing:3.008800pt;}
.ws37{word-spacing:3.020800pt;}
.ws66{word-spacing:4.288800pt;}
.ws61{word-spacing:4.296000pt;}
.ws4f{word-spacing:4.932000pt;}
.ws25{word-spacing:4.940800pt;}
.ws36{word-spacing:6.213067pt;}
.ws5f{word-spacing:9.226933pt;}
.ws16{word-spacing:14.980800pt;}
.ws56{word-spacing:15.180800pt;}
.ws10{word-spacing:17.288000pt;}
.ws17{word-spacing:19.642667pt;}
.ws2e{word-spacing:20.160000pt;}
.ws27{word-spacing:24.640000pt;}
.ws46{word-spacing:26.057600pt;}
.wse{word-spacing:39.046400pt;}
.ws48{word-spacing:39.486667pt;}
.ws1d{word-spacing:52.931200pt;}
.ws1f{word-spacing:52.932800pt;}
.ws20{word-spacing:74.241067pt;}
.ws1{word-spacing:922.208800pt;}
._c{margin-left:-1.883733pt;}
._2{margin-left:-0.984000pt;}
._0{width:0.956800pt;}
._3{width:14.552800pt;}
._1{width:16.860800pt;}
._18{width:18.176000pt;}
._13{width:19.485600pt;}
._21{width:21.278933pt;}
._4{width:22.198400pt;}
._12{width:24.740267pt;}
._5{width:25.664000pt;}
._6{width:26.553600pt;}
._1f{width:27.512000pt;}
._e{width:29.120000pt;}
._7{width:31.141867pt;}
._1b{width:32.090667pt;}
._d{width:33.187200pt;}
._17{width:34.560000pt;}
._8{width:36.348800pt;}
._16{width:38.846933pt;}
._14{width:39.910400pt;}
._19{width:40.969067pt;}
._1e{width:41.976000pt;}
._1a{width:43.188000pt;}
._22{width:46.325067pt;}
._10{width:52.288000pt;}
._11{width:56.704000pt;}
._1c{width:63.078400pt;}
._20{width:68.275733pt;}
._9{width:70.912000pt;}
._a{width:76.790400pt;}
._1d{width:82.034400pt;}
._f{width:102.912000pt;}
._b{width:106.563200pt;}
._15{width:121.027200pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.400000pt;}
.y39{bottom:3.413333pt;}
.y52{bottom:3.426667pt;}
.y40{bottom:3.533333pt;}
.y2d{bottom:3.613333pt;}
.y5e{bottom:4.188000pt;}
.y28{bottom:7.908000pt;}
.y4{bottom:10.880000pt;}
.y30{bottom:20.413333pt;}
.y48{bottom:21.800000pt;}
.y38{bottom:21.813333pt;}
.y51{bottom:21.826667pt;}
.y3f{bottom:21.933333pt;}
.y2c{bottom:22.013333pt;}
.y5d{bottom:22.588000pt;}
.y27{bottom:26.308000pt;}
.y2f{bottom:38.813333pt;}
.y47{bottom:40.200000pt;}
.y37{bottom:40.213333pt;}
.y50{bottom:40.226667pt;}
.y3e{bottom:40.333333pt;}
.y2b{bottom:40.413333pt;}
.y5c{bottom:40.988000pt;}
.y26{bottom:44.708000pt;}
.y24{bottom:45.026667pt;}
.y3{bottom:56.866667pt;}
.y46{bottom:58.600000pt;}
.y36{bottom:58.613333pt;}
.y4f{bottom:58.626667pt;}
.y2a{bottom:58.654667pt;}
.y3d{bottom:58.733333pt;}
.y5b{bottom:59.388000pt;}
.y25{bottom:63.108000pt;}
.y23{bottom:63.426667pt;}
.y45{bottom:77.000000pt;}
.y35{bottom:77.013333pt;}
.y4e{bottom:77.026667pt;}
.y3c{bottom:77.133333pt;}
.y5a{bottom:77.788000pt;}
.y1f{bottom:81.506667pt;}
.y22{bottom:81.826667pt;}
.y3b{bottom:95.373333pt;}
.y44{bottom:95.400000pt;}
.y34{bottom:95.413333pt;}
.y4d{bottom:95.426667pt;}
.y59{bottom:96.188000pt;}
.y21{bottom:100.226667pt;}
.y29{bottom:100.933333pt;}
.yad{bottom:106.308000pt;}
.y43{bottom:113.800000pt;}
.y33{bottom:113.813333pt;}
.y4c{bottom:113.826667pt;}
.y58{bottom:114.588000pt;}
.y20{bottom:118.466667pt;}
.yac{bottom:124.708000pt;}
.y61{bottom:125.666667pt;}
.y42{bottom:132.200000pt;}
.y32{bottom:132.213333pt;}
.y4b{bottom:132.226667pt;}
.y57{bottom:132.988000pt;}
.y60{bottom:144.066667pt;}
.y56{bottom:151.388000pt;}
.yab{bottom:161.666667pt;}
.y5f{bottom:162.308000pt;}
.y55{bottom:169.788000pt;}
.y1e{bottom:175.200000pt;}
.yaa{bottom:180.066667pt;}
.y54{bottom:188.188000pt;}
.y73{bottom:199.266667pt;}
.ya9{bottom:217.188000pt;}
.y72{bottom:217.666667pt;}
.y53{bottom:233.000000pt;}
.ya8{bottom:235.588000pt;}
.y71{bottom:236.066667pt;}
.y70{bottom:254.466667pt;}
.ya7{bottom:272.706667pt;}
.y6f{bottom:272.866667pt;}
.y84{bottom:285.026667pt;}
.y6e{bottom:291.266667pt;}
.y83{bottom:303.426667pt;}
.y6d{bottom:309.666667pt;}
.y82{bottom:321.826667pt;}
.y6c{bottom:328.066667pt;}
.y97{bottom:330.308000pt;}
.y81{bottom:340.226667pt;}
.ya6{bottom:346.466667pt;}
.y80{bottom:358.626667pt;}
.ya5{bottom:364.866667pt;}
.y6b{bottom:365.026667pt;}
.y96{bottom:367.266667pt;}
.y1d{bottom:368.546667pt;}
.y7f{bottom:377.026667pt;}
.ya4{bottom:383.266667pt;}
.y7e{bottom:395.426667pt;}
.ya3{bottom:401.666667pt;}
.y95{bottom:404.388000pt;}
.y1c{bottom:405.666667pt;}
.y7d{bottom:432.546667pt;}
.y4a{bottom:436.800000pt;}
.ya2{bottom:438.788000pt;}
.y94{bottom:441.506667pt;}
.y1b{bottom:442.626667pt;}
.ya1{bottom:457.188000pt;}
.y93{bottom:459.908000pt;}
.ya0{bottom:475.588000pt;}
.y92{bottom:478.308000pt;}
.y1a{bottom:479.746667pt;}
.y9f{bottom:493.988000pt;}
.y91{bottom:496.708000pt;}
.y19{bottom:498.146667pt;}
.y9e{bottom:512.388000pt;}
.y90{bottom:515.108000pt;}
.y18{bottom:516.546667pt;}
.y8f{bottom:533.506667pt;}
.y17{bottom:534.946667pt;}
.y9d{bottom:549.506667pt;}
.y8e{bottom:551.908000pt;}
.y16{bottom:553.346667pt;}
.y9c{bottom:567.908000pt;}
.y8d{bottom:570.308000pt;}
.y15{bottom:571.746667pt;}
.y41{bottom:584.666667pt;}
.y9b{bottom:586.308000pt;}
.y6a{bottom:596.066667pt;}
.y8c{bottom:607.266667pt;}
.y14{bottom:608.866667pt;}
.y69{bottom:614.466667pt;}
.y9a{bottom:623.266667pt;}
.y13{bottom:627.266667pt;}
.y68{bottom:632.866667pt;}
.y99{bottom:641.666667pt;}
.y67{bottom:651.266667pt;}
.y98{bottom:660.066667pt;}
.yb9{bottom:661.506667pt;}
.y12{bottom:664.226667pt;}
.y66{bottom:669.666667pt;}
.yb8{bottom:679.906667pt;}
.y7c{bottom:680.226667pt;}
.y11{bottom:682.626667pt;}
.y65{bottom:688.066667pt;}
.yb7{bottom:698.308000pt;}
.y7b{bottom:698.626667pt;}
.y10{bottom:701.026667pt;}
.y64{bottom:706.466667pt;}
.y7a{bottom:717.026667pt;}
.yf{bottom:719.426667pt;}
.y3a{bottom:732.533333pt;}
.yb6{bottom:735.266667pt;}
.y79{bottom:735.426667pt;}
.ye{bottom:737.826667pt;}
.yb5{bottom:753.666667pt;}
.y78{bottom:753.826667pt;}
.yd{bottom:756.226667pt;}
.yb4{bottom:772.066667pt;}
.y77{bottom:772.226667pt;}
.yc{bottom:774.626667pt;}
.y63{bottom:780.706667pt;}
.y76{bottom:790.626667pt;}
.yb{bottom:793.026667pt;}
.y75{bottom:809.026667pt;}
.yb3{bottom:809.188000pt;}
.yb2{bottom:827.588000pt;}
.ya{bottom:829.826667pt;}
.y31{bottom:843.533333pt;}
.yb1{bottom:845.988000pt;}
.y74{bottom:846.146667pt;}
.y9{bottom:846.788000pt;}
.y8b{bottom:864.866667pt;}
.yb0{bottom:883.106667pt;}
.y8a{bottom:883.266667pt;}
.yaf{bottom:901.506667pt;}
.y89{bottom:901.666667pt;}
.y8{bottom:919.588000pt;}
.yae{bottom:919.906667pt;}
.y88{bottom:920.066667pt;}
.y87{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y86{bottom:956.866667pt;}
.y85{bottom:975.266667pt;}
.y2e{bottom:991.333333pt;}
.y6{bottom:993.666667pt;}
.y62{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h6{height:39.941146pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h9{height:54.333333pt;}
.h8{height:74.266667pt;}
.hb{height:111.000000pt;}
.h7{height:134.133333pt;}
.ha{height:147.800000pt;}
.hc{height:203.733333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:93.733333pt;}
.w4{width:177.133333pt;}
.w5{width:178.000000pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xc{left:71.133333pt;}
.xb{left:96.866667pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:124.640000pt;}
.x9{left:130.560000pt;}
.x10{left:139.200000pt;}
.x2{left:142.720000pt;}
.x11{left:147.200000pt;}
.x5{left:187.040000pt;}
.xd{left:190.533333pt;}
.x7{left:201.920000pt;}
.x8{left:342.078667pt;}
.x6{left:349.278667pt;}
.xe{left:367.600000pt;}
.xf{left:545.533333pt;}
}




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