
    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_4537d4fdccccfb86b6c937dd.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_be5d7ed6ee9ffef68e4ff76f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_774f6e411650562ea2bd3036.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f4dcdb98bb160a5fd1d824b3.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_f5dd379704285ce21a3908d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_74518ff3632e1ce32d8b8d6a.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-27.360009px;}
.v3{vertical-align:-20.879793px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.023265px;}
.ls8{letter-spacing:0.023333px;}
.lsa{letter-spacing:0.058322px;}
.ls7{letter-spacing:0.107371px;}
.lsb{letter-spacing:0.159467px;}
.ls4{letter-spacing:0.217085px;}
.ls5{letter-spacing:0.300401px;}
.ls3{letter-spacing:0.327614px;}
.ls9{letter-spacing:0.358019px;}
.ls1{letter-spacing:0.383718px;}
.ls0{letter-spacing:0.631930px;}
.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;}
}
.ws4{word-spacing:-51.121800px;}
.ws5{word-spacing:-38.881485px;}
.ws2{word-spacing:-19.440789px;}
.ws3{word-spacing:-15.840563px;}
.ws1{word-spacing:-14.940563px;}
.ws0{word-spacing:-13.500563px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.389518px;}
._f{margin-left:-3.221450px;}
._8{margin-left:-2.091986px;}
._1{margin-left:-1.027174px;}
._2{width:1.179484px;}
._5{width:2.328996px;}
._a{width:4.140584px;}
._17{width:5.225046px;}
._4{width:7.095888px;}
._9{width:8.618977px;}
._d{width:9.623798px;}
._e{width:10.809762px;}
._11{width:12.351001px;}
._10{width:13.687530px;}
._b{width:14.814185px;}
._c{width:15.974380px;}
._13{width:17.185961px;}
._18{width:19.123177px;}
._16{width:20.550840px;}
._15{width:21.741814px;}
._22{width:22.746938px;}
._1c{width:24.146978px;}
._1d{width:25.361547px;}
._14{width:26.612541px;}
._7{width:28.040933px;}
._6{width:29.589488px;}
._24{width:33.738603px;}
._1e{width:35.381932px;}
._1f{width:36.705120px;}
._19{width:38.920763px;}
._21{width:40.288933px;}
._20{width:41.467202px;}
._23{width:51.518090px;}
._1b{width:88.615620px;}
._1a{width:89.622947px;}
._25{width:295.129671px;}
._3{width:328.595038px;}
._0{width:439.851528px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.881485px;}
.fs6{font-size:51.121800px;}
.fs1{font-size:54.002250px;}
.fs2{font-size:59.762250px;}
.fs5{font-size:63.362250px;}
.fs0{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:77.763154px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.420043px;}
.y33{bottom:109.980011px;}
.y60{bottom:130.500068px;}
.y32{bottom:132.300041px;}
.y31{bottom:146.160049px;}
.y5f{bottom:152.460091px;}
.y30{bottom:171.720085px;}
.y5e{bottom:174.420043px;}
.y2f{bottom:193.680039px;}
.y5d{bottom:196.380066px;}
.y2e{bottom:215.460091px;}
.y5c{bottom:218.340088px;}
.y2d{bottom:237.420043px;}
.y5b{bottom:240.300041px;}
.y2c{bottom:259.380066px;}
.y5a{bottom:262.260064px;}
.y2b{bottom:281.340088px;}
.y59{bottom:284.220085px;}
.y2a{bottom:303.300041px;}
.y58{bottom:306.000068px;}
.y29{bottom:325.260064px;}
.y57{bottom:327.960091px;}
.y28{bottom:347.220085px;}
.y56{bottom:349.920043px;}
.y27{bottom:369.180039px;}
.y55{bottom:371.880066px;}
.y26{bottom:390.960091px;}
.y54{bottom:393.840088px;}
.y25{bottom:412.920043px;}
.y53{bottom:415.800041px;}
.y24{bottom:434.880066px;}
.y52{bottom:437.760064px;}
.y23{bottom:456.840088px;}
.y51{bottom:459.720085px;}
.y22{bottom:478.800041px;}
.y50{bottom:481.500068px;}
.y21{bottom:500.760064px;}
.y4f{bottom:503.460091px;}
.y20{bottom:522.720085px;}
.y4e{bottom:525.420043px;}
.y1f{bottom:544.680039px;}
.y4d{bottom:547.380066px;}
.y1e{bottom:566.460091px;}
.y4c{bottom:569.340088px;}
.y1d{bottom:588.420043px;}
.y4b{bottom:591.300041px;}
.y1c{bottom:610.380066px;}
.y4a{bottom:613.260064px;}
.y1b{bottom:632.340088px;}
.y49{bottom:635.220085px;}
.y1a{bottom:654.300041px;}
.y48{bottom:657.000068px;}
.y19{bottom:676.260064px;}
.y47{bottom:678.960091px;}
.y18{bottom:698.220051px;}
.y46{bottom:700.920078px;}
.y17{bottom:720.180073px;}
.y45{bottom:722.880066px;}
.y16{bottom:741.960056px;}
.y44{bottom:744.840054px;}
.y15{bottom:763.920078px;}
.y43{bottom:766.800076px;}
.y14{bottom:785.880066px;}
.y42{bottom:788.760064px;}
.y13{bottom:807.840054px;}
.y41{bottom:810.720051px;}
.y12{bottom:829.800076px;}
.y40{bottom:832.500068px;}
.y11{bottom:851.760064px;}
.y3f{bottom:854.460056px;}
.y10{bottom:873.720051px;}
.y3e{bottom:876.420078px;}
.yf{bottom:895.680073px;}
.y3d{bottom:898.380066px;}
.ye{bottom:917.460056px;}
.y3c{bottom:920.340054px;}
.yd{bottom:939.420078px;}
.y3b{bottom:942.300076px;}
.yc{bottom:961.380066px;}
.y3a{bottom:964.260064px;}
.yb{bottom:983.340070px;}
.y39{bottom:986.220068px;}
.ya{bottom:1005.300058px;}
.y38{bottom:1008.000068px;}
.y9{bottom:1027.260064px;}
.y37{bottom:1029.960074px;}
.y8{bottom:1049.220068px;}
.y36{bottom:1051.920061px;}
.y7{bottom:1071.180073px;}
.y35{bottom:1073.880066px;}
.y6{bottom:1093.140060px;}
.y34{bottom:1095.840070px;}
.y5{bottom:1117.800058px;}
.y4{bottom:1139.760064px;}
.y2{bottom:1175.940067px;}
.y1{bottom:1194.840066px;}
.h6{height:25.914662px;}
.h7{height:43.216744px;}
.h2{height:47.903046px;}
.h3{height:52.068362px;}
.h5{height:65.081078px;}
.h4{height:65.157018px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x6{left:148.860008px;}
.x5{left:209.520006px;}
.x3{left:315.180005px;}
.x4{left:323.459988px;}
.x2{left:446.399987px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v3{vertical-align:-18.559816pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.020680pt;}
.ls8{letter-spacing:0.020740pt;}
.lsa{letter-spacing:0.051842pt;}
.ls7{letter-spacing:0.095441pt;}
.lsb{letter-spacing:0.141748pt;}
.ls4{letter-spacing:0.192964pt;}
.ls5{letter-spacing:0.267023pt;}
.ls3{letter-spacing:0.291213pt;}
.ls9{letter-spacing:0.318239pt;}
.ls1{letter-spacing:0.341083pt;}
.ls0{letter-spacing:0.561716pt;}
.ws4{word-spacing:-45.441600pt;}
.ws5{word-spacing:-34.561320pt;}
.ws2{word-spacing:-17.280701pt;}
.ws3{word-spacing:-14.080500pt;}
.ws1{word-spacing:-13.280500pt;}
.ws0{word-spacing:-12.000500pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-3.901793pt;}
._f{margin-left:-2.863511pt;}
._8{margin-left:-1.859543pt;}
._1{margin-left:-0.913044pt;}
._2{width:1.048430pt;}
._5{width:2.070219pt;}
._a{width:3.680519pt;}
._17{width:4.644485pt;}
._4{width:6.307456pt;}
._9{width:7.661313pt;}
._d{width:8.554487pt;}
._e{width:9.608677pt;}
._11{width:10.978668pt;}
._10{width:12.166693pt;}
._b{width:13.168164pt;}
._c{width:14.199449pt;}
._13{width:15.276410pt;}
._18{width:16.998380pt;}
._16{width:18.267413pt;}
._15{width:19.326056pt;}
._22{width:20.219500pt;}
._1c{width:21.463981pt;}
._1d{width:22.543597pt;}
._14{width:23.655592pt;}
._7{width:24.925274pt;}
._6{width:26.301767pt;}
._24{width:29.989869pt;}
._1e{width:31.450606pt;}
._1f{width:32.626773pt;}
._19{width:34.596233pt;}
._21{width:35.812385pt;}
._20{width:36.859735pt;}
._23{width:45.793858pt;}
._1b{width:78.769440pt;}
._1a{width:79.664842pt;}
._25{width:262.337485pt;}
._3{width:292.084478pt;}
._0{width:390.979136pt;}
.fs7{font-size:34.561320pt;}
.fs6{font-size:45.441600pt;}
.fs1{font-size:48.002000pt;}
.fs2{font-size:53.122000pt;}
.fs5{font-size:56.322000pt;}
.fs0{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:69.122804pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.040039pt;}
.y33{bottom:97.760010pt;}
.y60{bottom:116.000061pt;}
.y32{bottom:117.600037pt;}
.y31{bottom:129.920044pt;}
.y5f{bottom:135.520081pt;}
.y30{bottom:152.640076pt;}
.y5e{bottom:155.040039pt;}
.y2f{bottom:172.160035pt;}
.y5d{bottom:174.560059pt;}
.y2e{bottom:191.520081pt;}
.y5c{bottom:194.080079pt;}
.y2d{bottom:211.040039pt;}
.y5b{bottom:213.600037pt;}
.y2c{bottom:230.560059pt;}
.y5a{bottom:233.120057pt;}
.y2b{bottom:250.080079pt;}
.y59{bottom:252.640076pt;}
.y2a{bottom:269.600037pt;}
.y58{bottom:272.000061pt;}
.y29{bottom:289.120057pt;}
.y57{bottom:291.520081pt;}
.y28{bottom:308.640076pt;}
.y56{bottom:311.040039pt;}
.y27{bottom:328.160035pt;}
.y55{bottom:330.560059pt;}
.y26{bottom:347.520081pt;}
.y54{bottom:350.080079pt;}
.y25{bottom:367.040039pt;}
.y53{bottom:369.600037pt;}
.y24{bottom:386.560059pt;}
.y52{bottom:389.120057pt;}
.y23{bottom:406.080079pt;}
.y51{bottom:408.640076pt;}
.y22{bottom:425.600037pt;}
.y50{bottom:428.000061pt;}
.y21{bottom:445.120057pt;}
.y4f{bottom:447.520081pt;}
.y20{bottom:464.640076pt;}
.y4e{bottom:467.040039pt;}
.y1f{bottom:484.160035pt;}
.y4d{bottom:486.560059pt;}
.y1e{bottom:503.520081pt;}
.y4c{bottom:506.080079pt;}
.y1d{bottom:523.040039pt;}
.y4b{bottom:525.600037pt;}
.y1c{bottom:542.560059pt;}
.y4a{bottom:545.120057pt;}
.y1b{bottom:562.080079pt;}
.y49{bottom:564.640076pt;}
.y1a{bottom:581.600037pt;}
.y48{bottom:584.000061pt;}
.y19{bottom:601.120057pt;}
.y47{bottom:603.520081pt;}
.y18{bottom:620.640046pt;}
.y46{bottom:623.040070pt;}
.y17{bottom:640.160065pt;}
.y45{bottom:642.560059pt;}
.y16{bottom:659.520050pt;}
.y44{bottom:662.080048pt;}
.y15{bottom:679.040070pt;}
.y43{bottom:681.600068pt;}
.y14{bottom:698.560059pt;}
.y42{bottom:701.120057pt;}
.y13{bottom:718.080048pt;}
.y41{bottom:720.640046pt;}
.y12{bottom:737.600068pt;}
.y40{bottom:740.000061pt;}
.y11{bottom:757.120057pt;}
.y3f{bottom:759.520050pt;}
.y10{bottom:776.640046pt;}
.y3e{bottom:779.040070pt;}
.yf{bottom:796.160065pt;}
.y3d{bottom:798.560059pt;}
.ye{bottom:815.520050pt;}
.y3c{bottom:818.080048pt;}
.yd{bottom:835.040070pt;}
.y3b{bottom:837.600068pt;}
.yc{bottom:854.560059pt;}
.y3a{bottom:857.120057pt;}
.yb{bottom:874.080063pt;}
.y39{bottom:876.640061pt;}
.ya{bottom:893.600052pt;}
.y38{bottom:896.000061pt;}
.y9{bottom:913.120057pt;}
.y37{bottom:915.520066pt;}
.y8{bottom:932.640061pt;}
.y36{bottom:935.040055pt;}
.y7{bottom:952.160065pt;}
.y35{bottom:954.560059pt;}
.y6{bottom:971.680054pt;}
.y34{bottom:974.080063pt;}
.y5{bottom:993.600052pt;}
.y4{bottom:1013.120057pt;}
.y2{bottom:1045.280060pt;}
.y1{bottom:1062.080059pt;}
.h6{height:23.035255pt;}
.h7{height:38.414884pt;}
.h2{height:42.580486pt;}
.h3{height:46.282988pt;}
.h5{height:57.849847pt;}
.h4{height:57.917349pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x6{left:132.320007pt;}
.x5{left:186.240005pt;}
.x3{left:280.160004pt;}
.x4{left:287.519989pt;}
.x2{left:396.799988pt;}
}




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