
    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_871cc68f4aea1f5c91a2b172.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c8e418ef802908e580755881.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_4969d074e9ab6f16be5af109.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_dc7c57ae4fd6a65ac1743e89.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_93460503c82ffed22f47385b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_f1a1d45f366b370e4917c852.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_be34e80c848cf3189addbe8a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_ded45953566dcb9835fcc217.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091797;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_b207932ad0490251c35c6e88.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.357000px;}
.ls5{letter-spacing:-0.213000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.178800px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.lsa{letter-spacing:0.987840px;}
.lsb{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.428480px;}
.ls1{letter-spacing:5.604480px;}
.ls0{letter-spacing:60.444480px;}
.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;}
}
.ws6{word-spacing:-24.478560px;}
.ws1{word-spacing:-23.397360px;}
.ws0{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.523000px;}
.ws2{word-spacing:-18.875520px;}
.ws3{word-spacing:-18.662520px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-12.110400px;}
._14{margin-left:-10.729920px;}
._12{margin-left:-7.349760px;}
._5{margin-left:-5.595840px;}
._3{margin-left:-4.008960px;}
._2{margin-left:-2.088000px;}
._1{margin-left:-1.002240px;}
._0{width:1.336320px;}
._4{width:2.880960px;}
._6{width:4.176000px;}
._b{width:6.077760px;}
._e{width:7.516800px;}
._a{width:8.519040px;}
._7{width:9.938880px;}
._f{width:11.358720px;}
._d{width:12.444480px;}
._10{width:13.864320px;}
._c{width:14.958240px;}
._9{width:16.119360px;}
._8{width:17.789760px;}
._13{width:18.883680px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.600000px;}
.y2b{bottom:91.116000px;}
.y55{bottom:102.276000px;}
.y12{bottom:116.316000px;}
.y2a{bottom:117.036000px;}
.y54{bottom:128.196000px;}
.y29{bottom:143.316000px;}
.y53{bottom:154.110000px;}
.y28{bottom:169.230000px;}
.y52{bottom:180.390000px;}
.y27{bottom:195.195000px;}
.y51{bottom:206.355000px;}
.y26{bottom:221.475000px;}
.y50{bottom:232.635000px;}
.y25{bottom:253.515000px;}
.y4f{bottom:258.555000px;}
.y24{bottom:279.435000px;}
.y4e{bottom:284.475000px;}
.y23{bottom:305.715000px;}
.y4d{bottom:310.755000px;}
.y22{bottom:331.665000px;}
.y4c{bottom:336.705000px;}
.y21{bottom:357.585000px;}
.y4b{bottom:362.985000px;}
.y20{bottom:383.865000px;}
.y4a{bottom:388.905000px;}
.y1f{bottom:409.785000px;}
.y49{bottom:414.825000px;}
.y1e{bottom:441.870000px;}
.y48{bottom:446.910000px;}
.y47{bottom:473.190000px;}
.y1d{bottom:477.150000px;}
.y46{bottom:499.110000px;}
.y1c{bottom:503.070000px;}
.y45{bottom:525.390000px;}
.y1b{bottom:528.990000px;}
.y44{bottom:551.310000px;}
.y1a{bottom:555.270000px;}
.y64{bottom:575.100000px;}
.y43{bottom:577.260000px;}
.y19{bottom:581.220000px;}
.y63{bottom:602.460000px;}
.y42{bottom:603.540000px;}
.y18{bottom:613.260000px;}
.y62{bottom:628.380000px;}
.y41{bottom:635.580000px;}
.y17{bottom:637.380000px;}
.y61{bottom:654.300000px;}
.y40{bottom:661.500000px;}
.y16{bottom:666.540000px;}
.y60{bottom:680.580000px;}
.y3f{bottom:687.780000px;}
.y15{bottom:692.820000px;}
.y5f{bottom:706.530000px;}
.y3e{bottom:713.730000px;}
.y14{bottom:719.130000px;}
.y11{bottom:724.890000px;}
.y5e{bottom:732.810000px;}
.y3d{bottom:739.650000px;}
.y13{bottom:740.370000px;}
.y5d{bottom:758.730000px;}
.y3c{bottom:765.930000px;}
.y10{bottom:769.890000px;}
.y5c{bottom:784.650000px;}
.yf{bottom:795.810000px;}
.y3b{bottom:797.970000px;}
.y5b{bottom:810.930000px;}
.y3a{bottom:823.935000px;}
.ye{bottom:830.775000px;}
.y5a{bottom:836.895000px;}
.y39{bottom:850.215000px;}
.yd{bottom:857.055000px;}
.y59{bottom:863.175000px;}
.y38{bottom:876.135000px;}
.y58{bottom:889.095000px;}
.yc{bottom:891.975000px;}
.y37{bottom:902.055000px;}
.yb{bottom:917.895000px;}
.y36{bottom:928.335000px;}
.y57{bottom:932.655000px;}
.ya{bottom:953.205000px;}
.y35{bottom:954.285000px;}
.y56{bottom:959.325000px;}
.y9{bottom:979.125000px;}
.y34{bottom:986.325000px;}
.y33{bottom:1012.245000px;}
.y8{bottom:1014.405000px;}
.y32{bottom:1038.525000px;}
.y7{bottom:1040.325000px;}
.y31{bottom:1064.445000px;}
.y6{bottom:1075.245000px;}
.y30{bottom:1090.770000px;}
.y5{bottom:1111.290000px;}
.y2f{bottom:1116.690000px;}
.y4{bottom:1139.010000px;}
.y2e{bottom:1142.610000px;}
.y3{bottom:1174.290000px;}
.y2d{bottom:1174.650000px;}
.y2{bottom:1200.570000px;}
.y2c{bottom:1200.930000px;}
.h6{height:53.717344px;}
.h3{height:73.487812px;}
.h5{height:74.181094px;}
.h2{height:74.874375px;}
.h4{height:85.518281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xc{left:21.239987px;}
.x3{left:79.235987px;}
.x7{left:84.995987px;}
.xd{left:93.275987px;}
.x8{left:106.235987px;}
.x10{left:107.315987px;}
.xf{left:131.831987px;}
.x9{left:155.594987px;}
.x2{left:156.674987px;}
.xe{left:177.914987px;}
.x4{left:240.584987px;}
.x11{left:346.829987px;}
.x5{left:362.309987px;}
.x6{left:386.429987px;}
.x1{left:441.179987px;}
.xb{left:791.969987px;}
.xa{left:871.919987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.317333pt;}
.ls5{letter-spacing:-0.189333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.158933pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.lsa{letter-spacing:0.878080pt;}
.lsb{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.269760pt;}
.ls1{letter-spacing:4.981760pt;}
.ls0{letter-spacing:53.728427pt;}
.ws6{word-spacing:-21.758720pt;}
.ws1{word-spacing:-20.797653pt;}
.ws0{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.242667pt;}
.ws2{word-spacing:-16.778240pt;}
.ws3{word-spacing:-16.588907pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-10.764800pt;}
._14{margin-left:-9.537707pt;}
._12{margin-left:-6.533120pt;}
._5{margin-left:-4.974080pt;}
._3{margin-left:-3.563520pt;}
._2{margin-left:-1.856000pt;}
._1{margin-left:-0.890880pt;}
._0{width:1.187840pt;}
._4{width:2.560853pt;}
._6{width:3.712000pt;}
._b{width:5.402453pt;}
._e{width:6.681600pt;}
._a{width:7.572480pt;}
._7{width:8.834560pt;}
._f{width:10.096640pt;}
._d{width:11.061760pt;}
._10{width:12.323840pt;}
._c{width:13.296213pt;}
._9{width:14.328320pt;}
._8{width:15.813120pt;}
._13{width:16.785493pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.200000pt;}
.y2b{bottom:80.992000pt;}
.y55{bottom:90.912000pt;}
.y12{bottom:103.392000pt;}
.y2a{bottom:104.032000pt;}
.y54{bottom:113.952000pt;}
.y29{bottom:127.392000pt;}
.y53{bottom:136.986667pt;}
.y28{bottom:150.426667pt;}
.y52{bottom:160.346667pt;}
.y27{bottom:173.506667pt;}
.y51{bottom:183.426667pt;}
.y26{bottom:196.866667pt;}
.y50{bottom:206.786667pt;}
.y25{bottom:225.346667pt;}
.y4f{bottom:229.826667pt;}
.y24{bottom:248.386667pt;}
.y4e{bottom:252.866667pt;}
.y23{bottom:271.746667pt;}
.y4d{bottom:276.226667pt;}
.y22{bottom:294.813333pt;}
.y4c{bottom:299.293333pt;}
.y21{bottom:317.853333pt;}
.y4b{bottom:322.653333pt;}
.y20{bottom:341.213333pt;}
.y4a{bottom:345.693333pt;}
.y1f{bottom:364.253333pt;}
.y49{bottom:368.733333pt;}
.y1e{bottom:392.773333pt;}
.y48{bottom:397.253333pt;}
.y47{bottom:420.613333pt;}
.y1d{bottom:424.133333pt;}
.y46{bottom:443.653333pt;}
.y1c{bottom:447.173333pt;}
.y45{bottom:467.013333pt;}
.y1b{bottom:470.213333pt;}
.y44{bottom:490.053333pt;}
.y1a{bottom:493.573333pt;}
.y64{bottom:511.200000pt;}
.y43{bottom:513.120000pt;}
.y19{bottom:516.640000pt;}
.y63{bottom:535.520000pt;}
.y42{bottom:536.480000pt;}
.y18{bottom:545.120000pt;}
.y62{bottom:558.560000pt;}
.y41{bottom:564.960000pt;}
.y17{bottom:566.560000pt;}
.y61{bottom:581.600000pt;}
.y40{bottom:588.000000pt;}
.y16{bottom:592.480000pt;}
.y60{bottom:604.960000pt;}
.y3f{bottom:611.360000pt;}
.y15{bottom:615.840000pt;}
.y5f{bottom:628.026667pt;}
.y3e{bottom:634.426667pt;}
.y14{bottom:639.226667pt;}
.y11{bottom:644.346667pt;}
.y5e{bottom:651.386667pt;}
.y3d{bottom:657.466667pt;}
.y13{bottom:658.106667pt;}
.y5d{bottom:674.426667pt;}
.y3c{bottom:680.826667pt;}
.y10{bottom:684.346667pt;}
.y5c{bottom:697.466667pt;}
.yf{bottom:707.386667pt;}
.y3b{bottom:709.306667pt;}
.y5b{bottom:720.826667pt;}
.y3a{bottom:732.386667pt;}
.ye{bottom:738.466667pt;}
.y5a{bottom:743.906667pt;}
.y39{bottom:755.746667pt;}
.yd{bottom:761.826667pt;}
.y59{bottom:767.266667pt;}
.y38{bottom:778.786667pt;}
.y58{bottom:790.306667pt;}
.yc{bottom:792.866667pt;}
.y37{bottom:801.826667pt;}
.yb{bottom:815.906667pt;}
.y36{bottom:825.186667pt;}
.y57{bottom:829.026667pt;}
.ya{bottom:847.293333pt;}
.y35{bottom:848.253333pt;}
.y56{bottom:852.733333pt;}
.y9{bottom:870.333333pt;}
.y34{bottom:876.733333pt;}
.y33{bottom:899.773333pt;}
.y8{bottom:901.693333pt;}
.y32{bottom:923.133333pt;}
.y7{bottom:924.733333pt;}
.y31{bottom:946.173333pt;}
.y6{bottom:955.773333pt;}
.y30{bottom:969.573333pt;}
.y5{bottom:987.813333pt;}
.y2f{bottom:992.613333pt;}
.y4{bottom:1012.453333pt;}
.y2e{bottom:1015.653333pt;}
.y3{bottom:1043.813333pt;}
.y2d{bottom:1044.133333pt;}
.y2{bottom:1067.173333pt;}
.y2c{bottom:1067.493333pt;}
.h6{height:47.748750pt;}
.h3{height:65.322500pt;}
.h5{height:65.938750pt;}
.h2{height:66.555000pt;}
.h4{height:76.016250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xc{left:18.879988pt;}
.x3{left:70.431988pt;}
.x7{left:75.551988pt;}
.xd{left:82.911988pt;}
.x8{left:94.431988pt;}
.x10{left:95.391988pt;}
.xf{left:117.183988pt;}
.x9{left:138.306655pt;}
.x2{left:139.266655pt;}
.xe{left:158.146655pt;}
.x4{left:213.853322pt;}
.x11{left:308.293322pt;}
.x5{left:322.053322pt;}
.x6{left:343.493322pt;}
.x1{left:392.159988pt;}
.xb{left:703.973322pt;}
.xa{left:775.039988pt;}
}




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