
    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_6dcb1b875d9788ed6685b187.woff')format("woff");}.ff1{font-family:ff1;line-height:1.500488;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_53e8eab41624576abc8e9777.woff')format("woff");}.ff2{font-family:ff2;line-height:1.500488;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_3f8b31b6a794f47dbd41d7dd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_2c9a0c731079246c37e74444.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v2{vertical-align:-103.200000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.560000px;}
.ls4{letter-spacing:-0.768000px;}
.lsa{letter-spacing:-0.408000px;}
.ls12{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.228000px;}
.ls7{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.252980px;}
.lse{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.768000px;}
.ls8{letter-spacing:3.768000px;}
.lsc{letter-spacing:76.980000px;}
.ls6{letter-spacing:149.568000px;}
.ls10{letter-spacing:150.168000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(70,120,134),0 0.015em rgb(70,120,134),0.015em 0 rgb(70,120,134),0 -0.015em  rgb(70,120,134);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(70,120,134);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.326187px;}
.ws3{word-spacing:-20.400000px;}
.ws8{word-spacing:-20.256000px;}
.ws2{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.184000px;}
.ws7{word-spacing:-19.992000px;}
.ws9{word-spacing:-18.672000px;}
.ws0{word-spacing:-16.860000px;}
.ws5{word-spacing:-11.802000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:3.845291px;}
._f{margin-left:-7.782000px;}
._12{margin-left:-5.904447px;}
._8{margin-left:-4.500000px;}
._9{margin-left:-3.180000px;}
._0{margin-left:-2.016000px;}
._7{margin-left:-1.002000px;}
._1{width:1.092000px;}
._3{width:2.232000px;}
._c{width:3.282000px;}
._4{width:4.464000px;}
._2{width:5.472000px;}
._6{width:7.440000px;}
._5{width:8.568000px;}
._a{width:10.212000px;}
._b{width:11.580000px;}
._d{width:13.536000px;}
._e{width:14.856000px;}
._1a{width:16.728000px;}
._10{width:18.000000px;}
._11{width:19.134000px;}
._19{width:20.304494px;}
._1e{width:23.616000px;}
._1f{width:24.711928px;}
._1b{width:30.312000px;}
._13{width:32.976000px;}
._15{width:34.756713px;}
._14{width:35.889636px;}
._20{width:62.610000px;}
._18{width:67.032000px;}
._17{width:68.052000px;}
._16{width:76.884000px;}
._1d{width:105.264000px;}
._1c{width:112.019404px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.050000px;}
.y2{bottom:4.350000px;}
.y5{bottom:25.500000px;}
.y4{bottom:47.100000px;}
.y8{bottom:58.537500px;}
.y3{bottom:68.550000px;}
.y30{bottom:78.787500px;}
.y2e{bottom:119.887500px;}
.y58{bottom:127.837500px;}
.y2d{bottom:145.687500px;}
.y57{bottom:153.630000px;}
.y2c{bottom:171.495000px;}
.y56{bottom:179.595000px;}
.y2b{bottom:197.295000px;}
.y55{bottom:205.380000px;}
.y2a{bottom:223.095000px;}
.y54{bottom:231.195000px;}
.y29{bottom:248.880000px;}
.y53{bottom:256.995000px;}
.y59{bottom:262.695000px;}
.y28{bottom:274.845000px;}
.y52{bottom:282.795000px;}
.y27{bottom:300.630000px;}
.y51{bottom:308.595000px;}
.y26{bottom:326.445000px;}
.y50{bottom:334.380000px;}
.y25{bottom:352.245000px;}
.y4f{bottom:360.330000px;}
.y24{bottom:378.075000px;}
.y4e{bottom:386.175000px;}
.y23{bottom:403.875000px;}
.y4d{bottom:411.975000px;}
.y22{bottom:429.675000px;}
.y4c{bottom:437.775000px;}
.y21{bottom:455.625000px;}
.y4b{bottom:463.575000px;}
.y20{bottom:481.425000px;}
.y4a{bottom:489.375000px;}
.y1f{bottom:507.225000px;}
.y49{bottom:515.175000px;}
.y1e{bottom:533.025000px;}
.y48{bottom:541.125000px;}
.y1d{bottom:558.825000px;}
.y47{bottom:566.925000px;}
.y1c{bottom:584.625000px;}
.y46{bottom:592.725000px;}
.y1b{bottom:610.575000px;}
.y45{bottom:618.525000px;}
.y1a{bottom:636.375000px;}
.y44{bottom:644.325000px;}
.y19{bottom:662.175000px;}
.y43{bottom:670.125000px;}
.y18{bottom:687.975000px;}
.y42{bottom:695.925000px;}
.y17{bottom:713.775000px;}
.y41{bottom:721.875000px;}
.y16{bottom:739.620000px;}
.y40{bottom:747.720000px;}
.y15{bottom:765.405000px;}
.y3f{bottom:773.520000px;}
.y14{bottom:791.370000px;}
.y3e{bottom:799.320000px;}
.y13{bottom:817.170000px;}
.y3d{bottom:825.120000px;}
.y12{bottom:842.955000px;}
.y3c{bottom:850.920000px;}
.y11{bottom:868.770000px;}
.y3b{bottom:876.870000px;}
.y10{bottom:894.570000px;}
.y3a{bottom:902.670000px;}
.yf{bottom:920.370000px;}
.y39{bottom:928.455000px;}
.ye{bottom:946.170000px;}
.y38{bottom:954.270000px;}
.yd{bottom:972.120000px;}
.y37{bottom:980.070000px;}
.yc{bottom:997.920000px;}
.y36{bottom:1005.870000px;}
.yb{bottom:1023.705000px;}
.y35{bottom:1031.670000px;}
.ya{bottom:1049.520000px;}
.y34{bottom:1057.620000px;}
.y9{bottom:1076.070000px;}
.y33{bottom:1083.420000px;}
.y7{bottom:1105.500000px;}
.y32{bottom:1109.250000px;}
.y1{bottom:1122.450000px;}
.y31{bottom:1135.050000px;}
.y2f{bottom:1193.100000px;}
.h4{height:57.202148px;}
.h3{height:63.222656px;}
.h6{height:75.867188px;}
.h7{height:79.970238px;}
.h2{height:86.100000px;}
.h5{height:88.511719px;}
.h1{height:1262.250000px;}
.h0{height:1262.550000px;}
.w3{width:50.850000px;}
.w4{width:329.775000px;}
.w2{width:331.830000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:106.387500px;}
.x39{left:134.887487px;}
.x6{left:148.987487px;}
.x3b{left:170.429987px;}
.x11{left:174.929987px;}
.x2{left:176.857500px;}
.xa{left:180.494987px;}
.x14{left:183.479987px;}
.xd{left:185.144987px;}
.x18{left:191.429987px;}
.x16{left:197.744987px;}
.x25{left:210.344987px;}
.x32{left:216.494987px;}
.x26{left:220.844987px;}
.x27{left:231.044987px;}
.x2a{left:232.844987px;}
.x28{left:243.494987px;}
.x33{left:248.144987px;}
.x19{left:250.994987px;}
.x24{left:253.094987px;}
.xb{left:259.379987px;}
.x22{left:280.994987px;}
.x1f{left:282.644987px;}
.x38{left:291.794987px;}
.x3c{left:300.044987px;}
.x31{left:302.894987px;}
.x1d{left:311.444987px;}
.xe{left:339.824987px;}
.x12{left:341.774987px;}
.x36{left:345.074987px;}
.x15{left:355.574987px;}
.x1b{left:361.424987px;}
.x17{left:375.674987px;}
.x35{left:387.824987px;}
.x7{left:394.874987px;}
.xc{left:426.374987px;}
.x3{left:438.225000px;}
.x2c{left:442.424987px;}
.x20{left:451.724987px;}
.x8{left:473.174987px;}
.x5{left:489.075000px;}
.x2d{left:494.924987px;}
.x29{left:506.474987px;}
.x2e{left:532.424987px;}
.x37{left:541.724987px;}
.x2b{left:555.569987px;}
.x2f{left:557.669987px;}
.x1a{left:565.469987px;}
.xf{left:618.254987px;}
.x1c{left:658.004987px;}
.x21{left:667.904987px;}
.x34{left:674.969987px;}
.x10{left:691.169987px;}
.x23{left:694.904987px;}
.x9{left:712.919987px;}
.x3a{left:733.004987px;}
.x1e{left:734.219987px;}
.x30{left:758.969987px;}
.x13{left:778.199987px;}
@media print{
.v2{vertical-align:-91.733333pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.386667pt;}
.ls4{letter-spacing:-0.682667pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls12{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.202667pt;}
.ls7{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.224871pt;}
.lse{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.682667pt;}
.ls8{letter-spacing:3.349333pt;}
.lsc{letter-spacing:68.426667pt;}
.ls6{letter-spacing:132.949333pt;}
.ls10{letter-spacing:133.482667pt;}
.ws1{word-spacing:-18.956611pt;}
.ws3{word-spacing:-18.133333pt;}
.ws8{word-spacing:-18.005333pt;}
.ws2{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.941333pt;}
.ws7{word-spacing:-17.770667pt;}
.ws9{word-spacing:-16.597333pt;}
.ws0{word-spacing:-14.986667pt;}
.ws5{word-spacing:-10.490667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:3.418037pt;}
._f{margin-left:-6.917333pt;}
._12{margin-left:-5.248397pt;}
._8{margin-left:-4.000000pt;}
._9{margin-left:-2.826667pt;}
._0{margin-left:-1.792000pt;}
._7{margin-left:-0.890667pt;}
._1{width:0.970667pt;}
._3{width:1.984000pt;}
._c{width:2.917333pt;}
._4{width:3.968000pt;}
._2{width:4.864000pt;}
._6{width:6.613333pt;}
._5{width:7.616000pt;}
._a{width:9.077333pt;}
._b{width:10.293333pt;}
._d{width:12.032000pt;}
._e{width:13.205333pt;}
._1a{width:14.869333pt;}
._10{width:16.000000pt;}
._11{width:17.008000pt;}
._19{width:18.048439pt;}
._1e{width:20.992000pt;}
._1f{width:21.966158pt;}
._1b{width:26.944000pt;}
._13{width:29.312000pt;}
._15{width:30.894856pt;}
._14{width:31.901899pt;}
._20{width:55.653333pt;}
._18{width:59.584000pt;}
._17{width:60.490667pt;}
._16{width:68.341333pt;}
._1d{width:93.568000pt;}
._1c{width:99.572803pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.600000pt;}
.y2{bottom:3.866667pt;}
.y5{bottom:22.666667pt;}
.y4{bottom:41.866667pt;}
.y8{bottom:52.033333pt;}
.y3{bottom:60.933333pt;}
.y30{bottom:70.033333pt;}
.y2e{bottom:106.566667pt;}
.y58{bottom:113.633333pt;}
.y2d{bottom:129.500000pt;}
.y57{bottom:136.560000pt;}
.y2c{bottom:152.440000pt;}
.y56{bottom:159.640000pt;}
.y2b{bottom:175.373333pt;}
.y55{bottom:182.560000pt;}
.y2a{bottom:198.306667pt;}
.y54{bottom:205.506667pt;}
.y29{bottom:221.226667pt;}
.y53{bottom:228.440000pt;}
.y59{bottom:233.506667pt;}
.y28{bottom:244.306667pt;}
.y52{bottom:251.373333pt;}
.y27{bottom:267.226667pt;}
.y51{bottom:274.306667pt;}
.y26{bottom:290.173333pt;}
.y50{bottom:297.226667pt;}
.y25{bottom:313.106667pt;}
.y4f{bottom:320.293333pt;}
.y24{bottom:336.066667pt;}
.y4e{bottom:343.266667pt;}
.y23{bottom:359.000000pt;}
.y4d{bottom:366.200000pt;}
.y22{bottom:381.933333pt;}
.y4c{bottom:389.133333pt;}
.y21{bottom:405.000000pt;}
.y4b{bottom:412.066667pt;}
.y20{bottom:427.933333pt;}
.y4a{bottom:435.000000pt;}
.y1f{bottom:450.866667pt;}
.y49{bottom:457.933333pt;}
.y1e{bottom:473.800000pt;}
.y48{bottom:481.000000pt;}
.y1d{bottom:496.733333pt;}
.y47{bottom:503.933333pt;}
.y1c{bottom:519.666667pt;}
.y46{bottom:526.866667pt;}
.y1b{bottom:542.733333pt;}
.y45{bottom:549.800000pt;}
.y1a{bottom:565.666667pt;}
.y44{bottom:572.733333pt;}
.y19{bottom:588.600000pt;}
.y43{bottom:595.666667pt;}
.y18{bottom:611.533333pt;}
.y42{bottom:618.600000pt;}
.y17{bottom:634.466667pt;}
.y41{bottom:641.666667pt;}
.y16{bottom:657.440000pt;}
.y40{bottom:664.640000pt;}
.y15{bottom:680.360000pt;}
.y3f{bottom:687.573333pt;}
.y14{bottom:703.440000pt;}
.y3e{bottom:710.506667pt;}
.y13{bottom:726.373333pt;}
.y3d{bottom:733.440000pt;}
.y12{bottom:749.293333pt;}
.y3c{bottom:756.373333pt;}
.y11{bottom:772.240000pt;}
.y3b{bottom:779.440000pt;}
.y10{bottom:795.173333pt;}
.y3a{bottom:802.373333pt;}
.yf{bottom:818.106667pt;}
.y39{bottom:825.293333pt;}
.ye{bottom:841.040000pt;}
.y38{bottom:848.240000pt;}
.yd{bottom:864.106667pt;}
.y37{bottom:871.173333pt;}
.yc{bottom:887.040000pt;}
.y36{bottom:894.106667pt;}
.yb{bottom:909.960000pt;}
.y35{bottom:917.040000pt;}
.ya{bottom:932.906667pt;}
.y34{bottom:940.106667pt;}
.y9{bottom:956.506667pt;}
.y33{bottom:963.040000pt;}
.y7{bottom:982.666667pt;}
.y32{bottom:986.000000pt;}
.y1{bottom:997.733333pt;}
.y31{bottom:1008.933333pt;}
.y2f{bottom:1060.533333pt;}
.h4{height:50.846354pt;}
.h3{height:56.197917pt;}
.h6{height:67.437500pt;}
.h7{height:71.084656pt;}
.h2{height:76.533333pt;}
.h5{height:78.677083pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.266667pt;}
.w3{width:45.200000pt;}
.w4{width:293.133333pt;}
.w2{width:294.960000pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:94.566667pt;}
.x39{left:119.899988pt;}
.x6{left:132.433322pt;}
.x3b{left:151.493322pt;}
.x11{left:155.493322pt;}
.x2{left:157.206667pt;}
.xa{left:160.439988pt;}
.x14{left:163.093322pt;}
.xd{left:164.573322pt;}
.x18{left:170.159988pt;}
.x16{left:175.773322pt;}
.x25{left:186.973322pt;}
.x32{left:192.439988pt;}
.x26{left:196.306655pt;}
.x27{left:205.373322pt;}
.x2a{left:206.973322pt;}
.x28{left:216.439988pt;}
.x33{left:220.573322pt;}
.x19{left:223.106655pt;}
.x24{left:224.973322pt;}
.xb{left:230.559988pt;}
.x22{left:249.773322pt;}
.x1f{left:251.239988pt;}
.x38{left:259.373322pt;}
.x3c{left:266.706655pt;}
.x31{left:269.239988pt;}
.x1d{left:276.839988pt;}
.xe{left:302.066655pt;}
.x12{left:303.799988pt;}
.x36{left:306.733322pt;}
.x15{left:316.066655pt;}
.x1b{left:321.266655pt;}
.x17{left:333.933322pt;}
.x35{left:344.733322pt;}
.x7{left:350.999988pt;}
.xc{left:378.999988pt;}
.x3{left:389.533333pt;}
.x2c{left:393.266655pt;}
.x20{left:401.533322pt;}
.x8{left:420.599988pt;}
.x5{left:434.733333pt;}
.x2d{left:439.933322pt;}
.x29{left:450.199988pt;}
.x2e{left:473.266655pt;}
.x37{left:481.533322pt;}
.x2b{left:493.839988pt;}
.x2f{left:495.706655pt;}
.x1a{left:502.639988pt;}
.xf{left:549.559988pt;}
.x1c{left:584.893322pt;}
.x21{left:593.693322pt;}
.x34{left:599.973322pt;}
.x10{left:614.373322pt;}
.x23{left:617.693322pt;}
.x9{left:633.706655pt;}
.x3a{left:651.559988pt;}
.x1e{left:652.639988pt;}
.x30{left:674.639988pt;}
.x13{left:691.733322pt;}
}




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