
    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_6dc258de68b8d8912be96fc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_4049e7e03b012130b8cb2d96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e50c85f60a4a3eac8073f699.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_ce5aa3d0251ad780bd35180c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_25b2c65e276bb72d720536c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_bc5f3d9ed488b7123856693c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_42ceeba5ea15131ec02edb83.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_050b5b703890c96787f61d63.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_5d96ca51b50aa6d1d2c83e07.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_1f6f8e3e72c7ecac4f052cf9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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:ffe;src:url('chunks/assets/font_fac6f55f441cc7017d97f6f4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.496200px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.109440px;}
.ls4{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls9{letter-spacing:0.262080px;}
.lse{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:39.881280px;}
.lsd{letter-spacing:43.122720px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.wsa{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.283800px;}
.ws3{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.563800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-6.228720px;}
._20{margin-left:-5.197680px;}
._1c{margin-left:-4.173120px;}
._5{margin-left:-2.998080px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._2{width:2.302320px;}
._f{width:3.672000px;}
._12{width:5.670000px;}
._13{width:7.560000px;}
._16{width:8.784000px;}
._7{width:10.052640px;}
._6{width:11.178000px;}
._14{width:12.428640px;}
._21{width:13.529520px;}
._11{width:14.530320px;}
._10{width:15.552000px;}
._b{width:17.334000px;}
._a{width:18.522000px;}
._3{width:19.560000px;}
._4{width:20.562000px;}
._15{width:21.566640px;}
._19{width:23.515200px;}
._1a{width:25.384320px;}
._1b{width:26.562240px;}
._18{width:28.633680px;}
._17{width:29.808000px;}
._1d{width:31.048560px;}
._23{width:32.523840px;}
._1e{width:34.378560px;}
._9{width:36.396000px;}
._8{width:37.530000px;}
._22{width:38.764800px;}
._e{width:43.416000px;}
._d{width:55.528320px;}
._c{width:56.700000px;}
._24{width:60.874560px;}
._25{width:67.896000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.880000px;}
.y2{bottom:6.480000px;}
.y4b{bottom:9.900000px;}
.y4c{bottom:11.340000px;}
.y40{bottom:18.360000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y3f{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3e{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3d{bottom:64.980000px;}
.y3c{bottom:80.460000px;}
.y3b{bottom:96.120000px;}
.y82{bottom:108.720000px;}
.y3a{bottom:111.600000px;}
.y8b{bottom:112.320000px;}
.y50{bottom:118.980000px;}
.y81{bottom:122.580000px;}
.y39{bottom:127.080000px;}
.y8a{bottom:134.100000px;}
.y80{bottom:136.296000px;}
.y91{bottom:137.016000px;}
.y4f{bottom:140.976000px;}
.y38{bottom:142.605000px;}
.y7f{bottom:150.150000px;}
.y7e{bottom:154.650000px;}
.y89{bottom:156.090000px;}
.y37{bottom:158.265000px;}
.y4e{bottom:162.750000px;}
.y87{bottom:164.010000px;}
.y7d{bottom:164.730000px;}
.y86{bottom:168.510000px;}
.y36{bottom:173.745000px;}
.y96{bottom:177.690000px;}
.y88{bottom:177.870000px;}
.y4d{bottom:178.230000px;}
.y85{bottom:178.410000px;}
.y95{bottom:182.190000px;}
.y35{bottom:189.225000px;}
.y94{bottom:192.270000px;}
.y7c{bottom:199.650000px;}
.y4a{bottom:200.370000px;}
.y34{bottom:204.705000px;}
.y33{bottom:220.365000px;}
.y7b{bottom:221.430000px;}
.y49{bottom:231.870000px;}
.y32{bottom:235.845000px;}
.y7a{bottom:243.390000px;}
.y13{bottom:247.350000px;}
.y31{bottom:251.325000px;}
.y79{bottom:265.170000px;}
.y30{bottom:266.805000px;}
.y2f{bottom:282.465000px;}
.y78{bottom:286.950000px;}
.y2e{bottom:297.945000px;}
.y77{bottom:308.730000px;}
.y2d{bottom:313.425000px;}
.y2c{bottom:328.905000px;}
.y76{bottom:330.510000px;}
.y8f{bottom:336.450000px;}
.y2b{bottom:344.385000px;}
.y75{bottom:352.470000px;}
.y2a{bottom:360.045000px;}
.y48{bottom:371.745000px;}
.y74{bottom:374.250000px;}
.y29{bottom:375.525000px;}
.y47{bottom:385.425000px;}
.y28{bottom:391.005000px;}
.y73{bottom:396.075000px;}
.y46{bottom:399.315000px;}
.y27{bottom:406.515000px;}
.y45{bottom:413.175000px;}
.y72{bottom:417.855000px;}
.y26{bottom:422.175000px;}
.y44{bottom:426.855000px;}
.y25{bottom:437.655000px;}
.y71{bottom:439.815000px;}
.y43{bottom:440.715000px;}
.y24{bottom:453.135000px;}
.y42{bottom:454.575000px;}
.y70{bottom:461.595000px;}
.y23{bottom:468.615000px;}
.y6f{bottom:483.375000px;}
.y22{bottom:484.275000px;}
.y90{bottom:489.315000px;}
.y21{bottom:499.755000px;}
.y6e{bottom:505.155000px;}
.y20{bottom:515.235000px;}
.y6d{bottom:526.935000px;}
.y1f{bottom:530.715000px;}
.y8d{bottom:532.875000px;}
.y1e{bottom:546.375000px;}
.y6c{bottom:548.895000px;}
.y8e{bottom:554.835000px;}
.y1d{bottom:561.855000px;}
.y6b{bottom:570.675000px;}
.y1c{bottom:577.335000px;}
.y6a{bottom:592.455000px;}
.y1b{bottom:592.815000px;}
.y1a{bottom:608.475000px;}
.y69{bottom:614.235000px;}
.y19{bottom:623.955000px;}
.y68{bottom:636.195000px;}
.y18{bottom:639.435000px;}
.y17{bottom:654.960000px;}
.y66{bottom:658.005000px;}
.y67{bottom:663.945000px;}
.y16{bottom:670.620000px;}
.y65{bottom:679.785000px;}
.y15{bottom:686.100000px;}
.y64{bottom:701.565000px;}
.y14{bottom:701.580000px;}
.y63{bottom:723.345000px;}
.y93{bottom:729.285000px;}
.y62{bottom:745.305000px;}
.y61{bottom:767.085000px;}
.y60{bottom:788.865000px;}
.y5f{bottom:810.645000px;}
.y5e{bottom:832.605000px;}
.y92{bottom:838.545000px;}
.y5d{bottom:854.385000px;}
.y5c{bottom:876.165000px;}
.y5a{bottom:897.990000px;}
.y5b{bottom:903.930000px;}
.y59{bottom:919.770000px;}
.y84{bottom:925.710000px;}
.y58{bottom:941.730000px;}
.y57{bottom:963.510000px;}
.y12{bottom:965.130000px;}
.y11{bottom:983.670000px;}
.y56{bottom:985.290000px;}
.y10{bottom:1000.950000px;}
.y55{bottom:1007.070000px;}
.y83{bottom:1013.010000px;}
.yf{bottom:1023.450000px;}
.y54{bottom:1029.030000px;}
.ye{bottom:1035.870000px;}
.y53{bottom:1050.810000px;}
.yd{bottom:1053.690000px;}
.yc{bottom:1069.170000px;}
.y52{bottom:1072.590000px;}
.y8c{bottom:1078.530000px;}
.yb{bottom:1091.670000px;}
.y51{bottom:1094.370000px;}
.y9{bottom:1113.090000px;}
.y1{bottom:1131.630000px;}
.h14{height:15.480000px;}
.h1a{height:21.114844px;}
.hb{height:27.147656px;}
.h19{height:29.158594px;}
.h15{height:31.500000px;}
.h9{height:33.683203px;}
.h12{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.h13{height:39.760312px;}
.h1c{height:40.655391px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h11{height:44.507812px;}
.hd{height:44.860781px;}
.h18{height:46.251562px;}
.h16{height:46.736719px;}
.hc{height:48.027656px;}
.h1b{height:48.224531px;}
.h6{height:49.255313px;}
.h17{height:50.391562px;}
.h4{height:50.800781px;}
.ha{height:53.224453px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.he{height:714.165000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:71.820000px;}
.w4{width:209.190000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.575000px;}
.w3{width:428.115000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x13{left:29.694000px;}
.x6{left:44.640000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:98.316000px;}
.x9{left:106.415987px;}
.x1c{left:110.195987px;}
.x34{left:113.975987px;}
.x12{left:122.616000px;}
.xb{left:124.595987px;}
.x8{left:132.345000px;}
.x21{left:133.415987px;}
.x35{left:142.415987px;}
.x26{left:145.475987px;}
.x2b{left:154.649987px;}
.x16{left:160.409987px;}
.xe{left:161.669987px;}
.x3{left:170.130000px;}
.x19{left:236.549973px;}
.x1a{left:241.769987px;}
.x10{left:256.889987px;}
.xc{left:268.589987px;}
.xd{left:288.254987px;}
.x1f{left:313.634973px;}
.x20{left:318.854987px;}
.x1b{left:322.454987px;}
.x2e{left:387.434973px;}
.x2f{left:397.874987px;}
.xf{left:401.114987px;}
.x14{left:420.375000px;}
.x22{left:450.254973px;}
.x17{left:453.674973px;}
.x23{left:455.474987px;}
.x18{left:458.894987px;}
.x30{left:467.924973px;}
.x31{left:478.364987px;}
.xa{left:501.944987px;}
.x1d{left:513.464973px;}
.x1e{left:518.684987px;}
.x24{left:552.344973px;}
.x25{left:557.564987px;}
.x11{left:565.485000px;}
.x5{left:598.245000px;}
.x29{left:634.064973px;}
.x2a{left:639.284987px;}
.x27{left:662.549973px;}
.x28{left:667.769987px;}
.x32{left:731.669973px;}
.x33{left:742.109987px;}
.x15{left:779.729987px;}
.x2c{left:781.709973px;}
.x2d{left:786.929987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.441067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.097280pt;}
.ls4{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls9{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:35.450027pt;}
.lsd{letter-spacing:38.331307pt;}
.ws9{word-spacing:-58.880000pt;}
.wsa{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws3{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.278933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-5.536640pt;}
._20{margin-left:-4.620160pt;}
._1c{margin-left:-3.709440pt;}
._5{margin-left:-2.664960pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._2{width:2.046507pt;}
._f{width:3.264000pt;}
._12{width:5.040000pt;}
._13{width:6.720000pt;}
._16{width:7.808000pt;}
._7{width:8.935680pt;}
._6{width:9.936000pt;}
._14{width:11.047680pt;}
._21{width:12.026240pt;}
._11{width:12.915840pt;}
._10{width:13.824000pt;}
._b{width:15.408000pt;}
._a{width:16.464000pt;}
._3{width:17.386667pt;}
._4{width:18.277333pt;}
._15{width:19.170347pt;}
._19{width:20.902400pt;}
._1a{width:22.563840pt;}
._1b{width:23.610880pt;}
._18{width:25.452160pt;}
._17{width:26.496000pt;}
._1d{width:27.598720pt;}
._23{width:28.910080pt;}
._1e{width:30.558720pt;}
._9{width:32.352000pt;}
._8{width:33.360000pt;}
._22{width:34.457600pt;}
._e{width:38.592000pt;}
._d{width:49.358507pt;}
._c{width:50.400000pt;}
._24{width:54.110720pt;}
._25{width:60.352000pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.560000pt;}
.y2{bottom:5.760000pt;}
.y4b{bottom:8.800000pt;}
.y4c{bottom:10.080000pt;}
.y40{bottom:16.320000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y3f{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3e{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3d{bottom:57.760000pt;}
.y3c{bottom:71.520000pt;}
.y3b{bottom:85.440000pt;}
.y82{bottom:96.640000pt;}
.y3a{bottom:99.200000pt;}
.y8b{bottom:99.840000pt;}
.y50{bottom:105.760000pt;}
.y81{bottom:108.960000pt;}
.y39{bottom:112.960000pt;}
.y8a{bottom:119.200000pt;}
.y80{bottom:121.152000pt;}
.y91{bottom:121.792000pt;}
.y4f{bottom:125.312000pt;}
.y38{bottom:126.760000pt;}
.y7f{bottom:133.466667pt;}
.y7e{bottom:137.466667pt;}
.y89{bottom:138.746667pt;}
.y37{bottom:140.680000pt;}
.y4e{bottom:144.666667pt;}
.y87{bottom:145.786667pt;}
.y7d{bottom:146.426667pt;}
.y86{bottom:149.786667pt;}
.y36{bottom:154.440000pt;}
.y96{bottom:157.946667pt;}
.y88{bottom:158.106667pt;}
.y4d{bottom:158.426667pt;}
.y85{bottom:158.586667pt;}
.y95{bottom:161.946667pt;}
.y35{bottom:168.200000pt;}
.y94{bottom:170.906667pt;}
.y7c{bottom:177.466667pt;}
.y4a{bottom:178.106667pt;}
.y34{bottom:181.960000pt;}
.y33{bottom:195.880000pt;}
.y7b{bottom:196.826667pt;}
.y49{bottom:206.106667pt;}
.y32{bottom:209.640000pt;}
.y7a{bottom:216.346667pt;}
.y13{bottom:219.866667pt;}
.y31{bottom:223.400000pt;}
.y79{bottom:235.706667pt;}
.y30{bottom:237.160000pt;}
.y2f{bottom:251.080000pt;}
.y78{bottom:255.066667pt;}
.y2e{bottom:264.840000pt;}
.y77{bottom:274.426667pt;}
.y2d{bottom:278.600000pt;}
.y2c{bottom:292.360000pt;}
.y76{bottom:293.786667pt;}
.y8f{bottom:299.066667pt;}
.y2b{bottom:306.120000pt;}
.y75{bottom:313.306667pt;}
.y2a{bottom:320.040000pt;}
.y48{bottom:330.440000pt;}
.y74{bottom:332.666667pt;}
.y29{bottom:333.800000pt;}
.y47{bottom:342.600000pt;}
.y28{bottom:347.560000pt;}
.y73{bottom:352.066667pt;}
.y46{bottom:354.946667pt;}
.y27{bottom:361.346667pt;}
.y45{bottom:367.266667pt;}
.y72{bottom:371.426667pt;}
.y26{bottom:375.266667pt;}
.y44{bottom:379.426667pt;}
.y25{bottom:389.026667pt;}
.y71{bottom:390.946667pt;}
.y43{bottom:391.746667pt;}
.y24{bottom:402.786667pt;}
.y42{bottom:404.066667pt;}
.y70{bottom:410.306667pt;}
.y23{bottom:416.546667pt;}
.y6f{bottom:429.666667pt;}
.y22{bottom:430.466667pt;}
.y90{bottom:434.946667pt;}
.y21{bottom:444.226667pt;}
.y6e{bottom:449.026667pt;}
.y20{bottom:457.986667pt;}
.y6d{bottom:468.386667pt;}
.y1f{bottom:471.746667pt;}
.y8d{bottom:473.666667pt;}
.y1e{bottom:485.666667pt;}
.y6c{bottom:487.906667pt;}
.y8e{bottom:493.186667pt;}
.y1d{bottom:499.426667pt;}
.y6b{bottom:507.266667pt;}
.y1c{bottom:513.186667pt;}
.y6a{bottom:526.626667pt;}
.y1b{bottom:526.946667pt;}
.y1a{bottom:540.866667pt;}
.y69{bottom:545.986667pt;}
.y19{bottom:554.626667pt;}
.y68{bottom:565.506667pt;}
.y18{bottom:568.386667pt;}
.y17{bottom:582.186667pt;}
.y66{bottom:584.893333pt;}
.y67{bottom:590.173333pt;}
.y16{bottom:596.106667pt;}
.y65{bottom:604.253333pt;}
.y15{bottom:609.866667pt;}
.y64{bottom:623.613333pt;}
.y14{bottom:623.626667pt;}
.y63{bottom:642.973333pt;}
.y93{bottom:648.253333pt;}
.y62{bottom:662.493333pt;}
.y61{bottom:681.853333pt;}
.y60{bottom:701.213333pt;}
.y5f{bottom:720.573333pt;}
.y5e{bottom:740.093333pt;}
.y92{bottom:745.373333pt;}
.y5d{bottom:759.453333pt;}
.y5c{bottom:778.813333pt;}
.y5a{bottom:798.213333pt;}
.y5b{bottom:803.493333pt;}
.y59{bottom:817.573333pt;}
.y84{bottom:822.853333pt;}
.y58{bottom:837.093333pt;}
.y57{bottom:856.453333pt;}
.y12{bottom:857.893333pt;}
.y11{bottom:874.373333pt;}
.y56{bottom:875.813333pt;}
.y10{bottom:889.733333pt;}
.y55{bottom:895.173333pt;}
.y83{bottom:900.453333pt;}
.yf{bottom:909.733333pt;}
.y54{bottom:914.693333pt;}
.ye{bottom:920.773333pt;}
.y53{bottom:934.053333pt;}
.yd{bottom:936.613333pt;}
.yc{bottom:950.373333pt;}
.y52{bottom:953.413333pt;}
.y8c{bottom:958.693333pt;}
.yb{bottom:970.373333pt;}
.y51{bottom:972.773333pt;}
.y9{bottom:989.413333pt;}
.y1{bottom:1005.893333pt;}
.h14{height:13.760000pt;}
.h1a{height:18.768750pt;}
.hb{height:24.131250pt;}
.h19{height:25.918750pt;}
.h15{height:28.000000pt;}
.h9{height:29.940625pt;}
.h12{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.h13{height:35.342500pt;}
.h1c{height:36.138125pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h11{height:39.562500pt;}
.hd{height:39.876250pt;}
.h18{height:41.112500pt;}
.h16{height:41.543750pt;}
.hc{height:42.691250pt;}
.h1b{height:42.866250pt;}
.h6{height:43.782500pt;}
.h17{height:44.792500pt;}
.h4{height:45.156250pt;}
.ha{height:47.310625pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.he{height:634.813333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:63.840000pt;}
.w4{width:185.946667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.066667pt;}
.w3{width:380.546667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x13{left:26.394667pt;}
.x6{left:39.680000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:87.392000pt;}
.x9{left:94.591988pt;}
.x1c{left:97.951988pt;}
.x34{left:101.311988pt;}
.x12{left:108.992000pt;}
.xb{left:110.751988pt;}
.x8{left:117.640000pt;}
.x21{left:118.591988pt;}
.x35{left:126.591988pt;}
.x26{left:129.311988pt;}
.x2b{left:137.466655pt;}
.x16{left:142.586655pt;}
.xe{left:143.706655pt;}
.x3{left:151.226667pt;}
.x19{left:210.266643pt;}
.x1a{left:214.906655pt;}
.x10{left:228.346655pt;}
.xc{left:238.746655pt;}
.xd{left:256.226655pt;}
.x1f{left:278.786643pt;}
.x20{left:283.426655pt;}
.x1b{left:286.626655pt;}
.x2e{left:344.386643pt;}
.x2f{left:353.666655pt;}
.xf{left:356.546655pt;}
.x14{left:373.666667pt;}
.x22{left:400.226643pt;}
.x17{left:403.266643pt;}
.x23{left:404.866655pt;}
.x18{left:407.906655pt;}
.x30{left:415.933310pt;}
.x31{left:425.213322pt;}
.xa{left:446.173322pt;}
.x1d{left:456.413310pt;}
.x1e{left:461.053322pt;}
.x24{left:490.973310pt;}
.x25{left:495.613322pt;}
.x11{left:502.653333pt;}
.x5{left:531.773333pt;}
.x29{left:563.613310pt;}
.x2a{left:568.253322pt;}
.x27{left:588.933310pt;}
.x28{left:593.573322pt;}
.x32{left:650.373310pt;}
.x33{left:659.653322pt;}
.x15{left:693.093322pt;}
.x2c{left:694.853310pt;}
.x2d{left:699.493322pt;}
}




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