
    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_886ea6f5a22f5336ced30dfa.woff')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_f8b6fb2139ae9650a6e9b57d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b32e075ed4a8199c17bb44fb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_2a2905b05def6ff4b5264c86.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_35d74a8a051da8761dae9601.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_8df134d722b6ac5a24945e41.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_589d817f02ea6ccbb34ff18d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c83c865f728efdcc0caf1045.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_717fc75321627a760153156d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_92eabb8096af9bdfd2d2a08e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls6{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.187200px;}
.ls3{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:7.740000px;}
.lsb{letter-spacing:11.340000px;}
.ls9{letter-spacing:14.940000px;}
.lsa{letter-spacing:18.540000px;}
.lsc{letter-spacing:122.741280px;}
.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;}
}
.ws0{word-spacing:-21.795720px;}
.ws8{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.312720px;}
.ws5{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.620000px;}
.ws3{word-spacing:-14.970240px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-6.592800px;}
._1f{margin-left:-5.559840px;}
._d{margin-left:-4.435680px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.657200px;}
._2{width:1.651680px;}
._12{width:2.848560px;}
._5{width:4.717440px;}
._6{width:6.178560px;}
._13{width:7.737120px;}
._15{width:9.219120px;}
._7{width:10.894080px;}
._4{width:12.214800px;}
._3{width:13.269120px;}
._16{width:14.573520px;}
._17{width:15.585840px;}
._18{width:17.157120px;}
._25{width:18.858240px;}
._2b{width:20.005440px;}
._e{width:22.127520px;}
._1b{width:24.598080px;}
._11{width:25.631040px;}
._21{width:27.209520px;}
._22{width:28.480080px;}
._1c{width:30.356880px;}
._a{width:31.590000px;}
._b{width:32.694000px;}
._8{width:34.032960px;}
._9{width:35.521680px;}
._14{width:37.206480px;}
._1d{width:38.721120px;}
._1e{width:39.761280px;}
._f{width:47.764080px;}
._10{width:48.860880px;}
._1a{width:52.565760px;}
._19{width:53.886000px;}
._24{width:57.676800px;}
._23{width:59.698560px;}
._26{width:66.465360px;}
._c{width:69.754080px;}
._28{width:161.993520px;}
._27{width:163.004400px;}
._31{width:291.246720px;}
._30{width:292.312800px;}
._2c{width:305.538480px;}
._2d{width:306.549360px;}
._2a{width:545.454000px;}
._29{width:546.605760px;}
._2e{width:674.650560px;}
._2f{width:1046.907120px;}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y39{bottom:8.100000px;}
.y33{bottom:8.145000px;}
.y3e{bottom:8.280000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y3c{bottom:35.820000px;}
.y32{bottom:35.865000px;}
.y38{bottom:36.000000px;}
.y5b{bottom:62.820000px;}
.y42{bottom:63.540000px;}
.y37{bottom:63.720000px;}
.y30{bottom:65.700000px;}
.y2{bottom:72.720000px;}
.y3a{bottom:83.196000px;}
.y5a{bottom:90.576000px;}
.y3b{bottom:91.434000px;}
.y36{bottom:91.440000px;}
.y2f{bottom:93.636000px;}
.y59{bottom:118.296000px;}
.y41{bottom:119.160000px;}
.y35{bottom:119.340000px;}
.y2e{bottom:121.356000px;}
.y58{bottom:146.196000px;}
.y2d{bottom:149.076000px;}
.y57{bottom:173.910000px;}
.y2c{bottom:176.790000px;}
.y34{bottom:194.970000px;}
.y56{bottom:201.630000px;}
.y2b{bottom:204.690000px;}
.y55{bottom:229.350000px;}
.y2a{bottom:232.410000px;}
.y54{bottom:257.250000px;}
.y29{bottom:260.130000px;}
.y53{bottom:284.970000px;}
.y28{bottom:288.030000px;}
.y52{bottom:312.690000px;}
.y27{bottom:315.750000px;}
.y31{bottom:334.650000px;}
.y51{bottom:340.455000px;}
.y26{bottom:343.515000px;}
.y50{bottom:368.355000px;}
.y25{bottom:371.235000px;}
.y4f{bottom:396.075000px;}
.y24{bottom:399.135000px;}
.y4e{bottom:423.795000px;}
.y23{bottom:426.855000px;}
.y4d{bottom:451.695000px;}
.y22{bottom:454.575000px;}
.y4c{bottom:479.415000px;}
.y21{bottom:482.475000px;}
.y4b{bottom:507.135000px;}
.y20{bottom:510.195000px;}
.y4a{bottom:534.855000px;}
.y1f{bottom:537.915000px;}
.y49{bottom:562.755000px;}
.y1e{bottom:565.635000px;}
.y48{bottom:590.475000px;}
.y1d{bottom:593.535000px;}
.y47{bottom:618.225000px;}
.y1c{bottom:621.285000px;}
.y46{bottom:646.125000px;}
.y1b{bottom:649.005000px;}
.y45{bottom:673.845000px;}
.y1a{bottom:676.725000px;}
.y44{bottom:701.565000px;}
.y19{bottom:704.625000px;}
.y43{bottom:729.285000px;}
.y18{bottom:732.345000px;}
.y40{bottom:749.805000px;}
.y17{bottom:760.065000px;}
.y16{bottom:787.965000px;}
.y15{bottom:815.685000px;}
.y14{bottom:843.405000px;}
.y13{bottom:871.125000px;}
.y3f{bottom:889.350000px;}
.y12{bottom:899.070000px;}
.y11{bottom:926.790000px;}
.y10{bottom:954.510000px;}
.yf{bottom:982.410000px;}
.y3d{bottom:1001.130000px;}
.ye{bottom:1010.130000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.hc{height:55.476000px;}
.h8{height:58.651172px;}
.hb{height:60.917695px;}
.h6{height:65.884219px;}
.h4{height:75.849609px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h10{height:86.585445px;}
.h2{height:92.340000px;}
.he{height:111.060000px;}
.hf{height:138.816000px;}
.hd{height:138.960000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.836000px;}
.w6{width:134.856000px;}
.w8{width:178.950000px;}
.w9{width:196.770000px;}
.w3{width:207.255000px;}
.w7{width:262.335000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x10{left:7.740000px;}
.x4{left:62.280000px;}
.x7{left:63.719987px;}
.x8{left:112.535987px;}
.x1{left:137.736000px;}
.x11{left:200.010000px;}
.xb{left:246.449987px;}
.x15{left:276.554987px;}
.xc{left:282.854987px;}
.xd{left:286.274987px;}
.x9{left:336.674987px;}
.x2{left:340.269000px;}
.x14{left:408.134987px;}
.xa{left:451.904987px;}
.x12{left:463.065000px;}
.x13{left:642.750000px;}
.x5{left:752.550000px;}
.xf{left:766.619987px;}
.xe{left:840.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.166400pt;}
.ls3{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:6.880000pt;}
.lsb{letter-spacing:10.080000pt;}
.ls9{letter-spacing:13.280000pt;}
.lsa{letter-spacing:16.480000pt;}
.lsc{letter-spacing:109.103360pt;}
.ws0{word-spacing:-19.373973pt;}
.ws8{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.944640pt;}
.ws5{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-5.860267pt;}
._1f{margin-left:-4.942080pt;}
._d{margin-left:-3.942827pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.473067pt;}
._2{width:1.468160pt;}
._12{width:2.532053pt;}
._5{width:4.193280pt;}
._6{width:5.492053pt;}
._13{width:6.877440pt;}
._15{width:8.194773pt;}
._7{width:9.683627pt;}
._4{width:10.857600pt;}
._3{width:11.794773pt;}
._16{width:12.954240pt;}
._17{width:13.854080pt;}
._18{width:15.250773pt;}
._25{width:16.762880pt;}
._2b{width:17.782613pt;}
._e{width:19.668907pt;}
._1b{width:21.864960pt;}
._11{width:22.783147pt;}
._21{width:24.186240pt;}
._22{width:25.315627pt;}
._1c{width:26.983893pt;}
._a{width:28.080000pt;}
._b{width:29.061333pt;}
._8{width:30.251520pt;}
._9{width:31.574827pt;}
._14{width:33.072427pt;}
._1d{width:34.418773pt;}
._1e{width:35.343360pt;}
._f{width:42.456960pt;}
._10{width:43.431893pt;}
._1a{width:46.725120pt;}
._19{width:47.898667pt;}
._24{width:51.268267pt;}
._23{width:53.065387pt;}
._26{width:59.080320pt;}
._c{width:62.003627pt;}
._28{width:143.994240pt;}
._27{width:144.892800pt;}
._31{width:258.885973pt;}
._30{width:259.833600pt;}
._2c{width:271.589760pt;}
._2d{width:272.488320pt;}
._2a{width:484.848000pt;}
._29{width:485.871787pt;}
._2e{width:599.689387pt;}
._2f{width:930.584107pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y39{bottom:7.200000pt;}
.y33{bottom:7.240000pt;}
.y3e{bottom:7.360000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y3c{bottom:31.840000pt;}
.y32{bottom:31.880000pt;}
.y38{bottom:32.000000pt;}
.y5b{bottom:55.840000pt;}
.y42{bottom:56.480000pt;}
.y37{bottom:56.640000pt;}
.y30{bottom:58.400000pt;}
.y2{bottom:64.640000pt;}
.y3a{bottom:73.952000pt;}
.y5a{bottom:80.512000pt;}
.y3b{bottom:81.274667pt;}
.y36{bottom:81.280000pt;}
.y2f{bottom:83.232000pt;}
.y59{bottom:105.152000pt;}
.y41{bottom:105.920000pt;}
.y35{bottom:106.080000pt;}
.y2e{bottom:107.872000pt;}
.y58{bottom:129.952000pt;}
.y2d{bottom:132.512000pt;}
.y57{bottom:154.586667pt;}
.y2c{bottom:157.146667pt;}
.y34{bottom:173.306667pt;}
.y56{bottom:179.226667pt;}
.y2b{bottom:181.946667pt;}
.y55{bottom:203.866667pt;}
.y2a{bottom:206.586667pt;}
.y54{bottom:228.666667pt;}
.y29{bottom:231.226667pt;}
.y53{bottom:253.306667pt;}
.y28{bottom:256.026667pt;}
.y52{bottom:277.946667pt;}
.y27{bottom:280.666667pt;}
.y31{bottom:297.466667pt;}
.y51{bottom:302.626667pt;}
.y26{bottom:305.346667pt;}
.y50{bottom:327.426667pt;}
.y25{bottom:329.986667pt;}
.y4f{bottom:352.066667pt;}
.y24{bottom:354.786667pt;}
.y4e{bottom:376.706667pt;}
.y23{bottom:379.426667pt;}
.y4d{bottom:401.506667pt;}
.y22{bottom:404.066667pt;}
.y4c{bottom:426.146667pt;}
.y21{bottom:428.866667pt;}
.y4b{bottom:450.786667pt;}
.y20{bottom:453.506667pt;}
.y4a{bottom:475.426667pt;}
.y1f{bottom:478.146667pt;}
.y49{bottom:500.226667pt;}
.y1e{bottom:502.786667pt;}
.y48{bottom:524.866667pt;}
.y1d{bottom:527.586667pt;}
.y47{bottom:549.533333pt;}
.y1c{bottom:552.253333pt;}
.y46{bottom:574.333333pt;}
.y1b{bottom:576.893333pt;}
.y45{bottom:598.973333pt;}
.y1a{bottom:601.533333pt;}
.y44{bottom:623.613333pt;}
.y19{bottom:626.333333pt;}
.y43{bottom:648.253333pt;}
.y18{bottom:650.973333pt;}
.y40{bottom:666.493333pt;}
.y17{bottom:675.613333pt;}
.y16{bottom:700.413333pt;}
.y15{bottom:725.053333pt;}
.y14{bottom:749.693333pt;}
.y13{bottom:774.333333pt;}
.y3f{bottom:790.533333pt;}
.y12{bottom:799.173333pt;}
.y11{bottom:823.813333pt;}
.y10{bottom:848.453333pt;}
.yf{bottom:873.253333pt;}
.y3d{bottom:889.893333pt;}
.ye{bottom:897.893333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.hc{height:49.312000pt;}
.h8{height:52.134375pt;}
.hb{height:54.149062pt;}
.h6{height:58.563750pt;}
.h4{height:67.421875pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h10{height:76.964840pt;}
.h2{height:82.080000pt;}
.he{height:98.720000pt;}
.hf{height:123.392000pt;}
.hd{height:123.520000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.632000pt;}
.w6{width:119.872000pt;}
.w8{width:159.066667pt;}
.w9{width:174.906667pt;}
.w3{width:184.226667pt;}
.w7{width:233.186667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x10{left:6.880000pt;}
.x4{left:55.360000pt;}
.x7{left:56.639988pt;}
.x8{left:100.031988pt;}
.x1{left:122.432000pt;}
.x11{left:177.786667pt;}
.xb{left:219.066655pt;}
.x15{left:245.826655pt;}
.xc{left:251.426655pt;}
.xd{left:254.466655pt;}
.x9{left:299.266655pt;}
.x2{left:302.461333pt;}
.x14{left:362.786655pt;}
.xa{left:401.693321pt;}
.x12{left:411.613333pt;}
.x13{left:571.333333pt;}
.x5{left:668.933333pt;}
.xf{left:681.439988pt;}
.xe{left:746.879988pt;}
}




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