
    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_537ca8e53b7192a375734ac1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_8d6aab824c05175a0fef3ee4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_be4c60da010010b4b1aada94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_837f99269e2224139a157561.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f93ef5848a59b0cd8cd9f252.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050000;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_e92c8399ca8e8505b20fd86c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.014000;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;}
.v2{vertical-align:99.325623px;}
.v1{vertical-align:113.044774px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:108.000566px;}
.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;}
}
.ws0{word-spacing:-46.800003px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:377.538401px;}
.ws2{word-spacing:382.536164px;}
._1{width:236.198492px;}
._2{width:337.088724px;}
._0{width:493.444369px;}
.fc6{color:transparent;}
.fc5{color:rgb(117,198,199);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,114);}
.fc1{color:rgb(0,0,71);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:72.000002px;}
.fs2{font-size:78.000005px;}
.fs4{font-size:96.000006px;}
.fs8{font-size:120.000001px;}
.fs6{font-size:144.000005px;}
.fsa{font-size:186.000000px;}
.fs7{font-size:216.000007px;}
.fs1{font-size:222.000001px;}
.fs5{font-size:240.000002px;}
.fs0{font-size:480.000003px;}
.fs9{font-size:990.000032px;}
.y0{bottom:0.000000px;}
.y60{bottom:193.742094px;}
.y13{bottom:226.678720px;}
.y7{bottom:226.903158px;}
.yb{bottom:228.478732px;}
.yf{bottom:228.479857px;}
.y5f{bottom:229.742096px;}
.y12{bottom:248.278721px;}
.y6{bottom:248.503159px;}
.ya{bottom:250.078727px;}
.ye{bottom:250.079852px;}
.y11{bottom:269.878722px;}
.y5{bottom:270.103159px;}
.y9{bottom:271.678724px;}
.yd{bottom:271.679849px;}
.y5e{bottom:275.465477px;}
.y10{bottom:291.838723px;}
.y4{bottom:292.063160px;}
.y8{bottom:293.278723px;}
.yc{bottom:293.279848px;}
.y56{bottom:352.472514px;}
.y54{bottom:353.145939px;}
.y55{bottom:381.272513px;}
.y53{bottom:381.945938px;}
.y14{bottom:382.972050px;}
.y5b{bottom:425.145939px;}
.y5a{bottom:470.869545px;}
.y58{bottom:540.707181px;}
.y16{bottom:541.217256px;}
.y57{bottom:596.339673px;}
.y15{bottom:596.365211px;}
.y5d{bottom:611.143095px;}
.y5c{bottom:653.665739px;}
.y23{bottom:783.460408px;}
.y22{bottom:861.220400px;}
.y21{bottom:938.980402px;}
.y20{bottom:1016.740382px;}
.y1f{bottom:1094.500373px;}
.y1e{bottom:1172.260378px;}
.y50{bottom:1594.686189px;}
.y4f{bottom:1650.846157px;}
.y4e{bottom:1707.006148px;}
.y4d{bottom:1763.166127px;}
.y4c{bottom:1819.326106px;}
.y4b{bottom:1875.486086px;}
.y4a{bottom:1931.646088px;}
.y49{bottom:1987.806089px;}
.y45{bottom:2018.291925px;}
.y48{bottom:2043.966091px;}
.y44{bottom:2074.451905px;}
.y47{bottom:2100.126093px;}
.y43{bottom:2130.611906px;}
.y42{bottom:2186.771908px;}
.y46{bottom:2218.000739px;}
.y41{bottom:2242.931910px;}
.y40{bottom:2299.091912px;}
.y3f{bottom:2425.934383px;}
.y18{bottom:2430.811821px;}
.y3e{bottom:2482.094363px;}
.y3d{bottom:2538.254342px;}
.y3c{bottom:2594.414321px;}
.y37{bottom:2646.204170px;}
.y3b{bottom:2650.574323px;}
.y36{bottom:2702.364150px;}
.y3a{bottom:2706.734325px;}
.y35{bottom:2758.524152px;}
.y39{bottom:2762.894327px;}
.y34{bottom:2814.684153px;}
.y38{bottom:2819.054328px;}
.y33{bottom:2870.844155px;}
.y32{bottom:2927.004157px;}
.y29{bottom:2946.765912px;}
.y28{bottom:2950.904719px;}
.y31{bottom:3038.022490px;}
.y2e{bottom:3072.213586px;}
.y2f{bottom:3109.993741px;}
.y2d{bottom:3111.093585px;}
.y2c{bottom:3183.562220px;}
.y2b{bottom:3191.130814px;}
.y1d{bottom:3203.060041px;}
.y1c{bottom:3259.220043px;}
.y52{bottom:3282.013110px;}
.y2a{bottom:3293.881792px;}
.y51{bottom:3314.413110px;}
.y1b{bottom:3315.380044px;}
.y1a{bottom:3371.540046px;}
.y25{bottom:3372.193952px;}
.y27{bottom:3380.463776px;}
.y24{bottom:3411.073949px;}
.y26{bottom:3412.863776px;}
.y19{bottom:3427.700048px;}
.y30{bottom:3525.020494px;}
.y17{bottom:3531.241856px;}
.y3{bottom:3726.702223px;}
.y2{bottom:3828.856060px;}
.y1{bottom:3944.056052px;}
.y59{bottom:4433.636178px;}
.h4{height:56.160002px;}
.h3{height:60.840004px;}
.h5{height:74.880005px;}
.hf{height:93.600001px;}
.ha{height:94.920001px;}
.h7{height:112.320004px;}
.h9{height:118.368004px;}
.he{height:145.080000px;}
.h8{height:168.480005px;}
.h2{height:173.160001px;}
.h6{height:187.200001px;}
.hc{height:194.245624px;}
.hb{height:207.964774px;}
.h1{height:374.400003px;}
.hd{height:772.200025px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x2{left:211.260809px;}
.x1{left:214.505917px;}
.x2c{left:274.262690px;}
.xd{left:282.298188px;}
.xf{left:296.938585px;}
.xe{left:331.042331px;}
.xc{left:665.269446px;}
.x1c{left:881.269903px;}
.xb{left:902.869949px;}
.x2b{left:974.244125px;}
.x3{left:993.748982px;}
.x25{left:1042.959015px;}
.x29{left:1316.430425px;}
.x6{left:1368.102194px;}
.x26{left:1512.996292px;}
.x27{left:1793.710284px;}
.x28{left:1800.908560px;}
.x7{left:1806.188345px;}
.x1d{left:1935.374996px;}
.x20{left:1946.418475px;}
.x21{left:1951.674334px;}
.x1e{left:1984.119138px;}
.x22{left:2000.418477px;}
.x4{left:2255.108810px;}
.x17{left:2262.060309px;}
.x14{left:2267.566954px;}
.x16{left:2285.314991px;}
.x11{left:2297.483019px;}
.x19{left:2299.410279px;}
.x8{left:2317.698637px;}
.x10{left:2329.973085px;}
.x1f{left:2472.778024px;}
.x1b{left:2513.327818px;}
.x23{left:2529.630616px;}
.x12{left:2534.832351px;}
.x15{left:2574.815494px;}
.x1a{left:2581.542319px;}
.x9{left:2604.338971px;}
.x13{left:2623.657359px;}
.x24{left:2647.244290px;}
.xa{left:2662.488580px;}
.x2a{left:2665.118448px;}
.x18{left:2699.680294px;}
.x5{left:3010.832421px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:88.289443pt;}
.v1{vertical-align:100.484243pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:96.000503pt;}
.ws0{word-spacing:-41.600003pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:335.589690pt;}
.ws2{word-spacing:340.032146pt;}
._1{width:209.954215pt;}
._2{width:299.634422pt;}
._0{width:438.617217pt;}
.fs3{font-size:64.000002pt;}
.fs2{font-size:69.333338pt;}
.fs4{font-size:85.333339pt;}
.fs8{font-size:106.666667pt;}
.fs6{font-size:128.000004pt;}
.fsa{font-size:165.333333pt;}
.fs7{font-size:192.000006pt;}
.fs1{font-size:197.333334pt;}
.fs5{font-size:213.333335pt;}
.fs0{font-size:426.666670pt;}
.fs9{font-size:880.000028pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:172.215195pt;}
.y13{bottom:201.492196pt;}
.y7{bottom:201.691696pt;}
.yb{bottom:203.092206pt;}
.yf{bottom:203.093206pt;}
.y5f{bottom:204.215196pt;}
.y12{bottom:220.692197pt;}
.y6{bottom:220.891697pt;}
.ya{bottom:222.292202pt;}
.ye{bottom:222.293202pt;}
.y11{bottom:239.892197pt;}
.y5{bottom:240.091697pt;}
.y9{bottom:241.492199pt;}
.yd{bottom:241.493199pt;}
.y5e{bottom:244.858201pt;}
.y10{bottom:259.412198pt;}
.y4{bottom:259.611698pt;}
.y8{bottom:260.692198pt;}
.yc{bottom:260.693198pt;}
.y56{bottom:313.308902pt;}
.y54{bottom:313.907502pt;}
.y55{bottom:338.908900pt;}
.y53{bottom:339.507500pt;}
.y14{bottom:340.419600pt;}
.y5b{bottom:377.907502pt;}
.y5a{bottom:418.550707pt;}
.y58{bottom:480.628605pt;}
.y16{bottom:481.082005pt;}
.y57{bottom:530.079710pt;}
.y15{bottom:530.102410pt;}
.y5d{bottom:543.238307pt;}
.y5c{bottom:581.036212pt;}
.y23{bottom:696.409252pt;}
.y22{bottom:765.529244pt;}
.y21{bottom:834.649246pt;}
.y20{bottom:903.769228pt;}
.y1f{bottom:972.889221pt;}
.y1e{bottom:1042.009225pt;}
.y50{bottom:1417.498835pt;}
.y4f{bottom:1467.418807pt;}
.y4e{bottom:1517.338798pt;}
.y4d{bottom:1567.258780pt;}
.y4c{bottom:1617.178761pt;}
.y4b{bottom:1667.098743pt;}
.y4a{bottom:1717.018744pt;}
.y49{bottom:1766.938746pt;}
.y45{bottom:1794.037267pt;}
.y48{bottom:1816.858748pt;}
.y44{bottom:1843.957249pt;}
.y47{bottom:1866.778749pt;}
.y43{bottom:1893.877250pt;}
.y42{bottom:1943.797252pt;}
.y46{bottom:1971.556213pt;}
.y41{bottom:1993.717253pt;}
.y40{bottom:2043.637255pt;}
.y3f{bottom:2156.386119pt;}
.y18{bottom:2160.721619pt;}
.y3e{bottom:2206.306100pt;}
.y3d{bottom:2256.226082pt;}
.y3c{bottom:2306.146063pt;}
.y37{bottom:2352.181485pt;}
.y3b{bottom:2356.066065pt;}
.y36{bottom:2402.101466pt;}
.y3a{bottom:2405.986067pt;}
.y35{bottom:2452.021468pt;}
.y39{bottom:2455.906068pt;}
.y34{bottom:2501.941470pt;}
.y38{bottom:2505.826070pt;}
.y33{bottom:2551.861471pt;}
.y32{bottom:2601.781473pt;}
.y29{bottom:2619.347477pt;}
.y28{bottom:2623.026416pt;}
.y31{bottom:2700.464436pt;}
.y2e{bottom:2730.856521pt;}
.y2f{bottom:2764.438881pt;}
.y2d{bottom:2765.416520pt;}
.y2c{bottom:2829.833084pt;}
.y2b{bottom:2836.560723pt;}
.y1d{bottom:2847.164481pt;}
.y1c{bottom:2897.084482pt;}
.y52{bottom:2917.344987pt;}
.y2a{bottom:2927.894926pt;}
.y51{bottom:2946.144987pt;}
.y1b{bottom:2947.004484pt;}
.y1a{bottom:2996.924485pt;}
.y25{bottom:2997.505735pt;}
.y27{bottom:3004.856690pt;}
.y24{bottom:3032.065733pt;}
.y26{bottom:3033.656690pt;}
.y19{bottom:3046.844487pt;}
.y30{bottom:3133.351550pt;}
.y17{bottom:3138.881650pt;}
.y3{bottom:3312.624199pt;}
.y2{bottom:3403.427608pt;}
.y1{bottom:3505.827602pt;}
.y59{bottom:3941.009936pt;}
.h4{height:49.920002pt;}
.h3{height:54.080004pt;}
.h5{height:66.560004pt;}
.hf{height:83.200001pt;}
.ha{height:84.373334pt;}
.h7{height:99.840003pt;}
.h9{height:105.216003pt;}
.he{height:128.960000pt;}
.h8{height:149.760005pt;}
.h2{height:153.920001pt;}
.h6{height:166.400001pt;}
.hc{height:172.662777pt;}
.hb{height:184.857577pt;}
.h1{height:332.800002pt;}
.hd{height:686.400022pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x2{left:187.787386pt;}
.x1{left:190.671926pt;}
.x2c{left:243.789058pt;}
.xd{left:250.931723pt;}
.xf{left:263.945408pt;}
.xe{left:294.259849pt;}
.xc{left:591.350619pt;}
.x1c{left:783.351025pt;}
.xb{left:802.551066pt;}
.x2b{left:865.994778pt;}
.x3{left:883.332428pt;}
.x25{left:927.074680pt;}
.x29{left:1170.160377pt;}
.x6{left:1216.090839pt;}
.x26{left:1344.885593pt;}
.x27{left:1594.409141pt;}
.x28{left:1600.807609pt;}
.x7{left:1605.500751pt;}
.x1d{left:1720.333330pt;}
.x20{left:1730.149755pt;}
.x21{left:1734.821631pt;}
.x1e{left:1763.661456pt;}
.x22{left:1778.149757pt;}
.x4{left:2004.541164pt;}
.x17{left:2010.720274pt;}
.x14{left:2015.615070pt;}
.x16{left:2031.391103pt;}
.x11{left:2042.207128pt;}
.x19{left:2043.920248pt;}
.x8{left:2060.176566pt;}
.x10{left:2071.087186pt;}
.x1f{left:2198.024910pt;}
.x1b{left:2234.069171pt;}
.x23{left:2248.560548pt;}
.x12{left:2253.184312pt;}
.x15{left:2288.724883pt;}
.x1a{left:2294.704283pt;}
.x9{left:2314.967974pt;}
.x13{left:2332.139875pt;}
.x24{left:2353.106035pt;}
.xa{left:2366.656516pt;}
.x2a{left:2368.994176pt;}
.x18{left:2399.715817pt;}
.x5{left:2676.295486pt;}
}




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