
    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_70e5f209f8adb05a9293b08a.woff2')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_553dd2d66b20a12d7d794bc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f4f4d23d0e25ec31ea413c1c.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_d79f090fc18170e315dbc5ee.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1af9fef5b7eb6455340c4a85.woff2')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_d1a0d0ad270d9c7ae5d3b7c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_6b33b672f65677ed0f879028.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_238841663896831ed9b0d911.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_8bd05c194c4b6d5bb5fff374.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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.369600px;}
.lsd{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.341400px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378600px;}
.ls2{letter-spacing:14.940000px;}
.ls6{letter-spacing:37.980000px;}
.ls7{letter-spacing:48.780000px;}
.lsb{letter-spacing:56.477280px;}
.ls1{letter-spacing:83.340000px;}
.ls0{letter-spacing:260.460000px;}
.ls5{letter-spacing:710.640000px;}
.lse{letter-spacing:915.096000px;}
.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;}
}
.ws4{word-spacing:-84.240000px;}
.ws1{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.401400px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.690400px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-5.644080px;}
._1a{margin-left:-4.466640px;}
._7{margin-left:-3.285360px;}
._16{margin-left:-2.274480px;}
._0{margin-left:-1.263600px;}
._1{width:1.686720px;}
._12{width:3.156480px;}
._4{width:4.548960px;}
._a{width:6.065280px;}
._9{width:7.160400px;}
._26{width:8.169360px;}
._15{width:9.266400px;}
._23{width:10.445760px;}
._d{width:11.647920px;}
._11{width:13.225680px;}
._b{width:15.078960px;}
._10{width:16.258320px;}
._f{width:17.550240px;}
._27{width:18.954000px;}
._22{width:19.992240px;}
._13{width:22.660560px;}
._14{width:23.755680px;}
._1c{width:25.607040px;}
._1b{width:27.462240px;}
._21{width:28.810080px;}
._24{width:29.905200px;}
._25{width:31.084560px;}
._5{width:32.600880px;}
._6{width:33.864480px;}
._28{width:35.212320px;}
._18{width:37.346160px;}
._19{width:42.878160px;}
._8{width:44.057520px;}
._29{width:46.247760px;}
._1f{width:47.697600px;}
._20{width:48.896880px;}
._1e{width:60.484320px;}
._1d{width:61.579440px;}
._3{width:82.770720px;}
._2{width:84.192960px;}
._17{width:92.751360px;}
._c{width:481.225680px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y3a{bottom:88.416000px;}
.y39{bottom:93.636000px;}
.y48{bottom:105.696000px;}
.y38{bottom:106.956000px;}
.y47{bottom:110.916000px;}
.y46{bottom:122.976000px;}
.y45{bottom:128.196000px;}
.y2c{bottom:134.856000px;}
.y44{bottom:140.256000px;}
.y43{bottom:145.476000px;}
.y42{bottom:157.530000px;}
.y2b{bottom:159.150000px;}
.y41{bottom:162.750000px;}
.y40{bottom:176.070000px;}
.y2a{bottom:183.270000px;}
.y37{bottom:195.330000px;}
.y29{bottom:207.390000px;}
.y36{bottom:219.450000px;}
.y28{bottom:231.510000px;}
.y35{bottom:243.750000px;}
.y27{bottom:255.630000px;}
.y33{bottom:267.870000px;}
.y34{bottom:275.475000px;}
.y26{bottom:279.795000px;}
.y32{bottom:292.035000px;}
.y25{bottom:303.915000px;}
.y31{bottom:316.155000px;}
.y3f{bottom:328.215000px;}
.y30{bottom:340.275000px;}
.y24{bottom:352.335000px;}
.y2f{bottom:364.395000px;}
.y23{bottom:376.455000px;}
.y2e{bottom:388.515000px;}
.y22{bottom:400.575000px;}
.y21{bottom:424.695000px;}
.y20{bottom:448.815000px;}
.y1f{bottom:473.115000px;}
.y1e{bottom:497.235000px;}
.y1d{bottom:521.355000px;}
.y1c{bottom:545.475000px;}
.y1b{bottom:569.625000px;}
.y1a{bottom:593.745000px;}
.y3e{bottom:601.305000px;}
.y19{bottom:618.045000px;}
.y18{bottom:642.165000px;}
.y17{bottom:666.285000px;}
.y16{bottom:690.405000px;}
.y15{bottom:714.525000px;}
.y14{bottom:738.645000px;}
.y13{bottom:762.765000px;}
.y12{bottom:787.065000px;}
.y11{bottom:811.185000px;}
.y10{bottom:835.305000px;}
.yf{bottom:859.470000px;}
.ye{bottom:883.590000px;}
.y3d{bottom:891.150000px;}
.y2d{bottom:907.710000px;}
.yd{bottom:932.010000px;}
.yc{bottom:956.130000px;}
.yb{bottom:980.250000px;}
.ya{bottom:1004.370000px;}
.y3c{bottom:1011.930000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y3b{bottom:1084.290000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h9{height:38.158594px;}
.h8{height:52.998047px;}
.h3{height:57.092344px;}
.h7{height:58.490859px;}
.h6{height:58.531992px;}
.ha{height:58.651172px;}
.h5{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x23{left:90.179987px;}
.x3{left:103.895987px;}
.x1a{left:122.075987px;}
.xc{left:138.455987px;}
.x19{left:147.995987px;}
.xf{left:154.289987px;}
.xb{left:155.729987px;}
.xe{left:169.229987px;}
.x1d{left:178.589987px;}
.x16{left:186.509987px;}
.x17{left:189.749987px;}
.x20{left:207.209973px;}
.x15{left:210.809987px;}
.x1e{left:212.429987px;}
.x21{left:214.049987px;}
.x4{left:217.469987px;}
.x8{left:241.409987px;}
.x12{left:245.549987px;}
.x18{left:246.629987px;}
.xa{left:261.749987px;}
.x1f{left:268.229987px;}
.x22{left:301.394987px;}
.x11{left:312.014987px;}
.x7{left:316.334987px;}
.x14{left:321.914987px;}
.x28{left:342.254973px;}
.x29{left:349.094987px;}
.x6{left:352.694987px;}
.x10{left:369.434987px;}
.x1c{left:389.054987px;}
.x9{left:394.634987px;}
.x1b{left:401.654987px;}
.x2a{left:411.734973px;}
.x2b{left:418.574987px;}
.x13{left:421.094987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xd{left:473.114987px;}
.x24{left:591.944973px;}
.x25{left:598.784987px;}
.x2c{left:672.224973px;}
.x2d{left:679.064987px;}
.x26{left:795.749973px;}
.x27{left:802.589987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.328533pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.303467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336533pt;}
.ls2{letter-spacing:13.280000pt;}
.ls6{letter-spacing:33.760000pt;}
.ls7{letter-spacing:43.360000pt;}
.lsb{letter-spacing:50.202027pt;}
.ls1{letter-spacing:74.080000pt;}
.ls0{letter-spacing:231.520000pt;}
.ls5{letter-spacing:631.680000pt;}
.lse{letter-spacing:813.418667pt;}
.ws4{word-spacing:-74.880000pt;}
.ws1{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.023467pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.391467pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-5.016960pt;}
._1a{margin-left:-3.970347pt;}
._7{margin-left:-2.920320pt;}
._16{margin-left:-2.021760pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.499307pt;}
._12{width:2.805760pt;}
._4{width:4.043520pt;}
._a{width:5.391360pt;}
._9{width:6.364800pt;}
._26{width:7.261653pt;}
._15{width:8.236800pt;}
._23{width:9.285120pt;}
._d{width:10.353707pt;}
._11{width:11.756160pt;}
._b{width:13.403520pt;}
._10{width:14.451840pt;}
._f{width:15.600213pt;}
._27{width:16.848000pt;}
._22{width:17.770880pt;}
._13{width:20.142720pt;}
._14{width:21.116160pt;}
._1c{width:22.761813pt;}
._1b{width:24.410880pt;}
._21{width:25.608960pt;}
._24{width:26.582400pt;}
._25{width:27.630720pt;}
._5{width:28.978560pt;}
._6{width:30.101760pt;}
._28{width:31.299840pt;}
._18{width:33.196587pt;}
._19{width:38.113920pt;}
._8{width:39.162240pt;}
._29{width:41.109120pt;}
._1f{width:42.397867pt;}
._20{width:43.463893pt;}
._1e{width:53.763840pt;}
._1d{width:54.737280pt;}
._3{width:73.573973pt;}
._2{width:74.838187pt;}
._17{width:82.445653pt;}
._c{width:427.756160pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y3a{bottom:78.592000pt;}
.y39{bottom:83.232000pt;}
.y48{bottom:93.952000pt;}
.y38{bottom:95.072000pt;}
.y47{bottom:98.592000pt;}
.y46{bottom:109.312000pt;}
.y45{bottom:113.952000pt;}
.y2c{bottom:119.872000pt;}
.y44{bottom:124.672000pt;}
.y43{bottom:129.312000pt;}
.y42{bottom:140.026667pt;}
.y2b{bottom:141.466667pt;}
.y41{bottom:144.666667pt;}
.y40{bottom:156.506667pt;}
.y2a{bottom:162.906667pt;}
.y37{bottom:173.626667pt;}
.y29{bottom:184.346667pt;}
.y36{bottom:195.066667pt;}
.y28{bottom:205.786667pt;}
.y35{bottom:216.666667pt;}
.y27{bottom:227.226667pt;}
.y33{bottom:238.106667pt;}
.y34{bottom:244.866667pt;}
.y26{bottom:248.706667pt;}
.y32{bottom:259.586667pt;}
.y25{bottom:270.146667pt;}
.y31{bottom:281.026667pt;}
.y3f{bottom:291.746667pt;}
.y30{bottom:302.466667pt;}
.y24{bottom:313.186667pt;}
.y2f{bottom:323.906667pt;}
.y23{bottom:334.626667pt;}
.y2e{bottom:345.346667pt;}
.y22{bottom:356.066667pt;}
.y21{bottom:377.506667pt;}
.y20{bottom:398.946667pt;}
.y1f{bottom:420.546667pt;}
.y1e{bottom:441.986667pt;}
.y1d{bottom:463.426667pt;}
.y1c{bottom:484.866667pt;}
.y1b{bottom:506.333333pt;}
.y1a{bottom:527.773333pt;}
.y3e{bottom:534.493333pt;}
.y19{bottom:549.373333pt;}
.y18{bottom:570.813333pt;}
.y17{bottom:592.253333pt;}
.y16{bottom:613.693333pt;}
.y15{bottom:635.133333pt;}
.y14{bottom:656.573333pt;}
.y13{bottom:678.013333pt;}
.y12{bottom:699.613333pt;}
.y11{bottom:721.053333pt;}
.y10{bottom:742.493333pt;}
.yf{bottom:763.973333pt;}
.ye{bottom:785.413333pt;}
.y3d{bottom:792.133333pt;}
.y2d{bottom:806.853333pt;}
.yd{bottom:828.453333pt;}
.yc{bottom:849.893333pt;}
.yb{bottom:871.333333pt;}
.ya{bottom:892.773333pt;}
.y3c{bottom:899.493333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y3b{bottom:963.813333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:33.918750pt;}
.h8{height:47.109375pt;}
.h3{height:50.748750pt;}
.h7{height:51.991875pt;}
.h6{height:52.028437pt;}
.ha{height:52.134375pt;}
.h5{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x23{left:80.159988pt;}
.x3{left:92.351988pt;}
.x1a{left:108.511988pt;}
.xc{left:123.071988pt;}
.x19{left:131.551988pt;}
.xf{left:137.146655pt;}
.xb{left:138.426655pt;}
.xe{left:150.426655pt;}
.x1d{left:158.746655pt;}
.x16{left:165.786655pt;}
.x17{left:168.666655pt;}
.x20{left:184.186643pt;}
.x15{left:187.386655pt;}
.x1e{left:188.826655pt;}
.x21{left:190.266655pt;}
.x4{left:193.306655pt;}
.x8{left:214.586655pt;}
.x12{left:218.266655pt;}
.x18{left:219.226655pt;}
.xa{left:232.666655pt;}
.x1f{left:238.426655pt;}
.x22{left:267.906655pt;}
.x11{left:277.346655pt;}
.x7{left:281.186655pt;}
.x14{left:286.146655pt;}
.x28{left:304.226643pt;}
.x29{left:310.306655pt;}
.x6{left:313.506655pt;}
.x10{left:328.386655pt;}
.x1c{left:345.826655pt;}
.x9{left:350.786655pt;}
.x1b{left:357.026655pt;}
.x2a{left:365.986643pt;}
.x2b{left:372.066655pt;}
.x13{left:374.306655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xd{left:420.546655pt;}
.x24{left:526.173310pt;}
.x25{left:532.253322pt;}
.x2c{left:597.533310pt;}
.x2d{left:603.613322pt;}
.x26{left:707.333310pt;}
.x27{left:713.413322pt;}
}




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