
    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_ea1afe2ffce4639c22aaa898.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9695598a0b5f856d3886b099.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8337b477d497be2e905507d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_9c005a6fc8a52ffaaab9002e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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;}
.m3{transform:matrix(-0.004363,-0.249962,0.249962,-0.004363,0,0);-ms-transform:matrix(-0.004363,-0.249962,0.249962,-0.004363,0,0);-webkit-transform:matrix(-0.004363,-0.249962,0.249962,-0.004363,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-35.550000px;}
.v2{vertical-align:-33.672000px;}
.v3{vertical-align:-26.532000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.041353px;}
.ls8{letter-spacing:0.041458px;}
.lsa{letter-spacing:0.080924px;}
.ls5{letter-spacing:0.088316px;}
.lse{letter-spacing:0.248794px;}
.lsf{letter-spacing:0.248898px;}
.lsd{letter-spacing:0.251935px;}
.ls4{letter-spacing:0.254793px;}
.ls9{letter-spacing:0.256290px;}
.ls7{letter-spacing:0.262290px;}
.ls6{letter-spacing:0.265222px;}
.lsb{letter-spacing:0.265326px;}
.ls10{letter-spacing:0.322026px;}
.ls12{letter-spacing:0.328026px;}
.ls11{letter-spacing:0.360234px;}
.ls1{letter-spacing:59.099304px;}
.ls2{letter-spacing:59.105304px;}
.ls3{letter-spacing:67.747200px;}
.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;}
}
.ws2{word-spacing:-49.845042px;}
.ws6{word-spacing:-33.621840px;}
.ws3{word-spacing:-33.261606px;}
.ws7{word-spacing:-29.916000px;}
.ws4{word-spacing:-26.570394px;}
.ws5{word-spacing:-16.629972px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:36.621420px;}
._6{margin-left:-22.619304px;}
._7{margin-left:-15.600936px;}
._a{margin-left:-13.316004px;}
._e{margin-left:-11.920992px;}
._8{margin-left:-10.500630px;}
._2{margin-left:-8.765694px;}
._5{margin-left:-7.564914px;}
._4{margin-left:-6.484212px;}
._0{margin-left:-4.683042px;}
._9{margin-left:-2.968680px;}
._3{margin-left:-1.080702px;}
._1{width:1.200780px;}
._b{width:3.086028px;}
._d{width:4.102068px;}
._c{width:5.281914px;}
.fc2{color:rgb(30,144,255);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:43.200000px;}
.fs4{font-size:54.084000px;}
.fs7{font-size:60.036000px;}
.fs2{font-size:89.970000px;}
.fs6{font-size:95.922000px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:120.078000px;}
.fs3{font-size:179.946000px;}
.fs9{font-size:192.018000px;}
.fs1{font-size:300.018000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ya{bottom:44.136000px;}
.y31{bottom:48.175500px;}
.y60{bottom:49.705500px;}
.yb{bottom:62.505000px;}
.y9a{bottom:64.162500px;}
.y8b{bottom:75.558000px;}
.y30{bottom:80.703000px;}
.y5f{bottom:81.468000px;}
.y71{bottom:84.997500px;}
.y9{bottom:91.545000px;}
.y50{bottom:98.518500px;}
.y5e{bottom:111.274500px;}
.y2f{bottom:117.780000px;}
.y8a{bottom:120.714000px;}
.y91{bottom:122.415000px;}
.y7c{bottom:129.600000px;}
.y70{bottom:130.153500px;}
.y4f{bottom:139.338000px;}
.y53{bottom:139.422000px;}
.y81{bottom:150.477000px;}
.y5d{bottom:152.094000px;}
.y19{bottom:154.815000px;}
.y2e{bottom:157.366500px;}
.y28{bottom:162.000000px;}
.y90{bottom:163.233000px;}
.y89{bottom:165.870000px;}
.y7b{bottom:170.419500px;}
.y6f{bottom:175.309500px;}
.y4e{bottom:176.074500px;}
.y52{bottom:180.241500px;}
.y34{bottom:183.727500px;}
.y35{bottom:184.026000px;}
.y98{bottom:184.195500px;}
.y36{bottom:184.239000px;}
.y37{bottom:184.536000px;}
.y5c{bottom:184.578000px;}
.y3e{bottom:188.830500px;}
.y27{bottom:194.400000px;}
.y18{bottom:195.633000px;}
.y2d{bottom:196.951500px;}
.y8f{bottom:208.389000px;}
.y88{bottom:215.277000px;}
.y7a{bottom:215.575500px;}
.y4d{bottom:216.894000px;}
.y6e{bottom:220.465500px;}
.y3d{bottom:221.230500px;}
.y4a{bottom:221.826000px;}
.y43{bottom:223.782000px;}
.y5b{bottom:225.397500px;}
.y26{bottom:226.800000px;}
.y97{bottom:233.604000px;}
.y17{bottom:236.622000px;}
.y80{bottom:240.789000px;}
.y2c{bottom:245.424000px;}
.y8e{bottom:249.378000px;}
.y58{bottom:253.630500px;}
.y49{bottom:254.226000px;}
.y79{bottom:256.479000px;}
.y5a{bottom:257.883000px;}
.y25{bottom:259.200000px;}
.y87{bottom:260.433000px;}
.y3c{bottom:262.050000px;}
.y42{bottom:268.938000px;}
.y6d{bottom:269.872500px;}
.y16{bottom:277.441500px;}
.y7f{bottom:281.694000px;}
.y96{bottom:283.011000px;}
.y64{bottom:287.349000px;}
.y48{bottom:288.582000px;}
.y8d{bottom:290.197500px;}
.y8{bottom:292.111500px;}
.y57{bottom:294.450000px;}
.y78{bottom:297.382500px;}
.y59{bottom:298.701000px;}
.y4c{bottom:298.786500px;}
.y24{bottom:300.019500px;}
.y2b{bottom:302.995500px;}
.y3b{bottom:307.204500px;}
.y86{bottom:309.841500px;}
.y6c{bottom:315.028500px;}
.y41{bottom:318.345000px;}
.y15{bottom:322.683000px;}
.y1e{bottom:326.850000px;}
.y8c{bottom:326.934000px;}
.y63{bottom:328.167000px;}
.y95{bottom:328.252500px;}
.y56{bottom:331.186500px;}
.y47{bottom:333.738000px;}
.y23{bottom:336.756000px;}
.y77{bottom:338.287500px;}
.y4b{bottom:339.604500px;}
.y84{bottom:343.857000px;}
.y3a{bottom:343.942500px;}
.y2a{bottom:352.404000px;}
.y85{bottom:354.997500px;}
.y6b{bottom:360.184500px;}
.y14{bottom:363.501000px;}
.y1d{bottom:363.586500px;}
.y7e{bottom:367.753500px;}
.y94{bottom:369.072000px;}
.y62{bottom:369.156000px;}
.y55{bottom:372.004500px;}
.y7{bottom:373.111500px;}
.y46{bottom:374.641500px;}
.y39{bottom:376.342500px;}
.y22{bottom:377.575500px;}
.y83{bottom:380.593500px;}
.y76{bottom:383.443500px;}
.y6a{bottom:396.922500px;}
.y29{bottom:401.811000px;}
.y1c{bottom:404.404500px;}
.y13{bottom:404.490000px;}
.y40{bottom:408.657000px;}
.y54{bottom:408.742500px;}
.y61{bottom:409.975500px;}
.y7d{bottom:412.909500px;}
.y93{bottom:414.312000px;}
.y38{bottom:417.160500px;}
.y21{bottom:418.564500px;}
.y45{bottom:419.797500px;}
.y82{bottom:421.413000px;}
.ye{bottom:424.347000px;}
.y75{bottom:428.599500px;}
.y69{bottom:429.322500px;}
.y12{bottom:445.309500px;}
.y9b{bottom:447.562500px;}
.y1b{bottom:449.560500px;}
.y3f{bottom:453.813000px;}
.y92{bottom:455.131500px;}
.y33{bottom:458.149500px;}
.y20{bottom:459.382500px;}
.y44{bottom:460.318500px;}
.y68{bottom:470.140500px;}
.y74{bottom:473.755500px;}
.yd{bottom:481.918500px;}
.y11{bottom:494.716500px;}
.y1a{bottom:498.969000px;}
.y1f{bottom:499.905000px;}
.y67{bottom:510.661500px;}
.y6{bottom:513.255000px;}
.y65{bottom:514.531500px;}
.y73{bottom:514.744500px;}
.y99{bottom:524.013000px;}
.yc{bottom:539.490000px;}
.y5{bottom:545.655000px;}
.y10{bottom:548.377500px;}
.y72{bottom:555.562500px;}
.y66{bottom:559.134000px;}
.y4{bottom:593.065500px;}
.y3{bottom:625.465500px;}
.y51{bottom:628.951500px;}
.y2{bottom:657.865500px;}
.yf{bottom:694.815000px;}
.y32{bottom:780.322500px;}
.hb{height:43.348676px;}
.hd{height:43.502648px;}
.h10{height:43.737164px;}
.he{height:43.818250px;}
.hf{height:43.825690px;}
.h7{height:51.928699px;}
.ha{height:51.934699px;}
.h9{height:53.800699px;}
.h8{height:53.806699px;}
.h4{height:65.500620px;}
.hc{height:69.880676px;}
.h11{height:78.257812px;}
.h12{height:78.679688px;}
.h2{height:87.420067px;}
.h5{height:87.478699px;}
.h6{height:131.005608px;}
.h13{height:139.138043px;}
.h3{height:218.421308px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x0{left:0.000000px;}
.x1{left:85.336500px;}
.x4{left:117.949500px;}
.x3{left:319.323000px;}
.x10{left:320.386500px;}
.xd{left:327.486000px;}
.x5{left:344.791500px;}
.x11{left:345.897000px;}
.x6{left:370.303500px;}
.x12{left:371.409000px;}
.x7{left:395.815500px;}
.xe{left:421.327500px;}
.x14{left:450.156000px;}
.x15{left:594.595500px;}
.x8{left:787.422000px;}
.xf{left:1121.202000px;}
.x13{left:1147.266000px;}
.x2{left:1352.424000px;}
.x9{left:1398.514500px;}
.xa{left:1415.268000px;}
.xb{left:1428.747000px;}
.xc{left:1445.499000px;}
@media print{
.v1{vertical-align:-31.600000pt;}
.v2{vertical-align:-29.930667pt;}
.v3{vertical-align:-23.584000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.036759pt;}
.ls8{letter-spacing:0.036852pt;}
.lsa{letter-spacing:0.071932pt;}
.ls5{letter-spacing:0.078503pt;}
.lse{letter-spacing:0.221150pt;}
.lsf{letter-spacing:0.221243pt;}
.lsd{letter-spacing:0.223942pt;}
.ls4{letter-spacing:0.226482pt;}
.ls9{letter-spacing:0.227814pt;}
.ls7{letter-spacing:0.233146pt;}
.ls6{letter-spacing:0.235752pt;}
.lsb{letter-spacing:0.235846pt;}
.ls10{letter-spacing:0.286245pt;}
.ls12{letter-spacing:0.291579pt;}
.ls11{letter-spacing:0.320208pt;}
.ls1{letter-spacing:52.532715pt;}
.ls2{letter-spacing:52.538048pt;}
.ls3{letter-spacing:60.219733pt;}
.ws2{word-spacing:-44.306704pt;}
.ws6{word-spacing:-29.886080pt;}
.ws3{word-spacing:-29.565872pt;}
.ws7{word-spacing:-26.592000pt;}
.ws4{word-spacing:-23.618128pt;}
.ws5{word-spacing:-14.782197pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:32.552373pt;}
._6{margin-left:-20.106048pt;}
._7{margin-left:-13.867499pt;}
._a{margin-left:-11.836448pt;}
._e{margin-left:-10.596437pt;}
._8{margin-left:-9.333893pt;}
._2{margin-left:-7.791728pt;}
._5{margin-left:-6.724368pt;}
._4{margin-left:-5.763744pt;}
._0{margin-left:-4.162704pt;}
._9{margin-left:-2.638827pt;}
._3{margin-left:-0.960624pt;}
._1{width:1.067360pt;}
._b{width:2.743136pt;}
._d{width:3.646283pt;}
._c{width:4.695035pt;}
.fs5{font-size:38.400000pt;}
.fs4{font-size:48.074667pt;}
.fs7{font-size:53.365333pt;}
.fs2{font-size:79.973333pt;}
.fs6{font-size:85.264000pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:106.736000pt;}
.fs3{font-size:159.952000pt;}
.fs9{font-size:170.682667pt;}
.fs1{font-size:266.682667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ya{bottom:39.232000pt;}
.y31{bottom:42.822667pt;}
.y60{bottom:44.182667pt;}
.yb{bottom:55.560000pt;}
.y9a{bottom:57.033333pt;}
.y8b{bottom:67.162667pt;}
.y30{bottom:71.736000pt;}
.y5f{bottom:72.416000pt;}
.y71{bottom:75.553333pt;}
.y9{bottom:81.373333pt;}
.y50{bottom:87.572000pt;}
.y5e{bottom:98.910667pt;}
.y2f{bottom:104.693333pt;}
.y8a{bottom:107.301333pt;}
.y91{bottom:108.813333pt;}
.y7c{bottom:115.200000pt;}
.y70{bottom:115.692000pt;}
.y4f{bottom:123.856000pt;}
.y53{bottom:123.930667pt;}
.y81{bottom:133.757333pt;}
.y5d{bottom:135.194667pt;}
.y19{bottom:137.613333pt;}
.y2e{bottom:139.881333pt;}
.y28{bottom:144.000000pt;}
.y90{bottom:145.096000pt;}
.y89{bottom:147.440000pt;}
.y7b{bottom:151.484000pt;}
.y6f{bottom:155.830667pt;}
.y4e{bottom:156.510667pt;}
.y52{bottom:160.214667pt;}
.y34{bottom:163.313333pt;}
.y35{bottom:163.578667pt;}
.y98{bottom:163.729333pt;}
.y36{bottom:163.768000pt;}
.y37{bottom:164.032000pt;}
.y5c{bottom:164.069333pt;}
.y3e{bottom:167.849333pt;}
.y27{bottom:172.800000pt;}
.y18{bottom:173.896000pt;}
.y2d{bottom:175.068000pt;}
.y8f{bottom:185.234667pt;}
.y88{bottom:191.357333pt;}
.y7a{bottom:191.622667pt;}
.y4d{bottom:192.794667pt;}
.y6e{bottom:195.969333pt;}
.y3d{bottom:196.649333pt;}
.y4a{bottom:197.178667pt;}
.y43{bottom:198.917333pt;}
.y5b{bottom:200.353333pt;}
.y26{bottom:201.600000pt;}
.y97{bottom:207.648000pt;}
.y17{bottom:210.330667pt;}
.y80{bottom:214.034667pt;}
.y2c{bottom:218.154667pt;}
.y8e{bottom:221.669333pt;}
.y58{bottom:225.449333pt;}
.y49{bottom:225.978667pt;}
.y79{bottom:227.981333pt;}
.y5a{bottom:229.229333pt;}
.y25{bottom:230.400000pt;}
.y87{bottom:231.496000pt;}
.y3c{bottom:232.933333pt;}
.y42{bottom:239.056000pt;}
.y6d{bottom:239.886667pt;}
.y16{bottom:246.614667pt;}
.y7f{bottom:250.394667pt;}
.y96{bottom:251.565333pt;}
.y64{bottom:255.421333pt;}
.y48{bottom:256.517333pt;}
.y8d{bottom:257.953333pt;}
.y8{bottom:259.654667pt;}
.y57{bottom:261.733333pt;}
.y78{bottom:264.340000pt;}
.y59{bottom:265.512000pt;}
.y4c{bottom:265.588000pt;}
.y24{bottom:266.684000pt;}
.y2b{bottom:269.329333pt;}
.y3b{bottom:273.070667pt;}
.y86{bottom:275.414667pt;}
.y6c{bottom:280.025333pt;}
.y41{bottom:282.973333pt;}
.y15{bottom:286.829333pt;}
.y1e{bottom:290.533333pt;}
.y8c{bottom:290.608000pt;}
.y63{bottom:291.704000pt;}
.y95{bottom:291.780000pt;}
.y56{bottom:294.388000pt;}
.y47{bottom:296.656000pt;}
.y23{bottom:299.338667pt;}
.y77{bottom:300.700000pt;}
.y4b{bottom:301.870667pt;}
.y84{bottom:305.650667pt;}
.y3a{bottom:305.726667pt;}
.y2a{bottom:313.248000pt;}
.y85{bottom:315.553333pt;}
.y6b{bottom:320.164000pt;}
.y14{bottom:323.112000pt;}
.y1d{bottom:323.188000pt;}
.y7e{bottom:326.892000pt;}
.y94{bottom:328.064000pt;}
.y62{bottom:328.138667pt;}
.y55{bottom:330.670667pt;}
.y7{bottom:331.654667pt;}
.y46{bottom:333.014667pt;}
.y39{bottom:334.526667pt;}
.y22{bottom:335.622667pt;}
.y83{bottom:338.305333pt;}
.y76{bottom:340.838667pt;}
.y6a{bottom:352.820000pt;}
.y29{bottom:357.165333pt;}
.y1c{bottom:359.470667pt;}
.y13{bottom:359.546667pt;}
.y40{bottom:363.250667pt;}
.y54{bottom:363.326667pt;}
.y61{bottom:364.422667pt;}
.y7d{bottom:367.030667pt;}
.y93{bottom:368.277333pt;}
.y38{bottom:370.809333pt;}
.y21{bottom:372.057333pt;}
.y45{bottom:373.153333pt;}
.y82{bottom:374.589333pt;}
.ye{bottom:377.197333pt;}
.y75{bottom:380.977333pt;}
.y69{bottom:381.620000pt;}
.y12{bottom:395.830667pt;}
.y9b{bottom:397.833333pt;}
.y1b{bottom:399.609333pt;}
.y3f{bottom:403.389333pt;}
.y92{bottom:404.561333pt;}
.y33{bottom:407.244000pt;}
.y20{bottom:408.340000pt;}
.y44{bottom:409.172000pt;}
.y68{bottom:417.902667pt;}
.y74{bottom:421.116000pt;}
.yd{bottom:428.372000pt;}
.y11{bottom:439.748000pt;}
.y1a{bottom:443.528000pt;}
.y1f{bottom:444.360000pt;}
.y67{bottom:453.921333pt;}
.y6{bottom:456.226667pt;}
.y65{bottom:457.361333pt;}
.y73{bottom:457.550667pt;}
.y99{bottom:465.789333pt;}
.yc{bottom:479.546667pt;}
.y5{bottom:485.026667pt;}
.y10{bottom:487.446667pt;}
.y72{bottom:493.833333pt;}
.y66{bottom:497.008000pt;}
.y4{bottom:527.169333pt;}
.y3{bottom:555.969333pt;}
.y51{bottom:559.068000pt;}
.y2{bottom:584.769333pt;}
.yf{bottom:617.613333pt;}
.y32{bottom:693.620000pt;}
.hb{height:38.532156pt;}
.hd{height:38.669021pt;}
.h10{height:38.877479pt;}
.he{height:38.949555pt;}
.hf{height:38.956169pt;}
.h7{height:46.158844pt;}
.ha{height:46.164177pt;}
.h9{height:47.822844pt;}
.h8{height:47.828177pt;}
.h4{height:58.222773pt;}
.hc{height:62.116156pt;}
.h11{height:69.562500pt;}
.h12{height:69.937500pt;}
.h2{height:77.706727pt;}
.h5{height:77.758844pt;}
.h6{height:116.449430pt;}
.h13{height:123.678260pt;}
.h3{height:194.152273pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x0{left:0.000000pt;}
.x1{left:75.854667pt;}
.x4{left:104.844000pt;}
.x3{left:283.842667pt;}
.x10{left:284.788000pt;}
.xd{left:291.098667pt;}
.x5{left:306.481333pt;}
.x11{left:307.464000pt;}
.x6{left:329.158667pt;}
.x12{left:330.141333pt;}
.x7{left:351.836000pt;}
.xe{left:374.513333pt;}
.x14{left:400.138667pt;}
.x15{left:528.529333pt;}
.x8{left:699.930667pt;}
.xf{left:996.624000pt;}
.x13{left:1019.792000pt;}
.x2{left:1202.154667pt;}
.x9{left:1243.124000pt;}
.xa{left:1258.016000pt;}
.xb{left:1269.997333pt;}
.xc{left:1284.888000pt;}
}




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