
    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_e0eb6cc5790339c6ebf7996c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_6736572877c69ecd3a138f5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995000;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_761b58fbea94134e3e083a4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_fac4d4b63a77c0760f837dfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854980;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_4bba838eb7abf1e7a8093823.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_209f3ec18b18f14b67f1285b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_aafd6dda7c23236916087733.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_46a05f7f8237e9c66c2eaa78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_4c4e15c7ece6084dbb1dca0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0ec4c569e68bf4e7c9821ad0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247567,0.034793,-0.034793,0.247567,0,0);-ms-transform:matrix(0.247567,0.034793,-0.034793,0.247567,0,0);-webkit-transform:matrix(0.247567,0.034793,-0.034793,0.247567,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-37.248000px;}
.v3{vertical-align:-34.866000px;}
.v4{vertical-align:-29.934000px;}
.v1{vertical-align:-2.724000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001178px;}
.ls7{letter-spacing:0.010949px;}
.ls8{letter-spacing:0.025394px;}
.ls6{letter-spacing:0.035623px;}
.ls9{letter-spacing:0.055571px;}
.lsa{letter-spacing:0.059004px;}
.ls10{letter-spacing:0.102048px;}
.lse{letter-spacing:0.120078px;}
.ls2{letter-spacing:0.131976px;}
.ls4{letter-spacing:0.138385px;}
.ls5{letter-spacing:0.223272px;}
.ls1{letter-spacing:1.584594px;}
.ls0{letter-spacing:3.888000px;}
.lsc{letter-spacing:46.275852px;}
.lsd{letter-spacing:50.596800px;}
.lsf{letter-spacing:57.213996px;}
.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;}
}
.ws6{word-spacing:-39.902958px;}
.ws5{word-spacing:-36.559014px;}
.wsa{word-spacing:-34.910310px;}
.ws3{word-spacing:-29.916000px;}
.ws1{word-spacing:-28.810800px;}
.ws8{word-spacing:-26.570394px;}
.ws4{word-spacing:-14.981268px;}
.ws9{word-spacing:-0.240156px;}
.wsb{word-spacing:-0.204096px;}
.ws0{word-spacing:-0.197964px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:91.238940px;}
._4{margin-left:-21.408000px;}
._7{margin-left:-15.984000px;}
._a{margin-left:-14.017314px;}
._13{margin-left:-12.964860px;}
._1a{margin-left:-11.880000px;}
._18{margin-left:-10.659996px;}
._12{margin-left:-9.452250px;}
._1b{margin-left:-8.314866px;}
._5{margin-left:-7.085004px;}
._2{margin-left:-5.354316px;}
._1{margin-left:-3.461376px;}
._d{margin-left:-2.068056px;}
._0{margin-left:-1.027596px;}
._8{width:1.129956px;}
._3{width:2.784000px;}
._11{width:4.047696px;}
._b{width:5.708580px;}
._f{width:21.175938px;}
._10{width:22.184316px;}
._15{width:42.299436px;}
._14{width:43.512060px;}
._16{width:194.955000px;}
._17{width:201.791856px;}
._c{width:301.252056px;}
._19{width:1125.220032px;}
._9{width:4105.224180px;}
._e{width:4109.130180px;}
._6{width:4135.152180px;}
.fc8{color:rgb(172,57,17);}
.fc7{color:transparent;}
.fca{color:rgb(128,128,128);}
.fc9{color:rgb(232,232,232);}
.fc6{color:rgb(204,204,204);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(178,178,178);}
.fc3{color:rgb(252,58,230);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(66,66,66);}
.fc0{color:rgb(153,153,153);}
.fs4{font-size:47.964000px;}
.fs0{font-size:54.084000px;}
.fsf{font-size:56.466000px;}
.fsc{font-size:64.800000px;}
.fs3{font-size:65.988000px;}
.fsa{font-size:70.242000px;}
.fsd{font-size:95.922000px;}
.fs10{font-size:102.048000px;}
.fs6{font-size:108.000000px;}
.fse{font-size:120.078000px;}
.fs7{font-size:126.030000px;}
.fs5{font-size:131.982000px;}
.fs2{font-size:144.054000px;}
.fsb{font-size:155.964000px;}
.fs8{font-size:192.018000px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:228.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y5f{bottom:7.015500px;}
.y70{bottom:7.057500px;}
.y9a{bottom:7.695000px;}
.y98{bottom:7.738500px;}
.y79{bottom:7.780500px;}
.y6a{bottom:7.822500px;}
.y23{bottom:7.866000px;}
.y3{bottom:8.503500px;}
.y72{bottom:8.631000px;}
.y65{bottom:9.183000px;}
.yc{bottom:9.354000px;}
.y17{bottom:9.991500px;}
.y57{bottom:11.310000px;}
.y4f{bottom:13.266000px;}
.y16{bottom:14.244000px;}
.y61{bottom:15.222000px;}
.y14{bottom:15.561000px;}
.y96{bottom:17.050500px;}
.y47{bottom:17.475000px;}
.y4d{bottom:17.517000px;}
.y8a{bottom:19.473000px;}
.y71{bottom:22.152000px;}
.y2{bottom:23.640000px;}
.y68{bottom:25.213500px;}
.y88{bottom:37.204500px;}
.y9d{bottom:38.989500px;}
.y94{bottom:44.050500px;}
.y46{bottom:47.706000px;}
.y4c{bottom:47.749500px;}
.y87{bottom:64.842000px;}
.y10{bottom:67.521000px;}
.ya2{bottom:68.499000px;}
.y6e{bottom:73.855500px;}
.ya{bottom:80.617500px;}
.y67{bottom:82.615500px;}
.y11{bottom:99.666000px;}
.y9{bottom:100.176000px;}
.y37{bottom:100.600500px;}
.y6d{bottom:104.088000px;}
.y8c{bottom:104.301000px;}
.ya1{bottom:104.512500px;}
.y9c{bottom:112.804500px;}
.y56{bottom:117.523500px;}
.y93{bottom:121.180500px;}
.y64{bottom:121.861500px;}
.y8{bottom:124.411500px;}
.y36{bottom:126.367500px;}
.y5e{bottom:130.365000px;}
.y7f{bottom:140.187000px;}
.y2b{bottom:140.442000px;}
.y8b{bottom:141.207000px;}
.y86{bottom:142.567500px;}
.y9b{bottom:149.712000px;}
.y18{bottom:150.306000px;}
.y5d{bottom:154.983000px;}
.ya0{bottom:155.833500px;}
.y92{bottom:155.919000px;}
.y2a{bottom:175.563000px;}
.y85{bottom:177.688500px;}
.y1f{bottom:178.710000px;}
.y7e{bottom:180.325500px;}
.y9e{bottom:180.835500px;}
.y91{bottom:190.657500px;}
.y55{bottom:190.785000px;}
.y35{bottom:200.182500px;}
.y1e{bottom:201.756000px;}
.y6b{bottom:204.009000px;}
.y84{bottom:212.811000px;}
.y90{bottom:225.396000px;}
.y13{bottom:232.411500px;}
.y5c{bottom:235.261500px;}
.y34{bottom:237.088500px;}
.y44{bottom:238.534500px;}
.y1d{bottom:238.662000px;}
.y83{bottom:240.448500px;}
.y3e{bottom:240.916500px;}
.y78{bottom:241.128000px;}
.y12{bottom:248.866500px;}
.y77{bottom:250.440000px;}
.y6f{bottom:253.672500px;}
.y54{bottom:264.046500px;}
.y43{bottom:268.767000px;}
.y3d{bottom:269.488500px;}
.y7{bottom:269.659500px;}
.y33{bottom:273.996000px;}
.y1c{bottom:275.569500px;}
.y5b{bottom:281.395500px;}
.y6c{bottom:287.688000px;}
.yf{bottom:297.297000px;}
.y7d{bottom:300.741000px;}
.y32{bottom:310.903500px;}
.y1b{bottom:312.477000px;}
.y50{bottom:316.899000px;}
.y27{bottom:319.323000px;}
.y5a{bottom:327.528000px;}
.y53{bottom:337.308000px;}
.y60{bottom:338.712000px;}
.y7c{bottom:340.879500px;}
.y6{bottom:344.154000px;}
.y31{bottom:347.811000px;}
.y26{bottom:349.554000px;}
.y3c{bottom:349.767000px;}
.yb{bottom:350.106000px;}
.y95{bottom:355.719000px;}
.ye{bottom:368.475000px;}
.y76{bottom:371.833500px;}
.y59{bottom:373.662000px;}
.y25{bottom:379.785000px;}
.y75{bottom:381.145500px;}
.y30{bottom:384.717000px;}
.y22{bottom:385.057500px;}
.y8f{bottom:388.587000px;}
.y3b{bottom:389.905500px;}
.y24{bottom:410.017500px;}
.y52{bottom:410.569500px;}
.y5{bottom:418.648500px;}
.y58{bottom:419.796000px;}
.y2f{bottom:421.624500px;}
.y21{bottom:421.965000px;}
.y1a{bottom:423.198000px;}
.y8e{bottom:427.066500px;}
.y3a{bottom:430.044000px;}
.y74{bottom:437.187000px;}
.y73{bottom:446.499000px;}
.y2e{bottom:458.532000px;}
.y20{bottom:458.872500px;}
.y19{bottom:460.105500px;}
.y7b{bottom:461.295000px;}
.y8d{bottom:465.547500px;}
.y39{bottom:470.182500px;}
.y29{bottom:474.222000px;}
.y49{bottom:476.644500px;}
.y42{bottom:482.044500px;}
.y51{bottom:483.831000px;}
.y3f{bottom:487.189500px;}
.y4{bottom:493.143000px;}
.y2d{bottom:495.439500px;}
.y7a{bottom:501.433500px;}
.y48{bottom:506.877000px;}
.y28{bottom:511.128000px;}
.y41{bottom:512.277000px;}
.y80{bottom:527.328000px;}
.y89{bottom:535.450500px;}
.y4b{bottom:536.172000px;}
.y99{bottom:536.257500px;}
.y15{bottom:544.464000px;}
.y40{bottom:548.206500px;}
.y63{bottom:556.284000px;}
.y66{bottom:586.516500px;}
.y69{bottom:594.978000px;}
.yd{bottom:595.020000px;}
.y82{bottom:595.062000px;}
.y9f{bottom:596.253000px;}
.y97{bottom:596.721000px;}
.y38{bottom:597.103500px;}
.y2c{bottom:597.145500px;}
.y81{bottom:601.695000px;}
.y4a{bottom:606.075000px;}
.y45{bottom:606.117000px;}
.y4e{bottom:606.202500px;}
.y62{bottom:616.747500px;}
.hc{height:34.919104px;}
.ha{height:35.317242px;}
.h7{height:39.374631px;}
.h3{height:39.823570px;}
.h6{height:43.981260px;}
.h1e{height:62.865434px;}
.h1f{height:62.871434px;}
.h1c{height:70.630066px;}
.h1b{height:71.205012px;}
.h19{height:77.592680px;}
.he{height:79.523438px;}
.h15{height:80.630859px;}
.h21{height:82.963828px;}
.h20{height:89.648077px;}
.h14{height:92.799434px;}
.hf{height:94.091733px;}
.hb{height:97.182059px;}
.h1d{height:97.622007px;}
.hd{height:98.535390px;}
.h18{height:104.382879px;}
.h5{height:104.875251px;}
.h11{height:106.071012px;}
.h12{height:107.548128px;}
.h8{height:112.138291px;}
.h13{height:141.388254px;}
.h10{height:143.357188px;}
.h1a{height:144.578628px;}
.h9{height:161.261719px;}
.h16{height:167.940246px;}
.h4{height:168.048000px;}
.h17{height:170.278937px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x6{left:8.503500px;}
.x1{left:10.630500px;}
.x37{left:15.136500px;}
.x2{left:17.008500px;}
.x1b{left:19.134000px;}
.x23{left:39.628500px;}
.x19{left:40.734000px;}
.x28{left:42.519000px;}
.x12{left:44.518500px;}
.x14{left:45.666000px;}
.x24{left:48.940500px;}
.x7{left:51.024000px;}
.xb{left:53.149500px;}
.x3a{left:54.424500px;}
.x3f{left:57.402000px;}
.xd{left:60.292500px;}
.xa{left:61.653000px;}
.x8{left:62.674500px;}
.x10{left:66.501000px;}
.x16{left:95.670000px;}
.x17{left:99.921000px;}
.x2e{left:129.685500px;}
.x15{left:140.655000px;}
.x32{left:184.960500px;}
.x20{left:239.088000px;}
.x2a{left:248.740500px;}
.x1f{left:274.125000px;}
.x3d{left:282.756000px;}
.x27{left:299.764500px;}
.x39{left:329.527500px;}
.x2d{left:350.787000px;}
.x3{left:354.189000px;}
.x4{left:356.485500px;}
.x22{left:362.947500px;}
.x13{left:367.795500px;}
.x26{left:389.055000px;}
.xe{left:418.819500px;}
.x21{left:426.345000px;}
.x3c{left:429.747000px;}
.x34{left:448.497000px;}
.x11{left:466.186500px;}
.x25{left:474.094500px;}
.x35{left:490.081500px;}
.x29{left:495.354000px;}
.x2c{left:529.369500px;}
.x38{left:557.815500px;}
.x2b{left:568.659000px;}
.x1e{left:580.393500px;}
.x3b{left:602.674500px;}
.x1c{left:614.409000px;}
.xc{left:630.312000px;}
.x9{left:636.690000px;}
.x1a{left:652.677000px;}
.x30{left:656.674500px;}
.x3e{left:741.969000px;}
.x2f{left:786.954000px;}
.x5{left:816.336000px;}
.x1d{left:828.921000px;}
.x18{left:839.764500px;}
.x31{left:897.718500px;}
.x33{left:941.811000px;}
.x36{left:946.063500px;}
.xf{left:1025.362500px;}
@media print{
.v2{vertical-align:-33.109333pt;}
.v3{vertical-align:-30.992000pt;}
.v4{vertical-align:-26.608000pt;}
.v1{vertical-align:-2.421333pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001047pt;}
.ls7{letter-spacing:0.009732pt;}
.ls8{letter-spacing:0.022573pt;}
.ls6{letter-spacing:0.031665pt;}
.ls9{letter-spacing:0.049396pt;}
.lsa{letter-spacing:0.052448pt;}
.ls10{letter-spacing:0.090709pt;}
.lse{letter-spacing:0.106736pt;}
.ls2{letter-spacing:0.117312pt;}
.ls4{letter-spacing:0.123009pt;}
.ls5{letter-spacing:0.198464pt;}
.ls1{letter-spacing:1.408528pt;}
.ls0{letter-spacing:3.456000pt;}
.lsc{letter-spacing:41.134091pt;}
.lsd{letter-spacing:44.974933pt;}
.lsf{letter-spacing:50.856885pt;}
.ws6{word-spacing:-35.469296pt;}
.ws5{word-spacing:-32.496901pt;}
.wsa{word-spacing:-31.031387pt;}
.ws3{word-spacing:-26.592000pt;}
.ws1{word-spacing:-25.609600pt;}
.ws8{word-spacing:-23.618128pt;}
.ws4{word-spacing:-13.316683pt;}
.ws9{word-spacing:-0.213472pt;}
.wsb{word-spacing:-0.181419pt;}
.ws0{word-spacing:-0.175968pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:81.101280pt;}
._4{margin-left:-19.029333pt;}
._7{margin-left:-14.208000pt;}
._a{margin-left:-12.459835pt;}
._13{margin-left:-11.524320pt;}
._1a{margin-left:-10.560000pt;}
._18{margin-left:-9.475552pt;}
._12{margin-left:-8.402000pt;}
._1b{margin-left:-7.390992pt;}
._5{margin-left:-6.297781pt;}
._2{margin-left:-4.759392pt;}
._1{margin-left:-3.076779pt;}
._d{margin-left:-1.838272pt;}
._0{margin-left:-0.913419pt;}
._8{width:1.004405pt;}
._3{width:2.474667pt;}
._11{width:3.597952pt;}
._b{width:5.074293pt;}
._f{width:18.823056pt;}
._10{width:19.719392pt;}
._15{width:37.599499pt;}
._14{width:38.677387pt;}
._16{width:173.293333pt;}
._17{width:179.370539pt;}
._c{width:267.779605pt;}
._19{width:1000.195584pt;}
._9{width:3649.088160pt;}
._e{width:3652.560160pt;}
._6{width:3675.690827pt;}
.fs4{font-size:42.634667pt;}
.fs0{font-size:48.074667pt;}
.fsf{font-size:50.192000pt;}
.fsc{font-size:57.600000pt;}
.fs3{font-size:58.656000pt;}
.fsa{font-size:62.437333pt;}
.fsd{font-size:85.264000pt;}
.fs10{font-size:90.709333pt;}
.fs6{font-size:96.000000pt;}
.fse{font-size:106.736000pt;}
.fs7{font-size:112.026667pt;}
.fs5{font-size:117.317333pt;}
.fs2{font-size:128.048000pt;}
.fsb{font-size:138.634667pt;}
.fs8{font-size:170.682667pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:202.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y5f{bottom:6.236000pt;}
.y70{bottom:6.273333pt;}
.y9a{bottom:6.840000pt;}
.y98{bottom:6.878667pt;}
.y79{bottom:6.916000pt;}
.y6a{bottom:6.953333pt;}
.y23{bottom:6.992000pt;}
.y3{bottom:7.558667pt;}
.y72{bottom:7.672000pt;}
.y65{bottom:8.162667pt;}
.yc{bottom:8.314667pt;}
.y17{bottom:8.881333pt;}
.y57{bottom:10.053333pt;}
.y4f{bottom:11.792000pt;}
.y16{bottom:12.661333pt;}
.y61{bottom:13.530667pt;}
.y14{bottom:13.832000pt;}
.y96{bottom:15.156000pt;}
.y47{bottom:15.533333pt;}
.y4d{bottom:15.570667pt;}
.y8a{bottom:17.309333pt;}
.y71{bottom:19.690667pt;}
.y2{bottom:21.013333pt;}
.y68{bottom:22.412000pt;}
.y88{bottom:33.070667pt;}
.y9d{bottom:34.657333pt;}
.y94{bottom:39.156000pt;}
.y46{bottom:42.405333pt;}
.y4c{bottom:42.444000pt;}
.y87{bottom:57.637333pt;}
.y10{bottom:60.018667pt;}
.ya2{bottom:60.888000pt;}
.y6e{bottom:65.649333pt;}
.ya{bottom:71.660000pt;}
.y67{bottom:73.436000pt;}
.y11{bottom:88.592000pt;}
.y9{bottom:89.045333pt;}
.y37{bottom:89.422667pt;}
.y6d{bottom:92.522667pt;}
.y8c{bottom:92.712000pt;}
.ya1{bottom:92.900000pt;}
.y9c{bottom:100.270667pt;}
.y56{bottom:104.465333pt;}
.y93{bottom:107.716000pt;}
.y64{bottom:108.321333pt;}
.y8{bottom:110.588000pt;}
.y36{bottom:112.326667pt;}
.y5e{bottom:115.880000pt;}
.y7f{bottom:124.610667pt;}
.y2b{bottom:124.837333pt;}
.y8b{bottom:125.517333pt;}
.y86{bottom:126.726667pt;}
.y9b{bottom:133.077333pt;}
.y18{bottom:133.605333pt;}
.y5d{bottom:137.762667pt;}
.ya0{bottom:138.518667pt;}
.y92{bottom:138.594667pt;}
.y2a{bottom:156.056000pt;}
.y85{bottom:157.945333pt;}
.y1f{bottom:158.853333pt;}
.y7e{bottom:160.289333pt;}
.y9e{bottom:160.742667pt;}
.y91{bottom:169.473333pt;}
.y55{bottom:169.586667pt;}
.y35{bottom:177.940000pt;}
.y1e{bottom:179.338667pt;}
.y6b{bottom:181.341333pt;}
.y84{bottom:189.165333pt;}
.y90{bottom:200.352000pt;}
.y13{bottom:206.588000pt;}
.y5c{bottom:209.121333pt;}
.y34{bottom:210.745333pt;}
.y44{bottom:212.030667pt;}
.y1d{bottom:212.144000pt;}
.y83{bottom:213.732000pt;}
.y3e{bottom:214.148000pt;}
.y78{bottom:214.336000pt;}
.y12{bottom:221.214667pt;}
.y77{bottom:222.613333pt;}
.y6f{bottom:225.486667pt;}
.y54{bottom:234.708000pt;}
.y43{bottom:238.904000pt;}
.y3d{bottom:239.545333pt;}
.y7{bottom:239.697333pt;}
.y33{bottom:243.552000pt;}
.y1c{bottom:244.950667pt;}
.y5b{bottom:250.129333pt;}
.y6c{bottom:255.722667pt;}
.yf{bottom:264.264000pt;}
.y7d{bottom:267.325333pt;}
.y32{bottom:276.358667pt;}
.y1b{bottom:277.757333pt;}
.y50{bottom:281.688000pt;}
.y27{bottom:283.842667pt;}
.y5a{bottom:291.136000pt;}
.y53{bottom:299.829333pt;}
.y60{bottom:301.077333pt;}
.y7c{bottom:303.004000pt;}
.y6{bottom:305.914667pt;}
.y31{bottom:309.165333pt;}
.y26{bottom:310.714667pt;}
.y3c{bottom:310.904000pt;}
.yb{bottom:311.205333pt;}
.y95{bottom:316.194667pt;}
.ye{bottom:327.533333pt;}
.y76{bottom:330.518667pt;}
.y59{bottom:332.144000pt;}
.y25{bottom:337.586667pt;}
.y75{bottom:338.796000pt;}
.y30{bottom:341.970667pt;}
.y22{bottom:342.273333pt;}
.y8f{bottom:345.410667pt;}
.y3b{bottom:346.582667pt;}
.y24{bottom:364.460000pt;}
.y52{bottom:364.950667pt;}
.y5{bottom:372.132000pt;}
.y58{bottom:373.152000pt;}
.y2f{bottom:374.777333pt;}
.y21{bottom:375.080000pt;}
.y1a{bottom:376.176000pt;}
.y8e{bottom:379.614667pt;}
.y3a{bottom:382.261333pt;}
.y74{bottom:388.610667pt;}
.y73{bottom:396.888000pt;}
.y2e{bottom:407.584000pt;}
.y20{bottom:407.886667pt;}
.y19{bottom:408.982667pt;}
.y7b{bottom:410.040000pt;}
.y8d{bottom:413.820000pt;}
.y39{bottom:417.940000pt;}
.y29{bottom:421.530667pt;}
.y49{bottom:423.684000pt;}
.y42{bottom:428.484000pt;}
.y51{bottom:430.072000pt;}
.y3f{bottom:433.057333pt;}
.y4{bottom:438.349333pt;}
.y2d{bottom:440.390667pt;}
.y7a{bottom:445.718667pt;}
.y48{bottom:450.557333pt;}
.y28{bottom:454.336000pt;}
.y41{bottom:455.357333pt;}
.y80{bottom:468.736000pt;}
.y89{bottom:475.956000pt;}
.y4b{bottom:476.597333pt;}
.y99{bottom:476.673333pt;}
.y15{bottom:483.968000pt;}
.y40{bottom:487.294667pt;}
.y63{bottom:494.474667pt;}
.y66{bottom:521.348000pt;}
.y69{bottom:528.869333pt;}
.yd{bottom:528.906667pt;}
.y82{bottom:528.944000pt;}
.y9f{bottom:530.002667pt;}
.y97{bottom:530.418667pt;}
.y38{bottom:530.758667pt;}
.y2c{bottom:530.796000pt;}
.y81{bottom:534.840000pt;}
.y4a{bottom:538.733333pt;}
.y45{bottom:538.770667pt;}
.y4e{bottom:538.846667pt;}
.y62{bottom:548.220000pt;}
.hc{height:31.039203pt;}
.ha{height:31.393104pt;}
.h7{height:34.999672pt;}
.h3{height:35.398729pt;}
.h6{height:39.094453pt;}
.h1e{height:55.880385pt;}
.h1f{height:55.885719pt;}
.h1c{height:62.782281pt;}
.h1b{height:63.293344pt;}
.h19{height:68.971271pt;}
.he{height:70.687500pt;}
.h15{height:71.671875pt;}
.h21{height:73.745625pt;}
.h20{height:79.687180pt;}
.h14{height:82.488385pt;}
.hf{height:83.637096pt;}
.hb{height:86.384052pt;}
.h1d{height:86.775117pt;}
.hd{height:87.587013pt;}
.h18{height:92.784781pt;}
.h5{height:93.222445pt;}
.h11{height:94.285344pt;}
.h12{height:95.598336pt;}
.h8{height:99.678481pt;}
.h13{height:125.678448pt;}
.h10{height:127.428612pt;}
.h1a{height:128.514336pt;}
.h9{height:143.343750pt;}
.h16{height:149.280219pt;}
.h4{height:149.376000pt;}
.h17{height:151.359055pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x6{left:7.558667pt;}
.x1{left:9.449333pt;}
.x37{left:13.454667pt;}
.x2{left:15.118667pt;}
.x1b{left:17.008000pt;}
.x23{left:35.225333pt;}
.x19{left:36.208000pt;}
.x28{left:37.794667pt;}
.x12{left:39.572000pt;}
.x14{left:40.592000pt;}
.x24{left:43.502667pt;}
.x7{left:45.354667pt;}
.xb{left:47.244000pt;}
.x3a{left:48.377333pt;}
.x3f{left:51.024000pt;}
.xd{left:53.593333pt;}
.xa{left:54.802667pt;}
.x8{left:55.710667pt;}
.x10{left:59.112000pt;}
.x16{left:85.040000pt;}
.x17{left:88.818667pt;}
.x2e{left:115.276000pt;}
.x15{left:125.026667pt;}
.x32{left:164.409333pt;}
.x20{left:212.522667pt;}
.x2a{left:221.102667pt;}
.x1f{left:243.666667pt;}
.x3d{left:251.338667pt;}
.x27{left:266.457333pt;}
.x39{left:292.913333pt;}
.x2d{left:311.810667pt;}
.x3{left:314.834667pt;}
.x4{left:316.876000pt;}
.x22{left:322.620000pt;}
.x13{left:326.929333pt;}
.x26{left:345.826667pt;}
.xe{left:372.284000pt;}
.x21{left:378.973333pt;}
.x3c{left:381.997333pt;}
.x34{left:398.664000pt;}
.x11{left:414.388000pt;}
.x25{left:421.417333pt;}
.x35{left:435.628000pt;}
.x29{left:440.314667pt;}
.x2c{left:470.550667pt;}
.x38{left:495.836000pt;}
.x2b{left:505.474667pt;}
.x1e{left:515.905333pt;}
.x3b{left:535.710667pt;}
.x1c{left:546.141333pt;}
.xc{left:560.277333pt;}
.x9{left:565.946667pt;}
.x1a{left:580.157333pt;}
.x30{left:583.710667pt;}
.x3e{left:659.528000pt;}
.x2f{left:699.514667pt;}
.x5{left:725.632000pt;}
.x1d{left:736.818667pt;}
.x18{left:746.457333pt;}
.x31{left:797.972000pt;}
.x33{left:837.165333pt;}
.x36{left:840.945333pt;}
.xf{left:911.433333pt;}
}




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