
    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_4614942cd69b625317a1179f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_34a1fa17e10ba873aed2cccd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_c754efa9aaa75c402fcbbf81.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_40d903b86351a642fecb7d64.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2e2cf0cce6fef32da9aca927.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010080px;}
.ls3{letter-spacing:0.011520px;}
.ls0{letter-spacing:0.014400px;}
.ls5{letter-spacing:33.984000px;}
.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;}
}
.ws3{word-spacing:-20.030400px;}
.ws4{word-spacing:-20.016000px;}
.ws2{word-spacing:-20.001600px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-2.016000px;}
._0{margin-left:-1.012608px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(79,129,189);}
.fc0{color:rgb(54,96,145);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:6.720000px;}
.y49{bottom:6.780000px;}
.y7b{bottom:7.020000px;}
.y47{bottom:7.200000px;}
.y55{bottom:7.260000px;}
.y51{bottom:7.320000px;}
.y4f{bottom:7.380000px;}
.y73{bottom:7.500000px;}
.y6f{bottom:7.560000px;}
.y53{bottom:7.680000px;}
.y60{bottom:7.740000px;}
.y4d{bottom:7.800000px;}
.y63{bottom:7.920000px;}
.y66{bottom:8.100000px;}
.y4b{bottom:8.220000px;}
.y76{bottom:8.340000px;}
.y5c{bottom:30.120000px;}
.y46{bottom:30.600000px;}
.y7a{bottom:30.780000px;}
.y72{bottom:30.900000px;}
.y6e{bottom:30.960000px;}
.y78{bottom:31.080000px;}
.y62{bottom:31.320000px;}
.y65{bottom:31.500000px;}
.y75{bottom:31.740000px;}
.y71{bottom:54.300000px;}
.y6d{bottom:54.720000px;}
.y50{bottom:123.000000px;}
.yd2{bottom:125.640000px;}
.y27{bottom:127.440000px;}
.ya6{bottom:141.480000px;}
.yd1{bottom:146.520000px;}
.y4e{bottom:148.500000px;}
.y26{bottom:151.200000px;}
.yd0{bottom:167.040000px;}
.y4c{bottom:174.000000px;}
.y25{bottom:174.600000px;}
.ya5{bottom:183.240000px;}
.ycf{bottom:187.920000px;}
.y7d{bottom:195.480000px;}
.y24{bottom:198.000000px;}
.y4a{bottom:199.500000px;}
.ya4{bottom:203.760000px;}
.yce{bottom:208.440000px;}
.y7c{bottom:219.240000px;}
.y23{bottom:221.760000px;}
.ya3{bottom:224.640000px;}
.y48{bottom:226.500000px;}
.ycd{bottom:229.320000px;}
.y22{bottom:245.160000px;}
.ycc{bottom:249.840000px;}
.y45{bottom:252.000000px;}
.y79{bottom:256.500000px;}
.ya2{bottom:266.040000px;}
.y21{bottom:268.920000px;}
.ycb{bottom:270.720000px;}
.ya1{bottom:286.560000px;}
.yca{bottom:291.240000px;}
.y20{bottom:292.320000px;}
.y77{bottom:303.000000px;}
.ya0{bottom:307.440000px;}
.yc9{bottom:312.120000px;}
.y1f{bottom:315.720000px;}
.y44{bottom:328.320000px;}
.yc8{bottom:332.640000px;}
.y1e{bottom:339.480000px;}
.y9f{bottom:349.200000px;}
.y74{bottom:349.500000px;}
.yc7{bottom:353.520000px;}
.y1d{bottom:362.880000px;}
.y9e{bottom:369.720000px;}
.y43{bottom:372.960000px;}
.yc6{bottom:374.040000px;}
.y1c{bottom:386.640000px;}
.y9d{bottom:390.600000px;}
.yc5{bottom:394.920000px;}
.y42{bottom:396.360000px;}
.y70{bottom:397.500000px;}
.y1b{bottom:410.040000px;}
.y9c{bottom:411.120000px;}
.yc4{bottom:415.440000px;}
.y41{bottom:420.120000px;}
.y9b{bottom:432.000000px;}
.yc3{bottom:436.320000px;}
.y40{bottom:443.520000px;}
.y9a{bottom:452.520000px;}
.y1a{bottom:454.680000px;}
.yc2{bottom:456.840000px;}
.y3f{bottom:466.920000px;}
.y6c{bottom:468.000000px;}
.y99{bottom:473.400000px;}
.yc1{bottom:477.720000px;}
.y3e{bottom:490.680000px;}
.yc0{bottom:498.240000px;}
.y19{bottom:499.320000px;}
.y3d{bottom:514.080000px;}
.y98{bottom:515.160000px;}
.ybf{bottom:519.120000px;}
.y18{bottom:522.720000px;}
.y97{bottom:535.680000px;}
.y3c{bottom:537.840000px;}
.ybe{bottom:539.640000px;}
.y96{bottom:556.560000px;}
.ybd{bottom:560.520000px;}
.y3b{bottom:561.240000px;}
.y6b{bottom:567.000000px;}
.y17{bottom:567.360000px;}
.y95{bottom:577.080000px;}
.ybc{bottom:581.040000px;}
.y16{bottom:590.760000px;}
.y94{bottom:597.600000px;}
.ybb{bottom:601.920000px;}
.y3a{bottom:605.880000px;}
.y6a{bottom:611.640000px;}
.y15{bottom:614.160000px;}
.y93{bottom:618.480000px;}
.yba{bottom:622.440000px;}
.y69{bottom:635.400000px;}
.y14{bottom:637.920000px;}
.y92{bottom:639.000000px;}
.yb9{bottom:643.320000px;}
.y39{bottom:650.520000px;}
.y91{bottom:659.880000px;}
.y13{bottom:661.320000px;}
.yb8{bottom:663.840000px;}
.y68{bottom:673.500000px;}
.y38{bottom:673.920000px;}
.yb7{bottom:684.720000px;}
.y12{bottom:685.080000px;}
.y37{bottom:697.320000px;}
.y67{bottom:699.000000px;}
.y90{bottom:701.640000px;}
.yb6{bottom:705.240000px;}
.y11{bottom:708.480000px;}
.ye1{bottom:714.240000px;}
.y36{bottom:721.080000px;}
.y8f{bottom:722.160000px;}
.y64{bottom:724.500000px;}
.yb5{bottom:726.120000px;}
.y10{bottom:731.880000px;}
.y8e{bottom:743.040000px;}
.y35{bottom:744.480000px;}
.yb4{bottom:746.640000px;}
.yf{bottom:755.640000px;}
.ye0{bottom:759.240000px;}
.y8d{bottom:763.560000px;}
.yb3{bottom:767.520000px;}
.y34{bottom:768.240000px;}
.y61{bottom:774.000000px;}
.ye{bottom:779.040000px;}
.y8c{bottom:784.440000px;}
.yb2{bottom:788.040000px;}
.y33{bottom:791.640000px;}
.yd{bottom:802.800000px;}
.ydf{bottom:804.240000px;}
.y8b{bottom:804.960000px;}
.yb1{bottom:808.920000px;}
.y32{bottom:815.040000px;}
.y5f{bottom:823.500000px;}
.y8a{bottom:825.840000px;}
.yc{bottom:826.200000px;}
.yb0{bottom:829.440000px;}
.y31{bottom:838.800000px;}
.y89{bottom:846.360000px;}
.y5e{bottom:849.000000px;}
.yde{bottom:849.240000px;}
.yb{bottom:849.600000px;}
.yaf{bottom:849.960000px;}
.y30{bottom:862.200000px;}
.y88{bottom:867.240000px;}
.yae{bottom:870.840000px;}
.ya{bottom:873.360000px;}
.y5b{bottom:876.000000px;}
.y2f{bottom:885.960000px;}
.y87{bottom:887.760000px;}
.yad{bottom:891.360000px;}
.y9{bottom:896.760000px;}
.y2e{bottom:909.360000px;}
.yac{bottom:912.240000px;}
.y8{bottom:920.520000px;}
.y86{bottom:929.520000px;}
.y2d{bottom:932.760000px;}
.ydd{bottom:933.120000px;}
.y7{bottom:943.920000px;}
.y85{bottom:950.400000px;}
.y5a{bottom:951.840000px;}
.ydc{bottom:953.640000px;}
.yab{bottom:956.520000px;}
.y84{bottom:970.920000px;}
.ydb{bottom:974.520000px;}
.y2c{bottom:977.400000px;}
.y6{bottom:988.560000px;}
.y83{bottom:991.800000px;}
.yda{bottom:995.040000px;}
.y59{bottom:996.480000px;}
.yaa{bottom:1000.800000px;}
.y82{bottom:1012.320000px;}
.yd9{bottom:1015.920000px;}
.y58{bottom:1019.880000px;}
.y2b{bottom:1022.040000px;}
.ya9{bottom:1024.560000px;}
.y5{bottom:1030.320000px;}
.y81{bottom:1033.200000px;}
.yd8{bottom:1036.440000px;}
.y57{bottom:1043.640000px;}
.y2a{bottom:1045.440000px;}
.ya8{bottom:1047.960000px;}
.y4{bottom:1051.200000px;}
.y80{bottom:1053.720000px;}
.yd7{bottom:1057.320000px;}
.y56{bottom:1067.040000px;}
.y29{bottom:1069.200000px;}
.ya7{bottom:1071.720000px;}
.y3{bottom:1072.080000px;}
.y7f{bottom:1074.600000px;}
.yd6{bottom:1077.840000px;}
.y28{bottom:1092.600000px;}
.y7e{bottom:1095.120000px;}
.yd5{bottom:1098.720000px;}
.y54{bottom:1105.500000px;}
.y2{bottom:1116.000000px;}
.yd4{bottom:1119.240000px;}
.y52{bottom:1131.000000px;}
.y1{bottom:1139.760000px;}
.yd3{bottom:1140.120000px;}
.h5{height:24.000000px;}
.h6{height:25.500000px;}
.h9{height:47.988281px;}
.h4{height:48.000000px;}
.h7{height:49.500000px;}
.h3{height:49.992188px;}
.h2{height:52.453125px;}
.h8{height:72.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:109.500000px;}
.w2{width:130.500000px;}
.w3{width:132.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:1.200072px;}
.x7{left:2.280000px;}
.xa{left:8.700072px;}
.x9{left:97.500000px;}
.x2{left:105.000000px;}
.x1{left:106.200072px;}
.x10{left:133.200072px;}
.xb{left:205.500000px;}
.x4{left:234.000000px;}
.xc{left:334.500000px;}
.x5{left:363.000000px;}
.xd{left:442.500000px;}
.x6{left:492.000000px;}
.xe{left:550.500000px;}
.x8{left:622.500000px;}
.xf{left:658.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008960pt;}
.ls3{letter-spacing:0.010240pt;}
.ls0{letter-spacing:0.012800pt;}
.ls5{letter-spacing:30.208000pt;}
.ws3{word-spacing:-17.804800pt;}
.ws4{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.779200pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.792000pt;}
._0{margin-left:-0.900096pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:5.973333pt;}
.y49{bottom:6.026667pt;}
.y7b{bottom:6.240000pt;}
.y47{bottom:6.400000pt;}
.y55{bottom:6.453333pt;}
.y51{bottom:6.506667pt;}
.y4f{bottom:6.560000pt;}
.y73{bottom:6.666667pt;}
.y6f{bottom:6.720000pt;}
.y53{bottom:6.826667pt;}
.y60{bottom:6.880000pt;}
.y4d{bottom:6.933333pt;}
.y63{bottom:7.040000pt;}
.y66{bottom:7.200000pt;}
.y4b{bottom:7.306667pt;}
.y76{bottom:7.413333pt;}
.y5c{bottom:26.773333pt;}
.y46{bottom:27.200000pt;}
.y7a{bottom:27.360000pt;}
.y72{bottom:27.466667pt;}
.y6e{bottom:27.520000pt;}
.y78{bottom:27.626667pt;}
.y62{bottom:27.840000pt;}
.y65{bottom:28.000000pt;}
.y75{bottom:28.213333pt;}
.y71{bottom:48.266667pt;}
.y6d{bottom:48.640000pt;}
.y50{bottom:109.333333pt;}
.yd2{bottom:111.680000pt;}
.y27{bottom:113.280000pt;}
.ya6{bottom:125.760000pt;}
.yd1{bottom:130.240000pt;}
.y4e{bottom:132.000000pt;}
.y26{bottom:134.400000pt;}
.yd0{bottom:148.480000pt;}
.y4c{bottom:154.666667pt;}
.y25{bottom:155.200000pt;}
.ya5{bottom:162.880000pt;}
.ycf{bottom:167.040000pt;}
.y7d{bottom:173.760000pt;}
.y24{bottom:176.000000pt;}
.y4a{bottom:177.333333pt;}
.ya4{bottom:181.120000pt;}
.yce{bottom:185.280000pt;}
.y7c{bottom:194.880000pt;}
.y23{bottom:197.120000pt;}
.ya3{bottom:199.680000pt;}
.y48{bottom:201.333333pt;}
.ycd{bottom:203.840000pt;}
.y22{bottom:217.920000pt;}
.ycc{bottom:222.080000pt;}
.y45{bottom:224.000000pt;}
.y79{bottom:228.000000pt;}
.ya2{bottom:236.480000pt;}
.y21{bottom:239.040000pt;}
.ycb{bottom:240.640000pt;}
.ya1{bottom:254.720000pt;}
.yca{bottom:258.880000pt;}
.y20{bottom:259.840000pt;}
.y77{bottom:269.333333pt;}
.ya0{bottom:273.280000pt;}
.yc9{bottom:277.440000pt;}
.y1f{bottom:280.640000pt;}
.y44{bottom:291.840000pt;}
.yc8{bottom:295.680000pt;}
.y1e{bottom:301.760000pt;}
.y9f{bottom:310.400000pt;}
.y74{bottom:310.666667pt;}
.yc7{bottom:314.240000pt;}
.y1d{bottom:322.560000pt;}
.y9e{bottom:328.640000pt;}
.y43{bottom:331.520000pt;}
.yc6{bottom:332.480000pt;}
.y1c{bottom:343.680000pt;}
.y9d{bottom:347.200000pt;}
.yc5{bottom:351.040000pt;}
.y42{bottom:352.320000pt;}
.y70{bottom:353.333333pt;}
.y1b{bottom:364.480000pt;}
.y9c{bottom:365.440000pt;}
.yc4{bottom:369.280000pt;}
.y41{bottom:373.440000pt;}
.y9b{bottom:384.000000pt;}
.yc3{bottom:387.840000pt;}
.y40{bottom:394.240000pt;}
.y9a{bottom:402.240000pt;}
.y1a{bottom:404.160000pt;}
.yc2{bottom:406.080000pt;}
.y3f{bottom:415.040000pt;}
.y6c{bottom:416.000000pt;}
.y99{bottom:420.800000pt;}
.yc1{bottom:424.640000pt;}
.y3e{bottom:436.160000pt;}
.yc0{bottom:442.880000pt;}
.y19{bottom:443.840000pt;}
.y3d{bottom:456.960000pt;}
.y98{bottom:457.920000pt;}
.ybf{bottom:461.440000pt;}
.y18{bottom:464.640000pt;}
.y97{bottom:476.160000pt;}
.y3c{bottom:478.080000pt;}
.ybe{bottom:479.680000pt;}
.y96{bottom:494.720000pt;}
.ybd{bottom:498.240000pt;}
.y3b{bottom:498.880000pt;}
.y6b{bottom:504.000000pt;}
.y17{bottom:504.320000pt;}
.y95{bottom:512.960000pt;}
.ybc{bottom:516.480000pt;}
.y16{bottom:525.120000pt;}
.y94{bottom:531.200000pt;}
.ybb{bottom:535.040000pt;}
.y3a{bottom:538.560000pt;}
.y6a{bottom:543.680000pt;}
.y15{bottom:545.920000pt;}
.y93{bottom:549.760000pt;}
.yba{bottom:553.280000pt;}
.y69{bottom:564.800000pt;}
.y14{bottom:567.040000pt;}
.y92{bottom:568.000000pt;}
.yb9{bottom:571.840000pt;}
.y39{bottom:578.240000pt;}
.y91{bottom:586.560000pt;}
.y13{bottom:587.840000pt;}
.yb8{bottom:590.080000pt;}
.y68{bottom:598.666667pt;}
.y38{bottom:599.040000pt;}
.yb7{bottom:608.640000pt;}
.y12{bottom:608.960000pt;}
.y37{bottom:619.840000pt;}
.y67{bottom:621.333333pt;}
.y90{bottom:623.680000pt;}
.yb6{bottom:626.880000pt;}
.y11{bottom:629.760000pt;}
.ye1{bottom:634.880000pt;}
.y36{bottom:640.960000pt;}
.y8f{bottom:641.920000pt;}
.y64{bottom:644.000000pt;}
.yb5{bottom:645.440000pt;}
.y10{bottom:650.560000pt;}
.y8e{bottom:660.480000pt;}
.y35{bottom:661.760000pt;}
.yb4{bottom:663.680000pt;}
.yf{bottom:671.680000pt;}
.ye0{bottom:674.880000pt;}
.y8d{bottom:678.720000pt;}
.yb3{bottom:682.240000pt;}
.y34{bottom:682.880000pt;}
.y61{bottom:688.000000pt;}
.ye{bottom:692.480000pt;}
.y8c{bottom:697.280000pt;}
.yb2{bottom:700.480000pt;}
.y33{bottom:703.680000pt;}
.yd{bottom:713.600000pt;}
.ydf{bottom:714.880000pt;}
.y8b{bottom:715.520000pt;}
.yb1{bottom:719.040000pt;}
.y32{bottom:724.480000pt;}
.y5f{bottom:732.000000pt;}
.y8a{bottom:734.080000pt;}
.yc{bottom:734.400000pt;}
.yb0{bottom:737.280000pt;}
.y31{bottom:745.600000pt;}
.y89{bottom:752.320000pt;}
.y5e{bottom:754.666667pt;}
.yde{bottom:754.880000pt;}
.yb{bottom:755.200000pt;}
.yaf{bottom:755.520000pt;}
.y30{bottom:766.400000pt;}
.y88{bottom:770.880000pt;}
.yae{bottom:774.080000pt;}
.ya{bottom:776.320000pt;}
.y5b{bottom:778.666667pt;}
.y2f{bottom:787.520000pt;}
.y87{bottom:789.120000pt;}
.yad{bottom:792.320000pt;}
.y9{bottom:797.120000pt;}
.y2e{bottom:808.320000pt;}
.yac{bottom:810.880000pt;}
.y8{bottom:818.240000pt;}
.y86{bottom:826.240000pt;}
.y2d{bottom:829.120000pt;}
.ydd{bottom:829.440000pt;}
.y7{bottom:839.040000pt;}
.y85{bottom:844.800000pt;}
.y5a{bottom:846.080000pt;}
.ydc{bottom:847.680000pt;}
.yab{bottom:850.240000pt;}
.y84{bottom:863.040000pt;}
.ydb{bottom:866.240000pt;}
.y2c{bottom:868.800000pt;}
.y6{bottom:878.720000pt;}
.y83{bottom:881.600000pt;}
.yda{bottom:884.480000pt;}
.y59{bottom:885.760000pt;}
.yaa{bottom:889.600000pt;}
.y82{bottom:899.840000pt;}
.yd9{bottom:903.040000pt;}
.y58{bottom:906.560000pt;}
.y2b{bottom:908.480000pt;}
.ya9{bottom:910.720000pt;}
.y5{bottom:915.840000pt;}
.y81{bottom:918.400000pt;}
.yd8{bottom:921.280000pt;}
.y57{bottom:927.680000pt;}
.y2a{bottom:929.280000pt;}
.ya8{bottom:931.520000pt;}
.y4{bottom:934.400000pt;}
.y80{bottom:936.640000pt;}
.yd7{bottom:939.840000pt;}
.y56{bottom:948.480000pt;}
.y29{bottom:950.400000pt;}
.ya7{bottom:952.640000pt;}
.y3{bottom:952.960000pt;}
.y7f{bottom:955.200000pt;}
.yd6{bottom:958.080000pt;}
.y28{bottom:971.200000pt;}
.y7e{bottom:973.440000pt;}
.yd5{bottom:976.640000pt;}
.y54{bottom:982.666667pt;}
.y2{bottom:992.000000pt;}
.yd4{bottom:994.880000pt;}
.y52{bottom:1005.333333pt;}
.y1{bottom:1013.120000pt;}
.yd3{bottom:1013.440000pt;}
.h5{height:21.333333pt;}
.h6{height:22.666667pt;}
.h9{height:42.656250pt;}
.h4{height:42.666667pt;}
.h7{height:44.000000pt;}
.h3{height:44.437500pt;}
.h2{height:46.625000pt;}
.h8{height:64.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:97.333333pt;}
.w2{width:116.000000pt;}
.w3{width:117.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:1.066731pt;}
.x7{left:2.026667pt;}
.xa{left:7.733397pt;}
.x9{left:86.666667pt;}
.x2{left:93.333333pt;}
.x1{left:94.400064pt;}
.x10{left:118.400064pt;}
.xb{left:182.666667pt;}
.x4{left:208.000000pt;}
.xc{left:297.333333pt;}
.x5{left:322.666667pt;}
.xd{left:393.333333pt;}
.x6{left:437.333333pt;}
.xe{left:489.333333pt;}
.x8{left:553.333333pt;}
.xf{left:585.333333pt;}
}




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