
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_2d3ebab9ae6995d59ec55069.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_de562b92a4f3d135034eb282.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_e00647c009e2d740c75ed616.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f8f42b2185fcc9f04bce01fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.742188;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;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.007200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-90.000000px;}
.ws6{word-spacing:-49.500000px;}
.ws0{word-spacing:-22.500000px;}
.ws2{word-spacing:-18.007200px;}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.500000px;}
.wsa{word-spacing:-15.006000px;}
.ws8{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._9{margin-left:-3.128400px;}
._6{margin-left:-1.973400px;}
._c{width:1.214400px;}
._a{width:2.435400px;}
._5{width:3.445200px;}
._4{width:5.009400px;}
._7{width:6.837600px;}
._b{width:8.061600px;}
._1{width:9.188400px;}
._2{width:10.942800px;}
._10{width:11.946000px;}
._3{width:13.563000px;}
._d{width:15.034800px;}
._27{width:16.816800px;}
._8{width:17.971800px;}
._11{width:19.219200px;}
._f{width:20.605200px;}
._e{width:21.628200px;}
._23{width:22.888800px;}
._12{width:23.963400px;}
._1c{width:25.113000px;}
._22{width:26.782800px;}
._17{width:27.870000px;}
._20{width:29.594400px;}
._14{width:30.921000px;}
._1e{width:33.132000px;}
._15{width:34.471800px;}
._13{width:36.498000px;}
._16{width:37.606800px;}
._26{width:38.940000px;}
._29{width:40.398000px;}
._18{width:41.868000px;}
._19{width:42.871800px;}
._21{width:44.847000px;}
._28{width:46.392000px;}
._1b{width:47.487000px;}
._1d{width:54.908400px;}
._25{width:57.413400px;}
._1f{width:63.195000px;}
._24{width:65.590800px;}
._1a{width:82.425600px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:44.485350px;}
.y46{bottom:56.834700px;}
.y7d{bottom:60.295200px;}
.y4c{bottom:60.685350px;}
.y108{bottom:108.301350px;}
.y82{bottom:117.520650px;}
.ybf{bottom:118.838100px;}
.y9d{bottom:120.274350px;}
.yb7{bottom:123.614400px;}
.y45{bottom:125.055450px;}
.y107{bottom:126.301350px;}
.y81{bottom:133.720650px;}
.ybe{bottom:138.638100px;}
.y9c{bottom:140.074350px;}
.yb6{bottom:143.414400px;}
.y44{bottom:144.855450px;}
.yd7{bottom:147.118500px;}
.y80{bottom:149.920650px;}
.y106{bottom:152.805000px;}
.ybd{bottom:158.437500px;}
.y23{bottom:158.685000px;}
.y9b{bottom:159.874500px;}
.y43{bottom:164.655000px;}
.y7f{bottom:166.120500px;}
.yd6{bottom:166.918500px;}
.y105{bottom:170.805000px;}
.yb5{bottom:175.971000px;}
.ybc{bottom:178.237500px;}
.y22{bottom:178.485000px;}
.y9a{bottom:179.674500px;}
.y7e{bottom:182.320500px;}
.y42{bottom:184.455000px;}
.yd5{bottom:186.718500px;}
.y104{bottom:188.805000px;}
.yb4{bottom:197.571000px;}
.ybb{bottom:198.037500px;}
.y21{bottom:198.285000px;}
.y99{bottom:199.474500px;}
.y41{bottom:204.255000px;}
.yd4{bottom:206.518500px;}
.y103{bottom:206.805000px;}
.yba{bottom:217.837500px;}
.y20{bottom:218.085000px;}
.y98{bottom:219.274500px;}
.y40{bottom:224.055000px;}
.y102{bottom:224.805000px;}
.yd3{bottom:226.318500px;}
.yb9{bottom:237.637500px;}
.y1f{bottom:237.885000px;}
.y97{bottom:239.074500px;}
.y101{bottom:242.805000px;}
.y3f{bottom:243.855000px;}
.yd2{bottom:246.118500px;}
.yb8{bottom:257.437500px;}
.y1e{bottom:257.685000px;}
.y96{bottom:258.874500px;}
.y100{bottom:260.805000px;}
.y3e{bottom:263.655000px;}
.yd1{bottom:265.918500px;}
.yb3{bottom:277.237500px;}
.y1d{bottom:277.485000px;}
.y95{bottom:278.674500px;}
.yff{bottom:278.805000px;}
.yd0{bottom:285.718500px;}
.y3d{bottom:296.211000px;}
.yfe{bottom:296.805000px;}
.yb2{bottom:297.037500px;}
.y1c{bottom:297.285000px;}
.ya8{bottom:298.474500px;}
.ycf{bottom:305.518500px;}
.y94{bottom:311.230500px;}
.y3c{bottom:316.011000px;}
.yb1{bottom:316.837500px;}
.y1b{bottom:317.085000px;}
.ya7{bottom:318.274500px;}
.yfd{bottom:323.310000px;}
.yce{bottom:325.318500px;}
.y93{bottom:331.030500px;}
.y3b{bottom:335.811000px;}
.yb0{bottom:336.637500px;}
.y1a{bottom:336.885000px;}
.ya6{bottom:338.074500px;}
.yfc{bottom:341.310000px;}
.ycd{bottom:345.118500px;}
.y92{bottom:350.830500px;}
.y3a{bottom:355.611000px;}
.yaf{bottom:356.437500px;}
.y19{bottom:356.685000px;}
.ya5{bottom:357.874500px;}
.yfb{bottom:359.310000px;}
.ycc{bottom:364.918500px;}
.y91{bottom:370.630500px;}
.y39{bottom:375.411000px;}
.yae{bottom:376.237500px;}
.y18{bottom:376.485000px;}
.ya4{bottom:377.674500px;}
.ycb{bottom:384.718500px;}
.yfa{bottom:385.813500px;}
.y90{bottom:390.430500px;}
.y38{bottom:395.211000px;}
.yad{bottom:396.037500px;}
.y17{bottom:396.285000px;}
.ya3{bottom:397.474500px;}
.yf9{bottom:403.813500px;}
.y8f{bottom:410.230500px;}
.y37{bottom:415.011000px;}
.yac{bottom:415.837500px;}
.ya2{bottom:417.274500px;}
.yf8{bottom:421.813500px;}
.y16{bottom:428.841000px;}
.y8e{bottom:430.030500px;}
.y36{bottom:434.811000px;}
.yab{bottom:435.637500px;}
.ya1{bottom:437.074500px;}
.yf7{bottom:448.317000px;}
.y15{bottom:448.641000px;}
.y8d{bottom:449.830500px;}
.y35{bottom:454.611000px;}
.yaa{bottom:455.437500px;}
.ya0{bottom:456.874500px;}
.yf6{bottom:466.317000px;}
.y14{bottom:468.441000px;}
.y8c{bottom:469.630500px;}
.y34{bottom:474.411000px;}
.y9f{bottom:476.674500px;}
.yf5{bottom:484.317000px;}
.y13{bottom:488.241000px;}
.y8b{bottom:489.430500px;}
.y33{bottom:494.211000px;}
.y9e{bottom:496.474500px;}
.yf4{bottom:502.317000px;}
.y12{bottom:508.041000px;}
.y8a{bottom:509.230500px;}
.y32{bottom:514.011000px;}
.yca{bottom:516.274500px;}
.y128{bottom:517.890000px;}
.y11{bottom:527.841000px;}
.yf3{bottom:528.820500px;}
.y89{bottom:529.030500px;}
.y31{bottom:533.811000px;}
.y127{bottom:535.890000px;}
.yc9{bottom:536.074500px;}
.yc5{bottom:543.123000px;}
.yf2{bottom:546.820500px;}
.y13a{bottom:546.846000px;}
.y10{bottom:547.641000px;}
.y88{bottom:548.830500px;}
.y30{bottom:553.611000px;}
.yc8{bottom:555.874500px;}
.yc4{bottom:559.323000px;}
.y126{bottom:562.393500px;}
.yf1{bottom:564.820500px;}
.y139{bottom:564.846000px;}
.yf{bottom:567.441000px;}
.y87{bottom:568.630500px;}
.y2f{bottom:573.411000px;}
.yc3{bottom:575.523000px;}
.yc7{bottom:575.674500px;}
.y125{bottom:580.393500px;}
.yf0{bottom:582.820500px;}
.y138{bottom:582.846000px;}
.ye{bottom:587.241000px;}
.y86{bottom:588.430500px;}
.yc2{bottom:591.723000px;}
.y2e{bottom:593.211000px;}
.y7c{bottom:595.474500px;}
.y66{bottom:598.300500px;}
.y124{bottom:598.393500px;}
.yef{bottom:600.820500px;}
.y137{bottom:600.846000px;}
.yd{bottom:607.041000px;}
.yc1{bottom:607.923000px;}
.y85{bottom:608.230500px;}
.y2d{bottom:613.011000px;}
.y7b{bottom:615.274500px;}
.y123{bottom:616.393500px;}
.y65{bottom:618.100500px;}
.yee{bottom:618.820500px;}
.y136{bottom:618.846000px;}
.yc0{bottom:624.123000px;}
.yc{bottom:626.841000px;}
.y84{bottom:628.030500px;}
.y2c{bottom:632.811000px;}
.y7a{bottom:635.074500px;}
.y135{bottom:636.846000px;}
.y64{bottom:637.900500px;}
.y122{bottom:642.898500px;}
.yed{bottom:645.325500px;}
.yb{bottom:646.641000px;}
.y83{bottom:647.830500px;}
.y2b{bottom:652.611000px;}
.y134{bottom:654.846000px;}
.yc6{bottom:654.874500px;}
.y121{bottom:660.898500px;}
.yec{bottom:663.325500px;}
.ya{bottom:666.441000px;}
.y79{bottom:667.630500px;}
.y63{bottom:670.456500px;}
.y2a{bottom:672.411000px;}
.y133{bottom:672.846000px;}
.y120{bottom:678.898500px;}
.yeb{bottom:681.325500px;}
.y9{bottom:686.241000px;}
.y78{bottom:687.430500px;}
.y132{bottom:690.846000px;}
.y62{bottom:692.056500px;}
.y29{bottom:692.211000px;}
.yea{bottom:699.325500px;}
.y11f{bottom:705.402000px;}
.y8{bottom:706.041000px;}
.y77{bottom:707.230500px;}
.y131{bottom:708.846000px;}
.y28{bottom:712.011000px;}
.ye9{bottom:717.325500px;}
.y11e{bottom:723.402000px;}
.y7{bottom:725.841000px;}
.y130{bottom:726.846000px;}
.y76{bottom:727.030500px;}
.y27{bottom:731.811000px;}
.y11d{bottom:741.402000px;}
.y12f{bottom:744.846000px;}
.y6{bottom:745.641000px;}
.y75{bottom:746.830500px;}
.y26{bottom:751.611000px;}
.ye8{bottom:752.332500px;}
.y11c{bottom:759.402000px;}
.y12e{bottom:762.846000px;}
.y5{bottom:765.441000px;}
.y74{bottom:766.630500px;}
.y25{bottom:771.411000px;}
.y61{bottom:771.724500px;}
.y12d{bottom:780.846000px;}
.y4{bottom:785.241000px;}
.y11b{bottom:785.905500px;}
.y73{bottom:786.430500px;}
.y60{bottom:791.524500px;}
.y11a{bottom:803.905500px;}
.y24{bottom:803.967000px;}
.y3{bottom:805.041000px;}
.y72{bottom:806.230500px;}
.y5f{bottom:811.324500px;}
.y12c{bottom:811.602000px;}
.y119{bottom:821.905500px;}
.y71{bottom:826.030500px;}
.y5e{bottom:831.124500px;}
.ye7{bottom:832.000500px;}
.y118{bottom:839.905500px;}
.y70{bottom:845.830500px;}
.y5d{bottom:850.924500px;}
.ye6{bottom:851.800500px;}
.y117{bottom:857.905500px;}
.y6f{bottom:865.630500px;}
.y12b{bottom:866.409000px;}
.y5c{bottom:870.724500px;}
.ye5{bottom:871.600500px;}
.y116{bottom:884.409000px;}
.y6e{bottom:885.430500px;}
.y5b{bottom:890.524500px;}
.ye4{bottom:891.400500px;}
.y4b{bottom:895.635000px;}
.y115{bottom:902.409000px;}
.y6d{bottom:905.230500px;}
.ye3{bottom:911.200500px;}
.y4a{bottom:913.635000px;}
.y114{bottom:920.409000px;}
.y5a{bottom:923.074500px;}
.y6c{bottom:925.030500px;}
.ye2{bottom:931.000500px;}
.y113{bottom:938.409000px;}
.y59{bottom:941.074500px;}
.y6b{bottom:944.830500px;}
.y49{bottom:949.635000px;}
.ye1{bottom:950.800500px;}
.y112{bottom:956.409000px;}
.y58{bottom:959.074500px;}
.y6a{bottom:964.630500px;}
.y12a{bottom:964.914000px;}
.ye0{bottom:970.600500px;}
.y57{bottom:977.074500px;}
.y111{bottom:982.914000px;}
.y69{bottom:984.430500px;}
.ydf{bottom:990.400500px;}
.y48{bottom:992.835000px;}
.y56{bottom:995.074500px;}
.y110{bottom:1000.914000px;}
.y68{bottom:1004.230500px;}
.yde{bottom:1010.200500px;}
.y55{bottom:1013.074500px;}
.y10f{bottom:1018.914000px;}
.y67{bottom:1024.030500px;}
.y47{bottom:1028.835000px;}
.ydd{bottom:1030.000500px;}
.y10e{bottom:1036.914000px;}
.y54{bottom:1043.830500px;}
.y129{bottom:1045.417500px;}
.ydc{bottom:1049.800500px;}
.y10d{bottom:1063.417500px;}
.y53{bottom:1063.630500px;}
.ydb{bottom:1069.600500px;}
.y10c{bottom:1081.417500px;}
.y52{bottom:1083.430500px;}
.yda{bottom:1089.400500px;}
.y10b{bottom:1099.417500px;}
.y2{bottom:1100.785500px;}
.y51{bottom:1103.230500px;}
.yd9{bottom:1109.200500px;}
.y50{bottom:1123.030500px;}
.y10a{bottom:1125.921000px;}
.yd8{bottom:1141.756500px;}
.y4f{bottom:1142.830500px;}
.y109{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.ya9{bottom:1204.654500px;}
.y4e{bottom:1204.695000px;}
.hb{height:39.313477px;}
.ha{height:39.366211px;}
.h9{height:43.535156px;}
.he{height:43.681641px;}
.hd{height:43.740234px;}
.h4{height:48.049805px;}
.h6{height:48.114258px;}
.h8{height:52.417969px;}
.h5{height:52.488281px;}
.h3{height:65.610352px;}
.h7{height:87.480469px;}
.h2{height:171.000000px;}
.hc{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:44.645700px;}
.xe{left:46.771650px;}
.x4{left:108.000000px;}
.x8{left:114.371550px;}
.x10{left:120.755850px;}
.x15{left:125.007900px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.xf{left:142.015800px;}
.xb{left:216.984000px;}
.x9{left:326.920500px;}
.xc{left:359.473500px;}
.xa{left:381.334500px;}
.x5{left:467.716500px;}
.x13{left:484.725000px;}
.x6{left:488.976000px;}
.x12{left:589.224000px;}
.x14{left:825.643500px;}
.xd{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.006400pt;}
.ws3{word-spacing:-80.000000pt;}
.ws6{word-spacing:-44.000000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws2{word-spacing:-16.006400pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.wsa{word-spacing:-13.338667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._9{margin-left:-2.780800pt;}
._6{margin-left:-1.754133pt;}
._c{width:1.079467pt;}
._a{width:2.164800pt;}
._5{width:3.062400pt;}
._4{width:4.452800pt;}
._7{width:6.077867pt;}
._b{width:7.165867pt;}
._1{width:8.167467pt;}
._2{width:9.726933pt;}
._10{width:10.618667pt;}
._3{width:12.056000pt;}
._d{width:13.364267pt;}
._27{width:14.948267pt;}
._8{width:15.974933pt;}
._11{width:17.083733pt;}
._f{width:18.315733pt;}
._e{width:19.225067pt;}
._23{width:20.345600pt;}
._12{width:21.300800pt;}
._1c{width:22.322667pt;}
._22{width:23.806933pt;}
._17{width:24.773333pt;}
._20{width:26.306133pt;}
._14{width:27.485333pt;}
._1e{width:29.450667pt;}
._15{width:30.641600pt;}
._13{width:32.442667pt;}
._16{width:33.428267pt;}
._26{width:34.613333pt;}
._29{width:35.909333pt;}
._18{width:37.216000pt;}
._19{width:38.108267pt;}
._21{width:39.864000pt;}
._28{width:41.237333pt;}
._1b{width:42.210667pt;}
._1d{width:48.807467pt;}
._25{width:51.034133pt;}
._1f{width:56.173333pt;}
._24{width:58.302933pt;}
._1a{width:73.267200pt;}
.fs7{font-size:38.095253pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:39.542533pt;}
.y46{bottom:50.519733pt;}
.y7d{bottom:53.595733pt;}
.y4c{bottom:53.942533pt;}
.y108{bottom:96.267867pt;}
.y82{bottom:104.462800pt;}
.ybf{bottom:105.633867pt;}
.y9d{bottom:106.910533pt;}
.yb7{bottom:109.879467pt;}
.y45{bottom:111.160400pt;}
.y107{bottom:112.267867pt;}
.y81{bottom:118.862800pt;}
.ybe{bottom:123.233867pt;}
.y9c{bottom:124.510533pt;}
.yb6{bottom:127.479467pt;}
.y44{bottom:128.760400pt;}
.yd7{bottom:130.772000pt;}
.y80{bottom:133.262800pt;}
.y106{bottom:135.826667pt;}
.ybd{bottom:140.833333pt;}
.y23{bottom:141.053333pt;}
.y9b{bottom:142.110667pt;}
.y43{bottom:146.360000pt;}
.y7f{bottom:147.662667pt;}
.yd6{bottom:148.372000pt;}
.y105{bottom:151.826667pt;}
.yb5{bottom:156.418667pt;}
.ybc{bottom:158.433333pt;}
.y22{bottom:158.653333pt;}
.y9a{bottom:159.710667pt;}
.y7e{bottom:162.062667pt;}
.y42{bottom:163.960000pt;}
.yd5{bottom:165.972000pt;}
.y104{bottom:167.826667pt;}
.yb4{bottom:175.618667pt;}
.ybb{bottom:176.033333pt;}
.y21{bottom:176.253333pt;}
.y99{bottom:177.310667pt;}
.y41{bottom:181.560000pt;}
.yd4{bottom:183.572000pt;}
.y103{bottom:183.826667pt;}
.yba{bottom:193.633333pt;}
.y20{bottom:193.853333pt;}
.y98{bottom:194.910667pt;}
.y40{bottom:199.160000pt;}
.y102{bottom:199.826667pt;}
.yd3{bottom:201.172000pt;}
.yb9{bottom:211.233333pt;}
.y1f{bottom:211.453333pt;}
.y97{bottom:212.510667pt;}
.y101{bottom:215.826667pt;}
.y3f{bottom:216.760000pt;}
.yd2{bottom:218.772000pt;}
.yb8{bottom:228.833333pt;}
.y1e{bottom:229.053333pt;}
.y96{bottom:230.110667pt;}
.y100{bottom:231.826667pt;}
.y3e{bottom:234.360000pt;}
.yd1{bottom:236.372000pt;}
.yb3{bottom:246.433333pt;}
.y1d{bottom:246.653333pt;}
.y95{bottom:247.710667pt;}
.yff{bottom:247.826667pt;}
.yd0{bottom:253.972000pt;}
.y3d{bottom:263.298667pt;}
.yfe{bottom:263.826667pt;}
.yb2{bottom:264.033333pt;}
.y1c{bottom:264.253333pt;}
.ya8{bottom:265.310667pt;}
.ycf{bottom:271.572000pt;}
.y94{bottom:276.649333pt;}
.y3c{bottom:280.898667pt;}
.yb1{bottom:281.633333pt;}
.y1b{bottom:281.853333pt;}
.ya7{bottom:282.910667pt;}
.yfd{bottom:287.386667pt;}
.yce{bottom:289.172000pt;}
.y93{bottom:294.249333pt;}
.y3b{bottom:298.498667pt;}
.yb0{bottom:299.233333pt;}
.y1a{bottom:299.453333pt;}
.ya6{bottom:300.510667pt;}
.yfc{bottom:303.386667pt;}
.ycd{bottom:306.772000pt;}
.y92{bottom:311.849333pt;}
.y3a{bottom:316.098667pt;}
.yaf{bottom:316.833333pt;}
.y19{bottom:317.053333pt;}
.ya5{bottom:318.110667pt;}
.yfb{bottom:319.386667pt;}
.ycc{bottom:324.372000pt;}
.y91{bottom:329.449333pt;}
.y39{bottom:333.698667pt;}
.yae{bottom:334.433333pt;}
.y18{bottom:334.653333pt;}
.ya4{bottom:335.710667pt;}
.ycb{bottom:341.972000pt;}
.yfa{bottom:342.945333pt;}
.y90{bottom:347.049333pt;}
.y38{bottom:351.298667pt;}
.yad{bottom:352.033333pt;}
.y17{bottom:352.253333pt;}
.ya3{bottom:353.310667pt;}
.yf9{bottom:358.945333pt;}
.y8f{bottom:364.649333pt;}
.y37{bottom:368.898667pt;}
.yac{bottom:369.633333pt;}
.ya2{bottom:370.910667pt;}
.yf8{bottom:374.945333pt;}
.y16{bottom:381.192000pt;}
.y8e{bottom:382.249333pt;}
.y36{bottom:386.498667pt;}
.yab{bottom:387.233333pt;}
.ya1{bottom:388.510667pt;}
.yf7{bottom:398.504000pt;}
.y15{bottom:398.792000pt;}
.y8d{bottom:399.849333pt;}
.y35{bottom:404.098667pt;}
.yaa{bottom:404.833333pt;}
.ya0{bottom:406.110667pt;}
.yf6{bottom:414.504000pt;}
.y14{bottom:416.392000pt;}
.y8c{bottom:417.449333pt;}
.y34{bottom:421.698667pt;}
.y9f{bottom:423.710667pt;}
.yf5{bottom:430.504000pt;}
.y13{bottom:433.992000pt;}
.y8b{bottom:435.049333pt;}
.y33{bottom:439.298667pt;}
.y9e{bottom:441.310667pt;}
.yf4{bottom:446.504000pt;}
.y12{bottom:451.592000pt;}
.y8a{bottom:452.649333pt;}
.y32{bottom:456.898667pt;}
.yca{bottom:458.910667pt;}
.y128{bottom:460.346667pt;}
.y11{bottom:469.192000pt;}
.yf3{bottom:470.062667pt;}
.y89{bottom:470.249333pt;}
.y31{bottom:474.498667pt;}
.y127{bottom:476.346667pt;}
.yc9{bottom:476.510667pt;}
.yc5{bottom:482.776000pt;}
.yf2{bottom:486.062667pt;}
.y13a{bottom:486.085333pt;}
.y10{bottom:486.792000pt;}
.y88{bottom:487.849333pt;}
.y30{bottom:492.098667pt;}
.yc8{bottom:494.110667pt;}
.yc4{bottom:497.176000pt;}
.y126{bottom:499.905333pt;}
.yf1{bottom:502.062667pt;}
.y139{bottom:502.085333pt;}
.yf{bottom:504.392000pt;}
.y87{bottom:505.449333pt;}
.y2f{bottom:509.698667pt;}
.yc3{bottom:511.576000pt;}
.yc7{bottom:511.710667pt;}
.y125{bottom:515.905333pt;}
.yf0{bottom:518.062667pt;}
.y138{bottom:518.085333pt;}
.ye{bottom:521.992000pt;}
.y86{bottom:523.049333pt;}
.yc2{bottom:525.976000pt;}
.y2e{bottom:527.298667pt;}
.y7c{bottom:529.310667pt;}
.y66{bottom:531.822667pt;}
.y124{bottom:531.905333pt;}
.yef{bottom:534.062667pt;}
.y137{bottom:534.085333pt;}
.yd{bottom:539.592000pt;}
.yc1{bottom:540.376000pt;}
.y85{bottom:540.649333pt;}
.y2d{bottom:544.898667pt;}
.y7b{bottom:546.910667pt;}
.y123{bottom:547.905333pt;}
.y65{bottom:549.422667pt;}
.yee{bottom:550.062667pt;}
.y136{bottom:550.085333pt;}
.yc0{bottom:554.776000pt;}
.yc{bottom:557.192000pt;}
.y84{bottom:558.249333pt;}
.y2c{bottom:562.498667pt;}
.y7a{bottom:564.510667pt;}
.y135{bottom:566.085333pt;}
.y64{bottom:567.022667pt;}
.y122{bottom:571.465333pt;}
.yed{bottom:573.622667pt;}
.yb{bottom:574.792000pt;}
.y83{bottom:575.849333pt;}
.y2b{bottom:580.098667pt;}
.y134{bottom:582.085333pt;}
.yc6{bottom:582.110667pt;}
.y121{bottom:587.465333pt;}
.yec{bottom:589.622667pt;}
.ya{bottom:592.392000pt;}
.y79{bottom:593.449333pt;}
.y63{bottom:595.961333pt;}
.y2a{bottom:597.698667pt;}
.y133{bottom:598.085333pt;}
.y120{bottom:603.465333pt;}
.yeb{bottom:605.622667pt;}
.y9{bottom:609.992000pt;}
.y78{bottom:611.049333pt;}
.y132{bottom:614.085333pt;}
.y62{bottom:615.161333pt;}
.y29{bottom:615.298667pt;}
.yea{bottom:621.622667pt;}
.y11f{bottom:627.024000pt;}
.y8{bottom:627.592000pt;}
.y77{bottom:628.649333pt;}
.y131{bottom:630.085333pt;}
.y28{bottom:632.898667pt;}
.ye9{bottom:637.622667pt;}
.y11e{bottom:643.024000pt;}
.y7{bottom:645.192000pt;}
.y130{bottom:646.085333pt;}
.y76{bottom:646.249333pt;}
.y27{bottom:650.498667pt;}
.y11d{bottom:659.024000pt;}
.y12f{bottom:662.085333pt;}
.y6{bottom:662.792000pt;}
.y75{bottom:663.849333pt;}
.y26{bottom:668.098667pt;}
.ye8{bottom:668.740000pt;}
.y11c{bottom:675.024000pt;}
.y12e{bottom:678.085333pt;}
.y5{bottom:680.392000pt;}
.y74{bottom:681.449333pt;}
.y25{bottom:685.698667pt;}
.y61{bottom:685.977333pt;}
.y12d{bottom:694.085333pt;}
.y4{bottom:697.992000pt;}
.y11b{bottom:698.582667pt;}
.y73{bottom:699.049333pt;}
.y60{bottom:703.577333pt;}
.y11a{bottom:714.582667pt;}
.y24{bottom:714.637333pt;}
.y3{bottom:715.592000pt;}
.y72{bottom:716.649333pt;}
.y5f{bottom:721.177333pt;}
.y12c{bottom:721.424000pt;}
.y119{bottom:730.582667pt;}
.y71{bottom:734.249333pt;}
.y5e{bottom:738.777333pt;}
.ye7{bottom:739.556000pt;}
.y118{bottom:746.582667pt;}
.y70{bottom:751.849333pt;}
.y5d{bottom:756.377333pt;}
.ye6{bottom:757.156000pt;}
.y117{bottom:762.582667pt;}
.y6f{bottom:769.449333pt;}
.y12b{bottom:770.141333pt;}
.y5c{bottom:773.977333pt;}
.ye5{bottom:774.756000pt;}
.y116{bottom:786.141333pt;}
.y6e{bottom:787.049333pt;}
.y5b{bottom:791.577333pt;}
.ye4{bottom:792.356000pt;}
.y4b{bottom:796.120000pt;}
.y115{bottom:802.141333pt;}
.y6d{bottom:804.649333pt;}
.ye3{bottom:809.956000pt;}
.y4a{bottom:812.120000pt;}
.y114{bottom:818.141333pt;}
.y5a{bottom:820.510667pt;}
.y6c{bottom:822.249333pt;}
.ye2{bottom:827.556000pt;}
.y113{bottom:834.141333pt;}
.y59{bottom:836.510667pt;}
.y6b{bottom:839.849333pt;}
.y49{bottom:844.120000pt;}
.ye1{bottom:845.156000pt;}
.y112{bottom:850.141333pt;}
.y58{bottom:852.510667pt;}
.y6a{bottom:857.449333pt;}
.y12a{bottom:857.701333pt;}
.ye0{bottom:862.756000pt;}
.y57{bottom:868.510667pt;}
.y111{bottom:873.701333pt;}
.y69{bottom:875.049333pt;}
.ydf{bottom:880.356000pt;}
.y48{bottom:882.520000pt;}
.y56{bottom:884.510667pt;}
.y110{bottom:889.701333pt;}
.y68{bottom:892.649333pt;}
.yde{bottom:897.956000pt;}
.y55{bottom:900.510667pt;}
.y10f{bottom:905.701333pt;}
.y67{bottom:910.249333pt;}
.y47{bottom:914.520000pt;}
.ydd{bottom:915.556000pt;}
.y10e{bottom:921.701333pt;}
.y54{bottom:927.849333pt;}
.y129{bottom:929.260000pt;}
.ydc{bottom:933.156000pt;}
.y10d{bottom:945.260000pt;}
.y53{bottom:945.449333pt;}
.ydb{bottom:950.756000pt;}
.y10c{bottom:961.260000pt;}
.y52{bottom:963.049333pt;}
.yda{bottom:968.356000pt;}
.y10b{bottom:977.260000pt;}
.y2{bottom:978.476000pt;}
.y51{bottom:980.649333pt;}
.yd9{bottom:985.956000pt;}
.y50{bottom:998.249333pt;}
.y10a{bottom:1000.818667pt;}
.yd8{bottom:1014.894667pt;}
.y4f{bottom:1015.849333pt;}
.y109{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.ya9{bottom:1070.804000pt;}
.y4e{bottom:1070.840000pt;}
.hb{height:34.945312pt;}
.ha{height:34.992188pt;}
.h9{height:38.697917pt;}
.he{height:38.828125pt;}
.hd{height:38.880208pt;}
.h4{height:42.710938pt;}
.h6{height:42.768229pt;}
.h8{height:46.593750pt;}
.h5{height:46.656250pt;}
.h3{height:58.320312pt;}
.h7{height:77.760417pt;}
.h2{height:152.000000pt;}
.hc{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:39.685067pt;}
.xe{left:41.574800pt;}
.x4{left:96.000000pt;}
.x8{left:101.663600pt;}
.x10{left:107.338533pt;}
.x15{left:111.118133pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.xf{left:126.236267pt;}
.xb{left:192.874667pt;}
.x9{left:290.596000pt;}
.xc{left:319.532000pt;}
.xa{left:338.964000pt;}
.x5{left:415.748000pt;}
.x13{left:430.866667pt;}
.x6{left:434.645333pt;}
.x12{left:523.754667pt;}
.x14{left:733.905333pt;}
.xd{left:741.238667pt;}
.x7{left:743.128000pt;}
}




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