
    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_edc5a9fe36490952143d899b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_a65e1ac64681d15659c48768.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_1c42ba701085a0593aaa7312.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_594a27b0495cd156b7e17dd4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049000;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_006b3bc882547082964c838e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_612d379524800ef22eb82637.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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:ff7;src:url('chunks/assets/font_8594ca334cef59227496545b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.206178px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.043200px;}
.ls5{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.912000px;}
.ls0{letter-spacing:616.284000px;}
.ls1{letter-spacing:807.204000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-36.293040px;}
.ws3{word-spacing:-33.447456px;}
.ws5{word-spacing:-31.926960px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.616000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-8.435608px;}
._a{margin-left:-7.370057px;}
._c{margin-left:-6.152880px;}
._3{margin-left:-4.798320px;}
._1{margin-left:-3.336000px;}
._4{margin-left:-2.188651px;}
._0{margin-left:-1.008000px;}
._2{width:1.200000px;}
._9{width:2.226770px;}
._5{width:3.328589px;}
._6{width:4.531101px;}
._d{width:5.577699px;}
._e{width:6.651323px;}
._8{width:7.725241px;}
._7{width:8.790791px;}
._f{width:10.530000px;}
._11{width:11.620651px;}
._10{width:12.888720px;}
._12{width:14.325269px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:88.795869px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.860000px;}
.ya6{bottom:120.060000px;}
.y7a{bottom:121.680000px;}
.y6f{bottom:122.580000px;}
.y79{bottom:143.640000px;}
.y58{bottom:144.540000px;}
.y2d{bottom:146.520000px;}
.ya5{bottom:153.540000px;}
.y78{bottom:165.600000px;}
.y57{bottom:166.500000px;}
.y2c{bottom:168.510000px;}
.ya4{bottom:175.530000px;}
.y77{bottom:187.770000px;}
.y56{bottom:188.670000px;}
.y2b{bottom:190.470000px;}
.ya3{bottom:197.670000px;}
.y6e{bottom:198.210000px;}
.y76{bottom:209.730000px;}
.y55{bottom:210.630000px;}
.y2a{bottom:212.610000px;}
.ya2{bottom:219.630000px;}
.y6d{bottom:231.870000px;}
.y54{bottom:232.590000px;}
.y29{bottom:234.570000px;}
.ya1{bottom:241.590000px;}
.y6c{bottom:253.830000px;}
.y53{bottom:254.730000px;}
.y28{bottom:256.710000px;}
.ya0{bottom:263.730000px;}
.y6b{bottom:275.790000px;}
.y52{bottom:276.690000px;}
.y27{bottom:278.670000px;}
.y9f{bottom:285.690000px;}
.y6a{bottom:297.930000px;}
.y51{bottom:298.830000px;}
.y26{bottom:300.630000px;}
.y9e{bottom:307.830000px;}
.y69{bottom:319.890000px;}
.y50{bottom:320.790000px;}
.y25{bottom:322.770000px;}
.y9d{bottom:329.790000px;}
.y68{bottom:342.030000px;}
.y4f{bottom:342.750000px;}
.y24{bottom:344.730000px;}
.y9c{bottom:351.750000px;}
.y67{bottom:363.990000px;}
.y4e{bottom:364.890000px;}
.y23{bottom:366.690000px;}
.y9b{bottom:373.890000px;}
.y66{bottom:385.950000px;}
.y4d{bottom:386.850000px;}
.y22{bottom:388.830000px;}
.y9a{bottom:395.850000px;}
.y65{bottom:408.090000px;}
.y4c{bottom:408.990000px;}
.y21{bottom:410.790000px;}
.y99{bottom:418.035000px;}
.y64{bottom:430.095000px;}
.y20{bottom:432.975000px;}
.y98{bottom:439.995000px;}
.y4b{bottom:440.535000px;}
.y63{bottom:452.055000px;}
.y1f{bottom:454.935000px;}
.y97{bottom:461.955000px;}
.y4a{bottom:474.195000px;}
.y96{bottom:484.095000px;}
.y1e{bottom:486.615000px;}
.y49{bottom:496.155000px;}
.y95{bottom:506.055000px;}
.y48{bottom:518.295000px;}
.y1d{bottom:520.095000px;}
.y94{bottom:528.015000px;}
.y47{bottom:540.255000px;}
.y1c{bottom:542.235000px;}
.y93{bottom:550.155000px;}
.y46{bottom:562.215000px;}
.y1b{bottom:564.195000px;}
.y92{bottom:581.835000px;}
.y45{bottom:584.355000px;}
.y1a{bottom:586.155000px;}
.y44{bottom:606.315000px;}
.y19{bottom:608.295000px;}
.y91{bottom:615.315000px;}
.y43{bottom:628.275000px;}
.y18{bottom:630.255000px;}
.y90{bottom:637.275000px;}
.y42{bottom:650.415000px;}
.y17{bottom:652.395000px;}
.y8f{bottom:659.445000px;}
.y75{bottom:659.985000px;}
.y41{bottom:672.405000px;}
.y16{bottom:674.385000px;}
.y8e{bottom:681.405000px;}
.y74{bottom:693.645000px;}
.y40{bottom:694.545000px;}
.y15{bottom:696.345000px;}
.y8d{bottom:703.545000px;}
.y73{bottom:715.605000px;}
.y3f{bottom:716.505000px;}
.y14{bottom:718.485000px;}
.y8c{bottom:725.505000px;}
.y72{bottom:737.745000px;}
.y3e{bottom:738.465000px;}
.y13{bottom:740.445000px;}
.y8b{bottom:747.465000px;}
.y71{bottom:759.705000px;}
.y3d{bottom:760.605000px;}
.y12{bottom:762.405000px;}
.y8a{bottom:769.605000px;}
.y62{bottom:770.145000px;}
.y70{bottom:781.665000px;}
.y3c{bottom:782.565000px;}
.y11{bottom:784.545000px;}
.y89{bottom:791.565000px;}
.y61{bottom:803.805000px;}
.y3b{bottom:804.705000px;}
.y10{bottom:806.505000px;}
.y88{bottom:813.705000px;}
.y60{bottom:825.765000px;}
.y3a{bottom:826.665000px;}
.yf{bottom:828.645000px;}
.y87{bottom:835.665000px;}
.y5f{bottom:847.725000px;}
.y39{bottom:848.625000px;}
.ye{bottom:850.605000px;}
.y86{bottom:857.625000px;}
.y5e{bottom:869.865000px;}
.y38{bottom:870.765000px;}
.yd{bottom:872.565000px;}
.y85{bottom:879.765000px;}
.y5d{bottom:891.825000px;}
.y37{bottom:892.725000px;}
.yc{bottom:894.705000px;}
.y84{bottom:901.725000px;}
.y5c{bottom:914.010000px;}
.y36{bottom:914.730000px;}
.yb{bottom:916.710000px;}
.y83{bottom:923.730000px;}
.y5b{bottom:935.970000px;}
.y35{bottom:936.870000px;}
.y82{bottom:945.870000px;}
.ya{bottom:948.390000px;}
.y5a{bottom:957.930000px;}
.y34{bottom:958.830000px;}
.y81{bottom:967.830000px;}
.y9{bottom:980.070000px;}
.y80{bottom:989.970000px;}
.y33{bottom:990.510000px;}
.y59{bottom:1002.030000px;}
.y8{bottom:1010.310000px;}
.y7f{bottom:1011.930000px;}
.y32{bottom:1023.990000px;}
.y7e{bottom:1033.890000px;}
.y7{bottom:1034.250000px;}
.y31{bottom:1046.130000px;}
.y7d{bottom:1056.030000px;}
.y6{bottom:1062.330000px;}
.y30{bottom:1068.090000px;}
.y7c{bottom:1077.990000px;}
.y2f{bottom:1090.230000px;}
.y5{bottom:1100.130000px;}
.y7b{bottom:1109.670000px;}
.y2e{bottom:1112.190000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1171.620000px;}
.y1{bottom:1192.320000px;}
.h7{height:46.736719px;}
.h2{height:50.273438px;}
.h3{height:62.402344px;}
.h9{height:67.476240px;}
.h8{height:71.125491px;}
.h6{height:72.090000px;}
.h5{height:76.703760px;}
.h4{height:115.344000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:115.595987px;}
.x5{left:118.655987px;}
.x4{left:237.809987px;}
.x6{left:264.854987px;}
.x3{left:321.014987px;}
.x7{left:422.384987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.183270pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.038400pt;}
.ls5{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.810667pt;}
.ls0{letter-spacing:547.808000pt;}
.ls1{letter-spacing:717.514667pt;}
.ws2{word-spacing:-32.260480pt;}
.ws3{word-spacing:-29.731072pt;}
.ws5{word-spacing:-28.379520pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-7.498318pt;}
._a{margin-left:-6.551162pt;}
._c{margin-left:-5.469227pt;}
._3{margin-left:-4.265173pt;}
._1{margin-left:-2.965333pt;}
._4{margin-left:-1.945468pt;}
._0{margin-left:-0.896000pt;}
._2{width:1.066667pt;}
._9{width:1.979351pt;}
._5{width:2.958746pt;}
._6{width:4.027645pt;}
._d{width:4.957955pt;}
._e{width:5.912287pt;}
._8{width:6.866881pt;}
._7{width:7.814036pt;}
._f{width:9.360000pt;}
._11{width:10.329468pt;}
._10{width:11.456640pt;}
._12{width:12.733572pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:78.929661pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:52.320000pt;}
.ya6{bottom:106.720000pt;}
.y7a{bottom:108.160000pt;}
.y6f{bottom:108.960000pt;}
.y79{bottom:127.680000pt;}
.y58{bottom:128.480000pt;}
.y2d{bottom:130.240000pt;}
.ya5{bottom:136.480000pt;}
.y78{bottom:147.200000pt;}
.y57{bottom:148.000000pt;}
.y2c{bottom:149.786667pt;}
.ya4{bottom:156.026667pt;}
.y77{bottom:166.906667pt;}
.y56{bottom:167.706667pt;}
.y2b{bottom:169.306667pt;}
.ya3{bottom:175.706667pt;}
.y6e{bottom:176.186667pt;}
.y76{bottom:186.426667pt;}
.y55{bottom:187.226667pt;}
.y2a{bottom:188.986667pt;}
.ya2{bottom:195.226667pt;}
.y6d{bottom:206.106667pt;}
.y54{bottom:206.746667pt;}
.y29{bottom:208.506667pt;}
.ya1{bottom:214.746667pt;}
.y6c{bottom:225.626667pt;}
.y53{bottom:226.426667pt;}
.y28{bottom:228.186667pt;}
.ya0{bottom:234.426667pt;}
.y6b{bottom:245.146667pt;}
.y52{bottom:245.946667pt;}
.y27{bottom:247.706667pt;}
.y9f{bottom:253.946667pt;}
.y6a{bottom:264.826667pt;}
.y51{bottom:265.626667pt;}
.y26{bottom:267.226667pt;}
.y9e{bottom:273.626667pt;}
.y69{bottom:284.346667pt;}
.y50{bottom:285.146667pt;}
.y25{bottom:286.906667pt;}
.y9d{bottom:293.146667pt;}
.y68{bottom:304.026667pt;}
.y4f{bottom:304.666667pt;}
.y24{bottom:306.426667pt;}
.y9c{bottom:312.666667pt;}
.y67{bottom:323.546667pt;}
.y4e{bottom:324.346667pt;}
.y23{bottom:325.946667pt;}
.y9b{bottom:332.346667pt;}
.y66{bottom:343.066667pt;}
.y4d{bottom:343.866667pt;}
.y22{bottom:345.626667pt;}
.y9a{bottom:351.866667pt;}
.y65{bottom:362.746667pt;}
.y4c{bottom:363.546667pt;}
.y21{bottom:365.146667pt;}
.y99{bottom:371.586667pt;}
.y64{bottom:382.306667pt;}
.y20{bottom:384.866667pt;}
.y98{bottom:391.106667pt;}
.y4b{bottom:391.586667pt;}
.y63{bottom:401.826667pt;}
.y1f{bottom:404.386667pt;}
.y97{bottom:410.626667pt;}
.y4a{bottom:421.506667pt;}
.y96{bottom:430.306667pt;}
.y1e{bottom:432.546667pt;}
.y49{bottom:441.026667pt;}
.y95{bottom:449.826667pt;}
.y48{bottom:460.706667pt;}
.y1d{bottom:462.306667pt;}
.y94{bottom:469.346667pt;}
.y47{bottom:480.226667pt;}
.y1c{bottom:481.986667pt;}
.y93{bottom:489.026667pt;}
.y46{bottom:499.746667pt;}
.y1b{bottom:501.506667pt;}
.y92{bottom:517.186667pt;}
.y45{bottom:519.426667pt;}
.y1a{bottom:521.026667pt;}
.y44{bottom:538.946667pt;}
.y19{bottom:540.706667pt;}
.y91{bottom:546.946667pt;}
.y43{bottom:558.466667pt;}
.y18{bottom:560.226667pt;}
.y90{bottom:566.466667pt;}
.y42{bottom:578.146667pt;}
.y17{bottom:579.906667pt;}
.y8f{bottom:586.173333pt;}
.y75{bottom:586.653333pt;}
.y41{bottom:597.693333pt;}
.y16{bottom:599.453333pt;}
.y8e{bottom:605.693333pt;}
.y74{bottom:616.573333pt;}
.y40{bottom:617.373333pt;}
.y15{bottom:618.973333pt;}
.y8d{bottom:625.373333pt;}
.y73{bottom:636.093333pt;}
.y3f{bottom:636.893333pt;}
.y14{bottom:638.653333pt;}
.y8c{bottom:644.893333pt;}
.y72{bottom:655.773333pt;}
.y3e{bottom:656.413333pt;}
.y13{bottom:658.173333pt;}
.y8b{bottom:664.413333pt;}
.y71{bottom:675.293333pt;}
.y3d{bottom:676.093333pt;}
.y12{bottom:677.693333pt;}
.y8a{bottom:684.093333pt;}
.y62{bottom:684.573333pt;}
.y70{bottom:694.813333pt;}
.y3c{bottom:695.613333pt;}
.y11{bottom:697.373333pt;}
.y89{bottom:703.613333pt;}
.y61{bottom:714.493333pt;}
.y3b{bottom:715.293333pt;}
.y10{bottom:716.893333pt;}
.y88{bottom:723.293333pt;}
.y60{bottom:734.013333pt;}
.y3a{bottom:734.813333pt;}
.yf{bottom:736.573333pt;}
.y87{bottom:742.813333pt;}
.y5f{bottom:753.533333pt;}
.y39{bottom:754.333333pt;}
.ye{bottom:756.093333pt;}
.y86{bottom:762.333333pt;}
.y5e{bottom:773.213333pt;}
.y38{bottom:774.013333pt;}
.yd{bottom:775.613333pt;}
.y85{bottom:782.013333pt;}
.y5d{bottom:792.733333pt;}
.y37{bottom:793.533333pt;}
.yc{bottom:795.293333pt;}
.y84{bottom:801.533333pt;}
.y5c{bottom:812.453333pt;}
.y36{bottom:813.093333pt;}
.yb{bottom:814.853333pt;}
.y83{bottom:821.093333pt;}
.y5b{bottom:831.973333pt;}
.y35{bottom:832.773333pt;}
.y82{bottom:840.773333pt;}
.ya{bottom:843.013333pt;}
.y5a{bottom:851.493333pt;}
.y34{bottom:852.293333pt;}
.y81{bottom:860.293333pt;}
.y9{bottom:871.173333pt;}
.y80{bottom:879.973333pt;}
.y33{bottom:880.453333pt;}
.y59{bottom:890.693333pt;}
.y8{bottom:898.053333pt;}
.y7f{bottom:899.493333pt;}
.y32{bottom:910.213333pt;}
.y7e{bottom:919.013333pt;}
.y7{bottom:919.333333pt;}
.y31{bottom:929.893333pt;}
.y7d{bottom:938.693333pt;}
.y6{bottom:944.293333pt;}
.y30{bottom:949.413333pt;}
.y7c{bottom:958.213333pt;}
.y2f{bottom:969.093333pt;}
.y5{bottom:977.893333pt;}
.y7b{bottom:986.373333pt;}
.y2e{bottom:988.613333pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1041.440000pt;}
.y1{bottom:1059.840000pt;}
.h7{height:41.543750pt;}
.h2{height:44.687500pt;}
.h3{height:55.468750pt;}
.h9{height:59.978880pt;}
.h8{height:63.222659pt;}
.h6{height:64.080000pt;}
.h5{height:68.181120pt;}
.h4{height:102.528000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:102.751988pt;}
.x5{left:105.471988pt;}
.x4{left:211.386655pt;}
.x6{left:235.426655pt;}
.x3{left:285.346655pt;}
.x7{left:375.453322pt;}
}




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