
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_5077953fd668824990c73619.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_afff9615b368ef10687edd32.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_a073e1a6cfdd9acd2a572758.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c07ddd3ef3c50cbf8a0e3b6a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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:92.147324px;}
.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:-124.671461px;}
.ws4{word-spacing:-27.980819px;}
.ws2{word-spacing:-27.653084px;}
.ws1{word-spacing:-24.893999px;}
.ws6{word-spacing:-22.895999px;}
.ws5{word-spacing:-16.532819px;}
.ws3{word-spacing:-12.446999px;}
.ws7{word-spacing:0.000000px;}
._f{margin-left:-16.219272px;}
._2{margin-left:-14.321843px;}
._6{margin-left:-12.628461px;}
._7{margin-left:-6.662576px;}
._9{margin-left:-5.337565px;}
._5{margin-left:-4.263334px;}
._0{margin-left:-2.443302px;}
._1{margin-left:-1.153746px;}
._4{width:1.406094px;}
._8{width:2.951372px;}
._b{width:7.350232px;}
._a{width:8.632677px;}
._11{width:11.889371px;}
._10{width:13.497695px;}
._12{width:14.937395px;}
._13{width:18.583136px;}
._14{width:19.671801px;}
._e{width:47.347717px;}
._16{width:48.380186px;}
._15{width:49.544742px;}
._d{width:59.260540px;}
._c{width:114.396691px;}
._3{width:789.006496px;}
.fc3{color:transparent;}
.fc2{color:rgb(26,77,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:53.999998px;}
.fs3{font-size:59.984997px;}
.fs5{font-size:65.969996px;}
.fsc{font-size:71.999997px;}
.fsb{font-size:77.984997px;}
.fsd{font-size:100.620000px;}
.fs8{font-size:101.969996px;}
.fs7{font-size:107.999996px;}
.fs4{font-size:119.969995px;}
.fsa{font-size:125.999995px;}
.fs1{font-size:131.984995px;}
.fs6{font-size:132.164999px;}
.fs2{font-size:161.955002px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y13{bottom:21.778415px;}
.y12{bottom:42.028414px;}
.y11{bottom:62.278413px;}
.yb{bottom:90.778352px;}
.ya{bottom:111.028351px;}
.y2{bottom:116.714789px;}
.y9{bottom:131.278351px;}
.y8{bottom:160.184189px;}
.y10{bottom:199.580608px;}
.yf{bottom:219.830607px;}
.ye{bottom:240.080606px;}
.yd{bottom:260.330605px;}
.yc{bottom:282.830964px;}
.y3e{bottom:321.230903px;}
.y3d{bottom:339.230902px;}
.y3c{bottom:357.230901px;}
.y3b{bottom:375.230900px;}
.y3a{bottom:393.230900px;}
.y39{bottom:411.230899px;}
.y38{bottom:429.230898px;}
.y37{bottom:447.230897px;}
.y36{bottom:465.230897px;}
.y4{bottom:488.705956px;}
.y14{bottom:547.932469px;}
.y40{bottom:588.132407px;}
.y3f{bottom:632.007406px;}
.y45{bottom:686.797531px;}
.y42{bottom:744.922409px;}
.y41{bottom:786.547407px;}
.y44{bottom:832.297465px;}
.y43{bottom:873.922464px;}
.y35{bottom:939.124833px;}
.y52{bottom:974.899831px;}
.y25{bottom:1046.549836px;}
.y34{bottom:1069.349823px;}
.y24{bottom:1083.674835px;}
.y33{bottom:1110.974822px;}
.y23{bottom:1120.799833px;}
.y32{bottom:1152.599820px;}
.y22{bottom:1157.924832px;}
.y31{bottom:1194.224818px;}
.y21{bottom:1195.049830px;}
.y20{bottom:1232.174829px;}
.y30{bottom:1235.849817px;}
.y2f{bottom:1277.474815px;}
.y1f{bottom:1306.424826px;}
.y2e{bottom:1319.099813px;}
.y1e{bottom:1343.549824px;}
.y2d{bottom:1360.724811px;}
.y1d{bottom:1380.674822px;}
.y2c{bottom:1402.349810px;}
.y1c{bottom:1417.799821px;}
.y2b{bottom:1443.974808px;}
.y2a{bottom:1485.599806px;}
.y1b{bottom:1492.049818px;}
.y29{bottom:1527.224804px;}
.y1a{bottom:1529.174816px;}
.y19{bottom:1566.299815px;}
.y28{bottom:1568.849803px;}
.y18{bottom:1603.424813px;}
.y27{bottom:1610.474801px;}
.y17{bottom:1640.549812px;}
.y26{bottom:1652.099799px;}
.y16{bottom:1700.971813px;}
.y15{bottom:1747.096811px;}
.y4a{bottom:1827.726440px;}
.y49{bottom:1854.726439px;}
.y51{bottom:1859.775115px;}
.y50{bottom:1886.775113px;}
.y4d{bottom:1891.575173px;}
.y4f{bottom:1913.775112px;}
.y4c{bottom:1918.575172px;}
.y4e{bottom:1940.775111px;}
.y4b{bottom:1945.575171px;}
.y48{bottom:1982.250169px;}
.y47{bottom:2019.375168px;}
.y46{bottom:2067.375154px;}
.y5e{bottom:2134.821137px;}
.y5d{bottom:2169.696135px;}
.y5c{bottom:2204.571134px;}
.y5b{bottom:2239.446132px;}
.y5a{bottom:2274.321131px;}
.y59{bottom:2344.071128px;}
.y58{bottom:2378.946126px;}
.y57{bottom:2413.821125px;}
.y56{bottom:2448.696124px;}
.y55{bottom:2514.506554px;}
.y54{bottom:2539.256553px;}
.y1{bottom:2557.979901px;}
.y53{bottom:2564.006552px;}
.y7{bottom:2635.894567px;}
.y6{bottom:2692.144564px;}
.y5{bottom:2748.394562px;}
.hf{height:50.165998px;}
.h7{height:55.726062px;}
.h9{height:61.286127px;}
.ha{height:62.671497px;}
.h13{height:66.887997px;}
.h12{height:72.448062px;}
.h14{height:93.475980px;}
.he{height:94.730126px;}
.hd{height:100.331996px;}
.h11{height:109.019605px;}
.hb{height:109.168289px;}
.h8{height:111.452125px;}
.h10{height:117.053995px;}
.h5{height:122.614060px;}
.h6{height:150.456197px;}
.h3{height:163.199091px;}
.hc{height:201.166930px;}
.h2{height:228.239990px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:233.999990px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x24{left:5.304624px;}
.x3{left:7.653463px;}
.x8{left:15.056651px;}
.x9{left:16.744953px;}
.x7{left:18.412502px;}
.x14{left:25.015868px;}
.x1{left:28.079999px;}
.xa{left:30.526129px;}
.x2{left:37.478862px;}
.x1a{left:40.519243px;}
.x11{left:99.299253px;}
.x12{left:100.793394px;}
.x1b{left:102.148147px;}
.x18{left:209.200311px;}
.xb{left:232.463627px;}
.x15{left:243.786261px;}
.xc{left:248.951907px;}
.x22{left:255.460441px;}
.x21{left:260.136222px;}
.x19{left:280.497183px;}
.x5{left:287.183265px;}
.x25{left:306.061886px;}
.x4{left:328.632482px;}
.x23{left:332.962391px;}
.xd{left:438.285878px;}
.xe{left:454.774159px;}
.x6{left:466.778961px;}
.x17{left:473.975270px;}
.x16{left:514.805781px;}
.x1d{left:558.209420px;}
.xf{left:559.961654px;}
.x1c{left:563.025826px;}
.x26{left:567.291465px;}
.x27{left:572.248496px;}
.x1e{left:574.434029px;}
.x10{left:576.449935px;}
.x13{left:628.734614px;}
.x1f{left:689.437842px;}
.x20{left:737.707371px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:81.908733pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-24.871839pt;}
.ws2{word-spacing:-24.580519pt;}
.ws1{word-spacing:-22.127999pt;}
.ws6{word-spacing:-20.351999pt;}
.ws5{word-spacing:-14.695839pt;}
.ws3{word-spacing:-11.064000pt;}
.ws7{word-spacing:0.000000pt;}
._f{margin-left:-14.417130pt;}
._2{margin-left:-12.730527pt;}
._6{margin-left:-11.225299pt;}
._7{margin-left:-5.922289pt;}
._9{margin-left:-4.744503pt;}
._5{margin-left:-3.789630pt;}
._0{margin-left:-2.171824pt;}
._1{margin-left:-1.025552pt;}
._4{width:1.249862pt;}
._8{width:2.623442pt;}
._b{width:6.533539pt;}
._a{width:7.673491pt;}
._11{width:10.568330pt;}
._10{width:11.997951pt;}
._12{width:13.277685pt;}
._13{width:16.518343pt;}
._14{width:17.486045pt;}
._e{width:42.086859pt;}
._16{width:43.004610pt;}
._15{width:44.039771pt;}
._d{width:52.676036pt;}
._c{width:101.685947pt;}
._3{width:701.339107pt;}
.fs9{font-size:47.999998pt;}
.fs3{font-size:53.319997pt;}
.fs5{font-size:58.639997pt;}
.fsc{font-size:63.999997pt;}
.fsb{font-size:69.319997pt;}
.fsd{font-size:89.440000pt;}
.fs8{font-size:90.639996pt;}
.fs7{font-size:95.999996pt;}
.fs4{font-size:106.639996pt;}
.fsa{font-size:111.999995pt;}
.fs1{font-size:117.319995pt;}
.fs6{font-size:117.479999pt;}
.fs2{font-size:143.960002pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y13{bottom:19.358591pt;}
.y12{bottom:37.358590pt;}
.y11{bottom:55.358590pt;}
.yb{bottom:80.691869pt;}
.ya{bottom:98.691868pt;}
.y2{bottom:103.746479pt;}
.y9{bottom:116.691867pt;}
.y8{bottom:142.385946pt;}
.y10{bottom:177.404985pt;}
.yf{bottom:195.404984pt;}
.ye{bottom:213.404983pt;}
.yd{bottom:231.404982pt;}
.yc{bottom:251.405302pt;}
.y3e{bottom:285.538580pt;}
.y3d{bottom:301.538579pt;}
.y3c{bottom:317.538579pt;}
.y3b{bottom:333.538578pt;}
.y3a{bottom:349.538577pt;}
.y39{bottom:365.538577pt;}
.y38{bottom:381.538576pt;}
.y37{bottom:397.538575pt;}
.y36{bottom:413.538575pt;}
.y4{bottom:434.405294pt;}
.y14{bottom:487.051084pt;}
.y40{bottom:522.784362pt;}
.y3f{bottom:561.784361pt;}
.y45{bottom:610.486695pt;}
.y42{bottom:662.153252pt;}
.y41{bottom:699.153251pt;}
.y44{bottom:739.819969pt;}
.y43{bottom:776.819968pt;}
.y35{bottom:834.777629pt;}
.y52{bottom:866.577628pt;}
.y25{bottom:930.266521pt;}
.y34{bottom:950.533176pt;}
.y24{bottom:963.266520pt;}
.y33{bottom:987.533175pt;}
.y23{bottom:996.266518pt;}
.y32{bottom:1024.533173pt;}
.y22{bottom:1029.266517pt;}
.y31{bottom:1061.533172pt;}
.y21{bottom:1062.266516pt;}
.y20{bottom:1095.266514pt;}
.y30{bottom:1098.533170pt;}
.y2f{bottom:1135.533169pt;}
.y1f{bottom:1161.266512pt;}
.y2e{bottom:1172.533167pt;}
.y1e{bottom:1194.266510pt;}
.y2d{bottom:1209.533166pt;}
.y1d{bottom:1227.266509pt;}
.y2c{bottom:1246.533164pt;}
.y1c{bottom:1260.266507pt;}
.y2b{bottom:1283.533163pt;}
.y2a{bottom:1320.533161pt;}
.y1b{bottom:1326.266505pt;}
.y29{bottom:1357.533159pt;}
.y1a{bottom:1359.266503pt;}
.y19{bottom:1392.266502pt;}
.y28{bottom:1394.533158pt;}
.y18{bottom:1425.266501pt;}
.y27{bottom:1431.533156pt;}
.y17{bottom:1458.266499pt;}
.y26{bottom:1468.533155pt;}
.y16{bottom:1511.974945pt;}
.y15{bottom:1552.974943pt;}
.y4a{bottom:1624.645724pt;}
.y49{bottom:1648.645723pt;}
.y51{bottom:1653.133435pt;}
.y50{bottom:1677.133434pt;}
.y4d{bottom:1681.400154pt;}
.y4f{bottom:1701.133433pt;}
.y4c{bottom:1705.400153pt;}
.y4e{bottom:1725.133432pt;}
.y4b{bottom:1729.400152pt;}
.y48{bottom:1762.000151pt;}
.y47{bottom:1795.000149pt;}
.y46{bottom:1837.666803pt;}
.y5e{bottom:1897.618788pt;}
.y5d{bottom:1928.618787pt;}
.y5c{bottom:1959.618786pt;}
.y5b{bottom:1990.618784pt;}
.y5a{bottom:2021.618783pt;}
.y59{bottom:2083.618780pt;}
.y58{bottom:2114.618779pt;}
.y57{bottom:2145.618778pt;}
.y56{bottom:2176.618777pt;}
.y55{bottom:2235.116937pt;}
.y54{bottom:2257.116936pt;}
.y1{bottom:2273.759912pt;}
.y53{bottom:2279.116935pt;}
.y7{bottom:2343.017393pt;}
.y6{bottom:2393.017391pt;}
.y5{bottom:2443.017388pt;}
.hf{height:44.591998pt;}
.h7{height:49.534278pt;}
.h9{height:54.476557pt;}
.ha{height:55.707997pt;}
.h13{height:59.455998pt;}
.h12{height:64.398277pt;}
.h14{height:83.089760pt;}
.he{height:84.204556pt;}
.hd{height:89.183996pt;}
.h11{height:96.906316pt;}
.hb{height:97.038479pt;}
.h8{height:99.068556pt;}
.h10{height:104.047996pt;}
.h5{height:108.990275pt;}
.h6{height:133.738842pt;}
.h3{height:145.065859pt;}
.hc{height:178.815049pt;}
.h2{height:202.879992pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:207.999991pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.715221pt;}
.x3{left:6.803078pt;}
.x8{left:13.383690pt;}
.x9{left:14.884403pt;}
.x7{left:16.366668pt;}
.x14{left:22.236327pt;}
.x1{left:24.959999pt;}
.xa{left:27.134337pt;}
.x2{left:33.314544pt;}
.x1a{left:36.017105pt;}
.x11{left:88.266003pt;}
.x12{left:89.594128pt;}
.x1b{left:90.798353pt;}
.x18{left:185.955832pt;}
.xb{left:206.634335pt;}
.x15{left:216.698899pt;}
.xc{left:221.290584pt;}
.x22{left:227.075948pt;}
.x21{left:231.232198pt;}
.x19{left:249.330830pt;}
.x5{left:255.274013pt;}
.x25{left:272.055009pt;}
.x4{left:292.117762pt;}
.x23{left:295.966570pt;}
.xd{left:389.587447pt;}
.xe{left:404.243697pt;}
.x6{left:414.914632pt;}
.x17{left:421.311351pt;}
.x16{left:457.605139pt;}
.x1d{left:496.186151pt;}
.xf{left:497.743693pt;}
.x1c{left:500.467401pt;}
.x26{left:504.259080pt;}
.x27{left:508.665330pt;}
.x1e{left:510.608026pt;}
.x10{left:512.399942pt;}
.x13{left:558.875212pt;}
.x1f{left:612.833637pt;}
.x20{left:655.739886pt;}
}




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