
    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_0f325d504a5cb2f03dbc83f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_02077d33c22d2b5e42651c99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_5477f07cb5cd59f3d5c96b17.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_97c400456a72258dbbffcec3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_34fbf261c83c0f831d2471ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.775000;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_1d66e48f300b515648f20b14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c08d4efb42d0921fe01d64eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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;}
.ls2{letter-spacing:0.020687px;}
.ls1{letter-spacing:0.044792px;}
.lsb{letter-spacing:41.972087px;}
.lsa{letter-spacing:41.972090px;}
.ls5{letter-spacing:41.972157px;}
.ls6{letter-spacing:41.972162px;}
.ls9{letter-spacing:41.986392px;}
.lsc{letter-spacing:42.000283px;}
.ls3{letter-spacing:42.000492px;}
.ls4{letter-spacing:42.044296px;}
.ls8{letter-spacing:107.972161px;}
.ls7{letter-spacing:107.972165px;}
.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;}
}
.ws5{word-spacing:-44.226001px;}
.ws4{word-spacing:-42.121265px;}
.ws2{word-spacing:-42.120000px;}
.ws1{word-spacing:-40.920000px;}
.ws6{word-spacing:-31.590001px;}
.ws3{word-spacing:-29.484000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-13.320400px;}
._7{margin-left:-9.367350px;}
._5{margin-left:-7.262339px;}
._6{margin-left:-6.006000px;}
._3{margin-left:-3.414513px;}
._0{margin-left:-1.792650px;}
._1{width:1.004915px;}
._8{width:2.333389px;}
._2{width:107.987249px;}
.fc7{color:rgb(7,1,104);}
.fc4{color:rgb(148,55,255);}
.fc6{color:rgb(223,5,105);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:transparent;}
.fc5{color:rgb(228,7,105);}
.fc0{color:rgb(7,10,104);}
.fs14{font-size:30.000000px;}
.fsa{font-size:36.000001px;}
.fs9{font-size:42.000000px;}
.fs5{font-size:48.000003px;}
.fs12{font-size:66.000004px;}
.fs3{font-size:72.000002px;}
.fs4{font-size:78.000005px;}
.fsc{font-size:83.064603px;}
.fs8{font-size:84.000000px;}
.fsb{font-size:88.257004px;}
.fs13{font-size:90.000003px;}
.fs11{font-size:102.000000px;}
.fs2{font-size:105.450006px;}
.fs10{font-size:108.000003px;}
.fs15{font-size:114.000007px;}
.fs7{font-size:120.000001px;}
.fsd{font-size:120.003605px;}
.fse{font-size:126.000004px;}
.fs16{font-size:132.000007px;}
.fs0{font-size:138.000001px;}
.fsf{font-size:144.000005px;}
.fs1{font-size:149.999999px;}
.fs6{font-size:167.999999px;}
.y0{bottom:0.000000px;}
.y8{bottom:8.912018px;}
.yf{bottom:9.431756px;}
.y6f{bottom:35.118882px;}
.y60{bottom:39.508812px;}
.y11{bottom:41.732239px;}
.y49{bottom:42.314494px;}
.y6e{bottom:44.118882px;}
.y5f{bottom:50.308812px;}
.y10{bottom:52.532240px;}
.y23{bottom:58.500939px;}
.y52{bottom:59.980854px;}
.y5d{bottom:63.755623px;}
.y9d{bottom:65.866876px;}
.y22{bottom:69.300939px;}
.y6d{bottom:70.732664px;}
.y51{bottom:80.230854px;}
.y33{bottom:82.168266px;}
.y48{bottom:82.814496px;}
.y5c{bottom:83.555623px;}
.y7c{bottom:90.788369px;}
.y50{bottom:100.480855px;}
.y9c{bottom:101.056878px;}
.y5b{bottom:103.355635px;}
.y47{bottom:105.314496px;}
.y8c{bottom:105.898805px;}
.y3f{bottom:107.230855px;}
.y21{bottom:117.156101px;}
.y4f{bottom:120.730856px;}
.y6c{bottom:122.032665px;}
.y5a{bottom:123.155647px;}
.y32{bottom:125.638268px;}
.y7b{bottom:126.788370px;}
.y46{bottom:127.814497px;}
.y3e{bottom:129.730856px;}
.y9b{bottom:139.396901px;}
.y4e{bottom:140.980856px;}
.y8b{bottom:141.898806px;}
.y20{bottom:142.356124px;}
.y59{bottom:142.955648px;}
.y45{bottom:150.314498px;}
.y3d{bottom:152.230857px;}
.y6b{bottom:158.032666px;}
.y4d{bottom:161.230857px;}
.y58{bottom:162.755648px;}
.y7a{bottom:162.788371px;}
.y1f{bottom:167.556158px;}
.y31{bottom:169.108269px;}
.y44{bottom:172.814499px;}
.y3c{bottom:174.730857px;}
.y8a{bottom:177.898807px;}
.y4c{bottom:181.480858px;}
.y9a{bottom:181.786903px;}
.y57{bottom:182.555656px;}
.y29{bottom:188.916838px;}
.y1e{bottom:192.756182px;}
.y6a{bottom:194.032668px;}
.y43{bottom:195.314499px;}
.y3b{bottom:197.230858px;}
.y79{bottom:198.788372px;}
.y4b{bottom:201.730858px;}
.y56{bottom:202.355654px;}
.y30{bottom:212.578304px;}
.y89{bottom:213.898808px;}
.y42{bottom:217.814500px;}
.y1d{bottom:217.956183px;}
.y3a{bottom:219.730859px;}
.y99{bottom:220.126904px;}
.y4a{bottom:221.980859px;}
.y55{bottom:222.155650px;}
.y28{bottom:224.917919px;}
.y69{bottom:230.032669px;}
.y78{bottom:234.788373px;}
.y41{bottom:240.314501px;}
.y54{bottom:241.955651px;}
.y39{bottom:242.230860px;}
.y1c{bottom:243.156172px;}
.y88{bottom:249.898809px;}
.y2f{bottom:256.048306px;}
.y98{bottom:257.926905px;}
.y7{bottom:259.379989px;}
.y68{bottom:266.032670px;}
.y1b{bottom:268.356173px;}
.y77{bottom:270.788375px;}
.y40{bottom:281.045192px;}
.y53{bottom:281.555652px;}
.y38{bottom:282.730861px;}
.y6{bottom:282.779990px;}
.y27{bottom:283.419749px;}
.y87{bottom:285.898810px;}
.y97{bottom:290.326895px;}
.yc{bottom:291.140934px;}
.y9f{bottom:291.992547px;}
.y1a{bottom:293.556162px;}
.y2e{bottom:299.518307px;}
.y67{bottom:302.032671px;}
.y5{bottom:303.075598px;}
.y90{bottom:303.686205px;}
.y76{bottom:306.788376px;}
.y19{bottom:318.756152px;}
.y86{bottom:321.898811px;}
.y96{bottom:328.126907px;}
.y9e{bottom:333.392549px;}
.y4{bottom:333.431903px;}
.yd{bottom:337.657671px;}
.y66{bottom:338.032672px;}
.y26{bottom:341.921579px;}
.y75{bottom:342.788377px;}
.y2d{bottom:342.988309px;}
.y18{bottom:343.956153px;}
.y85{bottom:357.898813px;}
.y95{bottom:358.726897px;}
.y81{bottom:361.090739px;}
.y3{bottom:361.903403px;}
.y17{bottom:369.156142px;}
.y65{bottom:374.032673px;}
.y8f{bottom:374.710611px;}
.y74{bottom:378.788378px;}
.y2c{bottom:386.458299px;}
.ye{bottom:387.227052px;}
.y94{bottom:391.126887px;}
.y84{bottom:393.898814px;}
.y16{bottom:394.356138px;}
.y80{bottom:397.090740px;}
.y1{bottom:407.116449px;}
.y64{bottom:410.032674px;}
.y2{bottom:413.861203px;}
.y73{bottom:414.788379px;}
.y15{bottom:419.556144px;}
.yb{bottom:423.246493px;}
.y37{bottom:427.400015px;}
.y83{bottom:429.898815px;}
.y2b{bottom:429.928289px;}
.y93{bottom:430.726888px;}
.y7f{bottom:433.090742px;}
.y14{bottom:444.756138px;}
.y63{bottom:446.032676px;}
.y72{bottom:450.788380px;}
.y25{bottom:454.463725px;}
.y82{bottom:465.898816px;}
.y7e{bottom:469.090743px;}
.y13{bottom:469.956137px;}
.y8e{bottom:470.187513px;}
.y92{bottom:470.326889px;}
.y2a{bottom:473.398282px;}
.y36{bottom:480.860018px;}
.y62{bottom:482.032677px;}
.ya{bottom:486.606497px;}
.y71{bottom:504.428382px;}
.y7d{bottom:505.090744px;}
.y35{bottom:513.328585px;}
.y8d{bottom:537.965548px;}
.y24{bottom:538.396646px;}
.y9{bottom:538.883146px;}
.y61{bottom:542.613184px;}
.y91{bottom:544.567914px;}
.y12{bottom:546.912400px;}
.y5e{bottom:550.647636px;}
.y70{bottom:552.115154px;}
.y34{bottom:556.528580px;}
.h18{height:22.939453px;}
.hd{height:27.527345px;}
.hc{height:32.115234px;}
.h6{height:36.703127px;}
.h14{height:48.049807px;}
.h15{height:48.082034px;}
.h16{height:50.490003px;}
.h4{height:55.054689px;}
.h5{height:59.642582px;}
.ha{height:61.195312px;}
.h9{height:64.230469px;}
.he{height:67.516608px;}
.h17{height:68.818362px;}
.h13{height:72.828000px;}
.h1b{height:77.994141px;}
.h3{height:80.632183px;}
.h12{height:82.582034px;}
.h19{height:87.169927px;}
.hb{height:87.363282px;}
.h8{height:91.757813px;}
.hf{height:91.760569px;}
.h10{height:96.345706px;}
.h1a{height:100.933599px;}
.h1{height:105.521485px;}
.h11{height:110.109379px;}
.h2{height:114.697265px;}
.h7{height:128.460937px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x10{left:23.574803px;}
.x2e{left:29.571851px;}
.x14{left:31.683072px;}
.x2f{left:37.446851px;}
.x29{left:39.064963px;}
.xa{left:42.344956px;}
.x19{left:44.600697px;}
.x30{left:46.333812px;}
.x38{left:48.988727px;}
.x34{left:52.210633px;}
.x9{left:53.828743px;}
.x2a{left:58.826924px;}
.x36{left:63.990985px;}
.x3d{left:67.447740px;}
.x1a{left:69.826771px;}
.x1c{left:71.620499px;}
.x3a{left:73.022304px;}
.x3c{left:77.545256px;}
.x39{left:79.417326px;}
.x33{left:82.505909px;}
.x2b{left:87.439964px;}
.x3b{left:98.917327px;}
.x1d{left:104.111227px;}
.x16{left:108.275295px;}
.x15{left:111.687863px;}
.x1b{left:117.141287px;}
.xe{left:141.318905px;}
.x2{left:159.676313px;}
.x28{left:182.905510px;}
.x13{left:185.037407px;}
.x37{left:258.113843px;}
.x22{left:314.496573px;}
.x23{left:336.005847px;}
.x24{left:368.496574px;}
.x17{left:493.657951px;}
.x18{left:523.184075px;}
.x27{left:550.572363px;}
.x26{left:572.081637px;}
.x6{left:586.881806px;}
.xb{left:593.441985px;}
.xc{left:602.294307px;}
.x3{left:603.680903px;}
.x25{left:605.665813px;}
.x31{left:615.010992px;}
.x32{left:660.124034px;}
.x1{left:673.742350px;}
.x11{left:683.117122px;}
.x4{left:690.153232px;}
.xf{left:699.620085px;}
.x35{left:701.997097px;}
.x12{left:737.117124px;}
.x2d{left:756.591020px;}
.x2c{left:759.530769px;}
.x1f{left:800.954186px;}
.x1e{left:803.056256px;}
.x20{left:833.444914px;}
.x7{left:854.012345px;}
.x5{left:879.699459px;}
.x21{left:894.646682px;}
.x8{left:980.816829px;}
.xd{left:1029.286450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.018389pt;}
.ls1{letter-spacing:0.039815pt;}
.lsb{letter-spacing:37.308522pt;}
.lsa{letter-spacing:37.308524pt;}
.ls5{letter-spacing:37.308584pt;}
.ls6{letter-spacing:37.308588pt;}
.ls9{letter-spacing:37.321237pt;}
.lsc{letter-spacing:37.333585pt;}
.ls3{letter-spacing:37.333771pt;}
.ls4{letter-spacing:37.372708pt;}
.ls8{letter-spacing:95.975254pt;}
.ls7{letter-spacing:95.975258pt;}
.ws5{word-spacing:-39.312001pt;}
.ws4{word-spacing:-37.441125pt;}
.ws2{word-spacing:-37.440000pt;}
.ws1{word-spacing:-36.373334pt;}
.ws6{word-spacing:-28.080001pt;}
.ws3{word-spacing:-26.208000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-11.840356pt;}
._7{margin-left:-8.326534pt;}
._5{margin-left:-6.455413pt;}
._6{margin-left:-5.338667pt;}
._3{margin-left:-3.035123pt;}
._0{margin-left:-1.593467pt;}
._1{width:0.893258pt;}
._8{width:2.074124pt;}
._2{width:95.988666pt;}
.fs14{font-size:26.666667pt;}
.fsa{font-size:32.000001pt;}
.fs9{font-size:37.333333pt;}
.fs5{font-size:42.666669pt;}
.fs12{font-size:58.666670pt;}
.fs3{font-size:64.000002pt;}
.fs4{font-size:69.333338pt;}
.fsc{font-size:73.835202pt;}
.fs8{font-size:74.666666pt;}
.fsb{font-size:78.450671pt;}
.fs13{font-size:80.000003pt;}
.fs11{font-size:90.666667pt;}
.fs2{font-size:93.733339pt;}
.fs10{font-size:96.000003pt;}
.fs15{font-size:101.333339pt;}
.fs7{font-size:106.666667pt;}
.fsd{font-size:106.669871pt;}
.fse{font-size:112.000004pt;}
.fs16{font-size:117.333340pt;}
.fs0{font-size:122.666668pt;}
.fsf{font-size:128.000004pt;}
.fs1{font-size:133.333332pt;}
.fs6{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:7.921794pt;}
.yf{bottom:8.383783pt;}
.y6f{bottom:31.216784pt;}
.y60{bottom:35.118944pt;}
.y11{bottom:37.095324pt;}
.y49{bottom:37.612884pt;}
.y6e{bottom:39.216784pt;}
.y5f{bottom:44.718944pt;}
.y10{bottom:46.695324pt;}
.y23{bottom:52.000834pt;}
.y52{bottom:53.316314pt;}
.y5d{bottom:56.671665pt;}
.y9d{bottom:58.548335pt;}
.y22{bottom:61.600835pt;}
.y6d{bottom:62.873479pt;}
.y51{bottom:71.316315pt;}
.y33{bottom:73.038459pt;}
.y48{bottom:73.612885pt;}
.y5c{bottom:74.271665pt;}
.y7c{bottom:80.700772pt;}
.y50{bottom:89.316316pt;}
.y9c{bottom:89.828336pt;}
.y5b{bottom:91.871676pt;}
.y47{bottom:93.612886pt;}
.y8c{bottom:94.132271pt;}
.y3f{bottom:95.316316pt;}
.y21{bottom:104.138756pt;}
.y4f{bottom:107.316316pt;}
.y6c{bottom:108.473480pt;}
.y5a{bottom:109.471686pt;}
.y32{bottom:111.678460pt;}
.y7b{bottom:112.700773pt;}
.y46{bottom:113.612886pt;}
.y3e{bottom:115.316316pt;}
.y9b{bottom:123.908357pt;}
.y4e{bottom:125.316317pt;}
.y8b{bottom:126.132272pt;}
.y20{bottom:126.538777pt;}
.y59{bottom:127.071687pt;}
.y45{bottom:133.612887pt;}
.y3d{bottom:135.316317pt;}
.y6b{bottom:140.473481pt;}
.y4d{bottom:143.316317pt;}
.y58{bottom:144.671687pt;}
.y7a{bottom:144.700774pt;}
.y1f{bottom:148.938807pt;}
.y31{bottom:150.318462pt;}
.y44{bottom:153.612888pt;}
.y3c{bottom:155.316318pt;}
.y8a{bottom:158.132273pt;}
.y4c{bottom:161.316318pt;}
.y9a{bottom:161.588358pt;}
.y57{bottom:162.271694pt;}
.y29{bottom:167.926078pt;}
.y1e{bottom:171.338828pt;}
.y6a{bottom:172.473482pt;}
.y43{bottom:173.612888pt;}
.y3b{bottom:175.316318pt;}
.y79{bottom:176.700775pt;}
.y4b{bottom:179.316318pt;}
.y56{bottom:179.871692pt;}
.y30{bottom:188.958493pt;}
.y89{bottom:190.132274pt;}
.y42{bottom:193.612889pt;}
.y1d{bottom:193.738829pt;}
.y3a{bottom:195.316319pt;}
.y99{bottom:195.668359pt;}
.y4a{bottom:197.316319pt;}
.y55{bottom:197.471689pt;}
.y28{bottom:199.927039pt;}
.y69{bottom:204.473483pt;}
.y78{bottom:208.700776pt;}
.y41{bottom:213.612890pt;}
.y54{bottom:215.071690pt;}
.y39{bottom:215.316320pt;}
.y1c{bottom:216.138820pt;}
.y88{bottom:222.132275pt;}
.y2f{bottom:227.598494pt;}
.y98{bottom:229.268360pt;}
.y7{bottom:230.559990pt;}
.y68{bottom:236.473484pt;}
.y1b{bottom:238.538820pt;}
.y77{bottom:240.700777pt;}
.y40{bottom:249.817949pt;}
.y53{bottom:250.271691pt;}
.y38{bottom:251.316321pt;}
.y6{bottom:251.359991pt;}
.y27{bottom:251.928666pt;}
.y87{bottom:254.132276pt;}
.y97{bottom:258.068351pt;}
.yc{bottom:258.791941pt;}
.y9f{bottom:259.548931pt;}
.y1a{bottom:260.938811pt;}
.y2e{bottom:266.238495pt;}
.y67{bottom:268.473485pt;}
.y5{bottom:269.400531pt;}
.y90{bottom:269.943293pt;}
.y76{bottom:272.700778pt;}
.y19{bottom:283.338802pt;}
.y86{bottom:286.132277pt;}
.y96{bottom:291.668362pt;}
.y9e{bottom:296.348932pt;}
.y4{bottom:296.383914pt;}
.yd{bottom:300.140152pt;}
.y66{bottom:300.473486pt;}
.y26{bottom:303.930292pt;}
.y75{bottom:304.700779pt;}
.y2d{bottom:304.878496pt;}
.y18{bottom:305.738803pt;}
.y85{bottom:318.132278pt;}
.y95{bottom:318.868353pt;}
.y81{bottom:320.969546pt;}
.y3{bottom:321.691914pt;}
.y17{bottom:328.138793pt;}
.y65{bottom:332.473487pt;}
.y8f{bottom:333.076098pt;}
.y74{bottom:336.700780pt;}
.y2c{bottom:343.518488pt;}
.ye{bottom:344.201824pt;}
.y94{bottom:347.668344pt;}
.y84{bottom:350.132279pt;}
.y16{bottom:350.538789pt;}
.y80{bottom:352.969547pt;}
.y1{bottom:361.881288pt;}
.y64{bottom:364.473488pt;}
.y2{bottom:367.876624pt;}
.y73{bottom:368.700782pt;}
.y15{bottom:372.938795pt;}
.yb{bottom:376.219105pt;}
.y37{bottom:379.911125pt;}
.y83{bottom:382.132280pt;}
.y2b{bottom:382.158479pt;}
.y93{bottom:382.868345pt;}
.y7f{bottom:384.969548pt;}
.y14{bottom:395.338789pt;}
.y63{bottom:396.473489pt;}
.y72{bottom:400.700783pt;}
.y25{bottom:403.967756pt;}
.y82{bottom:414.132281pt;}
.y7e{bottom:416.969549pt;}
.y13{bottom:417.738788pt;}
.y8e{bottom:417.944456pt;}
.y92{bottom:418.068346pt;}
.y2a{bottom:420.798473pt;}
.y36{bottom:427.431127pt;}
.y62{bottom:428.473490pt;}
.ya{bottom:432.539109pt;}
.y71{bottom:448.380784pt;}
.y7d{bottom:448.969550pt;}
.y35{bottom:456.292075pt;}
.y8d{bottom:478.191598pt;}
.y24{bottom:478.574796pt;}
.y9{bottom:479.007241pt;}
.y61{bottom:482.322830pt;}
.y91{bottom:484.060368pt;}
.y12{bottom:486.144355pt;}
.y5e{bottom:489.464565pt;}
.y70{bottom:490.769025pt;}
.y34{bottom:494.692072pt;}
.h18{height:20.390625pt;}
.hd{height:24.468751pt;}
.hc{height:28.546875pt;}
.h6{height:32.625002pt;}
.h14{height:42.710940pt;}
.h15{height:42.739586pt;}
.h16{height:44.880002pt;}
.h4{height:48.937502pt;}
.h5{height:53.015629pt;}
.ha{height:54.395833pt;}
.h9{height:57.093750pt;}
.he{height:60.014763pt;}
.h17{height:61.171877pt;}
.h13{height:64.736000pt;}
.h1b{height:69.328125pt;}
.h3{height:71.673051pt;}
.h12{height:73.406252pt;}
.h19{height:77.484380pt;}
.hb{height:77.656251pt;}
.h8{height:81.562501pt;}
.hf{height:81.564951pt;}
.h10{height:85.640628pt;}
.h1a{height:89.718755pt;}
.h1{height:93.796876pt;}
.h11{height:97.875003pt;}
.h2{height:101.953124pt;}
.h7{height:114.187500pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x10{left:20.955381pt;}
.x2e{left:26.286090pt;}
.x14{left:28.162731pt;}
.x2f{left:33.286090pt;}
.x29{left:34.724411pt;}
.xa{left:37.639961pt;}
.x19{left:39.645064pt;}
.x30{left:41.185610pt;}
.x38{left:43.545535pt;}
.x34{left:46.409451pt;}
.x9{left:47.847772pt;}
.x2a{left:52.290599pt;}
.x36{left:56.880876pt;}
.x3d{left:59.953547pt;}
.x1a{left:62.068241pt;}
.x1c{left:63.662666pt;}
.x3a{left:64.908715pt;}
.x3c{left:68.929116pt;}
.x39{left:70.593178pt;}
.x33{left:73.338585pt;}
.x2b{left:77.724412pt;}
.x3b{left:87.926513pt;}
.x1d{left:92.543313pt;}
.x16{left:96.244707pt;}
.x15{left:99.278100pt;}
.x1b{left:104.125588pt;}
.xe{left:125.616804pt;}
.x2{left:141.934501pt;}
.x28{left:162.582675pt;}
.x13{left:164.477695pt;}
.x37{left:229.434527pt;}
.x22{left:279.552509pt;}
.x23{left:298.671864pt;}
.x24{left:327.552510pt;}
.x17{left:438.807068pt;}
.x18{left:465.052511pt;}
.x27{left:489.397656pt;}
.x26{left:508.517010pt;}
.x6{left:521.672717pt;}
.xb{left:527.503987pt;}
.xc{left:535.372717pt;}
.x3{left:536.605247pt;}
.x25{left:538.369611pt;}
.x31{left:546.676437pt;}
.x32{left:586.776919pt;}
.x1{left:598.882089pt;}
.x11{left:607.215219pt;}
.x4{left:613.469540pt;}
.xf{left:621.884520pt;}
.x35{left:623.997420pt;}
.x12{left:655.215221pt;}
.x2d{left:672.525352pt;}
.x2c{left:675.138462pt;}
.x1f{left:711.959277pt;}
.x1e{left:713.827783pt;}
.x20{left:740.839924pt;}
.x7{left:759.122084pt;}
.x5{left:781.955075pt;}
.x21{left:795.241495pt;}
.x8{left:871.837181pt;}
.xd{left:914.921289pt;}
}




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