
    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_8a516b6f83853abec9c8c327.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_33fc12fd139ececb162bf788.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_bbb82515eed88083c0892a93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925293;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_f0373e0b02c1dc77a5a1f4b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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);}
.v2{vertical-align:-56.736000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:52.860000px;}
.ls8{letter-spacing:-0.468000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.034560px;}
.ls11{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.936000px;}
.lse{letter-spacing:4.464000px;}
.lsf{letter-spacing:7.344000px;}
.ls4{letter-spacing:13.176000px;}
.ls1{letter-spacing:25.416000px;}
.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;}
}
.ws1{word-spacing:-39.888000px;}
.ws8{word-spacing:-30.960000px;}
.ws4{word-spacing:-30.276000px;}
.ws3{word-spacing:-30.240000px;}
.ws6{word-spacing:-30.024000px;}
.ws7{word-spacing:-29.772000px;}
.ws2{word-spacing:-29.736000px;}
.ws5{word-spacing:-29.556000px;}
.wsc{word-spacing:-21.582720px;}
.wsb{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.160000px;}
.wsa{word-spacing:-19.944000px;}
.wse{word-spacing:-15.228000px;}
.wsd{word-spacing:-15.138000px;}
.wsf{word-spacing:-15.120000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-8.190000px;}
._10{margin-left:-6.039648px;}
._b{margin-left:-3.513408px;}
._6{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.569408px;}
._8{width:2.683488px;}
._4{width:3.852000px;}
._3{width:4.980000px;}
._e{width:6.528000px;}
._d{width:7.704000px;}
._f{width:8.712000px;}
._5{width:12.672000px;}
._7{width:13.872000px;}
._2{width:25.248000px;}
._c{width:64.184160px;}
._a{width:161.689392px;}
._9{width:818.904000px;}
.fc7{color:rgb(0,102,255);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(51,51,204);}
.fc8{color:rgb(51,102,255);}
.fc4{color:rgb(0,204,153);}
.fc3{color:rgb(0,128,128);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,102);}
.fse{font-size:36.000000px;}
.fsd{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs10{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fsf{font-size:84.384000px;}
.fs12{font-size:90.000000px;}
.fs11{font-size:90.144000px;}
.fs8{font-size:95.760000px;}
.fs6{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:599.904000px;}
.y0{bottom:0.000000px;}
.y44{bottom:17.856000px;}
.y6a{bottom:28.224000px;}
.y43{bottom:60.408000px;}
.y69{bottom:60.624000px;}
.ye{bottom:72.972000px;}
.y12{bottom:84.132000px;}
.y42{bottom:91.476000px;}
.y68{bottom:93.024000px;}
.y1a{bottom:101.124000px;}
.y41{bottom:105.876000px;}
.yb{bottom:118.368000px;}
.y67{bottom:125.424000px;}
.y19{bottom:128.160000px;}
.y3b{bottom:136.944000px;}
.y62{bottom:142.884000px;}
.y4a{bottom:148.464000px;}
.ya{bottom:150.405000px;}
.y23{bottom:175.650000px;}
.y9{bottom:182.850000px;}
.y58{bottom:193.350000px;}
.y22{bottom:197.250000px;}
.y40{bottom:213.660000px;}
.y8{bottom:215.250000px;}
.y21{bottom:218.850000px;}
.y5b{bottom:225.075000px;}
.y34{bottom:226.440000px;}
.y46{bottom:233.430000px;}
.y1c{bottom:235.950000px;}
.y57{bottom:244.365000px;}
.y18{bottom:247.245000px;}
.y61{bottom:248.400000px;}
.y5a{bottom:250.275000px;}
.y7{bottom:254.130000px;}
.y33{bottom:260.385000px;}
.y3a{bottom:264.675000px;}
.y60{bottom:270.000000px;}
.y64{bottom:271.290000px;}
.y49{bottom:272.700000px;}
.y32{bottom:286.050000px;}
.y48{bottom:287.100000px;}
.y63{bottom:287.490000px;}
.y5f{bottom:291.600000px;}
.y6{bottom:293.010000px;}
.y47{bottom:301.500000px;}
.y38{bottom:301.935000px;}
.y36{bottom:302.220000px;}
.y29{bottom:303.330000px;}
.y4e{bottom:304.170000px;}
.y1{bottom:307.830000px;}
.y35{bottom:313.020000px;}
.y4d{bottom:318.570000px;}
.y17{bottom:323.790000px;}
.y28{bottom:324.930000px;}
.y1b{bottom:329.505000px;}
.y5{bottom:331.920000px;}
.y37{bottom:339.765000px;}
.y15{bottom:340.845000px;}
.y27{bottom:346.530000px;}
.y4c{bottom:346.755000px;}
.y3f{bottom:356.220000px;}
.y5d{bottom:357.120000px;}
.y14{bottom:357.915000px;}
.y20{bottom:358.305000px;}
.y4b{bottom:361.155000px;}
.y4{bottom:364.320000px;}
.y16{bottom:366.330000px;}
.y26{bottom:368.130000px;}
.y3e{bottom:374.220000px;}
.y31{bottom:375.150000px;}
.y1f{bottom:379.905000px;}
.y24{bottom:380.520000px;}
.y5c{bottom:382.320000px;}
.y55{bottom:384.585000px;}
.y11{bottom:386.565000px;}
.y39{bottom:392.220000px;}
.y30{bottom:399.705000px;}
.y1e{bottom:401.505000px;}
.y3{bottom:403.200000px;}
.y2b{bottom:403.740000px;}
.y54{bottom:413.385000px;}
.y2f{bottom:417.705000px;}
.y10{bottom:418.965000px;}
.y1d{bottom:423.105000px;}
.y52{bottom:427.065000px;}
.y66{bottom:440.130000px;}
.y2e{bottom:441.360000px;}
.y2{bottom:444.090000px;}
.y51{bottom:448.665000px;}
.y2d{bottom:459.360000px;}
.y45{bottom:459.465000px;}
.y13{bottom:459.645000px;}
.yc{bottom:460.050000px;}
.y65{bottom:461.730000px;}
.y25{bottom:462.930000px;}
.y59{bottom:468.930000px;}
.y53{bottom:469.980000px;}
.y50{bottom:470.265000px;}
.y56{bottom:472.860000px;}
.y2a{bottom:475.920000px;}
.yd{bottom:477.105000px;}
.y2c{bottom:477.360000px;}
.yf{bottom:478.590000px;}
.y3d{bottom:484.890000px;}
.y4f{bottom:491.865000px;}
.y5e{bottom:492.990000px;}
.y3c{bottom:502.890000px;}
.h14{height:37.546875px;}
.h13{height:43.554375px;}
.hb{height:47.650430px;}
.h10{height:50.312812px;}
.h17{height:56.320312px;}
.hc{height:57.410156px;}
.hd{height:57.524977px;}
.h11{height:62.327813px;}
.h12{height:62.478000px;}
.h6{height:67.169883px;}
.h9{height:75.093750px;}
.h16{height:75.243937px;}
.h7{height:81.101250px;}
.hf{height:87.859687px;}
.h15{height:88.009875px;}
.h19{height:93.867188px;}
.h18{height:94.017375px;}
.he{height:99.874688px;}
.h8{height:100.024875px;}
.h5{height:112.640625px;}
.h4{height:112.790813px;}
.h3{height:150.187500px;}
.ha{height:152.734688px;}
.h0{height:595.260000px;}
.h1{height:595.500000px;}
.h2{height:625.681125px;}
.w1{width:807.750000px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x9{left:14.868000px;}
.x27{left:23.328000px;}
.x13{left:26.568000px;}
.x4{left:32.004000px;}
.x3{left:36.072000px;}
.x24{left:40.608000px;}
.x5{left:49.068000px;}
.x32{left:50.292000px;}
.x2{left:51.876000px;}
.x1b{left:74.340000px;}
.x1c{left:82.944000px;}
.xa{left:91.404000px;}
.x1{left:95.724000px;}
.xf{left:116.892000px;}
.x2b{left:128.772000px;}
.x15{left:151.050000px;}
.x21{left:159.480000px;}
.xd{left:167.910000px;}
.xb{left:202.065000px;}
.x28{left:227.550000px;}
.x2d{left:229.500000px;}
.x2c{left:234.000000px;}
.x23{left:235.980000px;}
.x30{left:239.370000px;}
.x20{left:253.080000px;}
.x2e{left:259.380000px;}
.x1a{left:270.180000px;}
.x31{left:271.230000px;}
.x2f{left:287.250000px;}
.x16{left:304.095000px;}
.xc{left:338.220000px;}
.x26{left:372.675000px;}
.x12{left:389.235000px;}
.x25{left:400.395000px;}
.x29{left:417.030000px;}
.x10{left:448.665000px;}
.x22{left:465.735000px;}
.x2a{left:475.095000px;}
.x6{left:482.865000px;}
.x11{left:525.390000px;}
.x14{left:559.545000px;}
.xe{left:601.890000px;}
.x7{left:619.020000px;}
.x18{left:627.405000px;}
.x1f{left:635.835000px;}
.x1e{left:644.475000px;}
.x1d{left:661.350000px;}
.x19{left:678.420000px;}
.x17{left:712.365000px;}
@media print{
.v2{vertical-align:-50.432000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:46.986667pt;}
.ls8{letter-spacing:-0.416000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.030720pt;}
.ls11{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.832000pt;}
.lse{letter-spacing:3.968000pt;}
.lsf{letter-spacing:6.528000pt;}
.ls4{letter-spacing:11.712000pt;}
.ls1{letter-spacing:22.592000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws8{word-spacing:-27.520000pt;}
.ws4{word-spacing:-26.912000pt;}
.ws3{word-spacing:-26.880000pt;}
.ws6{word-spacing:-26.688000pt;}
.ws7{word-spacing:-26.464000pt;}
.ws2{word-spacing:-26.432000pt;}
.ws5{word-spacing:-26.272000pt;}
.wsc{word-spacing:-19.184640pt;}
.wsb{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.920000pt;}
.wsa{word-spacing:-17.728000pt;}
.wse{word-spacing:-13.536000pt;}
.wsd{word-spacing:-13.456000pt;}
.wsf{word-spacing:-13.440000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-7.280000pt;}
._10{margin-left:-5.368576pt;}
._b{margin-left:-3.123029pt;}
._6{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:1.395029pt;}
._8{width:2.385323pt;}
._4{width:3.424000pt;}
._3{width:4.426667pt;}
._e{width:5.802667pt;}
._d{width:6.848000pt;}
._f{width:7.744000pt;}
._5{width:11.264000pt;}
._7{width:12.330667pt;}
._2{width:22.442667pt;}
._c{width:57.052587pt;}
._a{width:143.723904pt;}
._9{width:727.914667pt;}
.fse{font-size:32.000000pt;}
.fsd{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs10{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fsf{font-size:75.008000pt;}
.fs12{font-size:80.000000pt;}
.fs11{font-size:80.128000pt;}
.fs8{font-size:85.120000pt;}
.fs6{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:533.248000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:15.872000pt;}
.y6a{bottom:25.088000pt;}
.y43{bottom:53.696000pt;}
.y69{bottom:53.888000pt;}
.ye{bottom:64.864000pt;}
.y12{bottom:74.784000pt;}
.y42{bottom:81.312000pt;}
.y68{bottom:82.688000pt;}
.y1a{bottom:89.888000pt;}
.y41{bottom:94.112000pt;}
.yb{bottom:105.216000pt;}
.y67{bottom:111.488000pt;}
.y19{bottom:113.920000pt;}
.y3b{bottom:121.728000pt;}
.y62{bottom:127.008000pt;}
.y4a{bottom:131.968000pt;}
.ya{bottom:133.693333pt;}
.y23{bottom:156.133333pt;}
.y9{bottom:162.533333pt;}
.y58{bottom:171.866667pt;}
.y22{bottom:175.333333pt;}
.y40{bottom:189.920000pt;}
.y8{bottom:191.333333pt;}
.y21{bottom:194.533333pt;}
.y5b{bottom:200.066667pt;}
.y34{bottom:201.280000pt;}
.y46{bottom:207.493333pt;}
.y1c{bottom:209.733333pt;}
.y57{bottom:217.213333pt;}
.y18{bottom:219.773333pt;}
.y61{bottom:220.800000pt;}
.y5a{bottom:222.466667pt;}
.y7{bottom:225.893333pt;}
.y33{bottom:231.453333pt;}
.y3a{bottom:235.266667pt;}
.y60{bottom:240.000000pt;}
.y64{bottom:241.146667pt;}
.y49{bottom:242.400000pt;}
.y32{bottom:254.266667pt;}
.y48{bottom:255.200000pt;}
.y63{bottom:255.546667pt;}
.y5f{bottom:259.200000pt;}
.y6{bottom:260.453333pt;}
.y47{bottom:268.000000pt;}
.y38{bottom:268.386667pt;}
.y36{bottom:268.640000pt;}
.y29{bottom:269.626667pt;}
.y4e{bottom:270.373333pt;}
.y1{bottom:273.626667pt;}
.y35{bottom:278.240000pt;}
.y4d{bottom:283.173333pt;}
.y17{bottom:287.813333pt;}
.y28{bottom:288.826667pt;}
.y1b{bottom:292.893333pt;}
.y5{bottom:295.040000pt;}
.y37{bottom:302.013333pt;}
.y15{bottom:302.973333pt;}
.y27{bottom:308.026667pt;}
.y4c{bottom:308.226667pt;}
.y3f{bottom:316.640000pt;}
.y5d{bottom:317.440000pt;}
.y14{bottom:318.146667pt;}
.y20{bottom:318.493333pt;}
.y4b{bottom:321.026667pt;}
.y4{bottom:323.840000pt;}
.y16{bottom:325.626667pt;}
.y26{bottom:327.226667pt;}
.y3e{bottom:332.640000pt;}
.y31{bottom:333.466667pt;}
.y1f{bottom:337.693333pt;}
.y24{bottom:338.240000pt;}
.y5c{bottom:339.840000pt;}
.y55{bottom:341.853333pt;}
.y11{bottom:343.613333pt;}
.y39{bottom:348.640000pt;}
.y30{bottom:355.293333pt;}
.y1e{bottom:356.893333pt;}
.y3{bottom:358.400000pt;}
.y2b{bottom:358.880000pt;}
.y54{bottom:367.453333pt;}
.y2f{bottom:371.293333pt;}
.y10{bottom:372.413333pt;}
.y1d{bottom:376.093333pt;}
.y52{bottom:379.613333pt;}
.y66{bottom:391.226667pt;}
.y2e{bottom:392.320000pt;}
.y2{bottom:394.746667pt;}
.y51{bottom:398.813333pt;}
.y2d{bottom:408.320000pt;}
.y45{bottom:408.413333pt;}
.y13{bottom:408.573333pt;}
.yc{bottom:408.933333pt;}
.y65{bottom:410.426667pt;}
.y25{bottom:411.493333pt;}
.y59{bottom:416.826667pt;}
.y53{bottom:417.760000pt;}
.y50{bottom:418.013333pt;}
.y56{bottom:420.320000pt;}
.y2a{bottom:423.040000pt;}
.yd{bottom:424.093333pt;}
.y2c{bottom:424.320000pt;}
.yf{bottom:425.413333pt;}
.y3d{bottom:431.013333pt;}
.y4f{bottom:437.213333pt;}
.y5e{bottom:438.213333pt;}
.y3c{bottom:447.013333pt;}
.h14{height:33.375000pt;}
.h13{height:38.715000pt;}
.hb{height:42.355937pt;}
.h10{height:44.722500pt;}
.h17{height:50.062500pt;}
.hc{height:51.031250pt;}
.hd{height:51.133312pt;}
.h11{height:55.402500pt;}
.h12{height:55.536000pt;}
.h6{height:59.706562pt;}
.h9{height:66.750000pt;}
.h16{height:66.883500pt;}
.h7{height:72.090000pt;}
.hf{height:78.097500pt;}
.h15{height:78.231000pt;}
.h19{height:83.437500pt;}
.h18{height:83.571000pt;}
.he{height:88.777500pt;}
.h8{height:88.911000pt;}
.h5{height:100.125000pt;}
.h4{height:100.258500pt;}
.h3{height:133.500000pt;}
.ha{height:135.764167pt;}
.h0{height:529.120000pt;}
.h1{height:529.333333pt;}
.h2{height:556.161000pt;}
.w1{width:718.000000pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x9{left:13.216000pt;}
.x27{left:20.736000pt;}
.x13{left:23.616000pt;}
.x4{left:28.448000pt;}
.x3{left:32.064000pt;}
.x24{left:36.096000pt;}
.x5{left:43.616000pt;}
.x32{left:44.704000pt;}
.x2{left:46.112000pt;}
.x1b{left:66.080000pt;}
.x1c{left:73.728000pt;}
.xa{left:81.248000pt;}
.x1{left:85.088000pt;}
.xf{left:103.904000pt;}
.x2b{left:114.464000pt;}
.x15{left:134.266667pt;}
.x21{left:141.760000pt;}
.xd{left:149.253333pt;}
.xb{left:179.613333pt;}
.x28{left:202.266667pt;}
.x2d{left:204.000000pt;}
.x2c{left:208.000000pt;}
.x23{left:209.760000pt;}
.x30{left:212.773333pt;}
.x20{left:224.960000pt;}
.x2e{left:230.560000pt;}
.x1a{left:240.160000pt;}
.x31{left:241.093333pt;}
.x2f{left:255.333333pt;}
.x16{left:270.306667pt;}
.xc{left:300.640000pt;}
.x26{left:331.266667pt;}
.x12{left:345.986667pt;}
.x25{left:355.906667pt;}
.x29{left:370.693333pt;}
.x10{left:398.813333pt;}
.x22{left:413.986667pt;}
.x2a{left:422.306667pt;}
.x6{left:429.213333pt;}
.x11{left:467.013333pt;}
.x14{left:497.373333pt;}
.xe{left:535.013333pt;}
.x7{left:550.240000pt;}
.x18{left:557.693333pt;}
.x1f{left:565.186667pt;}
.x1e{left:572.866667pt;}
.x1d{left:587.866667pt;}
.x19{left:603.040000pt;}
.x17{left:633.213333pt;}
}




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