
    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_58d12b8021e2bae0ae93705a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d8f671b4c4e684f0fd287566.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_554bab616804320c7561ed9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_588920fbe77eb44f16bb3501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_6138854d7ce8a887c81c5f6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_28b34ce162c34041484a18ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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;}
.m5{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.095400px;}
.ls0{letter-spacing:31.134166px;}
.ls2{letter-spacing:32.575016px;}
.ls4{letter-spacing:48.424338px;}
.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:-16.271993px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.045818px;}
._0{width:1.864523px;}
._9{width:3.128326px;}
._a{width:4.149693px;}
._8{width:5.253731px;}
._12{width:7.212996px;}
._11{width:8.624150px;}
._10{width:9.686147px;}
._14{width:11.236514px;}
._d{width:12.525197px;}
._e{width:13.898781px;}
._f{width:14.914869px;}
._19{width:17.563191px;}
._1d{width:19.600860px;}
._1e{width:21.114238px;}
._c{width:22.953878px;}
._1c{width:24.281191px;}
._1b{width:25.494604px;}
._b{width:29.774121px;}
._16{width:39.879925px;}
._15{width:41.979499px;}
._1f{width:43.616303px;}
._3{width:51.306027px;}
._13{width:64.071732px;}
._18{width:81.345957px;}
._17{width:82.525584px;}
._6{width:97.806112px;}
._7{width:108.972152px;}
._5{width:201.154240px;}
._4{width:320.024752px;}
._1a{width:905.006342px;}
._2{width:1479.185408px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.239981px;}
.fs6{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs7{font-size:89.999964px;}
.fs1{font-size:107.999957px;}
.fs0{font-size:131.759947px;}
.fs5{font-size:167.759933px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.240022px;}
.y6{bottom:3.958988px;}
.ya{bottom:3.958990px;}
.y35{bottom:3.960022px;}
.y13{bottom:65.820274px;}
.y38{bottom:66.540273px;}
.y34{bottom:91.380240px;}
.y36{bottom:92.100240px;}
.y12{bottom:92.100263px;}
.y33{bottom:95.340262px;}
.y65{bottom:124.859950px;}
.y32{bottom:140.519944px;}
.y64{bottom:155.819938px;}
.y31{bottom:162.479935px;}
.y30{bottom:184.439926px;}
.y63{bottom:186.779925px;}
.y2f{bottom:215.399914px;}
.y62{bottom:217.739913px;}
.y2e{bottom:237.359905px;}
.y61{bottom:239.699904px;}
.y60{bottom:261.659895px;}
.y2d{bottom:268.319893px;}
.y2c{bottom:290.279884px;}
.y5f{bottom:292.619883px;}
.y5e{bottom:314.579874px;}
.y2b{bottom:321.239872px;}
.y5d{bottom:336.539865px;}
.y2a{bottom:343.199863px;}
.y29{bottom:365.159854px;}
.y5c{bottom:367.499853px;}
.y5b{bottom:389.459844px;}
.y28{bottom:396.119842px;}
.y5a{bottom:411.419835px;}
.y27{bottom:418.259833px;}
.y59{bottom:433.379827px;}
.y26{bottom:440.219824px;}
.y58{bottom:455.519818px;}
.y25{bottom:462.179815px;}
.y57{bottom:478.379809px;}
.y24{bottom:484.139806px;}
.y23{bottom:506.099798px;}
.y56{bottom:509.339796px;}
.y55{bottom:531.299787px;}
.y22{bottom:537.059785px;}
.y54{bottom:553.259779px;}
.y21{bottom:559.019776px;}
.y53{bottom:576.119770px;}
.y20{bottom:589.979764px;}
.y52{bottom:607.259757px;}
.y1f{bottom:611.939755px;}
.y51{bottom:629.219748px;}
.y1e{bottom:642.899743px;}
.y50{bottom:660.179736px;}
.y1d{bottom:664.859734px;}
.y4f{bottom:682.139727px;}
.y1c{bottom:686.819725px;}
.y4e{bottom:704.099718px;}
.y1b{bottom:708.779716px;}
.y4d{bottom:726.059710px;}
.y1a{bottom:739.739704px;}
.y4c{bottom:748.019701px;}
.y19{bottom:761.699695px;}
.y4b{bottom:769.979692px;}
.y18{bottom:783.839686px;}
.y4a{bottom:791.939683px;}
.y17{bottom:805.799678px;}
.y49{bottom:811.559675px;}
.y48{bottom:813.899674px;}
.y16{bottom:827.759669px;}
.y47{bottom:835.859666px;}
.y15{bottom:849.719660px;}
.y46{bottom:855.479658px;}
.y45{bottom:857.819657px;}
.y6c{bottom:870.779652px;}
.y44{bottom:879.779648px;}
.y14{bottom:881.939647px;}
.y6b{bottom:892.739643px;}
.y43{bottom:901.739639px;}
.y6a{bottom:914.879634px;}
.y11{bottom:916.319633px;}
.y42{bottom:923.879630px;}
.y10{bottom:935.759626px;}
.y69{bottom:936.839625px;}
.y41{bottom:945.839622px;}
.yf{bottom:949.619620px;}
.y40{bottom:967.799613px;}
.y8{bottom:975.899610px;}
.ye{bottom:979.859608px;}
.yd{bottom:988.139605px;}
.y3f{bottom:989.759604px;}
.yc{bottom:993.899602px;}
.y7{bottom:997.139601px;}
.y3e{bottom:1011.719595px;}
.y68{bottom:1020.719592px;}
.y9{bottom:1020.900600px;}
.yb{bottom:1022.699591px;}
.y5{bottom:1025.760600px;}
.y3d{bottom:1033.679587px;}
.y67{bottom:1042.679583px;}
.y4{bottom:1061.759575px;}
.y3c{bottom:1064.639574px;}
.y3b{bottom:1086.599565px;}
.y3{bottom:1095.779562px;}
.y66{bottom:1108.559557px;}
.y3a{bottom:1117.559553px;}
.y2{bottom:1135.739546px;}
.y39{bottom:1139.519544px;}
.y1{bottom:1176.779529px;}
.hd{height:16.560000px;}
.hc{height:17.820000px;}
.h6{height:20.160000px;}
.h4{height:20.520000px;}
.he{height:38.252797px;}
.h7{height:50.312792px;}
.hb{height:57.093727px;}
.h9{height:62.327788px;}
.ha{height:72.773408px;}
.h3{height:75.093720px;}
.h5{height:87.859652px;}
.h2{height:112.640580px;}
.h1{height:137.421508px;}
.h8{height:174.968368px;}
.h0{height:1263.000000px;}
.w4{width:5.220000px;}
.w3{width:7.740000px;}
.w2{width:8.820000px;}
.w1{width:10.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:106.379957px;}
.x1{left:111.599955px;}
.xc{left:133.200014px;}
.xd{left:160.379936px;}
.xe{left:168.300000px;}
.x2{left:196.199922px;}
.x3{left:293.579883px;}
.x13{left:309.779876px;}
.x14{left:317.519873px;}
.xf{left:399.779840px;}
.x8{left:486.179806px;}
.x4{left:489.780000px;}
.x9{left:511.559795px;}
.x5{left:513.899794px;}
.xa{left:644.219742px;}
.x6{left:647.820000px;}
.x7{left:686.699725px;}
.x11{left:733.139707px;}
.x12{left:739.079704px;}
.x10{left:802.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.084800pt;}
.ls0{letter-spacing:27.674814pt;}
.ls2{letter-spacing:28.955569pt;}
.ls4{letter-spacing:43.043856pt;}
.ws0{word-spacing:-14.463994pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-0.929616pt;}
._0{width:1.657354pt;}
._9{width:2.780734pt;}
._a{width:3.688616pt;}
._8{width:4.669983pt;}
._12{width:6.411552pt;}
._11{width:7.665911pt;}
._10{width:8.609908pt;}
._14{width:9.988012pt;}
._d{width:11.133508pt;}
._e{width:12.354472pt;}
._f{width:13.257662pt;}
._19{width:15.611725pt;}
._1d{width:17.422987pt;}
._1e{width:18.768212pt;}
._c{width:20.403447pt;}
._1c{width:21.583281pt;}
._1b{width:22.661870pt;}
._b{width:26.465885pt;}
._16{width:35.448822pt;}
._15{width:37.315110pt;}
._1f{width:38.770047pt;}
._3{width:45.605358pt;}
._13{width:56.952651pt;}
._18{width:72.307517pt;}
._17{width:73.356074pt;}
._6{width:86.938766pt;}
._7{width:96.864135pt;}
._5{width:178.803768pt;}
._4{width:284.466446pt;}
._1a{width:804.450082pt;}
._2{width:1314.831474pt;}
.fs4{font-size:42.879983pt;}
.fs6{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs7{font-size:79.999968pt;}
.fs1{font-size:95.999962pt;}
.fs0{font-size:117.119953pt;}
.fs5{font-size:149.119940pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.880019pt;}
.y6{bottom:3.519101pt;}
.ya{bottom:3.519102pt;}
.y35{bottom:3.520019pt;}
.y13{bottom:58.506910pt;}
.y38{bottom:59.146910pt;}
.y34{bottom:81.226880pt;}
.y36{bottom:81.866880pt;}
.y12{bottom:81.866901pt;}
.y33{bottom:84.746899pt;}
.y65{bottom:110.986622pt;}
.y32{bottom:124.906617pt;}
.y64{bottom:138.506611pt;}
.y31{bottom:144.426609pt;}
.y30{bottom:163.946601pt;}
.y63{bottom:166.026600pt;}
.y2f{bottom:191.466590pt;}
.y62{bottom:193.546589pt;}
.y2e{bottom:210.986582pt;}
.y61{bottom:213.066581pt;}
.y60{bottom:232.586574pt;}
.y2d{bottom:238.506571pt;}
.y2c{bottom:258.026563pt;}
.y5f{bottom:260.106563pt;}
.y5e{bottom:279.626555pt;}
.y2b{bottom:285.546552pt;}
.y5d{bottom:299.146547pt;}
.y2a{bottom:305.066545pt;}
.y29{bottom:324.586537pt;}
.y5c{bottom:326.666536pt;}
.y5b{bottom:346.186528pt;}
.y28{bottom:352.106526pt;}
.y5a{bottom:365.706520pt;}
.y27{bottom:371.786518pt;}
.y59{bottom:385.226513pt;}
.y26{bottom:391.306510pt;}
.y58{bottom:404.906505pt;}
.y25{bottom:410.826502pt;}
.y57{bottom:425.226497pt;}
.y24{bottom:430.346495pt;}
.y23{bottom:449.866487pt;}
.y56{bottom:452.746486pt;}
.y55{bottom:472.266478pt;}
.y22{bottom:477.386476pt;}
.y54{bottom:491.786470pt;}
.y21{bottom:496.906468pt;}
.y53{bottom:512.106462pt;}
.y20{bottom:524.426457pt;}
.y52{bottom:539.786451pt;}
.y1f{bottom:543.946449pt;}
.y51{bottom:559.306443pt;}
.y1e{bottom:571.466438pt;}
.y50{bottom:586.826432pt;}
.y1d{bottom:590.986430pt;}
.y4f{bottom:606.346424pt;}
.y1c{bottom:610.506422pt;}
.y4e{bottom:625.866416pt;}
.y1b{bottom:630.026415pt;}
.y4d{bottom:645.386409pt;}
.y1a{bottom:657.546404pt;}
.y4c{bottom:664.906401pt;}
.y19{bottom:677.066396pt;}
.y4b{bottom:684.426393pt;}
.y18{bottom:696.746388pt;}
.y4a{bottom:703.946385pt;}
.y17{bottom:716.266380pt;}
.y49{bottom:721.386378pt;}
.y48{bottom:723.466377pt;}
.y16{bottom:735.786372pt;}
.y47{bottom:742.986369pt;}
.y15{bottom:755.306365pt;}
.y46{bottom:760.426362pt;}
.y45{bottom:762.506362pt;}
.y6c{bottom:774.026357pt;}
.y44{bottom:782.026354pt;}
.y14{bottom:783.946353pt;}
.y6b{bottom:793.546349pt;}
.y43{bottom:801.546346pt;}
.y6a{bottom:813.226341pt;}
.y11{bottom:814.506341pt;}
.y42{bottom:821.226338pt;}
.y10{bottom:831.786334pt;}
.y69{bottom:832.746334pt;}
.y41{bottom:840.746330pt;}
.yf{bottom:844.106329pt;}
.y40{bottom:860.266323pt;}
.y8{bottom:867.466320pt;}
.ye{bottom:870.986318pt;}
.yd{bottom:878.346315pt;}
.y3f{bottom:879.786315pt;}
.yc{bottom:883.466313pt;}
.y7{bottom:886.346312pt;}
.y3e{bottom:899.306307pt;}
.y68{bottom:907.306304pt;}
.y9{bottom:907.467200pt;}
.yb{bottom:909.066303pt;}
.y5{bottom:911.787200pt;}
.y3d{bottom:918.826299pt;}
.y67{bottom:926.826296pt;}
.y4{bottom:943.786289pt;}
.y3c{bottom:946.346288pt;}
.y3b{bottom:965.866280pt;}
.y3{bottom:974.026277pt;}
.y66{bottom:985.386273pt;}
.y3a{bottom:993.386269pt;}
.y2{bottom:1009.546263pt;}
.y39{bottom:1012.906262pt;}
.y1{bottom:1046.026248pt;}
.hd{height:14.720000pt;}
.hc{height:15.840000pt;}
.h6{height:17.920000pt;}
.h4{height:18.240000pt;}
.he{height:34.002486pt;}
.h7{height:44.722482pt;}
.hb{height:50.749980pt;}
.h9{height:55.402478pt;}
.ha{height:64.687474pt;}
.h3{height:66.749973pt;}
.h5{height:78.097469pt;}
.h2{height:100.124960pt;}
.h1{height:122.152451pt;}
.h8{height:155.527438pt;}
.h0{height:1122.666667pt;}
.w4{width:4.640000pt;}
.w3{width:6.880000pt;}
.w2{width:7.840000pt;}
.w1{width:8.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:94.559962pt;}
.x1{left:99.199960pt;}
.xc{left:118.400012pt;}
.xd{left:142.559943pt;}
.xe{left:149.600000pt;}
.x2{left:174.399930pt;}
.x3{left:260.959896pt;}
.x13{left:275.359890pt;}
.x14{left:282.239887pt;}
.xf{left:355.359858pt;}
.x8{left:432.159827pt;}
.x4{left:435.360000pt;}
.x9{left:454.719818pt;}
.x5{left:456.799817pt;}
.xa{left:572.639771pt;}
.x6{left:575.840000pt;}
.x7{left:610.399756pt;}
.x11{left:651.679739pt;}
.x12{left:656.959737pt;}
.x10{left:713.600000pt;}
}




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