
    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_0c56fda86f695828f77a1557.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_76560382e5f29189e0451991.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_2d1f37e4e6ab8b1c5d739bf1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_7fca7f90409349ed225357d9.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.720000px;}
.v4{vertical-align:-14.400000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:18.720000px;}
.v6{vertical-align:56.160000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.298075px;}
.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;}
}
.ws3{word-spacing:-10.808640px;}
.ws7{word-spacing:-9.207193px;}
.ws0{word-spacing:-8.864640px;}
.ws6{word-spacing:-0.814506px;}
.ws10{word-spacing:0.000000px;}
.ws4{word-spacing:0.765514px;}
.ws5{word-spacing:2.206665px;}
.ws1{word-spacing:3.605474px;}
.ws2{word-spacing:3.684970px;}
.wsa{word-spacing:98.199659px;}
.wsd{word-spacing:113.171915px;}
.ws9{word-spacing:116.923404px;}
.wsf{word-spacing:143.346249px;}
.ws8{word-spacing:150.050029px;}
.wse{word-spacing:153.405801px;}
.wsc{word-spacing:258.071634px;}
.wsb{word-spacing:264.052241px;}
._7{margin-left:-2.488320px;}
._4{margin-left:-1.477440px;}
._2{width:1.438560px;}
._1{width:2.877120px;}
._0{width:4.276800px;}
._3{width:5.715360px;}
._8{width:7.153920px;}
._e{width:10.544456px;}
._5{width:12.095191px;}
._a{width:13.918265px;}
._6{width:15.102806px;}
._c{width:16.843010px;}
._9{width:18.785110px;}
._d{width:26.351464px;}
._2f{width:124.733108px;}
._29{width:129.704556px;}
._2a{width:135.849319px;}
._2c{width:140.771539px;}
._2e{width:152.327529px;}
._31{width:159.528969px;}
._26{width:163.542262px;}
._2d{width:164.754442px;}
._2b{width:169.412264px;}
._f{width:175.105167px;}
._28{width:186.759664px;}
._25{width:189.518421px;}
._10{width:195.118004px;}
._23{width:196.709488px;}
._12{width:199.622900px;}
._22{width:204.679020px;}
._27{width:223.185040px;}
._16{width:229.951888px;}
._24{width:232.836780px;}
._14{width:234.106866px;}
._17{width:237.805645px;}
._20{width:240.630924px;}
._1c{width:250.712940px;}
._1a{width:259.800492px;}
._30{width:260.900365px;}
._1d{width:279.199037px;}
._15{width:285.117426px;}
._11{width:292.927117px;}
._13{width:301.568845px;}
._19{width:315.333244px;}
._1f{width:330.456698px;}
._18{width:332.096565px;}
._1b{width:343.815866px;}
._21{width:385.502998px;}
._1e{width:386.961432px;}
._b{width:758.716479px;}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(45,45,138);}
.fc4{color:rgb(192,192,192);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:33.119400px;}
.fs0{font-size:38.880000px;}
.fs3{font-size:46.080000px;}
.fs2{font-size:59.040000px;}
.fs5{font-size:61.920000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:107.640000px;}
.y29{bottom:119.520000px;}
.y28{bottom:131.760000px;}
.y27{bottom:143.640000px;}
.y26{bottom:155.880000px;}
.y25{bottom:167.760000px;}
.y20{bottom:180.360000px;}
.y21{bottom:180.720000px;}
.y24{bottom:203.400000px;}
.y23{bottom:221.040000px;}
.y22{bottom:238.680000px;}
.y1e{bottom:258.120000px;}
.y1f{bottom:258.480000px;}
.y4b{bottom:294.840000px;}
.y4a{bottom:325.440000px;}
.y44{bottom:330.480000px;}
.y43{bottom:345.240000px;}
.y49{bottom:347.040000px;}
.y42{bottom:360.360000px;}
.y48{bottom:368.280000px;}
.y41{bottom:375.480000px;}
.y47{bottom:389.520000px;}
.y40{bottom:390.240000px;}
.y46{bottom:404.640000px;}
.y3f{bottom:405.000000px;}
.y45{bottom:405.720000px;}
.y3e{bottom:419.760000px;}
.y2d{bottom:447.120000px;}
.y4c{bottom:449.280000px;}
.y3d{bottom:487.080000px;}
.y37{bottom:491.760000px;}
.y3c{bottom:504.000000px;}
.y36{bottom:507.240000px;}
.y3b{bottom:520.920000px;}
.y35{bottom:523.440000px;}
.y3a{bottom:537.480000px;}
.y34{bottom:543.960000px;}
.y39{bottom:554.400000px;}
.y33{bottom:565.560000px;}
.y38{bottom:571.320000px;}
.y32{bottom:586.440000px;}
.y1d{bottom:606.240000px;}
.y4{bottom:641.880000px;}
.y3{bottom:659.520000px;}
.y2{bottom:677.160000px;}
.y1{bottom:694.800000px;}
.y2b{bottom:718.560000px;}
.y2c{bottom:718.920000px;}
.y1c{bottom:754.560000px;}
.y1b{bottom:768.600000px;}
.y1a{bottom:782.640000px;}
.y19{bottom:796.680000px;}
.y18{bottom:811.080000px;}
.y16{bottom:829.440000px;}
.y17{bottom:829.800000px;}
.y15{bottom:856.800000px;}
.y13{bottom:877.680000px;}
.y14{bottom:878.040000px;}
.y12{bottom:916.560000px;}
.y11{bottom:931.680000px;}
.y10{bottom:947.160000px;}
.yf{bottom:962.280000px;}
.ye{bottom:977.760000px;}
.yd{bottom:992.880000px;}
.yb{bottom:1012.680000px;}
.yc{bottom:1013.040000px;}
.y31{bottom:1026.360000px;}
.y30{bottom:1040.760000px;}
.y2f{bottom:1054.800000px;}
.y2e{bottom:1077.120000px;}
.ya{bottom:1086.480000px;}
.y9{bottom:1103.040000px;}
.y8{bottom:1116.000000px;}
.y7{bottom:1141.920000px;}
.y5{bottom:1177.920000px;}
.y6{bottom:1178.640000px;}
.h8{height:34.542499px;}
.h5{height:34.767360px;}
.h1{height:40.550625px;}
.h7{height:41.484960px;}
.h4{height:49.167360px;}
.h3{height:62.995680px;}
.h6{height:66.068640px;}
.h2{height:75.093750px;}
.h9{height:97.644960px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:19.440000px;}
.xf{left:21.960000px;}
.x2{left:34.200000px;}
.x1{left:36.359850px;}
.xa{left:39.240000px;}
.x2a{left:40.680000px;}
.x3{left:42.120000px;}
.x11{left:88.560000px;}
.x17{left:100.800000px;}
.x22{left:101.880000px;}
.x14{left:104.040000px;}
.x15{left:105.120000px;}
.x20{left:109.080000px;}
.x23{left:110.520000px;}
.x16{left:113.760000px;}
.x13{left:116.640000px;}
.x21{left:118.439850px;}
.x18{left:120.600000px;}
.xc{left:126.000000px;}
.x24{left:130.320000px;}
.x6{left:207.360000px;}
.x7{left:209.160000px;}
.x5{left:278.280000px;}
.x28{left:489.600000px;}
.x27{left:493.560000px;}
.x25{left:514.800000px;}
.x1c{left:516.600000px;}
.x1a{left:523.800000px;}
.x29{left:525.960000px;}
.x1e{left:529.920000px;}
.x1b{left:533.160000px;}
.x1d{left:543.600000px;}
.x19{left:545.400000px;}
.x1f{left:549.720000px;}
.x2b{left:568.440000px;}
.x4{left:587.880000px;}
.x26{left:598.680000px;}
.xe{left:770.040000px;}
.x8{left:772.200000px;}
.xd{left:774.000000px;}
.xb{left:795.240000px;}
.x10{left:801.360000px;}
.x9{left:814.680000px;}
@media print{
.v3{vertical-align:-16.640000pt;}
.v4{vertical-align:-12.800000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:16.640000pt;}
.v6{vertical-align:49.920000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.264955pt;}
.ws3{word-spacing:-9.607680pt;}
.ws7{word-spacing:-8.184172pt;}
.ws0{word-spacing:-7.879680pt;}
.ws6{word-spacing:-0.724005pt;}
.ws10{word-spacing:0.000000pt;}
.ws4{word-spacing:0.680457pt;}
.ws5{word-spacing:1.961480pt;}
.ws1{word-spacing:3.204866pt;}
.ws2{word-spacing:3.275529pt;}
.wsa{word-spacing:87.288586pt;}
.wsd{word-spacing:100.597258pt;}
.ws9{word-spacing:103.931915pt;}
.wsf{word-spacing:127.418888pt;}
.ws8{word-spacing:133.377804pt;}
.wse{word-spacing:136.360712pt;}
.wsc{word-spacing:229.397008pt;}
.wsb{word-spacing:234.713104pt;}
._7{margin-left:-2.211840pt;}
._4{margin-left:-1.313280pt;}
._2{width:1.278720pt;}
._1{width:2.557440pt;}
._0{width:3.801600pt;}
._3{width:5.080320pt;}
._8{width:6.359040pt;}
._e{width:9.372850pt;}
._5{width:10.751280pt;}
._a{width:12.371791pt;}
._6{width:13.424717pt;}
._c{width:14.971564pt;}
._9{width:16.697876pt;}
._d{width:23.423524pt;}
._2f{width:110.873873pt;}
._29{width:115.292938pt;}
._2a{width:120.754950pt;}
._2c{width:125.130257pt;}
._2e{width:135.402248pt;}
._31{width:141.803528pt;}
._26{width:145.370900pt;}
._2d{width:146.448393pt;}
._2b{width:150.588679pt;}
._f{width:155.649038pt;}
._28{width:166.008590pt;}
._25{width:168.460819pt;}
._10{width:173.438226pt;}
._23{width:174.852878pt;}
._12{width:177.442578pt;}
._22{width:181.936907pt;}
._27{width:198.386702pt;}
._16{width:204.401678pt;}
._24{width:206.966027pt;}
._14{width:208.094992pt;}
._17{width:211.382796pt;}
._20{width:213.894154pt;}
._1c{width:222.855947pt;}
._1a{width:230.933770pt;}
._30{width:231.911436pt;}
._1d{width:248.176921pt;}
._15{width:253.437712pt;}
._11{width:260.379660pt;}
._13{width:268.061196pt;}
._19{width:280.296217pt;}
._1f{width:293.739288pt;}
._18{width:295.196947pt;}
._1b{width:305.614103pt;}
._21{width:342.669332pt;}
._1e{width:343.965718pt;}
._b{width:674.414648pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:29.439467pt;}
.fs0{font-size:34.560000pt;}
.fs3{font-size:40.960000pt;}
.fs2{font-size:52.480000pt;}
.fs5{font-size:55.040000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:95.680000pt;}
.y29{bottom:106.240000pt;}
.y28{bottom:117.120000pt;}
.y27{bottom:127.680000pt;}
.y26{bottom:138.560000pt;}
.y25{bottom:149.120000pt;}
.y20{bottom:160.320000pt;}
.y21{bottom:160.640000pt;}
.y24{bottom:180.800000pt;}
.y23{bottom:196.480000pt;}
.y22{bottom:212.160000pt;}
.y1e{bottom:229.440000pt;}
.y1f{bottom:229.760000pt;}
.y4b{bottom:262.080000pt;}
.y4a{bottom:289.280000pt;}
.y44{bottom:293.760000pt;}
.y43{bottom:306.880000pt;}
.y49{bottom:308.480000pt;}
.y42{bottom:320.320000pt;}
.y48{bottom:327.360000pt;}
.y41{bottom:333.760000pt;}
.y47{bottom:346.240000pt;}
.y40{bottom:346.880000pt;}
.y46{bottom:359.680000pt;}
.y3f{bottom:360.000000pt;}
.y45{bottom:360.640000pt;}
.y3e{bottom:373.120000pt;}
.y2d{bottom:397.440000pt;}
.y4c{bottom:399.360000pt;}
.y3d{bottom:432.960000pt;}
.y37{bottom:437.120000pt;}
.y3c{bottom:448.000000pt;}
.y36{bottom:450.880000pt;}
.y3b{bottom:463.040000pt;}
.y35{bottom:465.280000pt;}
.y3a{bottom:477.760000pt;}
.y34{bottom:483.520000pt;}
.y39{bottom:492.800000pt;}
.y33{bottom:502.720000pt;}
.y38{bottom:507.840000pt;}
.y32{bottom:521.280000pt;}
.y1d{bottom:538.880000pt;}
.y4{bottom:570.560000pt;}
.y3{bottom:586.240000pt;}
.y2{bottom:601.920000pt;}
.y1{bottom:617.600000pt;}
.y2b{bottom:638.720000pt;}
.y2c{bottom:639.040000pt;}
.y1c{bottom:670.720000pt;}
.y1b{bottom:683.200000pt;}
.y1a{bottom:695.680000pt;}
.y19{bottom:708.160000pt;}
.y18{bottom:720.960000pt;}
.y16{bottom:737.280000pt;}
.y17{bottom:737.600000pt;}
.y15{bottom:761.600000pt;}
.y13{bottom:780.160000pt;}
.y14{bottom:780.480000pt;}
.y12{bottom:814.720000pt;}
.y11{bottom:828.160000pt;}
.y10{bottom:841.920000pt;}
.yf{bottom:855.360000pt;}
.ye{bottom:869.120000pt;}
.yd{bottom:882.560000pt;}
.yb{bottom:900.160000pt;}
.yc{bottom:900.480000pt;}
.y31{bottom:912.320000pt;}
.y30{bottom:925.120000pt;}
.y2f{bottom:937.600000pt;}
.y2e{bottom:957.440000pt;}
.ya{bottom:965.760000pt;}
.y9{bottom:980.480000pt;}
.y8{bottom:992.000000pt;}
.y7{bottom:1015.040000pt;}
.y5{bottom:1047.040000pt;}
.y6{bottom:1047.680000pt;}
.h8{height:30.704444pt;}
.h5{height:30.904320pt;}
.h1{height:36.045000pt;}
.h7{height:36.875520pt;}
.h4{height:43.704320pt;}
.h3{height:55.996160pt;}
.h6{height:58.727680pt;}
.h2{height:66.750000pt;}
.h9{height:86.795520pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:17.280000pt;}
.xf{left:19.520000pt;}
.x2{left:30.400000pt;}
.x1{left:32.319867pt;}
.xa{left:34.880000pt;}
.x2a{left:36.160000pt;}
.x3{left:37.440000pt;}
.x11{left:78.720000pt;}
.x17{left:89.600000pt;}
.x22{left:90.560000pt;}
.x14{left:92.480000pt;}
.x15{left:93.440000pt;}
.x20{left:96.960000pt;}
.x23{left:98.240000pt;}
.x16{left:101.120000pt;}
.x13{left:103.680000pt;}
.x21{left:105.279867pt;}
.x18{left:107.200000pt;}
.xc{left:112.000000pt;}
.x24{left:115.840000pt;}
.x6{left:184.320000pt;}
.x7{left:185.920000pt;}
.x5{left:247.360000pt;}
.x28{left:435.200000pt;}
.x27{left:438.720000pt;}
.x25{left:457.600000pt;}
.x1c{left:459.200000pt;}
.x1a{left:465.600000pt;}
.x29{left:467.520000pt;}
.x1e{left:471.040000pt;}
.x1b{left:473.920000pt;}
.x1d{left:483.200000pt;}
.x19{left:484.800000pt;}
.x1f{left:488.640000pt;}
.x2b{left:505.280000pt;}
.x4{left:522.560000pt;}
.x26{left:532.160000pt;}
.xe{left:684.480000pt;}
.x8{left:686.400000pt;}
.xd{left:688.000000pt;}
.xb{left:706.880000pt;}
.x10{left:712.320000pt;}
.x9{left:724.160000pt;}
}




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