
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_dcca74c4de71b7a5cfd2f04a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_50eece92f52552c4bb40a538.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_8192ff60feb27286c9079060.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_af59584081f852be40503eb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.813477;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_486ef1111cd50cc8f0a004a1.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_98fe291e36675ca32078642b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4753d4a5534ff19126063fd0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1779d6acbc6f04408a090817.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_89e4ae0e3645aa3edeb8f5ca.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_3e1026f27c8d162e23a04972.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:5.220000px;}
.ls1b{letter-spacing:16.506720px;}
.ls15{letter-spacing:26.586720px;}
.ls14{letter-spacing:43.146720px;}
.ls11{letter-spacing:46.026720px;}
.ls10{letter-spacing:49.626720px;}
.ls13{letter-spacing:59.706720px;}
.ls2{letter-spacing:93.036000px;}
.lsc{letter-spacing:134.586720px;}
.ls18{letter-spacing:134.730720px;}
.lsd{letter-spacing:137.466720px;}
.ls19{letter-spacing:137.610720px;}
.lsb{letter-spacing:151.146720px;}
.ls17{letter-spacing:151.290720px;}
.ls1a{letter-spacing:154.026720px;}
.lsa{letter-spacing:167.706720px;}
.ls16{letter-spacing:167.850720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-4.331520px;}
._1{margin-left:-3.179520px;}
._5{margin-left:-2.063040px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._8{width:2.696400px;}
._7{width:3.877200px;}
._9{width:5.066640px;}
._c{width:6.403680px;}
._a{width:8.256240px;}
._b{width:9.382320px;}
._4{width:11.379840px;}
._3{width:12.736080px;}
._e{width:13.804560px;}
._d{width:16.632960px;}
._11{width:17.789280px;}
._10{width:18.824400px;}
._12{width:20.796480px;}
._13{width:22.010400px;}
._16{width:25.060320px;}
._17{width:26.074800px;}
._14{width:36.773280px;}
._15{width:38.588160px;}
._6{width:93.893040px;}
.fc9{color:rgb(22,29,26);}
.fc7{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(15,17,21);}
.fc6{color:rgb(31,36,60);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(79,129,189);}
.fc8{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y32{bottom:5.760000px;}
.y19{bottom:5.940000px;}
.y7{bottom:14.760000px;}
.y31{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y30{bottom:45.360000px;}
.yd{bottom:58.140000px;}
.y5{bottom:64.080000px;}
.y2f{bottom:65.160000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y3d{bottom:82.800000px;}
.y2e{bottom:85.140000px;}
.y9d{bottom:85.500000px;}
.y4{bottom:86.400000px;}
.y73{bottom:87.300000px;}
.yc0{bottom:94.500000px;}
.y82{bottom:96.300000px;}
.y3c{bottom:102.780000px;}
.y2d{bottom:104.985000px;}
.y9c{bottom:105.300000px;}
.y72{bottom:107.280000px;}
.y9{bottom:107.490000px;}
.ybf{bottom:114.300000px;}
.y81{bottom:116.280000px;}
.y3b{bottom:122.580000px;}
.y3{bottom:122.610000px;}
.y2c{bottom:124.785000px;}
.y9b{bottom:125.280000px;}
.y71{bottom:127.080000px;}
.ybe{bottom:134.280000px;}
.y80{bottom:136.080000px;}
.y8{bottom:136.650000px;}
.y3a{bottom:142.380000px;}
.y2b{bottom:144.585000px;}
.y9a{bottom:145.080000px;}
.y70{bottom:146.880000px;}
.ybd{bottom:154.110000px;}
.y7f{bottom:155.910000px;}
.y39{bottom:162.210000px;}
.y2a{bottom:164.385000px;}
.y99{bottom:164.910000px;}
.y6f{bottom:166.710000px;}
.ybc{bottom:173.910000px;}
.y7e{bottom:175.710000px;}
.y38{bottom:182.010000px;}
.y29{bottom:184.365000px;}
.y98{bottom:184.710000px;}
.y6e{bottom:186.510000px;}
.ybb{bottom:193.710000px;}
.y7d{bottom:195.510000px;}
.y37{bottom:201.990000px;}
.y28{bottom:204.165000px;}
.y97{bottom:204.510000px;}
.y6d{bottom:206.490000px;}
.yba{bottom:213.510000px;}
.y7c{bottom:215.490000px;}
.y36{bottom:221.790000px;}
.y27{bottom:223.965000px;}
.y96{bottom:224.490000px;}
.y6c{bottom:226.290000px;}
.yb9{bottom:233.490000px;}
.y7b{bottom:235.290000px;}
.y35{bottom:241.590000px;}
.y26{bottom:243.765000px;}
.y95{bottom:244.290000px;}
.y6b{bottom:246.090000px;}
.yb8{bottom:253.290000px;}
.y7a{bottom:255.090000px;}
.y34{bottom:261.390000px;}
.y25{bottom:263.565000px;}
.y94{bottom:264.090000px;}
.yb7{bottom:273.090000px;}
.y6a{bottom:274.890000px;}
.y24{bottom:283.545000px;}
.y93{bottom:283.890000px;}
.y33{bottom:290.190000px;}
.yb6{bottom:292.890000px;}
.y69{bottom:294.690000px;}
.y23{bottom:303.345000px;}
.y92{bottom:303.690000px;}
.y1a{bottom:305.130000px;}
.yb5{bottom:312.690000px;}
.y68{bottom:314.670000px;}
.y22{bottom:323.145000px;}
.y91{bottom:323.670000px;}
.yb4{bottom:332.670000px;}
.y67{bottom:334.470000px;}
.y21{bottom:342.945000px;}
.y90{bottom:343.470000px;}
.yb3{bottom:352.470000px;}
.y66{bottom:354.270000px;}
.y20{bottom:362.775000px;}
.y8f{bottom:363.270000px;}
.yb2{bottom:372.270000px;}
.y65{bottom:374.070000px;}
.y1f{bottom:382.755000px;}
.y8e{bottom:383.070000px;}
.yb1{bottom:392.070000px;}
.y64{bottom:393.870000px;}
.y1e{bottom:402.555000px;}
.y8d{bottom:402.915000px;}
.yb0{bottom:411.915000px;}
.y63{bottom:413.895000px;}
.y1d{bottom:422.355000px;}
.y8c{bottom:422.895000px;}
.yaf{bottom:431.895000px;}
.y62{bottom:433.695000px;}
.y1c{bottom:442.155000px;}
.y8b{bottom:442.695000px;}
.yae{bottom:451.695000px;}
.y61{bottom:453.495000px;}
.y1b{bottom:461.955000px;}
.y79{bottom:462.495000px;}
.yad{bottom:471.495000px;}
.y60{bottom:473.295000px;}
.y78{bottom:482.295000px;}
.yac{bottom:491.295000px;}
.y5f{bottom:493.095000px;}
.y77{bottom:502.095000px;}
.yab{bottom:511.095000px;}
.y5e{bottom:513.075000px;}
.y76{bottom:522.075000px;}
.yaa{bottom:531.075000px;}
.y5d{bottom:532.875000px;}
.y75{bottom:541.875000px;}
.ya9{bottom:550.875000px;}
.y5c{bottom:561.675000px;}
.ya8{bottom:570.675000px;}
.y5b{bottom:581.475000px;}
.ya7{bottom:590.475000px;}
.y5a{bottom:601.275000px;}
.ya6{bottom:610.275000px;}
.y59{bottom:621.255000px;}
.ya5{bottom:630.255000px;}
.y58{bottom:641.055000px;}
.ya4{bottom:650.085000px;}
.y57{bottom:660.885000px;}
.ya3{bottom:669.885000px;}
.y56{bottom:680.685000px;}
.ya2{bottom:689.685000px;}
.y55{bottom:700.485000px;}
.ya1{bottom:709.485000px;}
.y54{bottom:720.465000px;}
.ya0{bottom:729.465000px;}
.y53{bottom:740.265000px;}
.y9f{bottom:749.265000px;}
.y52{bottom:760.065000px;}
.y9e{bottom:769.065000px;}
.y51{bottom:779.865000px;}
.y18{bottom:781.845000px;}
.y74{bottom:788.865000px;}
.y8a{bottom:799.665000px;}
.y17{bottom:807.585000px;}
.y50{bottom:808.665000px;}
.y89{bottom:819.645000px;}
.y4f{bottom:828.645000px;}
.y16{bottom:832.605000px;}
.y88{bottom:839.445000px;}
.y4e{bottom:848.445000px;}
.y15{bottom:852.405000px;}
.y87{bottom:859.245000px;}
.y4d{bottom:868.245000px;}
.y14{bottom:872.205000px;}
.y86{bottom:879.045000px;}
.y13{bottom:886.965000px;}
.y4c{bottom:888.045000px;}
.y85{bottom:898.890000px;}
.y4b{bottom:907.890000px;}
.y12{bottom:912.030000px;}
.y84{bottom:918.870000px;}
.y11{bottom:927.150000px;}
.y4a{bottom:927.870000px;}
.y83{bottom:938.670000px;}
.y49{bottom:947.670000px;}
.y10{bottom:948.390000px;}
.y48{bottom:967.470000px;}
.yf{bottom:971.970000px;}
.y47{bottom:987.270000px;}
.ye{bottom:1003.650000px;}
.y46{bottom:1007.070000px;}
.y45{bottom:1027.050000px;}
.yc{bottom:1030.470000px;}
.y1{bottom:1046.850000px;}
.y44{bottom:1066.650000px;}
.y43{bottom:1086.450000px;}
.y42{bottom:1106.250000px;}
.y41{bottom:1126.230000px;}
.y40{bottom:1146.030000px;}
.y3f{bottom:1165.860000px;}
.y3e{bottom:1194.840000px;}
.h3{height:2.864531px;}
.hd{height:19.980000px;}
.hb{height:27.147656px;}
.hc{height:41.726953px;}
.h9{height:42.164648px;}
.hf{height:43.506914px;}
.h7{height:46.251562px;}
.h10{height:49.255313px;}
.ha{height:53.224453px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.he{height:475.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xf{left:58.499987px;}
.xc{left:80.999987px;}
.xe{left:108.035987px;}
.x7{left:109.845000px;}
.x10{left:112.535987px;}
.x5{left:119.385000px;}
.xd{left:135.035987px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xb{left:277.094987px;}
.xa{left:343.875000px;}
.x8{left:681.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:4.640000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls15{letter-spacing:23.632640pt;}
.ls14{letter-spacing:38.352640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls10{letter-spacing:44.112640pt;}
.ls13{letter-spacing:53.072640pt;}
.ls2{letter-spacing:82.698667pt;}
.lsc{letter-spacing:119.632640pt;}
.ls18{letter-spacing:119.760640pt;}
.lsd{letter-spacing:122.192640pt;}
.ls19{letter-spacing:122.320640pt;}
.lsb{letter-spacing:134.352640pt;}
.ls17{letter-spacing:134.480640pt;}
.ls1a{letter-spacing:136.912640pt;}
.lsa{letter-spacing:149.072640pt;}
.ls16{letter-spacing:149.200640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-3.850240pt;}
._1{margin-left:-2.826240pt;}
._5{margin-left:-1.833813pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._8{width:2.396800pt;}
._7{width:3.446400pt;}
._9{width:4.503680pt;}
._c{width:5.692160pt;}
._a{width:7.338880pt;}
._b{width:8.339840pt;}
._4{width:10.115413pt;}
._3{width:11.320960pt;}
._e{width:12.270720pt;}
._d{width:14.784853pt;}
._11{width:15.812693pt;}
._10{width:16.732800pt;}
._12{width:18.485760pt;}
._13{width:19.564800pt;}
._16{width:22.275840pt;}
._17{width:23.177600pt;}
._14{width:32.687360pt;}
._15{width:34.300587pt;}
._6{width:83.460480pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y32{bottom:5.120000pt;}
.y19{bottom:5.280000pt;}
.y7{bottom:13.120000pt;}
.y31{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y30{bottom:40.320000pt;}
.yd{bottom:51.680000pt;}
.y5{bottom:56.960000pt;}
.y2f{bottom:57.920000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y3d{bottom:73.600000pt;}
.y2e{bottom:75.680000pt;}
.y9d{bottom:76.000000pt;}
.y4{bottom:76.800000pt;}
.y73{bottom:77.600000pt;}
.yc0{bottom:84.000000pt;}
.y82{bottom:85.600000pt;}
.y3c{bottom:91.360000pt;}
.y2d{bottom:93.320000pt;}
.y9c{bottom:93.600000pt;}
.y72{bottom:95.360000pt;}
.y9{bottom:95.546667pt;}
.ybf{bottom:101.600000pt;}
.y81{bottom:103.360000pt;}
.y3b{bottom:108.960000pt;}
.y3{bottom:108.986667pt;}
.y2c{bottom:110.920000pt;}
.y9b{bottom:111.360000pt;}
.y71{bottom:112.960000pt;}
.ybe{bottom:119.360000pt;}
.y80{bottom:120.960000pt;}
.y8{bottom:121.466667pt;}
.y3a{bottom:126.560000pt;}
.y2b{bottom:128.520000pt;}
.y9a{bottom:128.960000pt;}
.y70{bottom:130.560000pt;}
.ybd{bottom:136.986667pt;}
.y7f{bottom:138.586667pt;}
.y39{bottom:144.186667pt;}
.y2a{bottom:146.120000pt;}
.y99{bottom:146.586667pt;}
.y6f{bottom:148.186667pt;}
.ybc{bottom:154.586667pt;}
.y7e{bottom:156.186667pt;}
.y38{bottom:161.786667pt;}
.y29{bottom:163.880000pt;}
.y98{bottom:164.186667pt;}
.y6e{bottom:165.786667pt;}
.ybb{bottom:172.186667pt;}
.y7d{bottom:173.786667pt;}
.y37{bottom:179.546667pt;}
.y28{bottom:181.480000pt;}
.y97{bottom:181.786667pt;}
.y6d{bottom:183.546667pt;}
.yba{bottom:189.786667pt;}
.y7c{bottom:191.546667pt;}
.y36{bottom:197.146667pt;}
.y27{bottom:199.080000pt;}
.y96{bottom:199.546667pt;}
.y6c{bottom:201.146667pt;}
.yb9{bottom:207.546667pt;}
.y7b{bottom:209.146667pt;}
.y35{bottom:214.746667pt;}
.y26{bottom:216.680000pt;}
.y95{bottom:217.146667pt;}
.y6b{bottom:218.746667pt;}
.yb8{bottom:225.146667pt;}
.y7a{bottom:226.746667pt;}
.y34{bottom:232.346667pt;}
.y25{bottom:234.280000pt;}
.y94{bottom:234.746667pt;}
.yb7{bottom:242.746667pt;}
.y6a{bottom:244.346667pt;}
.y24{bottom:252.040000pt;}
.y93{bottom:252.346667pt;}
.y33{bottom:257.946667pt;}
.yb6{bottom:260.346667pt;}
.y69{bottom:261.946667pt;}
.y23{bottom:269.640000pt;}
.y92{bottom:269.946667pt;}
.y1a{bottom:271.226667pt;}
.yb5{bottom:277.946667pt;}
.y68{bottom:279.706667pt;}
.y22{bottom:287.240000pt;}
.y91{bottom:287.706667pt;}
.yb4{bottom:295.706667pt;}
.y67{bottom:297.306667pt;}
.y21{bottom:304.840000pt;}
.y90{bottom:305.306667pt;}
.yb3{bottom:313.306667pt;}
.y66{bottom:314.906667pt;}
.y20{bottom:322.466667pt;}
.y8f{bottom:322.906667pt;}
.yb2{bottom:330.906667pt;}
.y65{bottom:332.506667pt;}
.y1f{bottom:340.226667pt;}
.y8e{bottom:340.506667pt;}
.yb1{bottom:348.506667pt;}
.y64{bottom:350.106667pt;}
.y1e{bottom:357.826667pt;}
.y8d{bottom:358.146667pt;}
.yb0{bottom:366.146667pt;}
.y63{bottom:367.906667pt;}
.y1d{bottom:375.426667pt;}
.y8c{bottom:375.906667pt;}
.yaf{bottom:383.906667pt;}
.y62{bottom:385.506667pt;}
.y1c{bottom:393.026667pt;}
.y8b{bottom:393.506667pt;}
.yae{bottom:401.506667pt;}
.y61{bottom:403.106667pt;}
.y1b{bottom:410.626667pt;}
.y79{bottom:411.106667pt;}
.yad{bottom:419.106667pt;}
.y60{bottom:420.706667pt;}
.y78{bottom:428.706667pt;}
.yac{bottom:436.706667pt;}
.y5f{bottom:438.306667pt;}
.y77{bottom:446.306667pt;}
.yab{bottom:454.306667pt;}
.y5e{bottom:456.066667pt;}
.y76{bottom:464.066667pt;}
.yaa{bottom:472.066667pt;}
.y5d{bottom:473.666667pt;}
.y75{bottom:481.666667pt;}
.ya9{bottom:489.666667pt;}
.y5c{bottom:499.266667pt;}
.ya8{bottom:507.266667pt;}
.y5b{bottom:516.866667pt;}
.ya7{bottom:524.866667pt;}
.y5a{bottom:534.466667pt;}
.ya6{bottom:542.466667pt;}
.y59{bottom:552.226667pt;}
.ya5{bottom:560.226667pt;}
.y58{bottom:569.826667pt;}
.ya4{bottom:577.853333pt;}
.y57{bottom:587.453333pt;}
.ya3{bottom:595.453333pt;}
.y56{bottom:605.053333pt;}
.ya2{bottom:613.053333pt;}
.y55{bottom:622.653333pt;}
.ya1{bottom:630.653333pt;}
.y54{bottom:640.413333pt;}
.ya0{bottom:648.413333pt;}
.y53{bottom:658.013333pt;}
.y9f{bottom:666.013333pt;}
.y52{bottom:675.613333pt;}
.y9e{bottom:683.613333pt;}
.y51{bottom:693.213333pt;}
.y18{bottom:694.973333pt;}
.y74{bottom:701.213333pt;}
.y8a{bottom:710.813333pt;}
.y17{bottom:717.853333pt;}
.y50{bottom:718.813333pt;}
.y89{bottom:728.573333pt;}
.y4f{bottom:736.573333pt;}
.y16{bottom:740.093333pt;}
.y88{bottom:746.173333pt;}
.y4e{bottom:754.173333pt;}
.y15{bottom:757.693333pt;}
.y87{bottom:763.773333pt;}
.y4d{bottom:771.773333pt;}
.y14{bottom:775.293333pt;}
.y86{bottom:781.373333pt;}
.y13{bottom:788.413333pt;}
.y4c{bottom:789.373333pt;}
.y85{bottom:799.013333pt;}
.y4b{bottom:807.013333pt;}
.y12{bottom:810.693333pt;}
.y84{bottom:816.773333pt;}
.y11{bottom:824.133333pt;}
.y4a{bottom:824.773333pt;}
.y83{bottom:834.373333pt;}
.y49{bottom:842.373333pt;}
.y10{bottom:843.013333pt;}
.y48{bottom:859.973333pt;}
.yf{bottom:863.973333pt;}
.y47{bottom:877.573333pt;}
.ye{bottom:892.133333pt;}
.y46{bottom:895.173333pt;}
.y45{bottom:912.933333pt;}
.yc{bottom:915.973333pt;}
.y1{bottom:930.533333pt;}
.y44{bottom:948.133333pt;}
.y43{bottom:965.733333pt;}
.y42{bottom:983.333333pt;}
.y41{bottom:1001.093333pt;}
.y40{bottom:1018.693333pt;}
.y3f{bottom:1036.320000pt;}
.y3e{bottom:1062.080000pt;}
.h3{height:2.546250pt;}
.hd{height:17.760000pt;}
.hb{height:24.131250pt;}
.hc{height:37.090625pt;}
.h9{height:37.479688pt;}
.hf{height:38.672812pt;}
.h7{height:41.112500pt;}
.h10{height:43.782500pt;}
.ha{height:47.310625pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.he{height:423.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xf{left:51.999988pt;}
.xc{left:71.999988pt;}
.xe{left:96.031988pt;}
.x7{left:97.640000pt;}
.x10{left:100.031988pt;}
.x5{left:106.120000pt;}
.xd{left:120.031988pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xb{left:246.306655pt;}
.xa{left:305.666667pt;}
.x8{left:605.573333pt;}
}




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