
    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_eab0836b974512b754b87b59.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b9562e74f75c433a7dd30a0f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bcb9de8f6ee6c13b5bbfed4f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72d1a2fcf78130e296028a88.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_01612af7ec6d140508bb8872.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2b28950adc0896f2de1350b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_adf5793498dbc55c411cdc37.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_8e061e274a44a20d45b2b251.woff')format("woff");}.ff8{font-family:ff8;line-height:0.859863;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_eff3e808700ea694988b45aa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_830522094351620abdc0714e.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;}
.ls5{letter-spacing:-1.440000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.357120px;}
.ls8{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.668160px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.797120px;}
.ls9{letter-spacing:1.800000px;}
.ls7{letter-spacing:8.064000px;}
.ls6{letter-spacing:32.400000px;}
.lsc{letter-spacing:39.600000px;}
.lsb{letter-spacing:234.156000px;}
.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;}
}
.ws9{word-spacing:-83.520000px;}
.ws1{word-spacing:-30.600000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.wsa{word-spacing:-22.680000px;}
.ws4{word-spacing:-22.320000px;}
.ws8{word-spacing:-21.510000px;}
.ws3{word-spacing:-20.880000px;}
.ws5{word-spacing:-19.440000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-4.039200px;}
._7{margin-left:-2.952480px;}
._1{margin-left:-1.601280px;}
._0{width:1.450080px;}
._3{width:2.720160px;}
._2{width:3.896160px;}
._14{width:5.882880px;}
._13{width:6.946560px;}
._19{width:8.320320px;}
._15{width:9.420960px;}
._16{width:11.066880px;}
._f{width:13.013280px;}
._5{width:14.387040px;}
._6{width:15.524640px;}
._4{width:16.620480px;}
._1c{width:18.081120px;}
._1a{width:19.396800px;}
._17{width:22.033440px;}
._18{width:23.401440px;}
._9{width:26.491680px;}
._a{width:28.144800px;}
._b{width:29.267040px;}
._1e{width:30.285600px;}
._1b{width:31.593120px;}
._12{width:32.860320px;}
._11{width:35.130240px;}
._d{width:37.202400px;}
._c{width:39.002880px;}
._e{width:40.127040px;}
._1d{width:41.408160px;}
._10{width:43.200000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y3{bottom:51.120000px;}
.y9{bottom:56.880000px;}
.y8{bottom:75.636000px;}
.y2{bottom:85.710000px;}
.y7{bottom:94.716000px;}
.y27{bottom:113.796000px;}
.y44{bottom:122.076000px;}
.y5c{bottom:131.436000px;}
.y26{bottom:132.876000px;}
.y25{bottom:138.996000px;}
.y43{bottom:147.636000px;}
.y24{bottom:152.670000px;}
.y5b{bottom:167.790000px;}
.y42{bottom:175.710000px;}
.y41{bottom:181.830000px;}
.y40{bottom:195.555000px;}
.y5a{bottom:204.195000px;}
.y23{bottom:213.915000px;}
.y3f{bottom:238.035000px;}
.y59{bottom:240.195000px;}
.y22{bottom:250.275000px;}
.y3e{bottom:274.395000px;}
.y58{bottom:276.555000px;}
.y20{bottom:287.715000px;}
.y21{bottom:294.555000px;}
.y3d{bottom:310.395000px;}
.y57{bottom:312.915000px;}
.y1f{bottom:324.825000px;}
.y3c{bottom:346.785000px;}
.y56{bottom:348.945000px;}
.y1e{bottom:361.185000px;}
.y3b{bottom:383.145000px;}
.y55{bottom:385.305000px;}
.y1d{bottom:397.185000px;}
.y3a{bottom:419.145000px;}
.y54{bottom:421.305000px;}
.y1c{bottom:433.545000px;}
.y39{bottom:455.550000px;}
.y53{bottom:457.710000px;}
.y1b{bottom:469.950000px;}
.y38{bottom:491.550000px;}
.y52{bottom:494.070000px;}
.y1a{bottom:505.950000px;}
.y37{bottom:527.910000px;}
.y51{bottom:530.070000px;}
.y19{bottom:542.310000px;}
.y36{bottom:564.270000px;}
.y50{bottom:566.430000px;}
.y18{bottom:578.340000px;}
.y35{bottom:600.300000px;}
.y4f{bottom:602.460000px;}
.y17{bottom:614.700000px;}
.y34{bottom:636.660000px;}
.y4e{bottom:638.820000px;}
.y16{bottom:651.060000px;}
.y33{bottom:673.020000px;}
.y4d{bottom:675.180000px;}
.y15{bottom:687.060000px;}
.y32{bottom:709.050000px;}
.y4c{bottom:711.210000px;}
.y14{bottom:723.450000px;}
.y31{bottom:745.410000px;}
.y4b{bottom:747.570000px;}
.y13{bottom:759.450000px;}
.y30{bottom:781.410000px;}
.y4a{bottom:783.930000px;}
.y12{bottom:795.810000px;}
.y2f{bottom:817.770000px;}
.y49{bottom:819.930000px;}
.y11{bottom:832.215000px;}
.y2e{bottom:854.175000px;}
.y48{bottom:856.335000px;}
.y10{bottom:868.215000px;}
.y2d{bottom:890.175000px;}
.y5d{bottom:891.975000px;}
.y47{bottom:892.335000px;}
.yf{bottom:904.575000px;}
.y2c{bottom:926.535000px;}
.y46{bottom:928.695000px;}
.ye{bottom:940.935000px;}
.y2a{bottom:964.365000px;}
.y45{bottom:965.085000px;}
.y2b{bottom:971.205000px;}
.yd{bottom:976.605000px;}
.y29{bottom:1001.085000px;}
.yc{bottom:1012.965000px;}
.y28{bottom:1037.445000px;}
.yb{bottom:1048.965000px;}
.ya{bottom:1073.805000px;}
.y1{bottom:1126.410000px;}
.y6{bottom:1175.730000px;}
.y5{bottom:1194.810000px;}
.hb{height:31.666641px;}
.ha{height:41.494219px;}
.h9{height:58.317187px;}
.hd{height:59.357813px;}
.h5{height:65.010937px;}
.h8{height:81.929531px;}
.h6{height:81.970312px;}
.h7{height:84.172500px;}
.hc{height:85.845399px;}
.h4{height:94.689844px;}
.h3{height:117.302344px;}
.h2{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:890.609973px;}
.w1{width:892.500000px;}
.w4{width:892.799973px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:75.635973px;}
.x4{left:127.475987px;}
.x11{left:132.875987px;}
.x6{left:152.714987px;}
.xb{left:158.474987px;}
.x2{left:161.714973px;}
.x9{left:163.154987px;}
.xd{left:169.994987px;}
.xa{left:220.034987px;}
.xc{left:226.874987px;}
.x3{left:271.544973px;}
.x12{left:301.784973px;}
.x13{left:308.624987px;}
.x10{left:343.589987px;}
.x7{left:349.709987px;}
.x14{left:377.429987px;}
.x5{left:474.299987px;}
.xe{left:475.739973px;}
.x8{left:478.259987px;}
.xf{left:482.579987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.317440pt;}
.ls8{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.593920pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.597440pt;}
.ls9{letter-spacing:1.600000pt;}
.ls7{letter-spacing:7.168000pt;}
.ls6{letter-spacing:28.800000pt;}
.lsc{letter-spacing:35.200000pt;}
.lsb{letter-spacing:208.138667pt;}
.ws9{word-spacing:-74.240000pt;}
.ws1{word-spacing:-27.200000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.wsa{word-spacing:-20.160000pt;}
.ws4{word-spacing:-19.840000pt;}
.ws8{word-spacing:-19.120000pt;}
.ws3{word-spacing:-18.560000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-3.590400pt;}
._7{margin-left:-2.624427pt;}
._1{margin-left:-1.423360pt;}
._0{width:1.288960pt;}
._3{width:2.417920pt;}
._2{width:3.463253pt;}
._14{width:5.229227pt;}
._13{width:6.174720pt;}
._19{width:7.395840pt;}
._15{width:8.374187pt;}
._16{width:9.837227pt;}
._f{width:11.567360pt;}
._5{width:12.788480pt;}
._6{width:13.799680pt;}
._4{width:14.773760pt;}
._1c{width:16.072107pt;}
._1a{width:17.241600pt;}
._17{width:19.585280pt;}
._18{width:20.801280pt;}
._9{width:23.548160pt;}
._a{width:25.017600pt;}
._b{width:26.015147pt;}
._1e{width:26.920533pt;}
._1b{width:28.082773pt;}
._12{width:29.209173pt;}
._11{width:31.226880pt;}
._d{width:33.068800pt;}
._c{width:34.669227pt;}
._e{width:35.668480pt;}
._1d{width:36.807253pt;}
._10{width:38.400000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y3{bottom:45.440000pt;}
.y9{bottom:50.560000pt;}
.y8{bottom:67.232000pt;}
.y2{bottom:76.186667pt;}
.y7{bottom:84.192000pt;}
.y27{bottom:101.152000pt;}
.y44{bottom:108.512000pt;}
.y5c{bottom:116.832000pt;}
.y26{bottom:118.112000pt;}
.y25{bottom:123.552000pt;}
.y43{bottom:131.232000pt;}
.y24{bottom:135.706667pt;}
.y5b{bottom:149.146667pt;}
.y42{bottom:156.186667pt;}
.y41{bottom:161.626667pt;}
.y40{bottom:173.826667pt;}
.y5a{bottom:181.506667pt;}
.y23{bottom:190.146667pt;}
.y3f{bottom:211.586667pt;}
.y59{bottom:213.506667pt;}
.y22{bottom:222.466667pt;}
.y3e{bottom:243.906667pt;}
.y58{bottom:245.826667pt;}
.y20{bottom:255.746667pt;}
.y21{bottom:261.826667pt;}
.y3d{bottom:275.906667pt;}
.y57{bottom:278.146667pt;}
.y1f{bottom:288.733333pt;}
.y3c{bottom:308.253333pt;}
.y56{bottom:310.173333pt;}
.y1e{bottom:321.053333pt;}
.y3b{bottom:340.573333pt;}
.y55{bottom:342.493333pt;}
.y1d{bottom:353.053333pt;}
.y3a{bottom:372.573333pt;}
.y54{bottom:374.493333pt;}
.y1c{bottom:385.373333pt;}
.y39{bottom:404.933333pt;}
.y53{bottom:406.853333pt;}
.y1b{bottom:417.733333pt;}
.y38{bottom:436.933333pt;}
.y52{bottom:439.173333pt;}
.y1a{bottom:449.733333pt;}
.y37{bottom:469.253333pt;}
.y51{bottom:471.173333pt;}
.y19{bottom:482.053333pt;}
.y36{bottom:501.573333pt;}
.y50{bottom:503.493333pt;}
.y18{bottom:514.080000pt;}
.y35{bottom:533.600000pt;}
.y4f{bottom:535.520000pt;}
.y17{bottom:546.400000pt;}
.y34{bottom:565.920000pt;}
.y4e{bottom:567.840000pt;}
.y16{bottom:578.720000pt;}
.y33{bottom:598.240000pt;}
.y4d{bottom:600.160000pt;}
.y15{bottom:610.720000pt;}
.y32{bottom:630.266667pt;}
.y4c{bottom:632.186667pt;}
.y14{bottom:643.066667pt;}
.y31{bottom:662.586667pt;}
.y4b{bottom:664.506667pt;}
.y13{bottom:675.066667pt;}
.y30{bottom:694.586667pt;}
.y4a{bottom:696.826667pt;}
.y12{bottom:707.386667pt;}
.y2f{bottom:726.906667pt;}
.y49{bottom:728.826667pt;}
.y11{bottom:739.746667pt;}
.y2e{bottom:759.266667pt;}
.y48{bottom:761.186667pt;}
.y10{bottom:771.746667pt;}
.y2d{bottom:791.266667pt;}
.y5d{bottom:792.866667pt;}
.y47{bottom:793.186667pt;}
.yf{bottom:804.066667pt;}
.y2c{bottom:823.586667pt;}
.y46{bottom:825.506667pt;}
.ye{bottom:836.386667pt;}
.y2a{bottom:857.213333pt;}
.y45{bottom:857.853333pt;}
.y2b{bottom:863.293333pt;}
.yd{bottom:868.093333pt;}
.y29{bottom:889.853333pt;}
.yc{bottom:900.413333pt;}
.y28{bottom:922.173333pt;}
.yb{bottom:932.413333pt;}
.ya{bottom:954.493333pt;}
.y1{bottom:1001.253333pt;}
.y6{bottom:1045.093333pt;}
.y5{bottom:1062.053333pt;}
.hb{height:28.148125pt;}
.ha{height:36.883750pt;}
.h9{height:51.837500pt;}
.hd{height:52.762500pt;}
.h5{height:57.787500pt;}
.h8{height:72.826250pt;}
.h6{height:72.862500pt;}
.h7{height:74.820000pt;}
.hc{height:76.307021pt;}
.h4{height:84.168750pt;}
.h3{height:104.268750pt;}
.h2{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:791.653310pt;}
.w1{width:793.333333pt;}
.w4{width:793.599976pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:67.231976pt;}
.x4{left:113.311988pt;}
.x11{left:118.111988pt;}
.x6{left:135.746655pt;}
.xb{left:140.866655pt;}
.x2{left:143.746643pt;}
.x9{left:145.026655pt;}
.xd{left:151.106655pt;}
.xa{left:195.586655pt;}
.xc{left:201.666655pt;}
.x3{left:241.373310pt;}
.x12{left:268.253310pt;}
.x13{left:274.333322pt;}
.x10{left:305.413322pt;}
.x7{left:310.853322pt;}
.x14{left:335.493322pt;}
.x5{left:421.599988pt;}
.xe{left:422.879976pt;}
.x8{left:425.119988pt;}
.xf{left:428.959988pt;}
}




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