
    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_e9e76f98b8eb077694134608.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_535bac1b1d613f94b15964c8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_e468e674551a5580d1ebdb9b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_790aec50db5f23c71ef7c908.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:ff9;src:url('chunks/assets/font_b2fd9039805cc759668440f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:46.002720px;}
.ls4{letter-spacing:64.002720px;}
.ls3{letter-spacing:636.840000px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-8.007840px;}
._5{margin-left:-6.749280px;}
._a{margin-left:-5.677200px;}
._8{margin-left:-4.282560px;}
._9{margin-left:-2.880000px;}
._2{margin-left:-1.314720px;}
._1{width:1.050960px;}
._3{width:2.887680px;}
._7{width:4.500000px;}
._6{width:136.122000px;}
._4{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y76{bottom:119.556000px;}
.y75{bottom:136.836000px;}
.y3f{bottom:143.496000px;}
.y74{bottom:154.110000px;}
.y3e{bottom:160.770000px;}
.y73{bottom:171.390000px;}
.y3d{bottom:178.050000px;}
.y72{bottom:188.490000px;}
.y3c{bottom:195.330000px;}
.y71{bottom:205.770000px;}
.y3b{bottom:212.610000px;}
.y70{bottom:223.050000px;}
.y3a{bottom:229.710000px;}
.y6f{bottom:240.330000px;}
.y39{bottom:246.990000px;}
.y6e{bottom:257.610000px;}
.y38{bottom:264.270000px;}
.y6d{bottom:274.890000px;}
.y37{bottom:281.550000px;}
.y6c{bottom:291.990000px;}
.y36{bottom:298.830000px;}
.y6b{bottom:309.270000px;}
.y35{bottom:315.930000px;}
.y6a{bottom:326.550000px;}
.y34{bottom:333.210000px;}
.y69{bottom:343.875000px;}
.y33{bottom:350.535000px;}
.y68{bottom:361.155000px;}
.y32{bottom:367.815000px;}
.y67{bottom:378.255000px;}
.y31{bottom:385.095000px;}
.y66{bottom:395.535000px;}
.y30{bottom:402.375000px;}
.y65{bottom:412.815000px;}
.y2f{bottom:419.475000px;}
.y64{bottom:430.095000px;}
.y2e{bottom:436.755000px;}
.y63{bottom:447.375000px;}
.y2d{bottom:454.035000px;}
.y62{bottom:464.655000px;}
.y2c{bottom:471.315000px;}
.y61{bottom:481.755000px;}
.y2b{bottom:489.675000px;}
.y60{bottom:499.035000px;}
.y2a{bottom:508.035000px;}
.y5f{bottom:516.315000px;}
.y29{bottom:526.215000px;}
.y5e{bottom:533.595000px;}
.y28{bottom:544.575000px;}
.y5d{bottom:550.875000px;}
.y27{bottom:561.855000px;}
.y5c{bottom:568.155000px;}
.y26{bottom:579.135000px;}
.y5b{bottom:585.255000px;}
.y25{bottom:596.415000px;}
.y5a{bottom:602.535000px;}
.y24{bottom:613.545000px;}
.y59{bottom:619.845000px;}
.y23{bottom:630.825000px;}
.y58{bottom:637.125000px;}
.y22{bottom:648.105000px;}
.y80{bottom:650.085000px;}
.y57{bottom:654.405000px;}
.y21{bottom:665.385000px;}
.y7f{bottom:667.365000px;}
.y56{bottom:671.685000px;}
.y20{bottom:682.665000px;}
.y7e{bottom:685.545000px;}
.y55{bottom:688.785000px;}
.y1f{bottom:702.105000px;}
.y7d{bottom:702.825000px;}
.y54{bottom:706.065000px;}
.y1e{bottom:719.385000px;}
.y7c{bottom:720.105000px;}
.y53{bottom:723.345000px;}
.y1d{bottom:736.665000px;}
.y7b{bottom:737.385000px;}
.y52{bottom:740.625000px;}
.y1c{bottom:753.945000px;}
.y7a{bottom:755.745000px;}
.y51{bottom:757.905000px;}
.y1b{bottom:771.045000px;}
.y79{bottom:772.845000px;}
.y50{bottom:775.005000px;}
.y1a{bottom:788.325000px;}
.y78{bottom:791.205000px;}
.y4f{bottom:792.285000px;}
.y19{bottom:805.605000px;}
.y77{bottom:808.485000px;}
.y4e{bottom:809.565000px;}
.y18{bottom:822.885000px;}
.y4d{bottom:826.845000px;}
.y17{bottom:840.165000px;}
.y4c{bottom:844.125000px;}
.y16{bottom:859.605000px;}
.y4b{bottom:861.405000px;}
.y15{bottom:877.290000px;}
.y4a{bottom:878.550000px;}
.y49{bottom:895.830000px;}
.y14{bottom:896.370000px;}
.y48{bottom:913.110000px;}
.y13{bottom:915.270000px;}
.y47{bottom:930.390000px;}
.y12{bottom:934.170000px;}
.y46{bottom:947.670000px;}
.y11{bottom:953.250000px;}
.y45{bottom:964.950000px;}
.y10{bottom:972.150000px;}
.y44{bottom:982.050000px;}
.yf{bottom:991.230000px;}
.y43{bottom:999.330000px;}
.ye{bottom:1009.770000px;}
.y42{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y41{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y40{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:39.049805px;}
.h6{height:42.164648px;}
.h2{height:43.215117px;}
.h9{height:43.506914px;}
.h8{height:46.736719px;}
.h4{height:47.901094px;}
.ha{height:49.255313px;}
.h5{height:50.800781px;}
.h3{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x11{left:135.035987px;}
.x4{left:158.429987px;}
.x12{left:162.029987px;}
.x7{left:171.749987px;}
.xb{left:260.129987px;}
.xe{left:266.069987px;}
.x10{left:355.394987px;}
.x8{left:365.834987px;}
.xc{left:369.614987px;}
.xa{left:372.854987px;}
.xd{left:380.234987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:40.891307pt;}
.ls4{letter-spacing:56.891307pt;}
.ls3{letter-spacing:566.080000pt;}
.ws2{word-spacing:-53.120000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-7.118080pt;}
._5{margin-left:-5.999360pt;}
._a{margin-left:-5.046400pt;}
._8{margin-left:-3.806720pt;}
._9{margin-left:-2.560000pt;}
._2{margin-left:-1.168640pt;}
._1{width:0.934187pt;}
._3{width:2.566827pt;}
._7{width:4.000000pt;}
._6{width:120.997333pt;}
._4{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y76{bottom:106.272000pt;}
.y75{bottom:121.632000pt;}
.y3f{bottom:127.552000pt;}
.y74{bottom:136.986667pt;}
.y3e{bottom:142.906667pt;}
.y73{bottom:152.346667pt;}
.y3d{bottom:158.266667pt;}
.y72{bottom:167.546667pt;}
.y3c{bottom:173.626667pt;}
.y71{bottom:182.906667pt;}
.y3b{bottom:188.986667pt;}
.y70{bottom:198.266667pt;}
.y3a{bottom:204.186667pt;}
.y6f{bottom:213.626667pt;}
.y39{bottom:219.546667pt;}
.y6e{bottom:228.986667pt;}
.y38{bottom:234.906667pt;}
.y6d{bottom:244.346667pt;}
.y37{bottom:250.266667pt;}
.y6c{bottom:259.546667pt;}
.y36{bottom:265.626667pt;}
.y6b{bottom:274.906667pt;}
.y35{bottom:280.826667pt;}
.y6a{bottom:290.266667pt;}
.y34{bottom:296.186667pt;}
.y69{bottom:305.666667pt;}
.y33{bottom:311.586667pt;}
.y68{bottom:321.026667pt;}
.y32{bottom:326.946667pt;}
.y67{bottom:336.226667pt;}
.y31{bottom:342.306667pt;}
.y66{bottom:351.586667pt;}
.y30{bottom:357.666667pt;}
.y65{bottom:366.946667pt;}
.y2f{bottom:372.866667pt;}
.y64{bottom:382.306667pt;}
.y2e{bottom:388.226667pt;}
.y63{bottom:397.666667pt;}
.y2d{bottom:403.586667pt;}
.y62{bottom:413.026667pt;}
.y2c{bottom:418.946667pt;}
.y61{bottom:428.226667pt;}
.y2b{bottom:435.266667pt;}
.y60{bottom:443.586667pt;}
.y2a{bottom:451.586667pt;}
.y5f{bottom:458.946667pt;}
.y29{bottom:467.746667pt;}
.y5e{bottom:474.306667pt;}
.y28{bottom:484.066667pt;}
.y5d{bottom:489.666667pt;}
.y27{bottom:499.426667pt;}
.y5c{bottom:505.026667pt;}
.y26{bottom:514.786667pt;}
.y5b{bottom:520.226667pt;}
.y25{bottom:530.146667pt;}
.y5a{bottom:535.586667pt;}
.y24{bottom:545.373333pt;}
.y59{bottom:550.973333pt;}
.y23{bottom:560.733333pt;}
.y58{bottom:566.333333pt;}
.y22{bottom:576.093333pt;}
.y80{bottom:577.853333pt;}
.y57{bottom:581.693333pt;}
.y21{bottom:591.453333pt;}
.y7f{bottom:593.213333pt;}
.y56{bottom:597.053333pt;}
.y20{bottom:606.813333pt;}
.y7e{bottom:609.373333pt;}
.y55{bottom:612.253333pt;}
.y1f{bottom:624.093333pt;}
.y7d{bottom:624.733333pt;}
.y54{bottom:627.613333pt;}
.y1e{bottom:639.453333pt;}
.y7c{bottom:640.093333pt;}
.y53{bottom:642.973333pt;}
.y1d{bottom:654.813333pt;}
.y7b{bottom:655.453333pt;}
.y52{bottom:658.333333pt;}
.y1c{bottom:670.173333pt;}
.y7a{bottom:671.773333pt;}
.y51{bottom:673.693333pt;}
.y1b{bottom:685.373333pt;}
.y79{bottom:686.973333pt;}
.y50{bottom:688.893333pt;}
.y1a{bottom:700.733333pt;}
.y78{bottom:703.293333pt;}
.y4f{bottom:704.253333pt;}
.y19{bottom:716.093333pt;}
.y77{bottom:718.653333pt;}
.y4e{bottom:719.613333pt;}
.y18{bottom:731.453333pt;}
.y4d{bottom:734.973333pt;}
.y17{bottom:746.813333pt;}
.y4c{bottom:750.333333pt;}
.y16{bottom:764.093333pt;}
.y4b{bottom:765.693333pt;}
.y15{bottom:779.813333pt;}
.y4a{bottom:780.933333pt;}
.y49{bottom:796.293333pt;}
.y14{bottom:796.773333pt;}
.y48{bottom:811.653333pt;}
.y13{bottom:813.573333pt;}
.y47{bottom:827.013333pt;}
.y12{bottom:830.373333pt;}
.y46{bottom:842.373333pt;}
.y11{bottom:847.333333pt;}
.y45{bottom:857.733333pt;}
.y10{bottom:864.133333pt;}
.y44{bottom:872.933333pt;}
.yf{bottom:881.093333pt;}
.y43{bottom:888.293333pt;}
.ye{bottom:897.573333pt;}
.y42{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y41{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y40{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:34.710938pt;}
.h6{height:37.479688pt;}
.h2{height:38.413438pt;}
.h9{height:38.672812pt;}
.h8{height:41.543750pt;}
.h4{height:42.578750pt;}
.ha{height:43.782500pt;}
.h5{height:45.156250pt;}
.h3{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x11{left:120.031988pt;}
.x4{left:140.826655pt;}
.x12{left:144.026655pt;}
.x7{left:152.666655pt;}
.xb{left:231.226655pt;}
.xe{left:236.506655pt;}
.x10{left:315.906655pt;}
.x8{left:325.186655pt;}
.xc{left:328.546655pt;}
.xa{left:331.426655pt;}
.xd{left:337.986655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
}




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