
    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_d8d456ace27d455860bdb253.woff')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_49cf6218e24e19674b3d37ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_f3c6feafe7d954881cbf5740.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b0b179018abca383e21ea5c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f72d5169b7add94b2074a6ac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_ae64e9e832fbf2b61b0f6841.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8aad153e4f476a8891b34a7e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_41bb178b6ca9b9388c1d40f7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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);}
.v1{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.152000px;}
.ls3{letter-spacing:1.440000px;}
.ls0{letter-spacing:29.088000px;}
.ls1{letter-spacing:195.276000px;}
.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;}
}
.ws4{word-spacing:-18.648000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.352000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-5.339520px;}
._7{margin-left:-4.204800px;}
._2{margin-left:-2.306880px;}
._0{margin-left:-1.059840px;}
._1{width:1.324800px;}
._3{width:2.805120px;}
._9{width:4.320000px;}
._8{width:5.523840px;}
._e{width:6.659520px;}
._f{width:7.896480px;}
._5{width:8.997120px;}
._4{width:10.010880px;}
._b{width:11.842560px;}
._a{width:13.222080px;}
._10{width:14.950080px;}
._11{width:16.254240px;}
._12{width:19.658880px;}
._c{width:21.574080px;}
._d{width:23.031360px;}
._19{width:24.278400px;}
._16{width:25.952160px;}
._15{width:27.338880px;}
._17{width:28.466880px;}
._1d{width:29.602560px;}
._18{width:30.939840px;}
._1a{width:32.662080px;}
._1b{width:33.744960px;}
._2a{width:35.328960px;}
._25{width:40.487040px;}
._14{width:41.587200px;}
._13{width:42.886080px;}
._21{width:44.001120px;}
._22{width:45.506880px;}
._1e{width:48.658080px;}
._1f{width:49.776960px;}
._29{width:60.237600px;}
._27{width:61.344000px;}
._28{width:62.702880px;}
._20{width:68.616000px;}
._24{width:138.271680px;}
._23{width:139.841280px;}
._1c{width:165.142080px;}
._26{width:688.464000px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.040000px;}
.y7{bottom:5.400000px;}
.y6{bottom:25.200000px;}
.y5{bottom:38.520000px;}
.y4{bottom:57.240000px;}
.y36{bottom:90.756000px;}
.y58{bottom:94.356000px;}
.y5d{bottom:104.436000px;}
.y80{bottom:109.836000px;}
.y57{bottom:125.316000px;}
.y7f{bottom:130.356000px;}
.y5c{bottom:135.756000px;}
.y35{bottom:142.236000px;}
.y91{bottom:145.836000px;}
.y7e{bottom:151.230000px;}
.y56{bottom:156.270000px;}
.y34{bottom:162.750000px;}
.y5b{bottom:166.710000px;}
.y7d{bottom:171.750000px;}
.y55{bottom:187.230000px;}
.y33{bottom:192.630000px;}
.y5a{bottom:197.715000px;}
.y90{bottom:208.155000px;}
.y32{bottom:212.475000px;}
.y7c{bottom:213.195000px;}
.y59{bottom:218.235000px;}
.y54{bottom:218.595000px;}
.y68{bottom:228.675000px;}
.y31{bottom:241.635000px;}
.y53{bottom:249.555000px;}
.y7b{bottom:259.635000px;}
.y67{bottom:259.995000px;}
.y30{bottom:261.435000px;}
.y8f{bottom:270.075000px;}
.y52{bottom:280.515000px;}
.y2f{bottom:282.315000px;}
.y66{bottom:290.955000px;}
.y2e{bottom:302.835000px;}
.y51{bottom:311.475000px;}
.y65{bottom:321.945000px;}
.y2d{bottom:323.745000px;}
.y8e{bottom:332.385000px;}
.y50{bottom:342.825000px;}
.y2c{bottom:344.265000px;}
.y64{bottom:352.905000px;}
.y2b{bottom:365.145000px;}
.y4f{bottom:373.785000px;}
.y63{bottom:384.225000px;}
.y2a{bottom:385.665000px;}
.y8d{bottom:394.305000px;}
.y4e{bottom:404.745000px;}
.y29{bottom:406.545000px;}
.y62{bottom:415.185000px;}
.y28{bottom:427.065000px;}
.y4d{bottom:435.705000px;}
.y61{bottom:446.190000px;}
.y27{bottom:447.990000px;}
.y8c{bottom:456.630000px;}
.y4c{bottom:467.070000px;}
.y26{bottom:468.510000px;}
.y60{bottom:477.150000px;}
.y25{bottom:489.390000px;}
.y4b{bottom:498.030000px;}
.y5f{bottom:508.470000px;}
.y24{bottom:509.910000px;}
.y8b{bottom:518.550000px;}
.y5e{bottom:528.630000px;}
.y4a{bottom:528.990000px;}
.y23{bottom:539.430000px;}
.y22{bottom:558.870000px;}
.y49{bottom:559.950000px;}
.y7a{bottom:570.390000px;}
.y8a{bottom:580.860000px;}
.y21{bottom:588.780000px;}
.y48{bottom:590.940000px;}
.y79{bottom:601.380000px;}
.y20{bottom:608.220000px;}
.y47{bottom:622.260000px;}
.y78{bottom:632.340000px;}
.y1f{bottom:639.540000px;}
.y89{bottom:642.780000px;}
.y46{bottom:653.220000px;}
.y1e{bottom:660.060000px;}
.y77{bottom:663.660000px;}
.y1d{bottom:680.940000px;}
.y45{bottom:684.180000px;}
.y76{bottom:694.620000px;}
.y1c{bottom:701.490000px;}
.y88{bottom:705.090000px;}
.y44{bottom:715.170000px;}
.y1b{bottom:722.370000px;}
.y87{bottom:725.250000px;}
.y75{bottom:725.610000px;}
.y1a{bottom:742.890000px;}
.y43{bottom:746.490000px;}
.y74{bottom:756.570000px;}
.y19{bottom:763.770000px;}
.y86{bottom:767.010000px;}
.y42{bottom:777.450000px;}
.y18{bottom:784.290000px;}
.y73{bottom:787.890000px;}
.y17{bottom:805.170000px;}
.y41{bottom:808.410000px;}
.y72{bottom:818.850000px;}
.y16{bottom:825.735000px;}
.y85{bottom:829.335000px;}
.y40{bottom:839.415000px;}
.y15{bottom:846.615000px;}
.y71{bottom:849.855000px;}
.y14{bottom:867.135000px;}
.y3f{bottom:870.735000px;}
.y70{bottom:880.815000px;}
.y13{bottom:888.015000px;}
.y84{bottom:891.255000px;}
.y3e{bottom:901.695000px;}
.y12{bottom:908.535000px;}
.y6f{bottom:912.135000px;}
.y11{bottom:929.415000px;}
.y3d{bottom:932.655000px;}
.y6e{bottom:943.095000px;}
.y83{bottom:953.565000px;}
.y10{bottom:958.605000px;}
.y3c{bottom:963.645000px;}
.y6d{bottom:974.085000px;}
.yf{bottom:978.045000px;}
.y3b{bottom:994.965000px;}
.y93{bottom:1000.725000px;}
.y6c{bottom:1005.045000px;}
.ye{bottom:1007.925000px;}
.y82{bottom:1015.485000px;}
.y92{bottom:1018.005000px;}
.y3a{bottom:1025.925000px;}
.yd{bottom:1027.005000px;}
.y6b{bottom:1036.365000px;}
.yc{bottom:1046.445000px;}
.y39{bottom:1056.885000px;}
.y6a{bottom:1067.325000px;}
.yb{bottom:1077.405000px;}
.y81{bottom:1077.810000px;}
.y38{bottom:1087.890000px;}
.ya{bottom:1097.970000px;}
.y69{bottom:1098.330000px;}
.y9{bottom:1118.850000px;}
.y37{bottom:1119.210000px;}
.y3{bottom:1154.490000px;}
.y2{bottom:1173.570000px;}
.y1{bottom:1193.730000px;}
.h6{height:23.076000px;}
.h4{height:42.156000px;}
.h2{height:50.229844px;}
.hd{height:59.357813px;}
.hc{height:64.546875px;}
.h5{height:64.978594px;}
.h3{height:65.010937px;}
.h7{height:66.757500px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.hb{height:74.953125px;}
.ha{height:111.650625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:244.185000px;}
.w4{width:347.190000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x5{left:12.240000px;}
.x7{left:117.036000px;}
.x6{left:126.405000px;}
.x3{left:127.475987px;}
.xf{left:180.794987px;}
.x9{left:239.504987px;}
.x10{left:403.349987px;}
.xe{left:418.829987px;}
.xd{left:428.219987px;}
.xa{left:467.819987px;}
.x4{left:560.010000px;}
.xc{left:561.809987px;}
.xb{left:588.089987px;}
.x2{left:791.564987px;}
.x1{left:808.169987px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls0{letter-spacing:25.856000pt;}
.ls1{letter-spacing:173.578667pt;}
.ws4{word-spacing:-16.576000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.424000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-4.746240pt;}
._7{margin-left:-3.737600pt;}
._2{margin-left:-2.050560pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.177600pt;}
._3{width:2.493440pt;}
._9{width:3.840000pt;}
._8{width:4.910080pt;}
._e{width:5.919573pt;}
._f{width:7.019093pt;}
._5{width:7.997440pt;}
._4{width:8.898560pt;}
._b{width:10.526720pt;}
._a{width:11.752960pt;}
._10{width:13.288960pt;}
._11{width:14.448213pt;}
._12{width:17.474560pt;}
._c{width:19.176960pt;}
._d{width:20.472320pt;}
._19{width:21.580800pt;}
._16{width:23.068587pt;}
._15{width:24.301227pt;}
._17{width:25.303893pt;}
._1d{width:26.313387pt;}
._18{width:27.502080pt;}
._1a{width:29.032960pt;}
._1b{width:29.995520pt;}
._2a{width:31.403520pt;}
._25{width:35.988480pt;}
._14{width:36.966400pt;}
._13{width:38.120960pt;}
._21{width:39.112107pt;}
._22{width:40.450560pt;}
._1e{width:43.251627pt;}
._1f{width:44.246187pt;}
._29{width:53.544533pt;}
._27{width:54.528000pt;}
._28{width:55.735893pt;}
._20{width:60.992000pt;}
._24{width:122.908160pt;}
._23{width:124.303360pt;}
._1c{width:146.792960pt;}
._26{width:611.968000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.480000pt;}
.y7{bottom:4.800000pt;}
.y6{bottom:22.400000pt;}
.y5{bottom:34.240000pt;}
.y4{bottom:50.880000pt;}
.y36{bottom:80.672000pt;}
.y58{bottom:83.872000pt;}
.y5d{bottom:92.832000pt;}
.y80{bottom:97.632000pt;}
.y57{bottom:111.392000pt;}
.y7f{bottom:115.872000pt;}
.y5c{bottom:120.672000pt;}
.y35{bottom:126.432000pt;}
.y91{bottom:129.632000pt;}
.y7e{bottom:134.426667pt;}
.y56{bottom:138.906667pt;}
.y34{bottom:144.666667pt;}
.y5b{bottom:148.186667pt;}
.y7d{bottom:152.666667pt;}
.y55{bottom:166.426667pt;}
.y33{bottom:171.226667pt;}
.y5a{bottom:175.746667pt;}
.y90{bottom:185.026667pt;}
.y32{bottom:188.866667pt;}
.y7c{bottom:189.506667pt;}
.y59{bottom:193.986667pt;}
.y54{bottom:194.306667pt;}
.y68{bottom:203.266667pt;}
.y31{bottom:214.786667pt;}
.y53{bottom:221.826667pt;}
.y7b{bottom:230.786667pt;}
.y67{bottom:231.106667pt;}
.y30{bottom:232.386667pt;}
.y8f{bottom:240.066667pt;}
.y52{bottom:249.346667pt;}
.y2f{bottom:250.946667pt;}
.y66{bottom:258.626667pt;}
.y2e{bottom:269.186667pt;}
.y51{bottom:276.866667pt;}
.y65{bottom:286.173333pt;}
.y2d{bottom:287.773333pt;}
.y8e{bottom:295.453333pt;}
.y50{bottom:304.733333pt;}
.y2c{bottom:306.013333pt;}
.y64{bottom:313.693333pt;}
.y2b{bottom:324.573333pt;}
.y4f{bottom:332.253333pt;}
.y63{bottom:341.533333pt;}
.y2a{bottom:342.813333pt;}
.y8d{bottom:350.493333pt;}
.y4e{bottom:359.773333pt;}
.y29{bottom:361.373333pt;}
.y62{bottom:369.053333pt;}
.y28{bottom:379.613333pt;}
.y4d{bottom:387.293333pt;}
.y61{bottom:396.613333pt;}
.y27{bottom:398.213333pt;}
.y8c{bottom:405.893333pt;}
.y4c{bottom:415.173333pt;}
.y26{bottom:416.453333pt;}
.y60{bottom:424.133333pt;}
.y25{bottom:435.013333pt;}
.y4b{bottom:442.693333pt;}
.y5f{bottom:451.973333pt;}
.y24{bottom:453.253333pt;}
.y8b{bottom:460.933333pt;}
.y5e{bottom:469.893333pt;}
.y4a{bottom:470.213333pt;}
.y23{bottom:479.493333pt;}
.y22{bottom:496.773333pt;}
.y49{bottom:497.733333pt;}
.y7a{bottom:507.013333pt;}
.y8a{bottom:516.320000pt;}
.y21{bottom:523.360000pt;}
.y48{bottom:525.280000pt;}
.y79{bottom:534.560000pt;}
.y20{bottom:540.640000pt;}
.y47{bottom:553.120000pt;}
.y78{bottom:562.080000pt;}
.y1f{bottom:568.480000pt;}
.y89{bottom:571.360000pt;}
.y46{bottom:580.640000pt;}
.y1e{bottom:586.720000pt;}
.y77{bottom:589.920000pt;}
.y1d{bottom:605.280000pt;}
.y45{bottom:608.160000pt;}
.y76{bottom:617.440000pt;}
.y1c{bottom:623.546667pt;}
.y88{bottom:626.746667pt;}
.y44{bottom:635.706667pt;}
.y1b{bottom:642.106667pt;}
.y87{bottom:644.666667pt;}
.y75{bottom:644.986667pt;}
.y1a{bottom:660.346667pt;}
.y43{bottom:663.546667pt;}
.y74{bottom:672.506667pt;}
.y19{bottom:678.906667pt;}
.y86{bottom:681.786667pt;}
.y42{bottom:691.066667pt;}
.y18{bottom:697.146667pt;}
.y73{bottom:700.346667pt;}
.y17{bottom:715.706667pt;}
.y41{bottom:718.586667pt;}
.y72{bottom:727.866667pt;}
.y16{bottom:733.986667pt;}
.y85{bottom:737.186667pt;}
.y40{bottom:746.146667pt;}
.y15{bottom:752.546667pt;}
.y71{bottom:755.426667pt;}
.y14{bottom:770.786667pt;}
.y3f{bottom:773.986667pt;}
.y70{bottom:782.946667pt;}
.y13{bottom:789.346667pt;}
.y84{bottom:792.226667pt;}
.y3e{bottom:801.506667pt;}
.y12{bottom:807.586667pt;}
.y6f{bottom:810.786667pt;}
.y11{bottom:826.146667pt;}
.y3d{bottom:829.026667pt;}
.y6e{bottom:838.306667pt;}
.y83{bottom:847.613333pt;}
.y10{bottom:852.093333pt;}
.y3c{bottom:856.573333pt;}
.y6d{bottom:865.853333pt;}
.yf{bottom:869.373333pt;}
.y3b{bottom:884.413333pt;}
.y93{bottom:889.533333pt;}
.y6c{bottom:893.373333pt;}
.ye{bottom:895.933333pt;}
.y82{bottom:902.653333pt;}
.y92{bottom:904.893333pt;}
.y3a{bottom:911.933333pt;}
.yd{bottom:912.893333pt;}
.y6b{bottom:921.213333pt;}
.yc{bottom:930.173333pt;}
.y39{bottom:939.453333pt;}
.y6a{bottom:948.733333pt;}
.yb{bottom:957.693333pt;}
.y81{bottom:958.053333pt;}
.y38{bottom:967.013333pt;}
.ya{bottom:975.973333pt;}
.y69{bottom:976.293333pt;}
.y9{bottom:994.533333pt;}
.y37{bottom:994.853333pt;}
.y3{bottom:1026.213333pt;}
.y2{bottom:1043.173333pt;}
.y1{bottom:1061.093333pt;}
.h6{height:20.512000pt;}
.h4{height:37.472000pt;}
.h2{height:44.648750pt;}
.hd{height:52.762500pt;}
.hc{height:57.375000pt;}
.h5{height:57.758750pt;}
.h3{height:57.787500pt;}
.h7{height:59.340000pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.hb{height:66.625000pt;}
.ha{height:99.245000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:217.053333pt;}
.w4{width:308.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x5{left:10.880000pt;}
.x7{left:104.032000pt;}
.x6{left:112.360000pt;}
.x3{left:113.311988pt;}
.xf{left:160.706655pt;}
.x9{left:212.893322pt;}
.x10{left:358.533322pt;}
.xe{left:372.293322pt;}
.xd{left:380.639988pt;}
.xa{left:415.839988pt;}
.x4{left:497.786667pt;}
.xc{left:499.386655pt;}
.xb{left:522.746655pt;}
.x2{left:703.613322pt;}
.x1{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; }
  