
    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_f8f42be0436489c2f3d5cab6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_2527ef9649fb8ddc9e271915.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3848d27661b19773cd0d9634.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_60a2e2ae1405207958af243a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_603d61c28a415ef5790c9e3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b74767e7857e6b82ccf5305b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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:ff7;src:url('chunks/assets/font_25dea7f2f279a7162967b312.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929199;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;}
.ls10{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.178800px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001440px;}
.lsd{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.ls1{letter-spacing:25.920000px;}
.ls4{letter-spacing:64.421280px;}
.lsf{letter-spacing:73.584000px;}
.ls5{letter-spacing:96.624000px;}
.ls9{letter-spacing:201.036000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-11.609280px;}
.ws5{word-spacing:-11.430480px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-5.300160px;}
._e{margin-left:-4.248000px;}
._f{margin-left:-3.030720px;}
._0{margin-left:-1.457280px;}
._1{width:1.158720px;}
._9{width:2.544000px;}
._8{width:3.761280px;}
._11{width:5.742720px;}
._16{width:7.306560px;}
._13{width:8.568000px;}
._10{width:10.008000px;}
._17{width:11.736000px;}
._14{width:13.608000px;}
._15{width:14.688000px;}
._18{width:15.924960px;}
._5{width:16.949520px;}
._12{width:19.272000px;}
._c{width:20.664000px;}
._d{width:21.672000px;}
._a{width:23.040000px;}
._b{width:24.132000px;}
._6{width:25.248000px;}
._7{width:26.441280px;}
._1d{width:28.584000px;}
._2{width:30.825120px;}
._22{width:32.160000px;}
._21{width:33.408000px;}
._20{width:34.416000px;}
._1b{width:36.432000px;}
._25{width:53.890560px;}
._1c{width:58.896000px;}
._4{width:60.798000px;}
._19{width:64.008000px;}
._1a{width:65.304000px;}
._3{width:101.601360px;}
._28{width:103.085280px;}
._26{width:114.408000px;}
._23{width:133.212000px;}
._24{width:142.704000px;}
._27{width:173.952000px;}
._1e{width:197.976000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y99{bottom:2.880000px;}
.y8d{bottom:3.960000px;}
.y93{bottom:7.020000px;}
.y8c{bottom:7.200000px;}
.y4{bottom:81.756000px;}
.y3{bottom:100.836000px;}
.y2{bottom:119.736000px;}
.y84{bottom:139.896000px;}
.ybf{bottom:142.596000px;}
.ydb{bottom:144.396000px;}
.y6b{bottom:146.736000px;}
.ybe{bottom:158.070000px;}
.y2e{bottom:160.410000px;}
.ya6{bottom:166.350000px;}
.y83{bottom:170.850000px;}
.ybd{bottom:173.550000px;}
.y77{bottom:175.530000px;}
.y4c{bottom:176.430000px;}
.y6a{bottom:177.690000px;}
.y2d{bottom:181.110000px;}
.yf8{bottom:185.610000px;}
.ybc{bottom:189.030000px;}
.ye4{bottom:191.550000px;}
.yda{bottom:192.450000px;}
.ya5{bottom:197.490000px;}
.y2c{bottom:201.810000px;}
.y82{bottom:201.990000px;}
.ybb{bottom:204.690000px;}
.yf7{bottom:206.310000px;}
.y76{bottom:206.490000px;}
.y4b{bottom:207.390000px;}
.y69{bottom:208.830000px;}
.yba{bottom:220.530000px;}
.y2b{bottom:222.510000px;}
.ye3{bottom:222.690000px;}
.yd9{bottom:223.410000px;}
.yf6{bottom:227.010000px;}
.ya4{bottom:228.450000px;}
.y81{bottom:232.950000px;}
.y75{bottom:237.630000px;}
.y4a{bottom:238.530000px;}
.y68{bottom:239.790000px;}
.y2a{bottom:243.210000px;}
.yf5{bottom:247.710000px;}
.yb9{bottom:248.790000px;}
.ye2{bottom:253.650000px;}
.yd8{bottom:254.550000px;}
.ya3{bottom:259.590000px;}
.y29{bottom:263.910000px;}
.y80{bottom:264.090000px;}
.y74{bottom:268.590000px;}
.y49{bottom:269.490000px;}
.y67{bottom:270.930000px;}
.yf4{bottom:277.410000px;}
.yb8{bottom:279.750000px;}
.y28{bottom:284.610000px;}
.ye1{bottom:284.790000px;}
.yd7{bottom:285.510000px;}
.ya2{bottom:290.550000px;}
.y7f{bottom:295.050000px;}
.yf3{bottom:298.110000px;}
.y73{bottom:299.730000px;}
.y48{bottom:300.630000px;}
.y66{bottom:301.890000px;}
.y27{bottom:305.310000px;}
.yb7{bottom:310.890000px;}
.ye0{bottom:315.750000px;}
.yd6{bottom:316.650000px;}
.yf2{bottom:318.810000px;}
.ya1{bottom:321.690000px;}
.y26{bottom:326.010000px;}
.y7e{bottom:326.190000px;}
.y72{bottom:330.690000px;}
.y47{bottom:331.590000px;}
.y65{bottom:333.030000px;}
.yf1{bottom:339.555000px;}
.yb6{bottom:341.895000px;}
.y25{bottom:346.755000px;}
.ydf{bottom:346.935000px;}
.yd5{bottom:347.655000px;}
.ya0{bottom:352.695000px;}
.y7d{bottom:357.195000px;}
.y71{bottom:361.875000px;}
.y46{bottom:362.775000px;}
.y64{bottom:364.035000px;}
.y24{bottom:367.455000px;}
.yf0{bottom:369.255000px;}
.yb5{bottom:373.035000px;}
.yde{bottom:377.895000px;}
.yd4{bottom:378.795000px;}
.y9f{bottom:383.835000px;}
.y23{bottom:388.155000px;}
.yef{bottom:389.955000px;}
.y70{bottom:392.835000px;}
.y45{bottom:393.735000px;}
.y63{bottom:395.175000px;}
.yb4{bottom:401.655000px;}
.y22{bottom:408.855000px;}
.yd3{bottom:409.755000px;}
.y9e{bottom:414.795000px;}
.y7c{bottom:419.295000px;}
.yee{bottom:419.655000px;}
.y6f{bottom:423.975000px;}
.y44{bottom:424.875000px;}
.y62{bottom:426.135000px;}
.y21{bottom:429.555000px;}
.yb3{bottom:429.915000px;}
.ydd{bottom:439.995000px;}
.yd2{bottom:440.895000px;}
.y9d{bottom:445.935000px;}
.yed{bottom:449.355000px;}
.y20{bottom:450.255000px;}
.y6e{bottom:454.935000px;}
.y43{bottom:455.835000px;}
.y61{bottom:457.275000px;}
.yb2{bottom:461.055000px;}
.y9c{bottom:465.915000px;}
.yec{bottom:470.055000px;}
.y1f{bottom:470.955000px;}
.yd1{bottom:471.855000px;}
.ydc{bottom:476.895000px;}
.y10f{bottom:480.135000px;}
.y7b{bottom:481.395000px;}
.y9b{bottom:482.835000px;}
.y6d{bottom:486.075000px;}
.y42{bottom:486.975000px;}
.y60{bottom:488.235000px;}
.y1e{bottom:491.655000px;}
.yb1{bottom:492.015000px;}
.y9a{bottom:496.155000px;}
.yeb{bottom:499.755000px;}
.y10e{bottom:500.835000px;}
.y7a{bottom:502.095000px;}
.yd0{bottom:502.995000px;}
.y1d{bottom:512.355000px;}
.y5f{bottom:515.415000px;}
.y6c{bottom:517.035000px;}
.y41{bottom:517.935000px;}
.y98{bottom:520.455000px;}
.y79{bottom:522.075000px;}
.yb0{bottom:523.155000px;}
.y10d{bottom:530.535000px;}
.y1c{bottom:533.055000px;}
.ycf{bottom:533.955000px;}
.yea{bottom:541.155000px;}
.y78{bottom:546.555000px;}
.y97{bottom:547.815000px;}
.y5e{bottom:548.175000px;}
.y40{bottom:549.075000px;}
.y10c{bottom:551.235000px;}
.y1b{bottom:553.755000px;}
.yaf{bottom:554.115000px;}
.y96{bottom:563.655000px;}
.yce{bottom:565.095000px;}
.ye9{bottom:570.855000px;}
.y1a{bottom:574.455000px;}
.y5d{bottom:579.135000px;}
.y3f{bottom:580.035000px;}
.y95{bottom:580.935000px;}
.yae{bottom:585.255000px;}
.ye8{bottom:591.555000px;}
.y19{bottom:595.155000px;}
.y94{bottom:595.695000px;}
.ycd{bottom:596.055000px;}
.y10b{bottom:601.635000px;}
.y5c{bottom:610.305000px;}
.y3e{bottom:611.205000px;}
.ye7{bottom:612.285000px;}
.y18{bottom:615.885000px;}
.yad{bottom:616.245000px;}
.y92{bottom:620.025000px;}
.ycc{bottom:627.225000px;}
.y10a{bottom:631.365000px;}
.y17{bottom:636.585000px;}
.y5b{bottom:641.265000px;}
.ye6{bottom:641.985000px;}
.y3d{bottom:642.165000px;}
.yac{bottom:647.205000px;}
.y91{bottom:647.565000px;}
.y109{bottom:652.065000px;}
.y16{bottom:657.285000px;}
.ycb{bottom:658.185000px;}
.y90{bottom:663.405000px;}
.yab{bottom:667.185000px;}
.ye5{bottom:671.685000px;}
.y5a{bottom:672.405000px;}
.y108{bottom:672.765000px;}
.y3c{bottom:673.305000px;}
.y15{bottom:677.985000px;}
.y8f{bottom:680.325000px;}
.yaa{bottom:684.465000px;}
.yca{bottom:689.325000px;}
.y8e{bottom:693.645000px;}
.y14{bottom:698.685000px;}
.ya9{bottom:701.745000px;}
.y107{bottom:702.465000px;}
.y59{bottom:703.365000px;}
.y3b{bottom:704.265000px;}
.y8b{bottom:717.945000px;}
.y13{bottom:719.385000px;}
.yc9{bottom:720.285000px;}
.y106{bottom:723.165000px;}
.y58{bottom:734.505000px;}
.y3a{bottom:735.405000px;}
.y12{bottom:740.085000px;}
.y105{bottom:743.865000px;}
.y8a{bottom:745.485000px;}
.yc8{bottom:751.425000px;}
.y11{bottom:760.785000px;}
.y89{bottom:761.325000px;}
.y57{bottom:765.465000px;}
.y39{bottom:766.365000px;}
.y104{bottom:773.565000px;}
.y10{bottom:781.485000px;}
.yc7{bottom:782.385000px;}
.y88{bottom:789.585000px;}
.y56{bottom:796.605000px;}
.y38{bottom:797.505000px;}
.yc6{bottom:801.645000px;}
.yf{bottom:802.185000px;}
.y103{bottom:803.265000px;}
.ya8{bottom:812.985000px;}
.yc5{bottom:815.505000px;}
.y87{bottom:820.725000px;}
.ye{bottom:822.885000px;}
.y102{bottom:823.965000px;}
.y55{bottom:827.565000px;}
.y37{bottom:828.465000px;}
.yc4{bottom:829.365000px;}
.ya7{bottom:830.265000px;}
.y86{bottom:841.425000px;}
.yc3{bottom:843.045000px;}
.yd{bottom:843.585000px;}
.y101{bottom:844.665000px;}
.yc2{bottom:857.265000px;}
.y54{bottom:858.705000px;}
.y36{bottom:859.605000px;}
.y85{bottom:861.405000px;}
.yc{bottom:864.285000px;}
.y100{bottom:865.365000px;}
.yc1{bottom:869.865000px;}
.yb{bottom:886.290000px;}
.y53{bottom:889.710000px;}
.y35{bottom:890.610000px;}
.yff{bottom:895.110000px;}
.ya{bottom:913.830000px;}
.yfe{bottom:915.810000px;}
.y52{bottom:920.850000px;}
.y34{bottom:921.750000px;}
.y9{bottom:941.550000px;}
.yfd{bottom:945.510000px;}
.y51{bottom:951.810000px;}
.y33{bottom:952.710000px;}
.yfc{bottom:966.210000px;}
.y8{bottom:969.090000px;}
.y50{bottom:982.950000px;}
.y32{bottom:983.850000px;}
.yfb{bottom:995.910000px;}
.y7{bottom:1010.850000px;}
.y4f{bottom:1013.910000px;}
.y31{bottom:1014.810000px;}
.yfa{bottom:1025.610000px;}
.y6{bottom:1040.730000px;}
.y4e{bottom:1045.050000px;}
.y30{bottom:1045.950000px;}
.yf9{bottom:1055.310000px;}
.y5{bottom:1070.430000px;}
.y2f{bottom:1073.130000px;}
.y4d{bottom:1076.010000px;}
.yc0{bottom:1080.150000px;}
.y1{bottom:1233.900000px;}
.ha{height:22.015547px;}
.hc{height:23.580000px;}
.h10{height:23.616000px;}
.hf{height:23.760000px;}
.h9{height:23.940000px;}
.hd{height:30.402422px;}
.hb{height:31.401562px;}
.h12{height:43.246406px;}
.he{height:48.410156px;}
.h5{height:52.628906px;}
.h11{height:53.077852px;}
.h7{height:53.573906px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:37.836000px;}
.w5{width:38.520000px;}
.w7{width:39.960000px;}
.w4{width:40.680000px;}
.w8{width:47.700000px;}
.w3{width:69.480000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:2.700000px;}
.x14{left:4.680000px;}
.x16{left:13.500000px;}
.x15{left:14.580000px;}
.x17{left:16.020000px;}
.x18{left:17.100000px;}
.x1a{left:21.060000px;}
.x19{left:28.980000px;}
.x1b{left:31.860000px;}
.x2{left:106.415987px;}
.x4{left:109.115987px;}
.x5{left:116.315987px;}
.xa{left:148.895987px;}
.xb{left:160.409987px;}
.xc{left:170.309987px;}
.xe{left:177.330000px;}
.xf{left:218.730000px;}
.x9{left:227.549987px;}
.x10{left:257.970000px;}
.x1c{left:292.754987px;}
.x11{left:296.535000px;}
.x8{left:312.734987px;}
.x12{left:337.215000px;}
.x1e{left:382.934987px;}
.x13{left:385.635000px;}
.x6{left:399.494987px;}
.x7{left:446.474987px;}
.x1{left:467.744987px;}
.x1d{left:696.569987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.158933pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001280pt;}
.lsd{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.ls1{letter-spacing:23.040000pt;}
.ls4{letter-spacing:57.263360pt;}
.lsf{letter-spacing:65.408000pt;}
.ls5{letter-spacing:85.888000pt;}
.ls9{letter-spacing:178.698667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-10.319360pt;}
.ws5{word-spacing:-10.160427pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-4.711253pt;}
._e{margin-left:-3.776000pt;}
._f{margin-left:-2.693973pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.029973pt;}
._9{width:2.261333pt;}
._8{width:3.343360pt;}
._11{width:5.104640pt;}
._16{width:6.494720pt;}
._13{width:7.616000pt;}
._10{width:8.896000pt;}
._17{width:10.432000pt;}
._14{width:12.096000pt;}
._15{width:13.056000pt;}
._18{width:14.155520pt;}
._5{width:15.066240pt;}
._12{width:17.130667pt;}
._c{width:18.368000pt;}
._d{width:19.264000pt;}
._a{width:20.480000pt;}
._b{width:21.450667pt;}
._6{width:22.442667pt;}
._7{width:23.503360pt;}
._1d{width:25.408000pt;}
._2{width:27.400107pt;}
._22{width:28.586667pt;}
._21{width:29.696000pt;}
._20{width:30.592000pt;}
._1b{width:32.384000pt;}
._25{width:47.902720pt;}
._1c{width:52.352000pt;}
._4{width:54.042667pt;}
._19{width:56.896000pt;}
._1a{width:58.048000pt;}
._3{width:90.312320pt;}
._28{width:91.631360pt;}
._26{width:101.696000pt;}
._23{width:118.410667pt;}
._24{width:126.848000pt;}
._27{width:154.624000pt;}
._1e{width:175.978667pt;}
.fs6{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.560000pt;}
.y8d{bottom:3.520000pt;}
.y93{bottom:6.240000pt;}
.y8c{bottom:6.400000pt;}
.y4{bottom:72.672000pt;}
.y3{bottom:89.632000pt;}
.y2{bottom:106.432000pt;}
.y84{bottom:124.352000pt;}
.ybf{bottom:126.752000pt;}
.ydb{bottom:128.352000pt;}
.y6b{bottom:130.432000pt;}
.ybe{bottom:140.506667pt;}
.y2e{bottom:142.586667pt;}
.ya6{bottom:147.866667pt;}
.y83{bottom:151.866667pt;}
.ybd{bottom:154.266667pt;}
.y77{bottom:156.026667pt;}
.y4c{bottom:156.826667pt;}
.y6a{bottom:157.946667pt;}
.y2d{bottom:160.986667pt;}
.yf8{bottom:164.986667pt;}
.ybc{bottom:168.026667pt;}
.ye4{bottom:170.266667pt;}
.yda{bottom:171.066667pt;}
.ya5{bottom:175.546667pt;}
.y2c{bottom:179.386667pt;}
.y82{bottom:179.546667pt;}
.ybb{bottom:181.946667pt;}
.yf7{bottom:183.386667pt;}
.y76{bottom:183.546667pt;}
.y4b{bottom:184.346667pt;}
.y69{bottom:185.626667pt;}
.yba{bottom:196.026667pt;}
.y2b{bottom:197.786667pt;}
.ye3{bottom:197.946667pt;}
.yd9{bottom:198.586667pt;}
.yf6{bottom:201.786667pt;}
.ya4{bottom:203.066667pt;}
.y81{bottom:207.066667pt;}
.y75{bottom:211.226667pt;}
.y4a{bottom:212.026667pt;}
.y68{bottom:213.146667pt;}
.y2a{bottom:216.186667pt;}
.yf5{bottom:220.186667pt;}
.yb9{bottom:221.146667pt;}
.ye2{bottom:225.466667pt;}
.yd8{bottom:226.266667pt;}
.ya3{bottom:230.746667pt;}
.y29{bottom:234.586667pt;}
.y80{bottom:234.746667pt;}
.y74{bottom:238.746667pt;}
.y49{bottom:239.546667pt;}
.y67{bottom:240.826667pt;}
.yf4{bottom:246.586667pt;}
.yb8{bottom:248.666667pt;}
.y28{bottom:252.986667pt;}
.ye1{bottom:253.146667pt;}
.yd7{bottom:253.786667pt;}
.ya2{bottom:258.266667pt;}
.y7f{bottom:262.266667pt;}
.yf3{bottom:264.986667pt;}
.y73{bottom:266.426667pt;}
.y48{bottom:267.226667pt;}
.y66{bottom:268.346667pt;}
.y27{bottom:271.386667pt;}
.yb7{bottom:276.346667pt;}
.ye0{bottom:280.666667pt;}
.yd6{bottom:281.466667pt;}
.yf2{bottom:283.386667pt;}
.ya1{bottom:285.946667pt;}
.y26{bottom:289.786667pt;}
.y7e{bottom:289.946667pt;}
.y72{bottom:293.946667pt;}
.y47{bottom:294.746667pt;}
.y65{bottom:296.026667pt;}
.yf1{bottom:301.826667pt;}
.yb6{bottom:303.906667pt;}
.y25{bottom:308.226667pt;}
.ydf{bottom:308.386667pt;}
.yd5{bottom:309.026667pt;}
.ya0{bottom:313.506667pt;}
.y7d{bottom:317.506667pt;}
.y71{bottom:321.666667pt;}
.y46{bottom:322.466667pt;}
.y64{bottom:323.586667pt;}
.y24{bottom:326.626667pt;}
.yf0{bottom:328.226667pt;}
.yb5{bottom:331.586667pt;}
.yde{bottom:335.906667pt;}
.yd4{bottom:336.706667pt;}
.y9f{bottom:341.186667pt;}
.y23{bottom:345.026667pt;}
.yef{bottom:346.626667pt;}
.y70{bottom:349.186667pt;}
.y45{bottom:349.986667pt;}
.y63{bottom:351.266667pt;}
.yb4{bottom:357.026667pt;}
.y22{bottom:363.426667pt;}
.yd3{bottom:364.226667pt;}
.y9e{bottom:368.706667pt;}
.y7c{bottom:372.706667pt;}
.yee{bottom:373.026667pt;}
.y6f{bottom:376.866667pt;}
.y44{bottom:377.666667pt;}
.y62{bottom:378.786667pt;}
.y21{bottom:381.826667pt;}
.yb3{bottom:382.146667pt;}
.ydd{bottom:391.106667pt;}
.yd2{bottom:391.906667pt;}
.y9d{bottom:396.386667pt;}
.yed{bottom:399.426667pt;}
.y20{bottom:400.226667pt;}
.y6e{bottom:404.386667pt;}
.y43{bottom:405.186667pt;}
.y61{bottom:406.466667pt;}
.yb2{bottom:409.826667pt;}
.y9c{bottom:414.146667pt;}
.yec{bottom:417.826667pt;}
.y1f{bottom:418.626667pt;}
.yd1{bottom:419.426667pt;}
.ydc{bottom:423.906667pt;}
.y10f{bottom:426.786667pt;}
.y7b{bottom:427.906667pt;}
.y9b{bottom:429.186667pt;}
.y6d{bottom:432.066667pt;}
.y42{bottom:432.866667pt;}
.y60{bottom:433.986667pt;}
.y1e{bottom:437.026667pt;}
.yb1{bottom:437.346667pt;}
.y9a{bottom:441.026667pt;}
.yeb{bottom:444.226667pt;}
.y10e{bottom:445.186667pt;}
.y7a{bottom:446.306667pt;}
.yd0{bottom:447.106667pt;}
.y1d{bottom:455.426667pt;}
.y5f{bottom:458.146667pt;}
.y6c{bottom:459.586667pt;}
.y41{bottom:460.386667pt;}
.y98{bottom:462.626667pt;}
.y79{bottom:464.066667pt;}
.yb0{bottom:465.026667pt;}
.y10d{bottom:471.586667pt;}
.y1c{bottom:473.826667pt;}
.ycf{bottom:474.626667pt;}
.yea{bottom:481.026667pt;}
.y78{bottom:485.826667pt;}
.y97{bottom:486.946667pt;}
.y5e{bottom:487.266667pt;}
.y40{bottom:488.066667pt;}
.y10c{bottom:489.986667pt;}
.y1b{bottom:492.226667pt;}
.yaf{bottom:492.546667pt;}
.y96{bottom:501.026667pt;}
.yce{bottom:502.306667pt;}
.ye9{bottom:507.426667pt;}
.y1a{bottom:510.626667pt;}
.y5d{bottom:514.786667pt;}
.y3f{bottom:515.586667pt;}
.y95{bottom:516.386667pt;}
.yae{bottom:520.226667pt;}
.ye8{bottom:525.826667pt;}
.y19{bottom:529.026667pt;}
.y94{bottom:529.506667pt;}
.ycd{bottom:529.826667pt;}
.y10b{bottom:534.786667pt;}
.y5c{bottom:542.493333pt;}
.y3e{bottom:543.293333pt;}
.ye7{bottom:544.253333pt;}
.y18{bottom:547.453333pt;}
.yad{bottom:547.773333pt;}
.y92{bottom:551.133333pt;}
.ycc{bottom:557.533333pt;}
.y10a{bottom:561.213333pt;}
.y17{bottom:565.853333pt;}
.y5b{bottom:570.013333pt;}
.ye6{bottom:570.653333pt;}
.y3d{bottom:570.813333pt;}
.yac{bottom:575.293333pt;}
.y91{bottom:575.613333pt;}
.y109{bottom:579.613333pt;}
.y16{bottom:584.253333pt;}
.ycb{bottom:585.053333pt;}
.y90{bottom:589.693333pt;}
.yab{bottom:593.053333pt;}
.ye5{bottom:597.053333pt;}
.y5a{bottom:597.693333pt;}
.y108{bottom:598.013333pt;}
.y3c{bottom:598.493333pt;}
.y15{bottom:602.653333pt;}
.y8f{bottom:604.733333pt;}
.yaa{bottom:608.413333pt;}
.yca{bottom:612.733333pt;}
.y8e{bottom:616.573333pt;}
.y14{bottom:621.053333pt;}
.ya9{bottom:623.773333pt;}
.y107{bottom:624.413333pt;}
.y59{bottom:625.213333pt;}
.y3b{bottom:626.013333pt;}
.y8b{bottom:638.173333pt;}
.y13{bottom:639.453333pt;}
.yc9{bottom:640.253333pt;}
.y106{bottom:642.813333pt;}
.y58{bottom:652.893333pt;}
.y3a{bottom:653.693333pt;}
.y12{bottom:657.853333pt;}
.y105{bottom:661.213333pt;}
.y8a{bottom:662.653333pt;}
.yc8{bottom:667.933333pt;}
.y11{bottom:676.253333pt;}
.y89{bottom:676.733333pt;}
.y57{bottom:680.413333pt;}
.y39{bottom:681.213333pt;}
.y104{bottom:687.613333pt;}
.y10{bottom:694.653333pt;}
.yc7{bottom:695.453333pt;}
.y88{bottom:701.853333pt;}
.y56{bottom:708.093333pt;}
.y38{bottom:708.893333pt;}
.yc6{bottom:712.573333pt;}
.yf{bottom:713.053333pt;}
.y103{bottom:714.013333pt;}
.ya8{bottom:722.653333pt;}
.yc5{bottom:724.893333pt;}
.y87{bottom:729.533333pt;}
.ye{bottom:731.453333pt;}
.y102{bottom:732.413333pt;}
.y55{bottom:735.613333pt;}
.y37{bottom:736.413333pt;}
.yc4{bottom:737.213333pt;}
.ya7{bottom:738.013333pt;}
.y86{bottom:747.933333pt;}
.yc3{bottom:749.373333pt;}
.yd{bottom:749.853333pt;}
.y101{bottom:750.813333pt;}
.yc2{bottom:762.013333pt;}
.y54{bottom:763.293333pt;}
.y36{bottom:764.093333pt;}
.y85{bottom:765.693333pt;}
.yc{bottom:768.253333pt;}
.y100{bottom:769.213333pt;}
.yc1{bottom:773.213333pt;}
.yb{bottom:787.813333pt;}
.y53{bottom:790.853333pt;}
.y35{bottom:791.653333pt;}
.yff{bottom:795.653333pt;}
.ya{bottom:812.293333pt;}
.yfe{bottom:814.053333pt;}
.y52{bottom:818.533333pt;}
.y34{bottom:819.333333pt;}
.y9{bottom:836.933333pt;}
.yfd{bottom:840.453333pt;}
.y51{bottom:846.053333pt;}
.y33{bottom:846.853333pt;}
.yfc{bottom:858.853333pt;}
.y8{bottom:861.413333pt;}
.y50{bottom:873.733333pt;}
.y32{bottom:874.533333pt;}
.yfb{bottom:885.253333pt;}
.y7{bottom:898.533333pt;}
.y4f{bottom:901.253333pt;}
.y31{bottom:902.053333pt;}
.yfa{bottom:911.653333pt;}
.y6{bottom:925.093333pt;}
.y4e{bottom:928.933333pt;}
.y30{bottom:929.733333pt;}
.yf9{bottom:938.053333pt;}
.y5{bottom:951.493333pt;}
.y2f{bottom:953.893333pt;}
.y4d{bottom:956.453333pt;}
.yc0{bottom:960.133333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:19.569375pt;}
.hc{height:20.960000pt;}
.h10{height:20.992000pt;}
.hf{height:21.120000pt;}
.h9{height:21.280000pt;}
.hd{height:27.024375pt;}
.hb{height:27.912500pt;}
.h12{height:38.441250pt;}
.he{height:43.031250pt;}
.h5{height:46.781250pt;}
.h11{height:47.180312pt;}
.h7{height:47.621250pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:33.632000pt;}
.w5{width:34.240000pt;}
.w7{width:35.520000pt;}
.w4{width:36.160000pt;}
.w8{width:42.400000pt;}
.w3{width:61.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.400000pt;}
.x14{left:4.160000pt;}
.x16{left:12.000000pt;}
.x15{left:12.960000pt;}
.x17{left:14.240000pt;}
.x18{left:15.200000pt;}
.x1a{left:18.720000pt;}
.x19{left:25.760000pt;}
.x1b{left:28.320000pt;}
.x2{left:94.591988pt;}
.x4{left:96.991988pt;}
.x5{left:103.391988pt;}
.xa{left:132.351988pt;}
.xb{left:142.586655pt;}
.xc{left:151.386655pt;}
.xe{left:157.626667pt;}
.xf{left:194.426667pt;}
.x9{left:202.266655pt;}
.x10{left:229.306667pt;}
.x1c{left:260.226655pt;}
.x11{left:263.586667pt;}
.x8{left:277.986655pt;}
.x12{left:299.746667pt;}
.x1e{left:340.386655pt;}
.x13{left:342.786667pt;}
.x6{left:355.106655pt;}
.x7{left:396.866655pt;}
.x1{left:415.773322pt;}
.x1d{left:619.173322pt;}
.x3{left:699.333322pt;}
}




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