
    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_9cca0d808832348222bd98b1.woff')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_62afdbb018c1d490e1256f46.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dfe0859c9ffc7fe551f9deb7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_5f77ea90b3770644f040c3e6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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_6f300757e954d057f5d9eaea.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_ca097c0e04a9d8417bf4683e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec1837c01af5cfeea9593d63.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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;}
.lsc{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:11.466720px;}
.ls9{letter-spacing:41.682720px;}
.ls6{letter-spacing:46.002720px;}
.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:-66.240000px;}
.ws4{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws2{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-3.687600px;}
._7{margin-left:-2.645280px;}
._1{margin-left:-1.598400px;}
._0{width:1.022160px;}
._6{width:2.204880px;}
._2{width:3.365040px;}
._5{width:4.500000px;}
._a{width:5.694720px;}
._d{width:6.812640px;}
._f{width:8.209440px;}
._11{width:9.236880px;}
._c{width:10.278720px;}
._b{width:11.892240px;}
._e{width:13.565520px;}
._13{width:16.054080px;}
._9{width:17.103840px;}
._8{width:18.220560px;}
._10{width:20.473200px;}
._14{width:21.877920px;}
._16{width:23.648400px;}
._15{width:24.697440px;}
._17{width:25.988160px;}
._4{width:136.056000px;}
._3{width:636.906000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:35.640000px;}
.yb{bottom:54.180000px;}
.ya{bottom:69.696000px;}
.y9d{bottom:113.076000px;}
.y3d{bottom:116.496000px;}
.y83{bottom:120.996000px;}
.y5d{bottom:123.516000px;}
.y9c{bottom:130.356000px;}
.y3c{bottom:133.776000px;}
.y82{bottom:135.036000px;}
.y5c{bottom:140.796000px;}
.y71{bottom:144.576000px;}
.y9b{bottom:147.636000px;}
.y3b{bottom:151.050000px;}
.y5b{bottom:158.070000px;}
.y70{bottom:161.850000px;}
.y9a{bottom:164.910000px;}
.y3a{bottom:168.330000px;}
.y5a{bottom:175.350000px;}
.y6f{bottom:179.130000px;}
.y99{bottom:182.190000px;}
.y39{bottom:185.610000px;}
.y59{bottom:192.630000px;}
.y6e{bottom:196.410000px;}
.y98{bottom:199.290000px;}
.y38{bottom:202.890000px;}
.y58{bottom:209.910000px;}
.y6d{bottom:213.510000px;}
.y97{bottom:216.570000px;}
.y37{bottom:219.990000px;}
.y57{bottom:227.010000px;}
.y6c{bottom:230.790000px;}
.y96{bottom:233.850000px;}
.y36{bottom:237.270000px;}
.y56{bottom:244.290000px;}
.y6b{bottom:248.070000px;}
.y95{bottom:251.130000px;}
.y35{bottom:254.550000px;}
.y55{bottom:261.570000px;}
.y6a{bottom:265.350000px;}
.y94{bottom:268.410000px;}
.y34{bottom:271.830000px;}
.y54{bottom:278.850000px;}
.y69{bottom:279.390000px;}
.y93{bottom:285.690000px;}
.y33{bottom:289.110000px;}
.y53{bottom:296.130000px;}
.y92{bottom:302.790000px;}
.y32{bottom:306.390000px;}
.y52{bottom:313.410000px;}
.y91{bottom:320.115000px;}
.y31{bottom:323.535000px;}
.y51{bottom:330.555000px;}
.y90{bottom:337.395000px;}
.y30{bottom:340.815000px;}
.y50{bottom:347.835000px;}
.y8f{bottom:354.675000px;}
.y2f{bottom:358.095000px;}
.y4f{bottom:365.115000px;}
.y8e{bottom:371.955000px;}
.y2e{bottom:375.375000px;}
.y4e{bottom:382.395000px;}
.y8d{bottom:389.235000px;}
.y2d{bottom:392.655000px;}
.y4d{bottom:399.675000px;}
.y8c{bottom:406.335000px;}
.y2c{bottom:409.935000px;}
.y4c{bottom:416.955000px;}
.y8b{bottom:423.615000px;}
.y2b{bottom:427.035000px;}
.y4b{bottom:430.815000px;}
.y8a{bottom:440.895000px;}
.y2a{bottom:444.315000px;}
.y81{bottom:453.315000px;}
.y89{bottom:458.175000px;}
.y29{bottom:461.595000px;}
.y80{bottom:470.595000px;}
.y88{bottom:475.455000px;}
.y28{bottom:475.635000px;}
.y7f{bottom:487.875000px;}
.y87{bottom:492.555000px;}
.y27{bottom:496.155000px;}
.y7e{bottom:505.155000px;}
.y86{bottom:509.835000px;}
.y26{bottom:513.255000px;}
.y7d{bottom:522.255000px;}
.y85{bottom:527.115000px;}
.y25{bottom:530.535000px;}
.y7c{bottom:539.535000px;}
.y84{bottom:544.395000px;}
.y24{bottom:547.815000px;}
.y7b{bottom:556.815000px;}
.y68{bottom:561.675000px;}
.y23{bottom:565.095000px;}
.y7a{bottom:574.125000px;}
.y67{bottom:578.985000px;}
.y22{bottom:582.405000px;}
.y79{bottom:591.405000px;}
.y66{bottom:596.085000px;}
.y21{bottom:599.685000px;}
.y78{bottom:608.505000px;}
.y65{bottom:613.365000px;}
.y20{bottom:616.785000px;}
.y77{bottom:625.785000px;}
.y64{bottom:630.645000px;}
.y1f{bottom:634.065000px;}
.y76{bottom:643.065000px;}
.y63{bottom:647.925000px;}
.y1e{bottom:651.345000px;}
.y75{bottom:660.345000px;}
.y62{bottom:665.205000px;}
.y1d{bottom:668.625000px;}
.y74{bottom:677.625000px;}
.y61{bottom:682.485000px;}
.y1c{bottom:685.905000px;}
.y73{bottom:694.905000px;}
.y60{bottom:699.585000px;}
.y1b{bottom:703.185000px;}
.y72{bottom:708.765000px;}
.y5f{bottom:716.865000px;}
.y1a{bottom:720.285000px;}
.y5e{bottom:734.145000px;}
.y19{bottom:737.565000px;}
.y4a{bottom:751.425000px;}
.y18{bottom:754.845000px;}
.y49{bottom:768.705000px;}
.y17{bottom:772.125000px;}
.y48{bottom:785.805000px;}
.y16{bottom:789.405000px;}
.y47{bottom:803.085000px;}
.y15{bottom:806.505000px;}
.y46{bottom:820.410000px;}
.y14{bottom:820.590000px;}
.y45{bottom:837.690000px;}
.y13{bottom:841.650000px;}
.y44{bottom:854.970000px;}
.y12{bottom:860.550000px;}
.y43{bottom:872.250000px;}
.y11{bottom:879.450000px;}
.y42{bottom:889.350000px;}
.y10{bottom:898.530000px;}
.y41{bottom:906.630000px;}
.yf{bottom:917.070000px;}
.y40{bottom:923.910000px;}
.ye{bottom:935.070000px;}
.y3f{bottom:941.190000px;}
.yd{bottom:955.770000px;}
.y3e{bottom:958.470000px;}
.y9{bottom:975.930000px;}
.y8{bottom:994.650000px;}
.y7{bottom:1011.930000px;}
.y6{bottom:1029.930000px;}
.y5{bottom:1046.670000px;}
.y4{bottom:1088.640000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h4{height:43.273477px;}
.h8{height:43.302656px;}
.h7{height:47.965781px;}
.h5{height:48.224531px;}
.h6{height:48.410156px;}
.h3{height:52.136719px;}
.h1{height:53.573906px;}
.h2{height:59.383125px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.035986px;}
.xd{left:116.855986px;}
.x2{left:120.635986px;}
.x20{left:133.595986px;}
.x13{left:135.035986px;}
.x1{left:140.615986px;}
.x21{left:160.589986px;}
.x10{left:162.029986px;}
.x5{left:179.489986px;}
.xc{left:203.249986px;}
.x9{left:213.689986px;}
.xe{left:238.529986px;}
.x15{left:250.229986px;}
.x1a{left:277.229986px;}
.x18{left:280.829986px;}
.x1c{left:292.214986px;}
.xa{left:326.774986px;}
.x16{left:358.994986px;}
.x1e{left:374.834986px;}
.xb{left:384.734986px;}
.x12{left:396.974986px;}
.x7{left:398.774986px;}
.x1f{left:408.134986px;}
.x11{left:411.554986px;}
.x6{left:424.874986px;}
.x1d{left:426.674986px;}
.x3{left:459.074986px;}
.x4{left:531.104986px;}
.x19{left:662.684986px;}
.x1b{left:672.764986px;}
.x17{left:689.729986px;}
.x14{left:751.649986px;}
.xf{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:10.192640pt;}
.ls9{letter-spacing:37.051307pt;}
.ls6{letter-spacing:40.891307pt;}
.ws5{word-spacing:-58.880000pt;}
.ws4{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-3.277867pt;}
._7{margin-left:-2.351360pt;}
._1{margin-left:-1.420800pt;}
._0{width:0.908587pt;}
._6{width:1.959893pt;}
._2{width:2.991147pt;}
._5{width:4.000000pt;}
._a{width:5.061973pt;}
._d{width:6.055680pt;}
._f{width:7.297280pt;}
._11{width:8.210560pt;}
._c{width:9.136640pt;}
._b{width:10.570880pt;}
._e{width:12.058240pt;}
._13{width:14.270293pt;}
._9{width:15.203413pt;}
._8{width:16.196053pt;}
._10{width:18.198400pt;}
._14{width:19.447040pt;}
._16{width:21.020800pt;}
._15{width:21.953280pt;}
._17{width:23.100587pt;}
._4{width:120.938667pt;}
._3{width:566.138667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:31.680000pt;}
.yb{bottom:48.160000pt;}
.ya{bottom:61.952000pt;}
.y9d{bottom:100.512000pt;}
.y3d{bottom:103.552000pt;}
.y83{bottom:107.552000pt;}
.y5d{bottom:109.792000pt;}
.y9c{bottom:115.872000pt;}
.y3c{bottom:118.912000pt;}
.y82{bottom:120.032000pt;}
.y5c{bottom:125.152000pt;}
.y71{bottom:128.512000pt;}
.y9b{bottom:131.232000pt;}
.y3b{bottom:134.266667pt;}
.y5b{bottom:140.506667pt;}
.y70{bottom:143.866667pt;}
.y9a{bottom:146.586667pt;}
.y3a{bottom:149.626667pt;}
.y5a{bottom:155.866667pt;}
.y6f{bottom:159.226667pt;}
.y99{bottom:161.946667pt;}
.y39{bottom:164.986667pt;}
.y59{bottom:171.226667pt;}
.y6e{bottom:174.586667pt;}
.y98{bottom:177.146667pt;}
.y38{bottom:180.346667pt;}
.y58{bottom:186.586667pt;}
.y6d{bottom:189.786667pt;}
.y97{bottom:192.506667pt;}
.y37{bottom:195.546667pt;}
.y57{bottom:201.786667pt;}
.y6c{bottom:205.146667pt;}
.y96{bottom:207.866667pt;}
.y36{bottom:210.906667pt;}
.y56{bottom:217.146667pt;}
.y6b{bottom:220.506667pt;}
.y95{bottom:223.226667pt;}
.y35{bottom:226.266667pt;}
.y55{bottom:232.506667pt;}
.y6a{bottom:235.866667pt;}
.y94{bottom:238.586667pt;}
.y34{bottom:241.626667pt;}
.y54{bottom:247.866667pt;}
.y69{bottom:248.346667pt;}
.y93{bottom:253.946667pt;}
.y33{bottom:256.986667pt;}
.y53{bottom:263.226667pt;}
.y92{bottom:269.146667pt;}
.y32{bottom:272.346667pt;}
.y52{bottom:278.586667pt;}
.y91{bottom:284.546667pt;}
.y31{bottom:287.586667pt;}
.y51{bottom:293.826667pt;}
.y90{bottom:299.906667pt;}
.y30{bottom:302.946667pt;}
.y50{bottom:309.186667pt;}
.y8f{bottom:315.266667pt;}
.y2f{bottom:318.306667pt;}
.y4f{bottom:324.546667pt;}
.y8e{bottom:330.626667pt;}
.y2e{bottom:333.666667pt;}
.y4e{bottom:339.906667pt;}
.y8d{bottom:345.986667pt;}
.y2d{bottom:349.026667pt;}
.y4d{bottom:355.266667pt;}
.y8c{bottom:361.186667pt;}
.y2c{bottom:364.386667pt;}
.y4c{bottom:370.626667pt;}
.y8b{bottom:376.546667pt;}
.y2b{bottom:379.586667pt;}
.y4b{bottom:382.946667pt;}
.y8a{bottom:391.906667pt;}
.y2a{bottom:394.946667pt;}
.y81{bottom:402.946667pt;}
.y89{bottom:407.266667pt;}
.y29{bottom:410.306667pt;}
.y80{bottom:418.306667pt;}
.y88{bottom:422.626667pt;}
.y28{bottom:422.786667pt;}
.y7f{bottom:433.666667pt;}
.y87{bottom:437.826667pt;}
.y27{bottom:441.026667pt;}
.y7e{bottom:449.026667pt;}
.y86{bottom:453.186667pt;}
.y26{bottom:456.226667pt;}
.y7d{bottom:464.226667pt;}
.y85{bottom:468.546667pt;}
.y25{bottom:471.586667pt;}
.y7c{bottom:479.586667pt;}
.y84{bottom:483.906667pt;}
.y24{bottom:486.946667pt;}
.y7b{bottom:494.946667pt;}
.y68{bottom:499.266667pt;}
.y23{bottom:502.306667pt;}
.y7a{bottom:510.333333pt;}
.y67{bottom:514.653333pt;}
.y22{bottom:517.693333pt;}
.y79{bottom:525.693333pt;}
.y66{bottom:529.853333pt;}
.y21{bottom:533.053333pt;}
.y78{bottom:540.893333pt;}
.y65{bottom:545.213333pt;}
.y20{bottom:548.253333pt;}
.y77{bottom:556.253333pt;}
.y64{bottom:560.573333pt;}
.y1f{bottom:563.613333pt;}
.y76{bottom:571.613333pt;}
.y63{bottom:575.933333pt;}
.y1e{bottom:578.973333pt;}
.y75{bottom:586.973333pt;}
.y62{bottom:591.293333pt;}
.y1d{bottom:594.333333pt;}
.y74{bottom:602.333333pt;}
.y61{bottom:606.653333pt;}
.y1c{bottom:609.693333pt;}
.y73{bottom:617.693333pt;}
.y60{bottom:621.853333pt;}
.y1b{bottom:625.053333pt;}
.y72{bottom:630.013333pt;}
.y5f{bottom:637.213333pt;}
.y1a{bottom:640.253333pt;}
.y5e{bottom:652.573333pt;}
.y19{bottom:655.613333pt;}
.y4a{bottom:667.933333pt;}
.y18{bottom:670.973333pt;}
.y49{bottom:683.293333pt;}
.y17{bottom:686.333333pt;}
.y48{bottom:698.493333pt;}
.y16{bottom:701.693333pt;}
.y47{bottom:713.853333pt;}
.y15{bottom:716.893333pt;}
.y46{bottom:729.253333pt;}
.y14{bottom:729.413333pt;}
.y45{bottom:744.613333pt;}
.y13{bottom:748.133333pt;}
.y44{bottom:759.973333pt;}
.y12{bottom:764.933333pt;}
.y43{bottom:775.333333pt;}
.y11{bottom:781.733333pt;}
.y42{bottom:790.533333pt;}
.y10{bottom:798.693333pt;}
.y41{bottom:805.893333pt;}
.yf{bottom:815.173333pt;}
.y40{bottom:821.253333pt;}
.ye{bottom:831.173333pt;}
.y3f{bottom:836.613333pt;}
.yd{bottom:849.573333pt;}
.y3e{bottom:851.973333pt;}
.y9{bottom:867.493333pt;}
.y8{bottom:884.133333pt;}
.y7{bottom:899.493333pt;}
.y6{bottom:915.493333pt;}
.y5{bottom:930.373333pt;}
.y4{bottom:967.680000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h4{height:38.465312pt;}
.h8{height:38.491250pt;}
.h7{height:42.636250pt;}
.h5{height:42.866250pt;}
.h6{height:43.031250pt;}
.h3{height:46.343750pt;}
.h1{height:47.621250pt;}
.h2{height:52.785000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.031988pt;}
.xd{left:103.871988pt;}
.x2{left:107.231988pt;}
.x20{left:118.751988pt;}
.x13{left:120.031988pt;}
.x1{left:124.991988pt;}
.x21{left:142.746655pt;}
.x10{left:144.026655pt;}
.x5{left:159.546655pt;}
.xc{left:180.666655pt;}
.x9{left:189.946655pt;}
.xe{left:212.026655pt;}
.x15{left:222.426655pt;}
.x1a{left:246.426655pt;}
.x18{left:249.626655pt;}
.x1c{left:259.746655pt;}
.xa{left:290.466655pt;}
.x16{left:319.106655pt;}
.x1e{left:333.186655pt;}
.xb{left:341.986655pt;}
.x12{left:352.866655pt;}
.x7{left:354.466655pt;}
.x1f{left:362.786655pt;}
.x11{left:365.826655pt;}
.x6{left:377.666655pt;}
.x1d{left:379.266655pt;}
.x3{left:408.066655pt;}
.x4{left:472.093321pt;}
.x19{left:589.053321pt;}
.x1b{left:598.013321pt;}
.x17{left:613.093321pt;}
.x14{left:668.133321pt;}
.xf{left:720.133321pt;}
}




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