
    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_27cdc6784123499f4288aa31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5234a3a448bd69fc5d76f7da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924805;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_b69a118fe22cc72fdba22a9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_ca531249c5597687677e3d86.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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:ff8;src:url('chunks/assets/font_2af5361cca2790ca8788b9ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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:ff9;src:url('chunks/assets/font_2c098b94ca0d8eedaf156e29.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a191ac5dd9e4f62c557adbe6.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4d3f99aa72b660ccfd93b99f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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;}
.lsa{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:6.785280px;}
.ls7{letter-spacing:31.080000px;}
.ls9{letter-spacing:33.984000px;}
.ls5{letter-spacing:54.840000px;}
.ls2{letter-spacing:197.976000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.424000px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-7.888320px;}
._0{margin-left:-5.079600px;}
._10{margin-left:-3.240000px;}
._5{margin-left:-2.236320px;}
._3{margin-left:-1.075680px;}
._2{width:1.015920px;}
._1{width:2.988000px;}
._a{width:4.824000px;}
._6{width:5.904000px;}
._7{width:7.488000px;}
._8{width:8.640000px;}
._9{width:9.792000px;}
._e{width:11.304000px;}
._d{width:12.539760px;}
._f{width:13.716720px;}
._16{width:14.931360px;}
._17{width:16.848000px;}
._c{width:19.224000px;}
._13{width:20.232000px;}
._14{width:21.672000px;}
._18{width:22.955760px;}
._15{width:24.240000px;}
._11{width:26.064000px;}
._1b{width:27.144000px;}
._12{width:28.632000px;}
._1c{width:30.168000px;}
._1d{width:31.396080px;}
._19{width:37.440000px;}
._1a{width:38.848080px;}
._b{width:197.976000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:57.960000px;}
.y25{bottom:76.860000px;}
.y4{bottom:97.125005px;}
.y86{bottom:112.500000px;}
.y7d{bottom:115.020000px;}
.y51{bottom:118.080000px;}
.yb1{bottom:134.820000px;}
.y85{bottom:137.520000px;}
.y7c{bottom:138.780000px;}
.y20{bottom:139.264499px;}
.y50{bottom:141.840000px;}
.yb0{bottom:158.760000px;}
.y7b{bottom:162.540000px;}
.y4f{bottom:165.780000px;}
.yaf{bottom:182.520000px;}
.y7a{bottom:186.300000px;}
.y4e{bottom:189.540000px;}
.y17{bottom:196.933500px;}
.yae{bottom:206.310000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yb9{bottom:209.910000px;}
.y79{bottom:210.270000px;}
.y4d{bottom:213.330000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yad{bottom:230.070000px;}
.y78{bottom:234.030000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y4c{bottom:237.090000px;}
.yde{bottom:241.590000px;}
.yac{bottom:254.010000px;}
.yb8{bottom:257.430000px;}
.y77{bottom:257.790000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y4b{bottom:260.850000px;}
.ydd{bottom:264.090000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yab{bottom:277.770000px;}
.yba{bottom:281.190000px;}
.y76{bottom:281.550000px;}
.y4a{bottom:284.790000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ydc{bottom:287.850000px;}
.yaa{bottom:301.530000px;}
.y75{bottom:305.490000px;}
.y49{bottom:308.550000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ydb{bottom:311.610000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ya9{bottom:325.290000px;}
.y74{bottom:329.250000px;}
.y48{bottom:332.310000px;}
.yda{bottom:335.370000px;}
.ye{bottom:348.133500px;}
.ya8{bottom:349.230000px;}
.y73{bottom:353.010000px;}
.y47{bottom:356.070000px;}
.yd9{bottom:359.310000px;}
.ya7{bottom:372.990000px;}
.yb5{bottom:376.410000px;}
.y72{bottom:376.770000px;}
.y46{bottom:380.010000px;}
.yd8{bottom:383.070000px;}
.yd{bottom:386.785499px;}
.ya6{bottom:396.750000px;}
.y71{bottom:400.710000px;}
.y45{bottom:403.410000px;}
.yd7{bottom:406.830000px;}
.yc{bottom:408.044999px;}
.ya5{bottom:420.510000px;}
.y70{bottom:424.470000px;}
.y44{bottom:427.170000px;}
.yd6{bottom:430.590000px;}
.ya4{bottom:444.495000px;}
.y82{bottom:447.915000px;}
.y6f{bottom:448.275000px;}
.y43{bottom:451.335000px;}
.yd5{bottom:454.575000px;}
.ya3{bottom:468.255000px;}
.y81{bottom:471.675000px;}
.y6e{bottom:472.035000px;}
.y42{bottom:475.275000px;}
.yd4{bottom:478.335000px;}
.ya2{bottom:492.015000px;}
.y6d{bottom:495.975000px;}
.y41{bottom:499.035000px;}
.yd3{bottom:502.095000px;}
.yb{bottom:502.864502px;}
.ya1{bottom:515.775000px;}
.y6c{bottom:519.735000px;}
.ya{bottom:520.864502px;}
.y40{bottom:522.795000px;}
.yd2{bottom:525.855000px;}
.y9{bottom:538.864499px;}
.ya0{bottom:539.535000px;}
.yb7{bottom:543.135000px;}
.y6b{bottom:543.495000px;}
.y3f{bottom:546.555000px;}
.yd1{bottom:549.795000px;}
.y8{bottom:556.864499px;}
.y9f{bottom:563.475000px;}
.yb6{bottom:566.895000px;}
.y6a{bottom:567.255000px;}
.y3e{bottom:570.495000px;}
.yd0{bottom:573.555000px;}
.y9e{bottom:587.235000px;}
.yb2{bottom:590.835000px;}
.y69{bottom:591.195000px;}
.y3d{bottom:593.895000px;}
.ycf{bottom:597.315000px;}
.y9d{bottom:610.995000px;}
.y68{bottom:614.955000px;}
.y3c{bottom:617.655000px;}
.yce{bottom:621.075000px;}
.y9c{bottom:634.755000px;}
.y67{bottom:638.715000px;}
.y3b{bottom:641.775000px;}
.ycd{bottom:644.835000px;}
.y7{bottom:645.510000px;}
.y9b{bottom:658.695000px;}
.y66{bottom:662.475000px;}
.y3a{bottom:665.715000px;}
.y6{bottom:666.771000px;}
.ycc{bottom:668.775000px;}
.y9a{bottom:682.485000px;}
.y84{bottom:685.905000px;}
.y65{bottom:686.265000px;}
.y39{bottom:689.505000px;}
.ycb{bottom:692.565000px;}
.y99{bottom:706.245000px;}
.y83{bottom:709.845000px;}
.y64{bottom:710.205000px;}
.y38{bottom:713.265000px;}
.yca{bottom:716.325000px;}
.y5{bottom:726.298500px;}
.y98{bottom:730.005000px;}
.y63{bottom:733.965000px;}
.y37{bottom:737.025000px;}
.yc9{bottom:740.085000px;}
.y3{bottom:752.599495px;}
.y97{bottom:753.945000px;}
.y62{bottom:757.725000px;}
.y36{bottom:760.785000px;}
.yc8{bottom:764.025000px;}
.y96{bottom:777.705000px;}
.y61{bottom:781.485000px;}
.y35{bottom:784.725000px;}
.yc7{bottom:787.785000px;}
.y95{bottom:801.465000px;}
.y60{bottom:805.425000px;}
.y34{bottom:808.485000px;}
.yc6{bottom:811.545000px;}
.y94{bottom:825.225000px;}
.y5f{bottom:829.185000px;}
.y33{bottom:832.245000px;}
.yc5{bottom:835.305000px;}
.y93{bottom:849.165000px;}
.y5e{bottom:852.945000px;}
.y32{bottom:856.005000px;}
.yc4{bottom:859.245000px;}
.y92{bottom:872.925000px;}
.y5d{bottom:876.705000px;}
.y2{bottom:879.369000px;}
.y31{bottom:879.945000px;}
.yc3{bottom:883.005000px;}
.y91{bottom:896.685000px;}
.y5c{bottom:900.645000px;}
.y30{bottom:903.705000px;}
.yc2{bottom:906.765000px;}
.y90{bottom:920.490000px;}
.y5b{bottom:924.450000px;}
.y2f{bottom:927.510000px;}
.yc1{bottom:930.570000px;}
.y8f{bottom:944.430000px;}
.y5a{bottom:948.210000px;}
.y2e{bottom:950.910000px;}
.yc0{bottom:954.510000px;}
.y1{bottom:966.726000px;}
.y8e{bottom:968.190000px;}
.y80{bottom:971.610000px;}
.y59{bottom:971.970000px;}
.y2d{bottom:975.210000px;}
.ybf{bottom:978.270000px;}
.y8d{bottom:991.950000px;}
.yb4{bottom:995.550000px;}
.y58{bottom:995.910000px;}
.y2c{bottom:998.970000px;}
.ybe{bottom:1002.030000px;}
.y8c{bottom:1015.710000px;}
.yb3{bottom:1019.310000px;}
.y57{bottom:1019.670000px;}
.y2b{bottom:1022.370000px;}
.ybd{bottom:1025.790000px;}
.y8b{bottom:1039.650000px;}
.y56{bottom:1043.430000px;}
.y2a{bottom:1046.490000px;}
.ybc{bottom:1046.670000px;}
.y8a{bottom:1063.410000px;}
.y55{bottom:1067.190000px;}
.ybb{bottom:1067.370000px;}
.y29{bottom:1070.070000px;}
.y89{bottom:1087.170000px;}
.y54{bottom:1091.130000px;}
.y28{bottom:1093.830000px;}
.y88{bottom:1112.370000px;}
.y53{bottom:1114.530000px;}
.y7f{bottom:1114.890000px;}
.y27{bottom:1118.850000px;}
.y87{bottom:1137.390000px;}
.y52{bottom:1138.650000px;}
.y24{bottom:1142.430000px;}
.y23{bottom:1161.000000px;}
.y22{bottom:1178.280000px;}
.y7e{bottom:1194.120000px;}
.y21{bottom:1195.560000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.h10{height:64.978594px;}
.ha{height:65.010937px;}
.h12{height:68.084282px;}
.hc{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:72.562500px;}
.h11{height:74.004654px;}
.hf{height:74.953125px;}
.h5{height:78.030000px;}
.hb{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w3{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.xa{left:117.035987px;}
.xc{left:135.035987px;}
.x9{left:162.029987px;}
.xd{left:189.029987px;}
.x4{left:203.484001px;}
.xe{left:216.029987px;}
.x7{left:223.589987px;}
.xb{left:286.814987px;}
.x8{left:403.634987px;}
.x6{left:434.264987px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:6.031360pt;}
.ls7{letter-spacing:27.626667pt;}
.ls9{letter-spacing:30.208000pt;}
.ls5{letter-spacing:48.746667pt;}
.ls2{letter-spacing:175.978667pt;}
.ws6{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-7.011840pt;}
._0{margin-left:-4.515200pt;}
._10{margin-left:-2.880000pt;}
._5{margin-left:-1.987840pt;}
._3{margin-left:-0.956160pt;}
._2{width:0.903040pt;}
._1{width:2.656000pt;}
._a{width:4.288000pt;}
._6{width:5.248000pt;}
._7{width:6.656000pt;}
._8{width:7.680000pt;}
._9{width:8.704000pt;}
._e{width:10.048000pt;}
._d{width:11.146453pt;}
._f{width:12.192640pt;}
._16{width:13.272320pt;}
._17{width:14.976000pt;}
._c{width:17.088000pt;}
._13{width:17.984000pt;}
._14{width:19.264000pt;}
._18{width:20.405120pt;}
._15{width:21.546667pt;}
._11{width:23.168000pt;}
._1b{width:24.128000pt;}
._12{width:25.450667pt;}
._1c{width:26.816000pt;}
._1d{width:27.907627pt;}
._19{width:33.280000pt;}
._1a{width:34.531627pt;}
._b{width:175.978667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:51.520000pt;}
.y25{bottom:68.320000pt;}
.y4{bottom:86.333337pt;}
.y86{bottom:100.000000pt;}
.y7d{bottom:102.240000pt;}
.y51{bottom:104.960000pt;}
.yb1{bottom:119.840000pt;}
.y85{bottom:122.240000pt;}
.y7c{bottom:123.360000pt;}
.y20{bottom:123.790666pt;}
.y50{bottom:126.080000pt;}
.yb0{bottom:141.120000pt;}
.y7b{bottom:144.480000pt;}
.y4f{bottom:147.360000pt;}
.yaf{bottom:162.240000pt;}
.y7a{bottom:165.600000pt;}
.y4e{bottom:168.480000pt;}
.y17{bottom:175.052000pt;}
.yae{bottom:183.386667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yb9{bottom:186.586667pt;}
.y79{bottom:186.906667pt;}
.y4d{bottom:189.626667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yad{bottom:204.506667pt;}
.y78{bottom:208.026667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y4c{bottom:210.746667pt;}
.yde{bottom:214.746667pt;}
.yac{bottom:225.786667pt;}
.yb8{bottom:228.826667pt;}
.y77{bottom:229.146667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y4b{bottom:231.866667pt;}
.ydd{bottom:234.746667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yab{bottom:246.906667pt;}
.yba{bottom:249.946667pt;}
.y76{bottom:250.266667pt;}
.y4a{bottom:253.146667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ydc{bottom:255.866667pt;}
.yaa{bottom:268.026667pt;}
.y75{bottom:271.546667pt;}
.y49{bottom:274.266667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ydb{bottom:276.986667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ya9{bottom:289.146667pt;}
.y74{bottom:292.666667pt;}
.y48{bottom:295.386667pt;}
.yda{bottom:298.106667pt;}
.ye{bottom:309.452000pt;}
.ya8{bottom:310.426667pt;}
.y73{bottom:313.786667pt;}
.y47{bottom:316.506667pt;}
.yd9{bottom:319.386667pt;}
.ya7{bottom:331.546667pt;}
.yb5{bottom:334.586667pt;}
.y72{bottom:334.906667pt;}
.y46{bottom:337.786667pt;}
.yd8{bottom:340.506667pt;}
.yd{bottom:343.809333pt;}
.ya6{bottom:352.666667pt;}
.y71{bottom:356.186667pt;}
.y45{bottom:358.586667pt;}
.yd7{bottom:361.626667pt;}
.yc{bottom:362.706666pt;}
.ya5{bottom:373.786667pt;}
.y70{bottom:377.306667pt;}
.y44{bottom:379.706667pt;}
.yd6{bottom:382.746667pt;}
.ya4{bottom:395.106667pt;}
.y82{bottom:398.146667pt;}
.y6f{bottom:398.466667pt;}
.y43{bottom:401.186667pt;}
.yd5{bottom:404.066667pt;}
.ya3{bottom:416.226667pt;}
.y81{bottom:419.266667pt;}
.y6e{bottom:419.586667pt;}
.y42{bottom:422.466667pt;}
.yd4{bottom:425.186667pt;}
.ya2{bottom:437.346667pt;}
.y6d{bottom:440.866667pt;}
.y41{bottom:443.586667pt;}
.yd3{bottom:446.306667pt;}
.yb{bottom:446.990669pt;}
.ya1{bottom:458.466667pt;}
.y6c{bottom:461.986667pt;}
.ya{bottom:462.990669pt;}
.y40{bottom:464.706667pt;}
.yd2{bottom:467.426667pt;}
.y9{bottom:478.990666pt;}
.ya0{bottom:479.586667pt;}
.yb7{bottom:482.786667pt;}
.y6b{bottom:483.106667pt;}
.y3f{bottom:485.826667pt;}
.yd1{bottom:488.706667pt;}
.y8{bottom:494.990666pt;}
.y9f{bottom:500.866667pt;}
.yb6{bottom:503.906667pt;}
.y6a{bottom:504.226667pt;}
.y3e{bottom:507.106667pt;}
.yd0{bottom:509.826667pt;}
.y9e{bottom:521.986667pt;}
.yb2{bottom:525.186667pt;}
.y69{bottom:525.506667pt;}
.y3d{bottom:527.906667pt;}
.ycf{bottom:530.946667pt;}
.y9d{bottom:543.106667pt;}
.y68{bottom:546.626667pt;}
.y3c{bottom:549.026667pt;}
.yce{bottom:552.066667pt;}
.y9c{bottom:564.226667pt;}
.y67{bottom:567.746667pt;}
.y3b{bottom:570.466667pt;}
.ycd{bottom:573.186667pt;}
.y7{bottom:573.786667pt;}
.y9b{bottom:585.506667pt;}
.y66{bottom:588.866667pt;}
.y3a{bottom:591.746667pt;}
.y6{bottom:592.685334pt;}
.ycc{bottom:594.466667pt;}
.y9a{bottom:606.653333pt;}
.y84{bottom:609.693333pt;}
.y65{bottom:610.013333pt;}
.y39{bottom:612.893333pt;}
.ycb{bottom:615.613333pt;}
.y99{bottom:627.773333pt;}
.y83{bottom:630.973333pt;}
.y64{bottom:631.293333pt;}
.y38{bottom:634.013333pt;}
.yca{bottom:636.733333pt;}
.y5{bottom:645.598667pt;}
.y98{bottom:648.893333pt;}
.y63{bottom:652.413333pt;}
.y37{bottom:655.133333pt;}
.yc9{bottom:657.853333pt;}
.y3{bottom:668.977329pt;}
.y97{bottom:670.173333pt;}
.y62{bottom:673.533333pt;}
.y36{bottom:676.253333pt;}
.yc8{bottom:679.133333pt;}
.y96{bottom:691.293333pt;}
.y61{bottom:694.653333pt;}
.y35{bottom:697.533333pt;}
.yc7{bottom:700.253333pt;}
.y95{bottom:712.413333pt;}
.y60{bottom:715.933333pt;}
.y34{bottom:718.653333pt;}
.yc6{bottom:721.373333pt;}
.y94{bottom:733.533333pt;}
.y5f{bottom:737.053333pt;}
.y33{bottom:739.773333pt;}
.yc5{bottom:742.493333pt;}
.y93{bottom:754.813333pt;}
.y5e{bottom:758.173333pt;}
.y32{bottom:760.893333pt;}
.yc4{bottom:763.773333pt;}
.y92{bottom:775.933333pt;}
.y5d{bottom:779.293333pt;}
.y2{bottom:781.661334pt;}
.y31{bottom:782.173333pt;}
.yc3{bottom:784.893333pt;}
.y91{bottom:797.053333pt;}
.y5c{bottom:800.573333pt;}
.y30{bottom:803.293333pt;}
.yc2{bottom:806.013333pt;}
.y90{bottom:818.213333pt;}
.y5b{bottom:821.733333pt;}
.y2f{bottom:824.453333pt;}
.yc1{bottom:827.173333pt;}
.y8f{bottom:839.493333pt;}
.y5a{bottom:842.853333pt;}
.y2e{bottom:845.253333pt;}
.yc0{bottom:848.453333pt;}
.y1{bottom:859.312000pt;}
.y8e{bottom:860.613333pt;}
.y80{bottom:863.653333pt;}
.y59{bottom:863.973333pt;}
.y2d{bottom:866.853333pt;}
.ybf{bottom:869.573333pt;}
.y8d{bottom:881.733333pt;}
.yb4{bottom:884.933333pt;}
.y58{bottom:885.253333pt;}
.y2c{bottom:887.973333pt;}
.ybe{bottom:890.693333pt;}
.y8c{bottom:902.853333pt;}
.yb3{bottom:906.053333pt;}
.y57{bottom:906.373333pt;}
.y2b{bottom:908.773333pt;}
.ybd{bottom:911.813333pt;}
.y8b{bottom:924.133333pt;}
.y56{bottom:927.493333pt;}
.y2a{bottom:930.213333pt;}
.ybc{bottom:930.373333pt;}
.y8a{bottom:945.253333pt;}
.y55{bottom:948.613333pt;}
.ybb{bottom:948.773333pt;}
.y29{bottom:951.173333pt;}
.y89{bottom:966.373333pt;}
.y54{bottom:969.893333pt;}
.y28{bottom:972.293333pt;}
.y88{bottom:988.773333pt;}
.y53{bottom:990.693333pt;}
.y7f{bottom:991.013333pt;}
.y27{bottom:994.533333pt;}
.y87{bottom:1011.013333pt;}
.y52{bottom:1012.133333pt;}
.y24{bottom:1015.493333pt;}
.y23{bottom:1032.000000pt;}
.y22{bottom:1047.360000pt;}
.y7e{bottom:1061.440000pt;}
.y21{bottom:1062.720000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.h10{height:57.758750pt;}
.ha{height:57.787500pt;}
.h12{height:60.519362pt;}
.hc{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:64.500000pt;}
.h11{height:65.781915pt;}
.hf{height:66.625000pt;}
.h5{height:69.360000pt;}
.hb{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w3{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.xa{left:104.031988pt;}
.xc{left:120.031988pt;}
.x9{left:144.026655pt;}
.xd{left:168.026655pt;}
.x4{left:180.874667pt;}
.xe{left:192.026655pt;}
.x7{left:198.746655pt;}
.xb{left:254.946655pt;}
.x8{left:358.786655pt;}
.x6{left:386.013321pt;}
.x3{left:404.408000pt;}
}




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