
    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_8f73f0e4b05a974093ca9f57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_155f5729dd89ccb014acae1f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_e092a5587479345237a4595e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_1cf8bad10f41ccd6671f8e21.woff')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_53f024164c09b1b5c6a19d57.woff')format("woff");}.ff5{font-family:ff5;line-height:1.216000;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_34302a8c2f811f822bfe53e5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.044000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.950515px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:43.200274px;}
.ls3{letter-spacing:43.200294px;}
.ls1{letter-spacing:108.000282px;}
.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;}
}
.ws2{word-spacing:-25.632002px;}
.ws1{word-spacing:-19.224001px;}
.ws7{word-spacing:-18.720001px;}
.ws4{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:616.757930px;}
.ws5{word-spacing:1147.152508px;}
._1{margin-left:-4.440000px;}
._0{margin-left:-1.332365px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,151,167);}
.fc6{color:rgb(38,38,38);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(197,37,143);}
.fs3{font-size:56.100003px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000004px;}
.fs4{font-size:72.000002px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:91.800012px;}
.fs6{font-size:96.000006px;}
.fsb{font-size:121.200007px;}
.fs8{font-size:127.200010px;}
.fs5{font-size:145.200020px;}
.fsc{font-size:151.200005px;}
.fs0{font-size:156.000011px;}
.fs7{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y3{bottom:28.082245px;}
.ya{bottom:28.676681px;}
.y4d{bottom:34.189485px;}
.ye{bottom:64.970012px;}
.y46{bottom:69.851908px;}
.y16{bottom:78.152098px;}
.y54{bottom:81.845890px;}
.y3a{bottom:87.865850px;}
.yd{bottom:94.220013px;}
.y57{bottom:97.936521px;}
.y4c{bottom:98.394340px;}
.y2d{bottom:100.715091px;}
.y23{bottom:102.403503px;}
.y53{bottom:106.595891px;}
.y45{bottom:111.476909px;}
.y39{bottom:112.615849px;}
.y56{bottom:119.311522px;}
.y2c{bottom:122.090085px;}
.y22{bottom:123.778503px;}
.y44{bottom:135.101910px;}
.y55{bottom:140.686521px;}
.y40{bottom:140.726910px;}
.y2b{bottom:143.465086px;}
.y21{bottom:145.648507px;}
.y33{bottom:160.588898px;}
.y2a{bottom:164.840087px;}
.y5e{bottom:165.550199px;}
.y18{bottom:175.134845px;}
.y43{bottom:176.726911px;}
.y3f{bottom:182.351911px;}
.y38{bottom:182.399334px;}
.y5d{bottom:186.925200px;}
.y42{bottom:200.351912px;}
.y9{bottom:204.008893px;}
.y3e{bottom:205.976912px;}
.y37{bottom:207.149332px;}
.y5c{bottom:208.300200px;}
.y11{bottom:210.666104px;}
.y4b{bottom:212.676516px;}
.y8{bottom:222.032294px;}
.y41{bottom:223.976913px;}
.y20{bottom:226.000225px;}
.y34{bottom:228.293743px;}
.y25{bottom:232.537898px;}
.y4a{bottom:233.196513px;}
.y60{bottom:233.361731px;}
.y10{bottom:235.416098px;}
.y5b{bottom:247.168811px;}
.y1f{bottom:247.375226px;}
.y3d{bottom:247.601913px;}
.y24{bottom:253.912898px;}
.y5f{bottom:254.736730px;}
.yf{bottom:261.906101px;}
.y7{bottom:262.148884px;}
.y17{bottom:265.418337px;}
.y52{bottom:265.589986px;}
.y5a{bottom:268.543805px;}
.y1e{bottom:269.245230px;}
.y36{bottom:276.932805px;}
.y6{bottom:280.172285px;}
.y12{bottom:284.309995px;}
.y59{bottom:289.918806px;}
.y51{bottom:290.339986px;}
.y47{bottom:294.322031px;}
.y4e{bottom:296.605703px;}
.y35{bottom:301.682804px;}
.y58{bottom:311.293809px;}
.y5{bottom:320.288880px;}
.y15{bottom:327.546605px;}
.y29{bottom:334.118624px;}
.y4{bottom:338.312274px;}
.y32{bottom:339.440313px;}
.y30{bottom:344.806124px;}
.y1d{bottom:349.596914px;}
.y28{bottom:355.493618px;}
.y14{bottom:360.171606px;}
.y2f{bottom:366.181118px;}
.y1c{bottom:370.971915px;}
.y3c{bottom:371.466255px;}
.y31{bottom:372.065314px;}
.y27{bottom:376.868618px;}
.y49{bottom:384.663764px;}
.y2e{bottom:387.556119px;}
.y1b{bottom:392.841919px;}
.yc{bottom:394.716072px;}
.y3b{bottom:396.216253px;}
.y26{bottom:398.243619px;}
.y50{bottom:400.275117px;}
.y2{bottom:416.937342px;}
.y4f{bottom:421.650117px;}
.y1{bottom:463.737339px;}
.y1a{bottom:469.667898px;}
.y13{bottom:470.724986px;}
.y48{bottom:486.086087px;}
.y19{bottom:508.907893px;}
.yb{bottom:509.964981px;}
.h2{height:43.125000px;}
.h4{height:52.846203px;}
.h13{height:55.584002px;}
.h15{height:57.672002px;}
.hc{height:62.304003px;}
.hd{height:67.284000px;}
.h5{height:67.824002px;}
.h8{height:67.968002px;}
.hf{height:79.128000px;}
.h10{height:79.296000px;}
.h3{height:86.475611px;}
.hb{height:88.704006px;}
.he{height:90.432006px;}
.h7{height:90.624006px;}
.h12{height:91.246515px;}
.h11{height:97.081206px;}
.h6{height:116.305216px;}
.ha{height:119.822409px;}
.h14{height:121.111204px;}
.h1{height:144.144010px;}
.h9{height:199.584006px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:46.939963px;}
.x1{left:64.303478px;}
.x37{left:66.941616px;}
.x2{left:100.036339px;}
.x34{left:146.008351px;}
.x3c{left:150.349244px;}
.x11{left:155.228433px;}
.x35{left:160.957378px;}
.x3d{left:190.321429px;}
.x12{left:199.077964px;}
.x18{left:206.108737px;}
.x19{left:222.236667px;}
.x1a{left:225.737718px;}
.x1b{left:227.960707px;}
.x28{left:241.523801px;}
.x10{left:244.565392px;}
.x2e{left:247.366862px;}
.x2c{left:258.035678px;}
.x27{left:261.822946px;}
.x38{left:275.242149px;}
.x17{left:276.839458px;}
.x42{left:285.604362px;}
.x33{left:293.177664px;}
.x44{left:307.915416px;}
.x43{left:313.144401px;}
.xd{left:319.916935px;}
.x31{left:335.530496px;}
.x14{left:350.126633px;}
.x3b{left:353.441221px;}
.x3a{left:359.453223px;}
.xb{left:379.950436px;}
.x47{left:388.234392px;}
.x46{left:391.951393px;}
.x7{left:397.065118px;}
.x45{left:402.139436px;}
.x48{left:405.604464px;}
.x26{left:421.037747px;}
.x4{left:427.195881px;}
.x5{left:431.326634px;}
.x6{left:437.140083px;}
.x2a{left:444.366712px;}
.x32{left:451.833888px;}
.x8{left:454.049846px;}
.x21{left:457.971347px;}
.x1f{left:462.408349px;}
.xf{left:465.610729px;}
.x1e{left:466.746352px;}
.x36{left:467.801846px;}
.xe{left:469.075684px;}
.x29{left:476.859165px;}
.x1c{left:478.518392px;}
.x22{left:479.805379px;}
.x1d{left:484.818399px;}
.x13{left:491.136856px;}
.x39{left:492.632926px;}
.x20{left:507.300443px;}
.xa{left:518.685080px;}
.x4d{left:544.511470px;}
.x16{left:547.456977px;}
.xc{left:554.616468px;}
.x4c{left:556.472500px;}
.x2f{left:603.143543px;}
.x30{left:624.815617px;}
.x15{left:683.941245px;}
.x40{left:694.433894px;}
.x3f{left:705.274335px;}
.x3e{left:719.336492px;}
.x41{left:744.721820px;}
.x24{left:745.884124px;}
.x23{left:756.000129px;}
.x25{left:780.327182px;}
.x4b{left:892.973425px;}
.x49{left:898.661425px;}
.x4a{left:901.694432px;}
.x2b{left:1038.688064px;}
.x2d{left:1039.801339px;}
.x3{left:1047.027099px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.622680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:38.400243pt;}
.ls3{letter-spacing:38.400261pt;}
.ls1{letter-spacing:96.000251pt;}
.ws2{word-spacing:-22.784001pt;}
.ws1{word-spacing:-17.088001pt;}
.ws7{word-spacing:-16.640001pt;}
.ws4{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:548.229271pt;}
.ws5{word-spacing:1019.691118pt;}
._1{margin-left:-3.946667pt;}
._0{margin-left:-1.184324pt;}
.fs3{font-size:49.866670pt;}
.fs1{font-size:53.333334pt;}
.fs9{font-size:58.666670pt;}
.fs4{font-size:64.000002pt;}
.fsa{font-size:74.666666pt;}
.fs2{font-size:81.600011pt;}
.fs6{font-size:85.333339pt;}
.fsb{font-size:107.733339pt;}
.fs8{font-size:113.066676pt;}
.fs5{font-size:129.066684pt;}
.fsc{font-size:134.400004pt;}
.fs0{font-size:138.666676pt;}
.fs7{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:24.961996pt;}
.ya{bottom:25.490384pt;}
.y4d{bottom:30.390654pt;}
.ye{bottom:57.751122pt;}
.y46{bottom:62.090585pt;}
.y16{bottom:69.468532pt;}
.y54{bottom:72.751902pt;}
.y3a{bottom:78.102978pt;}
.yd{bottom:83.751122pt;}
.y57{bottom:87.054686pt;}
.y4c{bottom:87.461636pt;}
.y2d{bottom:89.524526pt;}
.y23{bottom:91.025336pt;}
.y53{bottom:94.751903pt;}
.y45{bottom:99.090586pt;}
.y39{bottom:100.102977pt;}
.y56{bottom:106.054686pt;}
.y2c{bottom:108.524520pt;}
.y22{bottom:110.025336pt;}
.y44{bottom:120.090587pt;}
.y55{bottom:125.054686pt;}
.y40{bottom:125.090587pt;}
.y2b{bottom:127.524521pt;}
.y21{bottom:129.465340pt;}
.y33{bottom:142.745687pt;}
.y2a{bottom:146.524521pt;}
.y5e{bottom:147.155732pt;}
.y18{bottom:155.675418pt;}
.y43{bottom:157.090588pt;}
.y3f{bottom:162.090588pt;}
.y38{bottom:162.132741pt;}
.y5d{bottom:166.155733pt;}
.y42{bottom:178.090588pt;}
.y9{bottom:181.341239pt;}
.y3e{bottom:183.090589pt;}
.y37{bottom:184.132740pt;}
.y5c{bottom:185.155734pt;}
.y11{bottom:187.258759pt;}
.y4b{bottom:189.045792pt;}
.y8{bottom:197.362039pt;}
.y41{bottom:199.090589pt;}
.y20{bottom:200.889089pt;}
.y34{bottom:202.927771pt;}
.y25{bottom:206.700353pt;}
.y4a{bottom:207.285789pt;}
.y60{bottom:207.432649pt;}
.y10{bottom:209.258753pt;}
.y5b{bottom:219.705610pt;}
.y1f{bottom:219.889090pt;}
.y3d{bottom:220.090590pt;}
.y24{bottom:225.700354pt;}
.y5f{bottom:226.432649pt;}
.yf{bottom:232.805423pt;}
.y7{bottom:233.021230pt;}
.y17{bottom:235.927410pt;}
.y52{bottom:236.079987pt;}
.y5a{bottom:238.705604pt;}
.y1e{bottom:239.329093pt;}
.y36{bottom:246.162494pt;}
.y6{bottom:249.042031pt;}
.y12{bottom:252.719996pt;}
.y59{bottom:257.705605pt;}
.y51{bottom:258.079988pt;}
.y47{bottom:261.619583pt;}
.y4e{bottom:263.649514pt;}
.y35{bottom:268.162492pt;}
.y58{bottom:276.705608pt;}
.y5{bottom:284.701227pt;}
.y15{bottom:291.152538pt;}
.y29{bottom:296.994332pt;}
.y4{bottom:300.722021pt;}
.y32{bottom:301.724722pt;}
.y30{bottom:306.494333pt;}
.y1d{bottom:310.752813pt;}
.y28{bottom:315.994327pt;}
.y14{bottom:320.152539pt;}
.y2f{bottom:325.494327pt;}
.y1c{bottom:329.752813pt;}
.y3c{bottom:330.192226pt;}
.y31{bottom:330.724723pt;}
.y27{bottom:334.994327pt;}
.y49{bottom:341.923346pt;}
.y2e{bottom:344.494328pt;}
.y1b{bottom:349.192817pt;}
.yc{bottom:350.858731pt;}
.y3b{bottom:352.192225pt;}
.y26{bottom:353.994328pt;}
.y50{bottom:355.800104pt;}
.y2{bottom:370.610971pt;}
.y4f{bottom:374.800104pt;}
.y1{bottom:412.210968pt;}
.y1a{bottom:417.482576pt;}
.y13{bottom:418.422210pt;}
.y48{bottom:432.076522pt;}
.y19{bottom:452.362571pt;}
.yb{bottom:453.302205pt;}
.h2{height:38.333334pt;}
.h4{height:46.974403pt;}
.h13{height:49.408002pt;}
.h15{height:51.264002pt;}
.hc{height:55.381336pt;}
.hd{height:59.808000pt;}
.h5{height:60.288002pt;}
.h8{height:60.416002pt;}
.hf{height:70.336000pt;}
.h10{height:70.485333pt;}
.h3{height:76.867210pt;}
.hb{height:78.848005pt;}
.he{height:80.384005pt;}
.h7{height:80.554672pt;}
.h12{height:81.108013pt;}
.h11{height:86.294405pt;}
.h6{height:103.382414pt;}
.ha{height:106.508808pt;}
.h14{height:107.654403pt;}
.h1{height:128.128009pt;}
.h9{height:177.408006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:41.724411pt;}
.x1{left:57.158647pt;}
.x37{left:59.503659pt;}
.x2{left:88.921190pt;}
.x34{left:129.785201pt;}
.x3c{left:133.643772pt;}
.x11{left:137.980829pt;}
.x35{left:143.073225pt;}
.x3d{left:169.174603pt;}
.x12{left:176.958191pt;}
.x18{left:183.207766pt;}
.x19{left:197.543704pt;}
.x1a{left:200.655749pt;}
.x1b{left:202.631739pt;}
.x28{left:214.687823pt;}
.x10{left:217.391460pt;}
.x2e{left:219.881655pt;}
.x2c{left:229.365047pt;}
.x27{left:232.731507pt;}
.x38{left:244.659688pt;}
.x17{left:246.079518pt;}
.x42{left:253.870544pt;}
.x33{left:260.602368pt;}
.x44{left:273.702592pt;}
.x43{left:278.350579pt;}
.xd{left:284.370609pt;}
.x31{left:298.249330pt;}
.x14{left:311.223674pt;}
.x3b{left:314.169974pt;}
.x3a{left:319.513976pt;}
.xb{left:337.733721pt;}
.x47{left:345.097237pt;}
.x46{left:348.401238pt;}
.x7{left:352.946771pt;}
.x45{left:357.457276pt;}
.x48{left:360.537302pt;}
.x26{left:374.255775pt;}
.x4{left:379.729672pt;}
.x5{left:383.401452pt;}
.x6{left:388.568962pt;}
.x2a{left:394.992633pt;}
.x32{left:401.630123pt;}
.x8{left:403.599863pt;}
.x21{left:407.085642pt;}
.x1f{left:411.029643pt;}
.xf{left:413.876203pt;}
.x1e{left:414.885646pt;}
.x36{left:415.823863pt;}
.xe{left:416.956163pt;}
.x29{left:423.874814pt;}
.x1c{left:425.349682pt;}
.x22{left:426.493671pt;}
.x1d{left:430.949688pt;}
.x13{left:436.566094pt;}
.x39{left:437.895934pt;}
.x20{left:450.933727pt;}
.xa{left:461.053405pt;}
.x4d{left:484.010195pt;}
.x16{left:486.628424pt;}
.xc{left:492.992416pt;}
.x4c{left:494.642222pt;}
.x2f{left:536.127594pt;}
.x30{left:555.391660pt;}
.x15{left:607.947773pt;}
.x40{left:617.274572pt;}
.x3f{left:626.910520pt;}
.x3e{left:639.410215pt;}
.x41{left:661.974951pt;}
.x24{left:663.008110pt;}
.x23{left:672.000115pt;}
.x25{left:693.624162pt;}
.x4b{left:793.754155pt;}
.x49{left:798.810156pt;}
.x4a{left:801.506162pt;}
.x2b{left:923.278280pt;}
.x2d{left:924.267857pt;}
.x3{left:930.690755pt;}
}




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