
    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_1463d50b29b4151a1859d001.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_5b5a0bf270ef5fd19c21151e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_8ffb94962911e3f92bfe3c5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fe7777eea625212a7e5b9c61.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_25e2651650bfc15e36067201.woff2')format("woff");}.ff5{font-family:ff5;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:64.511718px;}
.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;}
}
.ws4d{word-spacing:-40.605468px;}
.ws1{word-spacing:-32.070015px;}
.ws0{word-spacing:-32.064765px;}
.ws2{word-spacing:-26.418746px;}
.ws4{word-spacing:-26.418685px;}
.ws8{word-spacing:-26.418646px;}
.ws5{word-spacing:-26.418622px;}
.ws6{word-spacing:-26.418621px;}
.ws3{word-spacing:-26.418612px;}
.ws7{word-spacing:-26.418604px;}
.ws41{word-spacing:-22.605503px;}
.ws29{word-spacing:-22.605491px;}
.ws12{word-spacing:-22.605480px;}
.ws16{word-spacing:-22.605471px;}
.ws15{word-spacing:-22.605469px;}
.ws35{word-spacing:-22.605467px;}
.ws2c{word-spacing:-22.605458px;}
.ws34{word-spacing:-22.605435px;}
.ws2d{word-spacing:-18.105503px;}
.ws13{word-spacing:-18.105492px;}
.ws48{word-spacing:-18.105491px;}
.ws23{word-spacing:-18.105481px;}
.ws27{word-spacing:-18.105480px;}
.ws40{word-spacing:-18.105471px;}
.wsf{word-spacing:-18.105469px;}
.ws37{word-spacing:-18.105468px;}
.ws26{word-spacing:-18.105458px;}
.ws39{word-spacing:-18.105447px;}
.ws46{word-spacing:-13.605503px;}
.ws2b{word-spacing:-13.605491px;}
.ws25{word-spacing:-13.605480px;}
.ws21{word-spacing:-13.605469px;}
.ws47{word-spacing:-13.605468px;}
.ws36{word-spacing:-13.605457px;}
.ws44{word-spacing:-13.605447px;}
.ws3a{word-spacing:-9.105491px;}
.wsc{word-spacing:-9.105480px;}
.ws32{word-spacing:-9.105471px;}
.ws3e{word-spacing:-9.105470px;}
.ws14{word-spacing:-9.105469px;}
.ws24{word-spacing:-9.105458px;}
.ws3d{word-spacing:-9.105447px;}
.ws38{word-spacing:-4.605492px;}
.ws10{word-spacing:-4.605480px;}
.wsb{word-spacing:-4.605469px;}
.ws3c{word-spacing:-4.605457px;}
.ws42{word-spacing:-4.605447px;}
.ws33{word-spacing:-0.105492px;}
.wse{word-spacing:-0.105480px;}
.ws2f{word-spacing:-0.105470px;}
.ws20{word-spacing:-0.105469px;}
.ws2e{word-spacing:-0.105458px;}
.ws4b{word-spacing:-0.105447px;}
.ws3b{word-spacing:-0.066000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:4.394520px;}
.ws22{word-spacing:4.394531px;}
.ws45{word-spacing:4.394542px;}
.ws3f{word-spacing:8.894508px;}
.ws43{word-spacing:8.894520px;}
.ws31{word-spacing:8.894531px;}
.ws2a{word-spacing:13.394520px;}
.ws1b{word-spacing:17.377079px;}
.ws1e{word-spacing:17.378132px;}
.ws50{word-spacing:17.927986px;}
.ws28{word-spacing:17.927989px;}
.ws17{word-spacing:17.928000px;}
.ws11{word-spacing:17.928002px;}
.ws49{word-spacing:17.928012px;}
.ws4a{word-spacing:17.928020px;}
.ws1c{word-spacing:18.229238px;}
.ws1d{word-spacing:18.229255px;}
.ws1a{word-spacing:18.231817px;}
.ws18{word-spacing:18.244867px;}
.ws19{word-spacing:18.244868px;}
.ws4c{word-spacing:22.427978px;}
.ws4e{word-spacing:22.428000px;}
.ws4f{word-spacing:31.428000px;}
.ws30{word-spacing:35.928000px;}
.wsa{word-spacing:40.428003px;}
.ws1f{word-spacing:107.928000px;}
._1{margin-left:-10.127492px;}
._17{margin-left:-8.850825px;}
._0{margin-left:-7.843818px;}
._9{margin-left:-4.675792px;}
._14{margin-left:-2.882796px;}
._2{margin-left:-1.731111px;}
._b{width:1.817708px;}
._a{width:5.341787px;}
._c{width:6.498248px;}
._d{width:10.300983px;}
._11{width:17.300761px;}
._e{width:18.699251px;}
._8{width:22.500002px;}
._6{width:26.999999px;}
._10{width:30.639309px;}
._7{width:31.930357px;}
._4{width:36.000000px;}
._3{width:40.499997px;}
._5{width:45.000002px;}
._f{width:49.500001px;}
._15{width:54.000002px;}
._16{width:72.000083px;}
._13{width:84.023438px;}
._12{width:108.000000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(11,87,208);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs0{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y76{bottom:59.967044px;}
.ya{bottom:59.967584px;}
.y2c{bottom:59.967779px;}
.ybb{bottom:59.968499px;}
.y9a{bottom:113.632327px;}
.yac{bottom:114.906742px;}
.y5e{bottom:138.002197px;}
.y99{bottom:144.679688px;}
.y90{bottom:144.908197px;}
.yab{bottom:145.954102px;}
.y75{bottom:147.002197px;}
.y5d{bottom:169.049557px;}
.y98{bottom:175.727048px;}
.yba{bottom:175.728517px;}
.y8f{bottom:175.955573px;}
.yaa{bottom:177.001462px;}
.y74{bottom:178.049557px;}
.y97{bottom:206.774408px;}
.y8e{bottom:207.002933px;}
.ya9{bottom:208.048823px;}
.y5c{bottom:215.096918px;}
.ycf{bottom:221.050778px;}
.y73{bottom:224.096917px;}
.y45{bottom:234.670898px;}
.yb9{bottom:237.820312px;}
.y96{bottom:237.821783px;}
.yb0{bottom:238.050293px;}
.ya8{bottom:239.096198px;}
.y72{bottom:255.144292px;}
.y5b{bottom:261.144652px;}
.y44{bottom:265.718257px;}
.yce{bottom:267.099607px;}
.y95{bottom:268.869142px;}
.y8d{bottom:269.097652px;}
.ya7{bottom:270.143557px;}
.y43{bottom:296.765617px;}
.ycd{bottom:298.186516px;}
.y9d{bottom:299.916503px;}
.yb8{bottom:299.917973px;}
.y8c{bottom:300.145013px;}
.ya6{bottom:301.190918px;}
.y71{bottom:317.239013px;}
.y5a{bottom:323.239373px;}
.y42{bottom:327.812992px;}
.y94{bottom:330.963863px;}
.y8b{bottom:331.192387px;}
.ya5{bottom:332.238278px;}
.ycc{bottom:344.314447px;}
.y70{bottom:348.286372px;}
.y41{bottom:358.860353px;}
.yb7{bottom:362.009768px;}
.y93{bottom:362.011238px;}
.y8a{bottom:362.239748px;}
.yad{bottom:363.058597px;}
.y6f{bottom:379.333748px;}
.y59{bottom:385.334108px;}
.y40{bottom:389.907713px;}
.ycb{bottom:390.360353px;}
.y9{bottom:390.508961px;}
.y1f{bottom:393.058598px;}
.y89{bottom:393.287107px;}
.ya4{bottom:394.333012px;}
.y58{bottom:416.381467px;}
.y3f{bottom:420.955073px;}
.yca{bottom:421.447261px;}
.y1e{bottom:424.105957px;}
.ya3{bottom:425.380373px;}
.y6e{bottom:441.428468px;}
.y57{bottom:447.428828px;}
.y8{bottom:450.268890px;}
.y3e{bottom:452.002448px;}
.y92{bottom:455.153318px;}
.y88{bottom:455.381842px;}
.ya2{bottom:456.427733px;}
.yc9{bottom:467.575192px;}
.yb6{bottom:486.199222px;}
.y1d{bottom:486.200677px;}
.y87{bottom:486.429202px;}
.ya1{bottom:487.475092px;}
.y6d{bottom:487.476562px;}
.y56{bottom:509.295412px;}
.y7{bottom:510.763818px;}
.yc8{bottom:513.621098px;}
.y3d{bottom:514.097168px;}
.y1c{bottom:517.248052px;}
.y86{bottom:517.476562px;}
.ya0{bottom:518.522467px;}
.y6c{bottom:533.523187px;}
.yc7{bottom:544.669928px;}
.y3c{bottom:545.144527px;}
.y1b{bottom:548.295412px;}
.yb5{bottom:548.296867px;}
.y85{bottom:548.523922px;}
.y9f{bottom:549.569828px;}
.y55{bottom:570.342773px;}
.y6{bottom:571.273683px;}
.yc6{bottom:575.756836px;}
.y3b{bottom:576.191888px;}
.y1a{bottom:579.342773px;}
.y84{bottom:579.571283px;}
.y6b{bottom:595.617923px;}
.y54{bottom:601.390133px;}
.y3a{bottom:607.239262px;}
.yb4{bottom:610.388678px;}
.y19{bottom:610.390133px;}
.y83{bottom:610.618658px;}
.y9e{bottom:611.437492px;}
.yc5{bottom:621.881842px;}
.y6a{bottom:626.665282px;}
.y5{bottom:631.783533px;}
.y53{bottom:632.437492px;}
.y39{bottom:638.286623px;}
.y18{bottom:641.437492px;}
.y82{bottom:641.666018px;}
.y52{bottom:663.484868px;}
.yc4{bottom:667.930658px;}
.y38{bottom:669.333982px;}
.y17{bottom:672.484868px;}
.yb3{bottom:672.486322px;}
.y81{bottom:672.713377px;}
.y69{bottom:688.760003px;}
.y4{bottom:692.293391px;}
.y51{bottom:694.532228px;}
.yc3{bottom:698.976562px;}
.y37{bottom:700.381342px;}
.y9c{bottom:703.532228px;}
.y80{bottom:703.760738px;}
.y68{bottom:719.807378px;}
.y50{bottom:725.579588px;}
.y3{bottom:728.515323px;}
.yc2{bottom:730.063471px;}
.yb2{bottom:734.578118px;}
.y16{bottom:734.579588px;}
.y7f{bottom:734.808112px;}
.y2b{bottom:750.224128px;}
.y67{bottom:750.854738px;}
.yda{bottom:752.367188px;}
.y4f{bottom:756.626948px;}
.y36{bottom:762.476077px;}
.y15{bottom:765.626948px;}
.yaf{bottom:765.855473px;}
.y2a{bottom:773.697508px;}
.yc1{bottom:776.191402px;}
.y66{bottom:781.902098px;}
.y4e{bottom:787.674322px;}
.y35{bottom:793.523438px;}
.y91{bottom:796.674322px;}
.y7e{bottom:796.902833px;}
.y29{bottom:797.170903px;}
.yd9{bottom:798.413092px;}
.y4d{bottom:818.721683px;}
.y28{bottom:820.644283px;}
.yc0{bottom:822.237308px;}
.y34{bottom:824.570798px;}
.y14{bottom:827.721683px;}
.y7d{bottom:827.950192px;}
.yd8{bottom:829.500001px;}
.y65{bottom:843.996832px;}
.y27{bottom:844.117679px;}
.y4c{bottom:849.769043px;}
.ybf{bottom:853.324216px;}
.yb1{bottom:858.767573px;}
.y13{bottom:858.769043px;}
.y7c{bottom:858.997552px;}
.y26{bottom:863.091058px;}
.y2{bottom:865.572597px;}
.y64{bottom:875.044193px;}
.yd7{bottom:875.624992px;}
.y25{bottom:886.564453px;}
.y33{bottom:886.665532px;}
.y12{bottom:889.816402px;}
.y7b{bottom:890.044928px;}
.y63{bottom:906.091553px;}
.y1{bottom:909.827821px;}
.y24{bottom:910.037848px;}
.y4b{bottom:911.863762px;}
.y32{bottom:917.712892px;}
.y11{bottom:920.863762px;}
.y7a{bottom:921.092287px;}
.yd6{bottom:921.673823px;}
.ybe{bottom:924.498052px;}
.y23{bottom:933.511228px;}
.y62{bottom:937.138913px;}
.y4a{bottom:942.911137px;}
.y31{bottom:948.760252px;}
.y10{bottom:951.911137px;}
.yd5{bottom:952.722652px;}
.y22{bottom:956.984623px;}
.y61{bottom:968.186272px;}
.y49{bottom:973.958498px;}
.y30{bottom:979.807613px;}
.y21{bottom:980.854988px;}
.yf{bottom:982.958498px;}
.y79{bottom:983.187007px;}
.yd4{bottom:983.809576px;}
.y60{bottom:999.233643px;}
.y48{bottom:1005.005859px;}
.y20{bottom:1006.053222px;}
.y2f{bottom:1010.854980px;}
.ye{bottom:1014.005859px;}
.y78{bottom:1014.234375px;}
.yd3{bottom:1029.934571px;}
.y47{bottom:1036.053222px;}
.y2e{bottom:1041.902343px;}
.yd{bottom:1045.053222px;}
.ybd{bottom:1045.054688px;}
.y77{bottom:1045.281738px;}
.y5f{bottom:1061.100586px;}
.y46{bottom:1067.100586px;}
.yd2{bottom:1075.980468px;}
.y9b{bottom:1076.100586px;}
.yae{bottom:1076.329101px;}
.y2d{bottom:1102.647950px;}
.yd1{bottom:1107.029296px;}
.ybc{bottom:1107.146484px;}
.yc{bottom:1107.147950px;}
.yd0{bottom:1138.116211px;}
.yb{bottom:1138.195312px;}
.h4{height:47.437501px;}
.h8{height:49.992188px;}
.h7{height:59.715822px;}
.h6{height:63.949219px;}
.h5{height:64.546875px;}
.h2{height:75.304685px;}
.h1{height:91.441404px;}
.h3{height:107.625000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x3{left:113.428678px;}
.xd{left:135.000000px;}
.x2{left:142.844934px;}
.xe{left:162.000000px;}
.x13{left:166.500000px;}
.xc{left:175.500000px;}
.xf{left:216.000000px;}
.x4{left:254.929401px;}
.x10{left:270.000000px;}
.x5{left:277.561958px;}
.x1{left:279.141277px;}
.x7{left:290.177851px;}
.x6{left:292.421825px;}
.x8{left:297.468965px;}
.x9{left:307.000527px;}
.x11{left:766.573380px;}
.x12{left:767.798010px;}
.xa{left:775.743390px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:57.343750pt;}
.ws4d{word-spacing:-36.093750pt;}
.ws1{word-spacing:-28.506680pt;}
.ws0{word-spacing:-28.502013pt;}
.ws2{word-spacing:-23.483330pt;}
.ws4{word-spacing:-23.483276pt;}
.ws8{word-spacing:-23.483241pt;}
.ws5{word-spacing:-23.483220pt;}
.ws6{word-spacing:-23.483218pt;}
.ws3{word-spacing:-23.483210pt;}
.ws7{word-spacing:-23.483204pt;}
.ws41{word-spacing:-20.093780pt;}
.ws29{word-spacing:-20.093770pt;}
.ws12{word-spacing:-20.093760pt;}
.ws16{word-spacing:-20.093752pt;}
.ws15{word-spacing:-20.093750pt;}
.ws35{word-spacing:-20.093748pt;}
.ws2c{word-spacing:-20.093740pt;}
.ws34{word-spacing:-20.093720pt;}
.ws2d{word-spacing:-16.093780pt;}
.ws13{word-spacing:-16.093771pt;}
.ws48{word-spacing:-16.093770pt;}
.ws23{word-spacing:-16.093761pt;}
.ws27{word-spacing:-16.093760pt;}
.ws40{word-spacing:-16.093752pt;}
.wsf{word-spacing:-16.093750pt;}
.ws37{word-spacing:-16.093749pt;}
.ws26{word-spacing:-16.093740pt;}
.ws39{word-spacing:-16.093730pt;}
.ws46{word-spacing:-12.093780pt;}
.ws2b{word-spacing:-12.093770pt;}
.ws25{word-spacing:-12.093760pt;}
.ws21{word-spacing:-12.093750pt;}
.ws47{word-spacing:-12.093749pt;}
.ws36{word-spacing:-12.093740pt;}
.ws44{word-spacing:-12.093730pt;}
.ws3a{word-spacing:-8.093770pt;}
.wsc{word-spacing:-8.093760pt;}
.ws32{word-spacing:-8.093752pt;}
.ws3e{word-spacing:-8.093751pt;}
.ws14{word-spacing:-8.093750pt;}
.ws24{word-spacing:-8.093740pt;}
.ws3d{word-spacing:-8.093730pt;}
.ws38{word-spacing:-4.093770pt;}
.ws10{word-spacing:-4.093760pt;}
.wsb{word-spacing:-4.093750pt;}
.ws3c{word-spacing:-4.093740pt;}
.ws42{word-spacing:-4.093730pt;}
.ws33{word-spacing:-0.093770pt;}
.wse{word-spacing:-0.093760pt;}
.ws2f{word-spacing:-0.093751pt;}
.ws20{word-spacing:-0.093750pt;}
.ws2e{word-spacing:-0.093740pt;}
.ws4b{word-spacing:-0.093731pt;}
.ws3b{word-spacing:-0.058667pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:3.906240pt;}
.ws22{word-spacing:3.906250pt;}
.ws45{word-spacing:3.906260pt;}
.ws3f{word-spacing:7.906230pt;}
.ws43{word-spacing:7.906240pt;}
.ws31{word-spacing:7.906250pt;}
.ws2a{word-spacing:11.906240pt;}
.ws1b{word-spacing:15.446292pt;}
.ws1e{word-spacing:15.447228pt;}
.ws50{word-spacing:15.935988pt;}
.ws28{word-spacing:15.935990pt;}
.ws17{word-spacing:15.936000pt;}
.ws11{word-spacing:15.936002pt;}
.ws49{word-spacing:15.936010pt;}
.ws4a{word-spacing:15.936018pt;}
.ws1c{word-spacing:16.203767pt;}
.ws1d{word-spacing:16.203782pt;}
.ws1a{word-spacing:16.206060pt;}
.ws18{word-spacing:16.217659pt;}
.ws19{word-spacing:16.217661pt;}
.ws4c{word-spacing:19.935980pt;}
.ws4e{word-spacing:19.936000pt;}
.ws4f{word-spacing:27.936000pt;}
.ws30{word-spacing:31.936000pt;}
.wsa{word-spacing:35.936003pt;}
.ws1f{word-spacing:95.936000pt;}
._1{margin-left:-9.002215pt;}
._17{margin-left:-7.867400pt;}
._0{margin-left:-6.972283pt;}
._9{margin-left:-4.156260pt;}
._14{margin-left:-2.562486pt;}
._2{margin-left:-1.538765pt;}
._b{width:1.615740pt;}
._a{width:4.748255pt;}
._c{width:5.776221pt;}
._d{width:9.156429pt;}
._11{width:15.378455pt;}
._e{width:16.621556pt;}
._8{width:20.000002pt;}
._6{width:23.999999pt;}
._10{width:27.234941pt;}
._7{width:28.382540pt;}
._4{width:32.000000pt;}
._3{width:35.999997pt;}
._5{width:40.000001pt;}
._f{width:44.000001pt;}
._15{width:48.000002pt;}
._16{width:64.000074pt;}
._13{width:74.687500pt;}
._12{width:96.000000pt;}
.fs2{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs0{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:53.304039pt;}
.ya{bottom:53.304519pt;}
.y2c{bottom:53.304692pt;}
.ybb{bottom:53.305332pt;}
.y9a{bottom:101.006513pt;}
.yac{bottom:102.139327pt;}
.y5e{bottom:122.668620pt;}
.y99{bottom:128.604167pt;}
.y90{bottom:128.807287pt;}
.yab{bottom:129.736980pt;}
.y75{bottom:130.668620pt;}
.y5d{bottom:150.266273pt;}
.y98{bottom:156.201820pt;}
.yba{bottom:156.203127pt;}
.y8f{bottom:156.404953pt;}
.yaa{bottom:157.334633pt;}
.y74{bottom:158.266273pt;}
.y97{bottom:183.799473pt;}
.y8e{bottom:184.002607pt;}
.ya9{bottom:184.932287pt;}
.y5c{bottom:191.197260pt;}
.ycf{bottom:196.489580pt;}
.y73{bottom:199.197260pt;}
.y45{bottom:208.596353pt;}
.yb9{bottom:211.395833pt;}
.y96{bottom:211.397140pt;}
.yb0{bottom:211.600260pt;}
.ya8{bottom:212.529953pt;}
.y72{bottom:226.794927pt;}
.y5b{bottom:232.128580pt;}
.y44{bottom:236.194007pt;}
.yce{bottom:237.421873pt;}
.y95{bottom:238.994793pt;}
.y8d{bottom:239.197913pt;}
.ya7{bottom:240.127607pt;}
.y43{bottom:263.791660pt;}
.ycd{bottom:265.054681pt;}
.y9d{bottom:266.592447pt;}
.yb8{bottom:266.593753pt;}
.y8c{bottom:266.795567pt;}
.ya6{bottom:267.725260pt;}
.y71{bottom:281.990233pt;}
.y5a{bottom:287.323887pt;}
.y42{bottom:291.389327pt;}
.y94{bottom:294.190100pt;}
.y8b{bottom:294.393233pt;}
.ya5{bottom:295.322913pt;}
.ycc{bottom:306.057287pt;}
.y70{bottom:309.587887pt;}
.y41{bottom:318.986980pt;}
.yb7{bottom:321.786460pt;}
.y93{bottom:321.787767pt;}
.y8a{bottom:321.990887pt;}
.yad{bottom:322.718753pt;}
.y6f{bottom:337.185553pt;}
.y59{bottom:342.519207pt;}
.y40{bottom:346.584633pt;}
.ycb{bottom:346.986980pt;}
.y9{bottom:347.119076pt;}
.y1f{bottom:349.385420pt;}
.y89{bottom:349.588540pt;}
.ya4{bottom:350.518233pt;}
.y58{bottom:370.116860pt;}
.y3f{bottom:374.182287pt;}
.yca{bottom:374.619787pt;}
.y1e{bottom:376.983073pt;}
.ya3{bottom:378.115887pt;}
.y6e{bottom:392.380860pt;}
.y57{bottom:397.714513pt;}
.y8{bottom:400.239013pt;}
.y3e{bottom:401.779953pt;}
.y92{bottom:404.580727pt;}
.y88{bottom:404.783860pt;}
.ya2{bottom:405.713540pt;}
.yc9{bottom:415.622393pt;}
.yb6{bottom:432.177087pt;}
.y1d{bottom:432.178380pt;}
.y87{bottom:432.381513pt;}
.ya1{bottom:433.311193pt;}
.y6d{bottom:433.312500pt;}
.y56{bottom:452.707032pt;}
.y7{bottom:454.012283pt;}
.yc8{bottom:456.552087pt;}
.y3d{bottom:456.975260pt;}
.y1c{bottom:459.776047pt;}
.y86{bottom:459.979167pt;}
.ya0{bottom:460.908860pt;}
.y6c{bottom:474.242833pt;}
.yc7{bottom:484.151047pt;}
.y3c{bottom:484.572913pt;}
.y1b{bottom:487.373700pt;}
.yb5{bottom:487.374993pt;}
.y85{bottom:487.576820pt;}
.y9f{bottom:488.506513pt;}
.y55{bottom:506.971353pt;}
.y6{bottom:507.798829pt;}
.yc6{bottom:511.783854pt;}
.y3b{bottom:512.170567pt;}
.y1a{bottom:514.971353pt;}
.y84{bottom:515.174473pt;}
.y6b{bottom:529.438153pt;}
.y54{bottom:534.569007pt;}
.y3a{bottom:539.768233pt;}
.yb4{bottom:542.567713pt;}
.y19{bottom:542.569007pt;}
.y83{bottom:542.772140pt;}
.y9e{bottom:543.499992pt;}
.yc5{bottom:552.783860pt;}
.y6a{bottom:557.035807pt;}
.y5{bottom:561.585363pt;}
.y53{bottom:562.166660pt;}
.y39{bottom:567.365887pt;}
.y18{bottom:570.166660pt;}
.y82{bottom:570.369793pt;}
.y52{bottom:589.764327pt;}
.yc4{bottom:593.716140pt;}
.y38{bottom:594.963540pt;}
.y17{bottom:597.764327pt;}
.yb3{bottom:597.765620pt;}
.y81{bottom:597.967447pt;}
.y69{bottom:612.231113pt;}
.y4{bottom:615.371903pt;}
.y51{bottom:617.361980pt;}
.yc3{bottom:621.312500pt;}
.y37{bottom:622.561193pt;}
.y9c{bottom:625.361980pt;}
.y80{bottom:625.565100pt;}
.y68{bottom:639.828780pt;}
.y50{bottom:644.959633pt;}
.y3{bottom:647.569176pt;}
.yc2{bottom:648.945308pt;}
.yb2{bottom:652.958327pt;}
.y16{bottom:652.959633pt;}
.y7f{bottom:653.162767pt;}
.y2b{bottom:666.865891pt;}
.y67{bottom:667.426433pt;}
.yda{bottom:668.770833pt;}
.y4f{bottom:672.557287pt;}
.y36{bottom:677.756513pt;}
.y15{bottom:680.557287pt;}
.yaf{bottom:680.760420pt;}
.y2a{bottom:687.731118pt;}
.yc1{bottom:689.947913pt;}
.y66{bottom:695.024087pt;}
.y4e{bottom:700.154953pt;}
.y35{bottom:705.354167pt;}
.y91{bottom:708.154953pt;}
.y7e{bottom:708.358073pt;}
.y29{bottom:708.596358pt;}
.yd9{bottom:709.700527pt;}
.y4d{bottom:727.752607pt;}
.y28{bottom:729.461585pt;}
.yc0{bottom:730.877607pt;}
.y34{bottom:732.951820pt;}
.y14{bottom:735.752607pt;}
.y7d{bottom:735.955727pt;}
.yd8{bottom:737.333334pt;}
.y65{bottom:750.219407pt;}
.y27{bottom:750.326825pt;}
.y4c{bottom:755.350260pt;}
.ybf{bottom:758.510414pt;}
.yb1{bottom:763.348953pt;}
.y13{bottom:763.350260pt;}
.y7c{bottom:763.553380pt;}
.y26{bottom:767.192051pt;}
.y2{bottom:769.397864pt;}
.y64{bottom:777.817060pt;}
.yd7{bottom:778.333327pt;}
.y25{bottom:788.057291pt;}
.y33{bottom:788.147140pt;}
.y12{bottom:790.947913pt;}
.y7b{bottom:791.151047pt;}
.y63{bottom:805.414713pt;}
.y1{bottom:808.735841pt;}
.y24{bottom:808.922531pt;}
.y4b{bottom:810.545567pt;}
.y32{bottom:815.744793pt;}
.y11{bottom:818.545567pt;}
.y7a{bottom:818.748700pt;}
.yd6{bottom:819.265620pt;}
.ybe{bottom:821.776046pt;}
.y23{bottom:829.787758pt;}
.y62{bottom:833.012367pt;}
.y4a{bottom:838.143233pt;}
.y31{bottom:843.342447pt;}
.y10{bottom:846.143233pt;}
.yd5{bottom:846.864580pt;}
.y22{bottom:850.652998pt;}
.y61{bottom:860.610020pt;}
.y49{bottom:865.740887pt;}
.y30{bottom:870.940100pt;}
.y21{bottom:871.871100pt;}
.yf{bottom:873.740887pt;}
.y79{bottom:873.944007pt;}
.yd4{bottom:874.497401pt;}
.y60{bottom:888.207683pt;}
.y48{bottom:893.338541pt;}
.y20{bottom:894.269531pt;}
.y2f{bottom:898.537760pt;}
.ye{bottom:901.338541pt;}
.y78{bottom:901.541667pt;}
.yd3{bottom:915.497396pt;}
.y47{bottom:920.936197pt;}
.y2e{bottom:926.135416pt;}
.yd{bottom:928.936197pt;}
.ybd{bottom:928.937500pt;}
.y77{bottom:929.139323pt;}
.y5f{bottom:943.200521pt;}
.y46{bottom:948.533855pt;}
.yd2{bottom:956.427083pt;}
.y9b{bottom:956.533855pt;}
.yae{bottom:956.736979pt;}
.y2d{bottom:980.131511pt;}
.yd1{bottom:984.026041pt;}
.ybc{bottom:984.130208pt;}
.yc{bottom:984.131511pt;}
.yd0{bottom:1011.658854pt;}
.yb{bottom:1011.729167pt;}
.h4{height:42.166668pt;}
.h8{height:44.437500pt;}
.h7{height:53.080730pt;}
.h6{height:56.843750pt;}
.h5{height:57.375000pt;}
.h2{height:66.937498pt;}
.h1{height:81.281248pt;}
.h3{height:95.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x3{left:100.825491pt;}
.xd{left:120.000000pt;}
.x2{left:126.973274pt;}
.xe{left:144.000000pt;}
.x13{left:148.000000pt;}
.xc{left:156.000000pt;}
.xf{left:192.000000pt;}
.x4{left:226.603912pt;}
.x10{left:240.000000pt;}
.x5{left:246.721740pt;}
.x1{left:248.125579pt;}
.x7{left:257.935867pt;}
.x6{left:259.930511pt;}
.x8{left:264.416857pt;}
.x9{left:272.889357pt;}
.x11{left:681.398560pt;}
.x12{left:682.487120pt;}
.xa{left:689.549680pt;}
}




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