
    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_766ca5e0af5305e79249206f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_7b93c85ce3cda2d2eea68f86.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_1275d3299d05457a9343637f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_a184795925cff01958f88b00.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_99907002bb31ddd5b00471e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_040d17d93613f0b4edaef006.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899902;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_b03bbcad7ff06b7b9446a5cc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.822000;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_56714956f28ff6f714720aad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_d529366013c8e9fe69b316c1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_27da34c7ed45e91600d88a67.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f08e114ee62b8688c34f8f3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-4.032000px;}
.ls29{letter-spacing:-3.384000px;}
.ls25{letter-spacing:-3.168000px;}
.ls23{letter-spacing:-2.808000px;}
.ls26{letter-spacing:-2.592000px;}
.ls22{letter-spacing:-2.520000px;}
.ls20{letter-spacing:-2.376000px;}
.ls1a{letter-spacing:-1.368000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls2a{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.842400px;}
.lse{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.936000px;}
.ls2e{letter-spacing:1.080000px;}
.ls31{letter-spacing:2.923200px;}
.ls32{letter-spacing:2.928000px;}
.ls33{letter-spacing:3.393600px;}
.ls2{letter-spacing:4.560000px;}
.ls30{letter-spacing:4.752000px;}
.ls2f{letter-spacing:5.112000px;}
.ls6{letter-spacing:7.380000px;}
.ls27{letter-spacing:7.956000px;}
.ls0{letter-spacing:8.436000px;}
.ls28{letter-spacing:8.460000px;}
.ls2d{letter-spacing:9.576000px;}
.ls2b{letter-spacing:9.936000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws3b{word-spacing:-25.320000px;}
.ws12{word-spacing:-20.016000px;}
.ws22{word-spacing:-18.288000px;}
.ws27{word-spacing:-18.072000px;}
.ws28{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.424000px;}
.ws15{word-spacing:-17.352000px;}
.ws3c{word-spacing:-11.856000px;}
.ws11{word-spacing:-8.496000px;}
.ws36{word-spacing:-8.460000px;}
.wsf{word-spacing:-7.380000px;}
.ws8{word-spacing:-2.016000px;}
.ws37{word-spacing:-1.080000px;}
.ws19{word-spacing:-0.936000px;}
.ws10{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.720000px;}
.ws18{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.504000px;}
.ws5{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.144000px;}
.wse{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws17{word-spacing:0.072000px;}
.ws1d{word-spacing:0.144000px;}
.ws1e{word-spacing:0.216000px;}
.ws21{word-spacing:0.288000px;}
.ws1{word-spacing:0.300000px;}
.ws6{word-spacing:0.360000px;}
.ws9{word-spacing:0.432000px;}
.ws31{word-spacing:0.504000px;}
.ws7{word-spacing:0.576000px;}
.ws1f{word-spacing:0.648000px;}
.ws25{word-spacing:0.720000px;}
.ws26{word-spacing:0.792000px;}
.wsa{word-spacing:0.864000px;}
.ws35{word-spacing:1.008000px;}
.ws24{word-spacing:1.296000px;}
.ws23{word-spacing:1.368000px;}
.ws3d{word-spacing:1.440000px;}
.ws3{word-spacing:1.800000px;}
.ws30{word-spacing:2.088000px;}
.ws29{word-spacing:2.376000px;}
.ws2d{word-spacing:2.520000px;}
.ws33{word-spacing:2.592000px;}
.ws2e{word-spacing:2.808000px;}
.ws32{word-spacing:3.168000px;}
.ws34{word-spacing:3.384000px;}
.ws2c{word-spacing:4.032000px;}
.ws16{word-spacing:4.200000px;}
.ws4{word-spacing:4.464000px;}
.ws39{word-spacing:5.112000px;}
.ws2f{word-spacing:5.832000px;}
.ws3a{word-spacing:7.704000px;}
.ws38{word-spacing:8.280000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._11{margin-left:-16.764000px;}
._f{margin-left:-13.939200px;}
._1{margin-left:-7.980000px;}
._7{margin-left:-6.835200px;}
._9{margin-left:-5.052000px;}
._13{margin-left:-3.974400px;}
._6{margin-left:-2.952000px;}
._2{margin-left:-1.788000px;}
._4{width:1.149600px;}
._5{width:2.604000px;}
._0{width:3.840000px;}
._c{width:5.126400px;}
._8{width:6.264000px;}
._e{width:7.264800px;}
._3{width:8.388000px;}
._b{width:9.664800px;}
._a{width:10.684800px;}
._10{width:11.844000px;}
._12{width:13.128000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:417.151200px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y42{bottom:117.000000px;}
.y68{bottom:117.078000px;}
.y97{bottom:119.394150px;}
.y1e{bottom:121.718550px;}
.y96{bottom:138.294150px;}
.y67{bottom:138.984000px;}
.y41{bottom:139.500000px;}
.y1d{bottom:143.768550px;}
.y95{bottom:157.194150px;}
.y66{bottom:160.890000px;}
.y40{bottom:162.000000px;}
.y1c{bottom:165.818550px;}
.y94{bottom:176.094150px;}
.y65{bottom:182.796000px;}
.y3f{bottom:184.500000px;}
.y1b{bottom:187.868550px;}
.y93{bottom:194.994150px;}
.y64{bottom:204.702000px;}
.y3e{bottom:207.000000px;}
.y1a{bottom:209.918550px;}
.y92{bottom:213.894150px;}
.y63{bottom:226.608000px;}
.y3d{bottom:229.500000px;}
.y91{bottom:239.310000px;}
.y62{bottom:248.514000px;}
.y3c{bottom:252.000000px;}
.y19{bottom:254.018550px;}
.y61{bottom:270.420000px;}
.y3b{bottom:274.500000px;}
.y18{bottom:276.068550px;}
.y90{bottom:284.610000px;}
.y60{bottom:292.326000px;}
.y3a{bottom:297.000000px;}
.y17{bottom:298.118550px;}
.y8f{bottom:299.754000px;}
.y5f{bottom:314.232000px;}
.y8e{bottom:314.898000px;}
.y39{bottom:319.500000px;}
.y16{bottom:320.168550px;}
.y8d{bottom:330.042000px;}
.y5e{bottom:336.138000px;}
.y38{bottom:342.000000px;}
.y15{bottom:342.218550px;}
.y8c{bottom:345.186000px;}
.y5d{bottom:358.044000px;}
.y8b{bottom:360.342000px;}
.y14{bottom:364.268550px;}
.y37{bottom:364.500000px;}
.yaf{bottom:372.000000px;}
.y8a{bottom:375.486000px;}
.y5c{bottom:379.950000px;}
.y13{bottom:386.318550px;}
.y36{bottom:387.000000px;}
.y89{bottom:390.630000px;}
.yae{bottom:390.750000px;}
.y5b{bottom:401.856000px;}
.y88{bottom:405.774000px;}
.y12{bottom:408.368550px;}
.y35{bottom:409.500000px;}
.y87{bottom:420.918000px;}
.y5a{bottom:423.762000px;}
.yad{bottom:428.250000px;}
.y11{bottom:430.418550px;}
.y34{bottom:432.000000px;}
.y86{bottom:436.074000px;}
.y59{bottom:445.668000px;}
.y85{bottom:451.218000px;}
.y10{bottom:452.468550px;}
.y33{bottom:454.500000px;}
.yac{bottom:458.250000px;}
.y84{bottom:466.362000px;}
.y58{bottom:467.574000px;}
.yf{bottom:474.518550px;}
.y32{bottom:477.000000px;}
.y83{bottom:481.506000px;}
.y57{bottom:489.480000px;}
.ye{bottom:496.568550px;}
.y82{bottom:496.650000px;}
.y31{bottom:499.500000px;}
.y56{bottom:511.386000px;}
.y81{bottom:511.806000px;}
.yab{bottom:518.250000px;}
.yd{bottom:518.618550px;}
.y30{bottom:522.000000px;}
.y80{bottom:526.950000px;}
.y55{bottom:533.292000px;}
.yaa{bottom:537.000000px;}
.yc{bottom:540.668550px;}
.y7f{bottom:542.094000px;}
.y2f{bottom:544.500000px;}
.y54{bottom:555.198000px;}
.ya9{bottom:555.750000px;}
.y7e{bottom:557.238000px;}
.yb{bottom:562.718550px;}
.y2e{bottom:567.000000px;}
.y7d{bottom:572.382000px;}
.ya8{bottom:574.500000px;}
.y53{bottom:577.104000px;}
.ya{bottom:584.768550px;}
.y7c{bottom:587.526000px;}
.y2d{bottom:589.500000px;}
.ya7{bottom:593.250000px;}
.y52{bottom:599.010000px;}
.y7b{bottom:602.682000px;}
.y7{bottom:606.818550px;}
.y2c{bottom:612.000000px;}
.y7a{bottom:617.826000px;}
.y51{bottom:620.916000px;}
.y9{bottom:628.868550px;}
.ya6{bottom:630.750000px;}
.y79{bottom:632.970000px;}
.y2b{bottom:634.500000px;}
.y50{bottom:642.822000px;}
.y78{bottom:648.114000px;}
.ya5{bottom:649.500000px;}
.y8{bottom:650.918550px;}
.y2a{bottom:657.000000px;}
.y77{bottom:663.258000px;}
.y4f{bottom:664.728000px;}
.ya4{bottom:668.250000px;}
.y76{bottom:678.414000px;}
.y29{bottom:679.500000px;}
.y4e{bottom:686.634000px;}
.ya3{bottom:687.000000px;}
.y75{bottom:693.558000px;}
.y28{bottom:702.000000px;}
.ya2{bottom:705.750000px;}
.y4d{bottom:708.540000px;}
.y74{bottom:708.702000px;}
.y6{bottom:708.968550px;}
.y73{bottom:723.846000px;}
.y27{bottom:724.500000px;}
.y5{bottom:727.718550px;}
.y4c{bottom:730.446000px;}
.y72{bottom:738.990000px;}
.ya1{bottom:743.250000px;}
.y26{bottom:747.000000px;}
.y4b{bottom:752.352000px;}
.y71{bottom:754.146000px;}
.ya0{bottom:762.000000px;}
.y70{bottom:769.290000px;}
.y25{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y4a{bottom:774.258000px;}
.y9f{bottom:780.750000px;}
.y6f{bottom:784.434000px;}
.y24{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y49{bottom:796.164000px;}
.y9e{bottom:799.500000px;}
.y6e{bottom:799.578000px;}
.y23{bottom:814.500000px;}
.y6d{bottom:814.722000px;}
.y48{bottom:818.070000px;}
.y9d{bottom:818.250000px;}
.y6c{bottom:836.250000px;}
.y22{bottom:837.000000px;}
.y47{bottom:839.976000px;}
.y9c{bottom:855.750000px;}
.y2{bottom:859.500000px;}
.y46{bottom:861.882000px;}
.y9b{bottom:874.500000px;}
.y6b{bottom:881.562000px;}
.y21{bottom:882.000000px;}
.y45{bottom:883.788000px;}
.y9a{bottom:893.250000px;}
.y6a{bottom:904.206000px;}
.y20{bottom:904.500000px;}
.y44{bottom:905.694000px;}
.y99{bottom:912.000000px;}
.y69{bottom:926.850000px;}
.y1f{bottom:927.000000px;}
.y43{bottom:927.600000px;}
.y98{bottom:930.750000px;}
.h8{height:39.072000px;}
.h9{height:40.757812px;}
.h7{height:41.396484px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:101.894531px;}
.h5{height:292.005840px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.405350px;}
.x5{left:112.500000px;}
.x6{left:127.386000px;}
.x7{left:135.526950px;}
.x2{left:153.955350px;}
.x4{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-3.584000pt;}
.ls29{letter-spacing:-3.008000pt;}
.ls25{letter-spacing:-2.816000pt;}
.ls23{letter-spacing:-2.496000pt;}
.ls26{letter-spacing:-2.304000pt;}
.ls22{letter-spacing:-2.240000pt;}
.ls20{letter-spacing:-2.112000pt;}
.ls1a{letter-spacing:-1.216000pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.748800pt;}
.lse{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.832000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls31{letter-spacing:2.598400pt;}
.ls32{letter-spacing:2.602667pt;}
.ls33{letter-spacing:3.016533pt;}
.ls2{letter-spacing:4.053333pt;}
.ls30{letter-spacing:4.224000pt;}
.ls2f{letter-spacing:4.544000pt;}
.ls6{letter-spacing:6.560000pt;}
.ls27{letter-spacing:7.072000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls28{letter-spacing:7.520000pt;}
.ls2d{letter-spacing:8.512000pt;}
.ls2b{letter-spacing:8.832000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws3b{word-spacing:-22.506667pt;}
.ws12{word-spacing:-17.792000pt;}
.ws22{word-spacing:-16.256000pt;}
.ws27{word-spacing:-16.064000pt;}
.ws28{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.488000pt;}
.ws15{word-spacing:-15.424000pt;}
.ws3c{word-spacing:-10.538667pt;}
.ws11{word-spacing:-7.552000pt;}
.ws36{word-spacing:-7.520000pt;}
.wsf{word-spacing:-6.560000pt;}
.ws8{word-spacing:-1.792000pt;}
.ws37{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.832000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.640000pt;}
.ws18{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.448000pt;}
.ws5{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws17{word-spacing:0.064000pt;}
.ws1d{word-spacing:0.128000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws21{word-spacing:0.256000pt;}
.ws1{word-spacing:0.266667pt;}
.ws6{word-spacing:0.320000pt;}
.ws9{word-spacing:0.384000pt;}
.ws31{word-spacing:0.448000pt;}
.ws7{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.576000pt;}
.ws25{word-spacing:0.640000pt;}
.ws26{word-spacing:0.704000pt;}
.wsa{word-spacing:0.768000pt;}
.ws35{word-spacing:0.896000pt;}
.ws24{word-spacing:1.152000pt;}
.ws23{word-spacing:1.216000pt;}
.ws3d{word-spacing:1.280000pt;}
.ws3{word-spacing:1.600000pt;}
.ws30{word-spacing:1.856000pt;}
.ws29{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.240000pt;}
.ws33{word-spacing:2.304000pt;}
.ws2e{word-spacing:2.496000pt;}
.ws32{word-spacing:2.816000pt;}
.ws34{word-spacing:3.008000pt;}
.ws2c{word-spacing:3.584000pt;}
.ws16{word-spacing:3.733333pt;}
.ws4{word-spacing:3.968000pt;}
.ws39{word-spacing:4.544000pt;}
.ws2f{word-spacing:5.184000pt;}
.ws3a{word-spacing:6.848000pt;}
.ws38{word-spacing:7.360000pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._11{margin-left:-14.901333pt;}
._f{margin-left:-12.390400pt;}
._1{margin-left:-7.093333pt;}
._7{margin-left:-6.075733pt;}
._9{margin-left:-4.490667pt;}
._13{margin-left:-3.532800pt;}
._6{margin-left:-2.624000pt;}
._2{margin-left:-1.589333pt;}
._4{width:1.021867pt;}
._5{width:2.314667pt;}
._0{width:3.413333pt;}
._c{width:4.556800pt;}
._8{width:5.568000pt;}
._e{width:6.457600pt;}
._3{width:7.456000pt;}
._b{width:8.590933pt;}
._a{width:9.497600pt;}
._10{width:10.528000pt;}
._12{width:11.669333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:370.801067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y42{bottom:104.000000pt;}
.y68{bottom:104.069333pt;}
.y97{bottom:106.128133pt;}
.y1e{bottom:108.194267pt;}
.y96{bottom:122.928133pt;}
.y67{bottom:123.541333pt;}
.y41{bottom:124.000000pt;}
.y1d{bottom:127.794267pt;}
.y95{bottom:139.728133pt;}
.y66{bottom:143.013333pt;}
.y40{bottom:144.000000pt;}
.y1c{bottom:147.394267pt;}
.y94{bottom:156.528133pt;}
.y65{bottom:162.485333pt;}
.y3f{bottom:164.000000pt;}
.y1b{bottom:166.994267pt;}
.y93{bottom:173.328133pt;}
.y64{bottom:181.957333pt;}
.y3e{bottom:184.000000pt;}
.y1a{bottom:186.594267pt;}
.y92{bottom:190.128133pt;}
.y63{bottom:201.429333pt;}
.y3d{bottom:204.000000pt;}
.y91{bottom:212.720000pt;}
.y62{bottom:220.901333pt;}
.y3c{bottom:224.000000pt;}
.y19{bottom:225.794267pt;}
.y61{bottom:240.373333pt;}
.y3b{bottom:244.000000pt;}
.y18{bottom:245.394267pt;}
.y90{bottom:252.986667pt;}
.y60{bottom:259.845333pt;}
.y3a{bottom:264.000000pt;}
.y17{bottom:264.994267pt;}
.y8f{bottom:266.448000pt;}
.y5f{bottom:279.317333pt;}
.y8e{bottom:279.909333pt;}
.y39{bottom:284.000000pt;}
.y16{bottom:284.594267pt;}
.y8d{bottom:293.370667pt;}
.y5e{bottom:298.789333pt;}
.y38{bottom:304.000000pt;}
.y15{bottom:304.194267pt;}
.y8c{bottom:306.832000pt;}
.y5d{bottom:318.261333pt;}
.y8b{bottom:320.304000pt;}
.y14{bottom:323.794267pt;}
.y37{bottom:324.000000pt;}
.yaf{bottom:330.666667pt;}
.y8a{bottom:333.765333pt;}
.y5c{bottom:337.733333pt;}
.y13{bottom:343.394267pt;}
.y36{bottom:344.000000pt;}
.y89{bottom:347.226667pt;}
.yae{bottom:347.333333pt;}
.y5b{bottom:357.205333pt;}
.y88{bottom:360.688000pt;}
.y12{bottom:362.994267pt;}
.y35{bottom:364.000000pt;}
.y87{bottom:374.149333pt;}
.y5a{bottom:376.677333pt;}
.yad{bottom:380.666667pt;}
.y11{bottom:382.594267pt;}
.y34{bottom:384.000000pt;}
.y86{bottom:387.621333pt;}
.y59{bottom:396.149333pt;}
.y85{bottom:401.082667pt;}
.y10{bottom:402.194267pt;}
.y33{bottom:404.000000pt;}
.yac{bottom:407.333333pt;}
.y84{bottom:414.544000pt;}
.y58{bottom:415.621333pt;}
.yf{bottom:421.794267pt;}
.y32{bottom:424.000000pt;}
.y83{bottom:428.005333pt;}
.y57{bottom:435.093333pt;}
.ye{bottom:441.394267pt;}
.y82{bottom:441.466667pt;}
.y31{bottom:444.000000pt;}
.y56{bottom:454.565333pt;}
.y81{bottom:454.938667pt;}
.yab{bottom:460.666667pt;}
.yd{bottom:460.994267pt;}
.y30{bottom:464.000000pt;}
.y80{bottom:468.400000pt;}
.y55{bottom:474.037333pt;}
.yaa{bottom:477.333333pt;}
.yc{bottom:480.594267pt;}
.y7f{bottom:481.861333pt;}
.y2f{bottom:484.000000pt;}
.y54{bottom:493.509333pt;}
.ya9{bottom:494.000000pt;}
.y7e{bottom:495.322667pt;}
.yb{bottom:500.194267pt;}
.y2e{bottom:504.000000pt;}
.y7d{bottom:508.784000pt;}
.ya8{bottom:510.666667pt;}
.y53{bottom:512.981333pt;}
.ya{bottom:519.794267pt;}
.y7c{bottom:522.245333pt;}
.y2d{bottom:524.000000pt;}
.ya7{bottom:527.333333pt;}
.y52{bottom:532.453333pt;}
.y7b{bottom:535.717333pt;}
.y7{bottom:539.394267pt;}
.y2c{bottom:544.000000pt;}
.y7a{bottom:549.178667pt;}
.y51{bottom:551.925333pt;}
.y9{bottom:558.994267pt;}
.ya6{bottom:560.666667pt;}
.y79{bottom:562.640000pt;}
.y2b{bottom:564.000000pt;}
.y50{bottom:571.397333pt;}
.y78{bottom:576.101333pt;}
.ya5{bottom:577.333333pt;}
.y8{bottom:578.594267pt;}
.y2a{bottom:584.000000pt;}
.y77{bottom:589.562667pt;}
.y4f{bottom:590.869333pt;}
.ya4{bottom:594.000000pt;}
.y76{bottom:603.034667pt;}
.y29{bottom:604.000000pt;}
.y4e{bottom:610.341333pt;}
.ya3{bottom:610.666667pt;}
.y75{bottom:616.496000pt;}
.y28{bottom:624.000000pt;}
.ya2{bottom:627.333333pt;}
.y4d{bottom:629.813333pt;}
.y74{bottom:629.957333pt;}
.y6{bottom:630.194267pt;}
.y73{bottom:643.418667pt;}
.y27{bottom:644.000000pt;}
.y5{bottom:646.860933pt;}
.y4c{bottom:649.285333pt;}
.y72{bottom:656.880000pt;}
.ya1{bottom:660.666667pt;}
.y26{bottom:664.000000pt;}
.y4b{bottom:668.757333pt;}
.y71{bottom:670.352000pt;}
.ya0{bottom:677.333333pt;}
.y70{bottom:683.813333pt;}
.y25{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y4a{bottom:688.229333pt;}
.y9f{bottom:694.000000pt;}
.y6f{bottom:697.274667pt;}
.y24{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y49{bottom:707.701333pt;}
.y9e{bottom:710.666667pt;}
.y6e{bottom:710.736000pt;}
.y23{bottom:724.000000pt;}
.y6d{bottom:724.197333pt;}
.y48{bottom:727.173333pt;}
.y9d{bottom:727.333333pt;}
.y6c{bottom:743.333333pt;}
.y22{bottom:744.000000pt;}
.y47{bottom:746.645333pt;}
.y9c{bottom:760.666667pt;}
.y2{bottom:764.000000pt;}
.y46{bottom:766.117333pt;}
.y9b{bottom:777.333333pt;}
.y6b{bottom:783.610667pt;}
.y21{bottom:784.000000pt;}
.y45{bottom:785.589333pt;}
.y9a{bottom:794.000000pt;}
.y6a{bottom:803.738667pt;}
.y20{bottom:804.000000pt;}
.y44{bottom:805.061333pt;}
.y99{bottom:810.666667pt;}
.y69{bottom:823.866667pt;}
.y1f{bottom:824.000000pt;}
.y43{bottom:824.533333pt;}
.y98{bottom:827.333333pt;}
.h8{height:34.730667pt;}
.h9{height:36.229167pt;}
.h7{height:36.796875pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:90.572917pt;}
.h5{height:259.560747pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.249200pt;}
.x5{left:100.000000pt;}
.x6{left:113.232000pt;}
.x7{left:120.468400pt;}
.x2{left:136.849200pt;}
.x4{left:556.250000pt;}
}




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