
    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_c813fba2efc53453b9d17da8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2bd021e7dfa91a817ebee6cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c6589ca741c71c2633c8c0e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_56370c712dea93b54e0803a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_f03b7f0a55f254dcbbf4f802.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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_f02bd873cc802ad4d6d0c6df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-96.480000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.v3{vertical-align:2.880000px;}
.ls12{letter-spacing:-26.820000px;}
.ls1b{letter-spacing:-25.380000px;}
.lsb{letter-spacing:-21.780000px;}
.ls14{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.157800px;}
.ls1d{letter-spacing:-0.028080px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.190080px;}
.ls16{letter-spacing:0.190200px;}
.ls11{letter-spacing:0.350640px;}
.lsc{letter-spacing:0.354720px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.ls9{letter-spacing:0.540000px;}
.ls1{letter-spacing:6.300000px;}
.ls18{letter-spacing:7.020000px;}
.lsd{letter-spacing:7.740000px;}
.ls10{letter-spacing:11.340000px;}
.ls19{letter-spacing:35.100000px;}
.ls4{letter-spacing:42.300000px;}
.ls3{letter-spacing:92.700000px;}
.lsf{letter-spacing:369.360000px;}
.lse{letter-spacing:493.020000px;}
.ls1a{letter-spacing:602.640000px;}
.ls1c{letter-spacing:677.496000px;}
.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:-21.438600px;}
.ws1{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.700000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.073560px;}
._5c{margin-left:-2910.204480px;}
._67{margin-left:-895.320000px;}
._76{margin-left:-888.816000px;}
._6c{margin-left:-887.376000px;}
._75{margin-left:-881.126880px;}
._6a{margin-left:-864.123360px;}
._69{margin-left:-857.820000px;}
._66{margin-left:-822.656880px;}
._38{margin-left:-819.451920px;}
._6f{margin-left:-680.736000px;}
._4d{margin-left:-660.391920px;}
._4e{margin-left:-658.350240px;}
._63{margin-left:-652.190160px;}
._6e{margin-left:-640.841760px;}
._73{margin-left:-606.216000px;}
._71{margin-left:-597.945360px;}
._3c{margin-left:-571.633200px;}
._34{margin-left:-549.871200px;}
._33{margin-left:-543.828720px;}
._5d{margin-left:-539.729760px;}
._2c{margin-left:-468.457200px;}
._2b{margin-left:-462.420000px;}
._43{margin-left:-461.184240px;}
._61{margin-left:-415.644240px;}
._54{margin-left:-413.460000px;}
._4c{margin-left:-379.242480px;}
._3e{margin-left:-333.056160px;}
._44{margin-left:-328.908240px;}
._5f{margin-left:-311.102400px;}
._41{margin-left:-303.931920px;}
._40{margin-left:-300.849120px;}
._36{margin-left:-286.315920px;}
._47{margin-left:-272.303760px;}
._3d{margin-left:-266.371920px;}
._30{margin-left:-246.871440px;}
._2d{margin-left:-231.300000px;}
._32{margin-left:-229.910880px;}
._29{margin-left:-228.384720px;}
._51{margin-left:-225.033120px;}
._50{margin-left:-218.460000px;}
._20{margin-left:-216.394560px;}
._26{margin-left:-198.720000px;}
._35{margin-left:-189.151920px;}
._53{margin-left:-187.883280px;}
._58{margin-left:-177.794880px;}
._24{margin-left:-173.983680px;}
._37{margin-left:-131.021280px;}
._3f{margin-left:-65.700000px;}
._6b{margin-left:-59.731920px;}
._2a{margin-left:-50.371920px;}
._25{margin-left:-48.211920px;}
._72{margin-left:-44.611920px;}
._21{margin-left:-26.431920px;}
._46{margin-left:-25.218480px;}
._5a{margin-left:-23.924160px;}
._22{margin-left:-22.399440px;}
._49{margin-left:-21.028560px;}
._5b{margin-left:-7.282320px;}
._3{margin-left:-5.983920px;}
._2{margin-left:-4.801200px;}
._17{margin-left:-3.706560px;}
._14{margin-left:-2.190240px;}
._0{margin-left:-1.010880px;}
._1{width:1.571040px;}
._6{width:3.175920px;}
._e{width:4.705680px;}
._1d{width:5.728320px;}
._9{width:6.739200px;}
._10{width:7.779600px;}
._16{width:9.295920px;}
._5{width:10.664400px;}
._4{width:11.793600px;}
._1c{width:13.057200px;}
._7{width:14.068080px;}
._b{width:16.005600px;}
._8{width:17.858880px;}
._f{width:18.869760px;}
._7a{width:20.035200px;}
._19{width:22.239360px;}
._56{width:23.250000px;}
._a{width:24.513840px;}
._c{width:25.861680px;}
._d{width:26.994000px;}
._4f{width:28.119120px;}
._12{width:29.147040px;}
._11{width:30.916080px;}
._1e{width:33.106320px;}
._4a{width:34.117200px;}
._48{width:35.481360px;}
._18{width:36.572160px;}
._79{width:37.719360px;}
._1b{width:38.779920px;}
._1a{width:39.845520px;}
._15{width:42.035760px;}
._78{width:43.581600px;}
._59{width:45.152640px;}
._7b{width:48.185280px;}
._1f{width:49.197360px;}
._7c{width:64.655760px;}
._3b{width:72.867600px;}
._3a{width:73.878480px;}
._13{width:92.495520px;}
._57{width:106.742160px;}
._27{width:194.876640px;}
._55{width:211.348080px;}
._31{width:220.718640px;}
._23{width:248.412000px;}
._2f{width:276.633120px;}
._42{width:299.981280px;}
._60{width:332.616000px;}
._62{width:437.016000px;}
._52{width:444.264960px;}
._45{width:471.600000px;}
._5e{width:539.076000px;}
._74{width:615.843600px;}
._70{width:662.207760px;}
._64{width:674.076000px;}
._4b{width:711.531600px;}
._2e{width:742.207680px;}
._28{width:754.087920px;}
._68{width:845.017920px;}
._77{width:903.450720px;}
._6d{width:918.314640px;}
._65{width:922.105680px;}
._39{width:1116.248640px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y3f{bottom:88.416000px;}
.y3e{bottom:93.636000px;}
.y3d{bottom:105.696000px;}
.y2f{bottom:110.736000px;}
.y3c{bottom:110.916000px;}
.y3b{bottom:122.976000px;}
.y46{bottom:124.236000px;}
.y3a{bottom:128.196000px;}
.y2e{bottom:134.856000px;}
.y39{bottom:140.256000px;}
.y38{bottom:145.476000px;}
.y37{bottom:157.530000px;}
.y43{bottom:158.790000px;}
.y2d{bottom:159.150000px;}
.y36{bottom:162.750000px;}
.y35{bottom:176.070000px;}
.y2c{bottom:183.270000px;}
.y2b{bottom:207.390000px;}
.y2a{bottom:231.510000px;}
.y29{bottom:255.630000px;}
.y34{bottom:263.190000px;}
.y28{bottom:279.795000px;}
.y27{bottom:303.915000px;}
.y42{bottom:304.455000px;}
.y26{bottom:328.215000px;}
.y25{bottom:352.335000px;}
.y33{bottom:359.895000px;}
.y24{bottom:376.455000px;}
.y32{bottom:384.015000px;}
.y23{bottom:400.575000px;}
.y22{bottom:424.695000px;}
.y21{bottom:448.815000px;}
.y20{bottom:473.115000px;}
.y1f{bottom:497.235000px;}
.y1e{bottom:521.355000px;}
.y1d{bottom:545.475000px;}
.y1c{bottom:569.625000px;}
.y1b{bottom:593.745000px;}
.y1a{bottom:618.045000px;}
.y31{bottom:625.605000px;}
.y19{bottom:642.165000px;}
.y18{bottom:666.285000px;}
.y17{bottom:690.405000px;}
.y16{bottom:714.525000px;}
.y15{bottom:738.645000px;}
.y14{bottom:762.765000px;}
.y13{bottom:787.065000px;}
.y12{bottom:811.185000px;}
.y47{bottom:818.745000px;}
.y11{bottom:835.305000px;}
.y10{bottom:859.470000px;}
.y41{bottom:867.030000px;}
.yf{bottom:883.590000px;}
.ye{bottom:907.710000px;}
.y30{bottom:915.270000px;}
.yd{bottom:932.010000px;}
.yc{bottom:956.130000px;}
.y40{bottom:963.690000px;}
.yb{bottom:980.250000px;}
.y45{bottom:987.810000px;}
.ya{bottom:1004.370000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y44{bottom:1108.590000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h6{height:38.158594px;}
.h5{height:52.998047px;}
.h7{height:58.651172px;}
.h4{height:78.604805px;}
.h9{height:79.324805px;}
.h8{height:80.516953px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x24{left:89.099973px;}
.x18{left:95.039987px;}
.x16{left:98.999987px;}
.x2d{left:129.095973px;}
.x6{left:137.375987px;}
.xd{left:139.355987px;}
.x2e{left:142.775987px;}
.x1f{left:144.755987px;}
.x3{left:150.869987px;}
.x20{left:152.669987px;}
.x27{left:159.329973px;}
.x1a{left:161.309987px;}
.x12{left:165.629973px;}
.x28{left:173.009987px;}
.x2f{left:174.629987px;}
.x13{left:179.309987px;}
.x9{left:201.449987px;}
.xb{left:212.789987px;}
.x4{left:264.089987px;}
.x7{left:271.649987px;}
.x8{left:287.489987px;}
.x17{left:301.394987px;}
.x2c{left:304.274987px;}
.x2b{left:316.334987px;}
.xa{left:325.874987px;}
.x14{left:402.194973px;}
.x15{left:415.874987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xc{left:473.474987px;}
.x23{left:506.264987px;}
.x19{left:511.484987px;}
.x25{left:555.584973px;}
.x21{left:557.204973px;}
.x26{left:569.264987px;}
.x22{left:570.884987px;}
.x2a{left:580.064987px;}
.xe{left:605.444973px;}
.xf{left:619.124987px;}
.x29{left:656.924987px;}
.x10{left:688.064973px;}
.x11{left:701.789987px;}
.x1d{left:711.149973px;}
.x1e{left:724.829987px;}
.x1b{left:734.189973px;}
.x1c{left:747.869987px;}
@media print{
.v4{vertical-align:-85.760000pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.v3{vertical-align:2.560000pt;}
.ls12{letter-spacing:-23.840000pt;}
.ls1b{letter-spacing:-22.560000pt;}
.lsb{letter-spacing:-19.360000pt;}
.ls14{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.140267pt;}
.ls1d{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.168960pt;}
.ls16{letter-spacing:0.169067pt;}
.ls11{letter-spacing:0.311680pt;}
.lsc{letter-spacing:0.315307pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1{letter-spacing:5.600000pt;}
.ls18{letter-spacing:6.240000pt;}
.lsd{letter-spacing:6.880000pt;}
.ls10{letter-spacing:10.080000pt;}
.ls19{letter-spacing:31.200000pt;}
.ls4{letter-spacing:37.600000pt;}
.ls3{letter-spacing:82.400000pt;}
.lsf{letter-spacing:328.320000pt;}
.lse{letter-spacing:438.240000pt;}
.ls1a{letter-spacing:535.680000pt;}
.ls1c{letter-spacing:602.218667pt;}
.ws0{word-spacing:-19.056533pt;}
.ws1{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.400000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.065387pt;}
._5c{margin-left:-2586.848427pt;}
._67{margin-left:-795.840000pt;}
._76{margin-left:-790.058667pt;}
._6c{margin-left:-788.778667pt;}
._75{margin-left:-783.223893pt;}
._6a{margin-left:-768.109653pt;}
._69{margin-left:-762.506667pt;}
._66{margin-left:-731.250560pt;}
._38{margin-left:-728.401707pt;}
._6f{margin-left:-605.098667pt;}
._4d{margin-left:-587.015040pt;}
._4e{margin-left:-585.200213pt;}
._63{margin-left:-579.724587pt;}
._6e{margin-left:-569.637120pt;}
._73{margin-left:-538.858667pt;}
._71{margin-left:-531.506987pt;}
._3c{margin-left:-508.118400pt;}
._34{margin-left:-488.774400pt;}
._33{margin-left:-483.403307pt;}
._5d{margin-left:-479.759787pt;}
._2c{margin-left:-416.406400pt;}
._2b{margin-left:-411.040000pt;}
._43{margin-left:-409.941547pt;}
._61{margin-left:-369.461547pt;}
._54{margin-left:-367.520000pt;}
._4c{margin-left:-337.104427pt;}
._3e{margin-left:-296.049920pt;}
._44{margin-left:-292.362880pt;}
._5f{margin-left:-276.535467pt;}
._41{margin-left:-270.161707pt;}
._40{margin-left:-267.421440pt;}
._36{margin-left:-254.503040pt;}
._47{margin-left:-242.047787pt;}
._3d{margin-left:-236.775040pt;}
._30{margin-left:-219.441280pt;}
._2d{margin-left:-205.600000pt;}
._32{margin-left:-204.365227pt;}
._29{margin-left:-203.008640pt;}
._51{margin-left:-200.029440pt;}
._50{margin-left:-194.186667pt;}
._20{margin-left:-192.350720pt;}
._26{margin-left:-176.640000pt;}
._35{margin-left:-168.135040pt;}
._53{margin-left:-167.007360pt;}
._58{margin-left:-158.039893pt;}
._24{margin-left:-154.652160pt;}
._37{margin-left:-116.463360pt;}
._3f{margin-left:-58.400000pt;}
._6b{margin-left:-53.095040pt;}
._2a{margin-left:-44.775040pt;}
._25{margin-left:-42.855040pt;}
._72{margin-left:-39.655040pt;}
._21{margin-left:-23.495040pt;}
._46{margin-left:-22.416427pt;}
._5a{margin-left:-21.265920pt;}
._22{margin-left:-19.910613pt;}
._49{margin-left:-18.692053pt;}
._5b{margin-left:-6.473173pt;}
._3{margin-left:-5.319040pt;}
._2{margin-left:-4.267733pt;}
._17{margin-left:-3.294720pt;}
._14{margin-left:-1.946880pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.396480pt;}
._6{width:2.823040pt;}
._e{width:4.182827pt;}
._1d{width:5.091840pt;}
._9{width:5.990400pt;}
._10{width:6.915200pt;}
._16{width:8.263040pt;}
._5{width:9.479467pt;}
._4{width:10.483200pt;}
._1c{width:11.606400pt;}
._7{width:12.504960pt;}
._b{width:14.227200pt;}
._8{width:15.874560pt;}
._f{width:16.773120pt;}
._7a{width:17.809067pt;}
._19{width:19.768320pt;}
._56{width:20.666667pt;}
._a{width:21.790080pt;}
._c{width:22.988160pt;}
._d{width:23.994667pt;}
._4f{width:24.994773pt;}
._12{width:25.908480pt;}
._11{width:27.480960pt;}
._1e{width:29.427840pt;}
._4a{width:30.326400pt;}
._48{width:31.538987pt;}
._18{width:32.508587pt;}
._79{width:33.528320pt;}
._1b{width:34.471040pt;}
._1a{width:35.418240pt;}
._15{width:37.365120pt;}
._78{width:38.739200pt;}
._59{width:40.135680pt;}
._7b{width:42.831360pt;}
._1f{width:43.730987pt;}
._7c{width:57.471787pt;}
._3b{width:64.771200pt;}
._3a{width:65.669760pt;}
._13{width:82.218240pt;}
._57{width:94.881920pt;}
._27{width:173.223680pt;}
._55{width:187.864960pt;}
._31{width:196.194347pt;}
._23{width:220.810667pt;}
._2f{width:245.896107pt;}
._42{width:266.650027pt;}
._60{width:295.658667pt;}
._62{width:388.458667pt;}
._52{width:394.902187pt;}
._45{width:419.200000pt;}
._5e{width:479.178667pt;}
._74{width:547.416533pt;}
._70{width:588.629120pt;}
._64{width:599.178667pt;}
._4b{width:632.472533pt;}
._2e{width:659.740160pt;}
._28{width:670.300373pt;}
._68{width:751.127040pt;}
._77{width:803.067307pt;}
._6d{width:816.279680pt;}
._65{width:819.649493pt;}
._39{width:992.221013pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y3f{bottom:78.592000pt;}
.y3e{bottom:83.232000pt;}
.y3d{bottom:93.952000pt;}
.y2f{bottom:98.432000pt;}
.y3c{bottom:98.592000pt;}
.y3b{bottom:109.312000pt;}
.y46{bottom:110.432000pt;}
.y3a{bottom:113.952000pt;}
.y2e{bottom:119.872000pt;}
.y39{bottom:124.672000pt;}
.y38{bottom:129.312000pt;}
.y37{bottom:140.026667pt;}
.y43{bottom:141.146667pt;}
.y2d{bottom:141.466667pt;}
.y36{bottom:144.666667pt;}
.y35{bottom:156.506667pt;}
.y2c{bottom:162.906667pt;}
.y2b{bottom:184.346667pt;}
.y2a{bottom:205.786667pt;}
.y29{bottom:227.226667pt;}
.y34{bottom:233.946667pt;}
.y28{bottom:248.706667pt;}
.y27{bottom:270.146667pt;}
.y42{bottom:270.626667pt;}
.y26{bottom:291.746667pt;}
.y25{bottom:313.186667pt;}
.y33{bottom:319.906667pt;}
.y24{bottom:334.626667pt;}
.y32{bottom:341.346667pt;}
.y23{bottom:356.066667pt;}
.y22{bottom:377.506667pt;}
.y21{bottom:398.946667pt;}
.y20{bottom:420.546667pt;}
.y1f{bottom:441.986667pt;}
.y1e{bottom:463.426667pt;}
.y1d{bottom:484.866667pt;}
.y1c{bottom:506.333333pt;}
.y1b{bottom:527.773333pt;}
.y1a{bottom:549.373333pt;}
.y31{bottom:556.093333pt;}
.y19{bottom:570.813333pt;}
.y18{bottom:592.253333pt;}
.y17{bottom:613.693333pt;}
.y16{bottom:635.133333pt;}
.y15{bottom:656.573333pt;}
.y14{bottom:678.013333pt;}
.y13{bottom:699.613333pt;}
.y12{bottom:721.053333pt;}
.y47{bottom:727.773333pt;}
.y11{bottom:742.493333pt;}
.y10{bottom:763.973333pt;}
.y41{bottom:770.693333pt;}
.yf{bottom:785.413333pt;}
.ye{bottom:806.853333pt;}
.y30{bottom:813.573333pt;}
.yd{bottom:828.453333pt;}
.yc{bottom:849.893333pt;}
.y40{bottom:856.613333pt;}
.yb{bottom:871.333333pt;}
.y45{bottom:878.053333pt;}
.ya{bottom:892.773333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y44{bottom:985.413333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h6{height:33.918750pt;}
.h5{height:47.109375pt;}
.h7{height:52.134375pt;}
.h4{height:69.870937pt;}
.h9{height:70.510937pt;}
.h8{height:71.570625pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x24{left:79.199976pt;}
.x18{left:84.479988pt;}
.x16{left:87.999988pt;}
.x2d{left:114.751976pt;}
.x6{left:122.111988pt;}
.xd{left:123.871988pt;}
.x2e{left:126.911988pt;}
.x1f{left:128.671988pt;}
.x3{left:134.106655pt;}
.x20{left:135.706655pt;}
.x27{left:141.626643pt;}
.x1a{left:143.386655pt;}
.x12{left:147.226643pt;}
.x28{left:153.786655pt;}
.x2f{left:155.226655pt;}
.x13{left:159.386655pt;}
.x9{left:179.066655pt;}
.xb{left:189.146655pt;}
.x4{left:234.746655pt;}
.x7{left:241.466655pt;}
.x8{left:255.546655pt;}
.x17{left:267.906655pt;}
.x2c{left:270.466655pt;}
.x2b{left:281.186655pt;}
.xa{left:289.666655pt;}
.x14{left:357.506643pt;}
.x15{left:369.666655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xc{left:420.866655pt;}
.x23{left:450.013322pt;}
.x19{left:454.653322pt;}
.x25{left:493.853310pt;}
.x21{left:495.293310pt;}
.x26{left:506.013322pt;}
.x22{left:507.453322pt;}
.x2a{left:515.613322pt;}
.xe{left:538.173310pt;}
.xf{left:550.333322pt;}
.x29{left:583.933322pt;}
.x10{left:611.613310pt;}
.x11{left:623.813322pt;}
.x1d{left:632.133310pt;}
.x1e{left:644.293322pt;}
.x1b{left:652.613310pt;}
.x1c{left:664.773322pt;}
}




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