
    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_822ac13880a78a838a53db96.woff')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_b58d78fb0f25c5cce5f97bb4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.937012;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_8f0dc8b53a0461f56f1aa021.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_2e921bf21a400522c3523490.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_c203b32f4b4f3b6be0d58f3f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_12b23b02dadf35636ad0abdb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_9949fd75a62d7de0b07992d4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.463800px;}
.ls1{letter-spacing:-0.460800px;}
.ls3{letter-spacing:-0.265200px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.103800px;}
.ls7{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.678000px;}
.ls8{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.944640px;}
.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;}
}
.ws8{word-spacing:-22.773360px;}
.ws4{word-spacing:-22.256640px;}
.ws7{word-spacing:-22.199160px;}
.ws9{word-spacing:-22.095360px;}
.ws6{word-spacing:-21.830160px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-0.066384px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.068480px;}
._1{width:1.244160px;}
._2{width:2.528640px;}
._3{width:3.642720px;}
._4{width:4.805760px;}
.fc5{color:rgb(60,90,114);}
.fc4{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(37,37,37);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:66.384000px;}
.fs2{font-size:80.640000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.076000px;}
.y9{bottom:57.240000px;}
.y8{bottom:73.116000px;}
.ya{bottom:76.680000px;}
.y4e{bottom:109.476000px;}
.y45{bottom:112.356000px;}
.yac{bottom:118.116000px;}
.y58{bottom:133.596000px;}
.y4d{bottom:136.116000px;}
.y78{bottom:138.996000px;}
.y44{bottom:139.356000px;}
.y90{bottom:147.996000px;}
.y26{bottom:159.870000px;}
.y57{bottom:160.590000px;}
.y4c{bottom:163.110000px;}
.yab{bottom:165.990000px;}
.y43{bottom:166.350000px;}
.y8f{bottom:174.990000px;}
.y77{bottom:186.870000px;}
.y56{bottom:187.230000px;}
.y42{bottom:193.350000px;}
.y8e{bottom:202.035000px;}
.y25{bottom:207.795000px;}
.y4b{bottom:211.035000px;}
.yaa{bottom:213.915000px;}
.y55{bottom:214.275000px;}
.y41{bottom:220.395000px;}
.y8d{bottom:229.035000px;}
.y76{bottom:234.795000px;}
.ya9{bottom:240.915000px;}
.y54{bottom:241.275000px;}
.y40{bottom:247.035000px;}
.y24{bottom:255.675000px;}
.y8c{bottom:256.035000px;}
.y4a{bottom:258.915000px;}
.ya8{bottom:267.915000px;}
.y53{bottom:268.275000px;}
.y3f{bottom:274.035000px;}
.y75{bottom:282.675000px;}
.ya7{bottom:294.915000px;}
.y52{bottom:295.275000px;}
.y3e{bottom:301.035000px;}
.y23{bottom:303.915000px;}
.y49{bottom:306.795000px;}
.y74{bottom:309.675000px;}
.y51{bottom:321.945000px;}
.y3d{bottom:328.065000px;}
.y22{bottom:330.945000px;}
.y8b{bottom:336.705000px;}
.ya6{bottom:348.585000px;}
.y50{bottom:348.945000px;}
.y3c{bottom:355.065000px;}
.y73{bottom:357.585000px;}
.y8a{bottom:363.705000px;}
.ya5{bottom:375.585000px;}
.y4f{bottom:375.945000px;}
.y21{bottom:378.825000px;}
.y3b{bottom:382.065000px;}
.y89{bottom:390.705000px;}
.y48{bottom:402.945000px;}
.y72{bottom:405.465000px;}
.y3a{bottom:408.705000px;}
.y88{bottom:417.345000px;}
.ya4{bottom:423.465000px;}
.y20{bottom:426.705000px;}
.y47{bottom:429.945000px;}
.y71{bottom:432.465000px;}
.y6a{bottom:435.705000px;}
.y87{bottom:444.345000px;}
.ya3{bottom:450.510000px;}
.y1f{bottom:453.750000px;}
.y39{bottom:456.630000px;}
.y46{bottom:456.990000px;}
.y70{bottom:459.510000px;}
.y69{bottom:462.750000px;}
.ya2{bottom:477.510000px;}
.y1e{bottom:480.390000px;}
.y38{bottom:483.630000px;}
.y6f{bottom:486.510000px;}
.y68{bottom:489.750000px;}
.y86{bottom:492.270000px;}
.ya1{bottom:504.510000px;}
.y1d{bottom:507.390000px;}
.y37{bottom:510.630000px;}
.y6e{bottom:513.510000px;}
.y67{bottom:516.750000px;}
.y1c{bottom:534.390000px;}
.y36{bottom:537.630000px;}
.y85{bottom:540.150000px;}
.y66{bottom:543.390000px;}
.ya0{bottom:552.390000px;}
.y1b{bottom:561.390000px;}
.y35{bottom:564.630000px;}
.y65{bottom:570.390000px;}
.y9f{bottom:579.420000px;}
.y1a{bottom:588.420000px;}
.y34{bottom:591.660000px;}
.y64{bottom:597.420000px;}
.y9e{bottom:606.420000px;}
.y6d{bottom:609.300000px;}
.y19{bottom:615.420000px;}
.y33{bottom:618.300000px;}
.y63{bottom:624.420000px;}
.y84{bottom:636.300000px;}
.y18{bottom:642.060000px;}
.y32{bottom:645.300000px;}
.y62{bottom:651.420000px;}
.y9d{bottom:654.300000px;}
.y6c{bottom:657.180000px;}
.y17{bottom:669.060000px;}
.y31{bottom:672.300000px;}
.y61{bottom:678.420000px;}
.y9c{bottom:681.300000px;}
.y83{bottom:684.180000px;}
.y16{bottom:696.060000px;}
.y30{bottom:699.330000px;}
.y60{bottom:705.090000px;}
.y9b{bottom:707.970000px;}
.y82{bottom:711.210000px;}
.y15{bottom:723.090000px;}
.y2f{bottom:726.330000px;}
.y5f{bottom:732.090000px;}
.y9a{bottom:734.970000px;}
.y81{bottom:738.210000px;}
.y14{bottom:750.090000px;}
.y6b{bottom:752.970000px;}
.y2e{bottom:753.330000px;}
.y5e{bottom:759.090000px;}
.y99{bottom:761.970000px;}
.y80{bottom:764.850000px;}
.y2d{bottom:779.970000px;}
.y5d{bottom:786.090000px;}
.y7f{bottom:791.850000px;}
.y13{bottom:797.970000px;}
.y2c{bottom:806.970000px;}
.y98{bottom:809.850000px;}
.y5c{bottom:813.090000px;}
.y7e{bottom:818.850000px;}
.y2b{bottom:834.015000px;}
.y97{bottom:836.895000px;}
.y5b{bottom:839.775000px;}
.y12{bottom:845.895000px;}
.y2a{bottom:861.015000px;}
.y96{bottom:863.895000px;}
.y5a{bottom:866.775000px;}
.y11{bottom:872.895000px;}
.y29{bottom:888.015000px;}
.y59{bottom:893.775000px;}
.y7d{bottom:899.895000px;}
.y95{bottom:911.775000px;}
.y28{bottom:914.655000px;}
.y10{bottom:920.775000px;}
.y94{bottom:938.775000px;}
.y27{bottom:941.655000px;}
.y7c{bottom:947.775000px;}
.yad{bottom:956.445000px;}
.y93{bottom:965.805000px;}
.yf{bottom:968.685000px;}
.y7b{bottom:974.805000px;}
.y92{bottom:992.445000px;}
.ye{bottom:995.685000px;}
.y7a{bottom:1001.445000px;}
.yd{bottom:1022.685000px;}
.y91{bottom:1042.125000px;}
.y79{bottom:1049.325000px;}
.yc{bottom:1049.685000px;}
.y7{bottom:1104.810000px;}
.y6{bottom:1124.970000px;}
.y5{bottom:1145.130000px;}
.y4{bottom:1165.290000px;}
.y3{bottom:1185.450000px;}
.y2{bottom:1205.640000px;}
.y1{bottom:1225.800000px;}
.h4{height:21.960000px;}
.h3{height:50.294531px;}
.h2{height:53.302500px;}
.h5{height:53.418375px;}
.h6{height:69.733125px;}
.h7{height:69.772500px;}
.h9{height:85.845399px;}
.h8{height:93.445312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:127.475987px;}
.xe{left:177.554987px;}
.x1{left:223.274987px;}
.xb{left:237.344987px;}
.xd{left:306.824987px;}
.x6{left:331.709987px;}
.xf{left:334.229987px;}
.x5{left:337.829987px;}
.x4{left:360.149987px;}
.x3{left:376.349987px;}
.x2{left:378.869987px;}
.x7{left:435.779987px;}
.xc{left:436.859987px;}
.xa{left:836.280000px;}
.x8{left:894.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls1{letter-spacing:-0.409600pt;}
.ls3{letter-spacing:-0.235733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.092267pt;}
.ls7{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.602667pt;}
.ls8{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.839680pt;}
.ws8{word-spacing:-20.242987pt;}
.ws4{word-spacing:-19.783680pt;}
.ws7{word-spacing:-19.732587pt;}
.ws9{word-spacing:-19.640320pt;}
.ws6{word-spacing:-19.404587pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-0.059008pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-0.949760pt;}
._1{width:1.105920pt;}
._2{width:2.247680pt;}
._3{width:3.237973pt;}
._4{width:4.271787pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:59.008000pt;}
.fs2{font-size:71.680000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.512000pt;}
.y9{bottom:50.880000pt;}
.y8{bottom:64.992000pt;}
.ya{bottom:68.160000pt;}
.y4e{bottom:97.312000pt;}
.y45{bottom:99.872000pt;}
.yac{bottom:104.992000pt;}
.y58{bottom:118.752000pt;}
.y4d{bottom:120.992000pt;}
.y78{bottom:123.552000pt;}
.y44{bottom:123.872000pt;}
.y90{bottom:131.552000pt;}
.y26{bottom:142.106667pt;}
.y57{bottom:142.746667pt;}
.y4c{bottom:144.986667pt;}
.yab{bottom:147.546667pt;}
.y43{bottom:147.866667pt;}
.y8f{bottom:155.546667pt;}
.y77{bottom:166.106667pt;}
.y56{bottom:166.426667pt;}
.y42{bottom:171.866667pt;}
.y8e{bottom:179.586667pt;}
.y25{bottom:184.706667pt;}
.y4b{bottom:187.586667pt;}
.yaa{bottom:190.146667pt;}
.y55{bottom:190.466667pt;}
.y41{bottom:195.906667pt;}
.y8d{bottom:203.586667pt;}
.y76{bottom:208.706667pt;}
.ya9{bottom:214.146667pt;}
.y54{bottom:214.466667pt;}
.y40{bottom:219.586667pt;}
.y24{bottom:227.266667pt;}
.y8c{bottom:227.586667pt;}
.y4a{bottom:230.146667pt;}
.ya8{bottom:238.146667pt;}
.y53{bottom:238.466667pt;}
.y3f{bottom:243.586667pt;}
.y75{bottom:251.266667pt;}
.ya7{bottom:262.146667pt;}
.y52{bottom:262.466667pt;}
.y3e{bottom:267.586667pt;}
.y23{bottom:270.146667pt;}
.y49{bottom:272.706667pt;}
.y74{bottom:275.266667pt;}
.y51{bottom:286.173333pt;}
.y3d{bottom:291.613333pt;}
.y22{bottom:294.173333pt;}
.y8b{bottom:299.293333pt;}
.ya6{bottom:309.853333pt;}
.y50{bottom:310.173333pt;}
.y3c{bottom:315.613333pt;}
.y73{bottom:317.853333pt;}
.y8a{bottom:323.293333pt;}
.ya5{bottom:333.853333pt;}
.y4f{bottom:334.173333pt;}
.y21{bottom:336.733333pt;}
.y3b{bottom:339.613333pt;}
.y89{bottom:347.293333pt;}
.y48{bottom:358.173333pt;}
.y72{bottom:360.413333pt;}
.y3a{bottom:363.293333pt;}
.y88{bottom:370.973333pt;}
.ya4{bottom:376.413333pt;}
.y20{bottom:379.293333pt;}
.y47{bottom:382.173333pt;}
.y71{bottom:384.413333pt;}
.y6a{bottom:387.293333pt;}
.y87{bottom:394.973333pt;}
.ya3{bottom:400.453333pt;}
.y1f{bottom:403.333333pt;}
.y39{bottom:405.893333pt;}
.y46{bottom:406.213333pt;}
.y70{bottom:408.453333pt;}
.y69{bottom:411.333333pt;}
.ya2{bottom:424.453333pt;}
.y1e{bottom:427.013333pt;}
.y38{bottom:429.893333pt;}
.y6f{bottom:432.453333pt;}
.y68{bottom:435.333333pt;}
.y86{bottom:437.573333pt;}
.ya1{bottom:448.453333pt;}
.y1d{bottom:451.013333pt;}
.y37{bottom:453.893333pt;}
.y6e{bottom:456.453333pt;}
.y67{bottom:459.333333pt;}
.y1c{bottom:475.013333pt;}
.y36{bottom:477.893333pt;}
.y85{bottom:480.133333pt;}
.y66{bottom:483.013333pt;}
.ya0{bottom:491.013333pt;}
.y1b{bottom:499.013333pt;}
.y35{bottom:501.893333pt;}
.y65{bottom:507.013333pt;}
.y9f{bottom:515.040000pt;}
.y1a{bottom:523.040000pt;}
.y34{bottom:525.920000pt;}
.y64{bottom:531.040000pt;}
.y9e{bottom:539.040000pt;}
.y6d{bottom:541.600000pt;}
.y19{bottom:547.040000pt;}
.y33{bottom:549.600000pt;}
.y63{bottom:555.040000pt;}
.y84{bottom:565.600000pt;}
.y18{bottom:570.720000pt;}
.y32{bottom:573.600000pt;}
.y62{bottom:579.040000pt;}
.y9d{bottom:581.600000pt;}
.y6c{bottom:584.160000pt;}
.y17{bottom:594.720000pt;}
.y31{bottom:597.600000pt;}
.y61{bottom:603.040000pt;}
.y9c{bottom:605.600000pt;}
.y83{bottom:608.160000pt;}
.y16{bottom:618.720000pt;}
.y30{bottom:621.626667pt;}
.y60{bottom:626.746667pt;}
.y9b{bottom:629.306667pt;}
.y82{bottom:632.186667pt;}
.y15{bottom:642.746667pt;}
.y2f{bottom:645.626667pt;}
.y5f{bottom:650.746667pt;}
.y9a{bottom:653.306667pt;}
.y81{bottom:656.186667pt;}
.y14{bottom:666.746667pt;}
.y6b{bottom:669.306667pt;}
.y2e{bottom:669.626667pt;}
.y5e{bottom:674.746667pt;}
.y99{bottom:677.306667pt;}
.y80{bottom:679.866667pt;}
.y2d{bottom:693.306667pt;}
.y5d{bottom:698.746667pt;}
.y7f{bottom:703.866667pt;}
.y13{bottom:709.306667pt;}
.y2c{bottom:717.306667pt;}
.y98{bottom:719.866667pt;}
.y5c{bottom:722.746667pt;}
.y7e{bottom:727.866667pt;}
.y2b{bottom:741.346667pt;}
.y97{bottom:743.906667pt;}
.y5b{bottom:746.466667pt;}
.y12{bottom:751.906667pt;}
.y2a{bottom:765.346667pt;}
.y96{bottom:767.906667pt;}
.y5a{bottom:770.466667pt;}
.y11{bottom:775.906667pt;}
.y29{bottom:789.346667pt;}
.y59{bottom:794.466667pt;}
.y7d{bottom:799.906667pt;}
.y95{bottom:810.466667pt;}
.y28{bottom:813.026667pt;}
.y10{bottom:818.466667pt;}
.y94{bottom:834.466667pt;}
.y27{bottom:837.026667pt;}
.y7c{bottom:842.466667pt;}
.yad{bottom:850.173333pt;}
.y93{bottom:858.493333pt;}
.yf{bottom:861.053333pt;}
.y7b{bottom:866.493333pt;}
.y92{bottom:882.173333pt;}
.ye{bottom:885.053333pt;}
.y7a{bottom:890.173333pt;}
.yd{bottom:909.053333pt;}
.y91{bottom:926.333333pt;}
.y79{bottom:932.733333pt;}
.yc{bottom:933.053333pt;}
.y7{bottom:982.053333pt;}
.y6{bottom:999.973333pt;}
.y5{bottom:1017.893333pt;}
.y4{bottom:1035.813333pt;}
.y3{bottom:1053.733333pt;}
.y2{bottom:1071.680000pt;}
.y1{bottom:1089.600000pt;}
.h4{height:19.520000pt;}
.h3{height:44.706250pt;}
.h2{height:47.380000pt;}
.h5{height:47.483000pt;}
.h6{height:61.985000pt;}
.h7{height:62.020000pt;}
.h9{height:76.307021pt;}
.h8{height:83.062500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:113.311988pt;}
.xe{left:157.826655pt;}
.x1{left:198.466655pt;}
.xb{left:210.973322pt;}
.xd{left:272.733322pt;}
.x6{left:294.853322pt;}
.xf{left:297.093322pt;}
.x5{left:300.293322pt;}
.x4{left:320.133322pt;}
.x3{left:334.533322pt;}
.x2{left:336.773322pt;}
.x7{left:387.359988pt;}
.xc{left:388.319988pt;}
.xa{left:743.360000pt;}
.x8{left:794.853322pt;}
}




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