
    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_767706ecd7361680d340aec6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857910;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_e105a7eff2244b4f56e58d6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.857910;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_92182813b0fce692de50489d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f5656cd58044a7b0252bd5f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_19424435296bbe680ad69048.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_b2b2ac7134e47c9fab7a1d4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_9c371b3b24512b2d77ef2abd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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:ff8;src:url('chunks/assets/font_97c0c88f32c4e012bef630a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706543;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:ff9;src:url('chunks/assets/font_e55c0145208c7c0d50d74d21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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:ffa;src:url('chunks/assets/font_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_34c41a8bf132fdc9d3ed41a8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a020b5b7c3bae544d0bee684.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_18877d51763ebfa88060bc15.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.746094;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:ffe;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ffe{font-family:ffe;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);}
.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:25.534080px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.900145px;}
.ls2{letter-spacing:34.493408px;}
.ls3{letter-spacing:56.494606px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-14.534180px;}
.ws0{word-spacing:-8.720508px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-9.244413px;}
._2{margin-left:-7.032801px;}
._8{margin-left:-5.995178px;}
._3{margin-left:-4.740005px;}
._6{margin-left:-3.604822px;}
._1{margin-left:-2.161620px;}
._0{margin-left:-1.120188px;}
._4{width:1.289924px;}
._5{width:49.798827px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(54,96,145);}
.fs3{font-size:39.600001px;}
.fs2{font-size:66.000002px;}
.fs1{font-size:78.000003px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y46{bottom:75.567257px;}
.y24{bottom:75.567347px;}
.y86{bottom:75.567632px;}
.y6b{bottom:138.012452px;}
.y23{bottom:144.351193px;}
.y45{bottom:152.334227px;}
.y22{bottom:166.596767px;}
.y6a{bottom:175.258307px;}
.y44{bottom:189.579714px;}
.y21{bottom:203.842442px;}
.y43{bottom:211.825191px;}
.y69{bottom:212.503787px;}
.y42{bottom:234.071038px;}
.y20{bottom:241.088012px;}
.y68{bottom:249.749638px;}
.y41{bottom:256.316528px;}
.y67{bottom:271.995120px;}
.y1f{bottom:278.333582px;}
.y40{bottom:278.562193px;}
.y66{bottom:294.240606px;}
.y1e{bottom:300.579167px;}
.y3f{bottom:300.807677px;}
.y65{bottom:316.486084px;}
.y1d{bottom:322.824737px;}
.y3e{bottom:338.053348px;}
.y64{bottom:338.731568px;}
.y1c{bottom:360.070320px;}
.y3d{bottom:360.298832px;}
.y63{bottom:360.977417px;}
.y1b{bottom:382.315969px;}
.y62{bottom:385.101193px;}
.y3c{bottom:397.544492px;}
.y1a{bottom:404.561559px;}
.y3b{bottom:419.789980px;}
.y61{bottom:425.597169px;}
.y19{bottom:426.807131px;}
.y3a{bottom:442.035647px;}
.y60{bottom:447.843019px;}
.y18{bottom:449.052711px;}
.y5f{bottom:470.088137px;}
.y17{bottom:471.298326px;}
.y39{bottom:479.281307px;}
.y16{bottom:493.543948px;}
.y5e{bottom:493.816412px;}
.y38{bottom:501.526793px;}
.y15{bottom:515.789522px;}
.y5d{bottom:516.061889px;}
.y37{bottom:523.772458px;}
.y5c{bottom:538.307735px;}
.y36{bottom:546.017942px;}
.y85{bottom:551.888312px;}
.y14{bottom:553.035096px;}
.y5b{bottom:560.553218px;}
.y84{bottom:571.232672px;}
.y13{bottom:575.280664px;}
.y5a{bottom:582.798703px;}
.y35{bottom:583.263617px;}
.y83{bottom:590.576657px;}
.y12{bottom:597.526285px;}
.y34{bottom:605.509277px;}
.y59{bottom:606.526607px;}
.y82{bottom:609.920288px;}
.y11{bottom:619.771907px;}
.y58{bottom:628.772462px;}
.y81{bottom:629.264647px;}
.y33{bottom:629.633053px;}
.y10{bottom:643.895638px;}
.y80{bottom:648.608642px;}
.y57{bottom:651.017942px;}
.y7f{bottom:667.952267px;}
.y32{bottom:670.129028px;}
.y56{bottom:673.263789px;}
.yf{bottom:684.391709px;}
.y7e{bottom:687.296627px;}
.y31{bottom:692.374697px;}
.y55{bottom:695.509090px;}
.ye{bottom:706.637333px;}
.y7d{bottom:706.640627px;}
.y54{bottom:717.754757px;}
.y7c{bottom:725.984252px;}
.yd{bottom:728.882905px;}
.y30{bottom:729.620357px;}
.y53{bottom:740.000432px;}
.y7b{bottom:745.328612px;}
.yc{bottom:751.128525px;}
.y52{bottom:762.246086px;}
.y7a{bottom:764.672612px;}
.y2f{bottom:766.865845px;}
.yb{bottom:775.252258px;}
.y79{bottom:784.016237px;}
.y51{bottom:784.491572px;}
.y2e{bottom:789.111323px;}
.y78{bottom:803.360597px;}
.y50{bottom:806.737067px;}
.y2d{bottom:811.356992px;}
.ya{bottom:815.748372px;}
.y77{bottom:822.704582px;}
.y4f{bottom:828.982907px;}
.y9{bottom:837.994000px;}
.y76{bottom:842.048222px;}
.y2c{bottom:848.602658px;}
.y4e{bottom:851.228395px;}
.y8{bottom:860.239564px;}
.y75{bottom:861.392582px;}
.y2b{bottom:870.848327px;}
.y4d{bottom:873.473882px;}
.y74{bottom:880.736567px;}
.y7{bottom:882.485179px;}
.y4c{bottom:895.719544px;}
.y73{bottom:900.080207px;}
.y6{bottom:904.730759px;}
.y2a{bottom:908.093807px;}
.y4b{bottom:917.965207px;}
.y72{bottom:919.424567px;}
.y5{bottom:926.976357px;}
.y71{bottom:938.768555px;}
.y4a{bottom:940.210692px;}
.y29{bottom:945.339476px;}
.y4{bottom:949.221929px;}
.y70{bottom:958.112183px;}
.y49{bottom:964.334472px;}
.y28{bottom:967.584960px;}
.y3{bottom:971.467527px;}
.y6f{bottom:977.456543px;}
.y2{bottom:995.591308px;}
.y48{bottom:1004.830444px;}
.y27{bottom:1004.830534px;}
.y6e{bottom:1014.702026px;}
.y1{bottom:1023.615233px;}
.y26{bottom:1027.076202px;}
.y6d{bottom:1036.947509px;}
.y47{bottom:1042.076110px;}
.y6c{bottom:1061.071288px;}
.y25{bottom:1064.321777px;}
.h8{height:43.989259px;}
.h5{height:46.116212px;}
.h7{height:46.277345px;}
.h3{height:46.664064px;}
.h9{height:48.210939px;}
.h2{height:53.015627px;}
.ha{height:53.532514px;}
.h4{height:53.532518px;}
.h1{height:57.093748px;}
.h6{height:108.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:189.000000px;}
.x5{left:216.000000px;}
.x6{left:243.000000px;}
.x2{left:454.435110px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.696960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.800129pt;}
.ls2{letter-spacing:30.660807pt;}
.ls3{letter-spacing:50.217427pt;}
.ws1{word-spacing:-12.919271pt;}
.ws0{word-spacing:-7.751563pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-8.217256pt;}
._2{margin-left:-6.251379pt;}
._8{margin-left:-5.329047pt;}
._3{margin-left:-4.213337pt;}
._6{margin-left:-3.204286pt;}
._1{margin-left:-1.921440pt;}
._0{margin-left:-0.995722pt;}
._4{width:1.146599pt;}
._5{width:44.265624pt;}
.fs3{font-size:35.200001pt;}
.fs2{font-size:58.666668pt;}
.fs1{font-size:69.333336pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:67.170895pt;}
.y24{bottom:67.170975pt;}
.y86{bottom:67.171228pt;}
.y6b{bottom:122.677735pt;}
.y23{bottom:128.312171pt;}
.y45{bottom:135.408202pt;}
.y22{bottom:148.086015pt;}
.y6a{bottom:155.785162pt;}
.y44{bottom:168.515301pt;}
.y21{bottom:181.193282pt;}
.y43{bottom:188.289059pt;}
.y69{bottom:188.892255pt;}
.y42{bottom:208.063145pt;}
.y20{bottom:214.300455pt;}
.y68{bottom:221.999678pt;}
.y41{bottom:227.836914pt;}
.y67{bottom:241.773440pt;}
.y1f{bottom:247.407628pt;}
.y40{bottom:247.610838pt;}
.y66{bottom:261.547205pt;}
.y1e{bottom:267.181482pt;}
.y3f{bottom:267.384602pt;}
.y65{bottom:281.320963pt;}
.y1d{bottom:286.955322pt;}
.y3e{bottom:300.491865pt;}
.y64{bottom:301.094727pt;}
.y1c{bottom:320.062506pt;}
.y3d{bottom:320.265628pt;}
.y63{bottom:320.868815pt;}
.y1b{bottom:339.836417pt;}
.y62{bottom:342.312172pt;}
.y3c{bottom:353.372882pt;}
.y1a{bottom:359.610274pt;}
.y3b{bottom:373.146649pt;}
.y61{bottom:378.308595pt;}
.y19{bottom:379.384116pt;}
.y3a{bottom:392.920575pt;}
.y60{bottom:398.082684pt;}
.y18{bottom:399.157965pt;}
.y5f{bottom:417.856122pt;}
.y17{bottom:418.931845pt;}
.y39{bottom:426.027828pt;}
.y16{bottom:438.705731pt;}
.y5e{bottom:438.947922pt;}
.y38{bottom:445.801594pt;}
.y15{bottom:458.479575pt;}
.y5d{bottom:458.721679pt;}
.y37{bottom:465.575518pt;}
.y5c{bottom:478.495765pt;}
.y36{bottom:485.349282pt;}
.y85{bottom:490.567388pt;}
.y14{bottom:491.586752pt;}
.y5b{bottom:498.269527pt;}
.y84{bottom:507.762375pt;}
.y13{bottom:511.360590pt;}
.y5a{bottom:518.043292pt;}
.y35{bottom:518.456548pt;}
.y83{bottom:524.957028pt;}
.y12{bottom:531.134476pt;}
.y34{bottom:538.230468pt;}
.y59{bottom:539.134762pt;}
.y82{bottom:542.151367pt;}
.y11{bottom:550.908362pt;}
.y58{bottom:558.908855pt;}
.y81{bottom:559.346353pt;}
.y33{bottom:559.673825pt;}
.y10{bottom:572.351678pt;}
.y80{bottom:576.541015pt;}
.y57{bottom:578.682615pt;}
.y7f{bottom:593.735348pt;}
.y32{bottom:595.670247pt;}
.y56{bottom:598.456701pt;}
.yf{bottom:608.348186pt;}
.y7e{bottom:610.930335pt;}
.y31{bottom:615.444175pt;}
.y55{bottom:618.230302pt;}
.ye{bottom:628.122074pt;}
.y7d{bottom:628.125002pt;}
.y54{bottom:638.004228pt;}
.y7c{bottom:645.319335pt;}
.yd{bottom:647.895916pt;}
.y30{bottom:648.551428pt;}
.y53{bottom:657.778162pt;}
.y7b{bottom:662.514322pt;}
.yc{bottom:667.669800pt;}
.y52{bottom:677.552077pt;}
.y7a{bottom:679.708988pt;}
.y2f{bottom:681.658529pt;}
.yb{bottom:689.113118pt;}
.y79{bottom:696.903322pt;}
.y51{bottom:697.325842pt;}
.y2e{bottom:701.432287pt;}
.y78{bottom:714.098308pt;}
.y50{bottom:717.099615pt;}
.y2d{bottom:721.206215pt;}
.ya{bottom:725.109664pt;}
.y77{bottom:731.292962pt;}
.y4f{bottom:736.873695pt;}
.y9{bottom:744.883556pt;}
.y76{bottom:748.487308pt;}
.y2c{bottom:754.313474pt;}
.y4e{bottom:756.647463pt;}
.y8{bottom:764.657390pt;}
.y75{bottom:765.682295pt;}
.y2b{bottom:774.087402pt;}
.y4d{bottom:776.421229pt;}
.y74{bottom:782.876948pt;}
.y7{bottom:784.431270pt;}
.y4c{bottom:796.195151pt;}
.y73{bottom:800.071295pt;}
.y6{bottom:804.205119pt;}
.y2a{bottom:807.194495pt;}
.y4b{bottom:815.969073pt;}
.y72{bottom:817.266282pt;}
.y5{bottom:823.978984pt;}
.y71{bottom:834.460938pt;}
.y4a{bottom:835.742838pt;}
.y29{bottom:840.301757pt;}
.y4{bottom:843.752826pt;}
.y70{bottom:851.655274pt;}
.y49{bottom:857.186197pt;}
.y28{bottom:860.075520pt;}
.y3{bottom:863.526691pt;}
.y6f{bottom:868.850260pt;}
.y2{bottom:884.970052pt;}
.y48{bottom:893.182616pt;}
.y27{bottom:893.182697pt;}
.y6e{bottom:901.957356pt;}
.y1{bottom:909.880207pt;}
.y26{bottom:912.956624pt;}
.y6d{bottom:921.731119pt;}
.y47{bottom:926.289876pt;}
.y6c{bottom:943.174478pt;}
.y25{bottom:946.063802pt;}
.h8{height:39.101563pt;}
.h5{height:40.992188pt;}
.h7{height:41.135418pt;}
.h3{height:41.479168pt;}
.h9{height:42.854168pt;}
.h2{height:47.125002pt;}
.ha{height:47.584457pt;}
.h4{height:47.584461pt;}
.h1{height:50.749998pt;}
.h6{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:168.000000pt;}
.x5{left:192.000000pt;}
.x6{left:216.000000pt;}
.x2{left:403.942320pt;}
}




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