
    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_31821445f5ad2a4e7f9cb9ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_b43ac19d41ffd281b422255b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e64a05f05382ac56bcab01ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_7d99107d402de883194db7f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_c96df3283eebf402207ac6fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5d28475cffca2cbcad97498e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_287090f28b5bd70210cf903e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_deeee0a0ea34c347603ca120.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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;}
.ls15{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.476000px;}
.lsb{letter-spacing:-1.458000px;}
.lsf{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.690000px;}
.ls16{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.172080px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378600px;}
.ls1{letter-spacing:0.485280px;}
.ls9{letter-spacing:30.180000px;}
.lsa{letter-spacing:85.500000px;}
.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:-84.618600px;}
.ws5{word-spacing:-84.600000px;}
.ws2{word-spacing:-84.240000px;}
.wsa{word-spacing:-82.782000px;}
.ws0{word-spacing:-24.300000px;}
.ws3{word-spacing:-21.438600px;}
.ws6{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.401400px;}
.ws12{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.031920px;}
.wsb{word-spacing:-21.022560px;}
.ws9{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.681400px;}
.ws10{word-spacing:-20.370000px;}
.wse{word-spacing:-19.980000px;}
.wsf{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.260000px;}
.ws7{word-spacing:0.000000px;}
._33{margin-left:-5.877600px;}
._28{margin-left:-4.485360px;}
._f{margin-left:-3.474480px;}
._10{margin-left:-2.463600px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._6{width:2.523360px;}
._c{width:4.001040px;}
._11{width:5.960400px;}
._5{width:7.076160px;}
._1e{width:8.255520px;}
._d{width:9.498480px;}
._16{width:10.986960px;}
._4{width:12.214800px;}
._9{width:13.646880px;}
._2b{width:15.094560px;}
._1c{width:16.393680px;}
._1d{width:17.394240px;}
._21{width:18.954000px;}
._22{width:20.028480px;}
._7{width:22.363680px;}
._8{width:23.486400px;}
._17{width:25.019280px;}
._18{width:26.991840px;}
._1b{width:28.016880px;}
._1f{width:29.736720px;}
._20{width:31.063920px;}
._2{width:32.965440px;}
._3{width:33.993120px;}
._12{width:35.334960px;}
._15{width:37.318320px;}
._14{width:38.392800px;}
._39{width:40.265520px;}
._38{width:41.528640px;}
._37{width:43.860240px;}
._2d{width:45.300480px;}
._2c{width:54.651120px;}
._24{width:55.728240px;}
._29{width:57.030480px;}
._2e{width:58.567440px;}
._2f{width:60.093840px;}
._13{width:61.663680px;}
._2a{width:64.780560px;}
._a{width:68.197440px;}
._b{width:72.594240px;}
._35{width:86.429760px;}
._36{width:89.662320px;}
._1a{width:93.619920px;}
._19{width:95.141280px;}
._34{width:99.901440px;}
._23{width:107.237520px;}
._e{width:115.640880px;}
._30{width:118.328160px;}
._32{width:128.118240px;}
._25{width:173.345280px;}
._26{width:174.607440px;}
._31{width:176.041920px;}
._27{width:244.743120px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(32,33,34);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y31{bottom:95.256000px;}
.y6d{bottom:98.136000px;}
.y5c{bottom:104.616000px;}
.y30{bottom:122.976000px;}
.y6c{bottom:125.856000px;}
.y5b{bottom:132.516000px;}
.y2f{bottom:150.870000px;}
.y6b{bottom:153.570000px;}
.y5a{bottom:160.230000px;}
.y2e{bottom:178.590000px;}
.y6a{bottom:181.470000px;}
.y59{bottom:187.950000px;}
.y43{bottom:193.170000px;}
.y2d{bottom:206.310000px;}
.y69{bottom:209.190000px;}
.y58{bottom:215.670000px;}
.y42{bottom:220.890000px;}
.y2c{bottom:234.030000px;}
.y68{bottom:236.910000px;}
.y57{bottom:243.570000px;}
.y41{bottom:248.610000px;}
.y2b{bottom:261.930000px;}
.y67{bottom:264.630000px;}
.y56{bottom:271.290000px;}
.y40{bottom:276.510000px;}
.y2a{bottom:289.650000px;}
.y66{bottom:292.530000px;}
.y55{bottom:299.010000px;}
.y3f{bottom:304.230000px;}
.y29{bottom:317.370000px;}
.y65{bottom:320.250000px;}
.y54{bottom:326.730000px;}
.y3e{bottom:331.950000px;}
.y28{bottom:345.135000px;}
.y64{bottom:348.015000px;}
.y53{bottom:354.675000px;}
.y3d{bottom:359.715000px;}
.y27{bottom:373.035000px;}
.y63{bottom:375.915000px;}
.y52{bottom:382.395000px;}
.y3c{bottom:387.615000px;}
.y26{bottom:400.755000px;}
.y62{bottom:403.635000px;}
.y51{bottom:410.115000px;}
.y3b{bottom:415.335000px;}
.y25{bottom:428.475000px;}
.y61{bottom:431.355000px;}
.y50{bottom:438.015000px;}
.y3a{bottom:443.055000px;}
.y24{bottom:456.375000px;}
.y60{bottom:459.075000px;}
.y4f{bottom:465.735000px;}
.y39{bottom:470.775000px;}
.y5f{bottom:483.195000px;}
.y23{bottom:484.095000px;}
.y4e{bottom:493.455000px;}
.y38{bottom:498.675000px;}
.y5e{bottom:511.095000px;}
.y22{bottom:511.815000px;}
.y4d{bottom:521.175000px;}
.y37{bottom:526.395000px;}
.y5d{bottom:538.815000px;}
.y21{bottom:539.535000px;}
.y4c{bottom:549.075000px;}
.y36{bottom:554.115000px;}
.y20{bottom:567.435000px;}
.y4b{bottom:576.795000px;}
.y35{bottom:582.015000px;}
.y1f{bottom:595.155000px;}
.y4a{bottom:604.545000px;}
.y34{bottom:609.765000px;}
.y1e{bottom:622.905000px;}
.y49{bottom:632.445000px;}
.y33{bottom:637.485000px;}
.y1d{bottom:650.805000px;}
.y48{bottom:660.165000px;}
.y32{bottom:660.705000px;}
.y1c{bottom:678.525000px;}
.y47{bottom:687.885000px;}
.y1b{bottom:706.245000px;}
.y46{bottom:715.605000px;}
.y1a{bottom:733.965000px;}
.y45{bottom:743.505000px;}
.y19{bottom:761.865000px;}
.y44{bottom:766.545000px;}
.y18{bottom:789.585000px;}
.y17{bottom:817.305000px;}
.y16{bottom:845.025000px;}
.y15{bottom:872.970000px;}
.y14{bottom:900.690000px;}
.y13{bottom:928.410000px;}
.y12{bottom:956.310000px;}
.y11{bottom:984.030000px;}
.y10{bottom:1011.750000px;}
.yf{bottom:1039.470000px;}
.ye{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.hd{height:58.819922px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.he{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x8{left:127.475987px;}
.xa{left:187.589987px;}
.xf{left:230.249987px;}
.x10{left:276.329987px;}
.xd{left:280.514987px;}
.xc{left:294.914987px;}
.xe{left:308.954987px;}
.xb{left:312.734987px;}
.x12{left:361.694987px;}
.x11{left:368.894987px;}
.x9{left:446.474987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-1.312000pt;}
.lsb{letter-spacing:-1.296000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls16{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.152960pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336533pt;}
.ls1{letter-spacing:0.431360pt;}
.ls9{letter-spacing:26.826667pt;}
.lsa{letter-spacing:76.000000pt;}
.ws4{word-spacing:-75.216533pt;}
.ws5{word-spacing:-75.200000pt;}
.ws2{word-spacing:-74.880000pt;}
.wsa{word-spacing:-73.584000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws6{word-spacing:-19.040000pt;}
.ws11{word-spacing:-19.023467pt;}
.ws12{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.695040pt;}
.wsb{word-spacing:-18.686720pt;}
.ws9{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.383467pt;}
.ws10{word-spacing:-18.106667pt;}
.wse{word-spacing:-17.760000pt;}
.wsf{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.120000pt;}
.ws7{word-spacing:0.000000pt;}
._33{margin-left:-5.224533pt;}
._28{margin-left:-3.986987pt;}
._f{margin-left:-3.088427pt;}
._10{margin-left:-2.189867pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._6{width:2.242987pt;}
._c{width:3.556480pt;}
._11{width:5.298133pt;}
._5{width:6.289920pt;}
._1e{width:7.338240pt;}
._d{width:8.443093pt;}
._16{width:9.766187pt;}
._4{width:10.857600pt;}
._9{width:12.130560pt;}
._2b{width:13.417387pt;}
._1c{width:14.572160pt;}
._1d{width:15.461547pt;}
._21{width:16.848000pt;}
._22{width:17.803093pt;}
._7{width:19.878827pt;}
._8{width:20.876800pt;}
._17{width:22.239360pt;}
._18{width:23.992747pt;}
._1b{width:24.903893pt;}
._1f{width:26.432640pt;}
._20{width:27.612373pt;}
._2{width:29.302613pt;}
._3{width:30.216107pt;}
._12{width:31.408853pt;}
._15{width:33.171840pt;}
._14{width:34.126933pt;}
._39{width:35.791573pt;}
._38{width:36.914347pt;}
._37{width:38.986880pt;}
._2d{width:40.267093pt;}
._2c{width:48.578773pt;}
._24{width:49.536213pt;}
._29{width:50.693760pt;}
._2e{width:52.059947pt;}
._2f{width:53.416747pt;}
._13{width:54.812160pt;}
._2a{width:57.582720pt;}
._a{width:60.619947pt;}
._b{width:64.528213pt;}
._35{width:76.826453pt;}
._36{width:79.699840pt;}
._1a{width:83.217707pt;}
._19{width:84.570027pt;}
._34{width:88.801280pt;}
._23{width:95.322240pt;}
._e{width:102.791893pt;}
._30{width:105.180587pt;}
._32{width:113.882880pt;}
._25{width:154.084693pt;}
._26{width:155.206613pt;}
._31{width:156.481707pt;}
._27{width:217.549440pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y31{bottom:84.672000pt;}
.y6d{bottom:87.232000pt;}
.y5c{bottom:92.992000pt;}
.y30{bottom:109.312000pt;}
.y6c{bottom:111.872000pt;}
.y5b{bottom:117.792000pt;}
.y2f{bottom:134.106667pt;}
.y6b{bottom:136.506667pt;}
.y5a{bottom:142.426667pt;}
.y2e{bottom:158.746667pt;}
.y6a{bottom:161.306667pt;}
.y59{bottom:167.066667pt;}
.y43{bottom:171.706667pt;}
.y2d{bottom:183.386667pt;}
.y69{bottom:185.946667pt;}
.y58{bottom:191.706667pt;}
.y42{bottom:196.346667pt;}
.y2c{bottom:208.026667pt;}
.y68{bottom:210.586667pt;}
.y57{bottom:216.506667pt;}
.y41{bottom:220.986667pt;}
.y2b{bottom:232.826667pt;}
.y67{bottom:235.226667pt;}
.y56{bottom:241.146667pt;}
.y40{bottom:245.786667pt;}
.y2a{bottom:257.466667pt;}
.y66{bottom:260.026667pt;}
.y55{bottom:265.786667pt;}
.y3f{bottom:270.426667pt;}
.y29{bottom:282.106667pt;}
.y65{bottom:284.666667pt;}
.y54{bottom:290.426667pt;}
.y3e{bottom:295.066667pt;}
.y28{bottom:306.786667pt;}
.y64{bottom:309.346667pt;}
.y53{bottom:315.266667pt;}
.y3d{bottom:319.746667pt;}
.y27{bottom:331.586667pt;}
.y63{bottom:334.146667pt;}
.y52{bottom:339.906667pt;}
.y3c{bottom:344.546667pt;}
.y26{bottom:356.226667pt;}
.y62{bottom:358.786667pt;}
.y51{bottom:364.546667pt;}
.y3b{bottom:369.186667pt;}
.y25{bottom:380.866667pt;}
.y61{bottom:383.426667pt;}
.y50{bottom:389.346667pt;}
.y3a{bottom:393.826667pt;}
.y24{bottom:405.666667pt;}
.y60{bottom:408.066667pt;}
.y4f{bottom:413.986667pt;}
.y39{bottom:418.466667pt;}
.y5f{bottom:429.506667pt;}
.y23{bottom:430.306667pt;}
.y4e{bottom:438.626667pt;}
.y38{bottom:443.266667pt;}
.y5e{bottom:454.306667pt;}
.y22{bottom:454.946667pt;}
.y4d{bottom:463.266667pt;}
.y37{bottom:467.906667pt;}
.y5d{bottom:478.946667pt;}
.y21{bottom:479.586667pt;}
.y4c{bottom:488.066667pt;}
.y36{bottom:492.546667pt;}
.y20{bottom:504.386667pt;}
.y4b{bottom:512.706667pt;}
.y35{bottom:517.346667pt;}
.y1f{bottom:529.026667pt;}
.y4a{bottom:537.373333pt;}
.y34{bottom:542.013333pt;}
.y1e{bottom:553.693333pt;}
.y49{bottom:562.173333pt;}
.y33{bottom:566.653333pt;}
.y1d{bottom:578.493333pt;}
.y48{bottom:586.813333pt;}
.y32{bottom:587.293333pt;}
.y1c{bottom:603.133333pt;}
.y47{bottom:611.453333pt;}
.y1b{bottom:627.773333pt;}
.y46{bottom:636.093333pt;}
.y1a{bottom:652.413333pt;}
.y45{bottom:660.893333pt;}
.y19{bottom:677.213333pt;}
.y44{bottom:681.373333pt;}
.y18{bottom:701.853333pt;}
.y17{bottom:726.493333pt;}
.y16{bottom:751.133333pt;}
.y15{bottom:775.973333pt;}
.y14{bottom:800.613333pt;}
.y13{bottom:825.253333pt;}
.y12{bottom:850.053333pt;}
.y11{bottom:874.693333pt;}
.y10{bottom:899.333333pt;}
.yf{bottom:923.973333pt;}
.ye{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.hd{height:52.284375pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.he{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x8{left:113.311988pt;}
.xa{left:166.746655pt;}
.xf{left:204.666655pt;}
.x10{left:245.626655pt;}
.xd{left:249.346655pt;}
.xc{left:262.146655pt;}
.xe{left:274.626655pt;}
.xb{left:277.986655pt;}
.x12{left:321.506655pt;}
.x11{left:327.906655pt;}
.x9{left:396.866655pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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