
    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_97142e724f3b34aa2f569bfb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_d7a554ba45b1db5105017423.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_c9de62d1862826886b21ba19.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.640000px;}
.ls2{letter-spacing:18.000000px;}
.ls4{letter-spacing:35.640000px;}
.ls3{letter-spacing:64.800000px;}
.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;}
}
.ws36{word-spacing:-55.944000px;}
.ws69{word-spacing:-38.874600px;}
.ws74{word-spacing:-38.670000px;}
.ws54{word-spacing:-38.668200px;}
.ws4d{word-spacing:-38.658000px;}
.ws51{word-spacing:-38.656800px;}
.ws59{word-spacing:-38.648400px;}
.ws8b{word-spacing:-38.646900px;}
.ws5c{word-spacing:-38.644200px;}
.ws18{word-spacing:-38.454000px;}
.ws17{word-spacing:-38.451300px;}
.ws85{word-spacing:-38.448600px;}
.ws4{word-spacing:-38.448000px;}
.ws65{word-spacing:-38.444400px;}
.ws8c{word-spacing:-38.442000px;}
.ws60{word-spacing:-38.430000px;}
.ws56{word-spacing:-38.376000px;}
.ws3c{word-spacing:-38.164200px;}
.ws42{word-spacing:-38.161500px;}
.ws26{word-spacing:-38.160000px;}
.ws4e{word-spacing:-38.159700px;}
.ws6a{word-spacing:-38.158200px;}
.ws78{word-spacing:-38.157300px;}
.ws31{word-spacing:-38.154600px;}
.ws6d{word-spacing:-38.154000px;}
.ws73{word-spacing:-38.150400px;}
.ws48{word-spacing:-38.136600px;}
.ws3f{word-spacing:-38.094000px;}
.ws5{word-spacing:-38.088000px;}
.ws2{word-spacing:-38.081700px;}
.ws15{word-spacing:-38.079000px;}
.ws57{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws37{word-spacing:-37.942800px;}
.ws32{word-spacing:-37.942200px;}
.ws41{word-spacing:-37.941300px;}
.ws3{word-spacing:-37.939500px;}
.ws6b{word-spacing:-37.939200px;}
.ws22{word-spacing:-37.938600px;}
.ws40{word-spacing:-37.936800px;}
.ws53{word-spacing:-37.934400px;}
.ws7e{word-spacing:-37.933200px;}
.wsa{word-spacing:-37.931400px;}
.ws66{word-spacing:-37.928100px;}
.ws55{word-spacing:-37.868400px;}
.ws62{word-spacing:-37.827600px;}
.ws16{word-spacing:-37.728000px;}
.ws76{word-spacing:-37.724400px;}
.ws9{word-spacing:-37.715400px;}
.ws7f{word-spacing:-37.656000px;}
.ws58{word-spacing:-37.650000px;}
.ws6e{word-spacing:-37.647900px;}
.ws21{word-spacing:-37.440000px;}
.ws75{word-spacing:-37.432800px;}
.ws8a{word-spacing:-37.423800px;}
.ws5f{word-spacing:-37.208700px;}
.ws72{word-spacing:-37.202400px;}
.wsb{word-spacing:-37.008000px;}
.ws3a{word-spacing:-36.498000px;}
.ws23{word-spacing:-36.363600px;}
.ws3b{word-spacing:-35.568000px;}
.ws1f{word-spacing:-35.064000px;}
.ws64{word-spacing:-35.040000px;}
.ws83{word-spacing:-34.482000px;}
.ws7c{word-spacing:-34.344000px;}
.wse{word-spacing:-34.340400px;}
.ws35{word-spacing:-34.128000px;}
.ws86{word-spacing:-34.010700px;}
.ws2d{word-spacing:-33.622200px;}
.ws5a{word-spacing:-33.120000px;}
.ws2a{word-spacing:-32.904000px;}
.ws10{word-spacing:-32.898000px;}
.ws1d{word-spacing:-32.688000px;}
.ws20{word-spacing:-32.400000px;}
.ws71{word-spacing:-32.190000px;}
.ws3e{word-spacing:-32.184000px;}
.ws7d{word-spacing:-31.669500px;}
.ws12{word-spacing:-31.464000px;}
.ws8{word-spacing:-31.456800px;}
.ws81{word-spacing:-31.452300px;}
.wsf{word-spacing:-30.744000px;}
.ws2b{word-spacing:-30.742200px;}
.ws39{word-spacing:-30.519000px;}
.ws1c{word-spacing:-30.240000px;}
.ws5e{word-spacing:-30.024000px;}
.ws33{word-spacing:-30.022800px;}
.ws63{word-spacing:-30.022200px;}
.ws1e{word-spacing:-30.016800px;}
.wsc{word-spacing:-29.808000px;}
.ws34{word-spacing:-29.088000px;}
.ws5d{word-spacing:-28.584000px;}
.ws4f{word-spacing:-28.086000px;}
.ws1b{word-spacing:-27.144000px;}
.ws7b{word-spacing:-26.928000px;}
.ws61{word-spacing:-26.632800px;}
.ws5b{word-spacing:-26.403000px;}
.ws67{word-spacing:-25.702800px;}
.ws68{word-spacing:-25.700400px;}
.ws50{word-spacing:-25.206000px;}
.ws4a{word-spacing:-25.200000px;}
.ws45{word-spacing:-24.984000px;}
.ws43{word-spacing:-24.978600px;}
.ws44{word-spacing:-24.474000px;}
.ws11{word-spacing:-24.266400px;}
.ws6f{word-spacing:-24.043200px;}
.ws6c{word-spacing:-23.747400px;}
.ws2f{word-spacing:-23.320800px;}
.ws46{word-spacing:-22.824000px;}
.ws79{word-spacing:-22.305600px;}
.wsd{word-spacing:-22.110000px;}
.ws4c{word-spacing:-20.668200px;}
.ws28{word-spacing:-20.664000px;}
.ws70{word-spacing:-20.646000px;}
.ws52{word-spacing:-19.944000px;}
.ws30{word-spacing:-19.440000px;}
.ws27{word-spacing:-19.224000px;}
.ws7a{word-spacing:-19.220400px;}
.ws2e{word-spacing:-19.215600px;}
.ws77{word-spacing:-18.720000px;}
.ws19{word-spacing:-17.280000px;}
.ws14{word-spacing:-17.269200px;}
.ws13{word-spacing:-16.835400px;}
.ws87{word-spacing:-16.010700px;}
.ws29{word-spacing:-14.910000px;}
.ws2c{word-spacing:-13.968000px;}
.ws1a{word-spacing:-12.744000px;}
.ws89{word-spacing:-12.662100px;}
.ws4b{word-spacing:-10.584000px;}
.ws25{word-spacing:-8.640000px;}
.ws84{word-spacing:-6.261300px;}
.ws88{word-spacing:-6.252300px;}
.ws3d{word-spacing:-4.814400px;}
.ws49{word-spacing:-0.726000px;}
.ws24{word-spacing:0.000000px;}
.ws47{word-spacing:1.656000px;}
.ws7{word-spacing:7.434600px;}
.ws80{word-spacing:7.745700px;}
.ws6{word-spacing:8.145300px;}
.ws38{word-spacing:11.736000px;}
.ws82{word-spacing:25.745700px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.012200px;}
._0{width:1.076400px;}
._1e{width:10.800000px;}
._d{width:17.346000px;}
._1{width:18.968400px;}
._a{width:20.310000px;}
._15{width:21.412200px;}
._5{width:22.882800px;}
._6{width:24.684000px;}
._3{width:25.776000px;}
._c{width:26.784000px;}
._13{width:28.083600px;}
._b{width:29.808000px;}
._19{width:31.752000px;}
._7{width:32.769000px;}
._17{width:34.219200px;}
._10{width:36.507600px;}
._f{width:37.872000px;}
._12{width:38.929200px;}
._9{width:40.170000px;}
._8{width:41.315400px;}
._11{width:43.416000px;}
._1d{width:44.722800px;}
._1a{width:46.656000px;}
._e{width:48.306000px;}
._1b{width:50.789100px;}
._16{width:52.200000px;}
._18{width:56.376000px;}
._2{width:65.020500px;}
._14{width:68.911800px;}
._1c{width:100.881600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:46.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y27{bottom:127.696500px;}
.y26{bottom:169.275000px;}
.yb2{bottom:189.975000px;}
.y48{bottom:204.196500px;}
.y64{bottom:204.736500px;}
.yb1{bottom:210.675000px;}
.y83{bottom:211.036500px;}
.y25{bottom:224.536500px;}
.y47{bottom:224.896500px;}
.y63{bottom:225.436500px;}
.yb0{bottom:231.375000px;}
.y62{bottom:246.136500px;}
.y82{bottom:246.496500px;}
.y99{bottom:247.575000px;}
.y24{bottom:266.115000px;}
.y46{bottom:266.475000px;}
.y61{bottom:266.836500px;}
.y81{bottom:267.196500px;}
.y98{bottom:268.275000px;}
.yaf{bottom:273.136500px;}
.y45{bottom:287.175000px;}
.y80{bottom:287.896500px;}
.y97{bottom:288.975000px;}
.y23{bottom:307.875000px;}
.y60{bottom:308.596500px;}
.y96{bottom:309.675000px;}
.yae{bottom:314.715000px;}
.y22{bottom:328.575000px;}
.y7f{bottom:329.475000px;}
.y95{bottom:330.375000px;}
.yad{bottom:338.295000px;}
.y21{bottom:349.275000px;}
.y5f{bottom:350.175000px;}
.y94{bottom:351.075000px;}
.yac{bottom:358.996500px;}
.y20{bottom:369.975000px;}
.y44{bottom:370.336500px;}
.y5e{bottom:370.875000px;}
.y7e{bottom:371.236500px;}
.y93{bottom:371.775000px;}
.yab{bottom:382.396500px;}
.y1f{bottom:390.675000px;}
.y43{bottom:391.036500px;}
.y5d{bottom:391.575000px;}
.y92{bottom:392.475000px;}
.yaa{bottom:403.275000px;}
.y1e{bottom:411.375000px;}
.y42{bottom:411.736500px;}
.y7d{bottom:412.996500px;}
.y91{bottom:413.175000px;}
.ya9{bottom:426.675000px;}
.y1d{bottom:432.075000px;}
.y41{bottom:432.436500px;}
.y5c{bottom:433.336500px;}
.y7c{bottom:433.696500px;}
.y90{bottom:433.875000px;}
.ya8{bottom:450.075000px;}
.y1c{bottom:452.775000px;}
.y40{bottom:453.136500px;}
.y5b{bottom:454.036500px;}
.y8f{bottom:454.575000px;}
.ya7{bottom:470.775000px;}
.y1b{bottom:473.475000px;}
.y5a{bottom:474.736500px;}
.y7b{bottom:475.275000px;}
.ya6{bottom:494.355000px;}
.y3f{bottom:494.896500px;}
.y59{bottom:495.436500px;}
.y8e{bottom:495.975000px;}
.ya5{bottom:515.055000px;}
.y1a{bottom:515.236500px;}
.y58{bottom:516.136500px;}
.y8d{bottom:516.675000px;}
.y7a{bottom:517.036500px;}
.y3e{bottom:536.475000px;}
.y57{bottom:536.836500px;}
.y8c{bottom:537.375000px;}
.y79{bottom:537.736500px;}
.ya4{bottom:538.636500px;}
.y19{bottom:556.815000px;}
.y56{bottom:557.536500px;}
.y8b{bottom:558.075000px;}
.y78{bottom:558.436500px;}
.ya3{bottom:559.336500px;}
.y3d{bottom:578.236500px;}
.y8a{bottom:578.775000px;}
.y77{bottom:579.136500px;}
.ya2{bottom:582.736500px;}
.y18{bottom:598.575000px;}
.y55{bottom:598.936500px;}
.ya1{bottom:603.436500px;}
.y17{bottom:619.275000px;}
.y3c{bottom:619.996500px;}
.y89{bottom:620.536500px;}
.y76{bottom:620.896500px;}
.ya0{bottom:627.015000px;}
.y16{bottom:639.975000px;}
.y54{bottom:640.695000px;}
.y88{bottom:641.236500px;}
.y75{bottom:641.596500px;}
.y9f{bottom:650.415000px;}
.y15{bottom:660.675000px;}
.y3b{bottom:661.575000px;}
.y87{bottom:661.936500px;}
.y74{bottom:662.295000px;}
.y9e{bottom:671.115000px;}
.y14{bottom:681.375000px;}
.y3a{bottom:682.275000px;}
.y73{bottom:682.996500px;}
.y9d{bottom:694.695000px;}
.y13{bottom:702.075000px;}
.y39{bottom:702.975000px;}
.y72{bottom:703.695000px;}
.y9c{bottom:718.275000px;}
.y38{bottom:723.675000px;}
.y71{bottom:724.396500px;}
.y9b{bottom:741.675000px;}
.y12{bottom:743.836500px;}
.y37{bottom:744.375000px;}
.y70{bottom:745.096500px;}
.y9a{bottom:762.375000px;}
.y11{bottom:764.536500px;}
.y36{bottom:765.075000px;}
.y6f{bottom:765.795000px;}
.y10{bottom:785.236500px;}
.y53{bottom:785.775000px;}
.y6e{bottom:786.496500px;}
.yf{bottom:805.936500px;}
.y35{bottom:806.836500px;}
.y6d{bottom:807.195000px;}
.ye{bottom:826.636500px;}
.y52{bottom:827.536500px;}
.y6c{bottom:827.895000px;}
.yd{bottom:847.336500px;}
.y51{bottom:848.236500px;}
.y34{bottom:848.596500px;}
.yc{bottom:868.036500px;}
.y50{bottom:868.936500px;}
.y86{bottom:869.295000px;}
.y4f{bottom:889.636500px;}
.y85{bottom:889.995000px;}
.y33{bottom:890.175000px;}
.yb{bottom:909.615000px;}
.y84{bottom:910.695000px;}
.y32{bottom:910.875000px;}
.y4e{bottom:931.395000px;}
.y31{bottom:931.575000px;}
.ya{bottom:951.375000px;}
.y4d{bottom:952.095000px;}
.y30{bottom:952.275000px;}
.y9{bottom:972.075000px;}
.y4c{bottom:972.795000px;}
.y2f{bottom:972.975000px;}
.y6b{bottom:973.336500px;}
.y8{bottom:992.775000px;}
.y4b{bottom:993.495000px;}
.y2e{bottom:993.675000px;}
.y6a{bottom:994.036500px;}
.y4a{bottom:1014.195000px;}
.y2d{bottom:1014.375000px;}
.y69{bottom:1014.736500px;}
.y7{bottom:1034.536500px;}
.y2c{bottom:1035.075000px;}
.y68{bottom:1035.436500px;}
.y6{bottom:1055.236500px;}
.y2b{bottom:1055.775000px;}
.y67{bottom:1056.136500px;}
.y2a{bottom:1076.475000px;}
.y66{bottom:1076.836500px;}
.y29{bottom:1097.175000px;}
.y65{bottom:1097.536500px;}
.y49{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h6{height:41.247070px;}
.h4{height:63.457031px;}
.h2{height:63.949219px;}
.h5{height:65.001070px;}
.h7{height:65.721070px;}
.h9{height:65.727070px;}
.h8{height:66.040992px;}
.ha{height:74.297607px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x8{left:53.100000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:129.600000px;}
.x6{left:139.680000px;}
.xb{left:143.100000px;}
.x9{left:159.300000px;}
.x2{left:160.560000px;}
.x7{left:295.560000px;}
.x5{left:388.800000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.680000pt;}
.ls2{letter-spacing:16.000000pt;}
.ls4{letter-spacing:31.680000pt;}
.ls3{letter-spacing:57.600000pt;}
.ws36{word-spacing:-49.728000pt;}
.ws69{word-spacing:-34.555200pt;}
.ws74{word-spacing:-34.373333pt;}
.ws54{word-spacing:-34.371733pt;}
.ws4d{word-spacing:-34.362667pt;}
.ws51{word-spacing:-34.361600pt;}
.ws59{word-spacing:-34.354133pt;}
.ws8b{word-spacing:-34.352800pt;}
.ws5c{word-spacing:-34.350400pt;}
.ws18{word-spacing:-34.181333pt;}
.ws17{word-spacing:-34.178933pt;}
.ws85{word-spacing:-34.176533pt;}
.ws4{word-spacing:-34.176000pt;}
.ws65{word-spacing:-34.172800pt;}
.ws8c{word-spacing:-34.170667pt;}
.ws60{word-spacing:-34.160000pt;}
.ws56{word-spacing:-34.112000pt;}
.ws3c{word-spacing:-33.923733pt;}
.ws42{word-spacing:-33.921333pt;}
.ws26{word-spacing:-33.920000pt;}
.ws4e{word-spacing:-33.919733pt;}
.ws6a{word-spacing:-33.918400pt;}
.ws78{word-spacing:-33.917600pt;}
.ws31{word-spacing:-33.915200pt;}
.ws6d{word-spacing:-33.914667pt;}
.ws73{word-spacing:-33.911467pt;}
.ws48{word-spacing:-33.899200pt;}
.ws3f{word-spacing:-33.861333pt;}
.ws5{word-spacing:-33.856000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws15{word-spacing:-33.848000pt;}
.ws57{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws37{word-spacing:-33.726933pt;}
.ws32{word-spacing:-33.726400pt;}
.ws41{word-spacing:-33.725600pt;}
.ws3{word-spacing:-33.724000pt;}
.ws6b{word-spacing:-33.723733pt;}
.ws22{word-spacing:-33.723200pt;}
.ws40{word-spacing:-33.721600pt;}
.ws53{word-spacing:-33.719467pt;}
.ws7e{word-spacing:-33.718400pt;}
.wsa{word-spacing:-33.716800pt;}
.ws66{word-spacing:-33.713867pt;}
.ws55{word-spacing:-33.660800pt;}
.ws62{word-spacing:-33.624533pt;}
.ws16{word-spacing:-33.536000pt;}
.ws76{word-spacing:-33.532800pt;}
.ws9{word-spacing:-33.524800pt;}
.ws7f{word-spacing:-33.472000pt;}
.ws58{word-spacing:-33.466667pt;}
.ws6e{word-spacing:-33.464800pt;}
.ws21{word-spacing:-33.280000pt;}
.ws75{word-spacing:-33.273600pt;}
.ws8a{word-spacing:-33.265600pt;}
.ws5f{word-spacing:-33.074400pt;}
.ws72{word-spacing:-33.068800pt;}
.wsb{word-spacing:-32.896000pt;}
.ws3a{word-spacing:-32.442667pt;}
.ws23{word-spacing:-32.323200pt;}
.ws3b{word-spacing:-31.616000pt;}
.ws1f{word-spacing:-31.168000pt;}
.ws64{word-spacing:-31.146667pt;}
.ws83{word-spacing:-30.650667pt;}
.ws7c{word-spacing:-30.528000pt;}
.wse{word-spacing:-30.524800pt;}
.ws35{word-spacing:-30.336000pt;}
.ws86{word-spacing:-30.231733pt;}
.ws2d{word-spacing:-29.886400pt;}
.ws5a{word-spacing:-29.440000pt;}
.ws2a{word-spacing:-29.248000pt;}
.ws10{word-spacing:-29.242667pt;}
.ws1d{word-spacing:-29.056000pt;}
.ws20{word-spacing:-28.800000pt;}
.ws71{word-spacing:-28.613333pt;}
.ws3e{word-spacing:-28.608000pt;}
.ws7d{word-spacing:-28.150667pt;}
.ws12{word-spacing:-27.968000pt;}
.ws8{word-spacing:-27.961600pt;}
.ws81{word-spacing:-27.957600pt;}
.wsf{word-spacing:-27.328000pt;}
.ws2b{word-spacing:-27.326400pt;}
.ws39{word-spacing:-27.128000pt;}
.ws1c{word-spacing:-26.880000pt;}
.ws5e{word-spacing:-26.688000pt;}
.ws33{word-spacing:-26.686933pt;}
.ws63{word-spacing:-26.686400pt;}
.ws1e{word-spacing:-26.681600pt;}
.wsc{word-spacing:-26.496000pt;}
.ws34{word-spacing:-25.856000pt;}
.ws5d{word-spacing:-25.408000pt;}
.ws4f{word-spacing:-24.965333pt;}
.ws1b{word-spacing:-24.128000pt;}
.ws7b{word-spacing:-23.936000pt;}
.ws61{word-spacing:-23.673600pt;}
.ws5b{word-spacing:-23.469333pt;}
.ws67{word-spacing:-22.846933pt;}
.ws68{word-spacing:-22.844800pt;}
.ws50{word-spacing:-22.405333pt;}
.ws4a{word-spacing:-22.400000pt;}
.ws45{word-spacing:-22.208000pt;}
.ws43{word-spacing:-22.203200pt;}
.ws44{word-spacing:-21.754667pt;}
.ws11{word-spacing:-21.570133pt;}
.ws6f{word-spacing:-21.371733pt;}
.ws6c{word-spacing:-21.108800pt;}
.ws2f{word-spacing:-20.729600pt;}
.ws46{word-spacing:-20.288000pt;}
.ws79{word-spacing:-19.827200pt;}
.wsd{word-spacing:-19.653333pt;}
.ws4c{word-spacing:-18.371733pt;}
.ws28{word-spacing:-18.368000pt;}
.ws70{word-spacing:-18.352000pt;}
.ws52{word-spacing:-17.728000pt;}
.ws30{word-spacing:-17.280000pt;}
.ws27{word-spacing:-17.088000pt;}
.ws7a{word-spacing:-17.084800pt;}
.ws2e{word-spacing:-17.080533pt;}
.ws77{word-spacing:-16.640000pt;}
.ws19{word-spacing:-15.360000pt;}
.ws14{word-spacing:-15.350400pt;}
.ws13{word-spacing:-14.964800pt;}
.ws87{word-spacing:-14.231733pt;}
.ws29{word-spacing:-13.253333pt;}
.ws2c{word-spacing:-12.416000pt;}
.ws1a{word-spacing:-11.328000pt;}
.ws89{word-spacing:-11.255200pt;}
.ws4b{word-spacing:-9.408000pt;}
.ws25{word-spacing:-7.680000pt;}
.ws84{word-spacing:-5.565600pt;}
.ws88{word-spacing:-5.557600pt;}
.ws3d{word-spacing:-4.279467pt;}
.ws49{word-spacing:-0.645333pt;}
.ws24{word-spacing:0.000000pt;}
.ws47{word-spacing:1.472000pt;}
.ws7{word-spacing:6.608533pt;}
.ws80{word-spacing:6.885067pt;}
.ws6{word-spacing:7.240267pt;}
.ws38{word-spacing:10.432000pt;}
.ws82{word-spacing:22.885067pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-0.899733pt;}
._0{width:0.956800pt;}
._1e{width:9.600000pt;}
._d{width:15.418667pt;}
._1{width:16.860800pt;}
._a{width:18.053333pt;}
._15{width:19.033067pt;}
._5{width:20.340267pt;}
._6{width:21.941333pt;}
._3{width:22.912000pt;}
._c{width:23.808000pt;}
._13{width:24.963200pt;}
._b{width:26.496000pt;}
._19{width:28.224000pt;}
._7{width:29.128000pt;}
._17{width:30.417067pt;}
._10{width:32.451200pt;}
._f{width:33.664000pt;}
._12{width:34.603733pt;}
._9{width:35.706667pt;}
._8{width:36.724800pt;}
._11{width:38.592000pt;}
._1d{width:39.753600pt;}
._1a{width:41.472000pt;}
._e{width:42.938667pt;}
._1b{width:45.145867pt;}
._16{width:46.400000pt;}
._18{width:50.112000pt;}
._2{width:57.796000pt;}
._14{width:61.254933pt;}
._1c{width:89.672533pt;}
.fs1{font-size:41.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y27{bottom:113.508000pt;}
.y26{bottom:150.466667pt;}
.yb2{bottom:168.866667pt;}
.y48{bottom:181.508000pt;}
.y64{bottom:181.988000pt;}
.yb1{bottom:187.266667pt;}
.y83{bottom:187.588000pt;}
.y25{bottom:199.588000pt;}
.y47{bottom:199.908000pt;}
.y63{bottom:200.388000pt;}
.yb0{bottom:205.666667pt;}
.y62{bottom:218.788000pt;}
.y82{bottom:219.108000pt;}
.y99{bottom:220.066667pt;}
.y24{bottom:236.546667pt;}
.y46{bottom:236.866667pt;}
.y61{bottom:237.188000pt;}
.y81{bottom:237.508000pt;}
.y98{bottom:238.466667pt;}
.yaf{bottom:242.788000pt;}
.y45{bottom:255.266667pt;}
.y80{bottom:255.908000pt;}
.y97{bottom:256.866667pt;}
.y23{bottom:273.666667pt;}
.y60{bottom:274.308000pt;}
.y96{bottom:275.266667pt;}
.yae{bottom:279.746667pt;}
.y22{bottom:292.066667pt;}
.y7f{bottom:292.866667pt;}
.y95{bottom:293.666667pt;}
.yad{bottom:300.706667pt;}
.y21{bottom:310.466667pt;}
.y5f{bottom:311.266667pt;}
.y94{bottom:312.066667pt;}
.yac{bottom:319.108000pt;}
.y20{bottom:328.866667pt;}
.y44{bottom:329.188000pt;}
.y5e{bottom:329.666667pt;}
.y7e{bottom:329.988000pt;}
.y93{bottom:330.466667pt;}
.yab{bottom:339.908000pt;}
.y1f{bottom:347.266667pt;}
.y43{bottom:347.588000pt;}
.y5d{bottom:348.066667pt;}
.y92{bottom:348.866667pt;}
.yaa{bottom:358.466667pt;}
.y1e{bottom:365.666667pt;}
.y42{bottom:365.988000pt;}
.y7d{bottom:367.108000pt;}
.y91{bottom:367.266667pt;}
.ya9{bottom:379.266667pt;}
.y1d{bottom:384.066667pt;}
.y41{bottom:384.388000pt;}
.y5c{bottom:385.188000pt;}
.y7c{bottom:385.508000pt;}
.y90{bottom:385.666667pt;}
.ya8{bottom:400.066667pt;}
.y1c{bottom:402.466667pt;}
.y40{bottom:402.788000pt;}
.y5b{bottom:403.588000pt;}
.y8f{bottom:404.066667pt;}
.ya7{bottom:418.466667pt;}
.y1b{bottom:420.866667pt;}
.y5a{bottom:421.988000pt;}
.y7b{bottom:422.466667pt;}
.ya6{bottom:439.426667pt;}
.y3f{bottom:439.908000pt;}
.y59{bottom:440.388000pt;}
.y8e{bottom:440.866667pt;}
.ya5{bottom:457.826667pt;}
.y1a{bottom:457.988000pt;}
.y58{bottom:458.788000pt;}
.y8d{bottom:459.266667pt;}
.y7a{bottom:459.588000pt;}
.y3e{bottom:476.866667pt;}
.y57{bottom:477.188000pt;}
.y8c{bottom:477.666667pt;}
.y79{bottom:477.988000pt;}
.ya4{bottom:478.788000pt;}
.y19{bottom:494.946667pt;}
.y56{bottom:495.588000pt;}
.y8b{bottom:496.066667pt;}
.y78{bottom:496.388000pt;}
.ya3{bottom:497.188000pt;}
.y3d{bottom:513.988000pt;}
.y8a{bottom:514.466667pt;}
.y77{bottom:514.788000pt;}
.ya2{bottom:517.988000pt;}
.y18{bottom:532.066667pt;}
.y55{bottom:532.388000pt;}
.ya1{bottom:536.388000pt;}
.y17{bottom:550.466667pt;}
.y3c{bottom:551.108000pt;}
.y89{bottom:551.588000pt;}
.y76{bottom:551.908000pt;}
.ya0{bottom:557.346667pt;}
.y16{bottom:568.866667pt;}
.y54{bottom:569.506667pt;}
.y88{bottom:569.988000pt;}
.y75{bottom:570.308000pt;}
.y9f{bottom:578.146667pt;}
.y15{bottom:587.266667pt;}
.y3b{bottom:588.066667pt;}
.y87{bottom:588.388000pt;}
.y74{bottom:588.706667pt;}
.y9e{bottom:596.546667pt;}
.y14{bottom:605.666667pt;}
.y3a{bottom:606.466667pt;}
.y73{bottom:607.108000pt;}
.y9d{bottom:617.506667pt;}
.y13{bottom:624.066667pt;}
.y39{bottom:624.866667pt;}
.y72{bottom:625.506667pt;}
.y9c{bottom:638.466667pt;}
.y38{bottom:643.266667pt;}
.y71{bottom:643.908000pt;}
.y9b{bottom:659.266667pt;}
.y12{bottom:661.188000pt;}
.y37{bottom:661.666667pt;}
.y70{bottom:662.308000pt;}
.y9a{bottom:677.666667pt;}
.y11{bottom:679.588000pt;}
.y36{bottom:680.066667pt;}
.y6f{bottom:680.706667pt;}
.y10{bottom:697.988000pt;}
.y53{bottom:698.466667pt;}
.y6e{bottom:699.108000pt;}
.yf{bottom:716.388000pt;}
.y35{bottom:717.188000pt;}
.y6d{bottom:717.506667pt;}
.ye{bottom:734.788000pt;}
.y52{bottom:735.588000pt;}
.y6c{bottom:735.906667pt;}
.yd{bottom:753.188000pt;}
.y51{bottom:753.988000pt;}
.y34{bottom:754.308000pt;}
.yc{bottom:771.588000pt;}
.y50{bottom:772.388000pt;}
.y86{bottom:772.706667pt;}
.y4f{bottom:790.788000pt;}
.y85{bottom:791.106667pt;}
.y33{bottom:791.266667pt;}
.yb{bottom:808.546667pt;}
.y84{bottom:809.506667pt;}
.y32{bottom:809.666667pt;}
.y4e{bottom:827.906667pt;}
.y31{bottom:828.066667pt;}
.ya{bottom:845.666667pt;}
.y4d{bottom:846.306667pt;}
.y30{bottom:846.466667pt;}
.y9{bottom:864.066667pt;}
.y4c{bottom:864.706667pt;}
.y2f{bottom:864.866667pt;}
.y6b{bottom:865.188000pt;}
.y8{bottom:882.466667pt;}
.y4b{bottom:883.106667pt;}
.y2e{bottom:883.266667pt;}
.y6a{bottom:883.588000pt;}
.y4a{bottom:901.506667pt;}
.y2d{bottom:901.666667pt;}
.y69{bottom:901.988000pt;}
.y7{bottom:919.588000pt;}
.y2c{bottom:920.066667pt;}
.y68{bottom:920.388000pt;}
.y6{bottom:937.988000pt;}
.y2b{bottom:938.466667pt;}
.y67{bottom:938.788000pt;}
.y2a{bottom:956.866667pt;}
.y66{bottom:957.188000pt;}
.y29{bottom:975.266667pt;}
.y65{bottom:975.588000pt;}
.y49{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h6{height:36.664063pt;}
.h4{height:56.406250pt;}
.h2{height:56.843750pt;}
.h5{height:57.778729pt;}
.h7{height:58.418729pt;}
.h9{height:58.424063pt;}
.h8{height:58.703104pt;}
.ha{height:66.042318pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x8{left:47.200000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.200000pt;}
.x6{left:124.160000pt;}
.xb{left:127.200000pt;}
.x9{left:141.600000pt;}
.x2{left:142.720000pt;}
.x7{left:262.720000pt;}
.x5{left:345.600000pt;}
}




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