
    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_c3183db6a81f3b763c77bd79.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_bc34e536196de1e61f17f13e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_aa82cf453acc11762ee7e45b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_175ee2f9c61eacd43fbae152.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_1ce23484e601166f9f8dd6bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_d7ed76b07fc5300306f374d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858398;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-57.599908px;}
.v3{vertical-align:-6.479990px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.859997px;}
.v4{vertical-align:9.659985px;}
.v5{vertical-align:35.999942px;}
.v1{vertical-align:57.599908px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.204480px;}
.ls2{letter-spacing:0.296064px;}
.ls1{letter-spacing:0.437039px;}
.ls3{letter-spacing:52.996955px;}
.ls4{letter-spacing:148.595762px;}
.ls5{letter-spacing:148.715762px;}
.ls7{letter-spacing:148.835762px;}
.ls0{letter-spacing:202.715676px;}
.ls8{letter-spacing:4112.364860px;}
.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:-60.047904px;}
.ws2{word-spacing:-53.442634px;}
.ws4{word-spacing:-33.426667px;}
.ws3{word-spacing:-28.964114px;}
.ws1{word-spacing:-26.621237px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-18.213541px;}
._15{margin-left:-14.603190px;}
._b{margin-left:-11.365863px;}
._f{margin-left:-8.844214px;}
._d{margin-left:-7.100875px;}
._a{margin-left:-4.539752px;}
._4{margin-left:-2.561481px;}
._3{margin-left:-1.540544px;}
._0{width:1.173514px;}
._c{width:2.561879px;}
._5{width:15.598098px;}
._e{width:25.896651px;}
._1{width:27.650181px;}
._2{width:30.767974px;}
._14{width:37.405910px;}
._6{width:38.751912px;}
._7{width:39.815429px;}
._11{width:52.574220px;}
._9{width:71.743897px;}
._8{width:73.701527px;}
._16{width:148.715762px;}
._13{width:1367.052178px;}
._12{width:1395.658692px;}
.fc3{color:rgb(74,74,73);}
.fc2{color:rgb(0,103,178);}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:79.919872px;}
.fsb{font-size:84.239865px;}
.fs1{font-size:95.759847px;}
.fs8{font-size:120.239808px;}
.fs9{font-size:128.159795px;}
.fsc{font-size:143.999770px;}
.fsa{font-size:144.143769px;}
.fse{font-size:167.759732px;}
.fs2{font-size:192.239692px;}
.fs3{font-size:192.383692px;}
.fs0{font-size:215.999654px;}
.fs7{font-size:239.759616px;}
.fs6{font-size:323.999482px;}
.fs5{font-size:527.759156px;}
.fs4{font-size:527.903155px;}
.y0{bottom:0.000000px;}
.y5{bottom:70.846237px;}
.y4{bottom:99.646191px;}
.y1{bottom:102.636436px;}
.y3{bottom:128.446144px;}
.y2{bottom:157.243248px;}
.yc{bottom:341.067954px;}
.y12{bottom:389.307877px;}
.yb{bottom:404.427853px;}
.y11{bottom:452.668376px;}
.ya{bottom:467.787752px;}
.y10{bottom:516.059174px;}
.y9{bottom:531.147650px;}
.yf{bottom:579.419073px;}
.y8{bottom:594.507549px;}
.ye{bottom:642.778972px;}
.y7{bottom:657.867447px;}
.yd{bottom:706.138870px;}
.y6{bottom:721.227346px;}
.y2b{bottom:796.035226px;}
.y31{bottom:1014.658377px;}
.y49{bottom:1033.589846px;}
.y30{bottom:1050.658319px;}
.y2f{bottom:1086.658261px;}
.y48{bottom:1091.189754px;}
.y47{bottom:1148.789662px;}
.y3d{bottom:1157.069649px;}
.y3e{bottom:1163.009639px;}
.y3c{bottom:1199.009582px;}
.y46{bottom:1206.389570px;}
.y3b{bottom:1235.009524px;}
.y3a{bottom:1272.269464px;}
.y45{bottom:1281.989449px;}
.y44{bottom:1339.589357px;}
.y39{bottom:1350.461339px;}
.y38{bottom:1386.461282px;}
.y43{bottom:1397.189264px;}
.y37{bottom:1422.461224px;}
.y35{bottom:1422.537724px;}
.y42{bottom:1454.789172px;}
.y36{bottom:1459.721164px;}
.y34{bottom:1459.797664px;}
.y41{bottom:1530.387551px;}
.y40{bottom:1588.032459px;}
.y3f{bottom:1645.632367px;}
.y2a{bottom:1761.042182px;}
.y33{bottom:2017.331772px;}
.y32{bottom:2389.061177px;}
.y29{bottom:2537.245940px;}
.y25{bottom:2555.560911px;}
.y28{bottom:2573.245883px;}
.y27{bottom:2609.245825px;}
.y24{bottom:2613.160819px;}
.y26{bottom:2645.245768px;}
.y23{bottom:2670.805727px;}
.y22{bottom:2746.405606px;}
.y21{bottom:2804.005514px;}
.y20{bottom:2879.605393px;}
.y1f{bottom:2937.205300px;}
.y1e{bottom:2994.805208px;}
.y1d{bottom:3052.405116px;}
.y1c{bottom:3110.005024px;}
.y1b{bottom:3167.604932px;}
.y1a{bottom:3243.204811px;}
.y19{bottom:3300.804719px;}
.y18{bottom:3358.404627px;}
.y17{bottom:3416.004534px;}
.y58{bottom:3428.709514px;}
.y2c{bottom:3519.429369px;}
.y57{bottom:3741.804013px;}
.y50{bottom:3813.683898px;}
.y56{bottom:3814.343897px;}
.y4f{bottom:3871.283806px;}
.y55{bottom:3871.943805px;}
.y4e{bottom:3943.823690px;}
.y54{bottom:3944.483689px;}
.y4d{bottom:4001.423598px;}
.y53{bottom:4002.083597px;}
.y4c{bottom:4074.143481px;}
.y52{bottom:4074.803480px;}
.y4b{bottom:4131.743389px;}
.y51{bottom:4132.403388px;}
.y4a{bottom:4216.493254px;}
.y16{bottom:4216.883253px;}
.y2e{bottom:4346.303046px;}
.y2d{bottom:4408.402947px;}
.y15{bottom:4530.022752px;}
.y14{bottom:4656.591049px;}
.y13{bottom:4815.022296px;}
.hf{height:61.370058px;}
.h3{height:69.762545px;}
.hb{height:87.596579px;}
.he{height:90.776574px;}
.h11{height:94.222818px;}
.hd{height:98.043101px;}
.h10{height:104.835770px;}
.h12{height:104.906082px;}
.h13{height:123.993669px;}
.ha{height:139.955753px;}
.h4{height:140.049620px;}
.h5{height:140.154526px;}
.hc{height:145.209143px;}
.h2{height:157.359123px;}
.h9{height:174.551557px;}
.h8{height:236.038685px;}
.h7{height:384.223096px;}
.h6{height:384.327932px;}
.h0{height:5017.319400px;}
.h1{height:5017.500000px;}
.w0{width:3473.819400px;}
.w1{width:3474.000000px;}
.x0{left:0.000000px;}
.x7{left:125.819799px;}
.x8{left:131.003190px;}
.xd{left:140.326575px;}
.x5{left:161.896241px;}
.x19{left:179.819712px;}
.xb{left:225.868139px;}
.x6{left:229.396133px;}
.x1a{left:241.888113px;}
.xe{left:245.623107px;}
.x11{left:281.371050px;}
.x12{left:740.595315px;}
.x2{left:832.287168px;}
.x13{left:1222.481544px;}
.x3{left:1558.362507px;}
.x4{left:1625.862399px;}
.x10{left:1656.387350px;}
.xc{left:1696.752285px;}
.x1{left:1815.687095px;}
.xf{left:1868.397011px;}
.x17{left:1931.291910px;}
.x16{left:1941.086894px;}
.x18{left:1985.291824px;}
.x14{left:2022.731764px;}
.x9{left:2034.566745px;}
.x15{left:2076.761677px;}
.xa{left:2088.560213px;}
@media print{
.v2{vertical-align:-51.199918pt;}
.v3{vertical-align:-5.759991pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.653331pt;}
.v4{vertical-align:8.586653pt;}
.v5{vertical-align:31.999949pt;}
.v1{vertical-align:51.199918pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.181760pt;}
.ls2{letter-spacing:0.263168pt;}
.ls1{letter-spacing:0.388479pt;}
.ls3{letter-spacing:47.108405pt;}
.ls4{letter-spacing:132.085122pt;}
.ls5{letter-spacing:132.191788pt;}
.ls7{letter-spacing:132.298455pt;}
.ls0{letter-spacing:180.191712pt;}
.ls8{letter-spacing:3655.435431pt;}
.ws0{word-spacing:-53.375915pt;}
.ws2{word-spacing:-47.504564pt;}
.ws4{word-spacing:-29.712592pt;}
.ws3{word-spacing:-25.745879pt;}
.ws1{word-spacing:-23.663322pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-16.189814pt;}
._15{margin-left:-12.980614pt;}
._b{margin-left:-10.102990pt;}
._f{margin-left:-7.861524pt;}
._d{margin-left:-6.311889pt;}
._a{margin-left:-4.035335pt;}
._4{margin-left:-2.276872pt;}
._3{margin-left:-1.369372pt;}
._0{width:1.043124pt;}
._c{width:2.277226pt;}
._5{width:13.864976pt;}
._e{width:23.019246pt;}
._1{width:24.577939pt;}
._2{width:27.349311pt;}
._14{width:33.249697pt;}
._6{width:34.446144pt;}
._7{width:35.391493pt;}
._11{width:46.732640pt;}
._9{width:63.772353pt;}
._8{width:65.512468pt;}
._16{width:132.191788pt;}
._13{width:1215.157491pt;}
._12{width:1240.585504pt;}
.fsd{font-size:71.039886pt;}
.fsb{font-size:74.879880pt;}
.fs1{font-size:85.119864pt;}
.fs8{font-size:106.879829pt;}
.fs9{font-size:113.919818pt;}
.fsc{font-size:127.999795pt;}
.fsa{font-size:128.127795pt;}
.fse{font-size:149.119761pt;}
.fs2{font-size:170.879727pt;}
.fs3{font-size:171.007726pt;}
.fs0{font-size:191.999693pt;}
.fs7{font-size:213.119659pt;}
.fs6{font-size:287.999539pt;}
.fs5{font-size:469.119249pt;}
.fs4{font-size:469.247249pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:62.974433pt;}
.y4{bottom:88.574392pt;}
.y1{bottom:91.232387pt;}
.y3{bottom:114.174351pt;}
.y2{bottom:139.771776pt;}
.yc{bottom:303.171515pt;}
.y12{bottom:346.051446pt;}
.yb{bottom:359.491425pt;}
.y11{bottom:402.371890pt;}
.ya{bottom:415.811335pt;}
.y10{bottom:458.719266pt;}
.y9{bottom:472.131245pt;}
.yf{bottom:515.039176pt;}
.y8{bottom:528.451154pt;}
.ye{bottom:571.359086pt;}
.y7{bottom:584.771064pt;}
.yd{bottom:627.678996pt;}
.y6{bottom:641.090974pt;}
.y2b{bottom:707.586868pt;}
.y31{bottom:901.918557pt;}
.y49{bottom:918.746530pt;}
.y30{bottom:933.918506pt;}
.y2f{bottom:965.918455pt;}
.y48{bottom:969.946448pt;}
.y47{bottom:1021.146366pt;}
.y3d{bottom:1028.506354pt;}
.y3e{bottom:1033.786346pt;}
.y3c{bottom:1065.786295pt;}
.y46{bottom:1072.346284pt;}
.y3b{bottom:1097.786244pt;}
.y3a{bottom:1130.906191pt;}
.y45{bottom:1139.546177pt;}
.y44{bottom:1190.746095pt;}
.y39{bottom:1200.410079pt;}
.y38{bottom:1232.410028pt;}
.y43{bottom:1241.946013pt;}
.y37{bottom:1264.409977pt;}
.y35{bottom:1264.477977pt;}
.y42{bottom:1293.145931pt;}
.y36{bottom:1297.529924pt;}
.y34{bottom:1297.597924pt;}
.y41{bottom:1360.344490pt;}
.y40{bottom:1411.584408pt;}
.y3f{bottom:1462.784326pt;}
.y2a{bottom:1565.370829pt;}
.y33{bottom:1793.183798pt;}
.y32{bottom:2123.609936pt;}
.y29{bottom:2255.329725pt;}
.y25{bottom:2271.609699pt;}
.y28{bottom:2287.329674pt;}
.y27{bottom:2319.329622pt;}
.y24{bottom:2322.809617pt;}
.y26{bottom:2351.329571pt;}
.y23{bottom:2374.049535pt;}
.y22{bottom:2441.249427pt;}
.y21{bottom:2492.449345pt;}
.y20{bottom:2559.649238pt;}
.y1f{bottom:2610.849156pt;}
.y1e{bottom:2662.049074pt;}
.y1d{bottom:2713.248992pt;}
.y1c{bottom:2764.448910pt;}
.y1b{bottom:2815.648828pt;}
.y1a{bottom:2882.848721pt;}
.y19{bottom:2934.048639pt;}
.y18{bottom:2985.248557pt;}
.y17{bottom:3036.448475pt;}
.y58{bottom:3047.741790pt;}
.y2c{bottom:3128.381661pt;}
.y57{bottom:3326.048012pt;}
.y50{bottom:3389.941243pt;}
.y56{bottom:3390.527908pt;}
.y4f{bottom:3441.141161pt;}
.y55{bottom:3441.727827pt;}
.y4e{bottom:3505.621058pt;}
.y54{bottom:3506.207723pt;}
.y4d{bottom:3556.820976pt;}
.y53{bottom:3557.407641pt;}
.y4c{bottom:3621.460872pt;}
.y52{bottom:3622.047538pt;}
.y4b{bottom:3672.660790pt;}
.y51{bottom:3673.247456pt;}
.y4a{bottom:3747.994003pt;}
.y16{bottom:3748.340669pt;}
.y2e{bottom:3863.380485pt;}
.y2d{bottom:3918.580397pt;}
.y15{bottom:4026.686891pt;}
.y14{bottom:4139.192044pt;}
.y13{bottom:4280.019819pt;}
.hf{height:54.551163pt;}
.h3{height:62.011151pt;}
.hb{height:77.863625pt;}
.he{height:80.690288pt;}
.h11{height:83.753616pt;}
.hd{height:87.149423pt;}
.h10{height:93.187351pt;}
.h12{height:93.249851pt;}
.h13{height:110.216594pt;}
.ha{height:124.405113pt;}
.h4{height:124.488551pt;}
.h5{height:124.581801pt;}
.hc{height:129.074793pt;}
.h2{height:139.874776pt;}
.h9{height:155.156939pt;}
.h8{height:209.812164pt;}
.h7{height:341.531641pt;}
.h6{height:341.624828pt;}
.h0{height:4459.839467pt;}
.h1{height:4460.000000pt;}
.w0{width:3087.839467pt;}
.w1{width:3088.000000pt;}
.x0{left:0.000000pt;}
.x7{left:111.839821pt;}
.x8{left:116.447280pt;}
.xd{left:124.734734pt;}
.x5{left:143.907770pt;}
.x19{left:159.839744pt;}
.xb{left:200.771679pt;}
.x6{left:203.907674pt;}
.x1a{left:215.011656pt;}
.xe{left:218.331651pt;}
.x11{left:250.107600pt;}
.x12{left:658.306947pt;}
.x2{left:739.810816pt;}
.x13{left:1086.650261pt;}
.x3{left:1385.211117pt;}
.x4{left:1445.211021pt;}
.x10{left:1472.344311pt;}
.xc{left:1508.224254pt;}
.x1{left:1613.944084pt;}
.xf{left:1660.797343pt;}
.x17{left:1716.703920pt;}
.x16{left:1725.410573pt;}
.x18{left:1764.703843pt;}
.x14{left:1797.983790pt;}
.x9{left:1808.503773pt;}
.x15{left:1846.010380pt;}
.xa{left:1856.497967pt;}
}




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