
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_025e8f97497288b5fe227bab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.036000;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_9faffa4d8a9d0ad601878ad9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_411a0a54064774642012ecab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.036000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_968f782b9d2c9311b538a055.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_415790763b537efc8c377d42.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.036000;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_2687f30ba1decfbbdd3b5c89.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734375;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:ffa;src:url('chunks/assets/font_2687f30ba1decfbbdd3b5c89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734375;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:ffb;src:url('chunks/assets/font_ab8830709d2aeee518f9ca86.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.036000;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:ffc;src:url('chunks/assets/font_a5b91240ade62324810ba693.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.457020px;}
.ls2{letter-spacing:0.457029px;}
.ls1{letter-spacing:0.457033px;}
.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:-17.358000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-20.587948px;}
._4{margin-left:-5.682902px;}
._e{margin-left:-4.421576px;}
._0{margin-left:-2.808189px;}
._1{margin-left:-1.296357px;}
._5{width:1.972147px;}
._b{width:3.526786px;}
._c{width:4.610074px;}
._14{width:8.014420px;}
._a{width:9.042696px;}
._d{width:13.281862px;}
._16{width:14.349051px;}
._f{width:18.398622px;}
._10{width:21.717272px;}
._9{width:22.730262px;}
._7{width:26.478603px;}
._8{width:27.480298px;}
._12{width:30.880750px;}
._15{width:32.017614px;}
._13{width:35.904697px;}
._3{width:39.959302px;}
._2{width:44.999578px;}
._11{width:48.503820px;}
._6{width:49.798827px;}
.fc7{color:rgb(102,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(39,78,19);}
.fc1{color:rgb(33,72,19);}
.fc6{color:rgb(18,18,18);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs3{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523194px;}
.y20{bottom:59.967584px;}
.y37{bottom:59.967779px;}
.y55{bottom:125.001221px;}
.y76{bottom:130.279537px;}
.y6c{bottom:130.401000px;}
.y54{bottom:156.681029px;}
.y75{bottom:158.739253px;}
.y36{bottom:165.450315px;}
.y1f{bottom:171.537474px;}
.y6b{bottom:180.081180px;}
.y74{bottom:189.224819px;}
.y35{bottom:197.130117px;}
.y1e{bottom:203.217470px;}
.y53{bottom:206.361207px;}
.y34{bottom:228.809937px;}
.y6a{bottom:229.760625px;}
.y1d{bottom:234.897465px;}
.y52{bottom:238.041376px;}
.y33{bottom:260.490113px;}
.y1c{bottom:266.577457px;}
.y51{bottom:269.720836px;}
.y69{bottom:279.440790px;}
.y32{bottom:292.169919px;}
.y1b{bottom:298.257450px;}
.y50{bottom:301.400994px;}
.y31{bottom:323.849735px;}
.y68{bottom:329.120970px;}
.y1a{bottom:329.937525px;}
.y4f{bottom:333.081162px;}
.y30{bottom:355.529910px;}
.y19{bottom:361.617435px;}
.y4e{bottom:364.760622px;}
.y67{bottom:378.800775px;}
.y2f{bottom:387.210087px;}
.y18{bottom:393.297420px;}
.y4d{bottom:396.440798px;}
.y2e{bottom:418.889895px;}
.y17{bottom:424.977500px;}
.y4c{bottom:428.120964px;}
.y66{bottom:428.480955px;}
.y16{bottom:456.657401px;}
.y4b{bottom:459.800780px;}
.y2d{bottom:468.570060px;}
.y65{bottom:478.161135px;}
.y15{bottom:488.337487px;}
.y4a{bottom:491.480955px;}
.y2c{bottom:518.249969px;}
.y14{bottom:520.017480px;}
.y49{bottom:523.161132px;}
.y64{bottom:527.840940px;}
.y13{bottom:551.697480px;}
.y48{bottom:554.840940px;}
.y63{bottom:577.521128px;}
.y47{bottom:586.521119px;}
.y12{bottom:586.898169px;}
.y62{bottom:609.201294px;}
.y11{bottom:622.098915px;}
.y46{bottom:631.701299px;}
.y61{bottom:640.880741px;}
.y10{bottom:657.299625px;}
.y60{bottom:672.560916px;}
.y45{bottom:676.881096px;}
.yf{bottom:692.500316px;}
.y5f{bottom:704.241093px;}
.y44{bottom:708.560910px;}
.ye{bottom:727.701015px;}
.y5e{bottom:735.921270px;}
.y43{bottom:740.241087px;}
.yd{bottom:756.321000px;}
.y2b{bottom:758.601075px;}
.y42{bottom:771.920895px;}
.y83{bottom:783.380009px;}
.y5d{bottom:785.600700px;}
.yc{bottom:795.440985px;}
.y41{bottom:821.600706px;}
.y2a{bottom:821.781070px;}
.y82{bottom:826.535161px;}
.yb{bottom:834.561000px;}
.y5c{bottom:835.280889px;}
.y40{bottom:853.280883px;}
.y29{bottom:853.461058px;}
.y81{bottom:854.994860px;}
.ya{bottom:855.680985px;}
.y5b{bottom:866.961065px;}
.y80{bottom:883.454603px;}
.y3f{bottom:884.961060px;}
.y28{bottom:885.141045px;}
.y9{bottom:894.801015px;}
.y5a{bottom:898.640871px;}
.y7f{bottom:911.915045px;}
.y3e{bottom:916.640865px;}
.y27{bottom:916.821040px;}
.y59{bottom:930.321048px;}
.y73{bottom:932.181030px;}
.y8{bottom:933.920985px;}
.y7e{bottom:940.375486px;}
.y3d{bottom:948.321045px;}
.y26{bottom:948.500856px;}
.y7{bottom:955.041015px;}
.y58{bottom:962.001225px;}
.y7d{bottom:968.835212px;}
.y72{bottom:971.361210px;}
.y3c{bottom:980.000850px;}
.y25{bottom:980.181031px;}
.y6{bottom:994.161000px;}
.y7c{bottom:997.294917px;}
.y71{bottom:1003.041376px;}
.y3b{bottom:1011.681024px;}
.y24{bottom:1011.861024px;}
.y7b{bottom:1025.755370px;}
.y5{bottom:1033.280997px;}
.y70{bottom:1034.720822px;}
.y3a{bottom:1043.361201px;}
.y23{bottom:1043.541017px;}
.y7a{bottom:1054.215821px;}
.y6f{bottom:1066.400998px;}
.y39{bottom:1075.041015px;}
.y57{bottom:1075.041384px;}
.y4{bottom:1075.277998px;}
.y79{bottom:1082.675535px;}
.y6e{bottom:1098.081176px;}
.y56{bottom:1106.720823px;}
.y22{bottom:1106.721007px;}
.y38{bottom:1106.721192px;}
.y3{bottom:1109.837999px;}
.y78{bottom:1111.135253px;}
.y6d{bottom:1133.874000px;}
.y21{bottom:1138.401000px;}
.y77{bottom:1139.595703px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.h9{height:45.858399px;}
.h5{height:50.160001px;}
.h4{height:50.490001px;}
.h6{height:62.700001px;}
.h8{height:64.259998px;}
.h3{height:82.620000px;}
.h7{height:107.625000px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.xe{left:128.583984px;}
.xf{left:135.000000px;}
.x10{left:162.000000px;}
.x2{left:349.717264px;}
.x3{left:370.301243px;}
.x6{left:401.111798px;}
.x7{left:421.695788px;}
.xc{left:550.299409px;}
.x4{left:559.867674px;}
.xd{left:570.883388px;}
.x5{left:580.451658px;}
.xa{left:631.964631px;}
.x8{left:641.303693px;}
.xb{left:652.548616px;}
.x9{left:661.887677px;}
.x11{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.406240pt;}
.ls2{letter-spacing:0.406248pt;}
.ls1{letter-spacing:0.406252pt;}
.ws0{word-spacing:-15.429334pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-18.300398pt;}
._4{margin-left:-5.051468pt;}
._e{margin-left:-3.930290pt;}
._0{margin-left:-2.496168pt;}
._1{margin-left:-1.152317pt;}
._5{width:1.753020pt;}
._b{width:3.134920pt;}
._c{width:4.097843pt;}
._14{width:7.123929pt;}
._a{width:8.037952pt;}
._d{width:11.806100pt;}
._16{width:12.754712pt;}
._f{width:16.354331pt;}
._10{width:19.304242pt;}
._9{width:20.204677pt;}
._7{width:23.536536pt;}
._8{width:24.426931pt;}
._12{width:27.449556pt;}
._15{width:28.460102pt;}
._13{width:31.915287pt;}
._3{width:35.519380pt;}
._2{width:39.999625pt;}
._11{width:43.114507pt;}
._6{width:44.265624pt;}
.fs0{font-size:58.666668pt;}
.fs3{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242839pt;}
.y20{bottom:53.304519pt;}
.y37{bottom:53.304692pt;}
.y55{bottom:111.112196pt;}
.y76{bottom:115.804033pt;}
.y6c{bottom:115.912000pt;}
.y54{bottom:139.272026pt;}
.y75{bottom:141.101559pt;}
.y36{bottom:147.066947pt;}
.y1f{bottom:152.477755pt;}
.y6b{bottom:160.072160pt;}
.y74{bottom:168.199839pt;}
.y35{bottom:175.226771pt;}
.y1e{bottom:180.637751pt;}
.y53{bottom:183.432184pt;}
.y34{bottom:203.386611pt;}
.y6a{bottom:204.231667pt;}
.y1d{bottom:208.797747pt;}
.y52{bottom:211.592334pt;}
.y33{bottom:231.546767pt;}
.y1c{bottom:236.957740pt;}
.y51{bottom:239.751854pt;}
.y69{bottom:248.391814pt;}
.y32{bottom:259.706595pt;}
.y1b{bottom:265.117734pt;}
.y50{bottom:267.911994pt;}
.y31{bottom:287.866431pt;}
.y68{bottom:292.551974pt;}
.y1a{bottom:293.277800pt;}
.y4f{bottom:296.072144pt;}
.y30{bottom:316.026587pt;}
.y19{bottom:321.437720pt;}
.y4e{bottom:324.231664pt;}
.y67{bottom:336.711800pt;}
.y2f{bottom:344.186744pt;}
.y18{bottom:349.597707pt;}
.y4d{bottom:352.391820pt;}
.y2e{bottom:372.346574pt;}
.y17{bottom:377.757778pt;}
.y4c{bottom:380.551968pt;}
.y66{bottom:380.871960pt;}
.y16{bottom:405.917690pt;}
.y4b{bottom:408.711804pt;}
.y2d{bottom:416.506720pt;}
.y65{bottom:425.032120pt;}
.y15{bottom:434.077767pt;}
.y4a{bottom:436.871960pt;}
.y2c{bottom:460.666639pt;}
.y14{bottom:462.237760pt;}
.y49{bottom:465.032117pt;}
.y64{bottom:469.191947pt;}
.y13{bottom:490.397760pt;}
.y48{bottom:493.191947pt;}
.y63{bottom:513.352114pt;}
.y47{bottom:521.352106pt;}
.y12{bottom:521.687261pt;}
.y62{bottom:541.512262pt;}
.y11{bottom:552.976814pt;}
.y46{bottom:561.512266pt;}
.y61{bottom:569.671770pt;}
.y10{bottom:584.266334pt;}
.y60{bottom:597.831926pt;}
.y45{bottom:601.672085pt;}
.yf{bottom:615.555836pt;}
.y5f{bottom:625.992083pt;}
.y44{bottom:629.831920pt;}
.ye{bottom:646.845347pt;}
.y5e{bottom:654.152240pt;}
.y43{bottom:657.992077pt;}
.yd{bottom:672.285334pt;}
.y2b{bottom:674.312067pt;}
.y42{bottom:686.151907pt;}
.y83{bottom:696.337786pt;}
.y5d{bottom:698.311734pt;}
.yc{bottom:707.058654pt;}
.y41{bottom:730.311739pt;}
.y2a{bottom:730.472062pt;}
.y82{bottom:734.697921pt;}
.yb{bottom:741.832000pt;}
.y5c{bottom:742.471902pt;}
.y40{bottom:758.471896pt;}
.y29{bottom:758.632052pt;}
.y81{bottom:759.995431pt;}
.ya{bottom:760.605320pt;}
.y5b{bottom:770.632058pt;}
.y80{bottom:785.292981pt;}
.y3f{bottom:786.632054pt;}
.y28{bottom:786.792040pt;}
.y9{bottom:795.378680pt;}
.y5a{bottom:798.791886pt;}
.y7f{bottom:810.591151pt;}
.y3e{bottom:814.791880pt;}
.y27{bottom:814.952036pt;}
.y59{bottom:826.952043pt;}
.y73{bottom:828.605360pt;}
.y8{bottom:830.151987pt;}
.y7e{bottom:835.889321pt;}
.y3d{bottom:842.952040pt;}
.y26{bottom:843.111872pt;}
.y7{bottom:848.925347pt;}
.y58{bottom:855.112200pt;}
.y7d{bottom:861.186855pt;}
.y72{bottom:863.432187pt;}
.y3c{bottom:871.111867pt;}
.y25{bottom:871.272028pt;}
.y6{bottom:883.698667pt;}
.y7c{bottom:886.484371pt;}
.y71{bottom:891.592335pt;}
.y3b{bottom:899.272022pt;}
.y24{bottom:899.432021pt;}
.y7b{bottom:911.782551pt;}
.y5{bottom:918.471998pt;}
.y70{bottom:919.751842pt;}
.y3a{bottom:927.432179pt;}
.y23{bottom:927.592015pt;}
.y7a{bottom:937.080730pt;}
.y6f{bottom:947.911999pt;}
.y39{bottom:955.592014pt;}
.y57{bottom:955.592342pt;}
.y4{bottom:955.802665pt;}
.y79{bottom:962.378254pt;}
.y6e{bottom:976.072156pt;}
.y56{bottom:983.751843pt;}
.y22{bottom:983.752007pt;}
.y38{bottom:983.752171pt;}
.y3{bottom:986.522666pt;}
.y78{bottom:987.675781pt;}
.y6d{bottom:1007.888000pt;}
.y21{bottom:1011.912000pt;}
.y77{bottom:1012.973959pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.h9{height:40.763022pt;}
.h5{height:44.586668pt;}
.h4{height:44.880001pt;}
.h6{height:55.733335pt;}
.h8{height:57.119998pt;}
.h3{height:73.440000pt;}
.h7{height:95.666667pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.xe{left:114.296875pt;}
.xf{left:120.000000pt;}
.x10{left:144.000000pt;}
.x2{left:310.859790pt;}
.x3{left:329.156660pt;}
.x6{left:356.543820pt;}
.x7{left:374.840700pt;}
.xc{left:489.155030pt;}
.x4{left:497.660154pt;}
.xd{left:507.451900pt;}
.x5{left:515.957029pt;}
.xa{left:561.746338pt;}
.x8{left:570.047727pt;}
.xb{left:580.043214pt;}
.x9{left:588.344602pt;}
.x11{left:702.000000pt;}
}




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