
    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_80e653129d1e42de4a25fc82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8db758ba929eab93e3d14314.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_5f05b71620379e29e198ae47.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_5e2c0b1d51897d99ac3b8182.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.751000;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_a43c51b699ac472e0cc342c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976000;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_1887d12f4f972d66e50fe146.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761719;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_75a8a548af222bee1c59b5dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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_94c3144cf07c85fd5752f77e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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_364724d9992663c9aeb708e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_8987f4a73056795f54bc6d94.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:180.000000px;}
.ls3{letter-spacing:-60.000000px;}
.ls1{letter-spacing:-46.500000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.350000px;}
.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;}
}
.ws4{word-spacing:-79.167600px;}
.ws6{word-spacing:-30.375000px;}
.ws9{word-spacing:-17.280000px;}
.ws0{word-spacing:-14.400000px;}
.ws2{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:46.500000px;}
.wsa{word-spacing:60.000000px;}
._8{margin-left:-2404.430304px;}
._1{margin-left:-45.570000px;}
._0{margin-left:-35.340000px;}
._6{margin-left:-6.306000px;}
._5{margin-left:-4.410000px;}
._4{margin-left:-3.330000px;}
._7{margin-left:-2.280000px;}
._3{margin-left:-1.260000px;}
._a{width:1.440000px;}
._b{width:3.232800px;}
._9{width:4.482000px;}
._2{width:46.500000px;}
.fc2{color:rgb(101,98,99);}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(19,18,16);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:37.968600px;}
.fsa{font-size:50.625000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.445200px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:72.773400px;}
.fs9{font-size:88.593600px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:113.906400px;}
.fs3{font-size:329.865000px;}
.fs0{font-size:930.000000px;}
.fsc{font-size:1200.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:1.019250px;}
.y8d{bottom:1.019850px;}
.y89{bottom:1.021350px;}
.y9{bottom:42.975300px;}
.yc2{bottom:54.450000px;}
.y86{bottom:58.590000px;}
.y71{bottom:63.000000px;}
.ya1{bottom:65.250000px;}
.yb2{bottom:74.700000px;}
.yc1{bottom:76.950000px;}
.y85{bottom:81.090000px;}
.y70{bottom:85.500000px;}
.ya2{bottom:87.750000px;}
.yb1{bottom:97.200000px;}
.ye7{bottom:100.320150px;}
.y84{bottom:103.590000px;}
.y6f{bottom:108.000000px;}
.ya0{bottom:110.250000px;}
.yb0{bottom:119.700000px;}
.yc0{bottom:121.950000px;}
.ye6{bottom:122.520000px;}
.y83{bottom:126.090000px;}
.y6e{bottom:130.500000px;}
.y47{bottom:132.750000px;}
.yaf{bottom:142.200000px;}
.ybf{bottom:144.450000px;}
.y82{bottom:148.590000px;}
.y6d{bottom:153.000000px;}
.y46{bottom:155.250000px;}
.y1e{bottom:162.090000px;}
.yae{bottom:164.700000px;}
.ye5{bottom:165.540000px;}
.ybe{bottom:166.950000px;}
.y81{bottom:171.090000px;}
.y6c{bottom:175.500000px;}
.y45{bottom:177.750000px;}
.yad{bottom:187.200000px;}
.y80{bottom:193.590000px;}
.y6b{bottom:198.000000px;}
.y44{bottom:200.250000px;}
.y1d{bottom:201.090000px;}
.yac{bottom:209.700000px;}
.ybd{bottom:211.950000px;}
.y87{bottom:216.090000px;}
.y9b{bottom:220.500000px;}
.y1c{bottom:220.590000px;}
.y9f{bottom:222.750000px;}
.yab{bottom:232.200000px;}
.ybc{bottom:234.450000px;}
.y7f{bottom:238.590000px;}
.y1b{bottom:240.090000px;}
.y6a{bottom:243.000000px;}
.y43{bottom:245.250000px;}
.yaa{bottom:254.700000px;}
.ybb{bottom:256.950000px;}
.y1a{bottom:259.590000px;}
.y7e{bottom:261.090000px;}
.y9a{bottom:265.500000px;}
.y42{bottom:267.750000px;}
.ya9{bottom:277.200000px;}
.y19{bottom:279.090000px;}
.yba{bottom:279.450000px;}
.y7d{bottom:283.590000px;}
.y69{bottom:288.000000px;}
.y41{bottom:290.250000px;}
.ya8{bottom:299.700000px;}
.yb9{bottom:301.950000px;}
.y7c{bottom:306.090000px;}
.y68{bottom:310.500000px;}
.y40{bottom:312.750000px;}
.y17{bottom:318.090000px;}
.ya7{bottom:322.200000px;}
.yb8{bottom:324.450000px;}
.y7b{bottom:328.590000px;}
.y67{bottom:333.000000px;}
.y3f{bottom:335.250000px;}
.y16{bottom:337.590000px;}
.ya6{bottom:344.700000px;}
.yb7{bottom:346.950000px;}
.y7a{bottom:351.090000px;}
.y66{bottom:355.500000px;}
.y15{bottom:357.090000px;}
.y3e{bottom:357.750000px;}
.ya5{bottom:367.200000px;}
.yb6{bottom:369.450000px;}
.y79{bottom:373.590000px;}
.y14{bottom:376.590000px;}
.y65{bottom:378.000000px;}
.y3d{bottom:380.250000px;}
.ya4{bottom:389.700000px;}
.yb5{bottom:391.950000px;}
.y13{bottom:396.090000px;}
.y64{bottom:400.500000px;}
.y8{bottom:402.030000px;}
.y3c{bottom:402.750000px;}
.yb4{bottom:414.450000px;}
.y12{bottom:415.590000px;}
.y78{bottom:418.590000px;}
.y63{bottom:423.000000px;}
.y3b{bottom:425.250000px;}
.ya3{bottom:434.700000px;}
.y11{bottom:435.090000px;}
.yb3{bottom:436.950000px;}
.y7{bottom:438.030000px;}
.y77{bottom:441.090000px;}
.y62{bottom:445.500000px;}
.y3a{bottom:447.750000px;}
.y18{bottom:454.590000px;}
.y6{bottom:456.030000px;}
.y76{bottom:463.590000px;}
.y61{bottom:468.000000px;}
.y39{bottom:470.250000px;}
.y5{bottom:474.030000px;}
.y10{bottom:474.090000px;}
.ye2{bottom:475.875000px;}
.y75{bottom:486.090000px;}
.y60{bottom:490.500000px;}
.ye1{bottom:492.075000px;}
.y38{bottom:492.750000px;}
.yf{bottom:493.590000px;}
.ye0{bottom:508.275000px;}
.y74{bottom:508.590000px;}
.y5f{bottom:513.000000px;}
.ye{bottom:513.090000px;}
.y37{bottom:515.250000px;}
.y4{bottom:518.805000px;}
.y73{bottom:531.090000px;}
.yd{bottom:532.590000px;}
.y99{bottom:535.500000px;}
.y36{bottom:537.750000px;}
.yd3{bottom:542.906512px;}
.yc{bottom:552.090000px;}
.y72{bottom:553.590000px;}
.yd2{bottom:557.461200px;}
.y5e{bottom:558.000000px;}
.y35{bottom:560.250000px;}
.y3{bottom:570.645000px;}
.yb{bottom:571.590000px;}
.yd1{bottom:572.015887px;}
.y96{bottom:579.615000px;}
.y5d{bottom:580.500000px;}
.y34{bottom:582.750000px;}
.yd0{bottom:586.570575px;}
.ya{bottom:591.090000px;}
.y95{bottom:595.815000px;}
.ycf{bottom:601.125262px;}
.y5c{bottom:603.000000px;}
.y33{bottom:605.250000px;}
.yce{bottom:615.679950px;}
.y94{bottom:621.359946px;}
.y5b{bottom:625.500000px;}
.y32{bottom:627.750000px;}
.y93{bottom:640.346662px;}
.y92{bottom:645.529387px;}
.y5a{bottom:648.000000px;}
.y9e{bottom:650.250000px;}
.y59{bottom:670.500000px;}
.y31{bottom:672.750000px;}
.y8a{bottom:691.176000px;}
.y58{bottom:693.000000px;}
.y30{bottom:695.250000px;}
.y8c{bottom:695.410500px;}
.yc6{bottom:713.306100px;}
.y98{bottom:715.500000px;}
.y2f{bottom:717.750000px;}
.y57{bottom:738.000000px;}
.y2e{bottom:740.250000px;}
.y56{bottom:760.500000px;}
.y2d{bottom:762.750000px;}
.y2{bottom:773.625000px;}
.y55{bottom:783.000000px;}
.y2c{bottom:785.250000px;}
.y54{bottom:805.500000px;}
.y2b{bottom:807.750000px;}
.y8f{bottom:813.313865px;}
.y53{bottom:828.000000px;}
.ydf{bottom:828.747919px;}
.y2a{bottom:830.250000px;}
.y8e{bottom:833.872350px;}
.yde{bottom:843.302606px;}
.yc4{bottom:846.981403px;}
.y97{bottom:850.500000px;}
.y29{bottom:852.750000px;}
.ydd{bottom:857.857294px;}
.ydc{bottom:872.411981px;}
.y52{bottom:873.000000px;}
.y28{bottom:875.250000px;}
.yc3{bottom:879.416250px;}
.ydb{bottom:886.966669px;}
.y51{bottom:895.500000px;}
.y9d{bottom:897.750000px;}
.yda{bottom:901.521356px;}
.ycd{bottom:903.416925px;}
.yd9{bottom:916.076044px;}
.ycc{bottom:917.971612px;}
.y50{bottom:918.000000px;}
.y27{bottom:920.250000px;}
.yd8{bottom:930.630731px;}
.ycb{bottom:932.526300px;}
.y4f{bottom:940.500000px;}
.y26{bottom:942.750000px;}
.yd7{bottom:945.185419px;}
.yca{bottom:947.080987px;}
.y1{bottom:959.625000px;}
.yd6{bottom:959.740106px;}
.yc9{bottom:961.635675px;}
.y4e{bottom:963.000000px;}
.y25{bottom:965.250000px;}
.yd5{bottom:974.294794px;}
.yc8{bottom:976.190362px;}
.y4d{bottom:985.500000px;}
.y24{bottom:987.750000px;}
.yd4{bottom:988.849481px;}
.yc7{bottom:990.745050px;}
.y4c{bottom:1008.000000px;}
.y23{bottom:1010.250000px;}
.y91{bottom:1019.499584px;}
.y4b{bottom:1030.500000px;}
.y22{bottom:1032.750000px;}
.y90{bottom:1038.486300px;}
.y4a{bottom:1053.000000px;}
.y21{bottom:1055.250000px;}
.y49{bottom:1075.500000px;}
.y1f{bottom:1077.750000px;}
.y88{bottom:1083.666000px;}
.yc5{bottom:1098.134550px;}
.y20{bottom:1100.250000px;}
.y48{bottom:1120.500000px;}
.y9c{bottom:1122.750000px;}
.ye3{bottom:1150.200000px;}
.ye4{bottom:1156.200000px;}
.ha{height:18.984000px;}
.h8{height:18.985500px;}
.h10{height:35.546265px;}
.h6{height:44.340000px;}
.h4{height:44.580000px;}
.hc{height:46.654393px;}
.hd{height:47.034000px;}
.h14{height:48.000000px;}
.hb{height:51.097729px;}
.h3{height:52.260000px;}
.h7{height:53.280000px;}
.h9{height:53.975974px;}
.h13{height:54.000000px;}
.hf{height:62.205858px;}
.h2{height:64.800000px;}
.h12{height:67.500000px;}
.he{height:79.979201px;}
.h5{height:287.312415px;}
.h1{height:688.200000px;}
.h11{height:900.000000px;}
.h0{height:1188.000000px;}
.w1{width:239.497500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:21.688800px;}
.xb{left:22.696200px;}
.x6{left:51.933150px;}
.x3{left:54.157200px;}
.x1{left:55.848000px;}
.x2{left:66.893550px;}
.x11{left:76.536941px;}
.xa{left:80.937000px;}
.x16{left:121.286400px;}
.x19{left:128.250000px;}
.x7{left:129.863100px;}
.x12{left:156.287793px;}
.xe{left:229.726350px;}
.x8{left:340.882500px;}
.x17{left:391.697250px;}
.x14{left:399.257550px;}
.xf{left:404.178223px;}
.x13{left:414.137100px;}
.xd{left:422.419350px;}
.x1d{left:431.640000px;}
.x4{left:468.000000px;}
.x1a{left:542.250000px;}
.x10{left:561.736403px;}
.xc{left:576.564000px;}
.x15{left:645.924281px;}
.x1c{left:693.000000px;}
.x18{left:704.319281px;}
.x1b{left:857.040300px;}
.x5{left:858.975150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.ls3{letter-spacing:-53.333333pt;}
.ls1{letter-spacing:-41.333333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.200000pt;}
.ws4{word-spacing:-70.371200pt;}
.ws6{word-spacing:-27.000000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws0{word-spacing:-12.800000pt;}
.ws2{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:41.333333pt;}
.wsa{word-spacing:53.333333pt;}
._8{margin-left:-2137.271381pt;}
._1{margin-left:-40.506667pt;}
._0{margin-left:-31.413333pt;}
._6{margin-left:-5.605333pt;}
._5{margin-left:-3.920000pt;}
._4{margin-left:-2.960000pt;}
._7{margin-left:-2.026667pt;}
._3{margin-left:-1.120000pt;}
._a{width:1.280000pt;}
._b{width:2.873600pt;}
._9{width:3.984000pt;}
._2{width:41.333333pt;}
.fsb{font-size:33.749867pt;}
.fsa{font-size:45.000000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:59.062400pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:64.687467pt;}
.fs9{font-size:78.749867pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:101.250133pt;}
.fs3{font-size:293.213333pt;}
.fs0{font-size:826.666667pt;}
.fsc{font-size:1066.666667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:0.906000pt;}
.y8d{bottom:0.906533pt;}
.y89{bottom:0.907867pt;}
.y9{bottom:38.200267pt;}
.yc2{bottom:48.400000pt;}
.y86{bottom:52.080000pt;}
.y71{bottom:56.000000pt;}
.ya1{bottom:58.000000pt;}
.yb2{bottom:66.400000pt;}
.yc1{bottom:68.400000pt;}
.y85{bottom:72.080000pt;}
.y70{bottom:76.000000pt;}
.ya2{bottom:78.000000pt;}
.yb1{bottom:86.400000pt;}
.ye7{bottom:89.173467pt;}
.y84{bottom:92.080000pt;}
.y6f{bottom:96.000000pt;}
.ya0{bottom:98.000000pt;}
.yb0{bottom:106.400000pt;}
.yc0{bottom:108.400000pt;}
.ye6{bottom:108.906667pt;}
.y83{bottom:112.080000pt;}
.y6e{bottom:116.000000pt;}
.y47{bottom:118.000000pt;}
.yaf{bottom:126.400000pt;}
.ybf{bottom:128.400000pt;}
.y82{bottom:132.080000pt;}
.y6d{bottom:136.000000pt;}
.y46{bottom:138.000000pt;}
.y1e{bottom:144.080000pt;}
.yae{bottom:146.400000pt;}
.ye5{bottom:147.146667pt;}
.ybe{bottom:148.400000pt;}
.y81{bottom:152.080000pt;}
.y6c{bottom:156.000000pt;}
.y45{bottom:158.000000pt;}
.yad{bottom:166.400000pt;}
.y80{bottom:172.080000pt;}
.y6b{bottom:176.000000pt;}
.y44{bottom:178.000000pt;}
.y1d{bottom:178.746667pt;}
.yac{bottom:186.400000pt;}
.ybd{bottom:188.400000pt;}
.y87{bottom:192.080000pt;}
.y9b{bottom:196.000000pt;}
.y1c{bottom:196.080000pt;}
.y9f{bottom:198.000000pt;}
.yab{bottom:206.400000pt;}
.ybc{bottom:208.400000pt;}
.y7f{bottom:212.080000pt;}
.y1b{bottom:213.413333pt;}
.y6a{bottom:216.000000pt;}
.y43{bottom:218.000000pt;}
.yaa{bottom:226.400000pt;}
.ybb{bottom:228.400000pt;}
.y1a{bottom:230.746667pt;}
.y7e{bottom:232.080000pt;}
.y9a{bottom:236.000000pt;}
.y42{bottom:238.000000pt;}
.ya9{bottom:246.400000pt;}
.y19{bottom:248.080000pt;}
.yba{bottom:248.400000pt;}
.y7d{bottom:252.080000pt;}
.y69{bottom:256.000000pt;}
.y41{bottom:258.000000pt;}
.ya8{bottom:266.400000pt;}
.yb9{bottom:268.400000pt;}
.y7c{bottom:272.080000pt;}
.y68{bottom:276.000000pt;}
.y40{bottom:278.000000pt;}
.y17{bottom:282.746667pt;}
.ya7{bottom:286.400000pt;}
.yb8{bottom:288.400000pt;}
.y7b{bottom:292.080000pt;}
.y67{bottom:296.000000pt;}
.y3f{bottom:298.000000pt;}
.y16{bottom:300.080000pt;}
.ya6{bottom:306.400000pt;}
.yb7{bottom:308.400000pt;}
.y7a{bottom:312.080000pt;}
.y66{bottom:316.000000pt;}
.y15{bottom:317.413333pt;}
.y3e{bottom:318.000000pt;}
.ya5{bottom:326.400000pt;}
.yb6{bottom:328.400000pt;}
.y79{bottom:332.080000pt;}
.y14{bottom:334.746667pt;}
.y65{bottom:336.000000pt;}
.y3d{bottom:338.000000pt;}
.ya4{bottom:346.400000pt;}
.yb5{bottom:348.400000pt;}
.y13{bottom:352.080000pt;}
.y64{bottom:356.000000pt;}
.y8{bottom:357.360000pt;}
.y3c{bottom:358.000000pt;}
.yb4{bottom:368.400000pt;}
.y12{bottom:369.413333pt;}
.y78{bottom:372.080000pt;}
.y63{bottom:376.000000pt;}
.y3b{bottom:378.000000pt;}
.ya3{bottom:386.400000pt;}
.y11{bottom:386.746667pt;}
.yb3{bottom:388.400000pt;}
.y7{bottom:389.360000pt;}
.y77{bottom:392.080000pt;}
.y62{bottom:396.000000pt;}
.y3a{bottom:398.000000pt;}
.y18{bottom:404.080000pt;}
.y6{bottom:405.360000pt;}
.y76{bottom:412.080000pt;}
.y61{bottom:416.000000pt;}
.y39{bottom:418.000000pt;}
.y5{bottom:421.360000pt;}
.y10{bottom:421.413333pt;}
.ye2{bottom:423.000000pt;}
.y75{bottom:432.080000pt;}
.y60{bottom:436.000000pt;}
.ye1{bottom:437.400000pt;}
.y38{bottom:438.000000pt;}
.yf{bottom:438.746667pt;}
.ye0{bottom:451.800000pt;}
.y74{bottom:452.080000pt;}
.y5f{bottom:456.000000pt;}
.ye{bottom:456.080000pt;}
.y37{bottom:458.000000pt;}
.y4{bottom:461.160000pt;}
.y73{bottom:472.080000pt;}
.yd{bottom:473.413333pt;}
.y99{bottom:476.000000pt;}
.y36{bottom:478.000000pt;}
.yd3{bottom:482.583567pt;}
.yc{bottom:490.746667pt;}
.y72{bottom:492.080000pt;}
.yd2{bottom:495.521067pt;}
.y5e{bottom:496.000000pt;}
.y35{bottom:498.000000pt;}
.y3{bottom:507.240000pt;}
.yb{bottom:508.080000pt;}
.yd1{bottom:508.458567pt;}
.y96{bottom:515.213333pt;}
.y5d{bottom:516.000000pt;}
.y34{bottom:518.000000pt;}
.yd0{bottom:521.396067pt;}
.ya{bottom:525.413333pt;}
.y95{bottom:529.613333pt;}
.ycf{bottom:534.333567pt;}
.y5c{bottom:536.000000pt;}
.y33{bottom:538.000000pt;}
.yce{bottom:547.271067pt;}
.y94{bottom:552.319952pt;}
.y5b{bottom:556.000000pt;}
.y32{bottom:558.000000pt;}
.y93{bottom:569.197033pt;}
.y92{bottom:573.803900pt;}
.y5a{bottom:576.000000pt;}
.y9e{bottom:578.000000pt;}
.y59{bottom:596.000000pt;}
.y31{bottom:598.000000pt;}
.y8a{bottom:614.378667pt;}
.y58{bottom:616.000000pt;}
.y30{bottom:618.000000pt;}
.y8c{bottom:618.142667pt;}
.yc6{bottom:634.049867pt;}
.y98{bottom:636.000000pt;}
.y2f{bottom:638.000000pt;}
.y57{bottom:656.000000pt;}
.y2e{bottom:658.000000pt;}
.y56{bottom:676.000000pt;}
.y2d{bottom:678.000000pt;}
.y2{bottom:687.666667pt;}
.y55{bottom:696.000000pt;}
.y2c{bottom:698.000000pt;}
.y54{bottom:716.000000pt;}
.y2b{bottom:718.000000pt;}
.y8f{bottom:722.945657pt;}
.y53{bottom:736.000000pt;}
.ydf{bottom:736.664817pt;}
.y2a{bottom:738.000000pt;}
.y8e{bottom:741.219867pt;}
.yde{bottom:749.602317pt;}
.yc4{bottom:752.872358pt;}
.y97{bottom:756.000000pt;}
.y29{bottom:758.000000pt;}
.ydd{bottom:762.539817pt;}
.ydc{bottom:775.477317pt;}
.y52{bottom:776.000000pt;}
.y28{bottom:778.000000pt;}
.yc3{bottom:781.703333pt;}
.ydb{bottom:788.414817pt;}
.y51{bottom:796.000000pt;}
.y9d{bottom:798.000000pt;}
.yda{bottom:801.352317pt;}
.ycd{bottom:803.037267pt;}
.yd9{bottom:814.289817pt;}
.ycc{bottom:815.974767pt;}
.y50{bottom:816.000000pt;}
.y27{bottom:818.000000pt;}
.yd8{bottom:827.227317pt;}
.ycb{bottom:828.912267pt;}
.y4f{bottom:836.000000pt;}
.y26{bottom:838.000000pt;}
.yd7{bottom:840.164817pt;}
.yca{bottom:841.849767pt;}
.y1{bottom:853.000000pt;}
.yd6{bottom:853.102317pt;}
.yc9{bottom:854.787267pt;}
.y4e{bottom:856.000000pt;}
.y25{bottom:858.000000pt;}
.yd5{bottom:866.039817pt;}
.yc8{bottom:867.724767pt;}
.y4d{bottom:876.000000pt;}
.y24{bottom:878.000000pt;}
.yd4{bottom:878.977317pt;}
.yc7{bottom:880.662267pt;}
.y4c{bottom:896.000000pt;}
.y23{bottom:898.000000pt;}
.y91{bottom:906.221853pt;}
.y4b{bottom:916.000000pt;}
.y22{bottom:918.000000pt;}
.y90{bottom:923.098933pt;}
.y4a{bottom:936.000000pt;}
.y21{bottom:938.000000pt;}
.y49{bottom:956.000000pt;}
.y1f{bottom:958.000000pt;}
.y88{bottom:963.258667pt;}
.yc5{bottom:976.119600pt;}
.y20{bottom:978.000000pt;}
.y48{bottom:996.000000pt;}
.y9c{bottom:998.000000pt;}
.ye3{bottom:1022.400000pt;}
.ye4{bottom:1027.733333pt;}
.ha{height:16.874667pt;}
.h8{height:16.876000pt;}
.h10{height:31.596680pt;}
.h6{height:39.413333pt;}
.h4{height:39.626667pt;}
.hc{height:41.470572pt;}
.hd{height:41.808000pt;}
.h14{height:42.666667pt;}
.hb{height:45.420204pt;}
.h3{height:46.453333pt;}
.h7{height:47.360000pt;}
.h9{height:47.978643pt;}
.h13{height:48.000000pt;}
.hf{height:55.294096pt;}
.h2{height:57.600000pt;}
.h12{height:60.000000pt;}
.he{height:71.092623pt;}
.h5{height:255.388813pt;}
.h1{height:611.733333pt;}
.h11{height:800.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:212.886667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:19.278933pt;}
.xb{left:20.174400pt;}
.x6{left:46.162800pt;}
.x3{left:48.139733pt;}
.x1{left:49.642667pt;}
.x2{left:59.460933pt;}
.x11{left:68.032837pt;}
.xa{left:71.944000pt;}
.x16{left:107.810133pt;}
.x19{left:114.000000pt;}
.x7{left:115.433867pt;}
.x12{left:138.922482pt;}
.xe{left:204.201200pt;}
.x8{left:303.006667pt;}
.x17{left:348.175333pt;}
.x14{left:354.895600pt;}
.xf{left:359.269531pt;}
.x13{left:368.121867pt;}
.xd{left:375.483867pt;}
.x1d{left:383.680000pt;}
.x4{left:416.000000pt;}
.x1a{left:482.000000pt;}
.x10{left:499.321247pt;}
.xc{left:512.501333pt;}
.x15{left:574.154916pt;}
.x1c{left:616.000000pt;}
.x18{left:626.061583pt;}
.x1b{left:761.813600pt;}
.x5{left:763.533467pt;}
}




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