
    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_76447b0397cd532b26b1c221.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_194dfe0eee4b115309d8ea59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_8bf5c30ee1be5b2c79e573a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_df788243d6a32df87d0a42bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_11ae6b59c81d3280f89600c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.168000px;}
.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:-26.592000px;}
.ws3{word-spacing:-23.268000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-8.784000px;}
._9{margin-left:-7.632000px;}
._10{margin-left:-6.336000px;}
._a{margin-left:-5.040000px;}
._c{margin-left:-3.072000px;}
._1{margin-left:-2.052000px;}
._b{margin-left:-1.008000px;}
._0{width:1.296000px;}
._2{width:2.664000px;}
._3{width:3.888000px;}
._8{width:5.184000px;}
._7{width:6.408000px;}
._4{width:7.560000px;}
._6{width:9.000000px;}
._d{width:10.800000px;}
._e{width:11.952000px;}
._f{width:13.392000px;}
._5{width:15.336000px;}
._15{width:16.632000px;}
._13{width:20.808000px;}
._14{width:21.948000px;}
._11{width:23.976000px;}
._16{width:29.160000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y27{bottom:88.891500px;}
.y26{bottom:133.441500px;}
.ya9{bottom:139.891500px;}
.y104{bottom:141.991500px;}
.ye1{bottom:144.691500px;}
.y72{bottom:149.191500px;}
.y8e{bottom:158.641500px;}
.ya8{bottom:163.591500px;}
.y103{bottom:165.691500px;}
.y25{bottom:167.641500px;}
.ye0{bottom:168.541500px;}
.y71{bottom:173.041500px;}
.y8d{bottom:182.341500px;}
.y4c{bottom:183.541500px;}
.ya7{bottom:187.441500px;}
.y11d{bottom:190.591500px;}
.y24{bottom:191.491500px;}
.ydf{bottom:192.241500px;}
.y70{bottom:196.741500px;}
.y102{bottom:200.041500px;}
.ybd{bottom:201.691500px;}
.y4b{bottom:207.241500px;}
.ya6{bottom:211.141500px;}
.y11c{bottom:214.441500px;}
.yde{bottom:216.091500px;}
.y8c{bottom:216.691500px;}
.y6f{bottom:220.591500px;}
.y101{bottom:223.741500px;}
.ybc{bottom:225.391500px;}
.y23{bottom:225.691500px;}
.ya5{bottom:234.991500px;}
.y11b{bottom:238.141500px;}
.ydd{bottom:239.791500px;}
.y8b{bottom:240.391500px;}
.y4a{bottom:241.591500px;}
.y6e{bottom:244.291500px;}
.y100{bottom:247.591500px;}
.ybb{bottom:249.241500px;}
.y22{bottom:249.541500px;}
.ydc{bottom:263.641500px;}
.y8a{bottom:264.241500px;}
.ya4{bottom:265.141500px;}
.y49{bottom:265.291500px;}
.y6d{bottom:268.141500px;}
.yff{bottom:271.291500px;}
.y11a{bottom:272.491500px;}
.y21{bottom:273.241500px;}
.yba{bottom:283.441500px;}
.ydb{bottom:287.341500px;}
.y48{bottom:289.141500px;}
.y6c{bottom:291.841500px;}
.yfe{bottom:295.141500px;}
.y119{bottom:296.191500px;}
.y20{bottom:297.091500px;}
.y89{bottom:298.441500px;}
.ya3{bottom:302.341500px;}
.yb9{bottom:307.291500px;}
.yda{bottom:311.191500px;}
.y47{bottom:312.841500px;}
.y6b{bottom:322.141500px;}
.y88{bottom:322.291500px;}
.ya2{bottom:326.191500px;}
.y1f{bottom:327.241500px;}
.yfd{bottom:329.341500px;}
.y118{bottom:330.541500px;}
.yb8{bottom:330.991500px;}
.yd9{bottom:334.891500px;}
.y46{bottom:336.691500px;}
.y87{bottom:345.991500px;}
.yfc{bottom:353.191500px;}
.y6a{bottom:359.341500px;}
.y45{bottom:360.391500px;}
.yb7{bottom:361.291500px;}
.y1e{bottom:364.441500px;}
.y117{bottom:364.741500px;}
.yd8{bottom:369.241500px;}
.y86{bottom:369.841500px;}
.y69{bottom:383.041500px;}
.ya1{bottom:384.241500px;}
.yfb{bottom:387.391500px;}
.y44{bottom:390.691500px;}
.yd7{bottom:392.941500px;}
.yb6{bottom:398.491500px;}
.y1d{bottom:398.791500px;}
.y116{bottom:399.091500px;}
.y85{bottom:399.991500px;}
.ya0{bottom:407.941500px;}
.yfa{bottom:411.241500px;}
.y68{bottom:417.391500px;}
.yb5{bottom:422.191500px;}
.y1c{bottom:422.491500px;}
.yd6{bottom:427.291500px;}
.y43{bottom:427.891500px;}
.y115{bottom:433.291500px;}
.yf9{bottom:434.941500px;}
.y84{bottom:437.191500px;}
.y9f{bottom:438.241500px;}
.y67{bottom:441.091500px;}
.yb4{bottom:446.041500px;}
.y1b{bottom:446.341500px;}
.yd5{bottom:450.991500px;}
.y114{bottom:457.141500px;}
.yf8{bottom:458.791500px;}
.y42{bottom:462.091500px;}
.y66{bottom:464.941500px;}
.y1a{bottom:470.041500px;}
.y83{bottom:471.541500px;}
.yd4{bottom:474.841500px;}
.y9e{bottom:475.441500px;}
.yb3{bottom:480.241500px;}
.yf7{bottom:482.491500px;}
.y41{bottom:485.941500px;}
.y65{bottom:488.641500px;}
.y113{bottom:491.341500px;}
.y19{bottom:493.891500px;}
.y82{bottom:495.241500px;}
.yb2{bottom:504.091500px;}
.yd3{bottom:509.041500px;}
.y40{bottom:509.641500px;}
.y64{bottom:512.491500px;}
.y112{bottom:515.191500px;}
.yf6{bottom:516.841500px;}
.y18{bottom:517.591500px;}
.y81{bottom:519.091500px;}
.yb1{bottom:527.791500px;}
.yd2{bottom:532.891500px;}
.y3f{bottom:533.491500px;}
.y63{bottom:536.191500px;}
.y111{bottom:538.891500px;}
.yf5{bottom:540.541500px;}
.y17{bottom:541.441500px;}
.y80{bottom:542.791500px;}
.y9d{bottom:557.191500px;}
.yb0{bottom:558.091500px;}
.y3e{bottom:563.641500px;}
.yf4{bottom:564.391500px;}
.y16{bottom:565.141500px;}
.y62{bottom:566.491500px;}
.y7f{bottom:566.641500px;}
.yd1{bottom:567.091500px;}
.y110{bottom:573.241500px;}
.y9c{bottom:581.041500px;}
.yf3{bottom:588.091500px;}
.y15{bottom:588.991500px;}
.yaf{bottom:593.341500px;}
.y7e{bottom:596.791500px;}
.y10f{bottom:596.941500px;}
.y3d{bottom:600.841500px;}
.yd0{bottom:601.441500px;}
.y61{bottom:603.691500px;}
.y9b{bottom:604.741500px;}
.y14{bottom:619.141500px;}
.y10e{bottom:620.791500px;}
.yf2{bottom:622.441500px;}
.y3c{bottom:624.691500px;}
.ycf{bottom:625.141500px;}
.y9a{bottom:628.591500px;}
.y7d{bottom:633.991500px;}
.y60{bottom:637.891500px;}
.y10d{bottom:644.491500px;}
.yf1{bottom:646.141500px;}
.yce{bottom:648.991500px;}
.y13{bottom:654.541500px;}
.y3b{bottom:658.891500px;}
.y5f{bottom:661.741500px;}
.y99{bottom:662.791500px;}
.y7c{bottom:668.341500px;}
.yf0{bottom:669.991500px;}
.ycd{bottom:672.691500px;}
.y3a{bottom:682.741500px;}
.y98{bottom:686.641500px;}
.y10c{bottom:692.041500px;}
.yef{bottom:693.691500px;}
.y5e{bottom:695.941500px;}
.ycc{bottom:696.541500px;}
.y12{bottom:699.091500px;}
.y7b{bottom:702.541500px;}
.y39{bottom:706.441500px;}
.y97{bottom:710.341500px;}
.y10b{bottom:715.891500px;}
.y5d{bottom:719.791500px;}
.y11{bottom:722.791500px;}
.y7a{bottom:726.391500px;}
.yee{bottom:728.041500px;}
.y38{bottom:730.291500px;}
.ycb{bottom:730.741500px;}
.y96{bottom:734.191500px;}
.y10a{bottom:739.591500px;}
.y5c{bottom:743.491500px;}
.y10{bottom:746.641500px;}
.y79{bottom:750.091500px;}
.y37{bottom:753.991500px;}
.yca{bottom:754.591500px;}
.yed{bottom:762.241500px;}
.y109{bottom:763.441500px;}
.y95{bottom:764.341500px;}
.y5b{bottom:767.341500px;}
.yf{bottom:770.341500px;}
.yae{bottom:773.791500px;}
.y78{bottom:773.941500px;}
.yc9{bottom:778.291500px;}
.y36{bottom:784.291500px;}
.yec{bottom:786.091500px;}
.y108{bottom:787.141500px;}
.ye{bottom:794.191500px;}
.y5a{bottom:797.491500px;}
.y77{bottom:797.641500px;}
.y94{bottom:801.541500px;}
.yc8{bottom:802.141500px;}
.yad{bottom:810.991500px;}
.yeb{bottom:820.291500px;}
.y35{bottom:821.491500px;}
.yd{bottom:828.391500px;}
.y59{bottom:834.691500px;}
.y93{bottom:835.891500px;}
.yc7{bottom:836.341500px;}
.y76{bottom:845.191500px;}
.yc{bottom:852.241500px;}
.yea{bottom:854.641500px;}
.y34{bottom:855.691500px;}
.y58{bottom:858.541500px;}
.y92{bottom:859.591500px;}
.yc6{bottom:860.191500px;}
.y120{bottom:863.341500px;}
.y75{bottom:869.041500px;}
.yb{bottom:875.941500px;}
.ye9{bottom:878.341500px;}
.y33{bottom:879.541500px;}
.y91{bottom:883.441500px;}
.yc5{bottom:883.891500px;}
.y57{bottom:892.741500px;}
.y11f{bottom:893.641500px;}
.ya{bottom:899.791500px;}
.ye8{bottom:902.191500px;}
.y32{bottom:903.241500px;}
.y90{bottom:907.141500px;}
.y56{bottom:916.591500px;}
.yc4{bottom:918.241500px;}
.y9{bottom:923.491500px;}
.ye7{bottom:925.891500px;}
.y74{bottom:927.091500px;}
.y11e{bottom:928.891500px;}
.y8f{bottom:937.441500px;}
.y31{bottom:937.591500px;}
.y55{bottom:940.291500px;}
.ye6{bottom:949.741500px;}
.y73{bottom:950.791500px;}
.yc3{bottom:952.441500px;}
.y8{bottom:957.841500px;}
.y30{bottom:961.291500px;}
.yac{bottom:964.141500px;}
.y107{bottom:970.591500px;}
.ye5{bottom:973.441500px;}
.y54{bottom:974.641500px;}
.y7{bottom:981.541500px;}
.y2f{bottom:985.141500px;}
.yc2{bottom:986.791500px;}
.ye4{bottom:997.291500px;}
.y53{bottom:998.341500px;}
.y6{bottom:1005.391500px;}
.y106{bottom:1007.791500px;}
.y2e{bottom:1008.841500px;}
.yc1{bottom:1020.991500px;}
.y52{bottom:1022.191500px;}
.y5{bottom:1029.091500px;}
.y105{bottom:1031.491500px;}
.y2d{bottom:1032.691500px;}
.yc0{bottom:1044.841500px;}
.y51{bottom:1045.891500px;}
.ye3{bottom:1055.341500px;}
.y2c{bottom:1056.391500px;}
.y4{bottom:1059.991500px;}
.y50{bottom:1069.741500px;}
.ybf{bottom:1079.041500px;}
.y2b{bottom:1080.241500px;}
.yab{bottom:1093.441500px;}
.y4f{bottom:1099.891500px;}
.ye2{bottom:1102.891500px;}
.y3{bottom:1103.341500px;}
.y2a{bottom:1103.941500px;}
.ybe{bottom:1113.391500px;}
.yaa{bottom:1123.741500px;}
.y29{bottom:1127.791500px;}
.y2{bottom:1134.391500px;}
.y4e{bottom:1137.091500px;}
.y28{bottom:1157.941500px;}
.y4d{bottom:1160.941500px;}
.h5{height:50.695312px;}
.h6{height:60.867188px;}
.h4{height:69.562500px;}
.h3{height:78.257812px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x3{left:437.700000px;}
.x2{left:442.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.149333pt;}
.ws0{word-spacing:-23.637333pt;}
.ws3{word-spacing:-20.682667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-7.808000pt;}
._9{margin-left:-6.784000pt;}
._10{margin-left:-5.632000pt;}
._a{margin-left:-4.480000pt;}
._c{margin-left:-2.730667pt;}
._1{margin-left:-1.824000pt;}
._b{margin-left:-0.896000pt;}
._0{width:1.152000pt;}
._2{width:2.368000pt;}
._3{width:3.456000pt;}
._8{width:4.608000pt;}
._7{width:5.696000pt;}
._4{width:6.720000pt;}
._6{width:8.000000pt;}
._d{width:9.600000pt;}
._e{width:10.624000pt;}
._f{width:11.904000pt;}
._5{width:13.632000pt;}
._15{width:14.784000pt;}
._13{width:18.496000pt;}
._14{width:19.509333pt;}
._11{width:21.312000pt;}
._16{width:25.920000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y27{bottom:79.014667pt;}
.y26{bottom:118.614667pt;}
.ya9{bottom:124.348000pt;}
.y104{bottom:126.214667pt;}
.ye1{bottom:128.614667pt;}
.y72{bottom:132.614667pt;}
.y8e{bottom:141.014667pt;}
.ya8{bottom:145.414667pt;}
.y103{bottom:147.281333pt;}
.y25{bottom:149.014667pt;}
.ye0{bottom:149.814667pt;}
.y71{bottom:153.814667pt;}
.y8d{bottom:162.081333pt;}
.y4c{bottom:163.148000pt;}
.ya7{bottom:166.614667pt;}
.y11d{bottom:169.414667pt;}
.y24{bottom:170.214667pt;}
.ydf{bottom:170.881333pt;}
.y70{bottom:174.881333pt;}
.y102{bottom:177.814667pt;}
.ybd{bottom:179.281333pt;}
.y4b{bottom:184.214667pt;}
.ya6{bottom:187.681333pt;}
.y11c{bottom:190.614667pt;}
.yde{bottom:192.081333pt;}
.y8c{bottom:192.614667pt;}
.y6f{bottom:196.081333pt;}
.y101{bottom:198.881333pt;}
.ybc{bottom:200.348000pt;}
.y23{bottom:200.614667pt;}
.ya5{bottom:208.881333pt;}
.y11b{bottom:211.681333pt;}
.ydd{bottom:213.148000pt;}
.y8b{bottom:213.681333pt;}
.y4a{bottom:214.748000pt;}
.y6e{bottom:217.148000pt;}
.y100{bottom:220.081333pt;}
.ybb{bottom:221.548000pt;}
.y22{bottom:221.814667pt;}
.ydc{bottom:234.348000pt;}
.y8a{bottom:234.881333pt;}
.ya4{bottom:235.681333pt;}
.y49{bottom:235.814667pt;}
.y6d{bottom:238.348000pt;}
.yff{bottom:241.148000pt;}
.y11a{bottom:242.214667pt;}
.y21{bottom:242.881333pt;}
.yba{bottom:251.948000pt;}
.ydb{bottom:255.414667pt;}
.y48{bottom:257.014667pt;}
.y6c{bottom:259.414667pt;}
.yfe{bottom:262.348000pt;}
.y119{bottom:263.281333pt;}
.y20{bottom:264.081333pt;}
.y89{bottom:265.281333pt;}
.ya3{bottom:268.748000pt;}
.yb9{bottom:273.148000pt;}
.yda{bottom:276.614667pt;}
.y47{bottom:278.081333pt;}
.y6b{bottom:286.348000pt;}
.y88{bottom:286.481333pt;}
.ya2{bottom:289.948000pt;}
.y1f{bottom:290.881333pt;}
.yfd{bottom:292.748000pt;}
.y118{bottom:293.814667pt;}
.yb8{bottom:294.214667pt;}
.yd9{bottom:297.681333pt;}
.y46{bottom:299.281333pt;}
.y87{bottom:307.548000pt;}
.yfc{bottom:313.948000pt;}
.y6a{bottom:319.414667pt;}
.y45{bottom:320.348000pt;}
.yb7{bottom:321.148000pt;}
.y1e{bottom:323.948000pt;}
.y117{bottom:324.214667pt;}
.yd8{bottom:328.214667pt;}
.y86{bottom:328.748000pt;}
.y69{bottom:340.481333pt;}
.ya1{bottom:341.548000pt;}
.yfb{bottom:344.348000pt;}
.y44{bottom:347.281333pt;}
.yd7{bottom:349.281333pt;}
.yb6{bottom:354.214667pt;}
.y1d{bottom:354.481333pt;}
.y116{bottom:354.748000pt;}
.y85{bottom:355.548000pt;}
.ya0{bottom:362.614667pt;}
.yfa{bottom:365.548000pt;}
.y68{bottom:371.014667pt;}
.yb5{bottom:375.281333pt;}
.y1c{bottom:375.548000pt;}
.yd6{bottom:379.814667pt;}
.y43{bottom:380.348000pt;}
.y115{bottom:385.148000pt;}
.yf9{bottom:386.614667pt;}
.y84{bottom:388.614667pt;}
.y9f{bottom:389.548000pt;}
.y67{bottom:392.081333pt;}
.yb4{bottom:396.481333pt;}
.y1b{bottom:396.748000pt;}
.yd5{bottom:400.881333pt;}
.y114{bottom:406.348000pt;}
.yf8{bottom:407.814667pt;}
.y42{bottom:410.748000pt;}
.y66{bottom:413.281333pt;}
.y1a{bottom:417.814667pt;}
.y83{bottom:419.148000pt;}
.yd4{bottom:422.081333pt;}
.y9e{bottom:422.614667pt;}
.yb3{bottom:426.881333pt;}
.yf7{bottom:428.881333pt;}
.y41{bottom:431.948000pt;}
.y65{bottom:434.348000pt;}
.y113{bottom:436.748000pt;}
.y19{bottom:439.014667pt;}
.y82{bottom:440.214667pt;}
.yb2{bottom:448.081333pt;}
.yd3{bottom:452.481333pt;}
.y40{bottom:453.014667pt;}
.y64{bottom:455.548000pt;}
.y112{bottom:457.948000pt;}
.yf6{bottom:459.414667pt;}
.y18{bottom:460.081333pt;}
.y81{bottom:461.414667pt;}
.yb1{bottom:469.148000pt;}
.yd2{bottom:473.681333pt;}
.y3f{bottom:474.214667pt;}
.y63{bottom:476.614667pt;}
.y111{bottom:479.014667pt;}
.yf5{bottom:480.481333pt;}
.y17{bottom:481.281333pt;}
.y80{bottom:482.481333pt;}
.y9d{bottom:495.281333pt;}
.yb0{bottom:496.081333pt;}
.y3e{bottom:501.014667pt;}
.yf4{bottom:501.681333pt;}
.y16{bottom:502.348000pt;}
.y62{bottom:503.548000pt;}
.y7f{bottom:503.681333pt;}
.yd1{bottom:504.081333pt;}
.y110{bottom:509.548000pt;}
.y9c{bottom:516.481333pt;}
.yf3{bottom:522.748000pt;}
.y15{bottom:523.548000pt;}
.yaf{bottom:527.414667pt;}
.y7e{bottom:530.481333pt;}
.y10f{bottom:530.614667pt;}
.y3d{bottom:534.081333pt;}
.yd0{bottom:534.614667pt;}
.y61{bottom:536.614667pt;}
.y9b{bottom:537.548000pt;}
.y14{bottom:550.348000pt;}
.y10e{bottom:551.814667pt;}
.yf2{bottom:553.281333pt;}
.y3c{bottom:555.281333pt;}
.ycf{bottom:555.681333pt;}
.y9a{bottom:558.748000pt;}
.y7d{bottom:563.548000pt;}
.y60{bottom:567.014667pt;}
.y10d{bottom:572.881333pt;}
.yf1{bottom:574.348000pt;}
.yce{bottom:576.881333pt;}
.y13{bottom:581.814667pt;}
.y3b{bottom:585.681333pt;}
.y5f{bottom:588.214667pt;}
.y99{bottom:589.148000pt;}
.y7c{bottom:594.081333pt;}
.yf0{bottom:595.548000pt;}
.ycd{bottom:597.948000pt;}
.y3a{bottom:606.881333pt;}
.y98{bottom:610.348000pt;}
.y10c{bottom:615.148000pt;}
.yef{bottom:616.614667pt;}
.y5e{bottom:618.614667pt;}
.ycc{bottom:619.148000pt;}
.y12{bottom:621.414667pt;}
.y7b{bottom:624.481333pt;}
.y39{bottom:627.948000pt;}
.y97{bottom:631.414667pt;}
.y10b{bottom:636.348000pt;}
.y5d{bottom:639.814667pt;}
.y11{bottom:642.481333pt;}
.y7a{bottom:645.681333pt;}
.yee{bottom:647.148000pt;}
.y38{bottom:649.148000pt;}
.ycb{bottom:649.548000pt;}
.y96{bottom:652.614667pt;}
.y10a{bottom:657.414667pt;}
.y5c{bottom:660.881333pt;}
.y10{bottom:663.681333pt;}
.y79{bottom:666.748000pt;}
.y37{bottom:670.214667pt;}
.yca{bottom:670.748000pt;}
.yed{bottom:677.548000pt;}
.y109{bottom:678.614667pt;}
.y95{bottom:679.414667pt;}
.y5b{bottom:682.081333pt;}
.yf{bottom:684.748000pt;}
.yae{bottom:687.814667pt;}
.y78{bottom:687.948000pt;}
.yc9{bottom:691.814667pt;}
.y36{bottom:697.148000pt;}
.yec{bottom:698.748000pt;}
.y108{bottom:699.681333pt;}
.ye{bottom:705.948000pt;}
.y5a{bottom:708.881333pt;}
.y77{bottom:709.014667pt;}
.y94{bottom:712.481333pt;}
.yc8{bottom:713.014667pt;}
.yad{bottom:720.881333pt;}
.yeb{bottom:729.148000pt;}
.y35{bottom:730.214667pt;}
.yd{bottom:736.348000pt;}
.y59{bottom:741.948000pt;}
.y93{bottom:743.014667pt;}
.yc7{bottom:743.414667pt;}
.y76{bottom:751.281333pt;}
.yc{bottom:757.548000pt;}
.yea{bottom:759.681333pt;}
.y34{bottom:760.614667pt;}
.y58{bottom:763.148000pt;}
.y92{bottom:764.081333pt;}
.yc6{bottom:764.614667pt;}
.y120{bottom:767.414667pt;}
.y75{bottom:772.481333pt;}
.yb{bottom:778.614667pt;}
.ye9{bottom:780.748000pt;}
.y33{bottom:781.814667pt;}
.y91{bottom:785.281333pt;}
.yc5{bottom:785.681333pt;}
.y57{bottom:793.548000pt;}
.y11f{bottom:794.348000pt;}
.ya{bottom:799.814667pt;}
.ye8{bottom:801.948000pt;}
.y32{bottom:802.881333pt;}
.y90{bottom:806.348000pt;}
.y56{bottom:814.748000pt;}
.yc4{bottom:816.214667pt;}
.y9{bottom:820.881333pt;}
.ye7{bottom:823.014667pt;}
.y74{bottom:824.081333pt;}
.y11e{bottom:825.681333pt;}
.y8f{bottom:833.281333pt;}
.y31{bottom:833.414667pt;}
.y55{bottom:835.814667pt;}
.ye6{bottom:844.214667pt;}
.y73{bottom:845.148000pt;}
.yc3{bottom:846.614667pt;}
.y8{bottom:851.414667pt;}
.y30{bottom:854.481333pt;}
.yac{bottom:857.014667pt;}
.y107{bottom:862.748000pt;}
.ye5{bottom:865.281333pt;}
.y54{bottom:866.348000pt;}
.y7{bottom:872.481333pt;}
.y2f{bottom:875.681333pt;}
.yc2{bottom:877.148000pt;}
.ye4{bottom:886.481333pt;}
.y53{bottom:887.414667pt;}
.y6{bottom:893.681333pt;}
.y106{bottom:895.814667pt;}
.y2e{bottom:896.748000pt;}
.yc1{bottom:907.548000pt;}
.y52{bottom:908.614667pt;}
.y5{bottom:914.748000pt;}
.y105{bottom:916.881333pt;}
.y2d{bottom:917.948000pt;}
.yc0{bottom:928.748000pt;}
.y51{bottom:929.681333pt;}
.ye3{bottom:938.081333pt;}
.y2c{bottom:939.014667pt;}
.y4{bottom:942.214667pt;}
.y50{bottom:950.881333pt;}
.ybf{bottom:959.148000pt;}
.y2b{bottom:960.214667pt;}
.yab{bottom:971.948000pt;}
.y4f{bottom:977.681333pt;}
.ye2{bottom:980.348000pt;}
.y3{bottom:980.748000pt;}
.y2a{bottom:981.281333pt;}
.ybe{bottom:989.681333pt;}
.yaa{bottom:998.881333pt;}
.y29{bottom:1002.481333pt;}
.y2{bottom:1008.348000pt;}
.y4e{bottom:1010.748000pt;}
.y28{bottom:1029.281333pt;}
.y4d{bottom:1031.948000pt;}
.h5{height:45.062500pt;}
.h6{height:54.104167pt;}
.h4{height:61.833333pt;}
.h3{height:69.562500pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x3{left:389.066667pt;}
.x2{left:393.066667pt;}
}




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