
    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_849dd1001f4193c072c662d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_2f68296d16e8fc15eb673f80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_7ebcc677cfe2a67855459283.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9c8072d843a2512932ae121.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_adc30a66408bc9ebb3971931.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_5223ff7e916827c6d0cd5bd0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_5caa6e0e669b400660344ebc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.058320px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:15.120000px;}
.lsb{letter-spacing:20.160000px;}
.lse{letter-spacing:54.840000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws8{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.228000px;}
.ws4{word-spacing:-15.012000px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.wsb{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.240000px;}
.ws6{word-spacing:-12.204000px;}
.ws5{word-spacing:-9.437760px;}
.ws2{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1.400640px;}
._0{width:1.340640px;}
._c{width:2.403360px;}
._f{width:3.718560px;}
._15{width:5.040000px;}
._12{width:6.552000px;}
._d{width:8.352000px;}
._e{width:9.504000px;}
._7{width:10.512000px;}
._8{width:11.664000px;}
._9{width:13.536000px;}
._a{width:14.544000px;}
._4{width:15.656640px;}
._3{width:16.920000px;}
._13{width:19.944000px;}
._10{width:21.960000px;}
._11{width:23.544000px;}
._19{width:25.344000px;}
._1a{width:26.496000px;}
._1c{width:28.152000px;}
._1d{width:29.259360px;}
._b{width:31.032000px;}
._14{width:32.184000px;}
._16{width:33.768000px;}
._18{width:34.920000px;}
._1b{width:37.872000px;}
._17{width:38.880000px;}
._6{width:42.336000px;}
._5{width:43.560000px;}
._2{width:66.338640px;}
.fc3{color:rgb(48,54,64);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y8{bottom:7.200000px;}
.y7{bottom:28.260000px;}
.y4{bottom:35.460000px;}
.yd{bottom:42.840000px;}
.y6{bottom:49.320000px;}
.yc{bottom:59.400000px;}
.y3{bottom:61.740000px;}
.y5{bottom:70.200000px;}
.yb{bottom:74.916000px;}
.ya{bottom:90.396000px;}
.y52{bottom:118.836000px;}
.y6e{bottom:128.916000px;}
.y35{bottom:144.036000px;}
.y6d{bottom:160.050000px;}
.y93{bottom:162.210000px;}
.y51{bottom:164.910000px;}
.y34{bottom:167.970000px;}
.y82{bottom:182.010000px;}
.y6c{bottom:191.010000px;}
.y33{bottom:191.730000px;}
.y92{bottom:193.350000px;}
.y50{bottom:210.990000px;}
.y6b{bottom:222.150000px;}
.y91{bottom:224.310000px;}
.y32{bottom:230.430000px;}
.y6a{bottom:253.110000px;}
.y31{bottom:254.370000px;}
.y90{bottom:255.450000px;}
.y4f{bottom:257.070000px;}
.y81{bottom:262.110000px;}
.y30{bottom:278.130000px;}
.y69{bottom:284.250000px;}
.y8f{bottom:286.410000px;}
.y4e{bottom:288.030000px;}
.y80{bottom:293.250000px;}
.y2f{bottom:301.890000px;}
.ya5{bottom:313.050000px;}
.y68{bottom:315.255000px;}
.y8e{bottom:317.595000px;}
.y4d{bottom:319.215000px;}
.y7f{bottom:324.255000px;}
.y2e{bottom:325.695000px;}
.ya4{bottom:345.495000px;}
.y67{bottom:346.395000px;}
.y8d{bottom:348.555000px;}
.y2d{bottom:349.635000px;}
.y4c{bottom:350.175000px;}
.y7e{bottom:364.395000px;}
.y66{bottom:377.355000px;}
.ya3{bottom:377.895000px;}
.y8c{bottom:379.695000px;}
.y4b{bottom:381.315000px;}
.y2c{bottom:388.335000px;}
.y7d{bottom:395.355000px;}
.y65{bottom:408.495000px;}
.y2b{bottom:409.035000px;}
.ya2{bottom:410.115000px;}
.y8b{bottom:410.655000px;}
.y4a{bottom:412.275000px;}
.y7c{bottom:426.495000px;}
.y2a{bottom:429.735000px;}
.y64{bottom:439.455000px;}
.ya1{bottom:442.515000px;}
.y49{bottom:443.415000px;}
.y29{bottom:450.435000px;}
.y8a{bottom:452.955000px;}
.y7b{bottom:457.455000px;}
.y28{bottom:471.135000px;}
.y48{bottom:474.375000px;}
.ya0{bottom:474.735000px;}
.y63{bottom:479.595000px;}
.y89{bottom:484.095000px;}
.y7a{bottom:488.595000px;}
.y27{bottom:491.835000px;}
.y47{bottom:505.515000px;}
.y9f{bottom:507.135000px;}
.y26{bottom:512.535000px;}
.y88{bottom:515.055000px;}
.y62{bottom:519.555000px;}
.y25{bottom:533.235000px;}
.y46{bottom:536.475000px;}
.y87{bottom:546.015000px;}
.y61{bottom:550.515000px;}
.y24{bottom:553.935000px;}
.y9e{bottom:554.655000px;}
.y45{bottom:567.645000px;}
.y23{bottom:574.665000px;}
.y60{bottom:581.685000px;}
.y86{bottom:588.345000px;}
.y22{bottom:595.365000px;}
.y44{bottom:598.605000px;}
.y9d{bottom:600.765000px;}
.y5f{bottom:612.645000px;}
.y21{bottom:616.065000px;}
.y43{bottom:629.745000px;}
.y85{bottom:630.645000px;}
.y9c{bottom:631.725000px;}
.y20{bottom:636.765000px;}
.y5e{bottom:643.785000px;}
.y1f{bottom:657.465000px;}
.y42{bottom:660.705000px;}
.y84{bottom:661.785000px;}
.y9b{bottom:662.865000px;}
.y5d{bottom:674.745000px;}
.y1e{bottom:678.165000px;}
.y79{bottom:683.745000px;}
.y41{bottom:691.845000px;}
.y83{bottom:692.745000px;}
.y9a{bottom:693.825000px;}
.y1d{bottom:698.865000px;}
.y5c{bottom:705.885000px;}
.y1c{bottom:719.565000px;}
.y40{bottom:722.805000px;}
.y78{bottom:723.885000px;}
.y5b{bottom:736.845000px;}
.y99{bottom:739.905000px;}
.y1b{bottom:740.265000px;}
.y3f{bottom:753.945000px;}
.y77{bottom:754.845000px;}
.y1a{bottom:760.965000px;}
.y5a{bottom:767.985000px;}
.y98{bottom:771.045000px;}
.y19{bottom:781.665000px;}
.y3e{bottom:784.905000px;}
.y76{bottom:785.985000px;}
.y59{bottom:798.945000px;}
.y97{bottom:802.005000px;}
.y18{bottom:802.365000px;}
.y3d{bottom:816.045000px;}
.y75{bottom:816.945000px;}
.y17{bottom:823.110000px;}
.y96{bottom:833.190000px;}
.y58{bottom:839.130000px;}
.y16{bottom:843.810000px;}
.y3c{bottom:847.050000px;}
.y74{bottom:848.130000px;}
.y95{bottom:864.150000px;}
.y57{bottom:870.090000px;}
.y3b{bottom:878.190000px;}
.y73{bottom:879.090000px;}
.y15{bottom:882.690000px;}
.y94{bottom:895.110000px;}
.y56{bottom:901.230000px;}
.y14{bottom:903.390000px;}
.y3a{bottom:909.150000px;}
.y72{bottom:910.230000px;}
.y13{bottom:923.910000px;}
.y55{bottom:932.190000px;}
.y71{bottom:941.190000px;}
.y12{bottom:944.610000px;}
.y39{bottom:948.030000px;}
.y54{bottom:963.330000px;}
.y11{bottom:965.310000px;}
.y38{bottom:971.790000px;}
.y70{bottom:972.330000px;}
.y10{bottom:986.010000px;}
.y53{bottom:994.290000px;}
.y6f{bottom:1003.290000px;}
.yf{bottom:1007.430000px;}
.y37{bottom:1010.670000px;}
.ye{bottom:1031.550000px;}
.y36{bottom:1034.430000px;}
.y9{bottom:1055.670000px;}
.y1{bottom:1071.360000px;}
.h6{height:40.579102px;}
.h7{height:50.273438px;}
.ha{height:50.800781px;}
.hc{height:52.417969px;}
.h8{height:53.709961px;}
.h9{height:59.436914px;}
.h5{height:59.439023px;}
.hb{height:61.043203px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h1{height:84.600000px;}
.h3{height:95.245664px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:385.995000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x7{left:56.520000px;}
.x8{left:70.785000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x12{left:135.035986px;}
.xa{left:158.429986px;}
.x11{left:162.029986px;}
.xf{left:223.049986px;}
.x3{left:224.130000px;}
.xd{left:341.534986px;}
.xe{left:348.014986px;}
.x10{left:380.774986px;}
.xb{left:400.034986px;}
.xc{left:459.074986px;}
.x5{left:610.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:13.440000pt;}
.lsb{letter-spacing:17.920000pt;}
.lse{letter-spacing:48.746667pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.wsc{word-spacing:-64.000000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.wsb{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws5{word-spacing:-8.389120pt;}
.ws2{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-1.245013pt;}
._0{width:1.191680pt;}
._c{width:2.136320pt;}
._f{width:3.305387pt;}
._15{width:4.480000pt;}
._12{width:5.824000pt;}
._d{width:7.424000pt;}
._e{width:8.448000pt;}
._7{width:9.344000pt;}
._8{width:10.368000pt;}
._9{width:12.032000pt;}
._a{width:12.928000pt;}
._4{width:13.917013pt;}
._3{width:15.040000pt;}
._13{width:17.728000pt;}
._10{width:19.520000pt;}
._11{width:20.928000pt;}
._19{width:22.528000pt;}
._1a{width:23.552000pt;}
._1c{width:25.024000pt;}
._1d{width:26.008320pt;}
._b{width:27.584000pt;}
._14{width:28.608000pt;}
._16{width:30.016000pt;}
._18{width:31.040000pt;}
._1b{width:33.664000pt;}
._17{width:34.560000pt;}
._6{width:37.632000pt;}
._5{width:38.720000pt;}
._2{width:58.967680pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y8{bottom:6.400000pt;}
.y7{bottom:25.120000pt;}
.y4{bottom:31.520000pt;}
.yd{bottom:38.080000pt;}
.y6{bottom:43.840000pt;}
.yc{bottom:52.800000pt;}
.y3{bottom:54.880000pt;}
.y5{bottom:62.400000pt;}
.yb{bottom:66.592000pt;}
.ya{bottom:80.352000pt;}
.y52{bottom:105.632000pt;}
.y6e{bottom:114.592000pt;}
.y35{bottom:128.032000pt;}
.y6d{bottom:142.266667pt;}
.y93{bottom:144.186667pt;}
.y51{bottom:146.586667pt;}
.y34{bottom:149.306667pt;}
.y82{bottom:161.786667pt;}
.y6c{bottom:169.786667pt;}
.y33{bottom:170.426667pt;}
.y92{bottom:171.866667pt;}
.y50{bottom:187.546667pt;}
.y6b{bottom:197.466667pt;}
.y91{bottom:199.386667pt;}
.y32{bottom:204.826667pt;}
.y6a{bottom:224.986667pt;}
.y31{bottom:226.106667pt;}
.y90{bottom:227.066667pt;}
.y4f{bottom:228.506667pt;}
.y81{bottom:232.986667pt;}
.y30{bottom:247.226667pt;}
.y69{bottom:252.666667pt;}
.y8f{bottom:254.586667pt;}
.y4e{bottom:256.026667pt;}
.y80{bottom:260.666667pt;}
.y2f{bottom:268.346667pt;}
.ya5{bottom:278.266667pt;}
.y68{bottom:280.226667pt;}
.y8e{bottom:282.306667pt;}
.y4d{bottom:283.746667pt;}
.y7f{bottom:288.226667pt;}
.y2e{bottom:289.506667pt;}
.ya4{bottom:307.106667pt;}
.y67{bottom:307.906667pt;}
.y8d{bottom:309.826667pt;}
.y2d{bottom:310.786667pt;}
.y4c{bottom:311.266667pt;}
.y7e{bottom:323.906667pt;}
.y66{bottom:335.426667pt;}
.ya3{bottom:335.906667pt;}
.y8c{bottom:337.506667pt;}
.y4b{bottom:338.946667pt;}
.y2c{bottom:345.186667pt;}
.y7d{bottom:351.426667pt;}
.y65{bottom:363.106667pt;}
.y2b{bottom:363.586667pt;}
.ya2{bottom:364.546667pt;}
.y8b{bottom:365.026667pt;}
.y4a{bottom:366.466667pt;}
.y7c{bottom:379.106667pt;}
.y2a{bottom:381.986667pt;}
.y64{bottom:390.626667pt;}
.ya1{bottom:393.346667pt;}
.y49{bottom:394.146667pt;}
.y29{bottom:400.386667pt;}
.y8a{bottom:402.626667pt;}
.y7b{bottom:406.626667pt;}
.y28{bottom:418.786667pt;}
.y48{bottom:421.666667pt;}
.ya0{bottom:421.986667pt;}
.y63{bottom:426.306667pt;}
.y89{bottom:430.306667pt;}
.y7a{bottom:434.306667pt;}
.y27{bottom:437.186667pt;}
.y47{bottom:449.346667pt;}
.y9f{bottom:450.786667pt;}
.y26{bottom:455.586667pt;}
.y88{bottom:457.826667pt;}
.y62{bottom:461.826667pt;}
.y25{bottom:473.986667pt;}
.y46{bottom:476.866667pt;}
.y87{bottom:485.346667pt;}
.y61{bottom:489.346667pt;}
.y24{bottom:492.386667pt;}
.y9e{bottom:493.026667pt;}
.y45{bottom:504.573333pt;}
.y23{bottom:510.813333pt;}
.y60{bottom:517.053333pt;}
.y86{bottom:522.973333pt;}
.y22{bottom:529.213333pt;}
.y44{bottom:532.093333pt;}
.y9d{bottom:534.013333pt;}
.y5f{bottom:544.573333pt;}
.y21{bottom:547.613333pt;}
.y43{bottom:559.773333pt;}
.y85{bottom:560.573333pt;}
.y9c{bottom:561.533333pt;}
.y20{bottom:566.013333pt;}
.y5e{bottom:572.253333pt;}
.y1f{bottom:584.413333pt;}
.y42{bottom:587.293333pt;}
.y84{bottom:588.253333pt;}
.y9b{bottom:589.213333pt;}
.y5d{bottom:599.773333pt;}
.y1e{bottom:602.813333pt;}
.y79{bottom:607.773333pt;}
.y41{bottom:614.973333pt;}
.y83{bottom:615.773333pt;}
.y9a{bottom:616.733333pt;}
.y1d{bottom:621.213333pt;}
.y5c{bottom:627.453333pt;}
.y1c{bottom:639.613333pt;}
.y40{bottom:642.493333pt;}
.y78{bottom:643.453333pt;}
.y5b{bottom:654.973333pt;}
.y99{bottom:657.693333pt;}
.y1b{bottom:658.013333pt;}
.y3f{bottom:670.173333pt;}
.y77{bottom:670.973333pt;}
.y1a{bottom:676.413333pt;}
.y5a{bottom:682.653333pt;}
.y98{bottom:685.373333pt;}
.y19{bottom:694.813333pt;}
.y3e{bottom:697.693333pt;}
.y76{bottom:698.653333pt;}
.y59{bottom:710.173333pt;}
.y97{bottom:712.893333pt;}
.y18{bottom:713.213333pt;}
.y3d{bottom:725.373333pt;}
.y75{bottom:726.173333pt;}
.y17{bottom:731.653333pt;}
.y96{bottom:740.613333pt;}
.y58{bottom:745.893333pt;}
.y16{bottom:750.053333pt;}
.y3c{bottom:752.933333pt;}
.y74{bottom:753.893333pt;}
.y95{bottom:768.133333pt;}
.y57{bottom:773.413333pt;}
.y3b{bottom:780.613333pt;}
.y73{bottom:781.413333pt;}
.y15{bottom:784.613333pt;}
.y94{bottom:795.653333pt;}
.y56{bottom:801.093333pt;}
.y14{bottom:803.013333pt;}
.y3a{bottom:808.133333pt;}
.y72{bottom:809.093333pt;}
.y13{bottom:821.253333pt;}
.y55{bottom:828.613333pt;}
.y71{bottom:836.613333pt;}
.y12{bottom:839.653333pt;}
.y39{bottom:842.693333pt;}
.y54{bottom:856.293333pt;}
.y11{bottom:858.053333pt;}
.y38{bottom:863.813333pt;}
.y70{bottom:864.293333pt;}
.y10{bottom:876.453333pt;}
.y53{bottom:883.813333pt;}
.y6f{bottom:891.813333pt;}
.yf{bottom:895.493333pt;}
.y37{bottom:898.373333pt;}
.ye{bottom:916.933333pt;}
.y36{bottom:919.493333pt;}
.y9{bottom:938.373333pt;}
.y1{bottom:952.320000pt;}
.h6{height:36.070312pt;}
.h7{height:44.687500pt;}
.ha{height:45.156250pt;}
.hc{height:46.593750pt;}
.h8{height:47.742188pt;}
.h9{height:52.832812pt;}
.h5{height:52.834688pt;}
.hb{height:54.260625pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h1{height:75.200000pt;}
.h3{height:84.662813pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:343.106667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x7{left:50.240000pt;}
.x8{left:62.920000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x12{left:120.031988pt;}
.xa{left:140.826655pt;}
.x11{left:144.026655pt;}
.xf{left:198.266655pt;}
.x3{left:199.226667pt;}
.xd{left:303.586655pt;}
.xe{left:309.346655pt;}
.x10{left:338.466655pt;}
.xb{left:355.586655pt;}
.xc{left:408.066655pt;}
.x5{left:542.333333pt;}
}




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