
    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_e6e1a370311c3709db83de75.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_087772ab1046c0a9e09534d8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_b82b9e4759c3846bb4b0d382.woff')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_11c0460ab61fa2f651922575.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_8fd3fe691abad9eeeb0432af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01fb160d67f6f79569af25d3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_5cac0ba60ce9d8487d562ac6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9085efa281b12cdf4089be7a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2fc2518a5eade529ccc70e64.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_46f9aec2f964cd68d700f987.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fa4449eca897060d2cae9581.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916992;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_56348474dcc5204d2400898f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172363;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_adeff588c5493c8d78cb27c6.woff')format("woff");}.ffe{font-family:ffe;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(0.260927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260927,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.512527px;}
.v4{vertical-align:19.820689px;}
.v1{vertical-align:29.940000px;}
.v2{vertical-align:42.150326px;}
.v3{vertical-align:84.300653px;}
.ls5{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.228000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.084000px;}
.ls8{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.600000px;}
.ls9{letter-spacing:1.200000px;}
.ls1{letter-spacing:6.180000px;}
.ls12{letter-spacing:9.000000px;}
.ls10{letter-spacing:13.740000px;}
.lsf{letter-spacing:13.800000px;}
.ls11{letter-spacing:13.860000px;}
.lse{letter-spacing:15.000000px;}
.lsa{letter-spacing:29.580000px;}
.lsd{letter-spacing:40.200000px;}
.lsc{letter-spacing:40.380000px;}
.lsb{letter-spacing:167.448000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws3{word-spacing:-23.040000px;}
.ws6{word-spacing:-21.000000px;}
.ws7{word-spacing:-18.384000px;}
.ws8{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.562235px;}
.ws0{word-spacing:-16.272000px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:0.168000px;}
.wsc{word-spacing:289.630040px;}
.wsa{word-spacing:354.319350px;}
._35{margin-left:-3.828000px;}
._5{margin-left:-2.316000px;}
._0{margin-left:-1.152000px;}
._1{width:1.152000px;}
._4{width:3.024000px;}
._10{width:4.308000px;}
._17{width:5.784000px;}
._16{width:6.816000px;}
._15{width:7.848000px;}
._14{width:9.144000px;}
._18{width:10.200000px;}
._9{width:12.120000px;}
._3{width:13.224000px;}
._6{width:14.340000px;}
._8{width:15.936000px;}
._7{width:17.064000px;}
._2f{width:18.192000px;}
._19{width:19.212000px;}
._24{width:20.328000px;}
._d{width:22.032000px;}
._c{width:23.172000px;}
._1e{width:24.852000px;}
._1f{width:26.298000px;}
._20{width:27.384000px;}
._e{width:28.620000px;}
._f{width:30.408000px;}
._1b{width:31.644000px;}
._30{width:33.324000px;}
._11{width:34.416000px;}
._13{width:35.592000px;}
._12{width:37.116000px;}
._b{width:38.316000px;}
._a{width:39.540000px;}
._1c{width:41.484000px;}
._1d{width:43.440000px;}
._21{width:45.360000px;}
._22{width:46.368000px;}
._29{width:48.420000px;}
._2a{width:53.856000px;}
._36{width:56.484000px;}
._37{width:57.564000px;}
._2c{width:66.600000px;}
._2d{width:67.896000px;}
._31{width:71.808000px;}
._25{width:73.800000px;}
._2b{width:93.384000px;}
._26{width:107.148000px;}
._23{width:108.648000px;}
._27{width:131.628000px;}
._28{width:132.996000px;}
._2e{width:268.500000px;}
._34{width:373.541588px;}
._32{width:427.744276px;}
._33{width:467.038774px;}
._2{width:1512.870000px;}
._1a{width:1514.046000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:70.248938px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:7.200000px;}
.y23{bottom:7.545000px;}
.ya4{bottom:7.684549px;}
.y12{bottom:8.700000px;}
.y16{bottom:9.000000px;}
.ya1{bottom:12.020000px;}
.y53{bottom:14.400000px;}
.y3d{bottom:14.700000px;}
.y43{bottom:14.715000px;}
.ya3{bottom:28.760088px;}
.y25{bottom:30.300000px;}
.y26{bottom:30.900000px;}
.y22{bottom:31.245000px;}
.ya0{bottom:33.095539px;}
.y11{bottom:36.600000px;}
.y45{bottom:45.600000px;}
.y52{bottom:45.615000px;}
.y3c{bottom:45.630000px;}
.y42{bottom:45.645000px;}
.y9f{bottom:54.170702px;}
.y21{bottom:54.930000px;}
.y4{bottom:57.637500px;}
.y14{bottom:63.600000px;}
.y15{bottom:64.500000px;}
.y10{bottom:64.515000px;}
.y9e{bottom:75.245866px;}
.y9a{bottom:76.396250px;}
.y58{bottom:76.500000px;}
.y4c{bottom:76.800000px;}
.y44{bottom:76.815000px;}
.y4a{bottom:76.830000px;}
.y4d{bottom:76.837500px;}
.y41{bottom:76.845000px;}
.y20{bottom:78.930000px;}
.ya2{bottom:79.452128px;}
.yf{bottom:92.145000px;}
.y9d{bottom:96.321028px;}
.yae{bottom:100.837500px;}
.y1f{bottom:102.630000px;}
.y46{bottom:103.237500px;}
.y40{bottom:107.745000px;}
.y50{bottom:108.345000px;}
.ye{bottom:120.045000px;}
.y1d{bottom:125.745000px;}
.y9c{bottom:125.924116px;}
.y1e{bottom:126.330000px;}
.y94{bottom:134.065664px;}
.y99{bottom:136.461720px;}
.yad{bottom:136.837500px;}
.y3f{bottom:138.945000px;}
.y84{bottom:139.237500px;}
.y4f{bottom:139.530000px;}
.y98{bottom:145.995690px;}
.y9b{bottom:146.999281px;}
.yd{bottom:147.645000px;}
.y6a{bottom:152.430000px;}
.y2b{bottom:153.330000px;}
.y93{bottom:155.140828px;}
.y97{bottom:167.070854px;}
.y56{bottom:170.730000px;}
.yac{bottom:173.175000px;}
.yc{bottom:175.545000px;}
.y83{bottom:175.575000px;}
.y96{bottom:187.267895px;}
.y69{bottom:188.775000px;}
.y2a{bottom:189.675000px;}
.y4b{bottom:197.175000px;}
.y92{bottom:197.805499px;}
.y55{bottom:201.630000px;}
.ya{bottom:202.245000px;}
.yb{bottom:203.145000px;}
.y95{bottom:208.343058px;}
.yab{bottom:209.475000px;}
.y82{bottom:211.875000px;}
.y8e{bottom:212.909353px;}
.y68{bottom:224.775000px;}
.y29{bottom:225.975000px;}
.y91{bottom:231.726444px;}
.y48{bottom:233.437500px;}
.y8d{bottom:233.984518px;}
.yaa{bottom:245.475000px;}
.y81{bottom:247.875000px;}
.y90{bottom:252.801607px;}
.y8c{bottom:255.059681px;}
.y67{bottom:261.075000px;}
.y28{bottom:262.275000px;}
.y3a{bottom:264.645000px;}
.y47{bottom:264.667500px;}
.y8f{bottom:268.921609px;}
.y89{bottom:268.921629px;}
.y8b{bottom:276.134843px;}
.ya9{bottom:281.775000px;}
.y80{bottom:284.175000px;}
.y24{bottom:290.175000px;}
.y49{bottom:291.075000px;}
.y39{bottom:295.575000px;}
.y66{bottom:297.375000px;}
.ya8{bottom:318.075000px;}
.y88{bottom:319.226005px;}
.y87{bottom:319.226037px;}
.y7f{bottom:320.475000px;}
.y65{bottom:333.675000px;}
.y1c{bottom:337.575000px;}
.y86{bottom:340.301199px;}
.ya7{bottom:354.405000px;}
.y7e{bottom:356.820000px;}
.y64{bottom:369.705000px;}
.y38{bottom:385.005000px;}
.ya6{bottom:390.405000px;}
.y7d{bottom:392.820000px;}
.y8a{bottom:396.438902px;}
.y63{bottom:406.005000px;}
.y7c{bottom:429.120000px;}
.ya5{bottom:433.005000px;}
.y62{bottom:442.320000px;}
.y85{bottom:461.549959px;}
.y7b{bottom:465.405000px;}
.y61{bottom:478.620000px;}
.y3e{bottom:478.905000px;}
.y7a{bottom:501.705000px;}
.y1b{bottom:504.405000px;}
.y60{bottom:514.650000px;}
.y79{bottom:537.750000px;}
.y1a{bottom:546.450000px;}
.y5f{bottom:550.950000px;}
.ybc{bottom:555.750000px;}
.y78{bottom:574.050000px;}
.y5e{bottom:587.250000px;}
.y19{bottom:589.350000px;}
.ybb{bottom:603.750000px;}
.y77{bottom:610.350000px;}
.y18{bottom:617.250000px;}
.y5d{bottom:623.550000px;}
.y3b{bottom:634.950000px;}
.yba{bottom:640.050000px;}
.y76{bottom:646.650000px;}
.y5c{bottom:659.550000px;}
.y17{bottom:659.850000px;}
.yb9{bottom:676.380000px;}
.y13{bottom:679.380000px;}
.y75{bottom:682.680000px;}
.y5b{bottom:695.880000px;}
.y37{bottom:712.380000px;}
.y74{bottom:718.980000px;}
.y5a{bottom:732.195000px;}
.y36{bottom:746.280000px;}
.yb8{bottom:748.680000px;}
.y73{bottom:755.280000px;}
.y59{bottom:760.680000px;}
.y54{bottom:760.695000px;}
.y9{bottom:762.780000px;}
.y35{bottom:782.580000px;}
.yb7{bottom:784.980000px;}
.y72{bottom:791.580000px;}
.y34{bottom:818.580000px;}
.yb6{bottom:820.980000px;}
.y71{bottom:827.580000px;}
.y33{bottom:854.925000px;}
.yb5{bottom:857.325000px;}
.y70{bottom:863.925000px;}
.y57{bottom:885.825000px;}
.y32{bottom:891.225000px;}
.yb4{bottom:893.625000px;}
.y6f{bottom:900.225000px;}
.y31{bottom:927.525000px;}
.yb3{bottom:929.925000px;}
.y6e{bottom:936.525000px;}
.y30{bottom:963.525000px;}
.yb2{bottom:965.925000px;}
.y6d{bottom:972.525000px;}
.y4e{bottom:979.725000px;}
.y2f{bottom:999.825000px;}
.yb1{bottom:1002.225000px;}
.y8{bottom:1007.625000px;}
.y6c{bottom:1008.825000px;}
.y2e{bottom:1036.170000px;}
.yb0{bottom:1038.570000px;}
.y51{bottom:1042.455000px;}
.y6b{bottom:1045.155000px;}
.y7{bottom:1046.370000px;}
.yaf{bottom:1074.870000px;}
.y2d{bottom:1081.170000px;}
.y6{bottom:1089.255000px;}
.y5{bottom:1116.855000px;}
.y2c{bottom:1117.455000px;}
.y3{bottom:1154.655000px;}
.y2{bottom:1191.000000px;}
.y1{bottom:1227.900000px;}
.h4{height:47.340820px;}
.h12{height:47.400000px;}
.h23{height:49.256580px;}
.h11{height:50.484375px;}
.h5{height:55.623047px;}
.h13{height:58.898438px;}
.hd{height:59.267578px;}
.h15{height:62.137500px;}
.h25{height:65.645508px;}
.h7{height:67.579102px;}
.h2{height:68.859375px;}
.h1f{height:68.945491px;}
.h10{height:70.664062px;}
.hf{height:71.613281px;}
.h22{height:72.458018px;}
.h3{height:73.722656px;}
.ha{height:82.441406px;}
.hc{height:83.400000px;}
.h9{height:83.548828px;}
.hb{height:83.794922px;}
.h6{height:84.656250px;}
.h24{height:86.338763px;}
.h21{height:88.766180px;}
.h1c{height:93.000000px;}
.h17{height:93.300000px;}
.h19{height:93.337500px;}
.h1d{height:124.237500px;}
.he{height:142.837500px;}
.h20{height:153.246144px;}
.h16{height:155.430000px;}
.h1a{height:156.045000px;}
.h1b{height:218.130000px;}
.h8{height:222.030000px;}
.h18{height:281.175000px;}
.h14{height:312.075000px;}
.h1e{height:421.202231px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:141.937500px;}
.w2{width:147.937500px;}
.w4{width:151.245000px;}
.w7{width:184.875000px;}
.w8{width:372.120000px;}
.w5{width:566.880000px;}
.w3{width:570.195000px;}
.w9{width:702.324984px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1f{left:18.900000px;}
.x31{left:33.429214px;}
.x2c{left:37.247150px;}
.x1c{left:40.245000px;}
.x1d{left:42.345000px;}
.x12{left:44.992500px;}
.x24{left:49.705197px;}
.x7{left:50.737500px;}
.x21{left:52.245000px;}
.x16{left:54.345000px;}
.x19{left:55.845000px;}
.x17{left:59.145000px;}
.x11{left:60.637500px;}
.x14{left:68.145000px;}
.x1e{left:70.230000px;}
.x1b{left:72.645000px;}
.x22{left:73.845000px;}
.x18{left:78.345000px;}
.x1a{left:82.537500px;}
.x20{left:86.745000px;}
.x3{left:127.537500px;}
.x1{left:157.830000px;}
.x6{left:170.130000px;}
.x4{left:171.330000px;}
.xb{left:180.075000px;}
.x25{left:208.441558px;}
.x3a{left:212.175000px;}
.x2d{left:216.546170px;}
.x28{left:231.328236px;}
.x27{left:235.884621px;}
.xe{left:241.575000px;}
.x26{left:247.602911px;}
.x29{left:261.861258px;}
.x13{left:270.975000px;}
.x8{left:275.475000px;}
.xf{left:278.775000px;}
.x10{left:293.475000px;}
.x5{left:344.505000px;}
.xd{left:357.420000px;}
.xc{left:358.905000px;}
.x3b{left:380.820000px;}
.x32{left:398.696858px;}
.x39{left:401.263101px;}
.x2a{left:402.768797px;}
.x38{left:406.840745px;}
.x2f{left:413.714600px;}
.x33{left:428.994205px;}
.x2e{left:431.534257px;}
.x15{left:456.750000px;}
.xa{left:499.650000px;}
.x35{left:583.701835px;}
.x2b{left:584.984951px;}
.x37{left:586.503752px;}
.x30{left:592.866976px;}
.x23{left:595.996215px;}
.x34{left:602.032122px;}
.x36{left:605.593436px;}
.x2{left:611.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.122246pt;}
.v4{vertical-align:17.618390pt;}
.v1{vertical-align:26.613333pt;}
.v2{vertical-align:37.466957pt;}
.v3{vertical-align:74.933914pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.074667pt;}
.ls8{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls1{letter-spacing:5.493333pt;}
.ls12{letter-spacing:8.000000pt;}
.ls10{letter-spacing:12.213333pt;}
.lsf{letter-spacing:12.266667pt;}
.ls11{letter-spacing:12.320000pt;}
.lse{letter-spacing:13.333333pt;}
.lsa{letter-spacing:26.293333pt;}
.lsd{letter-spacing:35.733333pt;}
.lsc{letter-spacing:35.893333pt;}
.lsb{letter-spacing:148.842667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws3{word-spacing:-20.480000pt;}
.ws6{word-spacing:-18.666667pt;}
.ws7{word-spacing:-16.341333pt;}
.ws8{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.610875pt;}
.ws0{word-spacing:-14.464000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:0.149333pt;}
.wsc{word-spacing:257.448924pt;}
.wsa{word-spacing:314.950533pt;}
._35{margin-left:-3.402667pt;}
._5{margin-left:-2.058667pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.024000pt;}
._4{width:2.688000pt;}
._10{width:3.829333pt;}
._17{width:5.141333pt;}
._16{width:6.058667pt;}
._15{width:6.976000pt;}
._14{width:8.128000pt;}
._18{width:9.066667pt;}
._9{width:10.773333pt;}
._3{width:11.754667pt;}
._6{width:12.746667pt;}
._8{width:14.165333pt;}
._7{width:15.168000pt;}
._2f{width:16.170667pt;}
._19{width:17.077333pt;}
._24{width:18.069333pt;}
._d{width:19.584000pt;}
._c{width:20.597333pt;}
._1e{width:22.090667pt;}
._1f{width:23.376000pt;}
._20{width:24.341333pt;}
._e{width:25.440000pt;}
._f{width:27.029333pt;}
._1b{width:28.128000pt;}
._30{width:29.621333pt;}
._11{width:30.592000pt;}
._13{width:31.637333pt;}
._12{width:32.992000pt;}
._b{width:34.058667pt;}
._a{width:35.146667pt;}
._1c{width:36.874667pt;}
._1d{width:38.613333pt;}
._21{width:40.320000pt;}
._22{width:41.216000pt;}
._29{width:43.040000pt;}
._2a{width:47.872000pt;}
._36{width:50.208000pt;}
._37{width:51.168000pt;}
._2c{width:59.200000pt;}
._2d{width:60.352000pt;}
._31{width:63.829333pt;}
._25{width:65.600000pt;}
._2b{width:83.008000pt;}
._26{width:95.242667pt;}
._23{width:96.576000pt;}
._27{width:117.002667pt;}
._28{width:118.218667pt;}
._2e{width:238.666667pt;}
._34{width:332.036967pt;}
._32{width:380.217134pt;}
._33{width:415.145577pt;}
._2{width:1344.773333pt;}
._1a{width:1345.818667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:62.443501pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:6.400000pt;}
.y23{bottom:6.706667pt;}
.ya4{bottom:6.830710pt;}
.y12{bottom:7.733333pt;}
.y16{bottom:8.000000pt;}
.ya1{bottom:10.684445pt;}
.y53{bottom:12.800000pt;}
.y3d{bottom:13.066667pt;}
.y43{bottom:13.080000pt;}
.ya3{bottom:25.564523pt;}
.y25{bottom:26.933333pt;}
.y26{bottom:27.466667pt;}
.y22{bottom:27.773333pt;}
.ya0{bottom:29.418257pt;}
.y11{bottom:32.533333pt;}
.y45{bottom:40.533333pt;}
.y52{bottom:40.546667pt;}
.y3c{bottom:40.560000pt;}
.y42{bottom:40.573333pt;}
.y9f{bottom:48.151735pt;}
.y21{bottom:48.826667pt;}
.y4{bottom:51.233333pt;}
.y14{bottom:56.533333pt;}
.y15{bottom:57.333333pt;}
.y10{bottom:57.346667pt;}
.y9e{bottom:66.885215pt;}
.y9a{bottom:67.907778pt;}
.y58{bottom:68.000000pt;}
.y4c{bottom:68.266667pt;}
.y44{bottom:68.280000pt;}
.y4a{bottom:68.293333pt;}
.y4d{bottom:68.300000pt;}
.y41{bottom:68.306667pt;}
.y20{bottom:70.160000pt;}
.ya2{bottom:70.624113pt;}
.yf{bottom:81.906667pt;}
.y9d{bottom:85.618692pt;}
.yae{bottom:89.633333pt;}
.y1f{bottom:91.226667pt;}
.y46{bottom:91.766667pt;}
.y40{bottom:95.773333pt;}
.y50{bottom:96.306667pt;}
.ye{bottom:106.706667pt;}
.y1d{bottom:111.773333pt;}
.y9c{bottom:111.932548pt;}
.y1e{bottom:112.293333pt;}
.y94{bottom:119.169480pt;}
.y99{bottom:121.299307pt;}
.yad{bottom:121.633333pt;}
.y3f{bottom:123.506667pt;}
.y84{bottom:123.766667pt;}
.y4f{bottom:124.026667pt;}
.y98{bottom:129.773947pt;}
.y9b{bottom:130.666027pt;}
.yd{bottom:131.240000pt;}
.y6a{bottom:135.493333pt;}
.y2b{bottom:136.293333pt;}
.y93{bottom:137.902958pt;}
.y97{bottom:148.507425pt;}
.y56{bottom:151.760000pt;}
.yac{bottom:153.933333pt;}
.yc{bottom:156.040000pt;}
.y83{bottom:156.066667pt;}
.y96{bottom:166.460352pt;}
.y69{bottom:167.800000pt;}
.y2a{bottom:168.600000pt;}
.y4b{bottom:175.266667pt;}
.y92{bottom:175.827110pt;}
.y55{bottom:179.226667pt;}
.ya{bottom:179.773333pt;}
.yb{bottom:180.573333pt;}
.y95{bottom:185.193829pt;}
.yab{bottom:186.200000pt;}
.y82{bottom:188.333333pt;}
.y8e{bottom:189.252758pt;}
.y68{bottom:199.800000pt;}
.y29{bottom:200.866667pt;}
.y91{bottom:205.979061pt;}
.y48{bottom:207.500000pt;}
.y8d{bottom:207.986238pt;}
.yaa{bottom:218.200000pt;}
.y81{bottom:220.333333pt;}
.y90{bottom:224.712540pt;}
.y8c{bottom:226.719716pt;}
.y67{bottom:232.066667pt;}
.y28{bottom:233.133333pt;}
.y3a{bottom:235.240000pt;}
.y47{bottom:235.260000pt;}
.y8f{bottom:239.041430pt;}
.y89{bottom:239.041448pt;}
.y8b{bottom:245.453194pt;}
.ya9{bottom:250.466667pt;}
.y80{bottom:252.600000pt;}
.y24{bottom:257.933333pt;}
.y49{bottom:258.733333pt;}
.y39{bottom:262.733333pt;}
.y66{bottom:264.333333pt;}
.ya8{bottom:282.733333pt;}
.y88{bottom:283.756449pt;}
.y87{bottom:283.756477pt;}
.y7f{bottom:284.866667pt;}
.y65{bottom:296.600000pt;}
.y1c{bottom:300.066667pt;}
.y86{bottom:302.489954pt;}
.ya7{bottom:315.026667pt;}
.y7e{bottom:317.173333pt;}
.y64{bottom:328.626667pt;}
.y38{bottom:342.226667pt;}
.ya6{bottom:347.026667pt;}
.y7d{bottom:349.173333pt;}
.y8a{bottom:352.390135pt;}
.y63{bottom:360.893333pt;}
.y7c{bottom:381.440000pt;}
.ya5{bottom:384.893333pt;}
.y62{bottom:393.173333pt;}
.y85{bottom:410.266630pt;}
.y7b{bottom:413.693333pt;}
.y61{bottom:425.440000pt;}
.y3e{bottom:425.693333pt;}
.y7a{bottom:445.960000pt;}
.y1b{bottom:448.360000pt;}
.y60{bottom:457.466667pt;}
.y79{bottom:478.000000pt;}
.y1a{bottom:485.733333pt;}
.y5f{bottom:489.733333pt;}
.ybc{bottom:494.000000pt;}
.y78{bottom:510.266667pt;}
.y5e{bottom:522.000000pt;}
.y19{bottom:523.866667pt;}
.ybb{bottom:536.666667pt;}
.y77{bottom:542.533333pt;}
.y18{bottom:548.666667pt;}
.y5d{bottom:554.266667pt;}
.y3b{bottom:564.400000pt;}
.yba{bottom:568.933333pt;}
.y76{bottom:574.800000pt;}
.y5c{bottom:586.266667pt;}
.y17{bottom:586.533333pt;}
.yb9{bottom:601.226667pt;}
.y13{bottom:603.893333pt;}
.y75{bottom:606.826667pt;}
.y5b{bottom:618.560000pt;}
.y37{bottom:633.226667pt;}
.y74{bottom:639.093333pt;}
.y5a{bottom:650.840000pt;}
.y36{bottom:663.360000pt;}
.yb8{bottom:665.493333pt;}
.y73{bottom:671.360000pt;}
.y59{bottom:676.160000pt;}
.y54{bottom:676.173333pt;}
.y9{bottom:678.026667pt;}
.y35{bottom:695.626667pt;}
.yb7{bottom:697.760000pt;}
.y72{bottom:703.626667pt;}
.y34{bottom:727.626667pt;}
.yb6{bottom:729.760000pt;}
.y71{bottom:735.626667pt;}
.y33{bottom:759.933333pt;}
.yb5{bottom:762.066667pt;}
.y70{bottom:767.933333pt;}
.y57{bottom:787.400000pt;}
.y32{bottom:792.200000pt;}
.yb4{bottom:794.333333pt;}
.y6f{bottom:800.200000pt;}
.y31{bottom:824.466667pt;}
.yb3{bottom:826.600000pt;}
.y6e{bottom:832.466667pt;}
.y30{bottom:856.466667pt;}
.yb2{bottom:858.600000pt;}
.y6d{bottom:864.466667pt;}
.y4e{bottom:870.866667pt;}
.y2f{bottom:888.733333pt;}
.yb1{bottom:890.866667pt;}
.y8{bottom:895.666667pt;}
.y6c{bottom:896.733333pt;}
.y2e{bottom:921.040000pt;}
.yb0{bottom:923.173333pt;}
.y51{bottom:926.626667pt;}
.y6b{bottom:929.026667pt;}
.y7{bottom:930.106667pt;}
.yaf{bottom:955.440000pt;}
.y2d{bottom:961.040000pt;}
.y6{bottom:968.226667pt;}
.y5{bottom:992.760000pt;}
.y2c{bottom:993.293333pt;}
.y3{bottom:1026.360000pt;}
.y2{bottom:1058.666667pt;}
.y1{bottom:1091.466667pt;}
.h4{height:42.080729pt;}
.h12{height:42.133333pt;}
.h23{height:43.783626pt;}
.h11{height:44.875000pt;}
.h5{height:49.442708pt;}
.h13{height:52.354167pt;}
.hd{height:52.682292pt;}
.h15{height:55.233333pt;}
.h25{height:58.351562pt;}
.h7{height:60.070312pt;}
.h2{height:61.208333pt;}
.h1f{height:61.284881pt;}
.h10{height:62.812500pt;}
.hf{height:63.656250pt;}
.h22{height:64.407127pt;}
.h3{height:65.531250pt;}
.ha{height:73.281250pt;}
.hc{height:74.133333pt;}
.h9{height:74.265625pt;}
.hb{height:74.484375pt;}
.h6{height:75.250000pt;}
.h24{height:76.745567pt;}
.h21{height:78.903271pt;}
.h1c{height:82.666667pt;}
.h17{height:82.933333pt;}
.h19{height:82.966667pt;}
.h1d{height:110.433333pt;}
.he{height:126.966667pt;}
.h20{height:136.218795pt;}
.h16{height:138.160000pt;}
.h1a{height:138.706667pt;}
.h1b{height:193.893333pt;}
.h8{height:197.360000pt;}
.h18{height:249.933333pt;}
.h14{height:277.400000pt;}
.h1e{height:374.401983pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:126.166667pt;}
.w2{width:131.500000pt;}
.w4{width:134.440000pt;}
.w7{width:164.333333pt;}
.w8{width:330.773333pt;}
.w5{width:503.893333pt;}
.w3{width:506.840000pt;}
.w9{width:624.288875pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1f{left:16.800000pt;}
.x31{left:29.714857pt;}
.x2c{left:33.108578pt;}
.x1c{left:35.773333pt;}
.x1d{left:37.640000pt;}
.x12{left:39.993333pt;}
.x24{left:44.182398pt;}
.x7{left:45.100000pt;}
.x21{left:46.440000pt;}
.x16{left:48.306667pt;}
.x19{left:49.640000pt;}
.x17{left:52.573333pt;}
.x11{left:53.900000pt;}
.x14{left:60.573333pt;}
.x1e{left:62.426667pt;}
.x1b{left:64.573333pt;}
.x22{left:65.640000pt;}
.x18{left:69.640000pt;}
.x1a{left:73.366667pt;}
.x20{left:77.106667pt;}
.x3{left:113.366667pt;}
.x1{left:140.293333pt;}
.x6{left:151.226667pt;}
.x4{left:152.293333pt;}
.xb{left:160.066667pt;}
.x25{left:185.281385pt;}
.x3a{left:188.600000pt;}
.x2d{left:192.485484pt;}
.x28{left:205.625098pt;}
.x27{left:209.675219pt;}
.xe{left:214.733333pt;}
.x26{left:220.091477pt;}
.x29{left:232.765563pt;}
.x13{left:240.866667pt;}
.x8{left:244.866667pt;}
.xf{left:247.800000pt;}
.x10{left:260.866667pt;}
.x5{left:306.226667pt;}
.xd{left:317.706667pt;}
.xc{left:319.026667pt;}
.x3b{left:338.506667pt;}
.x32{left:354.397207pt;}
.x39{left:356.678312pt;}
.x2a{left:358.016709pt;}
.x38{left:361.636218pt;}
.x2f{left:367.746311pt;}
.x33{left:381.328182pt;}
.x2e{left:383.586007pt;}
.x15{left:406.000000pt;}
.xa{left:444.133333pt;}
.x35{left:518.846075pt;}
.x2b{left:519.986623pt;}
.x37{left:521.336668pt;}
.x30{left:526.992868pt;}
.x23{left:529.774413pt;}
.x34{left:535.139664pt;}
.x36{left:538.305276pt;}
.x2{left:543.626667pt;}
}




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