
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9df7267d2418e23a8c3d678a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_329ac513a0f2268ab2fc7f6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1b76bf55927f104129a8a0bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_de107c2b20c74601dc9db4a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_5ccc509e9f1f2db45cbca925.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_44e93a7424a4306bef01e007.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-4.332000px;}
.ls1a{letter-spacing:-0.978000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls17{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.107400px;}
.ls12{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.052560px;}
.lse{letter-spacing:-0.038880px;}
.lsd{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls8{letter-spacing:0.100800px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.211680px;}
.ls19{letter-spacing:0.285600px;}
.ls1{letter-spacing:0.351360px;}
.ls16{letter-spacing:0.357000px;}
.ls1c{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385800px;}
.ls13{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:17.092800px;}
.ls1d{letter-spacing:47.466720px;}
.lsf{letter-spacing:64.026720px;}
.ls1b{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws9{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsd{word-spacing:-13.813200px;}
.ws11{word-spacing:-13.504200px;}
.ws14{word-spacing:-13.432800px;}
.ws4{word-spacing:-13.160400px;}
.ws10{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.111200px;}
.wsa{word-spacing:-13.108320px;}
.wse{word-spacing:-13.094640px;}
.wsc{word-spacing:-13.093920px;}
.ws13{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.921000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.408040px;}
._12{margin-left:-5.247840px;}
._f{margin-left:-3.387365px;}
._6{margin-left:-2.365199px;}
._0{margin-left:-1.159200px;}
._1{width:1.110000px;}
._4{width:2.343360px;}
._3{width:4.107012px;}
._8{width:5.264963px;}
._9{width:6.274800px;}
._e{width:7.281840px;}
._2{width:8.761128px;}
._b{width:10.247388px;}
._a{width:11.593201px;}
._5{width:15.178801px;}
._11{width:16.221117px;}
._14{width:17.730720px;}
._13{width:19.481760px;}
._10{width:20.736720px;}
._c{width:31.996801px;}
._d{width:33.842159px;}
._7{width:36.154800px;}
._17{width:43.161360px;}
._16{width:72.633840px;}
._15{width:82.409040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:7.920000px;}
.ybb{bottom:7.965000px;}
.yc2{bottom:25.380000px;}
.ybf{bottom:25.560000px;}
.yba{bottom:25.605000px;}
.yc1{bottom:43.020000px;}
.yc6{bottom:43.050000px;}
.ybe{bottom:43.200000px;}
.yc7{bottom:43.230000px;}
.yc5{bottom:60.690000px;}
.y2{bottom:73.260000px;}
.y2a{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y5c{bottom:112.500000px;}
.yc8{bottom:112.860000px;}
.y9d{bottom:120.240000px;}
.yed{bottom:122.040000px;}
.yc4{bottom:124.920000px;}
.y9c{bottom:137.880000px;}
.yec{bottom:139.680000px;}
.y28{bottom:140.760000px;}
.y11a{bottom:142.920000px;}
.y5b{bottom:147.960000px;}
.y27{bottom:158.400000px;}
.y76{bottom:162.570000px;}
.y5a{bottom:165.630000px;}
.yeb{bottom:166.530000px;}
.y119{bottom:169.410000px;}
.y9b{bottom:173.370000px;}
.y26{bottom:176.070000px;}
.y59{bottom:183.270000px;}
.y118{bottom:187.050000px;}
.y9a{bottom:191.010000px;}
.y25{bottom:193.530000px;}
.y75{bottom:198.210000px;}
.y58{bottom:200.910000px;}
.yea{bottom:203.610000px;}
.yc3{bottom:205.050000px;}
.y99{bottom:208.650000px;}
.y24{bottom:211.170000px;}
.y117{bottom:213.690000px;}
.y74{bottom:215.670000px;}
.y57{bottom:218.370000px;}
.ye9{bottom:221.250000px;}
.y98{bottom:226.110000px;}
.y116{bottom:231.330000px;}
.y73{bottom:234.210000px;}
.y56{bottom:236.010000px;}
.y23{bottom:237.990000px;}
.ye8{bottom:248.070000px;}
.yc0{bottom:250.050000px;}
.y72{bottom:251.670000px;}
.y55{bottom:253.650000px;}
.y115{bottom:257.790000px;}
.y97{bottom:261.750000px;}
.y54{bottom:271.110000px;}
.y114{bottom:275.430000px;}
.y96{bottom:279.390000px;}
.ye7{bottom:285.150000px;}
.y22{bottom:286.590000px;}
.y71{bottom:288.210000px;}
.y113{bottom:293.070000px;}
.y95{bottom:297.030000px;}
.ye6{bottom:302.610000px;}
.y53{bottom:306.750000px;}
.ybd{bottom:312.510000px;}
.y94{bottom:314.490000px;}
.y112{bottom:319.530000px;}
.y70{bottom:320.430000px;}
.ye5{bottom:321.150000px;}
.y21{bottom:323.670000px;}
.y52{bottom:324.390000px;}
.y93{bottom:332.130000px;}
.y111{bottom:337.170000px;}
.ye4{bottom:338.610000px;}
.y20{bottom:341.310000px;}
.y51{bottom:342.030000px;}
.y110{bottom:354.810000px;}
.y1f{bottom:358.950000px;}
.y50{bottom:359.490000px;}
.y92{bottom:367.590000px;}
.y10f{bottom:372.270000px;}
.ybc{bottom:374.970000px;}
.ye3{bottom:375.150000px;}
.y1e{bottom:376.410000px;}
.y4f{bottom:377.130000px;}
.y91{bottom:385.230000px;}
.y1d{bottom:394.050000px;}
.y4e{bottom:394.770000px;}
.y10e{bottom:398.910000px;}
.ye2{bottom:401.970000px;}
.yb9{bottom:402.330000px;}
.y90{bottom:402.870000px;}
.y1c{bottom:411.735000px;}
.y4d{bottom:412.275000px;}
.y10d{bottom:416.595000px;}
.y8f{bottom:420.555000px;}
.y1b{bottom:429.195000px;}
.y4c{bottom:429.915000px;}
.y8e{bottom:438.015000px;}
.ye1{bottom:439.095000px;}
.y10c{bottom:443.055000px;}
.y1a{bottom:446.835000px;}
.yb7{bottom:447.375000px;}
.y4b{bottom:447.555000px;}
.y8d{bottom:455.655000px;}
.ye0{bottom:456.735000px;}
.y10b{bottom:460.695000px;}
.y19{bottom:464.475000px;}
.y4a{bottom:465.015000px;}
.ydf{bottom:474.375000px;}
.y10a{bottom:478.335000px;}
.y49{bottom:482.655000px;}
.y8c{bottom:491.295000px;}
.yde{bottom:491.835000px;}
.yb6{bottom:495.975000px;}
.y18{bottom:499.935000px;}
.y48{bottom:500.295000px;}
.y109{bottom:504.795000px;}
.y8b{bottom:508.935000px;}
.y17{bottom:517.575000px;}
.y47{bottom:517.935000px;}
.ydd{bottom:518.835000px;}
.y108{bottom:522.435000px;}
.yb5{bottom:531.615000px;}
.y16{bottom:535.215000px;}
.y8a{bottom:535.395000px;}
.y107{bottom:540.075000px;}
.yb4{bottom:549.255000px;}
.y15{bottom:552.855000px;}
.y46{bottom:553.395000px;}
.ydc{bottom:556.095000px;}
.y106{bottom:566.535000px;}
.yb3{bottom:566.895000px;}
.y14{bottom:570.315000px;}
.y45{bottom:571.035000px;}
.y105{bottom:584.175000px;}
.yb2{bottom:584.355000px;}
.y13{bottom:587.955000px;}
.y44{bottom:588.675000px;}
.y6f{bottom:593.715000px;}
.yb1{bottom:601.995000px;}
.ydb{bottom:604.335000px;}
.y12{bottom:605.595000px;}
.y43{bottom:606.135000px;}
.y104{bottom:610.815000px;}
.y6e{bottom:611.355000px;}
.yb0{bottom:619.635000px;}
.yda{bottom:621.975000px;}
.y11{bottom:623.055000px;}
.y103{bottom:628.455000px;}
.y6d{bottom:628.995000px;}
.yaf{bottom:637.275000px;}
.yd9{bottom:639.615000px;}
.y42{bottom:641.775000px;}
.y102{bottom:646.095000px;}
.y6c{bottom:646.635000px;}
.y10{bottom:649.875000px;}
.yd8{bottom:657.285000px;}
.y41{bottom:659.445000px;}
.y101{bottom:663.585000px;}
.yae{bottom:672.765000px;}
.yd7{bottom:674.745000px;}
.y40{bottom:676.905000px;}
.y6b{bottom:682.125000px;}
.y100{bottom:690.225000px;}
.yad{bottom:690.405000px;}
.yd6{bottom:692.385000px;}
.y3f{bottom:694.545000px;}
.yf{bottom:698.325000px;}
.y6a{bottom:699.765000px;}
.yff{bottom:707.865000px;}
.yac{bottom:708.045000px;}
.y3e{bottom:712.185000px;}
.y69{bottom:717.405000px;}
.yd5{bottom:719.205000px;}
.yab{bottom:725.505000px;}
.y89{bottom:729.645000px;}
.ye{bottom:734.145000px;}
.yfe{bottom:734.325000px;}
.y68{bottom:735.045000px;}
.y3d{bottom:738.825000px;}
.yaa{bottom:743.145000px;}
.y88{bottom:747.285000px;}
.yfd{bottom:751.965000px;}
.y67{bottom:752.505000px;}
.yd4{bottom:767.445000px;}
.yd{bottom:770.145000px;}
.yfc{bottom:778.425000px;}
.ya9{bottom:778.605000px;}
.y87{bottom:782.925000px;}
.y3c{bottom:787.245000px;}
.y66{bottom:787.785000px;}
.yd3{bottom:794.445000px;}
.yfb{bottom:796.065000px;}
.ya8{bottom:796.245000px;}
.y86{bottom:800.565000px;}
.y3b{bottom:804.885000px;}
.y65{bottom:805.245000px;}
.yc{bottom:809.925000px;}
.ya7{bottom:813.885000px;}
.y85{bottom:818.025000px;}
.yfa{bottom:822.705000px;}
.y64{bottom:822.885000px;}
.yb{bottom:827.925000px;}
.ya6{bottom:831.525000px;}
.y84{bottom:835.665000px;}
.yf9{bottom:840.345000px;}
.y3a{bottom:840.525000px;}
.ya{bottom:845.925000px;}
.ya5{bottom:849.165000px;}
.y83{bottom:853.305000px;}
.y39{bottom:858.165000px;}
.y9{bottom:863.925000px;}
.ya4{bottom:866.625000px;}
.yf8{bottom:866.805000px;}
.y38{bottom:875.625000px;}
.y8{bottom:881.925000px;}
.ya3{bottom:884.265000px;}
.yf7{bottom:884.445000px;}
.y82{bottom:888.765000px;}
.y37{bottom:893.265000px;}
.y63{bottom:893.625000px;}
.y7{bottom:899.925000px;}
.ya2{bottom:901.950000px;}
.y81{bottom:906.450000px;}
.y36{bottom:910.950000px;}
.yf6{bottom:911.130000px;}
.y62{bottom:911.310000px;}
.ya1{bottom:919.410000px;}
.y80{bottom:924.090000px;}
.yf5{bottom:928.770000px;}
.y61{bottom:928.950000px;}
.y6{bottom:932.190000px;}
.yd2{bottom:937.410000px;}
.y7f{bottom:941.550000px;}
.ya0{bottom:946.050000px;}
.y35{bottom:946.410000px;}
.y5{bottom:951.630000px;}
.yd1{bottom:955.050000px;}
.yf4{bottom:955.230000px;}
.y7e{bottom:959.190000px;}
.y34{bottom:964.050000px;}
.yd0{bottom:972.690000px;}
.yf3{bottom:972.870000px;}
.y7d{bottom:976.830000px;}
.y9f{bottom:981.510000px;}
.y33{bottom:981.690000px;}
.y4{bottom:989.790000px;}
.ycf{bottom:990.150000px;}
.y7c{bottom:994.470000px;}
.y32{bottom:999.150000px;}
.yf2{bottom:999.690000px;}
.yce{bottom:1007.790000px;}
.y3{bottom:1014.450000px;}
.y31{bottom:1016.790000px;}
.y60{bottom:1017.150000px;}
.y7b{bottom:1029.930000px;}
.y30{bottom:1034.430000px;}
.y5f{bottom:1034.790000px;}
.ycd{bottom:1043.430000px;}
.y7a{bottom:1047.570000px;}
.yf1{bottom:1047.930000px;}
.y9e{bottom:1052.070000px;}
.y5e{bottom:1052.430000px;}
.y11b{bottom:1060.890000px;}
.ycc{bottom:1061.070000px;}
.y79{bottom:1065.210000px;}
.y2f{bottom:1069.890000px;}
.y5d{bottom:1070.070000px;}
.yf0{bottom:1074.930000px;}
.ycb{bottom:1078.530000px;}
.y2e{bottom:1087.530000px;}
.y78{bottom:1091.670000px;}
.yca{bottom:1096.170000px;}
.y2d{bottom:1105.170000px;}
.yef{bottom:1112.010000px;}
.yc9{bottom:1113.810000px;}
.y2c{bottom:1122.810000px;}
.y77{bottom:1127.490000px;}
.yee{bottom:1138.830000px;}
.y2b{bottom:1140.270000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.640000px;}
.h2{height:31.585078px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.h12{height:41.974453px;}
.h10{height:44.280000px;}
.he{height:44.316000px;}
.h7{height:51.998203px;}
.h9{height:52.465078px;}
.h13{height:56.084062px;}
.h5{height:57.636562px;}
.h8{height:58.154062px;}
.hb{height:61.423863px;}
.hf{height:61.740000px;}
.hc{height:62.211094px;}
.ha{height:68.956875px;}
.h4{height:73.298672px;}
.h11{height:79.416000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:122.076000px;}
.w4{width:254.190000px;}
.w5{width:378.075000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:95.075987px;}
.xc{left:111.275987px;}
.x7{left:122.075987px;}
.x5{left:144.035987px;}
.x9{left:191.550000px;}
.x2{left:251.669987px;}
.xb{left:339.374987px;}
.xa{left:446.475000px;}
.x3{left:800.429987px;}
.x4{left:821.309987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-3.850667pt;}
.ls1a{letter-spacing:-0.869333pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls17{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.046720pt;}
.lse{letter-spacing:-0.034560pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls8{letter-spacing:0.089600pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.188160pt;}
.ls19{letter-spacing:0.253867pt;}
.ls1{letter-spacing:0.312320pt;}
.ls16{letter-spacing:0.317333pt;}
.ls1c{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342933pt;}
.ls13{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:15.193600pt;}
.ls1d{letter-spacing:42.192640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls1b{letter-spacing:72.400640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws9{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.278400pt;}
.ws11{word-spacing:-12.003733pt;}
.ws14{word-spacing:-11.940267pt;}
.ws4{word-spacing:-11.698133pt;}
.ws10{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.654400pt;}
.wsa{word-spacing:-11.651840pt;}
.wse{word-spacing:-11.639680pt;}
.wsc{word-spacing:-11.639040pt;}
.ws13{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.485333pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.140480pt;}
._12{margin-left:-4.664747pt;}
._f{margin-left:-3.010991pt;}
._6{margin-left:-2.102399pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.986667pt;}
._4{width:2.082987pt;}
._3{width:3.650678pt;}
._8{width:4.679967pt;}
._9{width:5.577600pt;}
._e{width:6.472747pt;}
._2{width:7.787670pt;}
._b{width:9.108789pt;}
._a{width:10.305068pt;}
._5{width:13.492268pt;}
._11{width:14.418771pt;}
._14{width:15.760640pt;}
._13{width:17.317120pt;}
._10{width:18.432640pt;}
._c{width:28.441601pt;}
._d{width:30.081919pt;}
._7{width:32.137600pt;}
._17{width:38.365653pt;}
._16{width:64.563413pt;}
._15{width:73.252480pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:7.040000pt;}
.ybb{bottom:7.080000pt;}
.yc2{bottom:22.560000pt;}
.ybf{bottom:22.720000pt;}
.yba{bottom:22.760000pt;}
.yc1{bottom:38.240000pt;}
.yc6{bottom:38.266667pt;}
.ybe{bottom:38.400000pt;}
.yc7{bottom:38.426667pt;}
.yc5{bottom:53.946667pt;}
.y2{bottom:65.120000pt;}
.y2a{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y5c{bottom:100.000000pt;}
.yc8{bottom:100.320000pt;}
.y9d{bottom:106.880000pt;}
.yed{bottom:108.480000pt;}
.yc4{bottom:111.040000pt;}
.y9c{bottom:122.560000pt;}
.yec{bottom:124.160000pt;}
.y28{bottom:125.120000pt;}
.y11a{bottom:127.040000pt;}
.y5b{bottom:131.520000pt;}
.y27{bottom:140.800000pt;}
.y76{bottom:144.506667pt;}
.y5a{bottom:147.226667pt;}
.yeb{bottom:148.026667pt;}
.y119{bottom:150.586667pt;}
.y9b{bottom:154.106667pt;}
.y26{bottom:156.506667pt;}
.y59{bottom:162.906667pt;}
.y118{bottom:166.266667pt;}
.y9a{bottom:169.786667pt;}
.y25{bottom:172.026667pt;}
.y75{bottom:176.186667pt;}
.y58{bottom:178.586667pt;}
.yea{bottom:180.986667pt;}
.yc3{bottom:182.266667pt;}
.y99{bottom:185.466667pt;}
.y24{bottom:187.706667pt;}
.y117{bottom:189.946667pt;}
.y74{bottom:191.706667pt;}
.y57{bottom:194.106667pt;}
.ye9{bottom:196.666667pt;}
.y98{bottom:200.986667pt;}
.y116{bottom:205.626667pt;}
.y73{bottom:208.186667pt;}
.y56{bottom:209.786667pt;}
.y23{bottom:211.546667pt;}
.ye8{bottom:220.506667pt;}
.yc0{bottom:222.266667pt;}
.y72{bottom:223.706667pt;}
.y55{bottom:225.466667pt;}
.y115{bottom:229.146667pt;}
.y97{bottom:232.666667pt;}
.y54{bottom:240.986667pt;}
.y114{bottom:244.826667pt;}
.y96{bottom:248.346667pt;}
.ye7{bottom:253.466667pt;}
.y22{bottom:254.746667pt;}
.y71{bottom:256.186667pt;}
.y113{bottom:260.506667pt;}
.y95{bottom:264.026667pt;}
.ye6{bottom:268.986667pt;}
.y53{bottom:272.666667pt;}
.ybd{bottom:277.786667pt;}
.y94{bottom:279.546667pt;}
.y112{bottom:284.026667pt;}
.y70{bottom:284.826667pt;}
.ye5{bottom:285.466667pt;}
.y21{bottom:287.706667pt;}
.y52{bottom:288.346667pt;}
.y93{bottom:295.226667pt;}
.y111{bottom:299.706667pt;}
.ye4{bottom:300.986667pt;}
.y20{bottom:303.386667pt;}
.y51{bottom:304.026667pt;}
.y110{bottom:315.386667pt;}
.y1f{bottom:319.066667pt;}
.y50{bottom:319.546667pt;}
.y92{bottom:326.746667pt;}
.y10f{bottom:330.906667pt;}
.ybc{bottom:333.306667pt;}
.ye3{bottom:333.466667pt;}
.y1e{bottom:334.586667pt;}
.y4f{bottom:335.226667pt;}
.y91{bottom:342.426667pt;}
.y1d{bottom:350.266667pt;}
.y4e{bottom:350.906667pt;}
.y10e{bottom:354.586667pt;}
.ye2{bottom:357.306667pt;}
.yb9{bottom:357.626667pt;}
.y90{bottom:358.106667pt;}
.y1c{bottom:365.986667pt;}
.y4d{bottom:366.466667pt;}
.y10d{bottom:370.306667pt;}
.y8f{bottom:373.826667pt;}
.y1b{bottom:381.506667pt;}
.y4c{bottom:382.146667pt;}
.y8e{bottom:389.346667pt;}
.ye1{bottom:390.306667pt;}
.y10c{bottom:393.826667pt;}
.y1a{bottom:397.186667pt;}
.yb7{bottom:397.666667pt;}
.y4b{bottom:397.826667pt;}
.y8d{bottom:405.026667pt;}
.ye0{bottom:405.986667pt;}
.y10b{bottom:409.506667pt;}
.y19{bottom:412.866667pt;}
.y4a{bottom:413.346667pt;}
.ydf{bottom:421.666667pt;}
.y10a{bottom:425.186667pt;}
.y49{bottom:429.026667pt;}
.y8c{bottom:436.706667pt;}
.yde{bottom:437.186667pt;}
.yb6{bottom:440.866667pt;}
.y18{bottom:444.386667pt;}
.y48{bottom:444.706667pt;}
.y109{bottom:448.706667pt;}
.y8b{bottom:452.386667pt;}
.y17{bottom:460.066667pt;}
.y47{bottom:460.386667pt;}
.ydd{bottom:461.186667pt;}
.y108{bottom:464.386667pt;}
.yb5{bottom:472.546667pt;}
.y16{bottom:475.746667pt;}
.y8a{bottom:475.906667pt;}
.y107{bottom:480.066667pt;}
.yb4{bottom:488.226667pt;}
.y15{bottom:491.426667pt;}
.y46{bottom:491.906667pt;}
.ydc{bottom:494.306667pt;}
.y106{bottom:503.586667pt;}
.yb3{bottom:503.906667pt;}
.y14{bottom:506.946667pt;}
.y45{bottom:507.586667pt;}
.y105{bottom:519.266667pt;}
.yb2{bottom:519.426667pt;}
.y13{bottom:522.626667pt;}
.y44{bottom:523.266667pt;}
.y6f{bottom:527.746667pt;}
.yb1{bottom:535.106667pt;}
.ydb{bottom:537.186667pt;}
.y12{bottom:538.306667pt;}
.y43{bottom:538.786667pt;}
.y104{bottom:542.946667pt;}
.y6e{bottom:543.426667pt;}
.yb0{bottom:550.786667pt;}
.yda{bottom:552.866667pt;}
.y11{bottom:553.826667pt;}
.y103{bottom:558.626667pt;}
.y6d{bottom:559.106667pt;}
.yaf{bottom:566.466667pt;}
.yd9{bottom:568.546667pt;}
.y42{bottom:570.466667pt;}
.y102{bottom:574.306667pt;}
.y6c{bottom:574.786667pt;}
.y10{bottom:577.666667pt;}
.yd8{bottom:584.253333pt;}
.y41{bottom:586.173333pt;}
.y101{bottom:589.853333pt;}
.yae{bottom:598.013333pt;}
.yd7{bottom:599.773333pt;}
.y40{bottom:601.693333pt;}
.y6b{bottom:606.333333pt;}
.y100{bottom:613.533333pt;}
.yad{bottom:613.693333pt;}
.yd6{bottom:615.453333pt;}
.y3f{bottom:617.373333pt;}
.yf{bottom:620.733333pt;}
.y6a{bottom:622.013333pt;}
.yff{bottom:629.213333pt;}
.yac{bottom:629.373333pt;}
.y3e{bottom:633.053333pt;}
.y69{bottom:637.693333pt;}
.yd5{bottom:639.293333pt;}
.yab{bottom:644.893333pt;}
.y89{bottom:648.573333pt;}
.ye{bottom:652.573333pt;}
.yfe{bottom:652.733333pt;}
.y68{bottom:653.373333pt;}
.y3d{bottom:656.733333pt;}
.yaa{bottom:660.573333pt;}
.y88{bottom:664.253333pt;}
.yfd{bottom:668.413333pt;}
.y67{bottom:668.893333pt;}
.yd4{bottom:682.173333pt;}
.yd{bottom:684.573333pt;}
.yfc{bottom:691.933333pt;}
.ya9{bottom:692.093333pt;}
.y87{bottom:695.933333pt;}
.y3c{bottom:699.773333pt;}
.y66{bottom:700.253333pt;}
.yd3{bottom:706.173333pt;}
.yfb{bottom:707.613333pt;}
.ya8{bottom:707.773333pt;}
.y86{bottom:711.613333pt;}
.y3b{bottom:715.453333pt;}
.y65{bottom:715.773333pt;}
.yc{bottom:719.933333pt;}
.ya7{bottom:723.453333pt;}
.y85{bottom:727.133333pt;}
.yfa{bottom:731.293333pt;}
.y64{bottom:731.453333pt;}
.yb{bottom:735.933333pt;}
.ya6{bottom:739.133333pt;}
.y84{bottom:742.813333pt;}
.yf9{bottom:746.973333pt;}
.y3a{bottom:747.133333pt;}
.ya{bottom:751.933333pt;}
.ya5{bottom:754.813333pt;}
.y83{bottom:758.493333pt;}
.y39{bottom:762.813333pt;}
.y9{bottom:767.933333pt;}
.ya4{bottom:770.333333pt;}
.yf8{bottom:770.493333pt;}
.y38{bottom:778.333333pt;}
.y8{bottom:783.933333pt;}
.ya3{bottom:786.013333pt;}
.yf7{bottom:786.173333pt;}
.y82{bottom:790.013333pt;}
.y37{bottom:794.013333pt;}
.y63{bottom:794.333333pt;}
.y7{bottom:799.933333pt;}
.ya2{bottom:801.733333pt;}
.y81{bottom:805.733333pt;}
.y36{bottom:809.733333pt;}
.yf6{bottom:809.893333pt;}
.y62{bottom:810.053333pt;}
.ya1{bottom:817.253333pt;}
.y80{bottom:821.413333pt;}
.yf5{bottom:825.573333pt;}
.y61{bottom:825.733333pt;}
.y6{bottom:828.613333pt;}
.yd2{bottom:833.253333pt;}
.y7f{bottom:836.933333pt;}
.ya0{bottom:840.933333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:845.893333pt;}
.yd1{bottom:848.933333pt;}
.yf4{bottom:849.093333pt;}
.y7e{bottom:852.613333pt;}
.y34{bottom:856.933333pt;}
.yd0{bottom:864.613333pt;}
.yf3{bottom:864.773333pt;}
.y7d{bottom:868.293333pt;}
.y9f{bottom:872.453333pt;}
.y33{bottom:872.613333pt;}
.y4{bottom:879.813333pt;}
.ycf{bottom:880.133333pt;}
.y7c{bottom:883.973333pt;}
.y32{bottom:888.133333pt;}
.yf2{bottom:888.613333pt;}
.yce{bottom:895.813333pt;}
.y3{bottom:901.733333pt;}
.y31{bottom:903.813333pt;}
.y60{bottom:904.133333pt;}
.y7b{bottom:915.493333pt;}
.y30{bottom:919.493333pt;}
.y5f{bottom:919.813333pt;}
.ycd{bottom:927.493333pt;}
.y7a{bottom:931.173333pt;}
.yf1{bottom:931.493333pt;}
.y9e{bottom:935.173333pt;}
.y5e{bottom:935.493333pt;}
.y11b{bottom:943.013333pt;}
.ycc{bottom:943.173333pt;}
.y79{bottom:946.853333pt;}
.y2f{bottom:951.013333pt;}
.y5d{bottom:951.173333pt;}
.yf0{bottom:955.493333pt;}
.ycb{bottom:958.693333pt;}
.y2e{bottom:966.693333pt;}
.y78{bottom:970.373333pt;}
.yca{bottom:974.373333pt;}
.y2d{bottom:982.373333pt;}
.yef{bottom:988.453333pt;}
.yc9{bottom:990.053333pt;}
.y2c{bottom:998.053333pt;}
.y77{bottom:1002.213333pt;}
.yee{bottom:1012.293333pt;}
.y2b{bottom:1013.573333pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.680000pt;}
.h2{height:28.075625pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.h12{height:37.310625pt;}
.h10{height:39.360000pt;}
.he{height:39.392000pt;}
.h7{height:46.220625pt;}
.h9{height:46.635625pt;}
.h13{height:49.852500pt;}
.h5{height:51.232500pt;}
.h8{height:51.692500pt;}
.hb{height:54.598989pt;}
.hf{height:54.880000pt;}
.hc{height:55.298750pt;}
.ha{height:61.295000pt;}
.h4{height:65.154375pt;}
.h11{height:70.592000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:108.512000pt;}
.w4{width:225.946667pt;}
.w5{width:336.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:84.511988pt;}
.xc{left:98.911988pt;}
.x7{left:108.511988pt;}
.x5{left:128.031988pt;}
.x9{left:170.266667pt;}
.x2{left:223.706655pt;}
.xb{left:301.666655pt;}
.xa{left:396.866667pt;}
.x3{left:711.493322pt;}
.x4{left:730.053322pt;}
}




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