
    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_92ef715eabcfcbb269dec0a4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_3ccd6137ea1a9400a5397d68.woff')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_867c740a8ea71ba8c2bd44e3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_9a58f872a443d61201c5748f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.015000;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_56771a48188e7a34118f481c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_6ea8aab65585328bf09e463e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.108000;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_b0b1e02b811087e4e05d669c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.691400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.690000px;}
.v3{vertical-align:172.800000px;}
.ls7{letter-spacing:-9.120000px;}
.ls2{letter-spacing:-7.200000px;}
.ls6{letter-spacing:-6.000000px;}
.ls4{letter-spacing:-5.400000px;}
.ls5{letter-spacing:-4.560000px;}
.ls3{letter-spacing:-2.640000px;}
.ls1{letter-spacing:-2.160000px;}
.ls0{letter-spacing:0.000000px;}
.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:-66.096000px;}
.ws3{word-spacing:-58.752000px;}
.ws6{word-spacing:-51.840000px;}
.ws9{word-spacing:-51.552000px;}
.ws5{word-spacing:-51.360000px;}
.ws7{word-spacing:-46.320000px;}
.ws8{word-spacing:-46.224000px;}
.wsb{word-spacing:-45.840000px;}
.wsc{word-spacing:-42.720000px;}
.wsa{word-spacing:-40.824000px;}
.ws2{word-spacing:-38.700000px;}
.ws11{word-spacing:-4.560000px;}
.wse{word-spacing:-2.592000px;}
.wsf{word-spacing:-2.376000px;}
.wsd{word-spacing:0.000000px;}
.ws10{word-spacing:4.560000px;}
.ws1{word-spacing:582.380400px;}
.ws0{word-spacing:613.905600px;}
._3{margin-left:-8.640000px;}
._8{margin-left:-7.224000px;}
._7{margin-left:-5.520000px;}
._9{margin-left:-3.600000px;}
._2{margin-left:-2.538000px;}
._1{margin-left:-1.260000px;}
._0{width:1.080000px;}
._5{width:2.160000px;}
._6{width:3.582000px;}
._b{width:5.400000px;}
._4{width:587.812200px;}
._a{width:1850.688000px;}
.fc2{color:transparent;}
.fc1{color:rgb(21,35,58);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:60.000000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:180.000000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:240.000000px;}
.fs1{font-size:288.000000px;}
.fs5{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.552200px;}
.y1{bottom:92.713800px;}
.y39{bottom:323.213700px;}
.y38{bottom:395.213700px;}
.y37{bottom:467.213700px;}
.y3a{bottom:539.213700px;}
.y36{bottom:611.213700px;}
.y2e{bottom:625.443600px;}
.y35{bottom:683.213700px;}
.y2d{bottom:690.243600px;}
.y2c{bottom:755.043600px;}
.y34{bottom:755.213700px;}
.y33{bottom:827.213700px;}
.y2b{bottom:841.103550px;}
.y32{bottom:899.213700px;}
.y31{bottom:971.213700px;}
.y25{bottom:1033.292400px;}
.y30{bottom:1043.213700px;}
.y2f{bottom:1115.213700px;}
.y24{bottom:1119.692400px;}
.y23{bottom:1206.092400px;}
.y29{bottom:1273.868700px;}
.y22{bottom:1292.492400px;}
.y28{bottom:1338.668700px;}
.y27{bottom:1403.468700px;}
.y2a{bottom:1489.528500px;}
.y26{bottom:1489.556400px;}
.y1d{bottom:1668.398700px;}
.y1c{bottom:1754.798700px;}
.y1b{bottom:1841.198700px;}
.y21{bottom:1883.514750px;}
.y17{bottom:1940.864700px;}
.y20{bottom:1955.514750px;}
.y1a{bottom:1978.214700px;}
.y16{bottom:2038.064700px;}
.y1f{bottom:2048.754750px;}
.y19{bottom:2064.614700px;}
.y15{bottom:2135.264700px;}
.y1e{bottom:2142.014700px;}
.y18{bottom:2151.014700px;}
.y14{bottom:2311.370250px;}
.yb{bottom:2338.582950px;}
.y13{bottom:2376.170250px;}
.ya{bottom:2424.982950px;}
.y12{bottom:2440.970250px;}
.y10{bottom:2459.870400px;}
.yf{bottom:2524.670400px;}
.y11{bottom:2527.030200px;}
.ye{bottom:2589.470400px;}
.y9{bottom:2611.054350px;}
.yd{bottom:2675.542950px;}
.y8{bottom:2675.854350px;}
.y7{bottom:2761.930350px;}
.yc{bottom:2761.942950px;}
.y6{bottom:3139.596000px;}
.y3b{bottom:3152.865000px;}
.y5{bottom:3184.596000px;}
.y4{bottom:3269.150400px;}
.y3{bottom:3341.150400px;}
.y2{bottom:3431.592000px;}
.he{height:51.240000px;}
.h6{height:81.216000px;}
.h5{height:135.360000px;}
.h2{height:136.147800px;}
.h8{height:164.376000px;}
.h4{height:180.480000px;}
.hb{height:182.640000px;}
.hc{height:204.960000px;}
.h3{height:216.576000px;}
.h7{height:219.168000px;}
.ha{height:246.564000px;}
.hd{height:340.245000px;}
.h9{height:391.968000px;}
.h0{height:3575.910000px;}
.h1{height:3576.000000px;}
.w2{width:24.165000px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x4a{left:17.974650px;}
.x37{left:70.128150px;}
.x39{left:98.148150px;}
.x38{left:118.548150px;}
.x36{left:125.328150px;}
.x3d{left:161.088150px;}
.x3a{left:194.568150px;}
.x3b{left:231.528150px;}
.x18{left:251.098350px;}
.x35{left:261.408150px;}
.x3c{left:289.788150px;}
.xa{left:291.613800px;}
.x1a{left:293.158950px;}
.xb{left:348.637800px;}
.x19{left:468.958350px;}
.x1{left:565.914150px;}
.x7{left:614.342250px;}
.x8{left:650.804250px;}
.x5{left:657.235200px;}
.x2{left:671.904300px;}
.x1c{left:687.358950px;}
.x9{left:699.134250px;}
.x29{left:724.992450px;}
.x1d{left:727.822950px;}
.x2a{left:733.069500px;}
.x2c{left:736.201500px;}
.x2b{left:752.941500px;}
.x3{left:780.441900px;}
.x1b{left:809.974950px;}
.x4{left:921.201900px;}
.x27{left:1016.664450px;}
.x32{left:1045.323900px;}
.x16{left:1074.864750px;}
.x6{left:1083.503700px;}
.x28{left:1093.848450px;}
.x33{left:1097.109900px;}
.x26{left:1098.888450px;}
.x17{left:1106.292750px;}
.x15{left:1118.442750px;}
.x31{left:1140.794550px;}
.x34{left:1188.207900px;}
.x25{left:1242.456450px;}
.x2d{left:1402.954800px;}
.xc{left:1406.605800px;}
.x2f{left:1443.212400px;}
.x2e{left:1449.638400px;}
.x1f{left:1462.078950px;}
.xd{left:1471.981800px;}
.x1e{left:1474.966950px;}
.x20{left:1479.502950px;}
.xf{left:1499.930850px;}
.xe{left:1527.362850px;}
.x10{left:1534.544850px;}
.x30{left:1544.516400px;}
.x47{left:1724.988150px;}
.x46{left:1746.228150px;}
.x44{left:1760.208150px;}
.x42{left:1785.948150px;}
.x21{left:1797.886950px;}
.x40{left:1817.928150px;}
.x23{left:1830.619800px;}
.x45{left:1834.608150px;}
.x3e{left:1844.688150px;}
.x12{left:1847.322000px;}
.x13{left:1874.862000px;}
.x11{left:1883.673900px;}
.x48{left:1902.948150px;}
.x14{left:1909.260000px;}
.x22{left:1925.059800px;}
.x24{left:1936.879800px;}
.x43{left:1994.028150px;}
.x3f{left:2026.068150px;}
.x41{left:2059.608150px;}
.x49{left:2476.425000px;}
@media print{
.v2{vertical-align:-4.170133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.946667pt;}
.v3{vertical-align:153.600000pt;}
.ls7{letter-spacing:-8.106667pt;}
.ls2{letter-spacing:-6.400000pt;}
.ls6{letter-spacing:-5.333333pt;}
.ls4{letter-spacing:-4.800000pt;}
.ls5{letter-spacing:-4.053333pt;}
.ls3{letter-spacing:-2.346667pt;}
.ls1{letter-spacing:-1.920000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-58.752000pt;}
.ws3{word-spacing:-52.224000pt;}
.ws6{word-spacing:-46.080000pt;}
.ws9{word-spacing:-45.824000pt;}
.ws5{word-spacing:-45.653333pt;}
.ws7{word-spacing:-41.173333pt;}
.ws8{word-spacing:-41.088000pt;}
.wsb{word-spacing:-40.746667pt;}
.wsc{word-spacing:-37.973333pt;}
.wsa{word-spacing:-36.288000pt;}
.ws2{word-spacing:-34.400000pt;}
.ws11{word-spacing:-4.053333pt;}
.wse{word-spacing:-2.304000pt;}
.wsf{word-spacing:-2.112000pt;}
.wsd{word-spacing:0.000000pt;}
.ws10{word-spacing:4.053333pt;}
.ws1{word-spacing:517.671467pt;}
.ws0{word-spacing:545.693867pt;}
._3{margin-left:-7.680000pt;}
._8{margin-left:-6.421333pt;}
._7{margin-left:-4.906667pt;}
._9{margin-left:-3.200000pt;}
._2{margin-left:-2.256000pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.960000pt;}
._5{width:1.920000pt;}
._6{width:3.184000pt;}
._b{width:4.800000pt;}
._4{width:522.499733pt;}
._a{width:1645.056000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:160.000000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:213.333333pt;}
.fs1{font-size:256.000000pt;}
.fs5{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.046400pt;}
.y1{bottom:82.412267pt;}
.y39{bottom:287.301067pt;}
.y38{bottom:351.301067pt;}
.y37{bottom:415.301067pt;}
.y3a{bottom:479.301067pt;}
.y36{bottom:543.301067pt;}
.y2e{bottom:555.949867pt;}
.y35{bottom:607.301067pt;}
.y2d{bottom:613.549867pt;}
.y2c{bottom:671.149867pt;}
.y34{bottom:671.301067pt;}
.y33{bottom:735.301067pt;}
.y2b{bottom:747.647600pt;}
.y32{bottom:799.301067pt;}
.y31{bottom:863.301067pt;}
.y25{bottom:918.482133pt;}
.y30{bottom:927.301067pt;}
.y2f{bottom:991.301067pt;}
.y24{bottom:995.282133pt;}
.y23{bottom:1072.082133pt;}
.y29{bottom:1132.327733pt;}
.y22{bottom:1148.882133pt;}
.y28{bottom:1189.927733pt;}
.y27{bottom:1247.527733pt;}
.y2a{bottom:1324.025333pt;}
.y26{bottom:1324.050133pt;}
.y1d{bottom:1483.021067pt;}
.y1c{bottom:1559.821067pt;}
.y1b{bottom:1636.621067pt;}
.y21{bottom:1674.235333pt;}
.y17{bottom:1725.213067pt;}
.y20{bottom:1738.235333pt;}
.y1a{bottom:1758.413067pt;}
.y16{bottom:1811.613067pt;}
.y1f{bottom:1821.115333pt;}
.y19{bottom:1835.213067pt;}
.y15{bottom:1898.013067pt;}
.y1e{bottom:1904.013067pt;}
.y18{bottom:1912.013067pt;}
.y14{bottom:2054.551333pt;}
.yb{bottom:2078.740400pt;}
.y13{bottom:2112.151333pt;}
.ya{bottom:2155.540400pt;}
.y12{bottom:2169.751333pt;}
.y10{bottom:2186.551467pt;}
.yf{bottom:2244.151467pt;}
.y11{bottom:2246.249067pt;}
.ye{bottom:2301.751467pt;}
.y9{bottom:2320.937200pt;}
.yd{bottom:2378.260400pt;}
.y8{bottom:2378.537200pt;}
.y7{bottom:2455.049200pt;}
.yc{bottom:2455.060400pt;}
.y6{bottom:2790.752000pt;}
.y3b{bottom:2802.546667pt;}
.y5{bottom:2830.752000pt;}
.y4{bottom:2905.911467pt;}
.y3{bottom:2969.911467pt;}
.y2{bottom:3050.304000pt;}
.he{height:45.546667pt;}
.h6{height:72.192000pt;}
.h5{height:120.320000pt;}
.h2{height:121.020267pt;}
.h8{height:146.112000pt;}
.h4{height:160.426667pt;}
.hb{height:162.346667pt;}
.hc{height:182.186667pt;}
.h3{height:192.512000pt;}
.h7{height:194.816000pt;}
.ha{height:219.168000pt;}
.hd{height:302.440000pt;}
.h9{height:348.416000pt;}
.h0{height:3178.586667pt;}
.h1{height:3178.666667pt;}
.w2{width:21.480000pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x4a{left:15.977467pt;}
.x37{left:62.336133pt;}
.x39{left:87.242800pt;}
.x38{left:105.376133pt;}
.x36{left:111.402800pt;}
.x3d{left:143.189467pt;}
.x3a{left:172.949467pt;}
.x3b{left:205.802800pt;}
.x18{left:223.198533pt;}
.x35{left:232.362800pt;}
.x3c{left:257.589467pt;}
.xa{left:259.212267pt;}
.x1a{left:260.585733pt;}
.xb{left:309.900267pt;}
.x19{left:416.851867pt;}
.x1{left:503.034800pt;}
.x7{left:546.082000pt;}
.x8{left:578.492667pt;}
.x5{left:584.209067pt;}
.x2{left:597.248267pt;}
.x1c{left:610.985733pt;}
.x9{left:621.452667pt;}
.x29{left:644.437733pt;}
.x1d{left:646.953733pt;}
.x2a{left:651.617333pt;}
.x2c{left:654.401333pt;}
.x2b{left:669.281333pt;}
.x3{left:693.726133pt;}
.x1b{left:719.977733pt;}
.x4{left:818.846133pt;}
.x27{left:903.701733pt;}
.x32{left:929.176800pt;}
.x16{left:955.435333pt;}
.x6{left:963.114400pt;}
.x28{left:972.309733pt;}
.x33{left:975.208800pt;}
.x26{left:976.789733pt;}
.x17{left:983.371333pt;}
.x15{left:994.171333pt;}
.x31{left:1014.039600pt;}
.x34{left:1056.184800pt;}
.x25{left:1104.405733pt;}
.x2d{left:1247.070933pt;}
.xc{left:1250.316267pt;}
.x2f{left:1282.855467pt;}
.x2e{left:1288.567467pt;}
.x1f{left:1299.625733pt;}
.xd{left:1308.428267pt;}
.x1e{left:1311.081733pt;}
.x20{left:1315.113733pt;}
.xf{left:1333.271867pt;}
.xe{left:1357.655867pt;}
.x10{left:1364.039867pt;}
.x30{left:1372.903467pt;}
.x47{left:1533.322800pt;}
.x46{left:1552.202800pt;}
.x44{left:1564.629467pt;}
.x42{left:1587.509467pt;}
.x21{left:1598.121733pt;}
.x40{left:1615.936133pt;}
.x23{left:1627.217600pt;}
.x45{left:1630.762800pt;}
.x3e{left:1639.722800pt;}
.x12{left:1642.064000pt;}
.x13{left:1666.544000pt;}
.x11{left:1674.376800pt;}
.x48{left:1691.509467pt;}
.x14{left:1697.120000pt;}
.x22{left:1711.164267pt;}
.x24{left:1721.670933pt;}
.x43{left:1772.469467pt;}
.x3f{left:1800.949467pt;}
.x41{left:1830.762800pt;}
.x49{left:2201.266667pt;}
}




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