
    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_5c494561d3a10083dc4856e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_dafa5d81d3db31c38934ef93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_d1e7ed83db3b0c6be8207c23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.635000;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_8b4340761c0fd21da81d89a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_5573037468ef69fbeaae11d7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_574973d4c0e4051e6a1becc1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_b65879e7fc29069145a88e5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_c198a1ebbdd8371da8e749eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_8eac90d0aa83c354507abefb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_13e66577c04d8bff5eb8cd4b.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_22ba566213046a1a8f50a90b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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:ffc;src:url('chunks/assets/font_0f6a430638b9c90b04adef7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687000;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);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.816000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002692px;}
.ls4{letter-spacing:0.025366px;}
.ls0{letter-spacing:2.986053px;}
.ls7{letter-spacing:5.825459px;}
.ls9{letter-spacing:10.865464px;}
.ls6{letter-spacing:18.196379px;}
.ls3{letter-spacing:27.621841px;}
.ls2{letter-spacing:32.727300px;}
.ls8{letter-spacing:141.840118px;}
.lsa{letter-spacing:525.534983px;}
.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;}
}
.ws28{word-spacing:-42.637126px;}
.wsf{word-spacing:-22.416000px;}
.ws2b{word-spacing:-18.183288px;}
.ws26{word-spacing:-14.111859px;}
.ws29{word-spacing:-7.345954px;}
.ws37{word-spacing:-2.016002px;}
.ws3d{word-spacing:-0.314182px;}
.ws39{word-spacing:-0.248727px;}
.ws22{word-spacing:-0.065455px;}
.ws46{word-spacing:-0.059776px;}
.wse{word-spacing:0.000000px;}
.ws9{word-spacing:0.144000px;}
.ws1b{word-spacing:0.209455px;}
.wsc{word-spacing:0.405819px;}
.ws2c{word-spacing:0.471273px;}
.ws21{word-spacing:0.890183px;}
.ws2d{word-spacing:1.976729px;}
.ws40{word-spacing:2.173093px;}
.ws44{word-spacing:2.642082px;}
.ws1a{word-spacing:2.958548px;}
.ws2f{word-spacing:3.285821px;}
.ws36{word-spacing:3.299613px;}
.ws4{word-spacing:3.613094px;}
.ws11{word-spacing:3.678549px;}
.ws3a{word-spacing:3.744003px;}
.ws19{word-spacing:3.874912px;}
.ws10{word-spacing:4.162913px;}
.ws12{word-spacing:4.228367px;}
.ws42{word-spacing:4.267640px;}
.ws14{word-spacing:4.483200px;}
.ws1f{word-spacing:4.594913px;}
.ws3b{word-spacing:4.660368px;}
.ws3c{word-spacing:5.314914px;}
.ws35{word-spacing:5.331984px;}
.ws41{word-spacing:5.445823px;}
.ws25{word-spacing:5.511277px;}
.ws3e{word-spacing:6.034914px;}
.ws34{word-spacing:6.132977px;}
.ws24{word-spacing:6.231278px;}
.wsd{word-spacing:6.624006px;}
.ws7{word-spacing:6.754915px;}
.ws31{word-spacing:7.278552px;}
.ws15{word-spacing:8.980371px;}
.wsa{word-spacing:9.373099px;}
.ws1c{word-spacing:9.700372px;}
.ws1e{word-spacing:9.765826px;}
.ws8{word-spacing:9.896736px;}
.ws18{word-spacing:10.027645px;}
.ws27{word-spacing:10.834046px;}
.ws5{word-spacing:10.878555px;}
.ws2e{word-spacing:11.205828px;}
.wsb{word-spacing:11.533101px;}
.ws17{word-spacing:12.842193px;}
.ws38{word-spacing:13.300375px;}
.ws30{word-spacing:14.020375px;}
.ws23{word-spacing:14.085830px;}
.ws20{word-spacing:14.544012px;}
.ws16{word-spacing:15.394922px;}
.ws2a{word-spacing:18.130924px;}
.ws45{word-spacing:20.682358px;}
.ws43{word-spacing:21.339889px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws1d{word-spacing:34.036392px;}
.ws13{word-spacing:39.639306px;}
.ws1{word-spacing:54.432472px;}
.ws3f{word-spacing:58.281600px;}
.ws6{word-spacing:63.419231px;}
.ws33{word-spacing:474.284032px;}
.ws32{word-spacing:474.349486px;}
._29{margin-left:-6.736456px;}
._3{margin-left:-5.498186px;}
._5{margin-left:-3.665458px;}
._1{margin-left:-2.223667px;}
._1a{margin-left:-1.049063px;}
._2{width:2.223667px;}
._0{width:4.461678px;}
._1f{width:5.758216px;}
._1e{width:7.069097px;}
._6{width:19.832744px;}
._21{width:24.007552px;}
._1d{width:25.263686px;}
._7{width:28.340053px;}
._19{width:29.912752px;}
._1b{width:31.681816px;}
._2a{width:32.697253px;}
._28{width:34.558240px;}
._20{width:36.850940px;}
._18{width:48.240040px;}
._4{width:52.756408px;}
._8{width:60.545505px;}
._b{width:66.894601px;}
._23{width:71.738242px;}
._1c{width:75.272790px;}
._17{width:80.697600px;}
._26{width:350.769412px;}
._24{width:398.749423px;}
._22{width:445.745826px;}
._25{width:646.167811px;}
._27{width:693.295123px;}
._13{width:805.808002px;}
._14{width:1020.497301px;}
._15{width:1041.382686px;}
._10{width:1078.819139px;}
._a{width:1246.908341px;}
._12{width:1388.426554px;}
._e{width:1409.170294px;}
._d{width:1676.943274px;}
._11{width:1711.048699px;}
._f{width:1816.168786px;}
._c{width:1824.088793px;}
._9{width:1874.492413px;}
._16{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y31{bottom:93.813000px;}
.y54{bottom:176.005500px;}
.y77{bottom:181.435500px;}
.y53{bottom:196.329000px;}
.y76{bottom:201.760500px;}
.y30{bottom:215.893500px;}
.y52{bottom:216.652500px;}
.y75{bottom:222.084000px;}
.y2f{bottom:236.217000px;}
.y51{bottom:236.976000px;}
.y74{bottom:242.407500px;}
.y2e{bottom:256.540500px;}
.y50{bottom:257.301000px;}
.y73{bottom:262.731000px;}
.y2d{bottom:276.865500px;}
.y4f{bottom:291.615000px;}
.y72{bottom:299.259000px;}
.y2c{bottom:313.393500px;}
.y4e{bottom:333.321000px;}
.y71{bottom:344.839500px;}
.y4d{bottom:353.644500px;}
.y2b{bottom:358.974000px;}
.y70{bottom:365.164500px;}
.y4c{bottom:373.968000px;}
.y11{bottom:374.629500px;}
.y2a{bottom:379.297500px;}
.y6f{bottom:385.488000px;}
.y4b{bottom:394.291500px;}
.y10{bottom:394.954500px;}
.y29{bottom:399.621000px;}
.y6e{bottom:405.811500px;}
.yf{bottom:415.278000px;}
.y28{bottom:419.944500px;}
.y6d{bottom:426.135000px;}
.y4a{bottom:428.605500px;}
.ye{bottom:435.601500px;}
.y27{bottom:440.269500px;}
.y6c{bottom:446.458500px;}
.yd{bottom:455.925000px;}
.y26{bottom:460.593000px;}
.y6b{bottom:466.783500px;}
.y49{bottom:470.311500px;}
.yc{bottom:476.248500px;}
.y25{bottom:480.916500px;}
.y48{bottom:490.636500px;}
.yb{bottom:496.573500px;}
.y24{bottom:501.240000px;}
.y6a{bottom:503.311500px;}
.ya{bottom:516.897000px;}
.y47{bottom:520.353000px;}
.y23{bottom:521.563500px;}
.y22{bottom:541.888500px;}
.y69{bottom:548.892000px;}
.y46{bottom:550.071000px;}
.y9{bottom:556.647000px;}
.y68{bottom:569.215500px;}
.y45{bottom:570.394500px;}
.y21{bottom:578.416500px;}
.y67{bottom:589.539000px;}
.y44{bottom:590.718000px;}
.y8{bottom:593.370000px;}
.y7{bottom:622.102500px;}
.y20{bottom:623.997000px;}
.y43{bottom:625.033500px;}
.y66{bottom:626.067000px;}
.y42{bottom:666.738000px;}
.y1f{bottom:670.524000px;}
.y65{bottom:671.647500px;}
.y41{bottom:687.063000px;}
.y64{bottom:691.972500px;}
.y1e{bottom:707.211000px;}
.y63{bottom:712.296000px;}
.y40{bottom:714.180000px;}
.y6{bottom:735.126000px;}
.y1d{bottom:743.899500px;}
.y62{bottom:746.068500px;}
.y3f{bottom:747.940500px;}
.y86{bottom:754.120500px;}
.y3e{bottom:768.264000px;}
.y85{bottom:772.053000px;}
.y5{bottom:772.407000px;}
.y61{bottom:779.842500px;}
.y1c{bottom:780.586500px;}
.y3d{bottom:788.589000px;}
.y84{bottom:797.458500px;}
.y60{bottom:813.615000px;}
.y83{bottom:815.391000px;}
.y3c{bottom:815.706000px;}
.y4{bottom:817.239000px;}
.y1b{bottom:817.273500px;}
.y82{bottom:840.795000px;}
.y5f{bottom:847.389000px;}
.y3b{bottom:849.466500px;}
.y1a{bottom:853.962000px;}
.y81{bottom:858.729000px;}
.y3{bottom:862.071000px;}
.y3a{bottom:880.891500px;}
.y5e{bottom:881.163000px;}
.y80{bottom:884.133000px;}
.y19{bottom:890.649000px;}
.y5d{bottom:901.486500px;}
.y2{bottom:906.903000px;}
.y39{bottom:908.794500px;}
.y7f{bottom:909.537000px;}
.y5c{bottom:921.810000px;}
.y18{bottom:927.336000px;}
.y7e{bottom:934.942500px;}
.y38{bottom:935.913000px;}
.y17{bottom:947.659500px;}
.y5b{bottom:958.338000px;}
.y7d{bottom:960.346500px;}
.y16{bottom:967.984500px;}
.y37{bottom:969.673500px;}
.y7c{bottom:978.280500px;}
.y15{bottom:988.308000px;}
.y36{bottom:1001.098500px;}
.y5a{bottom:1007.571000px;}
.y14{bottom:1008.631500px;}
.y7b{bottom:1012.417500px;}
.y59{bottom:1025.503500px;}
.y35{bottom:1032.523500px;}
.y13{bottom:1045.318500px;}
.y7a{bottom:1057.998000px;}
.y58{bottom:1059.013500px;}
.y34{bottom:1063.948500px;}
.y79{bottom:1078.321500px;}
.y57{bottom:1079.338500px;}
.y12{bottom:1082.007000px;}
.y1{bottom:1087.587000px;}
.y33{bottom:1091.851500px;}
.y78{bottom:1098.645000px;}
.y56{bottom:1099.662000px;}
.y32{bottom:1118.968500px;}
.y55{bottom:1120.582500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xa{left:136.393500px;}
.x4{left:139.332000px;}
.x8{left:147.427500px;}
.x5{left:151.972500px;}
.xb{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x9{left:292.447500px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.725333pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002393pt;}
.ls4{letter-spacing:0.022548pt;}
.ls0{letter-spacing:2.654270pt;}
.ls7{letter-spacing:5.178186pt;}
.ls9{letter-spacing:9.658190pt;}
.ls6{letter-spacing:16.174559pt;}
.ls3{letter-spacing:24.552748pt;}
.ls2{letter-spacing:29.090933pt;}
.ls8{letter-spacing:126.080105pt;}
.lsa{letter-spacing:467.142207pt;}
.ws28{word-spacing:-37.899668pt;}
.wsf{word-spacing:-19.925333pt;}
.ws2b{word-spacing:-16.162923pt;}
.ws26{word-spacing:-12.543875pt;}
.ws29{word-spacing:-6.529737pt;}
.ws37{word-spacing:-1.792001pt;}
.ws3d{word-spacing:-0.279273pt;}
.ws39{word-spacing:-0.221091pt;}
.ws22{word-spacing:-0.058182pt;}
.ws46{word-spacing:-0.053134pt;}
.wse{word-spacing:0.000000pt;}
.ws9{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.186182pt;}
.wsc{word-spacing:0.360728pt;}
.ws2c{word-spacing:0.418909pt;}
.ws21{word-spacing:0.791273pt;}
.ws2d{word-spacing:1.757092pt;}
.ws40{word-spacing:1.931638pt;}
.ws44{word-spacing:2.348517pt;}
.ws1a{word-spacing:2.629820pt;}
.ws2f{word-spacing:2.920730pt;}
.ws36{word-spacing:2.932989pt;}
.ws4{word-spacing:3.211639pt;}
.ws11{word-spacing:3.269821pt;}
.ws3a{word-spacing:3.328003pt;}
.ws19{word-spacing:3.444367pt;}
.ws10{word-spacing:3.700367pt;}
.ws12{word-spacing:3.758549pt;}
.ws42{word-spacing:3.793458pt;}
.ws14{word-spacing:3.985067pt;}
.ws1f{word-spacing:4.084367pt;}
.ws3b{word-spacing:4.142549pt;}
.ws3c{word-spacing:4.724368pt;}
.ws35{word-spacing:4.739541pt;}
.ws41{word-spacing:4.840731pt;}
.ws25{word-spacing:4.898913pt;}
.ws3e{word-spacing:5.364368pt;}
.ws34{word-spacing:5.451535pt;}
.ws24{word-spacing:5.538914pt;}
.wsd{word-spacing:5.888005pt;}
.ws7{word-spacing:6.004369pt;}
.ws31{word-spacing:6.469824pt;}
.ws15{word-spacing:7.982552pt;}
.wsa{word-spacing:8.331643pt;}
.ws1c{word-spacing:8.622553pt;}
.ws1e{word-spacing:8.680735pt;}
.ws8{word-spacing:8.797098pt;}
.ws18{word-spacing:8.913462pt;}
.ws27{word-spacing:9.630263pt;}
.ws5{word-spacing:9.669826pt;}
.ws2e{word-spacing:9.960736pt;}
.wsb{word-spacing:10.251645pt;}
.ws17{word-spacing:11.415282pt;}
.ws38{word-spacing:11.822555pt;}
.ws30{word-spacing:12.462556pt;}
.ws23{word-spacing:12.520738pt;}
.ws20{word-spacing:12.928011pt;}
.ws16{word-spacing:13.684375pt;}
.ws2a{word-spacing:16.116377pt;}
.ws45{word-spacing:18.384318pt;}
.ws43{word-spacing:18.968790pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws1d{word-spacing:30.254571pt;}
.ws13{word-spacing:35.234938pt;}
.ws1{word-spacing:48.384419pt;}
.ws3f{word-spacing:51.805867pt;}
.ws6{word-spacing:56.372650pt;}
.ws33{word-spacing:421.585806pt;}
.ws32{word-spacing:421.643988pt;}
._29{margin-left:-5.987961pt;}
._3{margin-left:-4.887277pt;}
._5{margin-left:-3.258185pt;}
._1{margin-left:-1.976593pt;}
._1a{margin-left:-0.932500pt;}
._2{width:1.976593pt;}
._0{width:3.965936pt;}
._1f{width:5.118414pt;}
._1e{width:6.283642pt;}
._6{width:17.629106pt;}
._21{width:21.340046pt;}
._1d{width:22.456610pt;}
._7{width:25.191158pt;}
._19{width:26.589113pt;}
._1b{width:28.161614pt;}
._2a{width:29.064225pt;}
._28{width:30.718435pt;}
._20{width:32.756391pt;}
._18{width:42.880036pt;}
._4{width:46.894585pt;}
._8{width:53.818227pt;}
._b{width:59.461868pt;}
._23{width:63.767326pt;}
._1c{width:66.909147pt;}
._17{width:71.731200pt;}
._26{width:311.795033pt;}
._24{width:354.443932pt;}
._22{width:396.218512pt;}
._25{width:574.371388pt;}
._27{width:616.262332pt;}
._13{width:716.273780pt;}
._14{width:907.108712pt;}
._15{width:925.673499pt;}
._10{width:958.950346pt;}
._a{width:1108.362970pt;}
._12{width:1234.156937pt;}
._e{width:1252.595817pt;}
._d{width:1490.616243pt;}
._11{width:1520.932177pt;}
._f{width:1614.372254pt;}
._c{width:1621.412260pt;}
._9{width:1666.215478pt;}
._16{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:83.389333pt;}
.y54{bottom:156.449333pt;}
.y77{bottom:161.276000pt;}
.y53{bottom:174.514667pt;}
.y76{bottom:179.342667pt;}
.y30{bottom:191.905333pt;}
.y52{bottom:192.580000pt;}
.y75{bottom:197.408000pt;}
.y2f{bottom:209.970667pt;}
.y51{bottom:210.645333pt;}
.y74{bottom:215.473333pt;}
.y2e{bottom:228.036000pt;}
.y50{bottom:228.712000pt;}
.y73{bottom:233.538667pt;}
.y2d{bottom:246.102667pt;}
.y4f{bottom:259.213333pt;}
.y72{bottom:266.008000pt;}
.y2c{bottom:278.572000pt;}
.y4e{bottom:296.285333pt;}
.y71{bottom:306.524000pt;}
.y4d{bottom:314.350667pt;}
.y2b{bottom:319.088000pt;}
.y70{bottom:324.590667pt;}
.y4c{bottom:332.416000pt;}
.y11{bottom:333.004000pt;}
.y2a{bottom:337.153333pt;}
.y6f{bottom:342.656000pt;}
.y4b{bottom:350.481333pt;}
.y10{bottom:351.070667pt;}
.y29{bottom:355.218667pt;}
.y6e{bottom:360.721333pt;}
.yf{bottom:369.136000pt;}
.y28{bottom:373.284000pt;}
.y6d{bottom:378.786667pt;}
.y4a{bottom:380.982667pt;}
.ye{bottom:387.201333pt;}
.y27{bottom:391.350667pt;}
.y6c{bottom:396.852000pt;}
.yd{bottom:405.266667pt;}
.y26{bottom:409.416000pt;}
.y6b{bottom:414.918667pt;}
.y49{bottom:418.054667pt;}
.yc{bottom:423.332000pt;}
.y25{bottom:427.481333pt;}
.y48{bottom:436.121333pt;}
.yb{bottom:441.398667pt;}
.y24{bottom:445.546667pt;}
.y6a{bottom:447.388000pt;}
.ya{bottom:459.464000pt;}
.y47{bottom:462.536000pt;}
.y23{bottom:463.612000pt;}
.y22{bottom:481.678667pt;}
.y69{bottom:487.904000pt;}
.y46{bottom:488.952000pt;}
.y9{bottom:494.797333pt;}
.y68{bottom:505.969333pt;}
.y45{bottom:507.017333pt;}
.y21{bottom:514.148000pt;}
.y67{bottom:524.034667pt;}
.y44{bottom:525.082667pt;}
.y8{bottom:527.440000pt;}
.y7{bottom:552.980000pt;}
.y20{bottom:554.664000pt;}
.y43{bottom:555.585333pt;}
.y66{bottom:556.504000pt;}
.y42{bottom:592.656000pt;}
.y1f{bottom:596.021333pt;}
.y65{bottom:597.020000pt;}
.y41{bottom:610.722667pt;}
.y64{bottom:615.086667pt;}
.y1e{bottom:628.632000pt;}
.y63{bottom:633.152000pt;}
.y40{bottom:634.826667pt;}
.y6{bottom:653.445333pt;}
.y1d{bottom:661.244000pt;}
.y62{bottom:663.172000pt;}
.y3f{bottom:664.836000pt;}
.y86{bottom:670.329333pt;}
.y3e{bottom:682.901333pt;}
.y85{bottom:686.269333pt;}
.y5{bottom:686.584000pt;}
.y61{bottom:693.193333pt;}
.y1c{bottom:693.854667pt;}
.y3d{bottom:700.968000pt;}
.y84{bottom:708.852000pt;}
.y60{bottom:723.213333pt;}
.y83{bottom:724.792000pt;}
.y3c{bottom:725.072000pt;}
.y4{bottom:726.434667pt;}
.y1b{bottom:726.465333pt;}
.y82{bottom:747.373333pt;}
.y5f{bottom:753.234667pt;}
.y3b{bottom:755.081333pt;}
.y1a{bottom:759.077333pt;}
.y81{bottom:763.314667pt;}
.y3{bottom:766.285333pt;}
.y3a{bottom:783.014667pt;}
.y5e{bottom:783.256000pt;}
.y80{bottom:785.896000pt;}
.y19{bottom:791.688000pt;}
.y5d{bottom:801.321333pt;}
.y2{bottom:806.136000pt;}
.y39{bottom:807.817333pt;}
.y7f{bottom:808.477333pt;}
.y5c{bottom:819.386667pt;}
.y18{bottom:824.298667pt;}
.y7e{bottom:831.060000pt;}
.y38{bottom:831.922667pt;}
.y17{bottom:842.364000pt;}
.y5b{bottom:851.856000pt;}
.y7d{bottom:853.641333pt;}
.y16{bottom:860.430667pt;}
.y37{bottom:861.932000pt;}
.y7c{bottom:869.582667pt;}
.y15{bottom:878.496000pt;}
.y36{bottom:889.865333pt;}
.y5a{bottom:895.618667pt;}
.y14{bottom:896.561333pt;}
.y7b{bottom:899.926667pt;}
.y59{bottom:911.558667pt;}
.y35{bottom:917.798667pt;}
.y13{bottom:929.172000pt;}
.y7a{bottom:940.442667pt;}
.y58{bottom:941.345333pt;}
.y34{bottom:945.732000pt;}
.y79{bottom:958.508000pt;}
.y57{bottom:959.412000pt;}
.y12{bottom:961.784000pt;}
.y1{bottom:966.744000pt;}
.y33{bottom:970.534667pt;}
.y78{bottom:976.573333pt;}
.y56{bottom:977.477333pt;}
.y32{bottom:994.638667pt;}
.y55{bottom:996.073333pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xa{left:121.238667pt;}
.x4{left:123.850667pt;}
.x8{left:131.046667pt;}
.x5{left:135.086667pt;}
.xb{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x9{left:259.953333pt;}
.x7{left:389.748000pt;}
}




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