
    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_337af30318d85eebef9d50e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b8e88d1430be0accd3581ae0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_9fe0bb7d0c1c38be79b34073.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_cb112c277e5d9b783a311d9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_a27720f02d2e68b8be2e370d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096191;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.492000px;}
.ls1{letter-spacing:1.584000px;}
.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;}
}
.ws3{word-spacing:-19.584000px;}
.ws0{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-10.826400px;}
._1{margin-left:-9.817200px;}
._4{margin-left:-7.296000px;}
._3{margin-left:-5.836800px;}
._8{margin-left:-3.895200px;}
._2{margin-left:-2.624400px;}
._6{margin-left:-1.420800px;}
._0{width:1.749600px;}
._5{width:3.346800px;}
._15{width:4.410000px;}
._d{width:6.417600px;}
._e{width:7.896000px;}
._17{width:9.214800px;}
._10{width:10.736400px;}
._f{width:11.768400px;}
._16{width:13.558800px;}
._9{width:14.737200px;}
._c{width:16.218000px;}
._a{width:19.220400px;}
._b{width:21.567600px;}
._14{width:22.929600px;}
._11{width:25.488000px;}
._13{width:29.229600px;}
._12{width:33.070800px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.600000px;}
.fs3{font-size:46.800000px;}
.fs6{font-size:61.200000px;}
.fs4{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:82.800000px;}
.fs0{font-size:97.200000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:110.775000px;}
.y70{bottom:116.175000px;}
.y6f{bottom:130.575000px;}
.y29{bottom:133.275000px;}
.y28{bottom:155.805000px;}
.y51{bottom:168.405000px;}
.y27{bottom:178.305000px;}
.y50{bottom:190.005000px;}
.y26{bottom:199.950000px;}
.y6e{bottom:200.850000px;}
.y4f{bottom:212.550000px;}
.y25{bottom:222.450000px;}
.y6d{bottom:223.350000px;}
.y4e{bottom:235.050000px;}
.y6c{bottom:245.880000px;}
.y24{bottom:256.680000px;}
.y6a{bottom:268.380000px;}
.y4d{bottom:269.280000px;}
.y6b{bottom:274.695000px;}
.y23{bottom:279.195000px;}
.y69{bottom:290.880000px;}
.y4c{bottom:291.795000px;}
.y22{bottom:301.725000px;}
.y68{bottom:312.525000px;}
.y4b{bottom:314.325000px;}
.y21{bottom:324.225000px;}
.y4a{bottom:336.825000px;}
.y20{bottom:346.725000px;}
.y49{bottom:358.470000px;}
.y1f{bottom:368.370000px;}
.y48{bottom:380.955000px;}
.y67{bottom:381.870000px;}
.y1e{bottom:390.855000px;}
.y1d{bottom:413.400000px;}
.y47{bottom:415.200000px;}
.y66{bottom:416.100000px;}
.y1c{bottom:435.900000px;}
.y46{bottom:437.700000px;}
.y65{bottom:450.300000px;}
.y1b{bottom:458.445000px;}
.y45{bottom:460.245000px;}
.y1a{bottom:480.945000px;}
.y44{bottom:482.730000px;}
.y64{bottom:484.530000px;}
.y19{bottom:515.175000px;}
.y43{bottom:516.975000px;}
.y63{bottom:518.775000px;}
.y18{bottom:549.375000px;}
.y42{bottom:551.175000px;}
.y62{bottom:552.975000px;}
.y17{bottom:571.905000px;}
.y41{bottom:573.720000px;}
.y61{bottom:588.105000px;}
.y16{bottom:594.405000px;}
.y40{bottom:596.205000px;}
.y15{bottom:616.050000px;}
.y3f{bottom:618.750000px;}
.y60{bottom:622.350000px;}
.y14{bottom:638.550000px;}
.y3e{bottom:640.350000px;}
.y5f{bottom:656.550000px;}
.y13{bottom:661.050000px;}
.y3d{bottom:662.880000px;}
.y12{bottom:683.595000px;}
.y3c{bottom:685.380000px;}
.y5e{bottom:690.780000px;}
.y11{bottom:706.080000px;}
.y3b{bottom:719.625000px;}
.y5d{bottom:725.025000px;}
.y10{bottom:727.725000px;}
.y3a{bottom:742.125000px;}
.yf{bottom:750.225000px;}
.y77{bottom:751.125000px;}
.y5c{bottom:759.225000px;}
.y39{bottom:764.625000px;}
.ye{bottom:772.755000px;}
.y38{bottom:787.170000px;}
.y5b{bottom:793.455000px;}
.yd{bottom:795.255000px;}
.yc{bottom:817.755000px;}
.y37{bottom:821.400000px;}
.y5a{bottom:828.600000px;}
.y76{bottom:834.900000px;}
.yb{bottom:840.300000px;}
.y36{bottom:855.600000px;}
.y59{bottom:862.800000px;}
.ya{bottom:874.545000px;}
.y35{bottom:878.130000px;}
.y9{bottom:896.130000px;}
.y58{bottom:897.045000px;}
.y34{bottom:900.630000px;}
.y75{bottom:908.730000px;}
.y8{bottom:918.630000px;}
.y33{bottom:922.230000px;}
.y57{bottom:931.275000px;}
.y7{bottom:941.175000px;}
.y74{bottom:942.975000px;}
.y32{bottom:944.775000px;}
.y6{bottom:963.675000px;}
.y56{bottom:965.475000px;}
.y31{bottom:967.275000px;}
.y73{bottom:978.120000px;}
.y5{bottom:998.820000px;}
.y55{bottom:999.705000px;}
.y30{bottom:1001.505000px;}
.y72{bottom:1012.320000px;}
.y2f{bottom:1024.005000px;}
.y54{bottom:1034.850000px;}
.y4{bottom:1035.750000px;}
.y2e{bottom:1046.550000px;}
.y53{bottom:1069.050000px;}
.y3{bottom:1072.650000px;}
.y2d{bottom:1080.750000px;}
.y2{bottom:1102.380000px;}
.y52{bottom:1103.280000px;}
.y2c{bottom:1114.995000px;}
.y71{bottom:1121.280000px;}
.y1{bottom:1132.080000px;}
.y2b{bottom:1137.525000px;}
.h9{height:39.387305px;}
.h7{height:45.931641px;}
.ha{height:60.871289px;}
.h8{height:64.451953px;}
.h5{height:70.628906px;}
.h3{height:70.664062px;}
.h6{height:72.562500px;}
.h4{height:81.223242px;}
.h2{height:95.396484px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:108.112487px;}
.x5{left:113.512487px;}
.x4{left:324.329987px;}
.x2{left:656.774973px;}
.x3{left:663.074987px;}
.x6{left:676.619973px;}
.x7{left:682.919987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.437333pt;}
.ls1{letter-spacing:1.408000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws0{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-9.623467pt;}
._1{margin-left:-8.726400pt;}
._4{margin-left:-6.485333pt;}
._3{margin-left:-5.188267pt;}
._8{margin-left:-3.462400pt;}
._2{margin-left:-2.332800pt;}
._6{margin-left:-1.262933pt;}
._0{width:1.555200pt;}
._5{width:2.974933pt;}
._15{width:3.920000pt;}
._d{width:5.704533pt;}
._e{width:7.018667pt;}
._17{width:8.190933pt;}
._10{width:9.543467pt;}
._f{width:10.460800pt;}
._16{width:12.052267pt;}
._9{width:13.099733pt;}
._c{width:14.416000pt;}
._a{width:17.084800pt;}
._b{width:19.171200pt;}
._14{width:20.381867pt;}
._11{width:22.656000pt;}
._13{width:25.981867pt;}
._12{width:29.396267pt;}
.fs5{font-size:35.200000pt;}
.fs3{font-size:41.600000pt;}
.fs6{font-size:54.400000pt;}
.fs4{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:73.600000pt;}
.fs0{font-size:86.400000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:98.466667pt;}
.y70{bottom:103.266667pt;}
.y6f{bottom:116.066667pt;}
.y29{bottom:118.466667pt;}
.y28{bottom:138.493333pt;}
.y51{bottom:149.693333pt;}
.y27{bottom:158.493333pt;}
.y50{bottom:168.893333pt;}
.y26{bottom:177.733333pt;}
.y6e{bottom:178.533333pt;}
.y4f{bottom:188.933333pt;}
.y25{bottom:197.733333pt;}
.y6d{bottom:198.533333pt;}
.y4e{bottom:208.933333pt;}
.y6c{bottom:218.560000pt;}
.y24{bottom:228.160000pt;}
.y6a{bottom:238.560000pt;}
.y4d{bottom:239.360000pt;}
.y6b{bottom:244.173333pt;}
.y23{bottom:248.173333pt;}
.y69{bottom:258.560000pt;}
.y4c{bottom:259.373333pt;}
.y22{bottom:268.200000pt;}
.y68{bottom:277.800000pt;}
.y4b{bottom:279.400000pt;}
.y21{bottom:288.200000pt;}
.y4a{bottom:299.400000pt;}
.y20{bottom:308.200000pt;}
.y49{bottom:318.640000pt;}
.y1f{bottom:327.440000pt;}
.y48{bottom:338.626667pt;}
.y67{bottom:339.440000pt;}
.y1e{bottom:347.426667pt;}
.y1d{bottom:367.466667pt;}
.y47{bottom:369.066667pt;}
.y66{bottom:369.866667pt;}
.y1c{bottom:387.466667pt;}
.y46{bottom:389.066667pt;}
.y65{bottom:400.266667pt;}
.y1b{bottom:407.506667pt;}
.y45{bottom:409.106667pt;}
.y1a{bottom:427.506667pt;}
.y44{bottom:429.093333pt;}
.y64{bottom:430.693333pt;}
.y19{bottom:457.933333pt;}
.y43{bottom:459.533333pt;}
.y63{bottom:461.133333pt;}
.y18{bottom:488.333333pt;}
.y42{bottom:489.933333pt;}
.y62{bottom:491.533333pt;}
.y17{bottom:508.360000pt;}
.y41{bottom:509.973333pt;}
.y61{bottom:522.760000pt;}
.y16{bottom:528.360000pt;}
.y40{bottom:529.960000pt;}
.y15{bottom:547.600000pt;}
.y3f{bottom:550.000000pt;}
.y60{bottom:553.200000pt;}
.y14{bottom:567.600000pt;}
.y3e{bottom:569.200000pt;}
.y5f{bottom:583.600000pt;}
.y13{bottom:587.600000pt;}
.y3d{bottom:589.226667pt;}
.y12{bottom:607.640000pt;}
.y3c{bottom:609.226667pt;}
.y5e{bottom:614.026667pt;}
.y11{bottom:627.626667pt;}
.y3b{bottom:639.666667pt;}
.y5d{bottom:644.466667pt;}
.y10{bottom:646.866667pt;}
.y3a{bottom:659.666667pt;}
.yf{bottom:666.866667pt;}
.y77{bottom:667.666667pt;}
.y5c{bottom:674.866667pt;}
.y39{bottom:679.666667pt;}
.ye{bottom:686.893333pt;}
.y38{bottom:699.706667pt;}
.y5b{bottom:705.293333pt;}
.yd{bottom:706.893333pt;}
.yc{bottom:726.893333pt;}
.y37{bottom:730.133333pt;}
.y5a{bottom:736.533333pt;}
.y76{bottom:742.133333pt;}
.yb{bottom:746.933333pt;}
.y36{bottom:760.533333pt;}
.y59{bottom:766.933333pt;}
.ya{bottom:777.373333pt;}
.y35{bottom:780.560000pt;}
.y9{bottom:796.560000pt;}
.y58{bottom:797.373333pt;}
.y34{bottom:800.560000pt;}
.y75{bottom:807.760000pt;}
.y8{bottom:816.560000pt;}
.y33{bottom:819.760000pt;}
.y57{bottom:827.800000pt;}
.y7{bottom:836.600000pt;}
.y74{bottom:838.200000pt;}
.y32{bottom:839.800000pt;}
.y6{bottom:856.600000pt;}
.y56{bottom:858.200000pt;}
.y31{bottom:859.800000pt;}
.y73{bottom:869.440000pt;}
.y5{bottom:887.840000pt;}
.y55{bottom:888.626667pt;}
.y30{bottom:890.226667pt;}
.y72{bottom:899.840000pt;}
.y2f{bottom:910.226667pt;}
.y54{bottom:919.866667pt;}
.y4{bottom:920.666667pt;}
.y2e{bottom:930.266667pt;}
.y53{bottom:950.266667pt;}
.y3{bottom:953.466667pt;}
.y2d{bottom:960.666667pt;}
.y2{bottom:979.893333pt;}
.y52{bottom:980.693333pt;}
.y2c{bottom:991.106667pt;}
.y71{bottom:996.693333pt;}
.y1{bottom:1006.293333pt;}
.y2b{bottom:1011.133333pt;}
.h9{height:35.010937pt;}
.h7{height:40.828125pt;}
.ha{height:54.107812pt;}
.h8{height:57.290625pt;}
.h5{height:62.781250pt;}
.h3{height:62.812500pt;}
.h6{height:64.500000pt;}
.h4{height:72.198437pt;}
.h2{height:84.796875pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:96.099988pt;}
.x5{left:100.899988pt;}
.x4{left:288.293322pt;}
.x2{left:583.799976pt;}
.x3{left:589.399988pt;}
.x6{left:601.439976pt;}
.x7{left:607.039988pt;}
}




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