
    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_ed586d0d0025214177e83c15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.034180;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_b152481fa06689de5500a9f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e7af2c3f849d13b4f406b75.woff2')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_30c188f305b42e0482b36422.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bd91d4b4f8545886ba2209e5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5efc203dc8a160cd07a7c4a4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_203a45b5225cd86c69594572.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2cd56b748412deb45715bcd5.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls10{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.452400px;}
.lsf{letter-spacing:-0.178800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.900000px;}
.ls12{letter-spacing:0.987840px;}
.lse{letter-spacing:2.160000px;}
.ls7{letter-spacing:15.120000px;}
.ls11{letter-spacing:21.421440px;}
.ls9{letter-spacing:25.200000px;}
.lsa{letter-spacing:30.960000px;}
.ls6{letter-spacing:35.280000px;}
.lsc{letter-spacing:36.720000px;}
.ls5{letter-spacing:38.160000px;}
.ls4{letter-spacing:63.826560px;}
.ls2{letter-spacing:108.720000px;}
.ls1{letter-spacing:195.276000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.480000px;}
.ws0{word-spacing:-20.880000px;}
.ws3{word-spacing:-20.701200px;}
.ws4{word-spacing:-19.440000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-3.254400px;}
._2{margin-left:-1.419840px;}
._0{width:1.079040px;}
._3{width:2.685600px;}
._4{width:3.755520px;}
._7{width:4.844160px;}
._17{width:8.184960px;}
._28{width:9.811200px;}
._27{width:10.826400px;}
._a{width:11.859840px;}
._b{width:13.800960px;}
._1b{width:15.451200px;}
._1c{width:16.455360px;}
._9{width:17.506080px;}
._8{width:18.541440px;}
._1d{width:19.771680px;}
._5{width:22.058880px;}
._6{width:23.212320px;}
._22{width:25.038240px;}
._23{width:26.734080px;}
._26{width:28.487040px;}
._24{width:29.965920px;}
._25{width:31.925280px;}
._21{width:33.247680px;}
._1f{width:34.361280px;}
._c{width:35.669760px;}
._20{width:36.929280px;}
._1e{width:38.145600px;}
._1a{width:39.261120px;}
._19{width:41.432640px;}
._2c{width:46.090560px;}
._13{width:47.522880px;}
._12{width:48.865920px;}
._14{width:50.452800px;}
._2a{width:62.994240px;}
._29{width:64.442880px;}
._2b{width:65.673600px;}
._16{width:72.662400px;}
._15{width:74.180160px;}
._18{width:81.264960px;}
._10{width:85.440960px;}
._f{width:86.707200px;}
._11{width:104.156160px;}
._d{width:108.509760px;}
._e{width:109.560960px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:60.480000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.400000px;}
.y3{bottom:43.560000px;}
.y2d{bottom:57.960000px;}
.y1d{bottom:63.720000px;}
.y3a{bottom:73.476000px;}
.y2{bottom:86.040000px;}
.y1c{bottom:100.116000px;}
.y2c{bottom:115.236000px;}
.y46{bottom:124.596000px;}
.y39{bottom:130.716000px;}
.y1b{bottom:136.476000px;}
.y2b{bottom:151.590000px;}
.y38{bottom:166.710000px;}
.y51{bottom:172.470000px;}
.y45{bottom:181.470000px;}
.y2a{bottom:187.590000px;}
.y1a{bottom:193.755000px;}
.y37{bottom:203.115000px;}
.y50{bottom:208.875000px;}
.y29{bottom:223.995000px;}
.y19{bottom:229.755000px;}
.y36{bottom:239.115000px;}
.y4f{bottom:244.875000px;}
.y28{bottom:260.355000px;}
.y18{bottom:266.115000px;}
.y35{bottom:275.475000px;}
.y4e{bottom:281.235000px;}
.y27{bottom:296.355000px;}
.y17{bottom:302.115000px;}
.y44{bottom:311.835000px;}
.y34{bottom:332.745000px;}
.y16{bottom:338.505000px;}
.y43{bottom:347.865000px;}
.y26{bottom:353.625000px;}
.y15{bottom:374.865000px;}
.y42{bottom:384.225000px;}
.y33{bottom:389.625000px;}
.y25{bottom:389.985000px;}
.y14{bottom:410.865000px;}
.y4d{bottom:432.105000px;}
.y41{bottom:441.465000px;}
.y24{bottom:446.910000px;}
.y32{bottom:447.270000px;}
.y13{bottom:468.150000px;}
.y31{bottom:483.270000px;}
.y40{bottom:498.390000px;}
.y12{bottom:504.510000px;}
.y3f{bottom:534.390000px;}
.y11{bottom:540.510000px;}
.y10{bottom:576.900000px;}
.y3e{bottom:592.020000px;}
.yf{bottom:613.260000px;}
.y3d{bottom:628.380000px;}
.ye{bottom:649.260000px;}
.y4c{bottom:670.140000px;}
.yd{bottom:685.260000px;}
.y23{bottom:685.620000px;}
.y22{bottom:721.650000px;}
.y4b{bottom:727.770000px;}
.yc{bottom:742.890000px;}
.y30{bottom:758.010000px;}
.y4a{bottom:763.770000px;}
.y21{bottom:778.530000px;}
.yb{bottom:778.890000px;}
.y2f{bottom:794.370000px;}
.y52{bottom:800.130000px;}
.y49{bottom:821.010000px;}
.y3c{bottom:830.415000px;}
.ya{bottom:836.175000px;}
.y2e{bottom:851.655000px;}
.y48{bottom:857.415000px;}
.y9{bottom:872.535000px;}
.y3b{bottom:887.655000px;}
.y47{bottom:893.415000px;}
.y8{bottom:908.535000px;}
.y20{bottom:929.775000px;}
.y7{bottom:944.535000px;}
.y1f{bottom:966.165000px;}
.y6{bottom:1001.805000px;}
.y1e{bottom:1002.165000px;}
.y1{bottom:1084.290000px;}
.y5{bottom:1262.160000px;}
.h9{height:58.317187px;}
.h6{height:59.357813px;}
.h8{height:68.838750px;}
.h7{height:81.929531px;}
.h4{height:81.970312px;}
.h5{height:84.172500px;}
.ha{height:85.845399px;}
.h3{height:100.728281px;}
.h2{height:115.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:277.665000px;}
.w3{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x3{left:18.360000px;}
.x4{left:93.645000px;}
.x5{left:118.475987px;}
.xe{left:145.511987px;}
.xd{left:171.434987px;}
.xf{left:172.514987px;}
.xb{left:229.064987px;}
.x8{left:247.784987px;}
.x9{left:252.464987px;}
.x7{left:288.104987px;}
.x6{left:290.984987px;}
.xa{left:305.744987px;}
.xc{left:374.549987px;}
.x1{left:553.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.402133pt;}
.lsf{letter-spacing:-0.158933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.878080pt;}
.lse{letter-spacing:1.920000pt;}
.ls7{letter-spacing:13.440000pt;}
.ls11{letter-spacing:19.041280pt;}
.ls9{letter-spacing:22.400000pt;}
.lsa{letter-spacing:27.520000pt;}
.ls6{letter-spacing:31.360000pt;}
.lsc{letter-spacing:32.640000pt;}
.ls5{letter-spacing:33.920000pt;}
.ls4{letter-spacing:56.734720pt;}
.ls2{letter-spacing:96.640000pt;}
.ls1{letter-spacing:173.578667pt;}
.ws2{word-spacing:-53.760000pt;}
.ws0{word-spacing:-18.560000pt;}
.ws3{word-spacing:-18.401067pt;}
.ws4{word-spacing:-17.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-2.892800pt;}
._2{margin-left:-1.262080pt;}
._0{width:0.959147pt;}
._3{width:2.387200pt;}
._4{width:3.338240pt;}
._7{width:4.305920pt;}
._17{width:7.275520pt;}
._28{width:8.721067pt;}
._27{width:9.623467pt;}
._a{width:10.542080pt;}
._b{width:12.267520pt;}
._1b{width:13.734400pt;}
._1c{width:14.626987pt;}
._9{width:15.560960pt;}
._8{width:16.481280pt;}
._1d{width:17.574827pt;}
._5{width:19.607893pt;}
._6{width:20.633173pt;}
._22{width:22.256213pt;}
._23{width:23.763627pt;}
._26{width:25.321813pt;}
._24{width:26.636373pt;}
._25{width:28.378027pt;}
._21{width:29.553493pt;}
._1f{width:30.543360pt;}
._c{width:31.706453pt;}
._20{width:32.826027pt;}
._1e{width:33.907200pt;}
._1a{width:34.898773pt;}
._19{width:36.829013pt;}
._2c{width:40.969387pt;}
._13{width:42.242560pt;}
._12{width:43.436373pt;}
._14{width:44.846933pt;}
._2a{width:55.994880pt;}
._29{width:57.282560pt;}
._2b{width:58.376533pt;}
._16{width:64.588800pt;}
._15{width:65.937920pt;}
._18{width:72.235520pt;}
._10{width:75.947520pt;}
._f{width:77.073067pt;}
._11{width:92.583253pt;}
._d{width:96.453120pt;}
._e{width:97.387520pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.800000pt;}
.y3{bottom:38.720000pt;}
.y2d{bottom:51.520000pt;}
.y1d{bottom:56.640000pt;}
.y3a{bottom:65.312000pt;}
.y2{bottom:76.480000pt;}
.y1c{bottom:88.992000pt;}
.y2c{bottom:102.432000pt;}
.y46{bottom:110.752000pt;}
.y39{bottom:116.192000pt;}
.y1b{bottom:121.312000pt;}
.y2b{bottom:134.746667pt;}
.y38{bottom:148.186667pt;}
.y51{bottom:153.306667pt;}
.y45{bottom:161.306667pt;}
.y2a{bottom:166.746667pt;}
.y1a{bottom:172.226667pt;}
.y37{bottom:180.546667pt;}
.y50{bottom:185.666667pt;}
.y29{bottom:199.106667pt;}
.y19{bottom:204.226667pt;}
.y36{bottom:212.546667pt;}
.y4f{bottom:217.666667pt;}
.y28{bottom:231.426667pt;}
.y18{bottom:236.546667pt;}
.y35{bottom:244.866667pt;}
.y4e{bottom:249.986667pt;}
.y27{bottom:263.426667pt;}
.y17{bottom:268.546667pt;}
.y44{bottom:277.186667pt;}
.y34{bottom:295.773333pt;}
.y16{bottom:300.893333pt;}
.y43{bottom:309.213333pt;}
.y26{bottom:314.333333pt;}
.y15{bottom:333.213333pt;}
.y42{bottom:341.533333pt;}
.y33{bottom:346.333333pt;}
.y25{bottom:346.653333pt;}
.y14{bottom:365.213333pt;}
.y4d{bottom:384.093333pt;}
.y41{bottom:392.413333pt;}
.y24{bottom:397.253333pt;}
.y32{bottom:397.573333pt;}
.y13{bottom:416.133333pt;}
.y31{bottom:429.573333pt;}
.y40{bottom:443.013333pt;}
.y12{bottom:448.453333pt;}
.y3f{bottom:475.013333pt;}
.y11{bottom:480.453333pt;}
.y10{bottom:512.800000pt;}
.y3e{bottom:526.240000pt;}
.yf{bottom:545.120000pt;}
.y3d{bottom:558.560000pt;}
.ye{bottom:577.120000pt;}
.y4c{bottom:595.680000pt;}
.yd{bottom:609.120000pt;}
.y23{bottom:609.440000pt;}
.y22{bottom:641.466667pt;}
.y4b{bottom:646.906667pt;}
.yc{bottom:660.346667pt;}
.y30{bottom:673.786667pt;}
.y4a{bottom:678.906667pt;}
.y21{bottom:692.026667pt;}
.yb{bottom:692.346667pt;}
.y2f{bottom:706.106667pt;}
.y52{bottom:711.226667pt;}
.y49{bottom:729.786667pt;}
.y3c{bottom:738.146667pt;}
.ya{bottom:743.266667pt;}
.y2e{bottom:757.026667pt;}
.y48{bottom:762.146667pt;}
.y9{bottom:775.586667pt;}
.y3b{bottom:789.026667pt;}
.y47{bottom:794.146667pt;}
.y8{bottom:807.586667pt;}
.y20{bottom:826.466667pt;}
.y7{bottom:839.586667pt;}
.y1f{bottom:858.813333pt;}
.y6{bottom:890.493333pt;}
.y1e{bottom:890.813333pt;}
.y1{bottom:963.813333pt;}
.y5{bottom:1121.920000pt;}
.h9{height:51.837500pt;}
.h6{height:52.762500pt;}
.h8{height:61.190000pt;}
.h7{height:72.826250pt;}
.h4{height:72.862500pt;}
.h5{height:74.820000pt;}
.ha{height:76.307021pt;}
.h3{height:89.536250pt;}
.h2{height:103.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:246.813333pt;}
.w3{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x3{left:16.320000pt;}
.x4{left:83.240000pt;}
.x5{left:105.311988pt;}
.xe{left:129.343988pt;}
.xd{left:152.386655pt;}
.xf{left:153.346655pt;}
.xb{left:203.613322pt;}
.x8{left:220.253322pt;}
.x9{left:224.413322pt;}
.x7{left:256.093322pt;}
.x6{left:258.653322pt;}
.xa{left:271.773322pt;}
.xc{left:332.933322pt;}
.x1{left:491.706667pt;}
}




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