
    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_72ec5cf8cc7c399efcd59905.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983398;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_17969807beb38f223f1254a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989258;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_90caf1b6b28ee9d0fb73bbc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.814484;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_31f514fc6bd6b94096b1d46b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970215;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_e90efbdd7436f3d96fea8284.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_3423054f32d697b877ea989f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_eb1f2fce561735a8b1debc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.240000px;}
.lsb{letter-spacing:-0.418200px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.015840px;}
.ls9{letter-spacing:-0.000011px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.432000px;}
.ls0{letter-spacing:63.360000px;}
.ls3{letter-spacing:88.920000px;}
.ls4{letter-spacing:109.260000px;}
.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;}
}
.ws14{word-spacing:-108.360000px;}
.ws18{word-spacing:-89.954040px;}
.ws7{word-spacing:-86.688000px;}
.ws15{word-spacing:-79.536240px;}
.ws1b{word-spacing:-64.944000px;}
.ws16{word-spacing:-21.246480px;}
.ws19{word-spacing:-14.219280px;}
.ws1a{word-spacing:-1.032000px;}
.ws12{word-spacing:-0.683520px;}
.ws1{word-spacing:-0.412080px;}
.ws1c{word-spacing:0.000000px;}
.ws0{word-spacing:0.054000px;}
.ws13{word-spacing:0.170640px;}
.ws17{word-spacing:0.542880px;}
.ws6{word-spacing:81.648000px;}
.ws5{word-spacing:85.248000px;}
.ws11{word-spacing:85.680000px;}
.wsd{word-spacing:85.824000px;}
.wsf{word-spacing:86.232000px;}
.wse{word-spacing:86.688000px;}
.ws10{word-spacing:86.832046px;}
.wsc{word-spacing:86.952000px;}
.ws9{word-spacing:97.632000px;}
.ws8{word-spacing:98.532000px;}
.wsa{word-spacing:99.792000px;}
.wsb{word-spacing:100.632000px;}
.ws3{word-spacing:211.392000px;}
.ws4{word-spacing:211.860000px;}
.ws2{word-spacing:212.436000px;}
._10{margin-left:-40.518000px;}
._6{margin-left:-31.392000px;}
._16{margin-left:-26.136000px;}
._12{margin-left:-25.102800px;}
._e{margin-left:-16.008000px;}
._7{margin-left:-12.876000px;}
._8{margin-left:-8.928000px;}
._13{margin-left:-7.639680px;}
._1{margin-left:-6.534000px;}
._14{margin-left:-4.075920px;}
._15{margin-left:-2.575440px;}
._b{margin-left:-1.152000px;}
._0{width:1.080000px;}
._f{width:2.352000px;}
._2{width:49.968000px;}
._5{width:85.860000px;}
._4{width:86.952000px;}
._c{width:87.996000px;}
._9{width:100.344000px;}
._a{width:101.832000px;}
._d{width:110.856000px;}
._3{width:214.788000px;}
._11{width:3309.385920px;}
.fc4{color:transparent;}
.fc3{color:rgb(84,130,53);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(153,0,0);}
.fs8{font-size:192.240000px;}
.fs2{font-size:198.000000px;}
.fs9{font-size:216.000000px;}
.fs7{font-size:239.760000px;}
.fs6{font-size:264.240000px;}
.fs4{font-size:288.000000px;}
.fs3{font-size:300.240000px;}
.fs1{font-size:324.000000px;}
.fs5{font-size:324.144000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:370.365000px;}
.y1{bottom:478.365000px;}
.y1a{bottom:706.710000px;}
.y22{bottom:731.490000px;}
.y23{bottom:735.120000px;}
.y19{bottom:778.710000px;}
.y21{bottom:810.690000px;}
.y18{bottom:850.710000px;}
.y16{bottom:1599.330000px;}
.y17{bottom:1677.885000px;}
.y15{bottom:1689.330000px;}
.y1d{bottom:1958.655000px;}
.y13{bottom:1972.800000px;}
.y1c{bottom:2016.255000px;}
.y1b{bottom:2073.495000px;}
.y12{bottom:2152.260000px;}
.y1f{bottom:2391.090000px;}
.y1e{bottom:2448.690000px;}
.y14{bottom:2937.420000px;}
.y20{bottom:3100.110000px;}
.y3{bottom:3385.080000px;}
.yd{bottom:3559.650000px;}
.yc{bottom:3807.330000px;}
.yb{bottom:3929.730000px;}
.ya{bottom:4016.130000px;}
.y9{bottom:4138.530000px;}
.y8{bottom:4224.930000px;}
.y7{bottom:4348.050000px;}
.y6{bottom:4565.490000px;}
.y11{bottom:4580.565000px;}
.y5{bottom:4624.890000px;}
.y4{bottom:4684.290000px;}
.y10{bottom:4688.610000px;}
.yf{bottom:4796.610000px;}
.ye{bottom:4904.610000px;}
.hc{height:146.620547px;}
.hb{height:147.465352px;}
.h4{height:150.723633px;}
.hd{height:165.691406px;}
.ha{height:182.512617px;}
.he{height:201.147539px;}
.h6{height:219.234375px;}
.h5{height:228.551836px;}
.h9{height:230.311055px;}
.h3{height:248.537109px;}
.h7{height:248.647570px;}
.h2{height:274.042969px;}
.h8{height:297.802148px;}
.h1{height:5059.500000px;}
.h0{height:5059.800000px;}
.w1{width:3571.500000px;}
.w2{width:3571.739947px;}
.w0{width:3571.740000px;}
.x0{left:0.000000px;}
.x1{left:52.595947px;}
.xc{left:124.451947px;}
.x2{left:126.827947px;}
.x1d{left:130.715947px;}
.xd{left:221.654947px;}
.x1a{left:268.274947px;}
.x6{left:269.459947px;}
.xf{left:294.584947px;}
.x7{left:350.459947px;}
.x10{left:550.364947px;}
.xe{left:842.069947px;}
.x8{left:1021.679947px;}
.x9{left:1275.299947px;}
.xa{left:1287.359947px;}
.xb{left:1353.059947px;}
.x12{left:1755.329947px;}
.x13{left:1837.229947px;}
.x14{left:1844.789947px;}
.x11{left:1914.119947px;}
.x15{left:2235.029947px;}
.x16{left:2251.229947px;}
.x17{left:2372.009947px;}
.x18{left:2806.634947px;}
.x1b{left:2891.594947px;}
.x3{left:2929.889947px;}
.x19{left:2957.114947px;}
.x1c{left:2971.904947px;}
.x4{left:3005.129947px;}
.x5{left:3033.209947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.213333pt;}
.lsb{letter-spacing:-0.371733pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.014080pt;}
.ls9{letter-spacing:-0.000010pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls0{letter-spacing:56.320000pt;}
.ls3{letter-spacing:79.040000pt;}
.ls4{letter-spacing:97.120000pt;}
.ws14{word-spacing:-96.320000pt;}
.ws18{word-spacing:-79.959147pt;}
.ws7{word-spacing:-77.056000pt;}
.ws15{word-spacing:-70.698880pt;}
.ws1b{word-spacing:-57.728000pt;}
.ws16{word-spacing:-18.885760pt;}
.ws19{word-spacing:-12.639360pt;}
.ws1a{word-spacing:-0.917333pt;}
.ws12{word-spacing:-0.607573pt;}
.ws1{word-spacing:-0.366293pt;}
.ws1c{word-spacing:0.000000pt;}
.ws0{word-spacing:0.048000pt;}
.ws13{word-spacing:0.151680pt;}
.ws17{word-spacing:0.482560pt;}
.ws6{word-spacing:72.576000pt;}
.ws5{word-spacing:75.776000pt;}
.ws11{word-spacing:76.160000pt;}
.wsd{word-spacing:76.288000pt;}
.wsf{word-spacing:76.650667pt;}
.wse{word-spacing:77.056000pt;}
.ws10{word-spacing:77.184041pt;}
.wsc{word-spacing:77.290667pt;}
.ws9{word-spacing:86.784000pt;}
.ws8{word-spacing:87.584000pt;}
.wsa{word-spacing:88.704000pt;}
.wsb{word-spacing:89.450667pt;}
.ws3{word-spacing:187.904000pt;}
.ws4{word-spacing:188.320000pt;}
.ws2{word-spacing:188.832000pt;}
._10{margin-left:-36.016000pt;}
._6{margin-left:-27.904000pt;}
._16{margin-left:-23.232000pt;}
._12{margin-left:-22.313600pt;}
._e{margin-left:-14.229333pt;}
._7{margin-left:-11.445333pt;}
._8{margin-left:-7.936000pt;}
._13{margin-left:-6.790827pt;}
._1{margin-left:-5.808000pt;}
._14{margin-left:-3.623040pt;}
._15{margin-left:-2.289280pt;}
._b{margin-left:-1.024000pt;}
._0{width:0.960000pt;}
._f{width:2.090667pt;}
._2{width:44.416000pt;}
._5{width:76.320000pt;}
._4{width:77.290667pt;}
._c{width:78.218667pt;}
._9{width:89.194667pt;}
._a{width:90.517333pt;}
._d{width:98.538667pt;}
._3{width:190.922667pt;}
._11{width:2941.676373pt;}
.fs8{font-size:170.880000pt;}
.fs2{font-size:176.000000pt;}
.fs9{font-size:192.000000pt;}
.fs7{font-size:213.120000pt;}
.fs6{font-size:234.880000pt;}
.fs4{font-size:256.000000pt;}
.fs3{font-size:266.880000pt;}
.fs1{font-size:288.000000pt;}
.fs5{font-size:288.128000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:329.213333pt;}
.y1{bottom:425.213333pt;}
.y1a{bottom:628.186667pt;}
.y22{bottom:650.213333pt;}
.y23{bottom:653.440000pt;}
.y19{bottom:692.186667pt;}
.y21{bottom:720.613333pt;}
.y18{bottom:756.186667pt;}
.y16{bottom:1421.626667pt;}
.y17{bottom:1491.453333pt;}
.y15{bottom:1501.626667pt;}
.y1d{bottom:1741.026667pt;}
.y13{bottom:1753.600000pt;}
.y1c{bottom:1792.226667pt;}
.y1b{bottom:1843.106667pt;}
.y12{bottom:1913.120000pt;}
.y1f{bottom:2125.413333pt;}
.y1e{bottom:2176.613333pt;}
.y14{bottom:2611.040000pt;}
.y20{bottom:2755.653333pt;}
.y3{bottom:3008.960000pt;}
.yd{bottom:3164.133333pt;}
.yc{bottom:3384.293333pt;}
.yb{bottom:3493.093333pt;}
.ya{bottom:3569.893333pt;}
.y9{bottom:3678.693333pt;}
.y8{bottom:3755.493333pt;}
.y7{bottom:3864.933333pt;}
.y6{bottom:4058.213333pt;}
.y11{bottom:4071.613333pt;}
.y5{bottom:4111.013333pt;}
.y4{bottom:4163.813333pt;}
.y10{bottom:4167.653333pt;}
.yf{bottom:4263.653333pt;}
.ye{bottom:4359.653333pt;}
.hc{height:130.329375pt;}
.hb{height:131.080313pt;}
.h4{height:133.976562pt;}
.hd{height:147.281250pt;}
.ha{height:162.233437pt;}
.he{height:178.797812pt;}
.h6{height:194.875000pt;}
.h5{height:203.157187pt;}
.h9{height:204.720937pt;}
.h3{height:220.921875pt;}
.h7{height:221.020063pt;}
.h2{height:243.593750pt;}
.h8{height:264.713021pt;}
.h1{height:4497.333333pt;}
.h0{height:4497.600000pt;}
.w1{width:3174.666667pt;}
.w2{width:3174.879953pt;}
.w0{width:3174.880000pt;}
.x0{left:0.000000pt;}
.x1{left:46.751953pt;}
.xc{left:110.623953pt;}
.x2{left:112.735953pt;}
.x1d{left:116.191953pt;}
.xd{left:197.026619pt;}
.x1a{left:238.466619pt;}
.x6{left:239.519953pt;}
.xf{left:261.853286pt;}
.x7{left:311.519953pt;}
.x10{left:489.213286pt;}
.xe{left:748.506619pt;}
.x8{left:908.159953pt;}
.x9{left:1133.599953pt;}
.xa{left:1144.319953pt;}
.xb{left:1202.719953pt;}
.x12{left:1560.293286pt;}
.x13{left:1633.093286pt;}
.x14{left:1639.813286pt;}
.x11{left:1701.439953pt;}
.x15{left:1986.693286pt;}
.x16{left:2001.093286pt;}
.x17{left:2108.453286pt;}
.x18{left:2494.786619pt;}
.x1b{left:2570.306619pt;}
.x3{left:2604.346619pt;}
.x19{left:2628.546619pt;}
.x1c{left:2641.693286pt;}
.x4{left:2671.226619pt;}
.x5{left:2696.186619pt;}
}




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