
    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_abb35dc967ef9f4e18a02fb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_408790437e448d52aca03809.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_b9262a0ab5cd10190de8546a.woff2')format("woff");}.ff3{font-family:ff3;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-56.250002px;}
.v3{vertical-align:-45.872326px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:87.750003px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-43.212004px;}
.ws3{word-spacing:-22.589573px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:203.834048px;}
.ws2{word-spacing:424.734436px;}
._a{margin-left:-17.040000px;}
._1{margin-left:-15.984001px;}
._5{margin-left:-13.200000px;}
._9{margin-left:-12.070595px;}
._8{margin-left:-11.014596px;}
._6{margin-left:-8.880000px;}
._0{margin-left:-7.776000px;}
._4{margin-left:-6.600000px;}
._3{margin-left:-4.544111px;}
._7{margin-left:-2.160000px;}
._2{width:1.713589px;}
._c{width:104.838745px;}
._b{width:107.972295px;}
._d{width:1196.312678px;}
.fc2{color:transparent;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:59.565597px;}
.fs2{font-size:66.736199px;}
.fs1{font-size:75.077993px;}
.fs12{font-size:81.550807px;}
.fs10{font-size:87.376210px;}
.fsc{font-size:93.219006px;}
.fs15{font-size:99.025797px;}
.fs8{font-size:100.000004px;}
.fs18{font-size:100.391394px;}
.fse{font-size:102.000000px;}
.fsd{font-size:103.549809px;}
.fsb{font-size:105.092405px;}
.fsa{font-size:107.456412px;}
.fs19{font-size:110.566795px;}
.fs17{font-size:114.731995px;}
.fs7{font-size:120.000001px;}
.fs11{font-size:122.326204px;}
.fs16{font-size:129.075016px;}
.fs6{font-size:149.999999px;}
.fs9{font-size:156.000011px;}
.fs5{font-size:156.000013px;}
.fs14{font-size:157.451405px;}
.fs13{font-size:180.000006px;}
.fs4{font-size:234.000007px;}
.fs0{font-size:299.999998px;}
.fs3{font-size:432.000014px;}
.y0{bottom:0.000000px;}
.y10{bottom:78.638841px;}
.yf{bottom:114.638842px;}
.ye{bottom:150.638843px;}
.yd{bottom:186.638844px;}
.yc{bottom:224.438845px;}
.y42{bottom:445.485715px;}
.y41{bottom:492.721137px;}
.y40{bottom:554.519143px;}
.y3f{bottom:601.754542px;}
.y3e{bottom:663.552538px;}
.y3d{bottom:710.787960px;}
.y3c{bottom:772.585995px;}
.y3b{bottom:819.821411px;}
.y3a{bottom:867.056832px;}
.y50{bottom:868.757079px;}
.y38{bottom:904.057915px;}
.y4f{bottom:915.557024px;}
.y32{bottom:956.815219px;}
.y36{bottom:959.923879px;}
.y34{bottom:961.177442px;}
.y4e{bottom:962.357059px;}
.y35{bottom:977.793558px;}
.y33{bottom:979.047124px;}
.y37{bottom:999.801501px;}
.y4d{bottom:1009.157083px;}
.y31{bottom:1033.489567px;}
.y4c{bottom:1070.957093px;}
.y43{bottom:1098.839113px;}
.y4b{bottom:1117.757105px;}
.y4a{bottom:1164.557107px;}
.y49{bottom:1211.357120px;}
.y48{bottom:1273.157129px;}
.y47{bottom:1319.957142px;}
.y46{bottom:1366.757136px;}
.y45{bottom:1413.557133px;}
.y44{bottom:1460.357135px;}
.y39{bottom:1569.521347px;}
.y51{bottom:1653.497782px;}
.y2f{bottom:1831.897779px;}
.y2e{bottom:1878.697781px;}
.y2d{bottom:1940.497813px;}
.y68{bottom:1942.813738px;}
.y52{bottom:1982.217986px;}
.y59{bottom:1983.319597px;}
.y57{bottom:1985.856922px;}
.y2c{bottom:1987.297803px;}
.y67{bottom:1989.613739px;}
.y58{bottom:2015.944598px;}
.y56{bottom:2018.481923px;}
.y66{bottom:2036.413741px;}
.y2b{bottom:2049.097783px;}
.y65{bottom:2083.213742px;}
.y2a{bottom:2095.897780px;}
.y64{bottom:2130.013744px;}
.y29{bottom:2142.697782px;}
.y63{bottom:2176.813768px;}
.y62{bottom:2238.613789px;}
.y30{bottom:2265.981840px;}
.y61{bottom:2285.413801px;}
.y60{bottom:2332.213803px;}
.y5f{bottom:2379.013827px;}
.y5e{bottom:2425.813806px;}
.y53{bottom:2446.803449px;}
.y5d{bottom:2487.613804px;}
.y5c{bottom:2534.413799px;}
.y5b{bottom:2581.213796px;}
.y5a{bottom:2628.013797px;}
.y55{bottom:2700.550503px;}
.y54{bottom:2732.388935px;}
.y7{bottom:2807.961592px;}
.y25{bottom:2809.653479px;}
.y27{bottom:2953.721657px;}
.y18{bottom:2979.661966px;}
.y24{bottom:3002.455772px;}
.y26{bottom:3023.746472px;}
.y17{bottom:3041.461964px;}
.y23{bottom:3049.255773px;}
.y16{bottom:3088.261977px;}
.y22{bottom:3096.055797px;}
.y21{bottom:3142.855810px;}
.y15{bottom:3150.061964px;}
.y14{bottom:3196.861966px;}
.y20{bottom:3204.655831px;}
.y1f{bottom:3251.455832px;}
.y28{bottom:3273.221442px;}
.y1e{bottom:3298.255856px;}
.y1d{bottom:3345.055835px;}
.y6{bottom:3352.162230px;}
.y5{bottom:3372.183085px;}
.y1c{bottom:3406.855834px;}
.y4{bottom:3412.224806px;}
.y3{bottom:3432.245661px;}
.y1b{bottom:3453.655828px;}
.y1a{bottom:3500.455825px;}
.y19{bottom:3547.255827px;}
.y2{bottom:3584.772285px;}
.y8{bottom:3959.104862px;}
.y1{bottom:3964.048720px;}
.y13{bottom:4132.279965px;}
.y12{bottom:4177.279967px;}
.y11{bottom:4222.279968px;}
.yb{bottom:4300.065103px;}
.ya{bottom:4407.585114px;}
.y9{bottom:4556.625101px;}
.hf{height:51.770881px;}
.h3{height:58.003142px;}
.h2{height:65.253334px;}
.h10{height:75.942214px;}
.h18{height:80.819576px;}
.hc{height:81.020425px;}
.h16{height:83.864158px;}
.h14{height:86.067343px;}
.h8{height:86.914066px;}
.h17{height:87.254239px;}
.he{height:88.652344px;}
.hd{height:89.999346px;}
.hb{height:91.340078px;}
.ha{height:93.394733px;}
.h7{height:104.296876px;}
.h11{height:106.318673px;}
.h6{height:109.204101px;}
.h15{height:112.184340px;}
.h9{height:135.585947px;}
.h13{height:136.847413px;}
.h12{height:156.445318px;}
.h5{height:223.335951px;}
.h1{height:260.742185px;}
.h4{height:375.468762px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x6{left:170.495083px;}
.x8{left:177.862202px;}
.x7{left:184.502953px;}
.x9{left:249.355909px;}
.x26{left:257.852097px;}
.x23{left:270.502636px;}
.x27{left:280.121608px;}
.xa{left:299.904985px;}
.x18{left:307.823297px;}
.x19{left:329.353016px;}
.x1{left:348.675649px;}
.x3{left:350.458796px;}
.x25{left:387.648605px;}
.x1a{left:405.827823px;}
.x1b{left:416.247707px;}
.x24{left:421.132840px;}
.x15{left:468.531385px;}
.x17{left:574.680389px;}
.x16{left:589.579987px;}
.x28{left:632.894994px;}
.x29{left:701.174036px;}
.x22{left:723.434367px;}
.x2a{left:853.804297px;}
.x2b{left:913.319917px;}
.x1d{left:984.855070px;}
.x13{left:996.194001px;}
.x1e{left:1034.839919px;}
.x2{left:1566.955963px;}
.x10{left:1602.297490px;}
.x11{left:1652.846565px;}
.x4{left:1754.616601px;}
.x12{left:1757.827943px;}
.x1f{left:1854.011264px;}
.xd{left:1932.576024px;}
.x5{left:2031.271668px;}
.x14{left:2313.508754px;}
.x1c{left:2408.299896px;}
.xe{left:2418.749852px;}
.xf{left:2464.587754px;}
.x20{left:2849.467805px;}
.xb{left:2853.169393px;}
.x21{left:2900.016880px;}
.xc{left:2903.718468px;}
@media print{
.v2{vertical-align:-50.000002pt;}
.v3{vertical-align:-40.775401pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:78.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-38.410670pt;}
.ws3{word-spacing:-20.079621pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:181.185820pt;}
.ws2{word-spacing:377.541721pt;}
._a{margin-left:-15.146667pt;}
._1{margin-left:-14.208000pt;}
._5{margin-left:-11.733333pt;}
._9{margin-left:-10.729418pt;}
._8{margin-left:-9.790752pt;}
._6{margin-left:-7.893333pt;}
._0{margin-left:-6.912000pt;}
._4{margin-left:-5.866667pt;}
._3{margin-left:-4.039210pt;}
._7{margin-left:-1.920000pt;}
._2{width:1.523190pt;}
._c{width:93.189996pt;}
._b{width:95.975373pt;}
._d{width:1063.389047pt;}
.fsf{font-size:52.947198pt;}
.fs2{font-size:59.321066pt;}
.fs1{font-size:66.735994pt;}
.fs12{font-size:72.489606pt;}
.fs10{font-size:77.667742pt;}
.fsc{font-size:82.861339pt;}
.fs15{font-size:88.022931pt;}
.fs8{font-size:88.888893pt;}
.fs18{font-size:89.236795pt;}
.fse{font-size:90.666667pt;}
.fsd{font-size:92.044275pt;}
.fsb{font-size:93.415471pt;}
.fsa{font-size:95.516811pt;}
.fs19{font-size:98.281595pt;}
.fs17{font-size:101.983995pt;}
.fs7{font-size:106.666667pt;}
.fs11{font-size:108.734403pt;}
.fs16{font-size:114.733348pt;}
.fs6{font-size:133.333332pt;}
.fs9{font-size:138.666676pt;}
.fs5{font-size:138.666678pt;}
.fs14{font-size:139.956804pt;}
.fs13{font-size:160.000005pt;}
.fs4{font-size:208.000007pt;}
.fs0{font-size:266.666665pt;}
.fs3{font-size:384.000012pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:69.901192pt;}
.yf{bottom:101.901193pt;}
.ye{bottom:133.901194pt;}
.yd{bottom:165.901195pt;}
.yc{bottom:199.501196pt;}
.y42{bottom:395.987302pt;}
.y41{bottom:437.974344pt;}
.y40{bottom:492.905905pt;}
.y3f{bottom:534.892927pt;}
.y3e{bottom:589.824478pt;}
.y3d{bottom:631.811520pt;}
.y3c{bottom:686.743107pt;}
.y3b{bottom:728.730143pt;}
.y3a{bottom:770.717184pt;}
.y50{bottom:772.228514pt;}
.y38{bottom:803.607035pt;}
.y4f{bottom:813.828466pt;}
.y32{bottom:850.502417pt;}
.y36{bottom:853.265670pt;}
.y34{bottom:854.379949pt;}
.y4e{bottom:855.428497pt;}
.y35{bottom:869.149829pt;}
.y33{bottom:870.264110pt;}
.y37{bottom:888.712445pt;}
.y4d{bottom:897.028518pt;}
.y31{bottom:918.657393pt;}
.y4c{bottom:951.961860pt;}
.y43{bottom:976.745878pt;}
.y4b{bottom:993.561871pt;}
.y4a{bottom:1035.161873pt;}
.y49{bottom:1076.761884pt;}
.y48{bottom:1131.695226pt;}
.y47{bottom:1173.295237pt;}
.y46{bottom:1214.895232pt;}
.y45{bottom:1256.495230pt;}
.y44{bottom:1298.095231pt;}
.y39{bottom:1395.130086pt;}
.y51{bottom:1469.775807pt;}
.y2f{bottom:1628.353582pt;}
.y2e{bottom:1669.953583pt;}
.y2d{bottom:1724.886945pt;}
.y68{bottom:1726.945545pt;}
.y52{bottom:1761.971543pt;}
.y59{bottom:1762.950753pt;}
.y57{bottom:1765.206153pt;}
.y2c{bottom:1766.486936pt;}
.y67{bottom:1768.545546pt;}
.y58{bottom:1791.950754pt;}
.y56{bottom:1794.206154pt;}
.y66{bottom:1810.145547pt;}
.y2b{bottom:1821.420252pt;}
.y65{bottom:1851.745549pt;}
.y2a{bottom:1863.020249pt;}
.y64{bottom:1893.345550pt;}
.y29{bottom:1904.620250pt;}
.y63{bottom:1934.945571pt;}
.y62{bottom:1989.878923pt;}
.y30{bottom:2014.206080pt;}
.y61{bottom:2031.478935pt;}
.y60{bottom:2073.078936pt;}
.y5f{bottom:2114.678957pt;}
.y5e{bottom:2156.278939pt;}
.y53{bottom:2174.936399pt;}
.y5d{bottom:2211.212270pt;}
.y5c{bottom:2252.812266pt;}
.y5b{bottom:2294.412263pt;}
.y5a{bottom:2336.012264pt;}
.y55{bottom:2400.489336pt;}
.y54{bottom:2428.790164pt;}
.y7{bottom:2495.965859pt;}
.y25{bottom:2497.469759pt;}
.y27{bottom:2625.530362pt;}
.y18{bottom:2648.588414pt;}
.y24{bottom:2668.849575pt;}
.y26{bottom:2687.774642pt;}
.y17{bottom:2703.521746pt;}
.y23{bottom:2710.449576pt;}
.y16{bottom:2745.121757pt;}
.y22{bottom:2752.049598pt;}
.y21{bottom:2793.649609pt;}
.y15{bottom:2800.055079pt;}
.y14{bottom:2841.655080pt;}
.y20{bottom:2848.582961pt;}
.y1f{bottom:2890.182962pt;}
.y28{bottom:2909.530171pt;}
.y1e{bottom:2931.782983pt;}
.y1d{bottom:2973.382965pt;}
.y6{bottom:2979.699760pt;}
.y5{bottom:2997.496075pt;}
.y1c{bottom:3028.316296pt;}
.y4{bottom:3033.088717pt;}
.y3{bottom:3050.885032pt;}
.y1b{bottom:3069.916292pt;}
.y1a{bottom:3111.516289pt;}
.y19{bottom:3153.116290pt;}
.y2{bottom:3186.464254pt;}
.y8{bottom:3519.204322pt;}
.y1{bottom:3523.598862pt;}
.y13{bottom:3673.137747pt;}
.y12{bottom:3713.137748pt;}
.y11{bottom:3753.137750pt;}
.yb{bottom:3822.280092pt;}
.ya{bottom:3917.853435pt;}
.y9{bottom:4050.333423pt;}
.hf{height:46.018560pt;}
.h3{height:51.558348pt;}
.h2{height:58.002964pt;}
.h10{height:67.504190pt;}
.h18{height:71.839623pt;}
.hc{height:72.018156pt;}
.h16{height:74.545918pt;}
.h14{height:76.504305pt;}
.h8{height:77.256948pt;}
.h17{height:77.559324pt;}
.he{height:78.802084pt;}
.hd{height:79.999419pt;}
.hb{height:81.191181pt;}
.ha{height:83.017541pt;}
.h7{height:92.708334pt;}
.h11{height:94.505487pt;}
.h6{height:97.070312pt;}
.h15{height:99.719414pt;}
.h9{height:120.520842pt;}
.h13{height:121.642145pt;}
.h12{height:139.062504pt;}
.h5{height:198.520846pt;}
.h1{height:231.770831pt;}
.h4{height:333.750011pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x6{left:151.551185pt;}
.x8{left:158.099735pt;}
.x7{left:164.002625pt;}
.x9{left:221.649697pt;}
.x26{left:229.201864pt;}
.x23{left:240.446788pt;}
.x27{left:248.996985pt;}
.xa{left:266.582209pt;}
.x18{left:273.620709pt;}
.x19{left:292.758236pt;}
.x1{left:309.933910pt;}
.x3{left:311.518930pt;}
.x25{left:344.576538pt;}
.x1a{left:360.735843pt;}
.x1b{left:369.997962pt;}
.x24{left:374.340302pt;}
.x15{left:416.472342pt;}
.x17{left:510.827012pt;}
.x16{left:524.071100pt;}
.x28{left:562.573328pt;}
.x29{left:623.265810pt;}
.x22{left:643.052771pt;}
.x2a{left:758.937153pt;}
.x2b{left:811.839926pt;}
.x1d{left:875.426729pt;}
.x13{left:885.505778pt;}
.x1e{left:919.857705pt;}
.x2{left:1392.849745pt;}
.x10{left:1424.264436pt;}
.x11{left:1469.196947pt;}
.x4{left:1559.659201pt;}
.x12{left:1562.513727pt;}
.x1f{left:1648.010013pt;}
.xd{left:1717.845355pt;}
.x5{left:1805.574816pt;}
.x14{left:2056.452226pt;}
.x1c{left:2140.711019pt;}
.xe{left:2149.999869pt;}
.xf{left:2190.744670pt;}
.x20{left:2532.860271pt;}
.xb{left:2536.150571pt;}
.x21{left:2577.792782pt;}
.xc{left:2581.083083pt;}
}




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