
    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_691e23b68135705ec74d6c23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.859863;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_fcb88acc8b0493ac0f63258c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.021973;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_c30c0aaffd0ec1b735c90c15.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078613;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_7d1025918ed3f15b4998e8af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.071289;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_8a207e07b052f864d4425915.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074707;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_87ab3df7b4f4ea0a521d15ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v2{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.200000px;}
.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;}
}
.ws4{word-spacing:-52.344000px;}
.ws3{word-spacing:-26.172000px;}
.ws9{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.500000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.500000px;}
.ws6{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:140.400000px;}
._e{margin-left:-420.948000px;}
._c{margin-left:-344.112000px;}
._4{margin-left:-1.254000px;}
._0{width:1.092000px;}
._2{width:2.970000px;}
._3{width:4.374000px;}
._7{width:5.724000px;}
._5{width:7.128000px;}
._6{width:8.964000px;}
._13{width:10.170000px;}
._8{width:11.340000px;}
._11{width:12.564000px;}
._10{width:13.608000px;}
._1{width:15.498000px;}
._12{width:16.902000px;}
._17{width:19.056000px;}
._9{width:20.358000px;}
._a{width:22.140000px;}
._b{width:24.156000px;}
._19{width:25.344000px;}
._1a{width:26.568000px;}
._16{width:27.816000px;}
._15{width:29.184000px;}
._18{width:40.290000px;}
._14{width:57.552000px;}
._1b{width:162.000000px;}
._d{width:316.440000px;}
._f{width:394.470000px;}
.fc5{color:rgb(40,83,154);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(102,102,102);}
.fs5{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y39{bottom:52.741500px;}
.y38{bottom:71.941500px;}
.y75{bottom:145.591500px;}
.y8d{bottom:162.691500px;}
.y37{bottom:169.891500px;}
.y56{bottom:170.191500px;}
.y6e{bottom:171.541500px;}
.y74{bottom:176.641500px;}
.y36{bottom:190.591500px;}
.y8c{bottom:193.741500px;}
.y55{bottom:201.241500px;}
.y6d{bottom:202.591500px;}
.y73{bottom:207.691500px;}
.y8b{bottom:224.791500px;}
.y35{bottom:225.541500px;}
.y54{bottom:232.291500px;}
.y6c{bottom:233.641500px;}
.y72{bottom:238.741500px;}
.y8a{bottom:255.841500px;}
.y34{bottom:256.591500px;}
.y53{bottom:263.341500px;}
.y6b{bottom:264.691500px;}
.y71{bottom:269.791500px;}
.y89{bottom:286.891500px;}
.y33{bottom:287.641500px;}
.y52{bottom:294.391500px;}
.y6a{bottom:295.741500px;}
.y70{bottom:300.841500px;}
.y88{bottom:317.941500px;}
.y32{bottom:318.691500px;}
.y51{bottom:325.441500px;}
.y69{bottom:326.791500px;}
.y6f{bottom:332.491500px;}
.y87{bottom:348.991500px;}
.y31{bottom:349.741500px;}
.y50{bottom:357.091500px;}
.y68{bottom:357.841500px;}
.y86{bottom:380.041500px;}
.y30{bottom:380.491500px;}
.y67{bottom:388.891500px;}
.y85{bottom:411.091500px;}
.y4f{bottom:419.191500px;}
.y66{bottom:419.941500px;}
.y84{bottom:442.141500px;}
.y2f{bottom:444.241500px;}
.y4e{bottom:450.241500px;}
.y19{bottom:450.841500px;}
.y65{bottom:450.991500px;}
.y2e{bottom:462.091500px;}
.y18{bottom:468.691500px;}
.y83{bottom:473.191500px;}
.y2d{bottom:479.941500px;}
.y4d{bottom:481.291500px;}
.y64{bottom:482.041500px;}
.y2c{bottom:497.791500px;}
.y82{bottom:504.241500px;}
.y17{bottom:504.391500px;}
.y4c{bottom:512.341500px;}
.y63{bottom:513.091500px;}
.y2b{bottom:515.641500px;}
.y16{bottom:522.241500px;}
.y2a{bottom:533.491500px;}
.y81{bottom:535.291500px;}
.y15{bottom:540.091500px;}
.y4b{bottom:543.391500px;}
.y62{bottom:544.141500px;}
.y29{bottom:551.341500px;}
.y14{bottom:557.941500px;}
.y80{bottom:566.341500px;}
.y28{bottom:569.191500px;}
.y4a{bottom:574.441500px;}
.y61{bottom:575.191500px;}
.y27{bottom:587.041500px;}
.y13{bottom:590.941500px;}
.y7f{bottom:597.391500px;}
.y26{bottom:604.891500px;}
.y49{bottom:606.091500px;}
.y60{bottom:606.241500px;}
.y12{bottom:606.691500px;}
.y11{bottom:622.591500px;}
.y25{bottom:622.741500px;}
.y7e{bottom:628.441500px;}
.y5f{bottom:637.291500px;}
.y10{bottom:638.341500px;}
.y24{bottom:640.591500px;}
.y23{bottom:658.441500px;}
.y7d{bottom:660.091500px;}
.y5e{bottom:668.341500px;}
.y48{bottom:668.491500px;}
.yf{bottom:670.741500px;}
.y22{bottom:676.291500px;}
.y21{bottom:694.141500px;}
.y5d{bottom:699.391500px;}
.y47{bottom:699.541500px;}
.ye{bottom:703.741500px;}
.y7c{bottom:710.791500px;}
.y20{bottom:711.991500px;}
.yd{bottom:719.491500px;}
.y1f{bottom:729.841500px;}
.y5c{bottom:730.441500px;}
.y46{bottom:730.591500px;}
.y7b{bottom:734.041500px;}
.yc{bottom:735.391500px;}
.y1e{bottom:747.691500px;}
.yb{bottom:751.141500px;}
.y7a{bottom:757.291500px;}
.y5b{bottom:761.491500px;}
.y45{bottom:761.641500px;}
.y1d{bottom:765.541500px;}
.ya{bottom:767.041500px;}
.y79{bottom:780.541500px;}
.y9{bottom:782.791500px;}
.y1c{bottom:783.391500px;}
.y5a{bottom:792.541500px;}
.y44{bottom:792.691500px;}
.y8{bottom:798.691500px;}
.y1b{bottom:800.341500px;}
.y78{bottom:803.791500px;}
.y7{bottom:815.191500px;}
.y1a{bottom:819.241500px;}
.y59{bottom:823.591500px;}
.y43{bottom:823.741500px;}
.y77{bottom:827.041500px;}
.y76{bottom:854.491500px;}
.y58{bottom:854.641500px;}
.y42{bottom:854.791500px;}
.y6{bottom:858.541500px;}
.y57{bottom:885.691500px;}
.y41{bottom:885.841500px;}
.y5{bottom:891.391500px;}
.y40{bottom:916.891500px;}
.y4{bottom:925.891500px;}
.y3f{bottom:947.941500px;}
.y3{bottom:960.241500px;}
.y3e{bottom:978.991500px;}
.y2{bottom:987.991500px;}
.y3d{bottom:1047.283500px;}
.y3c{bottom:1181.083500px;}
.y3b{bottom:1196.533500px;}
.y3a{bottom:1213.033500px;}
.hb{height:28.792969px;}
.h3{height:33.843750px;}
.he{height:36.073242px;}
.ha{height:41.179688px;}
.h7{height:41.203125px;}
.h8{height:41.226562px;}
.h6{height:46.327148px;}
.h9{height:46.379883px;}
.h11{height:51.474609px;}
.hf{height:56.686523px;}
.hc{height:57.585938px;}
.h5{height:57.813281px;}
.h10{height:61.769531px;}
.hd{height:61.839844px;}
.h4{height:62.384766px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.800000px;}
.x6{left:128.850000px;}
.x4{left:180.150000px;}
.x8{left:181.800000px;}
.x7{left:194.400000px;}
.x3{left:361.500000px;}
.x1{left:611.850000px;}
.x5{left:732.600000px;}
@media print{
.v2{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-46.528000pt;}
.ws3{word-spacing:-23.264000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.666667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws6{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:124.800000pt;}
._e{margin-left:-374.176000pt;}
._c{margin-left:-305.877333pt;}
._4{margin-left:-1.114667pt;}
._0{width:0.970667pt;}
._2{width:2.640000pt;}
._3{width:3.888000pt;}
._7{width:5.088000pt;}
._5{width:6.336000pt;}
._6{width:7.968000pt;}
._13{width:9.040000pt;}
._8{width:10.080000pt;}
._11{width:11.168000pt;}
._10{width:12.096000pt;}
._1{width:13.776000pt;}
._12{width:15.024000pt;}
._17{width:16.938667pt;}
._9{width:18.096000pt;}
._a{width:19.680000pt;}
._b{width:21.472000pt;}
._19{width:22.528000pt;}
._1a{width:23.616000pt;}
._16{width:24.725333pt;}
._15{width:25.941333pt;}
._18{width:35.813333pt;}
._14{width:51.157333pt;}
._1b{width:144.000000pt;}
._d{width:281.280000pt;}
._f{width:350.640000pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y39{bottom:46.881333pt;}
.y38{bottom:63.948000pt;}
.y75{bottom:129.414667pt;}
.y8d{bottom:144.614667pt;}
.y37{bottom:151.014667pt;}
.y56{bottom:151.281333pt;}
.y6e{bottom:152.481333pt;}
.y74{bottom:157.014667pt;}
.y36{bottom:169.414667pt;}
.y8c{bottom:172.214667pt;}
.y55{bottom:178.881333pt;}
.y6d{bottom:180.081333pt;}
.y73{bottom:184.614667pt;}
.y8b{bottom:199.814667pt;}
.y35{bottom:200.481333pt;}
.y54{bottom:206.481333pt;}
.y6c{bottom:207.681333pt;}
.y72{bottom:212.214667pt;}
.y8a{bottom:227.414667pt;}
.y34{bottom:228.081333pt;}
.y53{bottom:234.081333pt;}
.y6b{bottom:235.281333pt;}
.y71{bottom:239.814667pt;}
.y89{bottom:255.014667pt;}
.y33{bottom:255.681333pt;}
.y52{bottom:261.681333pt;}
.y6a{bottom:262.881333pt;}
.y70{bottom:267.414667pt;}
.y88{bottom:282.614667pt;}
.y32{bottom:283.281333pt;}
.y51{bottom:289.281333pt;}
.y69{bottom:290.481333pt;}
.y6f{bottom:295.548000pt;}
.y87{bottom:310.214667pt;}
.y31{bottom:310.881333pt;}
.y50{bottom:317.414667pt;}
.y68{bottom:318.081333pt;}
.y86{bottom:337.814667pt;}
.y30{bottom:338.214667pt;}
.y67{bottom:345.681333pt;}
.y85{bottom:365.414667pt;}
.y4f{bottom:372.614667pt;}
.y66{bottom:373.281333pt;}
.y84{bottom:393.014667pt;}
.y2f{bottom:394.881333pt;}
.y4e{bottom:400.214667pt;}
.y19{bottom:400.748000pt;}
.y65{bottom:400.881333pt;}
.y2e{bottom:410.748000pt;}
.y18{bottom:416.614667pt;}
.y83{bottom:420.614667pt;}
.y2d{bottom:426.614667pt;}
.y4d{bottom:427.814667pt;}
.y64{bottom:428.481333pt;}
.y2c{bottom:442.481333pt;}
.y82{bottom:448.214667pt;}
.y17{bottom:448.348000pt;}
.y4c{bottom:455.414667pt;}
.y63{bottom:456.081333pt;}
.y2b{bottom:458.348000pt;}
.y16{bottom:464.214667pt;}
.y2a{bottom:474.214667pt;}
.y81{bottom:475.814667pt;}
.y15{bottom:480.081333pt;}
.y4b{bottom:483.014667pt;}
.y62{bottom:483.681333pt;}
.y29{bottom:490.081333pt;}
.y14{bottom:495.948000pt;}
.y80{bottom:503.414667pt;}
.y28{bottom:505.948000pt;}
.y4a{bottom:510.614667pt;}
.y61{bottom:511.281333pt;}
.y27{bottom:521.814667pt;}
.y13{bottom:525.281333pt;}
.y7f{bottom:531.014667pt;}
.y26{bottom:537.681333pt;}
.y49{bottom:538.748000pt;}
.y60{bottom:538.881333pt;}
.y12{bottom:539.281333pt;}
.y11{bottom:553.414667pt;}
.y25{bottom:553.548000pt;}
.y7e{bottom:558.614667pt;}
.y5f{bottom:566.481333pt;}
.y10{bottom:567.414667pt;}
.y24{bottom:569.414667pt;}
.y23{bottom:585.281333pt;}
.y7d{bottom:586.748000pt;}
.y5e{bottom:594.081333pt;}
.y48{bottom:594.214667pt;}
.yf{bottom:596.214667pt;}
.y22{bottom:601.148000pt;}
.y21{bottom:617.014667pt;}
.y5d{bottom:621.681333pt;}
.y47{bottom:621.814667pt;}
.ye{bottom:625.548000pt;}
.y7c{bottom:631.814667pt;}
.y20{bottom:632.881333pt;}
.yd{bottom:639.548000pt;}
.y1f{bottom:648.748000pt;}
.y5c{bottom:649.281333pt;}
.y46{bottom:649.414667pt;}
.y7b{bottom:652.481333pt;}
.yc{bottom:653.681333pt;}
.y1e{bottom:664.614667pt;}
.yb{bottom:667.681333pt;}
.y7a{bottom:673.148000pt;}
.y5b{bottom:676.881333pt;}
.y45{bottom:677.014667pt;}
.y1d{bottom:680.481333pt;}
.ya{bottom:681.814667pt;}
.y79{bottom:693.814667pt;}
.y9{bottom:695.814667pt;}
.y1c{bottom:696.348000pt;}
.y5a{bottom:704.481333pt;}
.y44{bottom:704.614667pt;}
.y8{bottom:709.948000pt;}
.y1b{bottom:711.414667pt;}
.y78{bottom:714.481333pt;}
.y7{bottom:724.614667pt;}
.y1a{bottom:728.214667pt;}
.y59{bottom:732.081333pt;}
.y43{bottom:732.214667pt;}
.y77{bottom:735.148000pt;}
.y76{bottom:759.548000pt;}
.y58{bottom:759.681333pt;}
.y42{bottom:759.814667pt;}
.y6{bottom:763.148000pt;}
.y57{bottom:787.281333pt;}
.y41{bottom:787.414667pt;}
.y5{bottom:792.348000pt;}
.y40{bottom:815.014667pt;}
.y4{bottom:823.014667pt;}
.y3f{bottom:842.614667pt;}
.y3{bottom:853.548000pt;}
.y3e{bottom:870.214667pt;}
.y2{bottom:878.214667pt;}
.y3d{bottom:930.918667pt;}
.y3c{bottom:1049.852000pt;}
.y3b{bottom:1063.585333pt;}
.y3a{bottom:1078.252000pt;}
.hb{height:25.593750pt;}
.h3{height:30.083333pt;}
.he{height:32.065104pt;}
.ha{height:36.604167pt;}
.h7{height:36.625000pt;}
.h8{height:36.645833pt;}
.h6{height:41.179688pt;}
.h9{height:41.226562pt;}
.h11{height:45.755208pt;}
.hf{height:50.388021pt;}
.hc{height:51.187500pt;}
.h5{height:51.389583pt;}
.h10{height:54.906250pt;}
.hd{height:54.968750pt;}
.h4{height:55.453125pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.600000pt;}
.x6{left:114.533333pt;}
.x4{left:160.133333pt;}
.x8{left:161.600000pt;}
.x7{left:172.800000pt;}
.x3{left:321.333333pt;}
.x1{left:543.866667pt;}
.x5{left:651.200000pt;}
}




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