
    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_cd89d70376eb45bbf2c86148.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_08e86f0d7ce390c953b7b784.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_fee897db98a030ea550e7e35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_c271ef171e6ac57ba1a0990d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_3b69f9abe6460d5cc884c491.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_1fdd4a33d530a79bd85d2972.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_3abab9605b30a579e441db82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-34.272000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:34.272000px;}
.v1{vertical-align:57.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000189px;}
.ls1{letter-spacing:0.001989px;}
.ls3{letter-spacing:2.880000px;}
.ls4{letter-spacing:5.817600px;}
.ls2{letter-spacing:30.220800px;}
.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;}
}
.ws0{word-spacing:-53.376000px;}
.ws8{word-spacing:-46.704000px;}
.ws2{word-spacing:-44.480006px;}
.ws4{word-spacing:-28.500000px;}
.ws3{word-spacing:-26.688000px;}
.ws1{word-spacing:-0.516000px;}
.ws6{word-spacing:-0.204000px;}
.ws5{word-spacing:-0.192000px;}
.ws7{word-spacing:-0.168000px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-21.312000px;}
._1a{margin-left:-17.318400px;}
._e{margin-left:-14.652000px;}
._b{margin-left:-12.384000px;}
._2{margin-left:-10.060800px;}
._9{margin-left:-8.515200px;}
._c{margin-left:-5.328000px;}
._0{margin-left:-3.456000px;}
._d{margin-left:-2.376000px;}
._3{width:1.497600px;}
._14{width:2.956800px;}
._a{width:4.320000px;}
._11{width:5.971200px;}
._15{width:7.488000px;}
._1d{width:9.011640px;}
._19{width:11.270400px;}
._8{width:25.248000px;}
._18{width:29.607000px;}
._17{width:30.835200px;}
._10{width:31.987200px;}
._13{width:45.849600px;}
._f{width:51.051720px;}
._16{width:55.545600px;}
._7{width:57.216000px;}
._1{width:58.310400px;}
._6{width:67.257600px;}
._1e{width:74.978400px;}
._4{width:83.654400px;}
._12{width:92.294400px;}
._1c{width:93.484800px;}
._1b{width:95.136000px;}
.fc3{color:rgb(4,85,115);}
.fc2{color:rgb(4,85,115);}
.fc1{color:rgb(4,151,115);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs4{font-size:96.000000px;}
.fs6{font-size:114.000000px;}
.fs7{font-size:132.000000px;}
.fs5{font-size:144.000000px;}
.fs3{font-size:160.000020px;}
.fs8{font-size:168.000000px;}
.fs0{font-size:192.000000px;}
.fs9{font-size:204.000000px;}
.fs2{font-size:240.000000px;}
.fs1{font-size:516.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:5.233500px;}
.y47{bottom:32.825250px;}
.ye{bottom:34.072050px;}
.y1d{bottom:35.836200px;}
.y13{bottom:38.812500px;}
.y39{bottom:40.047900px;}
.y15{bottom:46.533000px;}
.y37{bottom:52.245000px;}
.y3c{bottom:54.918150px;}
.y4c{bottom:56.125500px;}
.y18{bottom:61.494000px;}
.y33{bottom:84.468000px;}
.y1c{bottom:87.004050px;}
.y1a{bottom:90.665115px;}
.y46{bottom:91.325250px;}
.yd{bottom:92.572050px;}
.y17{bottom:94.494000px;}
.y11{bottom:102.072000px;}
.y3b{bottom:106.083750px;}
.y4b{bottom:107.125500px;}
.y19{bottom:131.165115px;}
.y28{bottom:141.274500px;}
.y32{bottom:142.968000px;}
.y45{bottom:149.825250px;}
.yc{bottom:151.072050px;}
.y4a{bottom:158.125500px;}
.y3a{bottom:188.992800px;}
.y27{bottom:199.774500px;}
.y31{bottom:201.468000px;}
.y44{bottom:208.325250px;}
.y49{bottom:209.293500px;}
.yb{bottom:209.572050px;}
.y26{bottom:258.274500px;}
.y10{bottom:259.572000px;}
.y30{bottom:259.968000px;}
.y43{bottom:267.017250px;}
.ya{bottom:268.263900px;}
.y1{bottom:275.108400px;}
.y25{bottom:316.966500px;}
.y2f{bottom:318.660000px;}
.y42{bottom:325.517250px;}
.y24{bottom:375.274500px;}
.y41{bottom:384.017250px;}
.y9{bottom:385.072050px;}
.y23{bottom:433.774500px;}
.y2e{bottom:435.468000px;}
.y40{bottom:442.517250px;}
.y8{bottom:443.572050px;}
.y22{bottom:492.274500px;}
.y2d{bottom:493.968000px;}
.y3f{bottom:501.017250px;}
.y7{bottom:502.072050px;}
.y21{bottom:550.774500px;}
.y2c{bottom:552.468000px;}
.y3e{bottom:559.709250px;}
.y6{bottom:560.572050px;}
.y20{bottom:609.274500px;}
.y2b{bottom:611.064000px;}
.y5{bottom:619.072050px;}
.y1f{bottom:667.966500px;}
.y2a{bottom:669.850500px;}
.y4{bottom:677.763900px;}
.y3{bottom:736.359900px;}
.y2{bottom:795.147750px;}
.y38{bottom:1083.665550px;}
.y3d{bottom:1283.765250px;}
.y1b{bottom:1300.896450px;}
.y48{bottom:1889.854500px;}
.y1e{bottom:2687.925000px;}
.y36{bottom:3520.134000px;}
.y29{bottom:3604.206000px;}
.y34{bottom:3624.748500px;}
.y14{bottom:4434.567000px;}
.y12{bottom:4513.176000px;}
.y16{bottom:4553.544000px;}
.yf{bottom:4584.819000px;}
.hd{height:78.912000px;}
.hc{height:83.336550px;}
.hf{height:86.412000px;}
.h1b{height:102.916800px;}
.h11{height:103.752000px;}
.h1a{height:105.596940px;}
.ha{height:115.432920px;}
.h14{height:122.472000px;}
.h13{height:122.808000px;}
.he{height:128.590875px;}
.h1e{height:131.880000px;}
.h6{height:139.968000px;}
.h3{height:140.352000px;}
.h12{height:140.355870px;}
.h5{height:150.912000px;}
.h4{height:151.295400px;}
.h18{height:151.296000px;}
.h16{height:151.680000px;}
.h1d{height:159.656100px;}
.h1c{height:160.140000px;}
.h10{height:173.381100px;}
.hb{height:188.640000px;}
.h20{height:262.645500px;}
.h8{height:377.196000px;}
.h9{height:405.060000px;}
.h7{height:423.779400px;}
.h1f{height:620.704800px;}
.h19{height:696.000000px;}
.h15{height:728.962500px;}
.h17{height:730.847700px;}
.h2{height:856.143600px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w6{width:503.899200px;}
.w2{width:1051.498200px;}
.wc{width:1075.287300px;}
.wb{width:1445.661600px;}
.w8{width:1474.569300px;}
.w9{width:1480.553250px;}
.wf{width:1488.512250px;}
.we{width:1525.707000px;}
.wa{width:1681.474500px;}
.wd{width:1984.243500px;}
.w3{width:2942.793000px;}
.w4{width:2974.413000px;}
.w5{width:3183.360000px;}
.w7{width:3284.824500px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xc{left:8.222295px;}
.xe{left:9.833970px;}
.x10{left:12.516000px;}
.x2{left:14.304000px;}
.x3{left:29.304000px;}
.x12{left:30.804000px;}
.xb{left:65.332890px;}
.x6{left:80.776350px;}
.xa{left:82.338300px;}
.x1{left:135.871350px;}
.xf{left:138.436650px;}
.xd{left:145.540680px;}
.x8{left:150.726150px;}
.x11{left:170.356950px;}
.x15{left:210.784500px;}
.x9{left:244.445550px;}
.x5{left:336.583350px;}
.x4{left:364.729500px;}
.x7{left:385.968900px;}
.x16{left:1449.024000px;}
.x14{left:1885.660500px;}
.x17{left:1889.637000px;}
.x18{left:1908.234000px;}
.x13{left:2002.956000px;}
@media print{
.v2{vertical-align:-30.464000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.464000pt;}
.v1{vertical-align:50.773333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000168pt;}
.ls1{letter-spacing:0.001768pt;}
.ls3{letter-spacing:2.560000pt;}
.ls4{letter-spacing:5.171200pt;}
.ls2{letter-spacing:26.862933pt;}
.ws0{word-spacing:-47.445333pt;}
.ws8{word-spacing:-41.514667pt;}
.ws2{word-spacing:-39.537783pt;}
.ws4{word-spacing:-25.333333pt;}
.ws3{word-spacing:-23.722667pt;}
.ws1{word-spacing:-0.458667pt;}
.ws6{word-spacing:-0.181333pt;}
.ws5{word-spacing:-0.170667pt;}
.ws7{word-spacing:-0.149333pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-18.944000pt;}
._1a{margin-left:-15.394133pt;}
._e{margin-left:-13.024000pt;}
._b{margin-left:-11.008000pt;}
._2{margin-left:-8.942933pt;}
._9{margin-left:-7.569067pt;}
._c{margin-left:-4.736000pt;}
._0{margin-left:-3.072000pt;}
._d{margin-left:-2.112000pt;}
._3{width:1.331200pt;}
._14{width:2.628267pt;}
._a{width:3.840000pt;}
._11{width:5.307733pt;}
._15{width:6.656000pt;}
._1d{width:8.010347pt;}
._19{width:10.018133pt;}
._8{width:22.442667pt;}
._18{width:26.317333pt;}
._17{width:27.409067pt;}
._10{width:28.433067pt;}
._13{width:40.755200pt;}
._f{width:45.379307pt;}
._16{width:49.373867pt;}
._7{width:50.858667pt;}
._1{width:51.831467pt;}
._6{width:59.784533pt;}
._1e{width:66.647467pt;}
._4{width:74.359467pt;}
._12{width:82.039467pt;}
._1c{width:83.097600pt;}
._1b{width:84.565333pt;}
.fs4{font-size:85.333333pt;}
.fs6{font-size:101.333333pt;}
.fs7{font-size:117.333333pt;}
.fs5{font-size:128.000000pt;}
.fs3{font-size:142.222240pt;}
.fs8{font-size:149.333333pt;}
.fs0{font-size:170.666667pt;}
.fs9{font-size:181.333333pt;}
.fs2{font-size:213.333333pt;}
.fs1{font-size:458.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:4.652000pt;}
.y47{bottom:29.178000pt;}
.ye{bottom:30.286267pt;}
.y1d{bottom:31.854400pt;}
.y13{bottom:34.500000pt;}
.y39{bottom:35.598133pt;}
.y15{bottom:41.362667pt;}
.y37{bottom:46.440000pt;}
.y3c{bottom:48.816133pt;}
.y4c{bottom:49.889333pt;}
.y18{bottom:54.661333pt;}
.y33{bottom:75.082667pt;}
.y1c{bottom:77.336933pt;}
.y1a{bottom:80.591213pt;}
.y46{bottom:81.178000pt;}
.yd{bottom:82.286267pt;}
.y17{bottom:83.994667pt;}
.y11{bottom:90.730667pt;}
.y3b{bottom:94.296667pt;}
.y4b{bottom:95.222667pt;}
.y19{bottom:116.591213pt;}
.y28{bottom:125.577333pt;}
.y32{bottom:127.082667pt;}
.y45{bottom:133.178000pt;}
.yc{bottom:134.286267pt;}
.y4a{bottom:140.556000pt;}
.y3a{bottom:167.993600pt;}
.y27{bottom:177.577333pt;}
.y31{bottom:179.082667pt;}
.y44{bottom:185.178000pt;}
.y49{bottom:186.038667pt;}
.yb{bottom:186.286267pt;}
.y26{bottom:229.577333pt;}
.y10{bottom:230.730667pt;}
.y30{bottom:231.082667pt;}
.y43{bottom:237.348667pt;}
.ya{bottom:238.456800pt;}
.y1{bottom:244.540800pt;}
.y25{bottom:281.748000pt;}
.y2f{bottom:283.253333pt;}
.y42{bottom:289.348667pt;}
.y24{bottom:333.577333pt;}
.y41{bottom:341.348667pt;}
.y9{bottom:342.286267pt;}
.y23{bottom:385.577333pt;}
.y2e{bottom:387.082667pt;}
.y40{bottom:393.348667pt;}
.y8{bottom:394.286267pt;}
.y22{bottom:437.577333pt;}
.y2d{bottom:439.082667pt;}
.y3f{bottom:445.348667pt;}
.y7{bottom:446.286267pt;}
.y21{bottom:489.577333pt;}
.y2c{bottom:491.082667pt;}
.y3e{bottom:497.519333pt;}
.y6{bottom:498.286267pt;}
.y20{bottom:541.577333pt;}
.y2b{bottom:543.168000pt;}
.y5{bottom:550.286267pt;}
.y1f{bottom:593.748000pt;}
.y2a{bottom:595.422667pt;}
.y4{bottom:602.456800pt;}
.y3{bottom:654.542133pt;}
.y2{bottom:706.798000pt;}
.y38{bottom:963.258267pt;}
.y3d{bottom:1141.124667pt;}
.y1b{bottom:1156.352400pt;}
.y48{bottom:1679.870667pt;}
.y1e{bottom:2389.266667pt;}
.y36{bottom:3129.008000pt;}
.y29{bottom:3203.738667pt;}
.y34{bottom:3221.998667pt;}
.y14{bottom:3941.837333pt;}
.y12{bottom:4011.712000pt;}
.y16{bottom:4047.594667pt;}
.yf{bottom:4075.394667pt;}
.hd{height:70.144000pt;}
.hc{height:74.076933pt;}
.hf{height:76.810667pt;}
.h1b{height:91.481600pt;}
.h11{height:92.224000pt;}
.h1a{height:93.863947pt;}
.ha{height:102.607040pt;}
.h14{height:108.864000pt;}
.h13{height:109.162667pt;}
.he{height:114.303000pt;}
.h1e{height:117.226667pt;}
.h6{height:124.416000pt;}
.h3{height:124.757333pt;}
.h12{height:124.760773pt;}
.h5{height:134.144000pt;}
.h4{height:134.484800pt;}
.h18{height:134.485333pt;}
.h16{height:134.826667pt;}
.h1d{height:141.916533pt;}
.h1c{height:142.346667pt;}
.h10{height:154.116533pt;}
.hb{height:167.680000pt;}
.h20{height:233.462667pt;}
.h8{height:335.285333pt;}
.h9{height:360.053333pt;}
.h7{height:376.692800pt;}
.h1f{height:551.737600pt;}
.h19{height:618.666667pt;}
.h15{height:647.966667pt;}
.h17{height:649.642400pt;}
.h2{height:761.016533pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w6{width:447.910400pt;}
.w2{width:934.665067pt;}
.wc{width:955.810933pt;}
.wb{width:1285.032533pt;}
.w8{width:1310.728267pt;}
.w9{width:1316.047333pt;}
.wf{width:1323.122000pt;}
.we{width:1356.184000pt;}
.wa{width:1494.644000pt;}
.wd{width:1763.772000pt;}
.w3{width:2615.816000pt;}
.w4{width:2643.922667pt;}
.w5{width:2829.653333pt;}
.w7{width:2919.844000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xc{left:7.308707pt;}
.xe{left:8.741307pt;}
.x10{left:11.125333pt;}
.x2{left:12.714667pt;}
.x3{left:26.048000pt;}
.x12{left:27.381333pt;}
.xb{left:58.073680pt;}
.x6{left:71.801200pt;}
.xa{left:73.189600pt;}
.x1{left:120.774533pt;}
.xf{left:123.054800pt;}
.xd{left:129.369493pt;}
.x8{left:133.978800pt;}
.x11{left:151.428400pt;}
.x15{left:187.364000pt;}
.x9{left:217.284933pt;}
.x5{left:299.185200pt;}
.x4{left:324.204000pt;}
.x7{left:343.083467pt;}
.x16{left:1288.021333pt;}
.x14{left:1676.142667pt;}
.x17{left:1679.677333pt;}
.x18{left:1696.208000pt;}
.x13{left:1780.405333pt;}
}




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