
    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_60b9e3d75824de23030d5efe.woff2')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_2f9d49a1c83cdc4fe1f913c0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff041a363f4b54dfd5351750.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_c752bb9269c8ad028b3cbae7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_7b7c9a103b68939573e76526.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:64.397280px;}
.ls0{letter-spacing:1829.820000px;}
.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:-21.060000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-10.350720px;}
._1b{margin-left:-9.173760px;}
._1{margin-left:-7.948800px;}
._5{margin-left:-6.894720px;}
._25{margin-left:-5.832000px;}
._6{margin-left:-4.596480px;}
._9{margin-left:-2.605920px;}
._0{margin-left:-1.457280px;}
._2{width:1.648320px;}
._7{width:3.638880px;}
._8{width:5.513280px;}
._e{width:6.827040px;}
._17{width:8.292960px;}
._18{width:9.315840px;}
._a{width:10.512000px;}
._b{width:11.592000px;}
._21{width:12.710880px;}
._15{width:13.824000px;}
._14{width:15.768000px;}
._19{width:16.992000px;}
._22{width:19.102560px;}
._13{width:20.400480px;}
._11{width:22.356000px;}
._12{width:23.652000px;}
._16{width:25.141440px;}
._24{width:26.266560px;}
._c{width:29.016000px;}
._d{width:30.024000px;}
._1e{width:31.464000px;}
._10{width:33.768000px;}
._1c{width:36.288000px;}
._1d{width:37.296000px;}
._23{width:38.520000px;}
._20{width:40.104000px;}
._1f{width:41.112000px;}
._3{width:56.977200px;}
._4{width:58.010160px;}
._f{width:60.120000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:82.116000px;}
.y3{bottom:122.616000px;}
.y2{bottom:141.516000px;}
.y1{bottom:160.590000px;}
.ya4{bottom:185.610000px;}
.y2e{bottom:194.970000px;}
.ya3{bottom:206.310000px;}
.yc2{bottom:207.750000px;}
.y2d{bottom:217.290000px;}
.y8c{bottom:218.010000px;}
.ya2{bottom:227.010000px;}
.yc1{bottom:228.450000px;}
.y68{bottom:230.070000px;}
.y7f{bottom:237.450000px;}
.y2c{bottom:237.990000px;}
.y4b{bottom:239.070000px;}
.ya1{bottom:247.710000px;}
.y8b{bottom:249.150000px;}
.y2b{bottom:258.510000px;}
.y67{bottom:261.210000px;}
.y7e{bottom:268.410000px;}
.yc0{bottom:269.850000px;}
.y4a{bottom:270.210000px;}
.y2a{bottom:279.030000px;}
.y8a{bottom:280.110000px;}
.ya0{bottom:289.110000px;}
.ybf{bottom:290.550000px;}
.y66{bottom:292.170000px;}
.y29{bottom:299.550000px;}
.y49{bottom:301.170000px;}
.y9f{bottom:309.810000px;}
.y89{bottom:311.250000px;}
.y28{bottom:320.070000px;}
.y65{bottom:328.890000px;}
.y7d{bottom:330.510000px;}
.ybe{bottom:331.950000px;}
.y48{bottom:332.310000px;}
.y27{bottom:340.635000px;}
.y88{bottom:342.255000px;}
.y9e{bottom:351.255000px;}
.ybd{bottom:352.695000px;}
.y64{bottom:352.875000px;}
.y26{bottom:361.155000px;}
.y7c{bottom:361.695000px;}
.y47{bottom:366.915000px;}
.y9d{bottom:371.775000px;}
.y87{bottom:373.395000px;}
.y25{bottom:381.675000px;}
.y63{bottom:389.415000px;}
.y9c{bottom:392.475000px;}
.y7b{bottom:392.655000px;}
.ybc{bottom:394.095000px;}
.y46{bottom:398.055000px;}
.y24{bottom:402.195000px;}
.y86{bottom:404.355000px;}
.ybb{bottom:414.795000px;}
.y9b{bottom:419.115000px;}
.y7a{bottom:423.795000px;}
.y62{bottom:423.975000px;}
.y23{bottom:424.515000px;}
.y45{bottom:429.015000px;}
.y85{bottom:435.495000px;}
.y9a{bottom:443.055000px;}
.y22{bottom:446.835000px;}
.y79{bottom:454.755000px;}
.y61{bottom:455.115000px;}
.yba{bottom:456.195000px;}
.y44{bottom:460.155000px;}
.y84{bottom:466.455000px;}
.y21{bottom:469.155000px;}
.yb9{bottom:476.895000px;}
.y99{bottom:479.415000px;}
.y78{bottom:485.895000px;}
.y60{bottom:489.675000px;}
.y43{bottom:491.115000px;}
.y20{bottom:491.475000px;}
.y83{bottom:497.595000px;}
.y98{bottom:510.555000px;}
.y1f{bottom:513.795000px;}
.y77{bottom:516.855000px;}
.yb8{bottom:518.295000px;}
.y5f{bottom:520.815000px;}
.y42{bottom:525.855000px;}
.y82{bottom:528.555000px;}
.y1e{bottom:534.315000px;}
.yb7{bottom:538.995000px;}
.y97{bottom:541.515000px;}
.y76{bottom:553.575000px;}
.y1d{bottom:554.835000px;}
.y5e{bottom:555.375000px;}
.y41{bottom:556.815000px;}
.y81{bottom:559.695000px;}
.y96{bottom:572.655000px;}
.y1c{bottom:575.355000px;}
.y75{bottom:577.515000px;}
.yb6{bottom:580.395000px;}
.y5d{bottom:586.515000px;}
.y40{bottom:587.955000px;}
.y80{bottom:590.655000px;}
.y1b{bottom:595.875000px;}
.yb5{bottom:601.095000px;}
.y95{bottom:603.645000px;}
.y1a{bottom:616.425000px;}
.y5c{bottom:617.505000px;}
.y3f{bottom:618.945000px;}
.y74{bottom:621.645000px;}
.y94{bottom:634.785000px;}
.y19{bottom:636.945000px;}
.yb4{bottom:642.345000px;}
.y5b{bottom:648.645000px;}
.y3e{bottom:650.085000px;}
.y73{bottom:652.785000px;}
.y18{bottom:657.465000px;}
.yb3{bottom:663.045000px;}
.y93{bottom:665.745000px;}
.y17{bottom:677.985000px;}
.y5a{bottom:679.605000px;}
.y3d{bottom:681.045000px;}
.y72{bottom:683.745000px;}
.y92{bottom:696.885000px;}
.y16{bottom:698.685000px;}
.yb2{bottom:704.445000px;}
.y59{bottom:710.745000px;}
.y3c{bottom:712.185000px;}
.y71{bottom:714.885000px;}
.y15{bottom:719.205000px;}
.yb1{bottom:725.145000px;}
.y91{bottom:727.845000px;}
.y14{bottom:739.725000px;}
.y3b{bottom:743.145000px;}
.y58{bottom:743.865000px;}
.y70{bottom:745.845000px;}
.y90{bottom:758.805000px;}
.y13{bottom:762.045000px;}
.yb0{bottom:766.545000px;}
.y3a{bottom:774.285000px;}
.y57{bottom:774.825000px;}
.y6f{bottom:776.985000px;}
.y12{bottom:784.365000px;}
.yaf{bottom:787.245000px;}
.y8f{bottom:789.945000px;}
.y56{bottom:805.965000px;}
.y11{bottom:806.685000px;}
.y39{bottom:807.405000px;}
.y6e{bottom:807.945000px;}
.y8e{bottom:820.905000px;}
.yae{bottom:828.645000px;}
.y10{bottom:829.005000px;}
.y55{bottom:836.925000px;}
.y38{bottom:838.365000px;}
.y6d{bottom:839.085000px;}
.yad{bottom:849.345000px;}
.yf{bottom:851.325000px;}
.y8d{bottom:856.005000px;}
.y54{bottom:868.065000px;}
.y37{bottom:869.505000px;}
.y6c{bottom:870.045000px;}
.ye{bottom:873.690000px;}
.yac{bottom:890.790000px;}
.yd{bottom:896.010000px;}
.y53{bottom:899.070000px;}
.y36{bottom:900.510000px;}
.y6b{bottom:901.230000px;}
.yab{bottom:911.490000px;}
.yc{bottom:916.530000px;}
.y52{bottom:930.210000px;}
.y35{bottom:931.650000px;}
.y6a{bottom:932.190000px;}
.yb{bottom:941.910000px;}
.yaa{bottom:952.890000px;}
.y51{bottom:961.170000px;}
.y34{bottom:962.610000px;}
.y69{bottom:963.330000px;}
.ya{bottom:971.610000px;}
.ya9{bottom:973.590000px;}
.y33{bottom:993.750000px;}
.y50{bottom:994.290000px;}
.y9{bottom:1002.390000px;}
.ya8{bottom:1014.990000px;}
.y32{bottom:1024.710000px;}
.y4f{bottom:1025.430000px;}
.y8{bottom:1031.010000px;}
.ya7{bottom:1035.690000px;}
.y31{bottom:1055.850000px;}
.y4e{bottom:1056.390000px;}
.y7{bottom:1059.450000px;}
.ya6{bottom:1077.090000px;}
.y4d{bottom:1087.530000px;}
.y6{bottom:1088.070000px;}
.y30{bottom:1091.670000px;}
.ya5{bottom:1097.790000px;}
.y5{bottom:1115.430000px;}
.y2f{bottom:1115.610000px;}
.y4c{bottom:1118.490000px;}
.h7{height:59.343750px;}
.h2{height:59.383125px;}
.h3{height:64.546875px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h6{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:126.575987px;}
.x1{left:128.375987px;}
.x3{left:134.675987px;}
.xc{left:158.609987px;}
.x6{left:167.069987px;}
.x2{left:169.049987px;}
.xa{left:170.129987px;}
.x7{left:276.689987px;}
.x4{left:279.434987px;}
.x5{left:465.374987px;}
.x8{left:803.669987px;}
.x9{left:808.169987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:57.242027pt;}
.ls0{letter-spacing:1626.506667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-9.200640pt;}
._1b{margin-left:-8.154453pt;}
._1{margin-left:-7.065600pt;}
._5{margin-left:-6.128640pt;}
._25{margin-left:-5.184000pt;}
._6{margin-left:-4.085760pt;}
._9{margin-left:-2.316373pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.465173pt;}
._7{width:3.234560pt;}
._8{width:4.900693pt;}
._e{width:6.068480pt;}
._17{width:7.371520pt;}
._18{width:8.280747pt;}
._a{width:9.344000pt;}
._b{width:10.304000pt;}
._21{width:11.298560pt;}
._15{width:12.288000pt;}
._14{width:14.016000pt;}
._19{width:15.104000pt;}
._22{width:16.980053pt;}
._13{width:18.133760pt;}
._11{width:19.872000pt;}
._12{width:21.024000pt;}
._16{width:22.347947pt;}
._24{width:23.348053pt;}
._c{width:25.792000pt;}
._d{width:26.688000pt;}
._1e{width:27.968000pt;}
._10{width:30.016000pt;}
._1c{width:32.256000pt;}
._1d{width:33.152000pt;}
._23{width:34.240000pt;}
._20{width:35.648000pt;}
._1f{width:36.544000pt;}
._3{width:50.646400pt;}
._4{width:51.564587pt;}
._f{width:53.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:72.992000pt;}
.y3{bottom:108.992000pt;}
.y2{bottom:125.792000pt;}
.y1{bottom:142.746667pt;}
.ya4{bottom:164.986667pt;}
.y2e{bottom:173.306667pt;}
.ya3{bottom:183.386667pt;}
.yc2{bottom:184.666667pt;}
.y2d{bottom:193.146667pt;}
.y8c{bottom:193.786667pt;}
.ya2{bottom:201.786667pt;}
.yc1{bottom:203.066667pt;}
.y68{bottom:204.506667pt;}
.y7f{bottom:211.066667pt;}
.y2c{bottom:211.546667pt;}
.y4b{bottom:212.506667pt;}
.ya1{bottom:220.186667pt;}
.y8b{bottom:221.466667pt;}
.y2b{bottom:229.786667pt;}
.y67{bottom:232.186667pt;}
.y7e{bottom:238.586667pt;}
.yc0{bottom:239.866667pt;}
.y4a{bottom:240.186667pt;}
.y2a{bottom:248.026667pt;}
.y8a{bottom:248.986667pt;}
.ya0{bottom:256.986667pt;}
.ybf{bottom:258.266667pt;}
.y66{bottom:259.706667pt;}
.y29{bottom:266.266667pt;}
.y49{bottom:267.706667pt;}
.y9f{bottom:275.386667pt;}
.y89{bottom:276.666667pt;}
.y28{bottom:284.506667pt;}
.y65{bottom:292.346667pt;}
.y7d{bottom:293.786667pt;}
.ybe{bottom:295.066667pt;}
.y48{bottom:295.386667pt;}
.y27{bottom:302.786667pt;}
.y88{bottom:304.226667pt;}
.y9e{bottom:312.226667pt;}
.ybd{bottom:313.506667pt;}
.y64{bottom:313.666667pt;}
.y26{bottom:321.026667pt;}
.y7c{bottom:321.506667pt;}
.y47{bottom:326.146667pt;}
.y9d{bottom:330.466667pt;}
.y87{bottom:331.906667pt;}
.y25{bottom:339.266667pt;}
.y63{bottom:346.146667pt;}
.y9c{bottom:348.866667pt;}
.y7b{bottom:349.026667pt;}
.ybc{bottom:350.306667pt;}
.y46{bottom:353.826667pt;}
.y24{bottom:357.506667pt;}
.y86{bottom:359.426667pt;}
.ybb{bottom:368.706667pt;}
.y9b{bottom:372.546667pt;}
.y7a{bottom:376.706667pt;}
.y62{bottom:376.866667pt;}
.y23{bottom:377.346667pt;}
.y45{bottom:381.346667pt;}
.y85{bottom:387.106667pt;}
.y9a{bottom:393.826667pt;}
.y22{bottom:397.186667pt;}
.y79{bottom:404.226667pt;}
.y61{bottom:404.546667pt;}
.yba{bottom:405.506667pt;}
.y44{bottom:409.026667pt;}
.y84{bottom:414.626667pt;}
.y21{bottom:417.026667pt;}
.yb9{bottom:423.906667pt;}
.y99{bottom:426.146667pt;}
.y78{bottom:431.906667pt;}
.y60{bottom:435.266667pt;}
.y43{bottom:436.546667pt;}
.y20{bottom:436.866667pt;}
.y83{bottom:442.306667pt;}
.y98{bottom:453.826667pt;}
.y1f{bottom:456.706667pt;}
.y77{bottom:459.426667pt;}
.yb8{bottom:460.706667pt;}
.y5f{bottom:462.946667pt;}
.y42{bottom:467.426667pt;}
.y82{bottom:469.826667pt;}
.y1e{bottom:474.946667pt;}
.yb7{bottom:479.106667pt;}
.y97{bottom:481.346667pt;}
.y76{bottom:492.066667pt;}
.y1d{bottom:493.186667pt;}
.y5e{bottom:493.666667pt;}
.y41{bottom:494.946667pt;}
.y81{bottom:497.506667pt;}
.y96{bottom:509.026667pt;}
.y1c{bottom:511.426667pt;}
.y75{bottom:513.346667pt;}
.yb6{bottom:515.906667pt;}
.y5d{bottom:521.346667pt;}
.y40{bottom:522.626667pt;}
.y80{bottom:525.026667pt;}
.y1b{bottom:529.666667pt;}
.yb5{bottom:534.306667pt;}
.y95{bottom:536.573333pt;}
.y1a{bottom:547.933333pt;}
.y5c{bottom:548.893333pt;}
.y3f{bottom:550.173333pt;}
.y74{bottom:552.573333pt;}
.y94{bottom:564.253333pt;}
.y19{bottom:566.173333pt;}
.yb4{bottom:570.973333pt;}
.y5b{bottom:576.573333pt;}
.y3e{bottom:577.853333pt;}
.y73{bottom:580.253333pt;}
.y18{bottom:584.413333pt;}
.yb3{bottom:589.373333pt;}
.y93{bottom:591.773333pt;}
.y17{bottom:602.653333pt;}
.y5a{bottom:604.093333pt;}
.y3d{bottom:605.373333pt;}
.y72{bottom:607.773333pt;}
.y92{bottom:619.453333pt;}
.y16{bottom:621.053333pt;}
.yb2{bottom:626.173333pt;}
.y59{bottom:631.773333pt;}
.y3c{bottom:633.053333pt;}
.y71{bottom:635.453333pt;}
.y15{bottom:639.293333pt;}
.yb1{bottom:644.573333pt;}
.y91{bottom:646.973333pt;}
.y14{bottom:657.533333pt;}
.y3b{bottom:660.573333pt;}
.y58{bottom:661.213333pt;}
.y70{bottom:662.973333pt;}
.y90{bottom:674.493333pt;}
.y13{bottom:677.373333pt;}
.yb0{bottom:681.373333pt;}
.y3a{bottom:688.253333pt;}
.y57{bottom:688.733333pt;}
.y6f{bottom:690.653333pt;}
.y12{bottom:697.213333pt;}
.yaf{bottom:699.773333pt;}
.y8f{bottom:702.173333pt;}
.y56{bottom:716.413333pt;}
.y11{bottom:717.053333pt;}
.y39{bottom:717.693333pt;}
.y6e{bottom:718.173333pt;}
.y8e{bottom:729.693333pt;}
.yae{bottom:736.573333pt;}
.y10{bottom:736.893333pt;}
.y55{bottom:743.933333pt;}
.y38{bottom:745.213333pt;}
.y6d{bottom:745.853333pt;}
.yad{bottom:754.973333pt;}
.yf{bottom:756.733333pt;}
.y8d{bottom:760.893333pt;}
.y54{bottom:771.613333pt;}
.y37{bottom:772.893333pt;}
.y6c{bottom:773.373333pt;}
.ye{bottom:776.613333pt;}
.yac{bottom:791.813333pt;}
.yd{bottom:796.453333pt;}
.y53{bottom:799.173333pt;}
.y36{bottom:800.453333pt;}
.y6b{bottom:801.093333pt;}
.yab{bottom:810.213333pt;}
.yc{bottom:814.693333pt;}
.y52{bottom:826.853333pt;}
.y35{bottom:828.133333pt;}
.y6a{bottom:828.613333pt;}
.yb{bottom:837.253333pt;}
.yaa{bottom:847.013333pt;}
.y51{bottom:854.373333pt;}
.y34{bottom:855.653333pt;}
.y69{bottom:856.293333pt;}
.ya{bottom:863.653333pt;}
.ya9{bottom:865.413333pt;}
.y33{bottom:883.333333pt;}
.y50{bottom:883.813333pt;}
.y9{bottom:891.013333pt;}
.ya8{bottom:902.213333pt;}
.y32{bottom:910.853333pt;}
.y4f{bottom:911.493333pt;}
.y8{bottom:916.453333pt;}
.ya7{bottom:920.613333pt;}
.y31{bottom:938.533333pt;}
.y4e{bottom:939.013333pt;}
.y7{bottom:941.733333pt;}
.ya6{bottom:957.413333pt;}
.y4d{bottom:966.693333pt;}
.y6{bottom:967.173333pt;}
.y30{bottom:970.373333pt;}
.ya5{bottom:975.813333pt;}
.y5{bottom:991.493333pt;}
.y2f{bottom:991.653333pt;}
.y4c{bottom:994.213333pt;}
.h7{height:52.750000pt;}
.h2{height:52.785000pt;}
.h3{height:57.375000pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h6{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:112.511988pt;}
.x1{left:114.111988pt;}
.x3{left:119.711988pt;}
.xc{left:140.986655pt;}
.x6{left:148.506655pt;}
.x2{left:150.266655pt;}
.xa{left:151.226655pt;}
.x7{left:245.946655pt;}
.x4{left:248.386655pt;}
.x5{left:413.666655pt;}
.x8{left:714.373322pt;}
.x9{left:718.373322pt;}
}




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