
    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_7bd90c4e32c5fd55d7bb66a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_45487b541b1c37c447a004e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_3307c2ee3d5dcb6bda89d4d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_717c838d167a8eacbd2b9694.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2d7075356fbed7770f53787f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119141;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_09f80630b5d0279d2c6af3e2.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5706821e610af94c93483743.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.063067px;}
.ls1{letter-spacing:0.376462px;}
.ls3{letter-spacing:0.424640px;}
.ls5{letter-spacing:0.424644px;}
.ls6{letter-spacing:0.424779px;}
.ls2{letter-spacing:0.451686px;}
.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;}
}
.ws5{word-spacing:-18.349228px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws2{word-spacing:-14.958623px;}
.ws4{word-spacing:-10.770171px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.198186px;}
._5{margin-left:-3.168642px;}
._1{margin-left:-2.031196px;}
._4{margin-left:-1.030221px;}
._0{width:1.304731px;}
._3{width:2.456486px;}
._2{width:3.461822px;}
._6{width:4.708872px;}
._7{width:6.547433px;}
._a{width:7.692323px;}
._c{width:9.496128px;}
._b{width:10.697443px;}
._9{width:15.477022px;}
._d{width:25.056200px;}
._8{width:847.607992px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.881485px;}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs6{font-size:64.444169px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y93{bottom:109.620072px;}
.y120{bottom:115.560036px;}
.yfe{bottom:115.920043px;}
.yf0{bottom:118.980079px;}
.yb0{bottom:121.860077px;}
.y63{bottom:124.920043px;}
.y92{bottom:126.180039px;}
.y11f{bottom:132.120072px;}
.yfd{bottom:133.920043px;}
.y32{bottom:135.000068px;}
.yef{bottom:136.980079px;}
.yaf{bottom:139.860077px;}
.y91{bottom:142.560036px;}
.y62{bottom:142.920043px;}
.y78{bottom:147.960091px;}
.yfc{bottom:151.920043px;}
.y31{bottom:152.640060px;}
.y11e{bottom:154.620072px;}
.yae{bottom:157.860077px;}
.y90{bottom:159.120072px;}
.y61{bottom:160.920043px;}
.yee{bottom:165.240074px;}
.y77{bottom:165.960091px;}
.yfb{bottom:169.920043px;}
.y11d{bottom:171.000068px;}
.y8f{bottom:175.680039px;}
.yad{bottom:175.860077px;}
.y60{bottom:178.920043px;}
.y30{bottom:179.280052px;}
.y76{bottom:183.960091px;}
.yfa{bottom:187.920043px;}
.y8e{bottom:192.060036px;}
.y11c{bottom:193.500068px;}
.yac{bottom:193.860077px;}
.y2f{bottom:195.840088px;}
.y5f{bottom:196.920043px;}
.y75{bottom:201.960091px;}
.yc3{bottom:202.860077px;}
.yed{bottom:205.920043px;}
.y8d{bottom:208.620072px;}
.y11b{bottom:210.060036px;}
.yab{bottom:211.860077px;}
.y2e{bottom:212.220085px;}
.y5e{bottom:214.920043px;}
.y74{bottom:219.960091px;}
.yf9{bottom:223.920043px;}
.y8c{bottom:225.180039px;}
.y11a{bottom:226.620072px;}
.yaa{bottom:229.860077px;}
.yec{bottom:232.920043px;}
.y2d{bottom:234.720085px;}
.y73{bottom:237.960091px;}
.y8b{bottom:241.560036px;}
.y5d{bottom:241.920043px;}
.ya9{bottom:247.860077px;}
.y119{bottom:249.120072px;}
.yeb{bottom:250.920043px;}
.y2c{bottom:251.280052px;}
.y72{bottom:255.960091px;}
.ybe{bottom:256.860077px;}
.y8a{bottom:258.120072px;}
.y5c{bottom:259.920043px;}
.y118{bottom:265.500068px;}
.ya8{bottom:265.860077px;}
.y2b{bottom:267.840088px;}
.yea{bottom:268.920043px;}
.yf8{bottom:270.180039px;}
.y71{bottom:273.960091px;}
.ybd{bottom:274.860077px;}
.y89{bottom:280.620072px;}
.ya7{bottom:283.860077px;}
.y2a{bottom:284.220085px;}
.y5b{bottom:286.920043px;}
.y117{bottom:288.000068px;}
.y70{bottom:291.960091px;}
.ybc{bottom:292.860077px;}
.ya6{bottom:301.860077px;}
.y116{bottom:304.560036px;}
.y5a{bottom:304.920043px;}
.y29{bottom:306.720085px;}
.ybb{bottom:310.860077px;}
.ye9{bottom:313.920043px;}
.ya5{bottom:319.860077px;}
.y59{bottom:322.920043px;}
.y6f{bottom:324.360077px;}
.y115{bottom:327.060036px;}
.yba{bottom:328.860077px;}
.y28{bottom:329.220085px;}
.ye8{bottom:331.920043px;}
.yc2{bottom:337.860077px;}
.y58{bottom:340.920043px;}
.y114{bottom:343.620072px;}
.y27{bottom:345.780052px;}
.ya4{bottom:346.860077px;}
.ye7{bottom:349.920043px;}
.yf7{bottom:355.860077px;}
.y57{bottom:358.920043px;}
.y26{bottom:362.340088px;}
.ya3{bottom:364.860077px;}
.y113{bottom:366.120072px;}
.ye6{bottom:367.920043px;}
.yf6{bottom:373.860077px;}
.y56{bottom:376.920043px;}
.y25{bottom:378.720085px;}
.y112{bottom:382.500068px;}
.ya2{bottom:382.860077px;}
.ye5{bottom:385.920043px;}
.yf5{bottom:391.860077px;}
.y55{bottom:394.920043px;}
.y24{bottom:395.280052px;}
.ya1{bottom:400.860077px;}
.ye4{bottom:403.920043px;}
.y111{bottom:405.000068px;}
.yf4{bottom:409.860077px;}
.y23{bottom:411.840088px;}
.y54{bottom:412.920043px;}
.ya0{bottom:418.860077px;}
.y110{bottom:421.560036px;}
.y53{bottom:430.920043px;}
.y22{bottom:434.340088px;}
.y9f{bottom:436.860077px;}
.y10f{bottom:444.060036px;}
.y101{bottom:445.860077px;}
.y52{bottom:448.920043px;}
.yb9{bottom:454.860077px;}
.y21{bottom:456.840088px;}
.y88{bottom:457.920043px;}
.y10e{bottom:460.620072px;}
.y9e{bottom:463.860077px;}
.ye3{bottom:466.920043px;}
.yb8{bottom:472.860077px;}
.y20{bottom:473.220085px;}
.y51{bottom:475.920043px;}
.y9d{bottom:481.860077px;}
.y10d{bottom:483.120072px;}
.ye2{bottom:484.920043px;}
.y1f{bottom:489.780052px;}
.yb7{bottom:490.860077px;}
.y50{bottom:493.920043px;}
.y10c{bottom:499.500068px;}
.y9c{bottom:499.860077px;}
.ye1{bottom:502.920043px;}
.y1e{bottom:506.340088px;}
.yb6{bottom:508.860077px;}
.y4f{bottom:511.920043px;}
.y9b{bottom:517.860077px;}
.ye0{bottom:520.920043px;}
.y1d{bottom:522.720085px;}
.y4e{bottom:529.920043px;}
.y10b{bottom:534.060036px;}
.y9a{bottom:535.860077px;}
.ydf{bottom:538.920043px;}
.y1c{bottom:539.280052px;}
.y99{bottom:553.860077px;}
.y1b{bottom:555.840088px;}
.y87{bottom:556.920043px;}
.y4d{bottom:558.180039px;}
.y98{bottom:571.860077px;}
.y86{bottom:574.920043px;}
.y1a{bottom:578.340088px;}
.y10a{bottom:583.920043px;}
.yb5{bottom:589.860077px;}
.y85{bottom:592.920043px;}
.y4c{bottom:598.860077px;}
.y19{bottom:601.380066px;}
.y109{bottom:601.920043px;}
.yb4{bottom:607.860077px;}
.yde{bottom:610.920043px;}
.y97{bottom:616.860077px;}
.y108{bottom:619.920043px;}
.y18{bottom:621.000068px;}
.y84{bottom:621.180039px;}
.y4b{bottom:625.860077px;}
.ydd{bottom:628.920043px;}
.y6e{bottom:629.460091px;}
.y96{bottom:634.860077px;}
.y107{bottom:637.920043px;}
.y4a{bottom:643.860077px;}
.y17{bottom:645.120072px;}
.ydc{bottom:646.920043px;}
.y6d{bottom:647.460091px;}
.y95{bottom:652.860077px;}
.y106{bottom:655.920043px;}
.y83{bottom:661.860077px;}
.y6c{bottom:665.460091px;}
.y16{bottom:669.060036px;}
.y49{bottom:670.860077px;}
.ydb{bottom:673.920043px;}
.yc1{bottom:679.860077px;}
.y6b{bottom:683.460091px;}
.y48{bottom:688.860077px;}
.yda{bottom:691.920078px;}
.yc0{bottom:697.860077px;}
.y6a{bottom:701.460056px;}
.y15{bottom:703.620072px;}
.y47{bottom:706.860077px;}
.yd9{bottom:709.920078px;}
.ybf{bottom:715.860077px;}
.y69{bottom:719.460056px;}
.y82{bottom:724.860077px;}
.y14{bottom:727.560070px;}
.yd8{bottom:727.920078px;}
.y46{bottom:733.860077px;}
.y68{bottom:737.460056px;}
.y81{bottom:742.860077px;}
.yd7{bottom:745.920078px;}
.y13{bottom:751.500068px;}
.y45{bottom:751.860077px;}
.y67{bottom:760.860077px;}
.yd6{bottom:763.920078px;}
.y105{bottom:772.920078px;}
.y44{bottom:778.860077px;}
.yd5{bottom:781.920078px;}
.y12{bottom:786.060070px;}
.y104{bottom:790.920078px;}
.y43{bottom:796.860077px;}
.yd4{bottom:799.920078px;}
.y131{bottom:804.060070px;}
.y94{bottom:805.860077px;}
.y103{bottom:808.920078px;}
.y11{bottom:811.440067px;}
.yb3{bottom:814.860077px;}
.yd3{bottom:817.920078px;}
.y42{bottom:823.860077px;}
.y130{bottom:826.560070px;}
.y10{bottom:831.060070px;}
.yb2{bottom:832.860077px;}
.yd2{bottom:835.920078px;}
.y102{bottom:837.180073px;}
.y41{bottom:841.860077px;}
.y12f{bottom:849.060070px;}
.yf3{bottom:850.860077px;}
.yd1{bottom:853.920078px;}
.yf{bottom:856.440067px;}
.y40{bottom:859.860077px;}
.y12e{bottom:865.620072px;}
.yf2{bottom:868.860077px;}
.yd0{bottom:871.920078px;}
.y3f{bottom:877.860077px;}
.yf1{bottom:886.860077px;}
.y12d{bottom:888.120072px;}
.y80{bottom:895.860077px;}
.ycf{bottom:898.920078px;}
.y12c{bottom:904.500068px;}
.y3e{bottom:904.860077px;}
.y7f{bottom:913.860077px;}
.yce{bottom:916.920078px;}
.ye{bottom:917.820065px;}
.y12b{bottom:921.060070px;}
.y3d{bottom:922.860077px;}
.y7e{bottom:931.860077px;}
.ycd{bottom:934.920078px;}
.y12a{bottom:937.620072px;}
.y3c{bottom:940.860077px;}
.y7d{bottom:949.860077px;}
.ycc{bottom:952.920078px;}
.y3b{bottom:958.860077px;}
.yd{bottom:959.940067px;}
.y129{bottom:960.120072px;}
.y7c{bottom:967.860077px;}
.ycb{bottom:970.920078px;}
.y128{bottom:976.500068px;}
.y3a{bottom:976.860060px;}
.y7b{bottom:985.860060px;}
.yca{bottom:988.920061px;}
.y39{bottom:994.860060px;}
.y127{bottom:999.000068px;}
.yc{bottom:1002.060070px;}
.y7a{bottom:1003.860060px;}
.yc9{bottom:1006.920061px;}
.y38{bottom:1012.860060px;}
.y126{bottom:1015.560070px;}
.y79{bottom:1021.860060px;}
.yc8{bottom:1024.920061px;}
.y37{bottom:1030.860060px;}
.y125{bottom:1038.060070px;}
.y66{bottom:1039.323623px;}
.yb1{bottom:1039.860060px;}
.y36{bottom:1048.860060px;}
.yc7{bottom:1051.920061px;}
.y100{bottom:1057.860060px;}
.y124{bottom:1060.560070px;}
.y35{bottom:1066.860060px;}
.yc6{bottom:1069.920061px;}
.yff{bottom:1075.860060px;}
.y123{bottom:1083.060070px;}
.y65{bottom:1084.860060px;}
.yc5{bottom:1087.920061px;}
.y34{bottom:1093.860060px;}
.y9{bottom:1098.720068px;}
.y64{bottom:1102.860060px;}
.y122{bottom:1105.560070px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.yc4{bottom:1116.180073px;}
.y33{bottom:1120.860068px;}
.y121{bottom:1122.120063px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.hc{height:44.745902px;}
.hd{height:48.280332px;}
.h5{height:48.438542px;}
.h9{height:48.860434px;}
.h2{height:53.605104px;}
.h3{height:54.071997px;}
.ha{height:54.305443px;}
.h7{height:60.963227px;}
.h8{height:62.650791px;}
.hb{height:76.221948px;}
.h6{height:132.290180px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.xf{left:279.900003px;}
.x1{left:318.060001px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.xd{left:452.879998px;}
.xb{left:495.000000px;}
.xe{left:530.639992px;}
.x2{left:570.240006px;}
.x3{left:619.379998px;}
.x5{left:622.799973px;}
.x7{left:825.659981px;}
.xc{left:829.259994px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.056060pt;}
.ls1{letter-spacing:0.334633pt;}
.ls3{letter-spacing:0.377458pt;}
.ls5{letter-spacing:0.377462pt;}
.ls6{letter-spacing:0.377582pt;}
.ls2{letter-spacing:0.401498pt;}
.ws5{word-spacing:-16.310425pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws2{word-spacing:-13.296554pt;}
.ws4{word-spacing:-9.573486pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-3.731721pt;}
._5{margin-left:-2.816570pt;}
._1{margin-left:-1.805507pt;}
._4{margin-left:-0.915752pt;}
._0{width:1.159761pt;}
._3{width:2.183543pt;}
._2{width:3.077175pt;}
._6{width:4.185664pt;}
._7{width:5.819941pt;}
._a{width:6.837621pt;}
._c{width:8.441003pt;}
._b{width:9.508838pt;}
._9{width:13.757353pt;}
._d{width:22.272178pt;}
._8{width:753.429326pt;}
.fs7{font-size:34.561320pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs6{font-size:57.283706pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y93{bottom:97.440064pt;}
.y120{bottom:102.720032pt;}
.yfe{bottom:103.040039pt;}
.yf0{bottom:105.760071pt;}
.yb0{bottom:108.320069pt;}
.y63{bottom:111.040039pt;}
.y92{bottom:112.160035pt;}
.y11f{bottom:117.440064pt;}
.yfd{bottom:119.040039pt;}
.y32{bottom:120.000061pt;}
.yef{bottom:121.760071pt;}
.yaf{bottom:124.320069pt;}
.y91{bottom:126.720032pt;}
.y62{bottom:127.040039pt;}
.y78{bottom:131.520081pt;}
.yfc{bottom:135.040039pt;}
.y31{bottom:135.680054pt;}
.y11e{bottom:137.440064pt;}
.yae{bottom:140.320069pt;}
.y90{bottom:141.440064pt;}
.y61{bottom:143.040039pt;}
.yee{bottom:146.880066pt;}
.y77{bottom:147.520081pt;}
.yfb{bottom:151.040039pt;}
.y11d{bottom:152.000061pt;}
.y8f{bottom:156.160035pt;}
.yad{bottom:156.320069pt;}
.y60{bottom:159.040039pt;}
.y30{bottom:159.360047pt;}
.y76{bottom:163.520081pt;}
.yfa{bottom:167.040039pt;}
.y8e{bottom:170.720032pt;}
.y11c{bottom:172.000061pt;}
.yac{bottom:172.320069pt;}
.y2f{bottom:174.080079pt;}
.y5f{bottom:175.040039pt;}
.y75{bottom:179.520081pt;}
.yc3{bottom:180.320069pt;}
.yed{bottom:183.040039pt;}
.y8d{bottom:185.440064pt;}
.y11b{bottom:186.720032pt;}
.yab{bottom:188.320069pt;}
.y2e{bottom:188.640076pt;}
.y5e{bottom:191.040039pt;}
.y74{bottom:195.520081pt;}
.yf9{bottom:199.040039pt;}
.y8c{bottom:200.160035pt;}
.y11a{bottom:201.440064pt;}
.yaa{bottom:204.320069pt;}
.yec{bottom:207.040039pt;}
.y2d{bottom:208.640076pt;}
.y73{bottom:211.520081pt;}
.y8b{bottom:214.720032pt;}
.y5d{bottom:215.040039pt;}
.ya9{bottom:220.320069pt;}
.y119{bottom:221.440064pt;}
.yeb{bottom:223.040039pt;}
.y2c{bottom:223.360047pt;}
.y72{bottom:227.520081pt;}
.ybe{bottom:228.320069pt;}
.y8a{bottom:229.440064pt;}
.y5c{bottom:231.040039pt;}
.y118{bottom:236.000061pt;}
.ya8{bottom:236.320069pt;}
.y2b{bottom:238.080079pt;}
.yea{bottom:239.040039pt;}
.yf8{bottom:240.160035pt;}
.y71{bottom:243.520081pt;}
.ybd{bottom:244.320069pt;}
.y89{bottom:249.440064pt;}
.ya7{bottom:252.320069pt;}
.y2a{bottom:252.640076pt;}
.y5b{bottom:255.040039pt;}
.y117{bottom:256.000061pt;}
.y70{bottom:259.520081pt;}
.ybc{bottom:260.320069pt;}
.ya6{bottom:268.320069pt;}
.y116{bottom:270.720032pt;}
.y5a{bottom:271.040039pt;}
.y29{bottom:272.640076pt;}
.ybb{bottom:276.320069pt;}
.ye9{bottom:279.040039pt;}
.ya5{bottom:284.320069pt;}
.y59{bottom:287.040039pt;}
.y6f{bottom:288.320069pt;}
.y115{bottom:290.720032pt;}
.yba{bottom:292.320069pt;}
.y28{bottom:292.640076pt;}
.ye8{bottom:295.040039pt;}
.yc2{bottom:300.320069pt;}
.y58{bottom:303.040039pt;}
.y114{bottom:305.440064pt;}
.y27{bottom:307.360047pt;}
.ya4{bottom:308.320069pt;}
.ye7{bottom:311.040039pt;}
.yf7{bottom:316.320069pt;}
.y57{bottom:319.040039pt;}
.y26{bottom:322.080079pt;}
.ya3{bottom:324.320069pt;}
.y113{bottom:325.440064pt;}
.ye6{bottom:327.040039pt;}
.yf6{bottom:332.320069pt;}
.y56{bottom:335.040039pt;}
.y25{bottom:336.640076pt;}
.y112{bottom:340.000061pt;}
.ya2{bottom:340.320069pt;}
.ye5{bottom:343.040039pt;}
.yf5{bottom:348.320069pt;}
.y55{bottom:351.040039pt;}
.y24{bottom:351.360047pt;}
.ya1{bottom:356.320069pt;}
.ye4{bottom:359.040039pt;}
.y111{bottom:360.000061pt;}
.yf4{bottom:364.320069pt;}
.y23{bottom:366.080079pt;}
.y54{bottom:367.040039pt;}
.ya0{bottom:372.320069pt;}
.y110{bottom:374.720032pt;}
.y53{bottom:383.040039pt;}
.y22{bottom:386.080079pt;}
.y9f{bottom:388.320069pt;}
.y10f{bottom:394.720032pt;}
.y101{bottom:396.320069pt;}
.y52{bottom:399.040039pt;}
.yb9{bottom:404.320069pt;}
.y21{bottom:406.080079pt;}
.y88{bottom:407.040039pt;}
.y10e{bottom:409.440064pt;}
.y9e{bottom:412.320069pt;}
.ye3{bottom:415.040039pt;}
.yb8{bottom:420.320069pt;}
.y20{bottom:420.640076pt;}
.y51{bottom:423.040039pt;}
.y9d{bottom:428.320069pt;}
.y10d{bottom:429.440064pt;}
.ye2{bottom:431.040039pt;}
.y1f{bottom:435.360047pt;}
.yb7{bottom:436.320069pt;}
.y50{bottom:439.040039pt;}
.y10c{bottom:444.000061pt;}
.y9c{bottom:444.320069pt;}
.ye1{bottom:447.040039pt;}
.y1e{bottom:450.080079pt;}
.yb6{bottom:452.320069pt;}
.y4f{bottom:455.040039pt;}
.y9b{bottom:460.320069pt;}
.ye0{bottom:463.040039pt;}
.y1d{bottom:464.640076pt;}
.y4e{bottom:471.040039pt;}
.y10b{bottom:474.720032pt;}
.y9a{bottom:476.320069pt;}
.ydf{bottom:479.040039pt;}
.y1c{bottom:479.360047pt;}
.y99{bottom:492.320069pt;}
.y1b{bottom:494.080079pt;}
.y87{bottom:495.040039pt;}
.y4d{bottom:496.160035pt;}
.y98{bottom:508.320069pt;}
.y86{bottom:511.040039pt;}
.y1a{bottom:514.080079pt;}
.y10a{bottom:519.040039pt;}
.yb5{bottom:524.320069pt;}
.y85{bottom:527.040039pt;}
.y4c{bottom:532.320069pt;}
.y19{bottom:534.560059pt;}
.y109{bottom:535.040039pt;}
.yb4{bottom:540.320069pt;}
.yde{bottom:543.040039pt;}
.y97{bottom:548.320069pt;}
.y108{bottom:551.040039pt;}
.y18{bottom:552.000061pt;}
.y84{bottom:552.160035pt;}
.y4b{bottom:556.320069pt;}
.ydd{bottom:559.040039pt;}
.y6e{bottom:559.520081pt;}
.y96{bottom:564.320069pt;}
.y107{bottom:567.040039pt;}
.y4a{bottom:572.320069pt;}
.y17{bottom:573.440064pt;}
.ydc{bottom:575.040039pt;}
.y6d{bottom:575.520081pt;}
.y95{bottom:580.320069pt;}
.y106{bottom:583.040039pt;}
.y83{bottom:588.320069pt;}
.y6c{bottom:591.520081pt;}
.y16{bottom:594.720032pt;}
.y49{bottom:596.320069pt;}
.ydb{bottom:599.040039pt;}
.yc1{bottom:604.320069pt;}
.y6b{bottom:607.520081pt;}
.y48{bottom:612.320069pt;}
.yda{bottom:615.040070pt;}
.yc0{bottom:620.320069pt;}
.y6a{bottom:623.520050pt;}
.y15{bottom:625.440064pt;}
.y47{bottom:628.320069pt;}
.yd9{bottom:631.040070pt;}
.ybf{bottom:636.320069pt;}
.y69{bottom:639.520050pt;}
.y82{bottom:644.320069pt;}
.y14{bottom:646.720063pt;}
.yd8{bottom:647.040070pt;}
.y46{bottom:652.320069pt;}
.y68{bottom:655.520050pt;}
.y81{bottom:660.320069pt;}
.yd7{bottom:663.040070pt;}
.y13{bottom:668.000061pt;}
.y45{bottom:668.320069pt;}
.y67{bottom:676.320069pt;}
.yd6{bottom:679.040070pt;}
.y105{bottom:687.040070pt;}
.y44{bottom:692.320069pt;}
.yd5{bottom:695.040070pt;}
.y12{bottom:698.720063pt;}
.y104{bottom:703.040070pt;}
.y43{bottom:708.320069pt;}
.yd4{bottom:711.040070pt;}
.y131{bottom:714.720063pt;}
.y94{bottom:716.320069pt;}
.y103{bottom:719.040070pt;}
.y11{bottom:721.280060pt;}
.yb3{bottom:724.320069pt;}
.yd3{bottom:727.040070pt;}
.y42{bottom:732.320069pt;}
.y130{bottom:734.720063pt;}
.y10{bottom:738.720063pt;}
.yb2{bottom:740.320069pt;}
.yd2{bottom:743.040070pt;}
.y102{bottom:744.160065pt;}
.y41{bottom:748.320069pt;}
.y12f{bottom:754.720063pt;}
.yf3{bottom:756.320069pt;}
.yd1{bottom:759.040070pt;}
.yf{bottom:761.280060pt;}
.y40{bottom:764.320069pt;}
.y12e{bottom:769.440064pt;}
.yf2{bottom:772.320069pt;}
.yd0{bottom:775.040070pt;}
.y3f{bottom:780.320069pt;}
.yf1{bottom:788.320069pt;}
.y12d{bottom:789.440064pt;}
.y80{bottom:796.320069pt;}
.ycf{bottom:799.040070pt;}
.y12c{bottom:804.000061pt;}
.y3e{bottom:804.320069pt;}
.y7f{bottom:812.320069pt;}
.yce{bottom:815.040070pt;}
.ye{bottom:815.840058pt;}
.y12b{bottom:818.720063pt;}
.y3d{bottom:820.320069pt;}
.y7e{bottom:828.320069pt;}
.ycd{bottom:831.040070pt;}
.y12a{bottom:833.440064pt;}
.y3c{bottom:836.320069pt;}
.y7d{bottom:844.320069pt;}
.ycc{bottom:847.040070pt;}
.y3b{bottom:852.320069pt;}
.yd{bottom:853.280060pt;}
.y129{bottom:853.440064pt;}
.y7c{bottom:860.320069pt;}
.ycb{bottom:863.040070pt;}
.y128{bottom:868.000061pt;}
.y3a{bottom:868.320054pt;}
.y7b{bottom:876.320054pt;}
.yca{bottom:879.040055pt;}
.y39{bottom:884.320054pt;}
.y127{bottom:888.000061pt;}
.yc{bottom:890.720063pt;}
.y7a{bottom:892.320054pt;}
.yc9{bottom:895.040055pt;}
.y38{bottom:900.320054pt;}
.y126{bottom:902.720063pt;}
.y79{bottom:908.320054pt;}
.yc8{bottom:911.040055pt;}
.y37{bottom:916.320054pt;}
.y125{bottom:922.720063pt;}
.y66{bottom:923.843220pt;}
.yb1{bottom:924.320054pt;}
.y36{bottom:932.320054pt;}
.yc7{bottom:935.040055pt;}
.y100{bottom:940.320054pt;}
.y124{bottom:942.720063pt;}
.y35{bottom:948.320054pt;}
.yc6{bottom:951.040055pt;}
.yff{bottom:956.320054pt;}
.y123{bottom:962.720063pt;}
.y65{bottom:964.320054pt;}
.yc5{bottom:967.040055pt;}
.y34{bottom:972.320054pt;}
.y9{bottom:976.640061pt;}
.y64{bottom:980.320054pt;}
.y122{bottom:982.720063pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.yc4{bottom:992.160065pt;}
.y33{bottom:996.320061pt;}
.y121{bottom:997.440056pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.hc{height:39.774135pt;}
.hd{height:42.915851pt;}
.h5{height:43.056481pt;}
.h9{height:43.431497pt;}
.h2{height:47.648981pt;}
.h3{height:48.063997pt;}
.ha{height:48.271505pt;}
.h7{height:54.189535pt;}
.h8{height:55.689592pt;}
.hb{height:67.752842pt;}
.h6{height:117.591271pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.xf{left:248.800003pt;}
.x1{left:282.720001pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.xd{left:402.559998pt;}
.xb{left:440.000000pt;}
.xe{left:471.679993pt;}
.x2{left:506.880005pt;}
.x3{left:550.559998pt;}
.x5{left:553.599976pt;}
.x7{left:733.919983pt;}
.xc{left:737.119995pt;}
}




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