
    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_859daba2651e31b40c8633ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_27908fa3a5cfe1a8fb81c8a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ab94187ef42fb8771483c0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0681663dd6dacc0ea0231d03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.540000px;}
.ls11{letter-spacing:11.466720px;}
.ls8{letter-spacing:19.386720px;}
.lsc{letter-spacing:41.850720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1439.671680px;}
._5{margin-left:-1437.350040px;}
._4{margin-left:-930.470400px;}
._6{margin-left:-600.828480px;}
._16{margin-left:-8.153280px;}
._17{margin-left:-4.046400px;}
._b{margin-left:-2.366640px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.623440px;}
._c{width:3.705120px;}
._e{width:5.121360px;}
._d{width:6.566160px;}
._11{width:7.726560px;}
._12{width:8.812560px;}
._15{width:10.107360px;}
._10{width:11.185200px;}
._8{width:12.736080px;}
._7{width:13.967040px;}
._14{width:16.613280px;}
._9{width:17.619840px;}
._13{width:18.679680px;}
._f{width:22.121280px;}
._19{width:24.004080px;}
._18{width:25.049280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:10.620000px;}
.y9d{bottom:30.420000px;}
.y9a{bottom:34.740000px;}
.y9c{bottom:50.400000px;}
.y6{bottom:57.960000px;}
.y9b{bottom:70.194000px;}
.y99{bottom:82.836000px;}
.y6a{bottom:88.236000px;}
.y88{bottom:90.036000px;}
.y98{bottom:99.036000px;}
.y33{bottom:106.236000px;}
.y69{bottom:108.036000px;}
.y87{bottom:109.836000px;}
.y97{bottom:118.836000px;}
.y32{bottom:126.036000px;}
.y68{bottom:127.836000px;}
.y86{bottom:129.816000px;}
.y96{bottom:138.816000px;}
.y31{bottom:145.836000px;}
.y67{bottom:147.816000px;}
.y85{bottom:149.616000px;}
.y95{bottom:158.610000px;}
.y30{bottom:165.630000px;}
.y66{bottom:167.610000px;}
.y84{bottom:169.410000px;}
.y94{bottom:178.410000px;}
.y2f{bottom:185.430000px;}
.y65{bottom:187.410000px;}
.y83{bottom:189.210000px;}
.y93{bottom:198.210000px;}
.y2e{bottom:205.230000px;}
.y64{bottom:207.210000px;}
.y82{bottom:209.010000px;}
.y92{bottom:218.010000px;}
.y2d{bottom:225.210000px;}
.y63{bottom:227.010000px;}
.y81{bottom:228.990000px;}
.y91{bottom:237.990000px;}
.y2c{bottom:245.010000px;}
.y62{bottom:246.990000px;}
.y80{bottom:257.790000px;}
.y2b{bottom:264.810000px;}
.y61{bottom:266.790000px;}
.y7f{bottom:277.590000px;}
.y2a{bottom:284.610000px;}
.y60{bottom:286.590000px;}
.y7e{bottom:297.390000px;}
.y29{bottom:304.410000px;}
.y5f{bottom:306.390000px;}
.y7d{bottom:317.190000px;}
.y28{bottom:324.390000px;}
.y5e{bottom:326.190000px;}
.y7c{bottom:337.215000px;}
.y27{bottom:344.235000px;}
.y5d{bottom:346.215000px;}
.y7b{bottom:357.015000px;}
.y26{bottom:364.035000px;}
.y5c{bottom:366.015000px;}
.y7a{bottom:376.815000px;}
.y25{bottom:383.835000px;}
.y5b{bottom:385.815000px;}
.y79{bottom:396.615000px;}
.y24{bottom:403.635000px;}
.y5a{bottom:405.615000px;}
.y78{bottom:416.415000px;}
.y23{bottom:423.615000px;}
.y59{bottom:425.415000px;}
.y77{bottom:436.395000px;}
.y22{bottom:443.415000px;}
.y58{bottom:445.395000px;}
.y76{bottom:456.195000px;}
.y21{bottom:463.215000px;}
.y57{bottom:465.195000px;}
.y75{bottom:475.995000px;}
.y20{bottom:483.015000px;}
.y56{bottom:484.995000px;}
.y74{bottom:495.795000px;}
.y1f{bottom:502.815000px;}
.y55{bottom:504.795000px;}
.y73{bottom:515.595000px;}
.y1e{bottom:522.795000px;}
.y54{bottom:524.595000px;}
.y72{bottom:535.575000px;}
.y1d{bottom:542.595000px;}
.y53{bottom:544.575000px;}
.y71{bottom:555.375000px;}
.y52{bottom:564.375000px;}
.y1c{bottom:564.735000px;}
.y70{bottom:575.175000px;}
.y51{bottom:584.175000px;}
.y1b{bottom:584.535000px;}
.y6f{bottom:594.975000px;}
.y50{bottom:604.005000px;}
.y1a{bottom:613.365000px;}
.y6e{bottom:614.805000px;}
.y4f{bottom:623.805000px;}
.y19{bottom:633.165000px;}
.y6d{bottom:634.785000px;}
.y4e{bottom:643.785000px;}
.y18{bottom:652.965000px;}
.y6c{bottom:654.585000px;}
.y4d{bottom:663.585000px;}
.y17{bottom:672.945000px;}
.y6b{bottom:674.385000px;}
.y4c{bottom:683.385000px;}
.y16{bottom:692.745000px;}
.y90{bottom:694.185000px;}
.y4b{bottom:703.185000px;}
.y15{bottom:712.545000px;}
.y8f{bottom:713.985000px;}
.y4a{bottom:722.985000px;}
.y14{bottom:732.345000px;}
.y8e{bottom:733.965000px;}
.y49{bottom:742.965000px;}
.y13{bottom:752.145000px;}
.y8d{bottom:753.765000px;}
.y48{bottom:762.765000px;}
.y12{bottom:772.125000px;}
.y8c{bottom:773.565000px;}
.y47{bottom:782.565000px;}
.y11{bottom:791.925000px;}
.y8b{bottom:793.365000px;}
.y46{bottom:802.365000px;}
.y10{bottom:811.725000px;}
.y8a{bottom:813.165000px;}
.y45{bottom:822.165000px;}
.yf{bottom:831.525000px;}
.y89{bottom:833.145000px;}
.y44{bottom:842.145000px;}
.ye{bottom:851.325000px;}
.y43{bottom:861.945000px;}
.yd{bottom:873.510000px;}
.y42{bottom:881.790000px;}
.yc{bottom:893.310000px;}
.y41{bottom:901.590000px;}
.yb{bottom:913.650000px;}
.y40{bottom:921.390000px;}
.ya{bottom:935.070000px;}
.y3f{bottom:941.370000px;}
.y9{bottom:958.470000px;}
.y3e{bottom:961.170000px;}
.y3d{bottom:980.970000px;}
.y8{bottom:990.150000px;}
.y3c{bottom:1000.770000px;}
.y3b{bottom:1020.570000px;}
.y7{bottom:1022.010000px;}
.y3a{bottom:1040.550000px;}
.y5{bottom:1060.350000px;}
.y39{bottom:1080.150000px;}
.y4{bottom:1091.130000px;}
.y38{bottom:1099.950000px;}
.y37{bottom:1119.750000px;}
.y3{bottom:1121.910000px;}
.y36{bottom:1139.760000px;}
.y2{bottom:1152.900000px;}
.y35{bottom:1170.180000px;}
.y1{bottom:1186.740000px;}
.y34{bottom:1193.400000px;}
.ha{height:2.010938px;}
.h6{height:41.726953px;}
.h5{height:42.164648px;}
.h8{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h2{height:67.565039px;}
.h7{height:67.824844px;}
.h9{height:84.240000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:210.990000px;}
.w4{width:580.830000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:54.179987px;}
.x2{left:74.519987px;}
.x3{left:75.599987px;}
.x4{left:80.279987px;}
.x5{left:108.035987px;}
.x6{left:191.370000px;}
.x7{left:264.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls11{letter-spacing:10.192640pt;}
.ls8{letter-spacing:17.232640pt;}
.lsc{letter-spacing:37.200640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1279.708160pt;}
._5{margin-left:-1277.644480pt;}
._4{margin-left:-827.084800pt;}
._6{margin-left:-534.069760pt;}
._16{margin-left:-7.247360pt;}
._17{margin-left:-3.596800pt;}
._b{margin-left:-2.103680pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.331947pt;}
._c{width:3.293440pt;}
._e{width:4.552320pt;}
._d{width:5.836587pt;}
._11{width:6.868053pt;}
._12{width:7.833387pt;}
._15{width:8.984320pt;}
._10{width:9.942400pt;}
._8{width:11.320960pt;}
._7{width:12.415147pt;}
._14{width:14.767360pt;}
._9{width:15.662080pt;}
._13{width:16.604160pt;}
._f{width:19.663360pt;}
._19{width:21.336960pt;}
._18{width:22.266027pt;}
.fs5{font-size:2.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:9.440000pt;}
.y9d{bottom:27.040000pt;}
.y9a{bottom:30.880000pt;}
.y9c{bottom:44.800000pt;}
.y6{bottom:51.520000pt;}
.y9b{bottom:62.394667pt;}
.y99{bottom:73.632000pt;}
.y6a{bottom:78.432000pt;}
.y88{bottom:80.032000pt;}
.y98{bottom:88.032000pt;}
.y33{bottom:94.432000pt;}
.y69{bottom:96.032000pt;}
.y87{bottom:97.632000pt;}
.y97{bottom:105.632000pt;}
.y32{bottom:112.032000pt;}
.y68{bottom:113.632000pt;}
.y86{bottom:115.392000pt;}
.y96{bottom:123.392000pt;}
.y31{bottom:129.632000pt;}
.y67{bottom:131.392000pt;}
.y85{bottom:132.992000pt;}
.y95{bottom:140.986667pt;}
.y30{bottom:147.226667pt;}
.y66{bottom:148.986667pt;}
.y84{bottom:150.586667pt;}
.y94{bottom:158.586667pt;}
.y2f{bottom:164.826667pt;}
.y65{bottom:166.586667pt;}
.y83{bottom:168.186667pt;}
.y93{bottom:176.186667pt;}
.y2e{bottom:182.426667pt;}
.y64{bottom:184.186667pt;}
.y82{bottom:185.786667pt;}
.y92{bottom:193.786667pt;}
.y2d{bottom:200.186667pt;}
.y63{bottom:201.786667pt;}
.y81{bottom:203.546667pt;}
.y91{bottom:211.546667pt;}
.y2c{bottom:217.786667pt;}
.y62{bottom:219.546667pt;}
.y80{bottom:229.146667pt;}
.y2b{bottom:235.386667pt;}
.y61{bottom:237.146667pt;}
.y7f{bottom:246.746667pt;}
.y2a{bottom:252.986667pt;}
.y60{bottom:254.746667pt;}
.y7e{bottom:264.346667pt;}
.y29{bottom:270.586667pt;}
.y5f{bottom:272.346667pt;}
.y7d{bottom:281.946667pt;}
.y28{bottom:288.346667pt;}
.y5e{bottom:289.946667pt;}
.y7c{bottom:299.746667pt;}
.y27{bottom:305.986667pt;}
.y5d{bottom:307.746667pt;}
.y7b{bottom:317.346667pt;}
.y26{bottom:323.586667pt;}
.y5c{bottom:325.346667pt;}
.y7a{bottom:334.946667pt;}
.y25{bottom:341.186667pt;}
.y5b{bottom:342.946667pt;}
.y79{bottom:352.546667pt;}
.y24{bottom:358.786667pt;}
.y5a{bottom:360.546667pt;}
.y78{bottom:370.146667pt;}
.y23{bottom:376.546667pt;}
.y59{bottom:378.146667pt;}
.y77{bottom:387.906667pt;}
.y22{bottom:394.146667pt;}
.y58{bottom:395.906667pt;}
.y76{bottom:405.506667pt;}
.y21{bottom:411.746667pt;}
.y57{bottom:413.506667pt;}
.y75{bottom:423.106667pt;}
.y20{bottom:429.346667pt;}
.y56{bottom:431.106667pt;}
.y74{bottom:440.706667pt;}
.y1f{bottom:446.946667pt;}
.y55{bottom:448.706667pt;}
.y73{bottom:458.306667pt;}
.y1e{bottom:464.706667pt;}
.y54{bottom:466.306667pt;}
.y72{bottom:476.066667pt;}
.y1d{bottom:482.306667pt;}
.y53{bottom:484.066667pt;}
.y71{bottom:493.666667pt;}
.y52{bottom:501.666667pt;}
.y1c{bottom:501.986667pt;}
.y70{bottom:511.266667pt;}
.y51{bottom:519.266667pt;}
.y1b{bottom:519.586667pt;}
.y6f{bottom:528.866667pt;}
.y50{bottom:536.893333pt;}
.y1a{bottom:545.213333pt;}
.y6e{bottom:546.493333pt;}
.y4f{bottom:554.493333pt;}
.y19{bottom:562.813333pt;}
.y6d{bottom:564.253333pt;}
.y4e{bottom:572.253333pt;}
.y18{bottom:580.413333pt;}
.y6c{bottom:581.853333pt;}
.y4d{bottom:589.853333pt;}
.y17{bottom:598.173333pt;}
.y6b{bottom:599.453333pt;}
.y4c{bottom:607.453333pt;}
.y16{bottom:615.773333pt;}
.y90{bottom:617.053333pt;}
.y4b{bottom:625.053333pt;}
.y15{bottom:633.373333pt;}
.y8f{bottom:634.653333pt;}
.y4a{bottom:642.653333pt;}
.y14{bottom:650.973333pt;}
.y8e{bottom:652.413333pt;}
.y49{bottom:660.413333pt;}
.y13{bottom:668.573333pt;}
.y8d{bottom:670.013333pt;}
.y48{bottom:678.013333pt;}
.y12{bottom:686.333333pt;}
.y8c{bottom:687.613333pt;}
.y47{bottom:695.613333pt;}
.y11{bottom:703.933333pt;}
.y8b{bottom:705.213333pt;}
.y46{bottom:713.213333pt;}
.y10{bottom:721.533333pt;}
.y8a{bottom:722.813333pt;}
.y45{bottom:730.813333pt;}
.yf{bottom:739.133333pt;}
.y89{bottom:740.573333pt;}
.y44{bottom:748.573333pt;}
.ye{bottom:756.733333pt;}
.y43{bottom:766.173333pt;}
.yd{bottom:776.453333pt;}
.y42{bottom:783.813333pt;}
.yc{bottom:794.053333pt;}
.y41{bottom:801.413333pt;}
.yb{bottom:812.133333pt;}
.y40{bottom:819.013333pt;}
.ya{bottom:831.173333pt;}
.y3f{bottom:836.773333pt;}
.y9{bottom:851.973333pt;}
.y3e{bottom:854.373333pt;}
.y3d{bottom:871.973333pt;}
.y8{bottom:880.133333pt;}
.y3c{bottom:889.573333pt;}
.y3b{bottom:907.173333pt;}
.y7{bottom:908.453333pt;}
.y3a{bottom:924.933333pt;}
.y5{bottom:942.533333pt;}
.y39{bottom:960.133333pt;}
.y4{bottom:969.893333pt;}
.y38{bottom:977.733333pt;}
.y37{bottom:995.333333pt;}
.y3{bottom:997.253333pt;}
.y36{bottom:1013.120000pt;}
.y2{bottom:1024.800000pt;}
.y35{bottom:1040.160000pt;}
.y1{bottom:1054.880000pt;}
.y34{bottom:1060.800000pt;}
.ha{height:1.787500pt;}
.h6{height:37.090625pt;}
.h5{height:37.479688pt;}
.h8{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h2{height:60.057813pt;}
.h7{height:60.288750pt;}
.h9{height:74.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:187.546667pt;}
.w4{width:516.293333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2{left:66.239988pt;}
.x3{left:67.199988pt;}
.x4{left:71.359988pt;}
.x5{left:96.031988pt;}
.x6{left:170.106667pt;}
.x7{left:235.546667pt;}
}




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