
    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_dad339ef7cf73927bdf57c8c.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0086810aeca571f1b841c0d2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_19041ff8a0128bc322714871.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_1e056a6357f386184a571ed3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.992000;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;}
.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;}
.ws1{word-spacing:-28.018980px;}
.ws2{word-spacing:-27.980819px;}
.ws3{word-spacing:-26.273541px;}
.ws5{word-spacing:-16.532819px;}
.ws4{word-spacing:-12.446999px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-17.714040px;}
._4{margin-left:-12.436727px;}
._5{margin-left:-5.661369px;}
._2{margin-left:-3.995920px;}
._3{margin-left:-2.917980px;}
._0{margin-left:-1.783849px;}
._1{width:1.355608px;}
._6{width:2.922023px;}
._7{width:5.465772px;}
._11{width:7.060449px;}
._12{width:8.150608px;}
._9{width:15.509475px;}
._a{width:16.625502px;}
._15{width:18.131783px;}
._b{width:26.581431px;}
._c{width:28.270855px;}
._f{width:30.255033px;}
._10{width:31.541557px;}
._e{width:32.774479px;}
._8{width:77.231848px;}
._13{width:80.886603px;}
._14{width:82.310731px;}
.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;}
.fsa{font-size:77.984997px;}
.fsb{font-size:82.079997px;}
.fs7{font-size:107.999996px;}
.fsc{font-size:108.495000px;}
.fs8{font-size:113.984995px;}
.fs4{font-size:119.969995px;}
.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;}
.y12{bottom:21.372551px;}
.y11{bottom:41.622550px;}
.y10{bottom:61.872549px;}
.yb{bottom:96.246896px;}
.ya{bottom:116.496895px;}
.y2{bottom:116.714789px;}
.y9{bottom:136.746894px;}
.y8{bottom:160.746689px;}
.yf{bottom:201.146824px;}
.ye{bottom:221.396823px;}
.yd{bottom:241.646822px;}
.yc{bottom:269.771821px;}
.y3b{bottom:306.430115px;}
.y3a{bottom:324.430114px;}
.y39{bottom:342.430114px;}
.y38{bottom:360.430113px;}
.y37{bottom:378.430112px;}
.y36{bottom:396.430111px;}
.y35{bottom:414.430111px;}
.y34{bottom:432.430110px;}
.y33{bottom:450.430109px;}
.y4{bottom:475.030168px;}
.y13{bottom:545.806741px;}
.y3d{bottom:592.579307px;}
.y3c{bottom:631.954306px;}
.y42{bottom:689.254243px;}
.y3f{bottom:747.132341px;}
.y3e{bottom:786.507339px;}
.y41{bottom:843.807277px;}
.y40{bottom:883.182275px;}
.y32{bottom:937.174893px;}
.y52{bottom:977.149831px;}
.y24{bottom:1093.799762px;}
.y23{bottom:1130.924761px;}
.y31{bottom:1132.499761px;}
.y22{bottom:1168.049759px;}
.y30{bottom:1171.874759px;}
.y21{bottom:1205.174758px;}
.y2f{bottom:1211.249758px;}
.y20{bottom:1242.299756px;}
.y2e{bottom:1250.624756px;}
.y1f{bottom:1279.424755px;}
.y2d{bottom:1289.999754px;}
.y2c{bottom:1329.374753px;}
.y1e{bottom:1353.674752px;}
.y2b{bottom:1368.749751px;}
.y1d{bottom:1390.799750px;}
.y2a{bottom:1408.124749px;}
.y1c{bottom:1427.924749px;}
.y29{bottom:1447.499748px;}
.y28{bottom:1486.874746px;}
.y1b{bottom:1502.174745px;}
.y27{bottom:1526.249744px;}
.y1a{bottom:1539.299744px;}
.y26{bottom:1565.624743px;}
.y19{bottom:1576.424742px;}
.y25{bottom:1604.999741px;}
.y18{bottom:1613.549741px;}
.y17{bottom:1688.540978px;}
.y15{bottom:1688.545406px;}
.y16{bottom:1734.665976px;}
.y14{bottom:1734.670404px;}
.y47{bottom:1824.962432px;}
.y4c{bottom:1832.400284px;}
.y46{bottom:1851.962431px;}
.y4b{bottom:1859.400283px;}
.y51{bottom:1867.770462px;}
.y45{bottom:1878.962430px;}
.y50{bottom:1894.770461px;}
.y4a{bottom:1912.875220px;}
.y4f{bottom:1921.770460px;}
.y49{bottom:1939.875219px;}
.y4e{bottom:1948.770459px;}
.y48{bottom:1966.875218px;}
.y4d{bottom:1975.770458px;}
.y44{bottom:2002.425217px;}
.y43{bottom:2063.625178px;}
.y5e{bottom:2140.429526px;}
.y5d{bottom:2177.554524px;}
.y5c{bottom:2214.679523px;}
.y5b{bottom:2251.804521px;}
.y5a{bottom:2288.929520px;}
.y59{bottom:2363.179517px;}
.y58{bottom:2400.304515px;}
.y57{bottom:2437.429514px;}
.y56{bottom:2492.287784px;}
.y55{bottom:2520.412783px;}
.y54{bottom:2548.537781px;}
.y1{bottom:2557.979901px;}
.y53{bottom:2576.662780px;}
.y7{bottom:2635.894567px;}
.y6{bottom:2692.144564px;}
.y5{bottom:2748.394562px;}
.h10{height:48.383998px;}
.h7{height:49.547608px;}
.h8{height:53.746557px;}
.ha{height:54.491217px;}
.hc{height:59.109117px;}
.hb{height:62.671497px;}
.h11{height:64.415607px;}
.h12{height:73.543677px;}
.he{height:96.767996px;}
.h13{height:97.211520px;}
.h9{height:99.095216px;}
.hf{height:102.130556px;}
.h5{height:109.019605px;}
.hd{height:109.168289px;}
.h6{height:133.774832px;}
.h3{height:163.199091px;}
.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;}
.x3{left:7.653463px;}
.x16{left:11.397346px;}
.x8{left:14.395889px;}
.x9{left:18.412502px;}
.xa{left:20.358484px;}
.x7{left:26.683246px;}
.x1{left:28.079999px;}
.x2{left:37.478862px;}
.x1c{left:38.955480px;}
.x11{left:41.203123px;}
.x1d{left:65.639073px;}
.x2a{left:72.759806px;}
.xb{left:141.225666px;}
.xc{left:157.713947px;}
.x12{left:201.076169px;}
.x1b{left:218.025605px;}
.x19{left:223.333277px;}
.x17{left:239.057745px;}
.xd{left:246.237381px;}
.x25{left:260.027347px;}
.xe{left:262.725661px;}
.x27{left:265.166443px;}
.x24{left:274.335940px;}
.x28{left:284.396911px;}
.x4{left:286.058265px;}
.x23{left:294.023439px;}
.x26{left:325.171876px;}
.x5{left:332.622716px;}
.xf{left:340.807689px;}
.x10{left:357.295970px;}
.x29{left:375.293392px;}
.x6{left:434.417634px;}
.x1a{left:486.371098px;}
.x20{left:559.917882px;}
.x1e{left:565.929601px;}
.x1f{left:572.996007px;}
.x18{left:598.073361px;}
.x13{left:618.884536px;}
.x15{left:645.061395px;}
.x14{left:684.204845px;}
.x21{left:719.461876px;}
.x22{left:797.473591px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws1{word-spacing:-24.905760pt;}
.ws2{word-spacing:-24.871839pt;}
.ws3{word-spacing:-23.354259pt;}
.ws5{word-spacing:-14.695839pt;}
.ws4{word-spacing:-11.064000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-15.745813pt;}
._4{margin-left:-11.054868pt;}
._5{margin-left:-5.032328pt;}
._2{margin-left:-3.551929pt;}
._3{margin-left:-2.593760pt;}
._0{margin-left:-1.585644pt;}
._1{width:1.204985pt;}
._6{width:2.597353pt;}
._7{width:4.858464pt;}
._11{width:6.275955pt;}
._12{width:7.244985pt;}
._9{width:13.786200pt;}
._a{width:14.778224pt;}
._15{width:16.117141pt;}
._b{width:23.627939pt;}
._c{width:25.129649pt;}
._f{width:26.893362pt;}
._10{width:28.036939pt;}
._e{width:29.132870pt;}
._8{width:68.650532pt;}
._13{width:71.899203pt;}
._14{width:73.165095pt;}
.fs9{font-size:47.999998pt;}
.fs3{font-size:53.319997pt;}
.fs5{font-size:58.639997pt;}
.fsa{font-size:69.319997pt;}
.fsb{font-size:72.959997pt;}
.fs7{font-size:95.999996pt;}
.fsc{font-size:96.440000pt;}
.fs8{font-size:101.319996pt;}
.fs4{font-size:106.639996pt;}
.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;}
.y12{bottom:18.997823pt;}
.y11{bottom:36.997822pt;}
.y10{bottom:54.997822pt;}
.yb{bottom:85.552796pt;}
.ya{bottom:103.552796pt;}
.y2{bottom:103.746479pt;}
.y9{bottom:121.552795pt;}
.y8{bottom:142.885946pt;}
.yf{bottom:178.797177pt;}
.ye{bottom:196.797176pt;}
.yd{bottom:214.797175pt;}
.yc{bottom:239.797174pt;}
.y3b{bottom:272.382325pt;}
.y3a{bottom:288.382324pt;}
.y39{bottom:304.382323pt;}
.y38{bottom:320.382323pt;}
.y37{bottom:336.382322pt;}
.y36{bottom:352.382321pt;}
.y35{bottom:368.382321pt;}
.y34{bottom:384.382320pt;}
.y33{bottom:400.382319pt;}
.y4{bottom:422.249038pt;}
.y13{bottom:485.161548pt;}
.y3d{bottom:526.737162pt;}
.y3c{bottom:561.737161pt;}
.y42{bottom:612.670438pt;}
.y3f{bottom:664.117636pt;}
.y3e{bottom:699.117635pt;}
.y41{bottom:750.050913pt;}
.y40{bottom:785.050911pt;}
.y32{bottom:833.044349pt;}
.y52{bottom:868.577628pt;}
.y24{bottom:972.266455pt;}
.y23{bottom:1005.266454pt;}
.y31{bottom:1006.666454pt;}
.y22{bottom:1038.266453pt;}
.y30{bottom:1041.666453pt;}
.y21{bottom:1071.266451pt;}
.y2f{bottom:1076.666451pt;}
.y20{bottom:1104.266450pt;}
.y2e{bottom:1111.666450pt;}
.y1f{bottom:1137.266449pt;}
.y2d{bottom:1146.666448pt;}
.y2c{bottom:1181.666447pt;}
.y1e{bottom:1203.266446pt;}
.y2b{bottom:1216.666445pt;}
.y1d{bottom:1236.266444pt;}
.y2a{bottom:1251.666444pt;}
.y1c{bottom:1269.266443pt;}
.y29{bottom:1286.666442pt;}
.y28{bottom:1321.666441pt;}
.y1b{bottom:1335.266440pt;}
.y27{bottom:1356.666439pt;}
.y1a{bottom:1368.266439pt;}
.y26{bottom:1391.666438pt;}
.y19{bottom:1401.266438pt;}
.y25{bottom:1426.666437pt;}
.y18{bottom:1434.266436pt;}
.y17{bottom:1500.925313pt;}
.y15{bottom:1500.929249pt;}
.y16{bottom:1541.925312pt;}
.y14{bottom:1541.929248pt;}
.y47{bottom:1622.188828pt;}
.y4c{bottom:1628.800252pt;}
.y46{bottom:1646.188827pt;}
.y4b{bottom:1652.800251pt;}
.y51{bottom:1660.240411pt;}
.y45{bottom:1670.188826pt;}
.y50{bottom:1684.240410pt;}
.y4a{bottom:1700.333529pt;}
.y4f{bottom:1708.240409pt;}
.y49{bottom:1724.333528pt;}
.y4e{bottom:1732.240408pt;}
.y48{bottom:1748.333527pt;}
.y4d{bottom:1756.240407pt;}
.y44{bottom:1779.933526pt;}
.y43{bottom:1834.333492pt;}
.y5e{bottom:1902.604023pt;}
.y5d{bottom:1935.604022pt;}
.y5c{bottom:1968.604020pt;}
.y5b{bottom:2001.604019pt;}
.y5a{bottom:2034.604018pt;}
.y59{bottom:2100.604015pt;}
.y58{bottom:2133.604013pt;}
.y57{bottom:2166.604012pt;}
.y56{bottom:2215.366919pt;}
.y55{bottom:2240.366918pt;}
.y54{bottom:2265.366917pt;}
.y1{bottom:2273.759912pt;}
.y53{bottom:2290.366916pt;}
.y7{bottom:2343.017393pt;}
.y6{bottom:2393.017391pt;}
.y5{bottom:2443.017388pt;}
.h10{height:43.007998pt;}
.h7{height:44.042318pt;}
.h8{height:47.774718pt;}
.ha{height:48.436637pt;}
.hc{height:52.541437pt;}
.hb{height:55.707997pt;}
.h11{height:57.258318pt;}
.h12{height:65.372157pt;}
.he{height:86.015996pt;}
.h13{height:86.410240pt;}
.h9{height:88.084636pt;}
.hf{height:90.782716pt;}
.h5{height:96.906316pt;}
.hd{height:97.038479pt;}
.h6{height:118.910962pt;}
.h3{height:145.065859pt;}
.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;}
.x3{left:6.803078pt;}
.x16{left:10.130974pt;}
.x8{left:12.796346pt;}
.x9{left:16.366668pt;}
.xa{left:18.096430pt;}
.x7{left:23.718441pt;}
.x1{left:24.959999pt;}
.x2{left:33.314544pt;}
.x1c{left:34.627093pt;}
.x11{left:36.624998pt;}
.x1d{left:58.345842pt;}
.x2a{left:64.675383pt;}
.xb{left:125.533925pt;}
.xc{left:140.190175pt;}
.x12{left:178.734373pt;}
.x1b{left:193.800538pt;}
.x19{left:198.518469pt;}
.x17{left:212.495774pt;}
.xd{left:218.877672pt;}
.x25{left:231.135420pt;}
.xe{left:233.533921pt;}
.x27{left:235.703505pt;}
.x24{left:243.854169pt;}
.x28{left:252.797254pt;}
.x4{left:254.274013pt;}
.x23{left:261.354168pt;}
.x26{left:289.041667pt;}
.x5{left:295.664637pt;}
.xf{left:302.940168pt;}
.x10{left:317.596417pt;}
.x29{left:333.594126pt;}
.x6{left:386.149008pt;}
.x1a{left:432.329865pt;}
.x20{left:497.704784pt;}
.x1e{left:503.048534pt;}
.x1f{left:509.329784pt;}
.x18{left:531.620765pt;}
.x13{left:550.119587pt;}
.x15{left:573.387907pt;}
.x14{left:608.182085pt;}
.x21{left:639.521667pt;}
.x22{left:708.865414pt;}
}




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