
    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_f19c632d6508debd81975e15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f736284ed789f582f8daa9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_c5f2a1f6603c2c4ba562b849.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_1a6874ab8ee25919cfaa0f8e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04757dc3d4e97e05cb186c01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_fc14f0d7308dc639ecded797.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_847c003eb83bce9447868bbe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_ab78baa487c92bd60c8a3451.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3768adbb49728ba12ffa7730.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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.066240px;}
.ls12{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.233280px;}
.lsd{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.460200px;}
.ls1c{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.666000px;}
.ls7{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.340000px;}
.ls13{letter-spacing:3.060000px;}
.ls19{letter-spacing:11.676000px;}
.ls18{letter-spacing:11.700000px;}
.ls1d{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.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;}
}
.ws0{word-spacing:-17.818560px;}
.ws1{word-spacing:-16.493760px;}
.wse{word-spacing:-15.400200px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.166000px;}
.wsb{word-spacing:0.000000px;}
._5{margin-left:-1430.484480px;}
._4{margin-left:-1087.505280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-532.235520px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._8{margin-left:-4.532400px;}
._c{margin-left:-3.455280px;}
._11{margin-left:-2.227200px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._a{width:2.829600px;}
._9{width:4.242960px;}
._f{width:5.260080px;}
._18{width:6.282000px;}
._b{width:7.282320px;}
._15{width:8.460000px;}
._14{width:10.429680px;}
._1a{width:11.541120px;}
._1b{width:12.549600px;}
._10{width:13.864320px;}
._e{width:16.011120px;}
._d{width:17.017200px;}
._19{width:18.047520px;}
._17{width:19.084320px;}
._16{width:20.437920px;}
._13{width:24.147360px;}
._12{width:25.615920px;}
._1f{width:40.239360px;}
._20{width:41.759760px;}
._1c{width:67.191120px;}
._1d{width:68.523840px;}
._1e{width:70.825920px;}
.fc4{color:rgb(27,28,29);}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:6.120000px;}
.ya{bottom:8.100000px;}
.y6{bottom:26.100000px;}
.y9{bottom:32.400000px;}
.y5{bottom:45.900000px;}
.y8{bottom:59.250000px;}
.yd{bottom:59.760000px;}
.y4{bottom:65.730000px;}
.ye0{bottom:85.140000px;}
.y3{bottom:85.530000px;}
.y3d{bottom:85.860000px;}
.y7{bottom:93.450000px;}
.yad{bottom:96.300000px;}
.ydf{bottom:104.940000px;}
.y2{bottom:105.330000px;}
.y3c{bottom:105.660000px;}
.yac{bottom:116.100000px;}
.y74{bottom:119.700000px;}
.yde{bottom:124.920000px;}
.y3b{bottom:125.460000px;}
.y77{bottom:130.500000px;}
.yab{bottom:135.900000px;}
.y73{bottom:139.500000px;}
.ydd{bottom:144.720000px;}
.y3a{bottom:146.340000px;}
.y76{bottom:150.300000px;}
.yaa{bottom:155.730000px;}
.y72{bottom:159.330000px;}
.ydc{bottom:164.550000px;}
.y39{bottom:166.170000px;}
.y75{bottom:170.130000px;}
.ya9{bottom:175.710000px;}
.y71{bottom:179.130000px;}
.ydb{bottom:184.350000px;}
.y38{bottom:185.970000px;}
.ya8{bottom:195.510000px;}
.y70{bottom:199.110000px;}
.yda{bottom:204.150000px;}
.y37{bottom:207.030000px;}
.ya7{bottom:215.310000px;}
.y6f{bottom:218.910000px;}
.yd9{bottom:224.130000px;}
.y36{bottom:226.830000px;}
.ya6{bottom:235.110000px;}
.y6e{bottom:238.710000px;}
.yd8{bottom:243.930000px;}
.y35{bottom:246.630000px;}
.ya5{bottom:254.910000px;}
.y6d{bottom:258.510000px;}
.yd7{bottom:263.730000px;}
.y34{bottom:267.510000px;}
.ya4{bottom:274.890000px;}
.y6c{bottom:278.310000px;}
.yd6{bottom:283.530000px;}
.y33{bottom:287.310000px;}
.ya3{bottom:294.690000px;}
.y6b{bottom:298.290000px;}
.yd5{bottom:303.330000px;}
.y32{bottom:307.290000px;}
.ya2{bottom:314.490000px;}
.y6a{bottom:318.090000px;}
.yd4{bottom:323.310000px;}
.y31{bottom:327.090000px;}
.ya1{bottom:334.290000px;}
.y69{bottom:337.890000px;}
.yd3{bottom:343.110000px;}
.y30{bottom:346.890000px;}
.ya0{bottom:354.090000px;}
.y68{bottom:357.690000px;}
.yd2{bottom:362.910000px;}
.y2f{bottom:366.690000px;}
.y9f{bottom:374.070000px;}
.y67{bottom:377.490000px;}
.yd1{bottom:382.710000px;}
.y2e{bottom:386.490000px;}
.y9e{bottom:393.870000px;}
.y66{bottom:397.470000px;}
.yd0{bottom:402.555000px;}
.y2d{bottom:406.515000px;}
.y9d{bottom:413.715000px;}
.y65{bottom:417.315000px;}
.ycf{bottom:422.535000px;}
.y2c{bottom:426.315000px;}
.y9c{bottom:433.515000px;}
.y64{bottom:437.115000px;}
.yce{bottom:442.335000px;}
.y2b{bottom:446.115000px;}
.y9b{bottom:453.315000px;}
.y63{bottom:456.915000px;}
.ycd{bottom:462.135000px;}
.y2a{bottom:465.915000px;}
.y9a{bottom:473.295000px;}
.y62{bottom:476.715000px;}
.ycc{bottom:481.935000px;}
.y29{bottom:485.715000px;}
.y99{bottom:493.095000px;}
.y61{bottom:496.695000px;}
.ycb{bottom:501.735000px;}
.y28{bottom:505.695000px;}
.y98{bottom:512.895000px;}
.y60{bottom:516.495000px;}
.yca{bottom:521.715000px;}
.y27{bottom:525.495000px;}
.y97{bottom:532.695000px;}
.y5f{bottom:536.295000px;}
.yc9{bottom:541.515000px;}
.y26{bottom:545.295000px;}
.y96{bottom:552.495000px;}
.y5e{bottom:556.095000px;}
.yc8{bottom:561.315000px;}
.y25{bottom:565.095000px;}
.y95{bottom:572.475000px;}
.y5d{bottom:575.895000px;}
.yc7{bottom:581.115000px;}
.y24{bottom:584.895000px;}
.y94{bottom:592.275000px;}
.y5c{bottom:595.875000px;}
.yc6{bottom:600.915000px;}
.y23{bottom:604.875000px;}
.y93{bottom:612.075000px;}
.y5b{bottom:615.675000px;}
.yc5{bottom:620.895000px;}
.y22{bottom:624.675000px;}
.y92{bottom:631.875000px;}
.y5a{bottom:635.475000px;}
.yc4{bottom:640.695000px;}
.y21{bottom:644.475000px;}
.y91{bottom:651.705000px;}
.y59{bottom:655.305000px;}
.yc3{bottom:660.525000px;}
.y20{bottom:664.305000px;}
.y90{bottom:671.685000px;}
.y58{bottom:675.105000px;}
.yc2{bottom:680.325000px;}
.y1f{bottom:686.445000px;}
.y8f{bottom:691.485000px;}
.y57{bottom:695.085000px;}
.yc1{bottom:700.125000px;}
.y1e{bottom:706.245000px;}
.y8e{bottom:711.285000px;}
.y56{bottom:714.885000px;}
.yc0{bottom:720.105000px;}
.y1d{bottom:726.045000px;}
.y8d{bottom:731.085000px;}
.y55{bottom:734.685000px;}
.ybf{bottom:739.905000px;}
.y1c{bottom:746.025000px;}
.y8c{bottom:750.885000px;}
.y54{bottom:754.485000px;}
.ybe{bottom:759.705000px;}
.y1b{bottom:765.825000px;}
.y8b{bottom:770.865000px;}
.y53{bottom:774.285000px;}
.ybd{bottom:779.505000px;}
.y1a{bottom:785.625000px;}
.y52{bottom:794.265000px;}
.ybc{bottom:799.305000px;}
.y8a{bottom:799.665000px;}
.y19{bottom:805.425000px;}
.y51{bottom:814.065000px;}
.ybb{bottom:819.285000px;}
.y89{bottom:819.465000px;}
.y18{bottom:825.225000px;}
.y50{bottom:833.865000px;}
.yba{bottom:839.085000px;}
.y88{bottom:839.265000px;}
.y17{bottom:845.205000px;}
.y4f{bottom:853.665000px;}
.yb9{bottom:858.885000px;}
.y87{bottom:859.065000px;}
.y16{bottom:865.005000px;}
.y4e{bottom:873.465000px;}
.yb8{bottom:878.685000px;}
.y86{bottom:879.045000px;}
.y15{bottom:884.625000px;}
.y4d{bottom:893.445000px;}
.yb7{bottom:898.530000px;}
.y85{bottom:898.890000px;}
.y14{bottom:906.990000px;}
.y4c{bottom:913.290000px;}
.yb6{bottom:918.510000px;}
.y84{bottom:918.690000px;}
.y13{bottom:926.790000px;}
.y4b{bottom:933.090000px;}
.yb5{bottom:938.310000px;}
.y12{bottom:946.590000px;}
.y83{bottom:947.490000px;}
.y4a{bottom:952.890000px;}
.yb4{bottom:958.110000px;}
.y11{bottom:966.930000px;}
.y82{bottom:967.290000px;}
.y49{bottom:972.690000px;}
.yb3{bottom:977.910000px;}
.y81{bottom:987.270000px;}
.y10{bottom:988.170000px;}
.y48{bottom:992.670000px;}
.yb2{bottom:997.710000px;}
.y80{bottom:1008.150000px;}
.yf{bottom:1011.750000px;}
.y47{bottom:1012.470000px;}
.yb1{bottom:1017.510000px;}
.y7f{bottom:1027.950000px;}
.y46{bottom:1032.270000px;}
.yb0{bottom:1034.790000px;}
.ye{bottom:1043.430000px;}
.y7e{bottom:1048.830000px;}
.y45{bottom:1052.070000px;}
.yaf{bottom:1054.770000px;}
.y7d{bottom:1068.630000px;}
.yc{bottom:1070.250000px;}
.y44{bottom:1071.870000px;}
.yae{bottom:1074.570000px;}
.y1{bottom:1088.070000px;}
.y7c{bottom:1089.690000px;}
.y43{bottom:1091.850000px;}
.y7b{bottom:1109.490000px;}
.y42{bottom:1111.650000px;}
.y7a{bottom:1130.370000px;}
.y41{bottom:1131.450000px;}
.y79{bottom:1150.200000px;}
.y40{bottom:1151.280000px;}
.y78{bottom:1170.000000px;}
.y3f{bottom:1171.080000px;}
.y3e{bottom:1197.180000px;}
.hb{height:42.164648px;}
.h9{height:43.215117px;}
.hd{height:43.506914px;}
.ha{height:46.736719px;}
.hc{height:48.496641px;}
.he{height:49.255313px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.h5{height:55.987031px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:116.676000px;}
.w4{width:167.610000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.x1{left:54.000000px;}
.x9{left:76.320000px;}
.xe{left:80.999987px;}
.x2{left:97.230000px;}
.xd{left:108.035987px;}
.x8{left:120.285000px;}
.xc{left:148.170000px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.xa{left:670.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.058880pt;}
.ls12{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.207360pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.409067pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls7{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls13{letter-spacing:2.720000pt;}
.ls19{letter-spacing:10.378667pt;}
.ls18{letter-spacing:10.400000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.ws0{word-spacing:-15.838720pt;}
.ws1{word-spacing:-14.661120pt;}
.wse{word-spacing:-13.689067pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.592000pt;}
.wsb{word-spacing:0.000000pt;}
._5{margin-left:-1271.541760pt;}
._4{margin-left:-966.671360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-473.098240pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._8{margin-left:-4.028800pt;}
._c{margin-left:-3.071360pt;}
._11{margin-left:-1.979733pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._a{width:2.515200pt;}
._9{width:3.771520pt;}
._f{width:4.675627pt;}
._18{width:5.584000pt;}
._b{width:6.473173pt;}
._15{width:7.520000pt;}
._14{width:9.270827pt;}
._1a{width:10.258773pt;}
._1b{width:11.155200pt;}
._10{width:12.323840pt;}
._e{width:14.232107pt;}
._d{width:15.126400pt;}
._19{width:16.042240pt;}
._17{width:16.963840pt;}
._16{width:18.167040pt;}
._13{width:21.464320pt;}
._12{width:22.769707pt;}
._1f{width:35.768320pt;}
._20{width:37.119787pt;}
._1c{width:59.725440pt;}
._1d{width:60.910080pt;}
._1e{width:62.956373pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.200000pt;}
.y6{bottom:23.200000pt;}
.y9{bottom:28.800000pt;}
.y5{bottom:40.800000pt;}
.y8{bottom:52.666667pt;}
.yd{bottom:53.120000pt;}
.y4{bottom:58.426667pt;}
.ye0{bottom:75.680000pt;}
.y3{bottom:76.026667pt;}
.y3d{bottom:76.320000pt;}
.y7{bottom:83.066667pt;}
.yad{bottom:85.600000pt;}
.ydf{bottom:93.280000pt;}
.y2{bottom:93.626667pt;}
.y3c{bottom:93.920000pt;}
.yac{bottom:103.200000pt;}
.y74{bottom:106.400000pt;}
.yde{bottom:111.040000pt;}
.y3b{bottom:111.520000pt;}
.y77{bottom:116.000000pt;}
.yab{bottom:120.800000pt;}
.y73{bottom:124.000000pt;}
.ydd{bottom:128.640000pt;}
.y3a{bottom:130.080000pt;}
.y76{bottom:133.600000pt;}
.yaa{bottom:138.426667pt;}
.y72{bottom:141.626667pt;}
.ydc{bottom:146.266667pt;}
.y39{bottom:147.706667pt;}
.y75{bottom:151.226667pt;}
.ya9{bottom:156.186667pt;}
.y71{bottom:159.226667pt;}
.ydb{bottom:163.866667pt;}
.y38{bottom:165.306667pt;}
.ya8{bottom:173.786667pt;}
.y70{bottom:176.986667pt;}
.yda{bottom:181.466667pt;}
.y37{bottom:184.026667pt;}
.ya7{bottom:191.386667pt;}
.y6f{bottom:194.586667pt;}
.yd9{bottom:199.226667pt;}
.y36{bottom:201.626667pt;}
.ya6{bottom:208.986667pt;}
.y6e{bottom:212.186667pt;}
.yd8{bottom:216.826667pt;}
.y35{bottom:219.226667pt;}
.ya5{bottom:226.586667pt;}
.y6d{bottom:229.786667pt;}
.yd7{bottom:234.426667pt;}
.y34{bottom:237.786667pt;}
.ya4{bottom:244.346667pt;}
.y6c{bottom:247.386667pt;}
.yd6{bottom:252.026667pt;}
.y33{bottom:255.386667pt;}
.ya3{bottom:261.946667pt;}
.y6b{bottom:265.146667pt;}
.yd5{bottom:269.626667pt;}
.y32{bottom:273.146667pt;}
.ya2{bottom:279.546667pt;}
.y6a{bottom:282.746667pt;}
.yd4{bottom:287.386667pt;}
.y31{bottom:290.746667pt;}
.ya1{bottom:297.146667pt;}
.y69{bottom:300.346667pt;}
.yd3{bottom:304.986667pt;}
.y30{bottom:308.346667pt;}
.ya0{bottom:314.746667pt;}
.y68{bottom:317.946667pt;}
.yd2{bottom:322.586667pt;}
.y2f{bottom:325.946667pt;}
.y9f{bottom:332.506667pt;}
.y67{bottom:335.546667pt;}
.yd1{bottom:340.186667pt;}
.y2e{bottom:343.546667pt;}
.y9e{bottom:350.106667pt;}
.y66{bottom:353.306667pt;}
.yd0{bottom:357.826667pt;}
.y2d{bottom:361.346667pt;}
.y9d{bottom:367.746667pt;}
.y65{bottom:370.946667pt;}
.ycf{bottom:375.586667pt;}
.y2c{bottom:378.946667pt;}
.y9c{bottom:385.346667pt;}
.y64{bottom:388.546667pt;}
.yce{bottom:393.186667pt;}
.y2b{bottom:396.546667pt;}
.y9b{bottom:402.946667pt;}
.y63{bottom:406.146667pt;}
.ycd{bottom:410.786667pt;}
.y2a{bottom:414.146667pt;}
.y9a{bottom:420.706667pt;}
.y62{bottom:423.746667pt;}
.ycc{bottom:428.386667pt;}
.y29{bottom:431.746667pt;}
.y99{bottom:438.306667pt;}
.y61{bottom:441.506667pt;}
.ycb{bottom:445.986667pt;}
.y28{bottom:449.506667pt;}
.y98{bottom:455.906667pt;}
.y60{bottom:459.106667pt;}
.yca{bottom:463.746667pt;}
.y27{bottom:467.106667pt;}
.y97{bottom:473.506667pt;}
.y5f{bottom:476.706667pt;}
.yc9{bottom:481.346667pt;}
.y26{bottom:484.706667pt;}
.y96{bottom:491.106667pt;}
.y5e{bottom:494.306667pt;}
.yc8{bottom:498.946667pt;}
.y25{bottom:502.306667pt;}
.y95{bottom:508.866667pt;}
.y5d{bottom:511.906667pt;}
.yc7{bottom:516.546667pt;}
.y24{bottom:519.906667pt;}
.y94{bottom:526.466667pt;}
.y5c{bottom:529.666667pt;}
.yc6{bottom:534.146667pt;}
.y23{bottom:537.666667pt;}
.y93{bottom:544.066667pt;}
.y5b{bottom:547.266667pt;}
.yc5{bottom:551.906667pt;}
.y22{bottom:555.266667pt;}
.y92{bottom:561.666667pt;}
.y5a{bottom:564.866667pt;}
.yc4{bottom:569.506667pt;}
.y21{bottom:572.866667pt;}
.y91{bottom:579.293333pt;}
.y59{bottom:582.493333pt;}
.yc3{bottom:587.133333pt;}
.y20{bottom:590.493333pt;}
.y90{bottom:597.053333pt;}
.y58{bottom:600.093333pt;}
.yc2{bottom:604.733333pt;}
.y1f{bottom:610.173333pt;}
.y8f{bottom:614.653333pt;}
.y57{bottom:617.853333pt;}
.yc1{bottom:622.333333pt;}
.y1e{bottom:627.773333pt;}
.y8e{bottom:632.253333pt;}
.y56{bottom:635.453333pt;}
.yc0{bottom:640.093333pt;}
.y1d{bottom:645.373333pt;}
.y8d{bottom:649.853333pt;}
.y55{bottom:653.053333pt;}
.ybf{bottom:657.693333pt;}
.y1c{bottom:663.133333pt;}
.y8c{bottom:667.453333pt;}
.y54{bottom:670.653333pt;}
.ybe{bottom:675.293333pt;}
.y1b{bottom:680.733333pt;}
.y8b{bottom:685.213333pt;}
.y53{bottom:688.253333pt;}
.ybd{bottom:692.893333pt;}
.y1a{bottom:698.333333pt;}
.y52{bottom:706.013333pt;}
.ybc{bottom:710.493333pt;}
.y8a{bottom:710.813333pt;}
.y19{bottom:715.933333pt;}
.y51{bottom:723.613333pt;}
.ybb{bottom:728.253333pt;}
.y89{bottom:728.413333pt;}
.y18{bottom:733.533333pt;}
.y50{bottom:741.213333pt;}
.yba{bottom:745.853333pt;}
.y88{bottom:746.013333pt;}
.y17{bottom:751.293333pt;}
.y4f{bottom:758.813333pt;}
.yb9{bottom:763.453333pt;}
.y87{bottom:763.613333pt;}
.y16{bottom:768.893333pt;}
.y4e{bottom:776.413333pt;}
.yb8{bottom:781.053333pt;}
.y86{bottom:781.373333pt;}
.y15{bottom:786.333333pt;}
.y4d{bottom:794.173333pt;}
.yb7{bottom:798.693333pt;}
.y85{bottom:799.013333pt;}
.y14{bottom:806.213333pt;}
.y4c{bottom:811.813333pt;}
.yb6{bottom:816.453333pt;}
.y84{bottom:816.613333pt;}
.y13{bottom:823.813333pt;}
.y4b{bottom:829.413333pt;}
.yb5{bottom:834.053333pt;}
.y12{bottom:841.413333pt;}
.y83{bottom:842.213333pt;}
.y4a{bottom:847.013333pt;}
.yb4{bottom:851.653333pt;}
.y11{bottom:859.493333pt;}
.y82{bottom:859.813333pt;}
.y49{bottom:864.613333pt;}
.yb3{bottom:869.253333pt;}
.y81{bottom:877.573333pt;}
.y10{bottom:878.373333pt;}
.y48{bottom:882.373333pt;}
.yb2{bottom:886.853333pt;}
.y80{bottom:896.133333pt;}
.yf{bottom:899.333333pt;}
.y47{bottom:899.973333pt;}
.yb1{bottom:904.453333pt;}
.y7f{bottom:913.733333pt;}
.y46{bottom:917.573333pt;}
.yb0{bottom:919.813333pt;}
.ye{bottom:927.493333pt;}
.y7e{bottom:932.293333pt;}
.y45{bottom:935.173333pt;}
.yaf{bottom:937.573333pt;}
.y7d{bottom:949.893333pt;}
.yc{bottom:951.333333pt;}
.y44{bottom:952.773333pt;}
.yae{bottom:955.173333pt;}
.y1{bottom:967.173333pt;}
.y7c{bottom:968.613333pt;}
.y43{bottom:970.533333pt;}
.y7b{bottom:986.213333pt;}
.y42{bottom:988.133333pt;}
.y7a{bottom:1004.773333pt;}
.y41{bottom:1005.733333pt;}
.y79{bottom:1022.400000pt;}
.y40{bottom:1023.360000pt;}
.y78{bottom:1040.000000pt;}
.y3f{bottom:1040.960000pt;}
.y3e{bottom:1064.160000pt;}
.hb{height:37.479688pt;}
.h9{height:38.413438pt;}
.hd{height:38.672812pt;}
.ha{height:41.543750pt;}
.hc{height:43.108125pt;}
.he{height:43.782500pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.h5{height:49.766250pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:103.712000pt;}
.w4{width:148.986667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.x1{left:48.000000pt;}
.x9{left:67.840000pt;}
.xe{left:71.999988pt;}
.x2{left:86.426667pt;}
.xd{left:96.031988pt;}
.x8{left:106.920000pt;}
.xc{left:131.706667pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.xa{left:596.293333pt;}
}




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