
    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_f054042bdc4a19289284f42e.woff')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_5aceb94925f9486befec40f3.woff')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_e269de94ca98b930abcf69c2.woff')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;}
}
.ws5{word-spacing:-55.944000px;}
.ws72{word-spacing:-38.873400px;}
.ws64{word-spacing:-38.869200px;}
.ws7e{word-spacing:-38.668200px;}
.ws74{word-spacing:-38.659200px;}
.ws82{word-spacing:-38.655600px;}
.ws85{word-spacing:-38.652300px;}
.ws38{word-spacing:-38.646600px;}
.ws88{word-spacing:-38.644200px;}
.ws79{word-spacing:-38.643300px;}
.ws9b{word-spacing:-38.422800px;}
.ws6{word-spacing:-38.367900px;}
.ws3{word-spacing:-38.361600px;}
.ws84{word-spacing:-38.166000px;}
.ws97{word-spacing:-38.156400px;}
.ws98{word-spacing:-38.154000px;}
.ws3f{word-spacing:-38.151900px;}
.ws14{word-spacing:-38.151000px;}
.ws76{word-spacing:-38.142000px;}
.ws71{word-spacing:-38.140200px;}
.wsa5{word-spacing:-38.085300px;}
.ws2{word-spacing:-38.081700px;}
.ws6a{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws93{word-spacing:-37.943100px;}
.ws6c{word-spacing:-37.942200px;}
.ws68{word-spacing:-37.940100px;}
.ws4{word-spacing:-37.939200px;}
.ws9d{word-spacing:-37.938600px;}
.ws61{word-spacing:-37.936200px;}
.wsc{word-spacing:-37.935000px;}
.ws7b{word-spacing:-37.934700px;}
.wsf{word-spacing:-37.933800px;}
.ws31{word-spacing:-37.933200px;}
.ws23{word-spacing:-37.930500px;}
.ws99{word-spacing:-37.927800px;}
.ws95{word-spacing:-37.925100px;}
.ws17{word-spacing:-37.919700px;}
.ws8d{word-spacing:-37.728000px;}
.ws34{word-spacing:-37.721400px;}
.ws7{word-spacing:-37.707300px;}
.ws6f{word-spacing:-37.434600px;}
.ws83{word-spacing:-37.346400px;}
.ws54{word-spacing:-37.221000px;}
.wsa2{word-spacing:-37.216800px;}
.ws5a{word-spacing:-37.213200px;}
.ws37{word-spacing:-37.205100px;}
.wsa0{word-spacing:-36.502200px;}
.ws47{word-spacing:-36.499200px;}
.ws92{word-spacing:-35.994300px;}
.ws3b{word-spacing:-35.780100px;}
.ws3e{word-spacing:-35.777700px;}
.ws26{word-spacing:-35.765100px;}
.ws65{word-spacing:-35.758800px;}
.ws4a{word-spacing:-35.055000px;}
.ws53{word-spacing:-34.347300px;}
.ws5b{word-spacing:-34.335000px;}
.ws21{word-spacing:-34.333200px;}
.ws19{word-spacing:-33.838200px;}
.ws41{word-spacing:-33.835200px;}
.ws96{word-spacing:-33.622200px;}
.ws94{word-spacing:-33.621300px;}
.wsa6{word-spacing:-33.616800px;}
.ws63{word-spacing:-33.613200px;}
.ws18{word-spacing:-33.120000px;}
.ws87{word-spacing:-33.110100px;}
.ws42{word-spacing:-32.891400px;}
.ws57{word-spacing:-32.671200px;}
.ws90{word-spacing:-32.541300px;}
.wsa1{word-spacing:-32.400000px;}
.ws5d{word-spacing:-32.177400px;}
.ws59{word-spacing:-32.163000px;}
.ws1a{word-spacing:-31.812000px;}
.ws25{word-spacing:-31.460400px;}
.ws91{word-spacing:-31.456800px;}
.wsa3{word-spacing:-31.248000px;}
.wsb{word-spacing:-31.239000px;}
.ws1b{word-spacing:-31.098600px;}
.ws2e{word-spacing:-30.962400px;}
.ws60{word-spacing:-30.960000px;}
.ws20{word-spacing:-30.934800px;}
.ws7c{word-spacing:-30.735000px;}
.ws7f{word-spacing:-30.724200px;}
.ws32{word-spacing:-30.229200px;}
.ws12{word-spacing:-29.520000px;}
.ws9a{word-spacing:-29.303100px;}
.ws2f{word-spacing:-29.291400px;}
.ws1c{word-spacing:-29.007000px;}
.ws11{word-spacing:-28.794000px;}
.ws8b{word-spacing:-28.590000px;}
.ws9e{word-spacing:-28.582200px;}
.ws56{word-spacing:-28.562400px;}
.ws10{word-spacing:-28.080000px;}
.ws3a{word-spacing:-28.073400px;}
.ws2a{word-spacing:-27.863100px;}
.ws27{word-spacing:-27.851400px;}
.ws46{word-spacing:-27.846000px;}
.ws5e{word-spacing:-27.648000px;}
.ws4c{word-spacing:-27.349200px;}
.ws13{word-spacing:-27.140400px;}
.ws4f{word-spacing:-27.137400px;}
.ws28{word-spacing:-27.135000px;}
.ws22{word-spacing:-26.910000px;}
.ws9f{word-spacing:-26.184600px;}
.ws67{word-spacing:-25.678800px;}
.ws40{word-spacing:-25.676100px;}
.ws39{word-spacing:-25.486200px;}
.ws3c{word-spacing:-25.479000px;}
.ws55{word-spacing:-25.477200px;}
.ws52{word-spacing:-25.196400px;}
.ws1e{word-spacing:-24.978000px;}
.ws45{word-spacing:-24.977400px;}
.ws80{word-spacing:-24.973200px;}
.ws1d{word-spacing:-24.480000px;}
.wsa4{word-spacing:-24.248700px;}
.ws1f{word-spacing:-24.040800px;}
.ws89{word-spacing:-23.544000px;}
.ws2b{word-spacing:-23.542200px;}
.ws3d{word-spacing:-23.531400px;}
.ws2d{word-spacing:-23.040000px;}
.ws9{word-spacing:-23.036400px;}
.ws6e{word-spacing:-22.822200px;}
.ws5c{word-spacing:-22.815000px;}
.ws4e{word-spacing:-22.305000px;}
.ws8c{word-spacing:-22.104000px;}
.ws2c{word-spacing:-21.875700px;}
.ws8{word-spacing:-21.600000px;}
.ws35{word-spacing:-20.880000px;}
.ws33{word-spacing:-20.869200px;}
.ws51{word-spacing:-20.653200px;}
.wsa7{word-spacing:-20.647800px;}
.ws50{word-spacing:-19.938600px;}
.ws5f{word-spacing:-19.931400px;}
.ws7a{word-spacing:-19.918800px;}
.ws49{word-spacing:-19.440000px;}
.ws8a{word-spacing:-17.790000px;}
.ws30{word-spacing:-17.775000px;}
.wsa{word-spacing:-17.773200px;}
.ws16{word-spacing:-17.749200px;}
.ws9c{word-spacing:-17.064000px;}
.ws48{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.549200px;}
.ws43{word-spacing:-16.338600px;}
.ws24{word-spacing:-15.840000px;}
.ws36{word-spacing:-15.621300px;}
.ws86{word-spacing:-15.604200px;}
.ws7d{word-spacing:-14.175000px;}
.ws62{word-spacing:-12.737400px;}
.ws58{word-spacing:-12.515400px;}
.ws44{word-spacing:-11.291700px;}
.ws4d{word-spacing:-9.642600px;}
.ws75{word-spacing:-6.975900px;}
.ws4b{word-spacing:-6.971400px;}
.ws8e{word-spacing:-0.144000px;}
.ws8f{word-spacing:3.816000px;}
.ws66{word-spacing:4.564800px;}
.ws70{word-spacing:5.491800px;}
.ws77{word-spacing:7.426800px;}
.ws81{word-spacing:10.296000px;}
.wsd{word-spacing:15.128100px;}
.wse{word-spacing:15.361200px;}
.ws6b{word-spacing:22.040100px;}
.ws29{word-spacing:56.598300px;}
.ws6d{word-spacing:60.492600px;}
.ws78{word-spacing:83.025000px;}
.ws69{word-spacing:264.680100px;}
.ws73{word-spacing:351.799500px;}
.ws1{word-spacing:1037.484900px;}
._17{margin-left:-2.412000px;}
._4{margin-left:-1.022400px;}
._0{width:1.076400px;}
._1f{width:2.190000px;}
._1{width:18.968400px;}
._10{width:20.133000px;}
._d{width:21.315600px;}
._14{width:22.320000px;}
._7{width:23.418000px;}
._8{width:25.344000px;}
._9{width:26.854200px;}
._6{width:28.423200px;}
._b{width:30.074400px;}
._23{width:31.203000px;}
._a{width:32.216400px;}
._3{width:34.128000px;}
._2{width:35.132400px;}
._f{width:36.244800px;}
._13{width:38.160000px;}
._5{width:39.524400px;}
._c{width:41.403600px;}
._20{width:43.387200px;}
._1a{width:44.640000px;}
._12{width:45.653700px;}
._18{width:47.347200px;}
._1b{width:48.561600px;}
._15{width:51.206400px;}
._21{width:56.808000px;}
._22{width:60.981600px;}
._19{width:62.064000px;}
._1e{width:64.584000px;}
._1c{width:67.464000px;}
._1d{width:79.479900px;}
._11{width:90.058500px;}
._16{width:99.004800px;}
._e{width:113.825700px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:3.840000px;}
.y70{bottom:3.871500px;}
.y67{bottom:3.961500px;}
.y6a{bottom:3.990000px;}
.y73{bottom:4.725000px;}
.y4{bottom:12.240000px;}
.y66{bottom:24.480000px;}
.y69{bottom:24.511500px;}
.y6c{bottom:24.540000px;}
.y6f{bottom:24.571500px;}
.y72{bottom:25.425000px;}
.y3{bottom:63.975000px;}
.y55{bottom:102.315000px;}
.y28{bottom:120.315000px;}
.y54{bottom:123.015000px;}
.y7c{bottom:138.675000px;}
.y96{bottom:140.296500px;}
.y27{bottom:141.015000px;}
.y53{bottom:143.715000px;}
.y7b{bottom:159.375000px;}
.y95{bottom:160.996500px;}
.y26{bottom:161.715000px;}
.y52{bottom:164.236500px;}
.y7a{bottom:180.075000px;}
.y25{bottom:182.415000px;}
.y51{bottom:184.936500px;}
.y94{bottom:202.575000px;}
.y24{bottom:203.115000px;}
.y50{bottom:205.636500px;}
.y79{bottom:221.836500px;}
.y93{bottom:223.275000px;}
.y23{bottom:223.815000px;}
.y4f{bottom:226.336500px;}
.y78{bottom:242.536500px;}
.y4e{bottom:247.036500px;}
.y77{bottom:263.236500px;}
.y92{bottom:265.036500px;}
.y22{bottom:265.575000px;}
.y4d{bottom:267.736500px;}
.y91{bottom:285.736500px;}
.y21{bottom:286.275000px;}
.y4c{bottom:288.436500px;}
.y76{bottom:304.996500px;}
.y20{bottom:306.975000px;}
.y4b{bottom:309.136500px;}
.y75{bottom:325.696500px;}
.y90{bottom:327.496500px;}
.y1f{bottom:327.675000px;}
.y4a{bottom:329.836500px;}
.y74{bottom:346.396500px;}
.y8f{bottom:348.196500px;}
.y1e{bottom:348.375000px;}
.y49{bottom:371.596500px;}
.y71{bottom:384.150000px;}
.y8e{bottom:389.775000px;}
.y1d{bottom:390.136500px;}
.y48{bottom:392.295000px;}
.y8d{bottom:410.475000px;}
.y1c{bottom:410.836500px;}
.y47{bottom:412.996500px;}
.y6e{bottom:427.125000px;}
.y46{bottom:433.696500px;}
.y8c{bottom:452.236500px;}
.y1b{bottom:452.415000px;}
.y45{bottom:454.396500px;}
.y6b{bottom:469.275000px;}
.y8b{bottom:472.936500px;}
.y1a{bottom:473.115000px;}
.y44{bottom:475.096500px;}
.y8a{bottom:493.636500px;}
.y19{bottom:493.815000px;}
.y43{bottom:495.796500px;}
.y68{bottom:511.425000px;}
.y18{bottom:514.515000px;}
.y42{bottom:516.496500px;}
.y17{bottom:535.215000px;}
.y89{bottom:535.396500px;}
.ya8{bottom:535.936500px;}
.y65{bottom:553.575000px;}
.y88{bottom:556.096500px;}
.ya7{bottom:556.636500px;}
.y41{bottom:558.075000px;}
.y16{bottom:576.975000px;}
.ya6{bottom:577.336500px;}
.y40{bottom:578.775000px;}
.y15{bottom:597.675000px;}
.y3f{bottom:599.475000px;}
.y87{bottom:618.375000px;}
.ya5{bottom:619.096500px;}
.y3e{bottom:620.175000px;}
.y64{bottom:620.536500px;}
.y14{bottom:639.436500px;}
.ya4{bottom:639.795000px;}
.y3d{bottom:640.875000px;}
.y63{bottom:641.236500px;}
.y13{bottom:660.136500px;}
.y3c{bottom:661.575000px;}
.y62{bottom:661.936500px;}
.y12{bottom:680.836500px;}
.ya3{bottom:681.375000px;}
.y3b{bottom:682.275000px;}
.y61{bottom:682.636500px;}
.y11{bottom:701.536500px;}
.ya2{bottom:702.075000px;}
.y3a{bottom:702.975000px;}
.y86{bottom:722.596500px;}
.y60{bottom:724.396500px;}
.y10{bottom:743.115000px;}
.y85{bottom:743.295000px;}
.ya1{bottom:743.836500px;}
.y39{bottom:744.736500px;}
.y5f{bottom:745.096500px;}
.yf{bottom:763.815000px;}
.ya0{bottom:764.536500px;}
.y38{bottom:765.436500px;}
.y5e{bottom:765.795000px;}
.y84{bottom:784.875000px;}
.y9f{bottom:785.236500px;}
.y37{bottom:786.136500px;}
.ye{bottom:805.575000px;}
.y36{bottom:806.836500px;}
.y5d{bottom:807.375000px;}
.yd{bottom:826.275000px;}
.y9e{bottom:826.996500px;}
.y5c{bottom:828.075000px;}
.yc{bottom:846.975000px;}
.y83{bottom:847.336500px;}
.y9d{bottom:847.695000px;}
.y35{bottom:848.596500px;}
.y5b{bottom:848.775000px;}
.yb{bottom:867.675000px;}
.y9c{bottom:868.395000px;}
.y34{bottom:869.295000px;}
.y5a{bottom:869.475000px;}
.y82{bottom:889.095000px;}
.y33{bottom:889.995000px;}
.y59{bottom:890.175000px;}
.ya{bottom:909.436500px;}
.y81{bottom:909.795000px;}
.y9b{bottom:909.975000px;}
.y32{bottom:910.695000px;}
.y58{bottom:910.875000px;}
.y9{bottom:930.136500px;}
.y9a{bottom:930.675000px;}
.y57{bottom:931.575000px;}
.y80{bottom:951.375000px;}
.y31{bottom:952.275000px;}
.y7f{bottom:972.075000px;}
.y99{bottom:972.436500px;}
.y30{bottom:972.975000px;}
.y98{bottom:993.136500px;}
.y2f{bottom:993.675000px;}
.y7e{bottom:1013.836500px;}
.y2e{bottom:1014.375000px;}
.y8{bottom:1034.536500px;}
.y97{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y7d{bottom:1055.595000px;}
.y2c{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y2b{bottom:1076.475000px;}
.y56{bottom:1097.175000px;}
.y6{bottom:1117.875000px;}
.y2a{bottom:1118.236500px;}
.y29{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h6{height:42.075000px;}
.h7{height:42.900000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4{width:350.550000px;}
.w3{width:361.500000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xa{left:34.050000px;}
.xb{left:80.070000px;}
.xd{left:84.570000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.x9{left:215.460000px;}
.x6{left:297.360000px;}
.x7{left:308.700000px;}
.x5{left:323.460000px;}
.x8{left:353.700000px;}
.xc{left:395.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws72{word-spacing:-34.554133pt;}
.ws64{word-spacing:-34.550400pt;}
.ws7e{word-spacing:-34.371733pt;}
.ws74{word-spacing:-34.363733pt;}
.ws82{word-spacing:-34.360533pt;}
.ws85{word-spacing:-34.357600pt;}
.ws38{word-spacing:-34.352533pt;}
.ws88{word-spacing:-34.350400pt;}
.ws79{word-spacing:-34.349600pt;}
.ws9b{word-spacing:-34.153600pt;}
.ws6{word-spacing:-34.104800pt;}
.ws3{word-spacing:-34.099200pt;}
.ws84{word-spacing:-33.925333pt;}
.ws97{word-spacing:-33.916800pt;}
.ws98{word-spacing:-33.914667pt;}
.ws3f{word-spacing:-33.912800pt;}
.ws14{word-spacing:-33.912000pt;}
.ws76{word-spacing:-33.904000pt;}
.ws71{word-spacing:-33.902400pt;}
.wsa5{word-spacing:-33.853600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws6a{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws93{word-spacing:-33.727200pt;}
.ws6c{word-spacing:-33.726400pt;}
.ws68{word-spacing:-33.724533pt;}
.ws4{word-spacing:-33.723733pt;}
.ws9d{word-spacing:-33.723200pt;}
.ws61{word-spacing:-33.721067pt;}
.wsc{word-spacing:-33.720000pt;}
.ws7b{word-spacing:-33.719733pt;}
.wsf{word-spacing:-33.718933pt;}
.ws31{word-spacing:-33.718400pt;}
.ws23{word-spacing:-33.716000pt;}
.ws99{word-spacing:-33.713600pt;}
.ws95{word-spacing:-33.711200pt;}
.ws17{word-spacing:-33.706400pt;}
.ws8d{word-spacing:-33.536000pt;}
.ws34{word-spacing:-33.530133pt;}
.ws7{word-spacing:-33.517600pt;}
.ws6f{word-spacing:-33.275200pt;}
.ws83{word-spacing:-33.196800pt;}
.ws54{word-spacing:-33.085333pt;}
.wsa2{word-spacing:-33.081600pt;}
.ws5a{word-spacing:-33.078400pt;}
.ws37{word-spacing:-33.071200pt;}
.wsa0{word-spacing:-32.446400pt;}
.ws47{word-spacing:-32.443733pt;}
.ws92{word-spacing:-31.994933pt;}
.ws3b{word-spacing:-31.804533pt;}
.ws3e{word-spacing:-31.802400pt;}
.ws26{word-spacing:-31.791200pt;}
.ws65{word-spacing:-31.785600pt;}
.ws4a{word-spacing:-31.160000pt;}
.ws53{word-spacing:-30.530933pt;}
.ws5b{word-spacing:-30.520000pt;}
.ws21{word-spacing:-30.518400pt;}
.ws19{word-spacing:-30.078400pt;}
.ws41{word-spacing:-30.075733pt;}
.ws96{word-spacing:-29.886400pt;}
.ws94{word-spacing:-29.885600pt;}
.wsa6{word-spacing:-29.881600pt;}
.ws63{word-spacing:-29.878400pt;}
.ws18{word-spacing:-29.440000pt;}
.ws87{word-spacing:-29.431200pt;}
.ws42{word-spacing:-29.236800pt;}
.ws57{word-spacing:-29.041067pt;}
.ws90{word-spacing:-28.925600pt;}
.wsa1{word-spacing:-28.800000pt;}
.ws5d{word-spacing:-28.602133pt;}
.ws59{word-spacing:-28.589333pt;}
.ws1a{word-spacing:-28.277333pt;}
.ws25{word-spacing:-27.964800pt;}
.ws91{word-spacing:-27.961600pt;}
.wsa3{word-spacing:-27.776000pt;}
.wsb{word-spacing:-27.768000pt;}
.ws1b{word-spacing:-27.643200pt;}
.ws2e{word-spacing:-27.522133pt;}
.ws60{word-spacing:-27.520000pt;}
.ws20{word-spacing:-27.497600pt;}
.ws7c{word-spacing:-27.320000pt;}
.ws7f{word-spacing:-27.310400pt;}
.ws32{word-spacing:-26.870400pt;}
.ws12{word-spacing:-26.240000pt;}
.ws9a{word-spacing:-26.047200pt;}
.ws2f{word-spacing:-26.036800pt;}
.ws1c{word-spacing:-25.784000pt;}
.ws11{word-spacing:-25.594667pt;}
.ws8b{word-spacing:-25.413333pt;}
.ws9e{word-spacing:-25.406400pt;}
.ws56{word-spacing:-25.388800pt;}
.ws10{word-spacing:-24.960000pt;}
.ws3a{word-spacing:-24.954133pt;}
.ws2a{word-spacing:-24.767200pt;}
.ws27{word-spacing:-24.756800pt;}
.ws46{word-spacing:-24.752000pt;}
.ws5e{word-spacing:-24.576000pt;}
.ws4c{word-spacing:-24.310400pt;}
.ws13{word-spacing:-24.124800pt;}
.ws4f{word-spacing:-24.122133pt;}
.ws28{word-spacing:-24.120000pt;}
.ws22{word-spacing:-23.920000pt;}
.ws9f{word-spacing:-23.275200pt;}
.ws67{word-spacing:-22.825600pt;}
.ws40{word-spacing:-22.823200pt;}
.ws39{word-spacing:-22.654400pt;}
.ws3c{word-spacing:-22.648000pt;}
.ws55{word-spacing:-22.646400pt;}
.ws52{word-spacing:-22.396800pt;}
.ws1e{word-spacing:-22.202667pt;}
.ws45{word-spacing:-22.202133pt;}
.ws80{word-spacing:-22.198400pt;}
.ws1d{word-spacing:-21.760000pt;}
.wsa4{word-spacing:-21.554400pt;}
.ws1f{word-spacing:-21.369600pt;}
.ws89{word-spacing:-20.928000pt;}
.ws2b{word-spacing:-20.926400pt;}
.ws3d{word-spacing:-20.916800pt;}
.ws2d{word-spacing:-20.480000pt;}
.ws9{word-spacing:-20.476800pt;}
.ws6e{word-spacing:-20.286400pt;}
.ws5c{word-spacing:-20.280000pt;}
.ws4e{word-spacing:-19.826667pt;}
.ws8c{word-spacing:-19.648000pt;}
.ws2c{word-spacing:-19.445067pt;}
.ws8{word-spacing:-19.200000pt;}
.ws35{word-spacing:-18.560000pt;}
.ws33{word-spacing:-18.550400pt;}
.ws51{word-spacing:-18.358400pt;}
.wsa7{word-spacing:-18.353600pt;}
.ws50{word-spacing:-17.723200pt;}
.ws5f{word-spacing:-17.716800pt;}
.ws7a{word-spacing:-17.705600pt;}
.ws49{word-spacing:-17.280000pt;}
.ws8a{word-spacing:-15.813333pt;}
.ws30{word-spacing:-15.800000pt;}
.wsa{word-spacing:-15.798400pt;}
.ws16{word-spacing:-15.777067pt;}
.ws9c{word-spacing:-15.168000pt;}
.ws48{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.710400pt;}
.ws43{word-spacing:-14.523200pt;}
.ws24{word-spacing:-14.080000pt;}
.ws36{word-spacing:-13.885600pt;}
.ws86{word-spacing:-13.870400pt;}
.ws7d{word-spacing:-12.600000pt;}
.ws62{word-spacing:-11.322133pt;}
.ws58{word-spacing:-11.124800pt;}
.ws44{word-spacing:-10.037067pt;}
.ws4d{word-spacing:-8.571200pt;}
.ws75{word-spacing:-6.200800pt;}
.ws4b{word-spacing:-6.196800pt;}
.ws8e{word-spacing:-0.128000pt;}
.ws8f{word-spacing:3.392000pt;}
.ws66{word-spacing:4.057600pt;}
.ws70{word-spacing:4.881600pt;}
.ws77{word-spacing:6.601600pt;}
.ws81{word-spacing:9.152000pt;}
.wsd{word-spacing:13.447200pt;}
.wse{word-spacing:13.654400pt;}
.ws6b{word-spacing:19.591200pt;}
.ws29{word-spacing:50.309600pt;}
.ws6d{word-spacing:53.771200pt;}
.ws78{word-spacing:73.800000pt;}
.ws69{word-spacing:235.271200pt;}
.ws73{word-spacing:312.710667pt;}
.ws1{word-spacing:922.208800pt;}
._17{margin-left:-2.144000pt;}
._4{margin-left:-0.908800pt;}
._0{width:0.956800pt;}
._1f{width:1.946667pt;}
._1{width:16.860800pt;}
._10{width:17.896000pt;}
._d{width:18.947200pt;}
._14{width:19.840000pt;}
._7{width:20.816000pt;}
._8{width:22.528000pt;}
._9{width:23.870400pt;}
._6{width:25.265067pt;}
._b{width:26.732800pt;}
._23{width:27.736000pt;}
._a{width:28.636800pt;}
._3{width:30.336000pt;}
._2{width:31.228800pt;}
._f{width:32.217600pt;}
._13{width:33.920000pt;}
._5{width:35.132800pt;}
._c{width:36.803200pt;}
._20{width:38.566400pt;}
._1a{width:39.680000pt;}
._12{width:40.581067pt;}
._18{width:42.086400pt;}
._1b{width:43.165867pt;}
._15{width:45.516800pt;}
._21{width:50.496000pt;}
._22{width:54.205867pt;}
._19{width:55.168000pt;}
._1e{width:57.408000pt;}
._1c{width:59.968000pt;}
._1d{width:70.648800pt;}
._11{width:80.052000pt;}
._16{width:88.004267pt;}
._e{width:101.178400pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:3.413333pt;}
.y70{bottom:3.441333pt;}
.y67{bottom:3.521333pt;}
.y6a{bottom:3.546667pt;}
.y73{bottom:4.200000pt;}
.y4{bottom:10.880000pt;}
.y66{bottom:21.760000pt;}
.y69{bottom:21.788000pt;}
.y6c{bottom:21.813333pt;}
.y6f{bottom:21.841333pt;}
.y72{bottom:22.600000pt;}
.y3{bottom:56.866667pt;}
.y55{bottom:90.946667pt;}
.y28{bottom:106.946667pt;}
.y54{bottom:109.346667pt;}
.y7c{bottom:123.266667pt;}
.y96{bottom:124.708000pt;}
.y27{bottom:125.346667pt;}
.y53{bottom:127.746667pt;}
.y7b{bottom:141.666667pt;}
.y95{bottom:143.108000pt;}
.y26{bottom:143.746667pt;}
.y52{bottom:145.988000pt;}
.y7a{bottom:160.066667pt;}
.y25{bottom:162.146667pt;}
.y51{bottom:164.388000pt;}
.y94{bottom:180.066667pt;}
.y24{bottom:180.546667pt;}
.y50{bottom:182.788000pt;}
.y79{bottom:197.188000pt;}
.y93{bottom:198.466667pt;}
.y23{bottom:198.946667pt;}
.y4f{bottom:201.188000pt;}
.y78{bottom:215.588000pt;}
.y4e{bottom:219.588000pt;}
.y77{bottom:233.988000pt;}
.y92{bottom:235.588000pt;}
.y22{bottom:236.066667pt;}
.y4d{bottom:237.988000pt;}
.y91{bottom:253.988000pt;}
.y21{bottom:254.466667pt;}
.y4c{bottom:256.388000pt;}
.y76{bottom:271.108000pt;}
.y20{bottom:272.866667pt;}
.y4b{bottom:274.788000pt;}
.y75{bottom:289.508000pt;}
.y90{bottom:291.108000pt;}
.y1f{bottom:291.266667pt;}
.y4a{bottom:293.188000pt;}
.y74{bottom:307.908000pt;}
.y8f{bottom:309.508000pt;}
.y1e{bottom:309.666667pt;}
.y49{bottom:330.308000pt;}
.y71{bottom:341.466667pt;}
.y8e{bottom:346.466667pt;}
.y1d{bottom:346.788000pt;}
.y48{bottom:348.706667pt;}
.y8d{bottom:364.866667pt;}
.y1c{bottom:365.188000pt;}
.y47{bottom:367.108000pt;}
.y6e{bottom:379.666667pt;}
.y46{bottom:385.508000pt;}
.y8c{bottom:401.988000pt;}
.y1b{bottom:402.146667pt;}
.y45{bottom:403.908000pt;}
.y6b{bottom:417.133333pt;}
.y8b{bottom:420.388000pt;}
.y1a{bottom:420.546667pt;}
.y44{bottom:422.308000pt;}
.y8a{bottom:438.788000pt;}
.y19{bottom:438.946667pt;}
.y43{bottom:440.708000pt;}
.y68{bottom:454.600000pt;}
.y18{bottom:457.346667pt;}
.y42{bottom:459.108000pt;}
.y17{bottom:475.746667pt;}
.y89{bottom:475.908000pt;}
.ya8{bottom:476.388000pt;}
.y65{bottom:492.066667pt;}
.y88{bottom:494.308000pt;}
.ya7{bottom:494.788000pt;}
.y41{bottom:496.066667pt;}
.y16{bottom:512.866667pt;}
.ya6{bottom:513.188000pt;}
.y40{bottom:514.466667pt;}
.y15{bottom:531.266667pt;}
.y3f{bottom:532.866667pt;}
.y87{bottom:549.666667pt;}
.ya5{bottom:550.308000pt;}
.y3e{bottom:551.266667pt;}
.y64{bottom:551.588000pt;}
.y14{bottom:568.388000pt;}
.ya4{bottom:568.706667pt;}
.y3d{bottom:569.666667pt;}
.y63{bottom:569.988000pt;}
.y13{bottom:586.788000pt;}
.y3c{bottom:588.066667pt;}
.y62{bottom:588.388000pt;}
.y12{bottom:605.188000pt;}
.ya3{bottom:605.666667pt;}
.y3b{bottom:606.466667pt;}
.y61{bottom:606.788000pt;}
.y11{bottom:623.588000pt;}
.ya2{bottom:624.066667pt;}
.y3a{bottom:624.866667pt;}
.y86{bottom:642.308000pt;}
.y60{bottom:643.908000pt;}
.y10{bottom:660.546667pt;}
.y85{bottom:660.706667pt;}
.ya1{bottom:661.188000pt;}
.y39{bottom:661.988000pt;}
.y5f{bottom:662.308000pt;}
.yf{bottom:678.946667pt;}
.ya0{bottom:679.588000pt;}
.y38{bottom:680.388000pt;}
.y5e{bottom:680.706667pt;}
.y84{bottom:697.666667pt;}
.y9f{bottom:697.988000pt;}
.y37{bottom:698.788000pt;}
.ye{bottom:716.066667pt;}
.y36{bottom:717.188000pt;}
.y5d{bottom:717.666667pt;}
.yd{bottom:734.466667pt;}
.y9e{bottom:735.108000pt;}
.y5c{bottom:736.066667pt;}
.yc{bottom:752.866667pt;}
.y83{bottom:753.188000pt;}
.y9d{bottom:753.506667pt;}
.y35{bottom:754.308000pt;}
.y5b{bottom:754.466667pt;}
.yb{bottom:771.266667pt;}
.y9c{bottom:771.906667pt;}
.y34{bottom:772.706667pt;}
.y5a{bottom:772.866667pt;}
.y82{bottom:790.306667pt;}
.y33{bottom:791.106667pt;}
.y59{bottom:791.266667pt;}
.ya{bottom:808.388000pt;}
.y81{bottom:808.706667pt;}
.y9b{bottom:808.866667pt;}
.y32{bottom:809.506667pt;}
.y58{bottom:809.666667pt;}
.y9{bottom:826.788000pt;}
.y9a{bottom:827.266667pt;}
.y57{bottom:828.066667pt;}
.y80{bottom:845.666667pt;}
.y31{bottom:846.466667pt;}
.y7f{bottom:864.066667pt;}
.y99{bottom:864.388000pt;}
.y30{bottom:864.866667pt;}
.y98{bottom:882.788000pt;}
.y2f{bottom:883.266667pt;}
.y7e{bottom:901.188000pt;}
.y2e{bottom:901.666667pt;}
.y8{bottom:919.588000pt;}
.y97{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y7d{bottom:938.306667pt;}
.y2c{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y2b{bottom:956.866667pt;}
.y56{bottom:975.266667pt;}
.y6{bottom:993.666667pt;}
.y2a{bottom:993.988000pt;}
.y29{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h6{height:37.400000pt;}
.h7{height:38.133333pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4{width:311.600000pt;}
.w3{width:321.333333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xa{left:30.266667pt;}
.xb{left:71.173333pt;}
.xd{left:75.173333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.x9{left:191.520000pt;}
.x6{left:264.320000pt;}
.x7{left:274.400000pt;}
.x5{left:287.520000pt;}
.x8{left:314.400000pt;}
.xc{left:351.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; }
  