
    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_146038a0e038407dcd4fb6e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_8b8ea2d4e7c3995b0ff779a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981445;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_ab398943cb2c753badd14b81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_7da5c23e47036fd8576412a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_85ef816f86b2f552402fa19c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963379;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_93eea953a51530c6c0f42db7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.022000;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_4acac4095ffa8f68abf174d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_362f87d6443c625f340a96fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.812000;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);}
.v2{vertical-align:-78.806568px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:36.572896px;}
.v1{vertical-align:49.022912px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.041865px;}
.ls1{letter-spacing:0.041910px;}
.ls3{letter-spacing:108.000282px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,90,205),0 0.015em rgb(0,90,205),0.015em 0 rgb(0,90,205),0 -0.015em  rgb(0,90,205);}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(48,125,224),0 0.015em rgb(48,125,224),0.015em 0 rgb(48,125,224),0 -0.015em  rgb(48,125,224);}
.sc0{text-shadow:-0.015em 0 rgb(231,231,231),0 0.015em rgb(231,231,231),0.015em 0 rgb(231,231,231),0 -0.015em  rgb(231,231,231);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,90,205);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(48,125,224);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(231,231,231);text-shadow:none;}
}
.ws2{word-spacing:-95.400003px;}
.ws5{word-spacing:-60.420004px;}
.wsc{word-spacing:-52.470002px;}
.ws0{word-spacing:-44.520000px;}
.ws7{word-spacing:-39.750000px;}
.ws6{word-spacing:-39.600002px;}
.ws8{word-spacing:-30.210002px;}
.ws3{word-spacing:-20.160001px;}
.ws9{word-spacing:-19.944001px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:697.954432px;}
.wsb{word-spacing:976.769109px;}
.wsa{word-spacing:989.583602px;}
._5{margin-left:-9.702000px;}
._1{margin-left:-7.350000px;}
._a{margin-left:-6.270000px;}
._4{margin-left:-5.016000px;}
._3{margin-left:-3.150000px;}
._0{margin-left:-1.890000px;}
._6{width:1.512000px;}
._2{width:3.360000px;}
._9{width:307.965523px;}
._b{width:474.551394px;}
._8{width:748.264389px;}
._7{width:762.934493px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,38);}
.fc5{color:rgb(24,128,56);}
.fc2{color:rgb(0,90,205);}
.fc1{color:rgb(48,125,224);}
.fc4{color:rgb(238,238,238);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(231,231,231);}
.fs9{font-size:66.000004px;}
.fs6{font-size:72.000002px;}
.fs2{font-size:108.000003px;}
.fs8{font-size:114.000007px;}
.fsa{font-size:149.999999px;}
.fs1{font-size:167.999999px;}
.fs7{font-size:180.000006px;}
.fs5{font-size:198.000006px;}
.fs0{font-size:210.000013px;}
.fs3{font-size:228.000013px;}
.fs4{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y5{bottom:73.387666px;}
.y33{bottom:83.017671px;}
.y46{bottom:92.423121px;}
.y32{bottom:102.817671px;}
.y4{bottom:105.787671px;}
.y21{bottom:111.149984px;}
.y10{bottom:113.083522px;}
.y45{bottom:114.023122px;}
.y31{bottom:122.617672px;}
.y42{bottom:129.479641px;}
.y20{bottom:132.749983px;}
.yc{bottom:134.683520px;}
.yf{bottom:135.486658px;}
.y41{bottom:151.079644px;}
.y1f{bottom:154.349985px;}
.yb{bottom:156.283523px;}
.ye{bottom:157.086661px;}
.y18{bottom:157.886322px;}
.y30{bottom:157.963711px;}
.y40{bottom:160.423917px;}
.y3c{bottom:170.186330px;}
.y1e{bottom:175.949986px;}
.ya{bottom:177.883524px;}
.yd{bottom:178.686661px;}
.y17{bottom:179.486316px;}
.y2f{bottom:179.563700px;}
.y3f{bottom:182.023915px;}
.y7{bottom:184.997124px;}
.y3b{bottom:191.561330px;}
.y25{bottom:200.182082px;}
.y16{bottom:201.086312px;}
.y2e{bottom:201.163701px;}
.y24{bottom:202.579705px;}
.y3e{bottom:203.623918px;}
.y1d{bottom:211.540736px;}
.y3a{bottom:212.936320px;}
.y3{bottom:216.592784px;}
.y15{bottom:222.686310px;}
.y2d{bottom:222.763701px;}
.y3d{bottom:225.223919px;}
.y11{bottom:227.015642px;}
.y39{bottom:234.311321px;}
.y14{bottom:244.286313px;}
.y2c{bottom:244.363691px;}
.y6{bottom:253.397126px;}
.y38{bottom:255.686321px;}
.y13{bottom:265.886314px;}
.y2b{bottom:265.963685px;}
.y2{bottom:269.512774px;}
.y37{bottom:277.061329px;}
.y44{bottom:280.347053px;}
.y2a{bottom:287.563681px;}
.y4c{bottom:296.730823px;}
.y22{bottom:297.989990px;}
.y36{bottom:298.436329px;}
.y12{bottom:301.368535px;}
.y29{bottom:309.163679px;}
.y4b{bottom:318.330823px;}
.y1c{bottom:319.589989px;}
.y35{bottom:319.811330px;}
.y28{bottom:330.763682px;}
.y1{bottom:332.512776px;}
.y4a{bottom:339.930824px;}
.y1b{bottom:341.189991px;}
.y27{bottom:352.363683px;}
.y8{bottom:359.312595px;}
.y1a{bottom:362.789992px;}
.y34{bottom:369.501011px;}
.y43{bottom:375.292304px;}
.y49{bottom:376.530821px;}
.y23{bottom:387.023618px;}
.y48{bottom:398.130819px;}
.y19{bottom:398.380854px;}
.y47{bottom:434.730819px;}
.y26{bottom:463.070551px;}
.y9{bottom:495.134526px;}
.hb{height:52.272003px;}
.he{height:53.280002px;}
.h7{height:55.512002px;}
.hf{height:57.672002px;}
.h3{height:82.107425px;}
.h9{height:88.464005px;}
.hc{height:104.534913px;}
.ha{height:116.399999px;}
.h2{height:130.368000px;}
.h8{height:139.680004px;}
.hd{height:152.972895px;}
.h6{height:153.648005px;}
.h1{height:162.960010px;}
.h4{height:176.928010px;}
.h5{height:279.360009px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x23{left:94.305125px;}
.x3c{left:95.669294px;}
.x26{left:107.341597px;}
.xa{left:111.127562px;}
.x32{left:112.990200px;}
.xb{left:119.317596px;}
.x33{left:122.584226px;}
.x31{left:134.554242px;}
.xc{left:140.944638px;}
.x34{left:143.653274px;}
.x16{left:146.165435px;}
.x20{left:173.633619px;}
.x1a{left:178.214147px;}
.x1c{left:191.205647px;}
.x6{left:208.155189px;}
.x1e{left:217.464386px;}
.x2c{left:219.002970px;}
.x1d{left:226.724797px;}
.x2d{left:235.130900px;}
.x2a{left:239.574812px;}
.x28{left:243.491164px;}
.x29{left:248.824819px;}
.x7{left:254.587789px;}
.x9{left:257.847095px;}
.x2b{left:262.204456px;}
.x25{left:266.138277px;}
.x3a{left:271.018719px;}
.x2e{left:273.002971px;}
.x39{left:284.568999px;}
.x1{left:348.683051px;}
.x4{left:353.059718px;}
.xe{left:360.548670px;}
.x18{left:365.350973px;}
.xd{left:369.917681px;}
.x17{left:372.939132px;}
.x30{left:402.361989px;}
.x3b{left:408.283449px;}
.x35{left:449.950166px;}
.x36{left:459.499166px;}
.x24{left:469.768706px;}
.x2{left:472.060275px;}
.x1f{left:478.937503px;}
.x19{left:480.062494px;}
.x8{left:486.542488px;}
.x22{left:558.091548px;}
.x27{left:567.126941px;}
.x10{left:582.254245px;}
.x11{left:588.455255px;}
.x2f{left:605.946867px;}
.x1b{left:607.650398px;}
.xf{left:609.380288px;}
.x12{left:624.113334px;}
.x21{left:637.429970px;}
.x3{left:669.211716px;}
.x5{left:689.531411px;}
.x37{left:721.552096px;}
.x38{left:745.060153px;}
.x13{left:834.703854px;}
.x14{left:838.555868px;}
.x15{left:884.356960px;}
@media print{
.v2{vertical-align:-70.050282pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:32.509241pt;}
.v1{vertical-align:43.575921pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.037213pt;}
.ls1{letter-spacing:0.037253pt;}
.ls3{letter-spacing:96.000251pt;}
.ws2{word-spacing:-84.800003pt;}
.ws5{word-spacing:-53.706670pt;}
.wsc{word-spacing:-46.640001pt;}
.ws0{word-spacing:-39.573333pt;}
.ws7{word-spacing:-35.333333pt;}
.ws6{word-spacing:-35.200002pt;}
.ws8{word-spacing:-26.853335pt;}
.ws3{word-spacing:-17.920001pt;}
.ws9{word-spacing:-17.728001pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:620.403940pt;}
.wsb{word-spacing:868.239208pt;}
.wsa{word-spacing:879.629869pt;}
._5{margin-left:-8.624000pt;}
._1{margin-left:-6.533334pt;}
._a{margin-left:-5.573333pt;}
._4{margin-left:-4.458667pt;}
._3{margin-left:-2.800000pt;}
._0{margin-left:-1.680000pt;}
._6{width:1.344000pt;}
._2{width:2.986667pt;}
._9{width:273.747131pt;}
._b{width:421.823462pt;}
._8{width:665.123901pt;}
._7{width:678.163994pt;}
.fs9{font-size:58.666670pt;}
.fs6{font-size:64.000002pt;}
.fs2{font-size:96.000003pt;}
.fs8{font-size:101.333339pt;}
.fsa{font-size:133.333332pt;}
.fs1{font-size:149.333333pt;}
.fs7{font-size:160.000005pt;}
.fs5{font-size:176.000006pt;}
.fs0{font-size:186.666678pt;}
.fs3{font-size:202.666678pt;}
.fs4{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:65.233481pt;}
.y33{bottom:73.793485pt;}
.y46{bottom:82.153885pt;}
.y32{bottom:91.393486pt;}
.y4{bottom:94.033486pt;}
.y21{bottom:98.799986pt;}
.y10{bottom:100.518686pt;}
.y45{bottom:101.353886pt;}
.y31{bottom:108.993486pt;}
.y42{bottom:115.093014pt;}
.y20{bottom:117.999984pt;}
.yc{bottom:119.718685pt;}
.yf{bottom:120.432585pt;}
.y41{bottom:134.293017pt;}
.y1f{bottom:137.199987pt;}
.yb{bottom:138.918687pt;}
.ye{bottom:139.632587pt;}
.y18{bottom:140.343397pt;}
.y30{bottom:140.412187pt;}
.y40{bottom:142.599037pt;}
.y3c{bottom:151.276738pt;}
.y1e{bottom:156.399988pt;}
.ya{bottom:158.118688pt;}
.yd{bottom:158.832588pt;}
.y17{bottom:159.543392pt;}
.y2f{bottom:159.612178pt;}
.y3f{bottom:161.799036pt;}
.y7{bottom:164.441888pt;}
.y3b{bottom:170.276738pt;}
.y25{bottom:177.939628pt;}
.y16{bottom:178.743388pt;}
.y2e{bottom:178.812178pt;}
.y24{bottom:180.070848pt;}
.y3e{bottom:180.999039pt;}
.y1d{bottom:188.036210pt;}
.y3a{bottom:189.276729pt;}
.y3{bottom:192.526919pt;}
.y15{bottom:197.943387pt;}
.y2d{bottom:198.012179pt;}
.y3d{bottom:200.199039pt;}
.y11{bottom:201.791682pt;}
.y39{bottom:208.276729pt;}
.y14{bottom:217.143390pt;}
.y2c{bottom:217.212170pt;}
.y6{bottom:225.241890pt;}
.y38{bottom:227.276730pt;}
.y13{bottom:236.343390pt;}
.y2b{bottom:236.412164pt;}
.y2{bottom:239.566910pt;}
.y37{bottom:246.276737pt;}
.y44{bottom:249.197381pt;}
.y2a{bottom:255.612161pt;}
.y4c{bottom:263.760731pt;}
.y22{bottom:264.879991pt;}
.y36{bottom:265.276737pt;}
.y12{bottom:267.883142pt;}
.y29{bottom:274.812160pt;}
.y4b{bottom:282.960732pt;}
.y1c{bottom:284.079990pt;}
.y35{bottom:284.276738pt;}
.y28{bottom:294.012162pt;}
.y1{bottom:295.566912pt;}
.y4a{bottom:302.160732pt;}
.y1b{bottom:303.279992pt;}
.y27{bottom:313.212163pt;}
.y8{bottom:319.388973pt;}
.y1a{bottom:322.479993pt;}
.y34{bottom:328.445343pt;}
.y43{bottom:333.593159pt;}
.y49{bottom:334.694063pt;}
.y23{bottom:344.020994pt;}
.y48{bottom:353.894061pt;}
.y19{bottom:354.116315pt;}
.y47{bottom:386.427395pt;}
.y26{bottom:411.618268pt;}
.y9{bottom:440.119579pt;}
.hb{height:46.464003pt;}
.he{height:47.360002pt;}
.h7{height:49.344002pt;}
.hf{height:51.264002pt;}
.h3{height:72.984377pt;}
.h9{height:78.634671pt;}
.hc{height:92.919923pt;}
.ha{height:103.466666pt;}
.h2{height:115.882666pt;}
.h8{height:124.160004pt;}
.hd{height:135.975907pt;}
.h6{height:136.576004pt;}
.h1{height:144.853342pt;}
.h4{height:157.269343pt;}
.h5{height:248.320008pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x23{left:83.826778pt;}
.x3c{left:85.039373pt;}
.x26{left:95.414753pt;}
.xa{left:98.780055pt;}
.x32{left:100.435733pt;}
.xb{left:106.060085pt;}
.x33{left:108.963756pt;}
.x31{left:119.603771pt;}
.xc{left:125.284123pt;}
.x34{left:127.691799pt;}
.x16{left:129.924831pt;}
.x20{left:154.340995pt;}
.x1a{left:158.412575pt;}
.x1c{left:169.960575pt;}
.x6{left:185.026835pt;}
.x1e{left:193.301676pt;}
.x2c{left:194.669306pt;}
.x1d{left:201.533152pt;}
.x2d{left:209.005245pt;}
.x2a{left:212.955389pt;}
.x28{left:216.436590pt;}
.x29{left:221.177617pt;}
.x7{left:226.300257pt;}
.x9{left:229.197417pt;}
.x2b{left:233.070627pt;}
.x25{left:236.567358pt;}
.x3a{left:240.905528pt;}
.x2e{left:242.669308pt;}
.x39{left:252.950221pt;}
.x1{left:309.940490pt;}
.x4{left:313.830860pt;}
.xe{left:320.487706pt;}
.x18{left:324.756420pt;}
.xd{left:328.815717pt;}
.x17{left:331.501451pt;}
.x30{left:357.655101pt;}
.x3b{left:362.918622pt;}
.x35{left:399.955703pt;}
.x36{left:408.443703pt;}
.x24{left:417.572183pt;}
.x2{left:419.609133pt;}
.x1f{left:425.722225pt;}
.x19{left:426.722217pt;}
.x8{left:432.482212pt;}
.x22{left:496.081376pt;}
.x27{left:504.112836pt;}
.x10{left:517.559329pt;}
.x11{left:523.071338pt;}
.x2f{left:538.619437pt;}
.x1b{left:540.133687pt;}
.xf{left:541.671367pt;}
.x12{left:554.767408pt;}
.x21{left:566.604418pt;}
.x3{left:594.854859pt;}
.x5{left:612.916810pt;}
.x37{left:641.379641pt;}
.x38{left:662.275691pt;}
.x13{left:741.958982pt;}
.x14{left:745.382994pt;}
.x15{left:786.095075pt;}
}




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