
    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_d4835052461257ab1db40f0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6ac59619550251023f7a100e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_9f832dc2b9638b5f9d785974.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_b92c64a8895b3bdcf12ac31b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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_b9d0b8056cf5b655c7e9eef0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_2ee24dc2ebbbf666d3d2123b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f8b4335011974b0afa263728.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_280e19106222e23d318f7196.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:27.971400px;}
.ls4{letter-spacing:-7.740000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls0{letter-spacing:1.890000px;}
.ls2{letter-spacing:1.973400px;}
.ls7{letter-spacing:8.034000px;}
.ls5{letter-spacing:13.511400px;}
.ls6{letter-spacing:19.235400px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.243000px;}
.ws28{word-spacing:-12.000000px;}
.ws1b{word-spacing:-8.745000px;}
.ws29{word-spacing:-5.664000px;}
.ws30{word-spacing:-4.368000px;}
.ws23{word-spacing:-3.900000px;}
.ws2a{word-spacing:-2.976000px;}
.ws2b{word-spacing:-2.448000px;}
.ws10{word-spacing:-2.280000px;}
.wsc{word-spacing:-2.220000px;}
.ws2e{word-spacing:-1.728000px;}
.ws26{word-spacing:-1.620000px;}
.ws32{word-spacing:-1.536000px;}
.ws7{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.026000px;}
.ws4{word-spacing:-0.918000px;}
.ws36{word-spacing:-0.864000px;}
.ws14{word-spacing:-0.756000px;}
.ws1d{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.600000px;}
.ws34{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.324000px;}
.ws27{word-spacing:-0.270000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.660000px;}
.ws2c{word-spacing:1.008000px;}
.ws2f{word-spacing:1.104000px;}
.ws33{word-spacing:1.680000px;}
.wse{word-spacing:1.920000px;}
.ws13{word-spacing:2.040000px;}
.ws15{word-spacing:2.268000px;}
.ws5{word-spacing:2.760000px;}
.ws1e{word-spacing:3.420000px;}
.ws6{word-spacing:3.480000px;}
.ws16{word-spacing:3.834000px;}
.ws9{word-spacing:3.840000px;}
.ws37{word-spacing:4.032000px;}
.ws19{word-spacing:4.920000px;}
.ws11{word-spacing:5.340000px;}
.ws18{word-spacing:5.640000px;}
.wsa{word-spacing:7.740000px;}
.ws35{word-spacing:7.872000px;}
.ws24{word-spacing:8.040000px;}
.ws25{word-spacing:8.460000px;}
.wsf{word-spacing:8.520000px;}
.ws8{word-spacing:8.760000px;}
.ws31{word-spacing:9.216000px;}
.ws22{word-spacing:10.440000px;}
.ws2d{word-spacing:12.384000px;}
.ws1c{word-spacing:13.500000px;}
.ws12{word-spacing:15.780000px;}
.ws20{word-spacing:16.320000px;}
.wsd{word-spacing:17.100000px;}
.ws1f{word-spacing:19.260000px;}
._2{margin-left:-2902.517400px;}
._0{margin-left:-1286.448000px;}
._5{margin-left:-8.118000px;}
._1{margin-left:-6.971400px;}
._4{margin-left:-5.191200px;}
._8{margin-left:-3.402000px;}
._3{margin-left:-1.911600px;}
._6{width:1.704000px;}
._7{width:2.754000px;}
._9{width:4.152000px;}
._13{width:5.196000px;}
._15{width:6.702000px;}
._e{width:8.190000px;}
._f{width:9.274200px;}
._a{width:10.380000px;}
._b{width:11.382000px;}
._14{width:12.651000px;}
._12{width:13.732800px;}
._19{width:14.852400px;}
._11{width:16.008000px;}
._10{width:17.067600px;}
._d{width:18.192000px;}
._c{width:19.272000px;}
._18{width:27.240000px;}
._16{width:185.952000px;}
._17{width:668.391000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:72.759600px;}
.y40{bottom:73.426500px;}
.y47{bottom:73.479600px;}
.y8a{bottom:78.879600px;}
.y80{bottom:79.599600px;}
.y32{bottom:81.759600px;}
.y3f{bottom:89.626500px;}
.y3a{bottom:90.759600px;}
.y46{bottom:91.479600px;}
.y89{bottom:96.879600px;}
.y7f{bottom:97.599600px;}
.y31{bottom:99.759600px;}
.y3e{bottom:105.826500px;}
.y39{bottom:108.759600px;}
.y48{bottom:109.479600px;}
.y88{bottom:114.879600px;}
.y7e{bottom:115.599600px;}
.y30{bottom:117.759600px;}
.y45{bottom:118.479600px;}
.y3d{bottom:122.026500px;}
.y87{bottom:132.879600px;}
.y7d{bottom:133.599600px;}
.y2f{bottom:135.759600px;}
.y44{bottom:136.479600px;}
.y3c{bottom:138.226500px;}
.y86{bottom:150.879600px;}
.y7c{bottom:151.599600px;}
.y2e{bottom:153.759600px;}
.y43{bottom:154.479600px;}
.y85{bottom:168.879600px;}
.y7b{bottom:169.599600px;}
.y2d{bottom:171.759600px;}
.y42{bottom:172.479600px;}
.y7a{bottom:187.599600px;}
.y2c{bottom:189.759600px;}
.y41{bottom:190.479600px;}
.y79{bottom:205.599600px;}
.y2b{bottom:207.759600px;}
.y84{bottom:209.639700px;}
.y78{bottom:223.599600px;}
.y2a{bottom:225.759600px;}
.y83{bottom:225.839700px;}
.y38{bottom:234.759600px;}
.y4a{bottom:235.786500px;}
.y77{bottom:241.599600px;}
.y29{bottom:243.759600px;}
.y49{bottom:251.986500px;}
.y37{bottom:252.759600px;}
.y76{bottom:259.599600px;}
.y28{bottom:261.759600px;}
.y36{bottom:270.759600px;}
.y75{bottom:277.599600px;}
.y27{bottom:279.759600px;}
.y35{bottom:288.759600px;}
.y74{bottom:295.599600px;}
.y26{bottom:297.759600px;}
.y34{bottom:306.759600px;}
.y73{bottom:313.599600px;}
.y25{bottom:315.759600px;}
.y72{bottom:331.599600px;}
.y24{bottom:333.759600px;}
.y71{bottom:349.599600px;}
.y23{bottom:351.759600px;}
.y70{bottom:367.599600px;}
.y22{bottom:369.759600px;}
.y6f{bottom:385.599600px;}
.y21{bottom:387.759600px;}
.y6e{bottom:403.599600px;}
.y20{bottom:405.759600px;}
.y6d{bottom:421.599600px;}
.y1f{bottom:423.759600px;}
.y6c{bottom:439.599600px;}
.y1e{bottom:441.759600px;}
.y6b{bottom:457.599600px;}
.ya9{bottom:458.799600px;}
.y1d{bottom:459.759600px;}
.ya8{bottom:473.199600px;}
.y1c{bottom:477.759600px;}
.ya7{bottom:487.599600px;}
.y6a{bottom:493.599600px;}
.y1b{bottom:495.759600px;}
.ya6{bottom:507.999600px;}
.y1a{bottom:513.759600px;}
.y82{bottom:518.326500px;}
.ya5{bottom:522.399600px;}
.y69{bottom:529.599600px;}
.y19{bottom:531.759600px;}
.y81{bottom:534.526500px;}
.ya4{bottom:536.799600px;}
.y68{bottom:547.599600px;}
.y18{bottom:549.759600px;}
.ya3{bottom:557.199600px;}
.y67{bottom:565.599600px;}
.y17{bottom:567.759600px;}
.ya2{bottom:571.599600px;}
.y66{bottom:583.599600px;}
.y16{bottom:585.759600px;}
.ya1{bottom:585.999600px;}
.ya0{bottom:600.399600px;}
.y65{bottom:601.599600px;}
.y15{bottom:603.759600px;}
.y64{bottom:619.599600px;}
.y9f{bottom:620.799600px;}
.y14{bottom:621.759600px;}
.y9e{bottom:635.199600px;}
.y13{bottom:639.759600px;}
.y63{bottom:646.599600px;}
.y9d{bottom:649.599600px;}
.y12{bottom:657.759600px;}
.y9c{bottom:663.999600px;}
.y62{bottom:664.599600px;}
.y11{bottom:675.759600px;}
.y9b{bottom:684.399600px;}
.y61{bottom:691.599600px;}
.y10{bottom:693.759600px;}
.y9a{bottom:704.799600px;}
.y60{bottom:709.599600px;}
.yf{bottom:711.759600px;}
.y99{bottom:719.199600px;}
.y5f{bottom:727.599600px;}
.y33{bottom:729.759600px;}
.y98{bottom:733.599600px;}
.y5e{bottom:745.599600px;}
.ye{bottom:747.759600px;}
.y97{bottom:747.999600px;}
.y5d{bottom:763.599600px;}
.y96{bottom:768.399600px;}
.y5c{bottom:781.599600px;}
.y95{bottom:782.799600px;}
.y94{bottom:797.199600px;}
.y5b{bottom:799.599600px;}
.y93{bottom:811.599600px;}
.y5a{bottom:817.599600px;}
.y92{bottom:825.999600px;}
.yd{bottom:827.946150px;}
.y59{bottom:835.599600px;}
.y91{bottom:840.399600px;}
.yc{bottom:845.946150px;}
.y90{bottom:860.799600px;}
.y58{bottom:862.599600px;}
.y8f{bottom:875.199600px;}
.y57{bottom:880.599600px;}
.yb{bottom:881.946150px;}
.ya{bottom:898.146000px;}
.y56{bottom:898.599600px;}
.y8e{bottom:907.599600px;}
.y9{bottom:914.346150px;}
.y55{bottom:916.599600px;}
.y8{bottom:930.546150px;}
.y54{bottom:934.599600px;}
.y8d{bottom:943.599600px;}
.y7{bottom:946.746150px;}
.y53{bottom:952.599600px;}
.y8c{bottom:961.599600px;}
.y52{bottom:970.599600px;}
.y8b{bottom:979.599600px;}
.y6{bottom:980.946150px;}
.y5{bottom:995.346150px;}
.y51{bottom:997.599600px;}
.y50{bottom:1015.599600px;}
.y4{bottom:1027.746150px;}
.y4f{bottom:1033.599600px;}
.y4e{bottom:1051.599600px;}
.y4d{bottom:1069.599600px;}
.y3{bottom:1070.946150px;}
.y4c{bottom:1087.599600px;}
.y2{bottom:1099.746150px;}
.y4b{bottom:1105.599600px;}
.y1{bottom:1164.671700px;}
.h8{height:32.531250px;}
.h9{height:33.328125px;}
.h5{height:37.968750px;}
.h1{height:39.339844px;}
.h6{height:42.714844px;}
.h7{height:47.460938px;}
.h4{height:61.974420px;}
.h3{height:65.062500px;}
.h2{height:66.656250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:46.500000px;}
.xc{left:72.000000px;}
.xa{left:76.267050px;}
.x6{left:81.846750px;}
.x8{left:88.046700px;}
.x2{left:97.986300px;}
.xe{left:99.000000px;}
.x15{left:108.000000px;}
.x12{left:110.025000px;}
.x9{left:171.558150px;}
.x16{left:181.839900px;}
.x17{left:191.635950px;}
.xd{left:204.339900px;}
.x14{left:216.823950px;}
.x5{left:224.041950px;}
.x4{left:238.256700px;}
.x3{left:296.748000px;}
.x7{left:348.393000px;}
.xb{left:404.265000px;}
.xf{left:468.000000px;}
.x10{left:493.937250px;}
.x13{left:553.950000px;}
.x1{left:860.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:24.863467pt;}
.ls4{letter-spacing:-6.880000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls0{letter-spacing:1.680000pt;}
.ls2{letter-spacing:1.754133pt;}
.ls7{letter-spacing:7.141333pt;}
.ls5{letter-spacing:12.010133pt;}
.ls6{letter-spacing:17.098133pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.882667pt;}
.ws28{word-spacing:-10.666667pt;}
.ws1b{word-spacing:-7.773333pt;}
.ws29{word-spacing:-5.034667pt;}
.ws30{word-spacing:-3.882667pt;}
.ws23{word-spacing:-3.466667pt;}
.ws2a{word-spacing:-2.645333pt;}
.ws2b{word-spacing:-2.176000pt;}
.ws10{word-spacing:-2.026667pt;}
.wsc{word-spacing:-1.973333pt;}
.ws2e{word-spacing:-1.536000pt;}
.ws26{word-spacing:-1.440000pt;}
.ws32{word-spacing:-1.365333pt;}
.ws7{word-spacing:-1.173333pt;}
.ws17{word-spacing:-0.912000pt;}
.ws4{word-spacing:-0.816000pt;}
.ws36{word-spacing:-0.768000pt;}
.ws14{word-spacing:-0.672000pt;}
.ws1d{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.533333pt;}
.ws34{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.288000pt;}
.ws27{word-spacing:-0.240000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.586667pt;}
.ws2c{word-spacing:0.896000pt;}
.ws2f{word-spacing:0.981333pt;}
.ws33{word-spacing:1.493333pt;}
.wse{word-spacing:1.706667pt;}
.ws13{word-spacing:1.813333pt;}
.ws15{word-spacing:2.016000pt;}
.ws5{word-spacing:2.453333pt;}
.ws1e{word-spacing:3.040000pt;}
.ws6{word-spacing:3.093333pt;}
.ws16{word-spacing:3.408000pt;}
.ws9{word-spacing:3.413333pt;}
.ws37{word-spacing:3.584000pt;}
.ws19{word-spacing:4.373333pt;}
.ws11{word-spacing:4.746667pt;}
.ws18{word-spacing:5.013333pt;}
.wsa{word-spacing:6.880000pt;}
.ws35{word-spacing:6.997333pt;}
.ws24{word-spacing:7.146667pt;}
.ws25{word-spacing:7.520000pt;}
.wsf{word-spacing:7.573333pt;}
.ws8{word-spacing:7.786667pt;}
.ws31{word-spacing:8.192000pt;}
.ws22{word-spacing:9.280000pt;}
.ws2d{word-spacing:11.008000pt;}
.ws1c{word-spacing:12.000000pt;}
.ws12{word-spacing:14.026667pt;}
.ws20{word-spacing:14.506667pt;}
.wsd{word-spacing:15.200000pt;}
.ws1f{word-spacing:17.120000pt;}
._2{margin-left:-2580.015467pt;}
._0{margin-left:-1143.509333pt;}
._5{margin-left:-7.216000pt;}
._1{margin-left:-6.196800pt;}
._4{margin-left:-4.614400pt;}
._8{margin-left:-3.024000pt;}
._3{margin-left:-1.699200pt;}
._6{width:1.514667pt;}
._7{width:2.448000pt;}
._9{width:3.690667pt;}
._13{width:4.618667pt;}
._15{width:5.957333pt;}
._e{width:7.280000pt;}
._f{width:8.243733pt;}
._a{width:9.226667pt;}
._b{width:10.117333pt;}
._14{width:11.245333pt;}
._12{width:12.206933pt;}
._19{width:13.202133pt;}
._11{width:14.229333pt;}
._10{width:15.171200pt;}
._d{width:16.170667pt;}
._c{width:17.130667pt;}
._18{width:24.213333pt;}
._16{width:165.290667pt;}
._17{width:594.125333pt;}
.fs6{font-size:31.093333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:64.675200pt;}
.y40{bottom:65.268000pt;}
.y47{bottom:65.315200pt;}
.y8a{bottom:70.115200pt;}
.y80{bottom:70.755200pt;}
.y32{bottom:72.675200pt;}
.y3f{bottom:79.668000pt;}
.y3a{bottom:80.675200pt;}
.y46{bottom:81.315200pt;}
.y89{bottom:86.115200pt;}
.y7f{bottom:86.755200pt;}
.y31{bottom:88.675200pt;}
.y3e{bottom:94.068000pt;}
.y39{bottom:96.675200pt;}
.y48{bottom:97.315200pt;}
.y88{bottom:102.115200pt;}
.y7e{bottom:102.755200pt;}
.y30{bottom:104.675200pt;}
.y45{bottom:105.315200pt;}
.y3d{bottom:108.468000pt;}
.y87{bottom:118.115200pt;}
.y7d{bottom:118.755200pt;}
.y2f{bottom:120.675200pt;}
.y44{bottom:121.315200pt;}
.y3c{bottom:122.868000pt;}
.y86{bottom:134.115200pt;}
.y7c{bottom:134.755200pt;}
.y2e{bottom:136.675200pt;}
.y43{bottom:137.315200pt;}
.y85{bottom:150.115200pt;}
.y7b{bottom:150.755200pt;}
.y2d{bottom:152.675200pt;}
.y42{bottom:153.315200pt;}
.y7a{bottom:166.755200pt;}
.y2c{bottom:168.675200pt;}
.y41{bottom:169.315200pt;}
.y79{bottom:182.755200pt;}
.y2b{bottom:184.675200pt;}
.y84{bottom:186.346400pt;}
.y78{bottom:198.755200pt;}
.y2a{bottom:200.675200pt;}
.y83{bottom:200.746400pt;}
.y38{bottom:208.675200pt;}
.y4a{bottom:209.588000pt;}
.y77{bottom:214.755200pt;}
.y29{bottom:216.675200pt;}
.y49{bottom:223.988000pt;}
.y37{bottom:224.675200pt;}
.y76{bottom:230.755200pt;}
.y28{bottom:232.675200pt;}
.y36{bottom:240.675200pt;}
.y75{bottom:246.755200pt;}
.y27{bottom:248.675200pt;}
.y35{bottom:256.675200pt;}
.y74{bottom:262.755200pt;}
.y26{bottom:264.675200pt;}
.y34{bottom:272.675200pt;}
.y73{bottom:278.755200pt;}
.y25{bottom:280.675200pt;}
.y72{bottom:294.755200pt;}
.y24{bottom:296.675200pt;}
.y71{bottom:310.755200pt;}
.y23{bottom:312.675200pt;}
.y70{bottom:326.755200pt;}
.y22{bottom:328.675200pt;}
.y6f{bottom:342.755200pt;}
.y21{bottom:344.675200pt;}
.y6e{bottom:358.755200pt;}
.y20{bottom:360.675200pt;}
.y6d{bottom:374.755200pt;}
.y1f{bottom:376.675200pt;}
.y6c{bottom:390.755200pt;}
.y1e{bottom:392.675200pt;}
.y6b{bottom:406.755200pt;}
.ya9{bottom:407.821867pt;}
.y1d{bottom:408.675200pt;}
.ya8{bottom:420.621867pt;}
.y1c{bottom:424.675200pt;}
.ya7{bottom:433.421867pt;}
.y6a{bottom:438.755200pt;}
.y1b{bottom:440.675200pt;}
.ya6{bottom:451.555200pt;}
.y1a{bottom:456.675200pt;}
.y82{bottom:460.734667pt;}
.ya5{bottom:464.355200pt;}
.y69{bottom:470.755200pt;}
.y19{bottom:472.675200pt;}
.y81{bottom:475.134667pt;}
.ya4{bottom:477.155200pt;}
.y68{bottom:486.755200pt;}
.y18{bottom:488.675200pt;}
.ya3{bottom:495.288533pt;}
.y67{bottom:502.755200pt;}
.y17{bottom:504.675200pt;}
.ya2{bottom:508.088533pt;}
.y66{bottom:518.755200pt;}
.y16{bottom:520.675200pt;}
.ya1{bottom:520.888533pt;}
.ya0{bottom:533.688533pt;}
.y65{bottom:534.755200pt;}
.y15{bottom:536.675200pt;}
.y64{bottom:550.755200pt;}
.y9f{bottom:551.821867pt;}
.y14{bottom:552.675200pt;}
.y9e{bottom:564.621867pt;}
.y13{bottom:568.675200pt;}
.y63{bottom:574.755200pt;}
.y9d{bottom:577.421867pt;}
.y12{bottom:584.675200pt;}
.y9c{bottom:590.221867pt;}
.y62{bottom:590.755200pt;}
.y11{bottom:600.675200pt;}
.y9b{bottom:608.355200pt;}
.y61{bottom:614.755200pt;}
.y10{bottom:616.675200pt;}
.y9a{bottom:626.488533pt;}
.y60{bottom:630.755200pt;}
.yf{bottom:632.675200pt;}
.y99{bottom:639.288533pt;}
.y5f{bottom:646.755200pt;}
.y33{bottom:648.675200pt;}
.y98{bottom:652.088533pt;}
.y5e{bottom:662.755200pt;}
.ye{bottom:664.675200pt;}
.y97{bottom:664.888533pt;}
.y5d{bottom:678.755200pt;}
.y96{bottom:683.021867pt;}
.y5c{bottom:694.755200pt;}
.y95{bottom:695.821867pt;}
.y94{bottom:708.621867pt;}
.y5b{bottom:710.755200pt;}
.y93{bottom:721.421867pt;}
.y5a{bottom:726.755200pt;}
.y92{bottom:734.221867pt;}
.yd{bottom:735.952133pt;}
.y59{bottom:742.755200pt;}
.y91{bottom:747.021867pt;}
.yc{bottom:751.952133pt;}
.y90{bottom:765.155200pt;}
.y58{bottom:766.755200pt;}
.y8f{bottom:777.955200pt;}
.y57{bottom:782.755200pt;}
.yb{bottom:783.952133pt;}
.ya{bottom:798.352000pt;}
.y56{bottom:798.755200pt;}
.y8e{bottom:806.755200pt;}
.y9{bottom:812.752133pt;}
.y55{bottom:814.755200pt;}
.y8{bottom:827.152133pt;}
.y54{bottom:830.755200pt;}
.y8d{bottom:838.755200pt;}
.y7{bottom:841.552133pt;}
.y53{bottom:846.755200pt;}
.y8c{bottom:854.755200pt;}
.y52{bottom:862.755200pt;}
.y8b{bottom:870.755200pt;}
.y6{bottom:871.952133pt;}
.y5{bottom:884.752133pt;}
.y51{bottom:886.755200pt;}
.y50{bottom:902.755200pt;}
.y4{bottom:913.552133pt;}
.y4f{bottom:918.755200pt;}
.y4e{bottom:934.755200pt;}
.y4d{bottom:950.755200pt;}
.y3{bottom:951.952133pt;}
.y4c{bottom:966.755200pt;}
.y2{bottom:977.552133pt;}
.y4b{bottom:982.755200pt;}
.y1{bottom:1035.263733pt;}
.h8{height:28.916667pt;}
.h9{height:29.625000pt;}
.h5{height:33.750000pt;}
.h1{height:34.968750pt;}
.h6{height:37.968750pt;}
.h7{height:42.187500pt;}
.h4{height:55.088373pt;}
.h3{height:57.833333pt;}
.h2{height:59.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:41.333333pt;}
.xc{left:64.000000pt;}
.xa{left:67.792933pt;}
.x6{left:72.752667pt;}
.x8{left:78.263733pt;}
.x2{left:87.098933pt;}
.xe{left:88.000000pt;}
.x15{left:96.000000pt;}
.x12{left:97.800000pt;}
.x9{left:152.496133pt;}
.x16{left:161.635467pt;}
.x17{left:170.343067pt;}
.xd{left:181.635467pt;}
.x14{left:192.732400pt;}
.x5{left:199.148400pt;}
.x4{left:211.783733pt;}
.x3{left:263.776000pt;}
.x7{left:309.682667pt;}
.xb{left:359.346667pt;}
.xf{left:416.000000pt;}
.x10{left:439.055333pt;}
.x13{left:492.400000pt;}
.x1{left:764.933333pt;}
}




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