
    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_57aba952aee5fec7c13fa038.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_cc1fa415ab2c51807a098c72.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_99d0ccd3c47de0f87e99f5db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v1{vertical-align:26.640000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000600px;}
.ls8{letter-spacing:0.129600px;}
.ls7{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.285000px;}
.ls6{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsb{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls3{letter-spacing:10.200000px;}
.lsc{letter-spacing:19.800000px;}
.ls1{letter-spacing:39.000000px;}
.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;}
}
.ws0{word-spacing:-60.918000px;}
.ws9{word-spacing:-36.102000px;}
.ws6{word-spacing:-22.860000px;}
.ws5{word-spacing:-20.232000px;}
.ws8{word-spacing:-18.546000px;}
.ws3{word-spacing:-16.860000px;}
.ws7{word-spacing:-16.302000px;}
.wsa{word-spacing:-14.820000px;}
.ws4{word-spacing:-14.079000px;}
.ws1{word-spacing:-12.139200px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-39.000000px;}
._1c{margin-left:-19.800000px;}
._1b{margin-left:-11.774600px;}
._3{margin-left:-10.302000px;}
._17{margin-left:-8.977800px;}
._2{margin-left:-6.600000px;}
._b{margin-left:-5.482800px;}
._0{margin-left:-4.244000px;}
._a{margin-left:-2.812000px;}
._6{margin-left:-1.800000px;}
._e{width:1.014000px;}
._5{width:2.016000px;}
._9{width:3.384000px;}
._c{width:5.256000px;}
._14{width:6.408000px;}
._7{width:7.416000px;}
._8{width:8.496000px;}
._11{width:9.930000px;}
._12{width:10.960000px;}
._13{width:12.440000px;}
._18{width:13.480000px;}
._1a{width:14.701400px;}
._15{width:15.768000px;}
._4{width:17.712000px;}
._19{width:19.006000px;}
._10{width:24.476000px;}
._f{width:26.068000px;}
._16{width:38.923200px;}
._d{width:56.923200px;}
.fc1{color:rgb(25,19,20);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y3f{bottom:171.813150px;}
.y1b{bottom:177.363150px;}
.y3e{bottom:188.313150px;}
.y1a{bottom:193.863150px;}
.y3d{bottom:204.813150px;}
.y9b{bottom:206.004600px;}
.y19{bottom:210.363150px;}
.y3c{bottom:221.313150px;}
.y18{bottom:226.863150px;}
.y7d{bottom:227.408550px;}
.y3b{bottom:237.813150px;}
.y9a{bottom:240.204600px;}
.y17{bottom:243.363150px;}
.y7c{bottom:248.708550px;}
.y3a{bottom:254.313150px;}
.y99{bottom:260.004600px;}
.y7b{bottom:270.008550px;}
.y5e{bottom:270.813150px;}
.y39{bottom:276.363150px;}
.y98{bottom:279.804600px;}
.y89{bottom:281.108550px;}
.y16{bottom:282.951600px;}
.y38{bottom:287.313150px;}
.y7a{bottom:291.308550px;}
.y97{bottom:299.604600px;}
.y88{bottom:302.708550px;}
.y37{bottom:303.813150px;}
.y15{bottom:304.551600px;}
.y79{bottom:312.608550px;}
.y5d{bottom:314.812500px;}
.y96{bottom:319.404600px;}
.y36{bottom:320.313150px;}
.y14{bottom:326.151600px;}
.y87{bottom:332.812500px;}
.y78{bottom:333.908550px;}
.y5c{bottom:336.712500px;}
.y35{bottom:336.813150px;}
.y95{bottom:339.204600px;}
.y13{bottom:347.751600px;}
.y77{bottom:355.208550px;}
.y5b{bottom:358.612500px;}
.y34{bottom:358.863150px;}
.y94{bottom:359.004600px;}
.y12{bottom:369.351600px;}
.y33{bottom:375.363150px;}
.y76{bottom:376.508550px;}
.y93{bottom:378.804600px;}
.y5a{bottom:380.062500px;}
.y11{bottom:390.951600px;}
.y32{bottom:391.863150px;}
.y75{bottom:397.808550px;}
.y92{bottom:398.604600px;}
.y59{bottom:401.512500px;}
.y10{bottom:412.551600px;}
.y91{bottom:418.404600px;}
.y74{bottom:419.108550px;}
.y86{bottom:419.212500px;}
.y58{bottom:422.962500px;}
.y31{bottom:432.308550px;}
.yf{bottom:434.151600px;}
.y90{bottom:438.204600px;}
.y73{bottom:440.408550px;}
.y85{bottom:440.812500px;}
.y57{bottom:444.412500px;}
.y30{bottom:453.908550px;}
.ye{bottom:455.751600px;}
.y8f{bottom:458.004600px;}
.y72{bottom:461.708550px;}
.y84{bottom:462.412500px;}
.y56{bottom:465.862500px;}
.y2f{bottom:475.508550px;}
.yd{bottom:477.351600px;}
.y8e{bottom:477.804600px;}
.y71{bottom:483.008550px;}
.y83{bottom:484.012500px;}
.y55{bottom:487.312500px;}
.y2e{bottom:497.108550px;}
.y8d{bottom:497.604600px;}
.yc{bottom:498.951600px;}
.y70{bottom:504.308550px;}
.y82{bottom:505.612500px;}
.y54{bottom:508.762500px;}
.yae{bottom:515.108550px;}
.y8c{bottom:517.404600px;}
.y2d{bottom:518.708550px;}
.yb{bottom:520.551600px;}
.y81{bottom:527.212500px;}
.y53{bottom:530.212500px;}
.yad{bottom:533.108550px;}
.y6f{bottom:534.112500px;}
.y8b{bottom:537.204600px;}
.ya{bottom:542.151600px;}
.y2c{bottom:548.812500px;}
.yac{bottom:551.108550px;}
.y52{bottom:551.662500px;}
.y9{bottom:563.751600px;}
.y8a{bottom:565.508550px;}
.y80{bottom:570.412500px;}
.y51{bottom:573.112500px;}
.y8{bottom:585.351600px;}
.y7f{bottom:592.012500px;}
.y50{bottom:594.562500px;}
.y7{bottom:606.951600px;}
.yab{bottom:610.508550px;}
.y7e{bottom:613.612500px;}
.y4f{bottom:616.012500px;}
.y6e{bottom:618.412500px;}
.yaa{bottom:630.308550px;}
.y2b{bottom:635.212500px;}
.y6{bottom:637.055550px;}
.y4e{bottom:637.462500px;}
.y6d{bottom:639.712500px;}
.ya9{bottom:650.108550px;}
.y2a{bottom:656.812500px;}
.y4d{bottom:658.912500px;}
.y6c{bottom:661.012500px;}
.ya8{bottom:669.908550px;}
.y29{bottom:678.412500px;}
.y4c{bottom:680.362500px;}
.y6b{bottom:682.312500px;}
.ya7{bottom:689.708550px;}
.y28{bottom:700.012500px;}
.y4b{bottom:701.812500px;}
.y6a{bottom:703.612500px;}
.ya6{bottom:709.508550px;}
.y27{bottom:721.612500px;}
.y4a{bottom:723.262500px;}
.y69{bottom:724.912500px;}
.ya5{bottom:729.308550px;}
.y26{bottom:743.212500px;}
.y49{bottom:744.712500px;}
.y5{bottom:745.055550px;}
.y68{bottom:746.212500px;}
.ya4{bottom:749.108550px;}
.y25{bottom:764.812500px;}
.y48{bottom:766.162500px;}
.y67{bottom:767.512500px;}
.ya3{bottom:768.908550px;}
.y24{bottom:786.412500px;}
.y47{bottom:787.612500px;}
.ya2{bottom:788.708550px;}
.y66{bottom:788.812500px;}
.y4{bottom:800.316900px;}
.y23{bottom:808.012500px;}
.ya1{bottom:808.508550px;}
.y46{bottom:809.062500px;}
.y65{bottom:810.112500px;}
.y3{bottom:818.316900px;}
.ya0{bottom:828.308550px;}
.y22{bottom:829.612500px;}
.y45{bottom:830.512500px;}
.y64{bottom:831.412500px;}
.y9f{bottom:848.108550px;}
.y21{bottom:851.212500px;}
.y44{bottom:851.962500px;}
.y63{bottom:852.712500px;}
.y9e{bottom:867.908550px;}
.y20{bottom:872.812500px;}
.y43{bottom:873.412500px;}
.y62{bottom:874.012500px;}
.y9d{bottom:887.708550px;}
.y1f{bottom:894.412500px;}
.y42{bottom:894.862500px;}
.y61{bottom:895.312500px;}
.y1e{bottom:916.012500px;}
.y41{bottom:916.312500px;}
.y60{bottom:916.612500px;}
.y9c{bottom:929.108550px;}
.y1d{bottom:937.612500px;}
.y40{bottom:937.762500px;}
.y5f{bottom:937.912500px;}
.y2{bottom:956.916900px;}
.y1c{bottom:959.212500px;}
.h8{height:34.734375px;}
.ha{height:40.523438px;}
.h9{height:43.523438px;}
.h2{height:46.312500px;}
.hd{height:50.947266px;}
.hb{height:54.996094px;}
.h5{height:56.041992px;}
.h3{height:57.890625px;}
.hc{height:63.679688px;}
.h7{height:69.468750px;}
.h4{height:75.257812px;}
.h6{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035400px;}
.x4{left:129.295200px;}
.x7{left:150.555150px;}
.x8{left:171.814950px;}
.x5{left:182.170350px;}
.x6{left:302.077950px;}
.x1{left:374.348400px;}
.x9{left:574.709400px;}
.x2{left:603.664350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v1{vertical-align:23.680000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000533pt;}
.ls8{letter-spacing:0.115200pt;}
.ls7{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.253333pt;}
.ls6{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsb{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls3{letter-spacing:9.066667pt;}
.lsc{letter-spacing:17.600000pt;}
.ls1{letter-spacing:34.666667pt;}
.ws0{word-spacing:-54.149333pt;}
.ws9{word-spacing:-32.090667pt;}
.ws6{word-spacing:-20.320000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws8{word-spacing:-16.485333pt;}
.ws3{word-spacing:-14.986667pt;}
.ws7{word-spacing:-14.490667pt;}
.wsa{word-spacing:-13.173333pt;}
.ws4{word-spacing:-12.514667pt;}
.ws1{word-spacing:-10.790400pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-34.666667pt;}
._1c{margin-left:-17.600000pt;}
._1b{margin-left:-10.466311pt;}
._3{margin-left:-9.157333pt;}
._17{margin-left:-7.980267pt;}
._2{margin-left:-5.866667pt;}
._b{margin-left:-4.873600pt;}
._0{margin-left:-3.772444pt;}
._a{margin-left:-2.499556pt;}
._6{margin-left:-1.600000pt;}
._e{width:0.901333pt;}
._5{width:1.792000pt;}
._9{width:3.008000pt;}
._c{width:4.672000pt;}
._14{width:5.696000pt;}
._7{width:6.592000pt;}
._8{width:7.552000pt;}
._11{width:8.826667pt;}
._12{width:9.742222pt;}
._13{width:11.057778pt;}
._18{width:11.982222pt;}
._1a{width:13.067911pt;}
._15{width:14.016000pt;}
._4{width:15.744000pt;}
._19{width:16.894222pt;}
._10{width:21.756444pt;}
._f{width:23.171556pt;}
._16{width:34.598400pt;}
._d{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y3f{bottom:152.722800pt;}
.y1b{bottom:157.656133pt;}
.y3e{bottom:167.389467pt;}
.y1a{bottom:172.322800pt;}
.y3d{bottom:182.056133pt;}
.y9b{bottom:183.115200pt;}
.y19{bottom:186.989467pt;}
.y3c{bottom:196.722800pt;}
.y18{bottom:201.656133pt;}
.y7d{bottom:202.140933pt;}
.y3b{bottom:211.389467pt;}
.y9a{bottom:213.515200pt;}
.y17{bottom:216.322800pt;}
.y7c{bottom:221.074267pt;}
.y3a{bottom:226.056133pt;}
.y99{bottom:231.115200pt;}
.y7b{bottom:240.007600pt;}
.y5e{bottom:240.722800pt;}
.y39{bottom:245.656133pt;}
.y98{bottom:248.715200pt;}
.y89{bottom:249.874267pt;}
.y16{bottom:251.512533pt;}
.y38{bottom:255.389467pt;}
.y7a{bottom:258.940933pt;}
.y97{bottom:266.315200pt;}
.y88{bottom:269.074267pt;}
.y37{bottom:270.056133pt;}
.y15{bottom:270.712533pt;}
.y79{bottom:277.874267pt;}
.y5d{bottom:279.833333pt;}
.y96{bottom:283.915200pt;}
.y36{bottom:284.722800pt;}
.y14{bottom:289.912533pt;}
.y87{bottom:295.833333pt;}
.y78{bottom:296.807600pt;}
.y5c{bottom:299.300000pt;}
.y35{bottom:299.389467pt;}
.y95{bottom:301.515200pt;}
.y13{bottom:309.112533pt;}
.y77{bottom:315.740933pt;}
.y5b{bottom:318.766667pt;}
.y34{bottom:318.989467pt;}
.y94{bottom:319.115200pt;}
.y12{bottom:328.312533pt;}
.y33{bottom:333.656133pt;}
.y76{bottom:334.674267pt;}
.y93{bottom:336.715200pt;}
.y5a{bottom:337.833333pt;}
.y11{bottom:347.512533pt;}
.y32{bottom:348.322800pt;}
.y75{bottom:353.607600pt;}
.y92{bottom:354.315200pt;}
.y59{bottom:356.900000pt;}
.y10{bottom:366.712533pt;}
.y91{bottom:371.915200pt;}
.y74{bottom:372.540933pt;}
.y86{bottom:372.633333pt;}
.y58{bottom:375.966667pt;}
.y31{bottom:384.274267pt;}
.yf{bottom:385.912533pt;}
.y90{bottom:389.515200pt;}
.y73{bottom:391.474267pt;}
.y85{bottom:391.833333pt;}
.y57{bottom:395.033333pt;}
.y30{bottom:403.474267pt;}
.ye{bottom:405.112533pt;}
.y8f{bottom:407.115200pt;}
.y72{bottom:410.407600pt;}
.y84{bottom:411.033333pt;}
.y56{bottom:414.100000pt;}
.y2f{bottom:422.674267pt;}
.yd{bottom:424.312533pt;}
.y8e{bottom:424.715200pt;}
.y71{bottom:429.340933pt;}
.y83{bottom:430.233333pt;}
.y55{bottom:433.166667pt;}
.y2e{bottom:441.874267pt;}
.y8d{bottom:442.315200pt;}
.yc{bottom:443.512533pt;}
.y70{bottom:448.274267pt;}
.y82{bottom:449.433333pt;}
.y54{bottom:452.233333pt;}
.yae{bottom:457.874267pt;}
.y8c{bottom:459.915200pt;}
.y2d{bottom:461.074267pt;}
.yb{bottom:462.712533pt;}
.y81{bottom:468.633333pt;}
.y53{bottom:471.300000pt;}
.yad{bottom:473.874267pt;}
.y6f{bottom:474.766667pt;}
.y8b{bottom:477.515200pt;}
.ya{bottom:481.912533pt;}
.y2c{bottom:487.833333pt;}
.yac{bottom:489.874267pt;}
.y52{bottom:490.366667pt;}
.y9{bottom:501.112533pt;}
.y8a{bottom:502.674267pt;}
.y80{bottom:507.033333pt;}
.y51{bottom:509.433333pt;}
.y8{bottom:520.312533pt;}
.y7f{bottom:526.233333pt;}
.y50{bottom:528.500000pt;}
.y7{bottom:539.512533pt;}
.yab{bottom:542.674267pt;}
.y7e{bottom:545.433333pt;}
.y4f{bottom:547.566667pt;}
.y6e{bottom:549.700000pt;}
.yaa{bottom:560.274267pt;}
.y2b{bottom:564.633333pt;}
.y6{bottom:566.271600pt;}
.y4e{bottom:566.633333pt;}
.y6d{bottom:568.633333pt;}
.ya9{bottom:577.874267pt;}
.y2a{bottom:583.833333pt;}
.y4d{bottom:585.700000pt;}
.y6c{bottom:587.566667pt;}
.ya8{bottom:595.474267pt;}
.y29{bottom:603.033333pt;}
.y4c{bottom:604.766667pt;}
.y6b{bottom:606.500000pt;}
.ya7{bottom:613.074267pt;}
.y28{bottom:622.233333pt;}
.y4b{bottom:623.833333pt;}
.y6a{bottom:625.433333pt;}
.ya6{bottom:630.674267pt;}
.y27{bottom:641.433333pt;}
.y4a{bottom:642.900000pt;}
.y69{bottom:644.366667pt;}
.ya5{bottom:648.274267pt;}
.y26{bottom:660.633333pt;}
.y49{bottom:661.966667pt;}
.y5{bottom:662.271600pt;}
.y68{bottom:663.300000pt;}
.ya4{bottom:665.874267pt;}
.y25{bottom:679.833333pt;}
.y48{bottom:681.033333pt;}
.y67{bottom:682.233333pt;}
.ya3{bottom:683.474267pt;}
.y24{bottom:699.033333pt;}
.y47{bottom:700.100000pt;}
.ya2{bottom:701.074267pt;}
.y66{bottom:701.166667pt;}
.y4{bottom:711.392800pt;}
.y23{bottom:718.233333pt;}
.ya1{bottom:718.674267pt;}
.y46{bottom:719.166667pt;}
.y65{bottom:720.100000pt;}
.y3{bottom:727.392800pt;}
.ya0{bottom:736.274267pt;}
.y22{bottom:737.433333pt;}
.y45{bottom:738.233333pt;}
.y64{bottom:739.033333pt;}
.y9f{bottom:753.874267pt;}
.y21{bottom:756.633333pt;}
.y44{bottom:757.300000pt;}
.y63{bottom:757.966667pt;}
.y9e{bottom:771.474267pt;}
.y20{bottom:775.833333pt;}
.y43{bottom:776.366667pt;}
.y62{bottom:776.900000pt;}
.y9d{bottom:789.074267pt;}
.y1f{bottom:795.033333pt;}
.y42{bottom:795.433333pt;}
.y61{bottom:795.833333pt;}
.y1e{bottom:814.233333pt;}
.y41{bottom:814.500000pt;}
.y60{bottom:814.766667pt;}
.y9c{bottom:825.874267pt;}
.y1d{bottom:833.433333pt;}
.y40{bottom:833.566667pt;}
.y5f{bottom:833.700000pt;}
.y2{bottom:850.592800pt;}
.y1c{bottom:852.633333pt;}
.h8{height:30.875000pt;}
.ha{height:36.020833pt;}
.h9{height:38.687500pt;}
.h2{height:41.166667pt;}
.hd{height:45.286458pt;}
.hb{height:48.885417pt;}
.h5{height:49.815104pt;}
.h3{height:51.458333pt;}
.hc{height:56.604167pt;}
.h7{height:61.750000pt;}
.h4{height:66.895833pt;}
.h6{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.031467pt;}
.x4{left:114.929067pt;}
.x7{left:133.826800pt;}
.x8{left:152.724400pt;}
.x5{left:161.929200pt;}
.x6{left:268.513733pt;}
.x1{left:332.754133pt;}
.x9{left:510.852800pt;}
.x2{left:536.590533pt;}
}




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