
    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_5cdde2b5400fd6d92828975f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897461;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_48e2430f14880c31f022c46c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_3ea240d23514bb197f3cc57f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_ba68e07f2935009dad44d04c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_28622c3f0aab071d578c29d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_7417938e555b6f1013581917.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_1cec90b1e6e954ff7fb37061.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_74cf5a88c5b5dd6e4ced1bdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_bfd2d038b98f27f7ba75ba5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_db5578ddfcb573185b8a8c96.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.lsd{letter-spacing:30.240000px;}
.lsc{letter-spacing:38.856000px;}
.lsa{letter-spacing:54.864000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws2{word-spacing:-20.700000px;}
.ws5{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.568000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.378800px;}
._1{width:1.018800px;}
._1a{width:2.376000px;}
._4{width:3.576000px;}
._18{width:4.798800px;}
._8{width:5.832000px;}
._7{width:7.356000px;}
._11{width:8.640000px;}
._e{width:10.560000px;}
._f{width:11.916000px;}
._17{width:13.608000px;}
._2c{width:14.688000px;}
._1f{width:15.924000px;}
._20{width:16.983600px;}
._b{width:19.584000px;}
._10{width:21.288000px;}
._13{width:22.968000px;}
._3b{width:24.108000px;}
._16{width:25.128000px;}
._1d{width:26.712000px;}
._24{width:27.720000px;}
._6{width:28.776000px;}
._19{width:30.060000px;}
._9{width:31.248000px;}
._a{width:32.340000px;}
._36{width:33.349200px;}
._5{width:34.416000px;}
._15{width:35.940000px;}
._31{width:37.656000px;}
._1e{width:38.736000px;}
._29{width:40.248000px;}
._1b{width:41.472000px;}
._1c{width:42.708000px;}
._2f{width:43.848000px;}
._d{width:44.926800px;}
._c{width:46.224000px;}
._2b{width:47.376000px;}
._33{width:48.600000px;}
._32{width:49.680000px;}
._38{width:50.688000px;}
._25{width:52.005600px;}
._21{width:53.064000px;}
._14{width:54.228000px;}
._2{width:55.440000px;}
._3{width:56.532000px;}
._23{width:61.128000px;}
._40{width:62.280000px;}
._39{width:63.298800px;}
._37{width:64.368000px;}
._2d{width:66.240000px;}
._2e{width:67.248000px;}
._3f{width:68.462400px;}
._28{width:70.272000px;}
._30{width:72.216000px;}
._3c{width:78.408000px;}
._26{width:81.588000px;}
._34{width:85.896000px;}
._35{width:87.612000px;}
._3d{width:90.000000px;}
._27{width:91.872000px;}
._3a{width:112.464000px;}
._2a{width:177.912000px;}
._22{width:642.396000px;}
._3e{width:708.120000px;}
._12{width:712.236000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.636000px;}
.y2{bottom:76.536000px;}
.y20{bottom:103.716000px;}
.y5c{bottom:115.776000px;}
.y3e{bottom:117.756000px;}
.y1f{bottom:128.016000px;}
.y5b{bottom:140.076000px;}
.y3d{bottom:142.056000px;}
.y1e{bottom:152.310000px;}
.y5a{bottom:164.190000px;}
.y3c{bottom:166.350000px;}
.y1d{bottom:176.610000px;}
.y59{bottom:188.490000px;}
.y3b{bottom:190.650000px;}
.y1c{bottom:200.955000px;}
.y58{bottom:212.835000px;}
.y3a{bottom:214.995000px;}
.y1b{bottom:225.255000px;}
.y57{bottom:237.135000px;}
.y39{bottom:239.115000px;}
.y1a{bottom:249.555000px;}
.y56{bottom:261.435000px;}
.y38{bottom:263.415000px;}
.y19{bottom:273.855000px;}
.y55{bottom:285.735000px;}
.y37{bottom:287.715000px;}
.y18{bottom:298.155000px;}
.y54{bottom:310.035000px;}
.y36{bottom:312.015000px;}
.y17{bottom:322.455000px;}
.y53{bottom:334.335000px;}
.y35{bottom:336.315000px;}
.y16{bottom:346.755000px;}
.y52{bottom:358.635000px;}
.y34{bottom:360.615000px;}
.y15{bottom:371.055000px;}
.y51{bottom:382.935000px;}
.y33{bottom:384.915000px;}
.y14{bottom:395.175000px;}
.y50{bottom:407.265000px;}
.y32{bottom:409.245000px;}
.y13{bottom:419.505000px;}
.y4f{bottom:431.385000px;}
.y31{bottom:433.545000px;}
.y12{bottom:443.805000px;}
.y4e{bottom:455.685000px;}
.y30{bottom:457.845000px;}
.y11{bottom:468.105000px;}
.y4d{bottom:479.985000px;}
.y2f{bottom:482.145000px;}
.y10{bottom:492.405000px;}
.y4c{bottom:504.285000px;}
.y2e{bottom:506.265000px;}
.yf{bottom:516.705000px;}
.y4b{bottom:528.585000px;}
.y2d{bottom:530.565000px;}
.ye{bottom:541.005000px;}
.y4a{bottom:552.885000px;}
.y2c{bottom:554.865000px;}
.yd{bottom:570.165000px;}
.y49{bottom:577.185000px;}
.y2b{bottom:579.165000px;}
.yc{bottom:594.465000px;}
.y48{bottom:601.530000px;}
.y2a{bottom:603.510000px;}
.yb{bottom:618.810000px;}
.y47{bottom:625.830000px;}
.y29{bottom:627.810000px;}
.ya{bottom:643.110000px;}
.y46{bottom:650.130000px;}
.y28{bottom:652.110000px;}
.y9{bottom:667.410000px;}
.y45{bottom:674.430000px;}
.y27{bottom:676.410000px;}
.y8{bottom:691.530000px;}
.y44{bottom:698.730000px;}
.y26{bottom:700.710000px;}
.y7{bottom:720.690000px;}
.y43{bottom:722.850000px;}
.y25{bottom:725.010000px;}
.y6{bottom:744.990000px;}
.y42{bottom:747.150000px;}
.y24{bottom:749.310000px;}
.y5{bottom:769.290000px;}
.y41{bottom:771.450000px;}
.y23{bottom:773.610000px;}
.y4{bottom:794.670000px;}
.y40{bottom:795.750000px;}
.y22{bottom:797.730000px;}
.y3f{bottom:820.080000px;}
.y21{bottom:821.520000px;}
.y1{bottom:823.320000px;}
.h3{height:45.637031px;}
.h4{height:45.992812px;}
.h8{height:48.547969px;}
.h2{height:50.229844px;}
.h7{height:52.558594px;}
.h9{height:52.769531px;}
.h6{height:53.015625px;}
.h5{height:62.028281px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3{left:64.835991px;}
.x9{left:86.255991px;}
.x5{left:91.475991px;}
.xa{left:114.875991px;}
.xd{left:118.835991px;}
.xc{left:182.414991px;}
.x8{left:191.774991px;}
.xb{left:220.214991px;}
.x6{left:235.514991px;}
.x4{left:255.134991px;}
.x2{left:302.324991px;}
.x7{left:314.744991px;}
.x1{left:391.604991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsd{letter-spacing:26.880000pt;}
.lsc{letter-spacing:34.538667pt;}
.lsa{letter-spacing:48.768000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.400000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.616000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.225600pt;}
._1{width:0.905600pt;}
._1a{width:2.112000pt;}
._4{width:3.178667pt;}
._18{width:4.265600pt;}
._8{width:5.184000pt;}
._7{width:6.538667pt;}
._11{width:7.680000pt;}
._e{width:9.386667pt;}
._f{width:10.592000pt;}
._17{width:12.096000pt;}
._2c{width:13.056000pt;}
._1f{width:14.154667pt;}
._20{width:15.096533pt;}
._b{width:17.408000pt;}
._10{width:18.922667pt;}
._13{width:20.416000pt;}
._3b{width:21.429333pt;}
._16{width:22.336000pt;}
._1d{width:23.744000pt;}
._24{width:24.640000pt;}
._6{width:25.578667pt;}
._19{width:26.720000pt;}
._9{width:27.776000pt;}
._a{width:28.746667pt;}
._36{width:29.643733pt;}
._5{width:30.592000pt;}
._15{width:31.946667pt;}
._31{width:33.472000pt;}
._1e{width:34.432000pt;}
._29{width:35.776000pt;}
._1b{width:36.864000pt;}
._1c{width:37.962667pt;}
._2f{width:38.976000pt;}
._d{width:39.934933pt;}
._c{width:41.088000pt;}
._2b{width:42.112000pt;}
._33{width:43.200000pt;}
._32{width:44.160000pt;}
._38{width:45.056000pt;}
._25{width:46.227200pt;}
._21{width:47.168000pt;}
._14{width:48.202667pt;}
._2{width:49.280000pt;}
._3{width:50.250667pt;}
._23{width:54.336000pt;}
._40{width:55.360000pt;}
._39{width:56.265600pt;}
._37{width:57.216000pt;}
._2d{width:58.880000pt;}
._2e{width:59.776000pt;}
._3f{width:60.855467pt;}
._28{width:62.464000pt;}
._30{width:64.192000pt;}
._3c{width:69.696000pt;}
._26{width:72.522667pt;}
._34{width:76.352000pt;}
._35{width:77.877333pt;}
._3d{width:80.000000pt;}
._27{width:81.664000pt;}
._3a{width:99.968000pt;}
._2a{width:158.144000pt;}
._22{width:571.018667pt;}
._3e{width:629.440000pt;}
._12{width:633.098667pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.232000pt;}
.y2{bottom:68.032000pt;}
.y20{bottom:92.192000pt;}
.y5c{bottom:102.912000pt;}
.y3e{bottom:104.672000pt;}
.y1f{bottom:113.792000pt;}
.y5b{bottom:124.512000pt;}
.y3d{bottom:126.272000pt;}
.y1e{bottom:135.386667pt;}
.y5a{bottom:145.946667pt;}
.y3c{bottom:147.866667pt;}
.y1d{bottom:156.986667pt;}
.y59{bottom:167.546667pt;}
.y3b{bottom:169.466667pt;}
.y1c{bottom:178.626667pt;}
.y58{bottom:189.186667pt;}
.y3a{bottom:191.106667pt;}
.y1b{bottom:200.226667pt;}
.y57{bottom:210.786667pt;}
.y39{bottom:212.546667pt;}
.y1a{bottom:221.826667pt;}
.y56{bottom:232.386667pt;}
.y38{bottom:234.146667pt;}
.y19{bottom:243.426667pt;}
.y55{bottom:253.986667pt;}
.y37{bottom:255.746667pt;}
.y18{bottom:265.026667pt;}
.y54{bottom:275.586667pt;}
.y36{bottom:277.346667pt;}
.y17{bottom:286.626667pt;}
.y53{bottom:297.186667pt;}
.y35{bottom:298.946667pt;}
.y16{bottom:308.226667pt;}
.y52{bottom:318.786667pt;}
.y34{bottom:320.546667pt;}
.y15{bottom:329.826667pt;}
.y51{bottom:340.386667pt;}
.y33{bottom:342.146667pt;}
.y14{bottom:351.266667pt;}
.y50{bottom:362.013333pt;}
.y32{bottom:363.773333pt;}
.y13{bottom:372.893333pt;}
.y4f{bottom:383.453333pt;}
.y31{bottom:385.373333pt;}
.y12{bottom:394.493333pt;}
.y4e{bottom:405.053333pt;}
.y30{bottom:406.973333pt;}
.y11{bottom:416.093333pt;}
.y4d{bottom:426.653333pt;}
.y2f{bottom:428.573333pt;}
.y10{bottom:437.693333pt;}
.y4c{bottom:448.253333pt;}
.y2e{bottom:450.013333pt;}
.yf{bottom:459.293333pt;}
.y4b{bottom:469.853333pt;}
.y2d{bottom:471.613333pt;}
.ye{bottom:480.893333pt;}
.y4a{bottom:491.453333pt;}
.y2c{bottom:493.213333pt;}
.yd{bottom:506.813333pt;}
.y49{bottom:513.053333pt;}
.y2b{bottom:514.813333pt;}
.yc{bottom:528.413333pt;}
.y48{bottom:534.693333pt;}
.y2a{bottom:536.453333pt;}
.yb{bottom:550.053333pt;}
.y47{bottom:556.293333pt;}
.y29{bottom:558.053333pt;}
.ya{bottom:571.653333pt;}
.y46{bottom:577.893333pt;}
.y28{bottom:579.653333pt;}
.y9{bottom:593.253333pt;}
.y45{bottom:599.493333pt;}
.y27{bottom:601.253333pt;}
.y8{bottom:614.693333pt;}
.y44{bottom:621.093333pt;}
.y26{bottom:622.853333pt;}
.y7{bottom:640.613333pt;}
.y43{bottom:642.533333pt;}
.y25{bottom:644.453333pt;}
.y6{bottom:662.213333pt;}
.y42{bottom:664.133333pt;}
.y24{bottom:666.053333pt;}
.y5{bottom:683.813333pt;}
.y41{bottom:685.733333pt;}
.y23{bottom:687.653333pt;}
.y4{bottom:706.373333pt;}
.y40{bottom:707.333333pt;}
.y22{bottom:709.093333pt;}
.y3f{bottom:728.960000pt;}
.y21{bottom:730.240000pt;}
.y1{bottom:731.840000pt;}
.h3{height:40.566250pt;}
.h4{height:40.882500pt;}
.h8{height:43.153750pt;}
.h2{height:44.648750pt;}
.h7{height:46.718750pt;}
.h9{height:46.906250pt;}
.h6{height:47.125000pt;}
.h5{height:55.136250pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3{left:57.631992pt;}
.x9{left:76.671992pt;}
.x5{left:81.311992pt;}
.xa{left:102.111992pt;}
.xd{left:105.631992pt;}
.xc{left:162.146658pt;}
.x8{left:170.466658pt;}
.xb{left:195.746658pt;}
.x6{left:209.346658pt;}
.x4{left:226.786658pt;}
.x2{left:268.733325pt;}
.x7{left:279.773325pt;}
.x1{left:348.093325pt;}
}




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