
    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_7913f0d50e0849c73b4652c3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_22c80756809eea68992f0e31.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_1a88a371c5b9aa84c4eac0b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_3cb9f21b4fad808f1724dbe7.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_04604154a3d6b0f38461b9c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_7fd075122b85d5e5039ded55.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_4f1b8b07298e460bf483ca6e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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;}
.lsa{letter-spacing:-1.512000px;}
.ls15{letter-spacing:-1.224000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.780000px;}
.ls16{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.296000px;}
.ls19{letter-spacing:5.112000px;}
.ls2{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws1{word-spacing:-48.528000px;}
.ws2{word-spacing:-40.440000px;}
.ws0{word-spacing:-8.520000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:146.100000px;}
._0{margin-left:-948.900000px;}
._f{margin-left:-15.960000px;}
._c{margin-left:-13.800000px;}
._10{margin-left:-11.880000px;}
._e{margin-left:-10.380000px;}
._13{margin-left:-8.268000px;}
._7{margin-left:-6.960000px;}
._1{margin-left:-5.940000px;}
._9{margin-left:-4.356000px;}
._8{margin-left:-2.520000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._6{width:2.880000px;}
._4{width:4.200000px;}
._a{width:5.280000px;}
._b{width:6.360000px;}
._12{width:7.500000px;}
._5{width:8.520000px;}
._d{width:10.164000px;}
._11{width:44.100000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y6a{bottom:117.138150px;}
.y45{bottom:119.348100px;}
.y20{bottom:119.860650px;}
.y69{bottom:136.788150px;}
.y1f{bottom:139.960650px;}
.y44{bottom:141.992100px;}
.y68{bottom:156.438150px;}
.y1e{bottom:160.060650px;}
.y67{bottom:176.088150px;}
.y1d{bottom:180.160650px;}
.y43{bottom:187.292100px;}
.y66{bottom:195.738150px;}
.y1c{bottom:200.260650px;}
.y42{bottom:207.242100px;}
.y65{bottom:215.388150px;}
.y1b{bottom:220.360650px;}
.y41{bottom:227.192100px;}
.y64{bottom:235.038150px;}
.y40{bottom:247.142100px;}
.y1a{bottom:248.946600px;}
.y63{bottom:263.168100px;}
.y3f{bottom:267.092100px;}
.y19{bottom:271.752600px;}
.y62{bottom:285.524100px;}
.y3e{bottom:287.042100px;}
.y18{bottom:294.558600px;}
.y3d{bottom:306.992100px;}
.y61{bottom:307.880100px;}
.y17{bottom:317.364600px;}
.y3c{bottom:326.942100px;}
.y60{bottom:330.236100px;}
.y3b{bottom:346.892100px;}
.y5f{bottom:352.592100px;}
.y16{bottom:362.964600px;}
.y3a{bottom:366.842100px;}
.y15{bottom:383.064600px;}
.y39{bottom:386.792100px;}
.y5e{bottom:397.292100px;}
.y14{bottom:403.164600px;}
.y38{bottom:406.742100px;}
.y5d{bottom:416.942100px;}
.y13{bottom:423.264600px;}
.y37{bottom:426.692100px;}
.y5c{bottom:436.592100px;}
.y12{bottom:443.364600px;}
.y36{bottom:446.642100px;}
.y5b{bottom:456.242100px;}
.y11{bottom:463.464600px;}
.y35{bottom:466.592100px;}
.y5a{bottom:475.892100px;}
.y10{bottom:483.564600px;}
.y34{bottom:495.070050px;}
.y59{bottom:495.542100px;}
.yf{bottom:503.664600px;}
.y58{bottom:515.192100px;}
.y33{bottom:517.714050px;}
.ye{bottom:523.764600px;}
.y57{bottom:534.842100px;}
.y32{bottom:540.358050px;}
.yd{bottom:543.864600px;}
.y56{bottom:562.983900px;}
.y31{bottom:563.002050px;}
.yc{bottom:563.964600px;}
.y7a{bottom:565.096050px;}
.y79{bottom:583.846050px;}
.yb{bottom:584.064600px;}
.y55{bottom:585.339900px;}
.y30{bottom:585.646050px;}
.y78{bottom:602.596050px;}
.ya{bottom:604.164600px;}
.y54{bottom:607.695900px;}
.y77{bottom:621.346050px;}
.y2f{bottom:630.946050px;}
.y9{bottom:632.750550px;}
.y2e{bottom:650.896050px;}
.y76{bottom:651.346050px;}
.y53{bottom:652.395900px;}
.y8{bottom:655.556550px;}
.y2d{bottom:670.846050px;}
.y52{bottom:672.045900px;}
.y7{bottom:678.362550px;}
.y2c{bottom:690.796050px;}
.y51{bottom:691.695900px;}
.y75{bottom:692.596050px;}
.y6{bottom:701.168550px;}
.y2b{bottom:710.746050px;}
.y50{bottom:711.345900px;}
.y74{bottom:712.396050px;}
.y5{bottom:723.968550px;}
.y2a{bottom:730.696050px;}
.y4f{bottom:730.995900px;}
.y73{bottom:732.196050px;}
.y4e{bottom:750.645900px;}
.y29{bottom:750.646050px;}
.y72{bottom:751.996050px;}
.y4{bottom:769.854300px;}
.y4d{bottom:770.295900px;}
.y28{bottom:770.596050px;}
.y71{bottom:771.796050px;}
.y4c{bottom:789.945900px;}
.y27{bottom:790.546050px;}
.y3{bottom:792.354300px;}
.y70{bottom:800.100000px;}
.y4b{bottom:809.595900px;}
.y26{bottom:810.496050px;}
.y6f{bottom:822.600000px;}
.y25{bottom:830.446050px;}
.y4a{bottom:837.726000px;}
.y6e{bottom:845.100000px;}
.y24{bottom:858.918000px;}
.y2{bottom:859.500000px;}
.y49{bottom:860.082000px;}
.y23{bottom:881.562000px;}
.y48{bottom:882.438000px;}
.y6d{bottom:890.100000px;}
.y22{bottom:904.206000px;}
.y47{bottom:904.794000px;}
.y6c{bottom:909.900000px;}
.y21{bottom:926.850000px;}
.y46{bottom:927.150000px;}
.y6b{bottom:929.700000px;}
.h5{height:45.852539px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.381950px;}
.x7{left:97.263750px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x8{left:135.528750px;}
.x4{left:142.263750px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.344000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.152000pt;}
.ls19{letter-spacing:4.544000pt;}
.ls2{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws1{word-spacing:-43.136000pt;}
.ws2{word-spacing:-35.946667pt;}
.ws0{word-spacing:-7.573333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:129.866667pt;}
._0{margin-left:-843.466667pt;}
._f{margin-left:-14.186667pt;}
._c{margin-left:-12.266667pt;}
._10{margin-left:-10.560000pt;}
._e{margin-left:-9.226667pt;}
._13{margin-left:-7.349333pt;}
._7{margin-left:-6.186667pt;}
._1{margin-left:-5.280000pt;}
._9{margin-left:-3.872000pt;}
._8{margin-left:-2.240000pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._6{width:2.560000pt;}
._4{width:3.733333pt;}
._a{width:4.693333pt;}
._b{width:5.653333pt;}
._12{width:6.666667pt;}
._5{width:7.573333pt;}
._d{width:9.034667pt;}
._11{width:39.200000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y6a{bottom:104.122800pt;}
.y45{bottom:106.087200pt;}
.y20{bottom:106.542800pt;}
.y69{bottom:121.589467pt;}
.y1f{bottom:124.409467pt;}
.y44{bottom:126.215200pt;}
.y68{bottom:139.056133pt;}
.y1e{bottom:142.276133pt;}
.y67{bottom:156.522800pt;}
.y1d{bottom:160.142800pt;}
.y43{bottom:166.481867pt;}
.y66{bottom:173.989467pt;}
.y1c{bottom:178.009467pt;}
.y42{bottom:184.215200pt;}
.y65{bottom:191.456133pt;}
.y1b{bottom:195.876133pt;}
.y41{bottom:201.948533pt;}
.y64{bottom:208.922800pt;}
.y40{bottom:219.681867pt;}
.y1a{bottom:221.285867pt;}
.y63{bottom:233.927200pt;}
.y3f{bottom:237.415200pt;}
.y19{bottom:241.557867pt;}
.y62{bottom:253.799200pt;}
.y3e{bottom:255.148533pt;}
.y18{bottom:261.829867pt;}
.y3d{bottom:272.881867pt;}
.y61{bottom:273.671200pt;}
.y17{bottom:282.101867pt;}
.y3c{bottom:290.615200pt;}
.y60{bottom:293.543200pt;}
.y3b{bottom:308.348533pt;}
.y5f{bottom:313.415200pt;}
.y16{bottom:322.635200pt;}
.y3a{bottom:326.081867pt;}
.y15{bottom:340.501867pt;}
.y39{bottom:343.815200pt;}
.y5e{bottom:353.148533pt;}
.y14{bottom:358.368533pt;}
.y38{bottom:361.548533pt;}
.y5d{bottom:370.615200pt;}
.y13{bottom:376.235200pt;}
.y37{bottom:379.281867pt;}
.y5c{bottom:388.081867pt;}
.y12{bottom:394.101867pt;}
.y36{bottom:397.015200pt;}
.y5b{bottom:405.548533pt;}
.y11{bottom:411.968533pt;}
.y35{bottom:414.748533pt;}
.y5a{bottom:423.015200pt;}
.y10{bottom:429.835200pt;}
.y34{bottom:440.062267pt;}
.y59{bottom:440.481867pt;}
.yf{bottom:447.701867pt;}
.y58{bottom:457.948533pt;}
.y33{bottom:460.190267pt;}
.ye{bottom:465.568533pt;}
.y57{bottom:475.415200pt;}
.y32{bottom:480.318267pt;}
.yd{bottom:483.435200pt;}
.y56{bottom:500.430133pt;}
.y31{bottom:500.446267pt;}
.yc{bottom:501.301867pt;}
.y7a{bottom:502.307600pt;}
.y79{bottom:518.974267pt;}
.yb{bottom:519.168533pt;}
.y55{bottom:520.302133pt;}
.y30{bottom:520.574267pt;}
.y78{bottom:535.640933pt;}
.ya{bottom:537.035200pt;}
.y54{bottom:540.174133pt;}
.y77{bottom:552.307600pt;}
.y2f{bottom:560.840933pt;}
.y9{bottom:562.444933pt;}
.y2e{bottom:578.574267pt;}
.y76{bottom:578.974267pt;}
.y53{bottom:579.907467pt;}
.y8{bottom:582.716933pt;}
.y2d{bottom:596.307600pt;}
.y52{bottom:597.374133pt;}
.y7{bottom:602.988933pt;}
.y2c{bottom:614.040933pt;}
.y51{bottom:614.840800pt;}
.y75{bottom:615.640933pt;}
.y6{bottom:623.260933pt;}
.y2b{bottom:631.774267pt;}
.y50{bottom:632.307467pt;}
.y74{bottom:633.240933pt;}
.y5{bottom:643.527600pt;}
.y2a{bottom:649.507600pt;}
.y4f{bottom:649.774133pt;}
.y73{bottom:650.840933pt;}
.y4e{bottom:667.240800pt;}
.y29{bottom:667.240933pt;}
.y72{bottom:668.440933pt;}
.y4{bottom:684.314933pt;}
.y4d{bottom:684.707467pt;}
.y28{bottom:684.974267pt;}
.y71{bottom:686.040933pt;}
.y4c{bottom:702.174133pt;}
.y27{bottom:702.707600pt;}
.y3{bottom:704.314933pt;}
.y70{bottom:711.200000pt;}
.y4b{bottom:719.640800pt;}
.y26{bottom:720.440933pt;}
.y6f{bottom:731.200000pt;}
.y25{bottom:738.174267pt;}
.y4a{bottom:744.645333pt;}
.y6e{bottom:751.200000pt;}
.y24{bottom:763.482667pt;}
.y2{bottom:764.000000pt;}
.y49{bottom:764.517333pt;}
.y23{bottom:783.610667pt;}
.y48{bottom:784.389333pt;}
.y6d{bottom:791.200000pt;}
.y22{bottom:803.738667pt;}
.y47{bottom:804.261333pt;}
.y6c{bottom:808.800000pt;}
.y21{bottom:823.866667pt;}
.y46{bottom:824.133333pt;}
.y6b{bottom:826.400000pt;}
.h5{height:40.757812pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.228400pt;}
.x7{left:86.456667pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x8{left:120.470000pt;}
.x4{left:126.456667pt;}
.x1{left:556.250000pt;}
}




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