
    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_fa33100b947572cedbb54a92.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_5c3378c0b6eb11f653239d40.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3f687c26e1f7a0e418436232.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d93c204837de2f56bf4bd22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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;}
}
.wsf{word-spacing:-55.944000px;}
.ws26{word-spacing:-40.536000px;}
.wsb{word-spacing:-38.777400px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws3{word-spacing:-38.374200px;}
.ws8a{word-spacing:-38.372100px;}
.wsa{word-spacing:-38.079000px;}
.wsc{word-spacing:-38.052300px;}
.ws0{word-spacing:-37.944000px;}
.wsd{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws8{word-spacing:-33.547800px;}
.ws3e{word-spacing:-23.462100px;}
.ws5d{word-spacing:-23.461200px;}
.ws22{word-spacing:-23.394600px;}
.ws2c{word-spacing:-23.390100px;}
.ws76{word-spacing:-23.388300px;}
.ws5e{word-spacing:-23.252400px;}
.ws3d{word-spacing:-23.243400px;}
.ws45{word-spacing:-23.241600px;}
.ws3a{word-spacing:-23.176800px;}
.ws7b{word-spacing:-23.172300px;}
.ws4e{word-spacing:-23.168700px;}
.ws62{word-spacing:-23.036400px;}
.wse{word-spacing:-23.031900px;}
.ws80{word-spacing:-23.028900px;}
.ws89{word-spacing:-22.962300px;}
.ws16{word-spacing:-22.955100px;}
.ws7a{word-spacing:-22.902000px;}
.ws72{word-spacing:-22.896000px;}
.ws5c{word-spacing:-22.893300px;}
.ws48{word-spacing:-22.889700px;}
.ws52{word-spacing:-22.886100px;}
.ws6b{word-spacing:-22.752000px;}
.ws37{word-spacing:-22.750200px;}
.ws2d{word-spacing:-22.749000px;}
.ws63{word-spacing:-22.748400px;}
.ws5f{word-spacing:-22.746600px;}
.ws8e{word-spacing:-22.746000px;}
.ws4d{word-spacing:-22.742100px;}
.ws39{word-spacing:-22.741200px;}
.ws47{word-spacing:-22.737600px;}
.ws7d{word-spacing:-22.735800px;}
.ws51{word-spacing:-22.734900px;}
.ws60{word-spacing:-22.723200px;}
.ws67{word-spacing:-22.678800px;}
.ws46{word-spacing:-22.604100px;}
.ws19{word-spacing:-22.536000px;}
.ws90{word-spacing:-22.533300px;}
.ws66{word-spacing:-22.528800px;}
.ws65{word-spacing:-22.464000px;}
.ws56{word-spacing:-22.454100px;}
.ws9{word-spacing:-22.320000px;}
.ws82{word-spacing:-21.951900px;}
.ws64{word-spacing:-21.766500px;}
.ws11{word-spacing:-21.454800px;}
.ws74{word-spacing:-21.312000px;}
.ws43{word-spacing:-19.300200px;}
.ws7{word-spacing:-18.472500px;}
.ws2a{word-spacing:-18.432000px;}
.ws35{word-spacing:-18.366000px;}
.ws27{word-spacing:-17.496000px;}
.ws23{word-spacing:-17.052300px;}
.ws36{word-spacing:-16.553700px;}
.ws86{word-spacing:-16.056000px;}
.ws3b{word-spacing:-15.700200px;}
.ws59{word-spacing:-15.336000px;}
.ws3f{word-spacing:-14.102100px;}
.ws3c{word-spacing:-13.896000px;}
.ws81{word-spacing:-13.890000px;}
.ws44{word-spacing:-13.880100px;}
.ws55{word-spacing:-13.680000px;}
.ws20{word-spacing:-13.530600px;}
.ws2b{word-spacing:-13.176000px;}
.ws58{word-spacing:-12.154500px;}
.ws6d{word-spacing:-11.952000px;}
.ws69{word-spacing:-11.641500px;}
.ws31{word-spacing:-11.226000px;}
.ws8c{word-spacing:-11.010000px;}
.ws83{word-spacing:-9.144000px;}
.ws34{word-spacing:-8.860200px;}
.ws85{word-spacing:-8.631900px;}
.ws77{word-spacing:-7.764000px;}
.ws28{word-spacing:-7.056000px;}
.ws4c{word-spacing:-6.904800px;}
.ws4b{word-spacing:-6.696000px;}
.ws7f{word-spacing:-6.691200px;}
.ws13{word-spacing:-6.312600px;}
.ws49{word-spacing:-5.322600px;}
.ws75{word-spacing:-5.256000px;}
.ws38{word-spacing:-4.450800px;}
.ws50{word-spacing:-4.032000px;}
.ws8d{word-spacing:-3.308400px;}
.ws7e{word-spacing:-2.998800px;}
.ws14{word-spacing:-2.862600px;}
.ws15{word-spacing:-2.376000px;}
.ws8f{word-spacing:-1.794600px;}
.ws24{word-spacing:-1.152000px;}
.ws57{word-spacing:-0.845400px;}
.ws73{word-spacing:0.000000px;}
.ws32{word-spacing:0.799200px;}
.ws6f{word-spacing:1.944000px;}
.ws1e{word-spacing:2.664000px;}
.ws71{word-spacing:2.752200px;}
.ws41{word-spacing:4.104000px;}
.ws40{word-spacing:4.611600px;}
.ws25{word-spacing:4.612500px;}
.ws5b{word-spacing:4.824000px;}
.ws6a{word-spacing:5.185800px;}
.ws2e{word-spacing:6.124500px;}
.ws54{word-spacing:6.264000px;}
.ws84{word-spacing:6.285300px;}
.ws1c{word-spacing:8.801400px;}
.ws78{word-spacing:9.511200px;}
.ws87{word-spacing:12.024000px;}
.ws17{word-spacing:12.258900px;}
.ws53{word-spacing:13.255200px;}
.ws8b{word-spacing:13.464000px;}
.ws6c{word-spacing:13.834800px;}
.ws4f{word-spacing:14.553900px;}
.ws2f{word-spacing:15.273900px;}
.ws1d{word-spacing:15.624000px;}
.ws79{word-spacing:17.064000px;}
.ws33{word-spacing:19.522800px;}
.ws70{word-spacing:20.455800px;}
.ws7c{word-spacing:21.031200px;}
.ws68{word-spacing:21.177900px;}
.ws18{word-spacing:27.864000px;}
.ws4a{word-spacing:28.175400px;}
.ws6e{word-spacing:28.945800px;}
.ws42{word-spacing:29.088000px;}
.ws1a{word-spacing:29.742000px;}
.ws21{word-spacing:30.384000px;}
.ws5a{word-spacing:34.352100px;}
.ws29{word-spacing:42.845400px;}
.ws1b{word-spacing:43.722000px;}
.ws10{word-spacing:44.712000px;}
.ws30{word-spacing:55.018800px;}
.ws88{word-spacing:67.398300px;}
.ws12{word-spacing:76.766400px;}
.ws61{word-spacing:120.963600px;}
.ws1f{word-spacing:330.490800px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._6{width:20.662800px;}
._13{width:23.106000px;}
._10{width:24.120000px;}
._1d{width:25.242900px;}
._14{width:26.280000px;}
._1e{width:27.494100px;}
._d{width:28.573200px;}
._19{width:30.738000px;}
._1c{width:32.870400px;}
._11{width:34.992000px;}
._1{width:36.000000px;}
._9{width:37.084800px;}
._8{width:39.348000px;}
._f{width:40.884300px;}
._1a{width:42.540000px;}
._b{width:44.928000px;}
._1f{width:46.504800px;}
._15{width:48.523500px;}
._a{width:50.448000px;}
._27{width:51.681600px;}
._29{width:53.883600px;}
._23{width:55.152000px;}
._22{width:56.445000px;}
._16{width:57.518100px;}
._28{width:58.828800px;}
._1b{width:61.333200px;}
._25{width:63.710100px;}
._2b{width:65.370000px;}
._2c{width:66.390000px;}
._21{width:69.869400px;}
._20{width:71.224800px;}
._e{width:72.232800px;}
._24{width:76.409400px;}
._12{width:84.462000px;}
._5{width:87.048000px;}
._17{width:96.624000px;}
._18{width:97.831200px;}
._2a{width:109.014900px;}
._7{width:119.283600px;}
._26{width:232.051200px;}
._c{width:372.152400px;}
._0{width:612.144000px;}
.fc5{color:rgb(79,129,189);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(54,95,145);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.780000px;}
.y3f{bottom:3.811500px;}
.y41{bottom:3.840000px;}
.y7{bottom:4.471500px;}
.y66{bottom:4.680000px;}
.y43{bottom:4.695000px;}
.y65{bottom:25.380000px;}
.y64{bottom:67.140000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2d{bottom:100.696500px;}
.y89{bottom:106.275000px;}
.y63{bottom:108.900000px;}
.y2c{bottom:121.396500px;}
.y88{bottom:126.975000px;}
.y2b{bottom:142.096500px;}
.y7b{bottom:145.696500px;}
.y62{bottom:150.480000px;}
.y2a{bottom:162.796500px;}
.y7a{bottom:166.396500px;}
.y87{bottom:168.736500px;}
.y29{bottom:183.496500px;}
.y79{bottom:187.096500px;}
.y86{bottom:189.436500px;}
.y61{bottom:192.240000px;}
.y81{bottom:197.536500px;}
.y28{bottom:204.196500px;}
.y78{bottom:207.795000px;}
.y80{bottom:218.236500px;}
.y4a{bottom:222.915000px;}
.y85{bottom:231.196500px;}
.y60{bottom:234.000000px;}
.y27{bottom:245.775000px;}
.y77{bottom:249.375000px;}
.y7f{bottom:259.996500px;}
.y49{bottom:264.675000px;}
.y26{bottom:266.475000px;}
.y5f{bottom:275.580000px;}
.y5a{bottom:276.375000px;}
.y25{bottom:287.175000px;}
.y76{bottom:291.136500px;}
.y24{bottom:307.875000px;}
.y75{bottom:311.836500px;}
.y5e{bottom:317.340000px;}
.y23{bottom:328.575000px;}
.y74{bottom:332.536500px;}
.y22{bottom:349.275000px;}
.y5d{bottom:359.100000px;}
.y59{bottom:359.896500px;}
.y73{bottom:374.115000px;}
.y58{bottom:380.596500px;}
.y72{bottom:388.696500px;}
.y21{bottom:391.036500px;}
.y5c{bottom:400.680000px;}
.y57{bottom:401.295000px;}
.y71{bottom:409.396500px;}
.y20{bottom:411.736500px;}
.y56{bottom:421.996500px;}
.y70{bottom:430.096500px;}
.y1f{bottom:432.436500px;}
.y55{bottom:442.696500px;}
.y6f{bottom:450.795000px;}
.y54{bottom:463.396500px;}
.y6e{bottom:471.496500px;}
.y1e{bottom:474.196500px;}
.y53{bottom:484.096500px;}
.y6d{bottom:492.196500px;}
.y1d{bottom:494.896500px;}
.y52{bottom:504.796500px;}
.y6c{bottom:512.896500px;}
.y1c{bottom:515.596500px;}
.y4e{bottom:521.175000px;}
.y37{bottom:521.536500px;}
.y51{bottom:525.496500px;}
.y6b{bottom:533.596500px;}
.y1b{bottom:536.296500px;}
.y4d{bottom:541.875000px;}
.y36{bottom:542.236500px;}
.y50{bottom:546.195000px;}
.y6a{bottom:554.296500px;}
.y1a{bottom:556.996500px;}
.y4c{bottom:562.575000px;}
.y35{bottom:562.936500px;}
.y69{bottom:574.996500px;}
.y19{bottom:577.695000px;}
.y68{bottom:595.695000px;}
.y18{bottom:598.396500px;}
.y67{bottom:616.396500px;}
.y17{bottom:619.096500px;}
.y4f{bottom:629.536500px;}
.y48{bottom:636.915000px;}
.y4b{bottom:645.915000px;}
.y34{bottom:646.275000px;}
.y7e{bottom:648.436500px;}
.y47{bottom:657.615000px;}
.y84{bottom:659.236500px;}
.y16{bottom:660.675000px;}
.y7d{bottom:669.136500px;}
.y46{bottom:678.315000px;}
.y83{bottom:679.936500px;}
.y15{bottom:681.375000px;}
.y5b{bottom:695.775000px;}
.y45{bottom:699.015000px;}
.y7c{bottom:710.715000px;}
.y44{bottom:719.715000px;}
.y82{bottom:721.515000px;}
.y14{bottom:723.136500px;}
.y13{bottom:743.836500px;}
.y42{bottom:757.500000px;}
.y12{bottom:764.536500px;}
.y92{bottom:765.436500px;}
.y40{bottom:779.775000px;}
.y11{bottom:785.236500px;}
.y91{bottom:786.136500px;}
.y3e{bottom:801.225000px;}
.y10{bottom:805.936500px;}
.y90{bottom:806.836500px;}
.y3c{bottom:822.675000px;}
.yf{bottom:826.636500px;}
.y8f{bottom:827.536500px;}
.ye{bottom:847.336500px;}
.y8e{bottom:848.236500px;}
.y3b{bottom:868.936500px;}
.yd{bottom:889.095000px;}
.y8d{bottom:889.636500px;}
.y8c{bottom:910.336500px;}
.y3a{bottom:910.695000px;}
.yc{bottom:930.675000px;}
.y8b{bottom:931.036500px;}
.y39{bottom:931.395000px;}
.y8a{bottom:951.736500px;}
.y33{bottom:952.095000px;}
.y32{bottom:972.795000px;}
.y38{bottom:993.495000px;}
.yb{bottom:1014.195000px;}
.y31{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y30{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2f{bottom:1055.775000px;}
.y2e{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h6{height:21.375000px;}
.h7{height:22.200000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:49.992188px;}
.h8{height:418.200000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w3{width:146.400000px;}
.w5{width:327.150000px;}
.w4{width:350.925000px;}
.w6{width:390.825000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.160000px;}
.x10{left:12.645000px;}
.xf{left:119.475000px;}
.x1{left:127.620000px;}
.xa{left:154.620000px;}
.x9{left:180.720000px;}
.xe{left:189.720000px;}
.x5{left:199.080000px;}
.x4{left:204.480000px;}
.xb{left:229.800000px;}
.x8{left:280.980000px;}
.x6{left:318.238500px;}
.xd{left:376.125000px;}
.x11{left:446.550000px;}
.x3{left:461.625000px;}
.x7{left:578.700000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-49.728000pt;}
.ws26{word-spacing:-36.032000pt;}
.wsb{word-spacing:-34.468800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws8a{word-spacing:-34.108533pt;}
.wsa{word-spacing:-33.848000pt;}
.wsc{word-spacing:-33.824267pt;}
.ws0{word-spacing:-33.728000pt;}
.wsd{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws3e{word-spacing:-20.855200pt;}
.ws5d{word-spacing:-20.854400pt;}
.ws22{word-spacing:-20.795200pt;}
.ws2c{word-spacing:-20.791200pt;}
.ws76{word-spacing:-20.789600pt;}
.ws5e{word-spacing:-20.668800pt;}
.ws3d{word-spacing:-20.660800pt;}
.ws45{word-spacing:-20.659200pt;}
.ws3a{word-spacing:-20.601600pt;}
.ws7b{word-spacing:-20.597600pt;}
.ws4e{word-spacing:-20.594400pt;}
.ws62{word-spacing:-20.476800pt;}
.wse{word-spacing:-20.472800pt;}
.ws80{word-spacing:-20.470133pt;}
.ws89{word-spacing:-20.410933pt;}
.ws16{word-spacing:-20.404533pt;}
.ws7a{word-spacing:-20.357333pt;}
.ws72{word-spacing:-20.352000pt;}
.ws5c{word-spacing:-20.349600pt;}
.ws48{word-spacing:-20.346400pt;}
.ws52{word-spacing:-20.343200pt;}
.ws6b{word-spacing:-20.224000pt;}
.ws37{word-spacing:-20.222400pt;}
.ws2d{word-spacing:-20.221333pt;}
.ws63{word-spacing:-20.220800pt;}
.ws5f{word-spacing:-20.219200pt;}
.ws8e{word-spacing:-20.218667pt;}
.ws4d{word-spacing:-20.215200pt;}
.ws39{word-spacing:-20.214400pt;}
.ws47{word-spacing:-20.211200pt;}
.ws7d{word-spacing:-20.209600pt;}
.ws51{word-spacing:-20.208800pt;}
.ws60{word-spacing:-20.198400pt;}
.ws67{word-spacing:-20.158933pt;}
.ws46{word-spacing:-20.092533pt;}
.ws19{word-spacing:-20.032000pt;}
.ws90{word-spacing:-20.029600pt;}
.ws66{word-spacing:-20.025600pt;}
.ws65{word-spacing:-19.968000pt;}
.ws56{word-spacing:-19.959200pt;}
.ws9{word-spacing:-19.840000pt;}
.ws82{word-spacing:-19.512800pt;}
.ws64{word-spacing:-19.348000pt;}
.ws11{word-spacing:-19.070933pt;}
.ws74{word-spacing:-18.944000pt;}
.ws43{word-spacing:-17.155733pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2a{word-spacing:-16.384000pt;}
.ws35{word-spacing:-16.325333pt;}
.ws27{word-spacing:-15.552000pt;}
.ws23{word-spacing:-15.157600pt;}
.ws36{word-spacing:-14.714400pt;}
.ws86{word-spacing:-14.272000pt;}
.ws3b{word-spacing:-13.955733pt;}
.ws59{word-spacing:-13.632000pt;}
.ws3f{word-spacing:-12.535200pt;}
.ws3c{word-spacing:-12.352000pt;}
.ws81{word-spacing:-12.346667pt;}
.ws44{word-spacing:-12.337867pt;}
.ws55{word-spacing:-12.160000pt;}
.ws20{word-spacing:-12.027200pt;}
.ws2b{word-spacing:-11.712000pt;}
.ws58{word-spacing:-10.804000pt;}
.ws6d{word-spacing:-10.624000pt;}
.ws69{word-spacing:-10.348000pt;}
.ws31{word-spacing:-9.978667pt;}
.ws8c{word-spacing:-9.786667pt;}
.ws83{word-spacing:-8.128000pt;}
.ws34{word-spacing:-7.875733pt;}
.ws85{word-spacing:-7.672800pt;}
.ws77{word-spacing:-6.901333pt;}
.ws28{word-spacing:-6.272000pt;}
.ws4c{word-spacing:-6.137600pt;}
.ws4b{word-spacing:-5.952000pt;}
.ws7f{word-spacing:-5.947733pt;}
.ws13{word-spacing:-5.611200pt;}
.ws49{word-spacing:-4.731200pt;}
.ws75{word-spacing:-4.672000pt;}
.ws38{word-spacing:-3.956267pt;}
.ws50{word-spacing:-3.584000pt;}
.ws8d{word-spacing:-2.940800pt;}
.ws7e{word-spacing:-2.665600pt;}
.ws14{word-spacing:-2.544533pt;}
.ws15{word-spacing:-2.112000pt;}
.ws8f{word-spacing:-1.595200pt;}
.ws24{word-spacing:-1.024000pt;}
.ws57{word-spacing:-0.751467pt;}
.ws73{word-spacing:0.000000pt;}
.ws32{word-spacing:0.710400pt;}
.ws6f{word-spacing:1.728000pt;}
.ws1e{word-spacing:2.368000pt;}
.ws71{word-spacing:2.446400pt;}
.ws41{word-spacing:3.648000pt;}
.ws40{word-spacing:4.099200pt;}
.ws25{word-spacing:4.100000pt;}
.ws5b{word-spacing:4.288000pt;}
.ws6a{word-spacing:4.609600pt;}
.ws2e{word-spacing:5.444000pt;}
.ws54{word-spacing:5.568000pt;}
.ws84{word-spacing:5.586933pt;}
.ws1c{word-spacing:7.823467pt;}
.ws78{word-spacing:8.454400pt;}
.ws87{word-spacing:10.688000pt;}
.ws17{word-spacing:10.896800pt;}
.ws53{word-spacing:11.782400pt;}
.ws8b{word-spacing:11.968000pt;}
.ws6c{word-spacing:12.297600pt;}
.ws4f{word-spacing:12.936800pt;}
.ws2f{word-spacing:13.576800pt;}
.ws1d{word-spacing:13.888000pt;}
.ws79{word-spacing:15.168000pt;}
.ws33{word-spacing:17.353600pt;}
.ws70{word-spacing:18.182933pt;}
.ws7c{word-spacing:18.694400pt;}
.ws68{word-spacing:18.824800pt;}
.ws18{word-spacing:24.768000pt;}
.ws4a{word-spacing:25.044800pt;}
.ws6e{word-spacing:25.729600pt;}
.ws42{word-spacing:25.856000pt;}
.ws1a{word-spacing:26.437333pt;}
.ws21{word-spacing:27.008000pt;}
.ws5a{word-spacing:30.535200pt;}
.ws29{word-spacing:38.084800pt;}
.ws1b{word-spacing:38.864000pt;}
.ws10{word-spacing:39.744000pt;}
.ws30{word-spacing:48.905600pt;}
.ws88{word-spacing:59.909600pt;}
.ws12{word-spacing:68.236800pt;}
.ws61{word-spacing:107.523200pt;}
.ws1f{word-spacing:293.769600pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._6{width:18.366933pt;}
._13{width:20.538667pt;}
._10{width:21.440000pt;}
._1d{width:22.438133pt;}
._14{width:23.360000pt;}
._1e{width:24.439200pt;}
._d{width:25.398400pt;}
._19{width:27.322667pt;}
._1c{width:29.218133pt;}
._11{width:31.104000pt;}
._1{width:32.000000pt;}
._9{width:32.964267pt;}
._8{width:34.976000pt;}
._f{width:36.341600pt;}
._1a{width:37.813333pt;}
._b{width:39.936000pt;}
._1f{width:41.337600pt;}
._15{width:43.132000pt;}
._a{width:44.842667pt;}
._27{width:45.939200pt;}
._29{width:47.896533pt;}
._23{width:49.024000pt;}
._22{width:50.173333pt;}
._16{width:51.127200pt;}
._28{width:52.292267pt;}
._1b{width:54.518400pt;}
._25{width:56.631200pt;}
._2b{width:58.106667pt;}
._2c{width:59.013333pt;}
._21{width:62.106133pt;}
._20{width:63.310933pt;}
._e{width:64.206933pt;}
._24{width:67.919467pt;}
._12{width:75.077333pt;}
._5{width:77.376000pt;}
._17{width:85.888000pt;}
._18{width:86.961067pt;}
._2a{width:96.902133pt;}
._7{width:106.029867pt;}
._26{width:206.267733pt;}
._c{width:330.802133pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:3.360000pt;}
.y3f{bottom:3.388000pt;}
.y41{bottom:3.413333pt;}
.y7{bottom:3.974667pt;}
.y66{bottom:4.160000pt;}
.y43{bottom:4.173333pt;}
.y65{bottom:22.560000pt;}
.y64{bottom:59.680000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2d{bottom:89.508000pt;}
.y89{bottom:94.466667pt;}
.y63{bottom:96.800000pt;}
.y2c{bottom:107.908000pt;}
.y88{bottom:112.866667pt;}
.y2b{bottom:126.308000pt;}
.y7b{bottom:129.508000pt;}
.y62{bottom:133.760000pt;}
.y2a{bottom:144.708000pt;}
.y7a{bottom:147.908000pt;}
.y87{bottom:149.988000pt;}
.y29{bottom:163.108000pt;}
.y79{bottom:166.308000pt;}
.y86{bottom:168.388000pt;}
.y61{bottom:170.880000pt;}
.y81{bottom:175.588000pt;}
.y28{bottom:181.508000pt;}
.y78{bottom:184.706667pt;}
.y80{bottom:193.988000pt;}
.y4a{bottom:198.146667pt;}
.y85{bottom:205.508000pt;}
.y60{bottom:208.000000pt;}
.y27{bottom:218.466667pt;}
.y77{bottom:221.666667pt;}
.y7f{bottom:231.108000pt;}
.y49{bottom:235.266667pt;}
.y26{bottom:236.866667pt;}
.y5f{bottom:244.960000pt;}
.y5a{bottom:245.666667pt;}
.y25{bottom:255.266667pt;}
.y76{bottom:258.788000pt;}
.y24{bottom:273.666667pt;}
.y75{bottom:277.188000pt;}
.y5e{bottom:282.080000pt;}
.y23{bottom:292.066667pt;}
.y74{bottom:295.588000pt;}
.y22{bottom:310.466667pt;}
.y5d{bottom:319.200000pt;}
.y59{bottom:319.908000pt;}
.y73{bottom:332.546667pt;}
.y58{bottom:338.308000pt;}
.y72{bottom:345.508000pt;}
.y21{bottom:347.588000pt;}
.y5c{bottom:356.160000pt;}
.y57{bottom:356.706667pt;}
.y71{bottom:363.908000pt;}
.y20{bottom:365.988000pt;}
.y56{bottom:375.108000pt;}
.y70{bottom:382.308000pt;}
.y1f{bottom:384.388000pt;}
.y55{bottom:393.508000pt;}
.y6f{bottom:400.706667pt;}
.y54{bottom:411.908000pt;}
.y6e{bottom:419.108000pt;}
.y1e{bottom:421.508000pt;}
.y53{bottom:430.308000pt;}
.y6d{bottom:437.508000pt;}
.y1d{bottom:439.908000pt;}
.y52{bottom:448.708000pt;}
.y6c{bottom:455.908000pt;}
.y1c{bottom:458.308000pt;}
.y4e{bottom:463.266667pt;}
.y37{bottom:463.588000pt;}
.y51{bottom:467.108000pt;}
.y6b{bottom:474.308000pt;}
.y1b{bottom:476.708000pt;}
.y4d{bottom:481.666667pt;}
.y36{bottom:481.988000pt;}
.y50{bottom:485.506667pt;}
.y6a{bottom:492.708000pt;}
.y1a{bottom:495.108000pt;}
.y4c{bottom:500.066667pt;}
.y35{bottom:500.388000pt;}
.y69{bottom:511.108000pt;}
.y19{bottom:513.506667pt;}
.y68{bottom:529.506667pt;}
.y18{bottom:531.908000pt;}
.y67{bottom:547.908000pt;}
.y17{bottom:550.308000pt;}
.y4f{bottom:559.588000pt;}
.y48{bottom:566.146667pt;}
.y4b{bottom:574.146667pt;}
.y34{bottom:574.466667pt;}
.y7e{bottom:576.388000pt;}
.y47{bottom:584.546667pt;}
.y84{bottom:585.988000pt;}
.y16{bottom:587.266667pt;}
.y7d{bottom:594.788000pt;}
.y46{bottom:602.946667pt;}
.y83{bottom:604.388000pt;}
.y15{bottom:605.666667pt;}
.y5b{bottom:618.466667pt;}
.y45{bottom:621.346667pt;}
.y7c{bottom:631.746667pt;}
.y44{bottom:639.746667pt;}
.y82{bottom:641.346667pt;}
.y14{bottom:642.788000pt;}
.y13{bottom:661.188000pt;}
.y42{bottom:673.333333pt;}
.y12{bottom:679.588000pt;}
.y92{bottom:680.388000pt;}
.y40{bottom:693.133333pt;}
.y11{bottom:697.988000pt;}
.y91{bottom:698.788000pt;}
.y3e{bottom:712.200000pt;}
.y10{bottom:716.388000pt;}
.y90{bottom:717.188000pt;}
.y3c{bottom:731.266667pt;}
.yf{bottom:734.788000pt;}
.y8f{bottom:735.588000pt;}
.ye{bottom:753.188000pt;}
.y8e{bottom:753.988000pt;}
.y3b{bottom:772.388000pt;}
.yd{bottom:790.306667pt;}
.y8d{bottom:790.788000pt;}
.y8c{bottom:809.188000pt;}
.y3a{bottom:809.506667pt;}
.yc{bottom:827.266667pt;}
.y8b{bottom:827.588000pt;}
.y39{bottom:827.906667pt;}
.y8a{bottom:845.988000pt;}
.y33{bottom:846.306667pt;}
.y32{bottom:864.706667pt;}
.y38{bottom:883.106667pt;}
.yb{bottom:901.506667pt;}
.y31{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y30{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2f{bottom:938.466667pt;}
.y2e{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h6{height:19.000000pt;}
.h7{height:19.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.437500pt;}
.h8{height:371.733333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w3{width:130.133333pt;}
.w5{width:290.800000pt;}
.w4{width:311.933333pt;}
.w6{width:347.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.253333pt;}
.x10{left:11.240000pt;}
.xf{left:106.200000pt;}
.x1{left:113.440000pt;}
.xa{left:137.440000pt;}
.x9{left:160.640000pt;}
.xe{left:168.640000pt;}
.x5{left:176.960000pt;}
.x4{left:181.760000pt;}
.xb{left:204.266667pt;}
.x8{left:249.760000pt;}
.x6{left:282.878667pt;}
.xd{left:334.333333pt;}
.x11{left:396.933333pt;}
.x3{left:410.333333pt;}
.x7{left:514.400000pt;}
.x2{left:649.920000pt;}
}




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