
    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_b2b66c719b063411001b55e7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c063feafc25a5957027eb9c1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2861d6a211af31a68e91abd2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_dca57d4541a4bdb2abf22b51.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_aad96923b7f904cb7bcc117d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.494000px;}
.ls12{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.654000px;}
.ls17{letter-spacing:-0.533400px;}
.ls4{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.414000px;}
.ls13{letter-spacing:-0.301200px;}
.ls3{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.107400px;}
.ls9{letter-spacing:-0.069600px;}
.lsb{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.033840px;}
.ls2{letter-spacing:0.038880px;}
.ls6{letter-spacing:0.132600px;}
.lsc{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.175200px;}
.lsa{letter-spacing:0.186600px;}
.ls5{letter-spacing:0.202800px;}
.ls10{letter-spacing:0.471600px;}
.lsf{letter-spacing:38.106720px;}
.ls16{letter-spacing:42.570720px;}
.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;}
}
.ws5{word-spacing:-21.844560px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws7{word-spacing:-15.102840px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.977360px;}
.wsc{word-spacing:-13.692360px;}
.ws17{word-spacing:-13.680960px;}
.wse{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.436160px;}
.ws8{word-spacing:-13.398360px;}
.ws13{word-spacing:-13.204560px;}
.ws16{word-spacing:-12.972360px;}
.wsf{word-spacing:-12.845760px;}
.ws12{word-spacing:-12.725760px;}
.ws14{word-spacing:-12.011760px;}
.ws15{word-spacing:-11.993760px;}
.ws6{word-spacing:-9.437760px;}
.ws9{word-spacing:-8.786880px;}
.ws10{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._22{margin-left:-120.382560px;}
._11{margin-left:-116.242560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._19{margin-left:-32.468640px;}
._28{margin-left:-5.373240px;}
._29{margin-left:-4.161360px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.317240px;}
._2a{width:2.421600px;}
._2b{width:3.896400px;}
._33{width:5.856480px;}
._32{width:7.680720px;}
._31{width:9.639000px;}
._30{width:11.409240px;}
._2f{width:12.434520px;}
._2d{width:15.537600px;}
._2c{width:16.673040px;}
._2e{width:19.182960px;}
._34{width:20.318400px;}
._35{width:25.030080px;}
._36{width:26.102160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.960000px;}
.y4b{bottom:22.140000px;}
.y48{bottom:22.320000px;}
.y6{bottom:61.560000px;}
.y80{bottom:97.020000px;}
.y61{bottom:97.920000px;}
.y31{bottom:104.940000px;}
.y60{bottom:118.980000px;}
.y30{bottom:135.036000px;}
.y5f{bottom:140.076000px;}
.y2f{bottom:156.090000px;}
.y5e{bottom:161.130000px;}
.y7f{bottom:175.710000px;}
.y2e{bottom:177.150000px;}
.y5d{bottom:182.190000px;}
.y7e{bottom:196.770000px;}
.y2d{bottom:198.210000px;}
.y5c{bottom:203.250000px;}
.y7d{bottom:217.830000px;}
.y2c{bottom:219.270000px;}
.y5b{bottom:224.310000px;}
.y7c{bottom:238.890000px;}
.y2b{bottom:240.330000px;}
.y5a{bottom:245.370000px;}
.y7b{bottom:259.950000px;}
.y2a{bottom:261.390000px;}
.y59{bottom:266.430000px;}
.y7a{bottom:281.010000px;}
.y29{bottom:282.450000px;}
.y58{bottom:287.490000px;}
.y79{bottom:302.070000px;}
.y28{bottom:303.510000px;}
.y57{bottom:308.550000px;}
.y78{bottom:323.130000px;}
.y27{bottom:324.570000px;}
.y56{bottom:329.610000px;}
.y77{bottom:344.190000px;}
.y26{bottom:345.630000px;}
.y55{bottom:350.670000px;}
.y76{bottom:365.250000px;}
.y25{bottom:366.690000px;}
.y54{bottom:371.730000px;}
.y75{bottom:386.355000px;}
.y24{bottom:387.795000px;}
.y53{bottom:392.835000px;}
.y74{bottom:407.415000px;}
.y52{bottom:407.955000px;}
.y23{bottom:408.855000px;}
.y73{bottom:428.475000px;}
.y22{bottom:429.915000px;}
.y51{bottom:445.395000px;}
.y72{bottom:449.535000px;}
.y21{bottom:450.975000px;}
.y71{bottom:470.595000px;}
.y20{bottom:472.035000px;}
.y50{bottom:482.835000px;}
.y70{bottom:491.655000px;}
.y1f{bottom:493.095000px;}
.y6f{bottom:512.715000px;}
.y1e{bottom:514.155000px;}
.y4f{bottom:520.095000px;}
.y6e{bottom:533.775000px;}
.y1d{bottom:535.215000px;}
.y6d{bottom:554.835000px;}
.y1c{bottom:556.275000px;}
.y4e{bottom:557.535000px;}
.y6c{bottom:575.895000px;}
.y1b{bottom:577.335000px;}
.y4d{bottom:594.795000px;}
.y6b{bottom:596.955000px;}
.y1a{bottom:598.395000px;}
.y6a{bottom:618.015000px;}
.y19{bottom:619.455000px;}
.y4c{bottom:632.265000px;}
.y69{bottom:639.105000px;}
.y18{bottom:640.545000px;}
.y68{bottom:659.985000px;}
.y17{bottom:661.605000px;}
.y4a{bottom:669.705000px;}
.y67{bottom:681.045000px;}
.y16{bottom:682.665000px;}
.y66{bottom:702.105000px;}
.y15{bottom:703.725000px;}
.y49{bottom:706.965000px;}
.y65{bottom:723.165000px;}
.y14{bottom:724.785000px;}
.y64{bottom:744.225000px;}
.y47{bottom:744.405000px;}
.y13{bottom:748.185000px;}
.y63{bottom:765.285000px;}
.y12{bottom:778.065000px;}
.y45{bottom:781.665000px;}
.y62{bottom:786.345000px;}
.y11{bottom:799.125000px;}
.y44{bottom:807.405000px;}
.y10{bottom:820.185000px;}
.y43{bottom:828.465000px;}
.yf{bottom:841.245000px;}
.y42{bottom:849.525000px;}
.ye{bottom:862.305000px;}
.y41{bottom:870.585000px;}
.yd{bottom:883.545000px;}
.y40{bottom:891.690000px;}
.yc{bottom:906.810000px;}
.y3f{bottom:912.750000px;}
.yb{bottom:933.090000px;}
.y3e{bottom:933.810000px;}
.ya{bottom:953.970000px;}
.y3d{bottom:954.870000px;}
.y9{bottom:970.710000px;}
.y3c{bottom:975.930000px;}
.y8{bottom:993.030000px;}
.y3b{bottom:996.990000px;}
.y3a{bottom:1018.050000px;}
.y7{bottom:1018.230000px;}
.y39{bottom:1039.110000px;}
.y5{bottom:1058.370000px;}
.y38{bottom:1060.170000px;}
.y37{bottom:1081.230000px;}
.y4{bottom:1090.590000px;}
.y36{bottom:1102.290000px;}
.y3{bottom:1122.810000px;}
.y35{bottom:1123.350000px;}
.y34{bottom:1144.440000px;}
.y2{bottom:1154.880000px;}
.y33{bottom:1165.500000px;}
.y1{bottom:1188.900000px;}
.y32{bottom:1193.400000px;}
.h9{height:18.360000px;}
.ha{height:36.540000px;}
.hb{height:36.720000px;}
.h7{height:38.671172px;}
.h5{height:59.439023px;}
.h8{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:83.880000px;}
.w3{width:93.456000px;}
.w7{width:119.916000px;}
.w8{width:141.156000px;}
.w6{width:145.980000px;}
.w5{width:191.235000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.xc{left:-44.280000px;}
.x10{left:-13.680000px;}
.x0{left:0.000000px;}
.x12{left:9.720000px;}
.xe{left:18.000000px;}
.x8{left:26.999987px;}
.x6{left:53.999987px;}
.x9{left:56.880000px;}
.x13{left:66.239987px;}
.x7{left:80.999987px;}
.x14{left:93.455987px;}
.xa{left:151.230000px;}
.x5{left:181.469987px;}
.xb{left:235.830000px;}
.x3{left:272.414987px;}
.x2{left:350.714987px;}
.x4{left:419.294987px;}
.xd{left:427.965000px;}
.x1{left:479.444987px;}
.xf{left:574.665000px;}
.x11{left:695.310000px;}
.x15{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.328000pt;}
.ls12{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.581333pt;}
.ls17{letter-spacing:-0.474133pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.368000pt;}
.ls13{letter-spacing:-0.267733pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.095467pt;}
.ls9{letter-spacing:-0.061867pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.030080pt;}
.ls2{letter-spacing:0.034560pt;}
.ls6{letter-spacing:0.117867pt;}
.lsc{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.155733pt;}
.lsa{letter-spacing:0.165867pt;}
.ls5{letter-spacing:0.180267pt;}
.ls10{letter-spacing:0.419200pt;}
.lsf{letter-spacing:33.872640pt;}
.ls16{letter-spacing:37.840640pt;}
.ws5{word-spacing:-19.417387pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws7{word-spacing:-13.424747pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.424320pt;}
.wsc{word-spacing:-12.170987pt;}
.ws17{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.943253pt;}
.ws8{word-spacing:-11.909653pt;}
.ws13{word-spacing:-11.737387pt;}
.ws16{word-spacing:-11.530987pt;}
.wsf{word-spacing:-11.418453pt;}
.ws12{word-spacing:-11.311787pt;}
.ws14{word-spacing:-10.677120pt;}
.ws15{word-spacing:-10.661120pt;}
.ws6{word-spacing:-8.389120pt;}
.ws9{word-spacing:-7.810560pt;}
.ws10{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._22{margin-left:-107.006720pt;}
._11{margin-left:-103.326720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._19{margin-left:-28.861013pt;}
._28{margin-left:-4.776213pt;}
._29{margin-left:-3.698987pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.170880pt;}
._2a{width:2.152533pt;}
._2b{width:3.463467pt;}
._33{width:5.205760pt;}
._32{width:6.827307pt;}
._31{width:8.568000pt;}
._30{width:10.141547pt;}
._2f{width:11.052907pt;}
._2d{width:13.811200pt;}
._2c{width:14.820480pt;}
._2e{width:17.051520pt;}
._34{width:18.060800pt;}
._35{width:22.248960pt;}
._36{width:23.201920pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:3.520000pt;}
.y4b{bottom:19.680000pt;}
.y48{bottom:19.840000pt;}
.y6{bottom:54.720000pt;}
.y80{bottom:86.240000pt;}
.y61{bottom:87.040000pt;}
.y31{bottom:93.280000pt;}
.y60{bottom:105.760000pt;}
.y30{bottom:120.032000pt;}
.y5f{bottom:124.512000pt;}
.y2f{bottom:138.746667pt;}
.y5e{bottom:143.226667pt;}
.y7f{bottom:156.186667pt;}
.y2e{bottom:157.466667pt;}
.y5d{bottom:161.946667pt;}
.y7e{bottom:174.906667pt;}
.y2d{bottom:176.186667pt;}
.y5c{bottom:180.666667pt;}
.y7d{bottom:193.626667pt;}
.y2c{bottom:194.906667pt;}
.y5b{bottom:199.386667pt;}
.y7c{bottom:212.346667pt;}
.y2b{bottom:213.626667pt;}
.y5a{bottom:218.106667pt;}
.y7b{bottom:231.066667pt;}
.y2a{bottom:232.346667pt;}
.y59{bottom:236.826667pt;}
.y7a{bottom:249.786667pt;}
.y29{bottom:251.066667pt;}
.y58{bottom:255.546667pt;}
.y79{bottom:268.506667pt;}
.y28{bottom:269.786667pt;}
.y57{bottom:274.266667pt;}
.y78{bottom:287.226667pt;}
.y27{bottom:288.506667pt;}
.y56{bottom:292.986667pt;}
.y77{bottom:305.946667pt;}
.y26{bottom:307.226667pt;}
.y55{bottom:311.706667pt;}
.y76{bottom:324.666667pt;}
.y25{bottom:325.946667pt;}
.y54{bottom:330.426667pt;}
.y75{bottom:343.426667pt;}
.y24{bottom:344.706667pt;}
.y53{bottom:349.186667pt;}
.y74{bottom:362.146667pt;}
.y52{bottom:362.626667pt;}
.y23{bottom:363.426667pt;}
.y73{bottom:380.866667pt;}
.y22{bottom:382.146667pt;}
.y51{bottom:395.906667pt;}
.y72{bottom:399.586667pt;}
.y21{bottom:400.866667pt;}
.y71{bottom:418.306667pt;}
.y20{bottom:419.586667pt;}
.y50{bottom:429.186667pt;}
.y70{bottom:437.026667pt;}
.y1f{bottom:438.306667pt;}
.y6f{bottom:455.746667pt;}
.y1e{bottom:457.026667pt;}
.y4f{bottom:462.306667pt;}
.y6e{bottom:474.466667pt;}
.y1d{bottom:475.746667pt;}
.y6d{bottom:493.186667pt;}
.y1c{bottom:494.466667pt;}
.y4e{bottom:495.586667pt;}
.y6c{bottom:511.906667pt;}
.y1b{bottom:513.186667pt;}
.y4d{bottom:528.706667pt;}
.y6b{bottom:530.626667pt;}
.y1a{bottom:531.906667pt;}
.y6a{bottom:549.346667pt;}
.y19{bottom:550.626667pt;}
.y4c{bottom:562.013333pt;}
.y69{bottom:568.093333pt;}
.y18{bottom:569.373333pt;}
.y68{bottom:586.653333pt;}
.y17{bottom:588.093333pt;}
.y4a{bottom:595.293333pt;}
.y67{bottom:605.373333pt;}
.y16{bottom:606.813333pt;}
.y66{bottom:624.093333pt;}
.y15{bottom:625.533333pt;}
.y49{bottom:628.413333pt;}
.y65{bottom:642.813333pt;}
.y14{bottom:644.253333pt;}
.y64{bottom:661.533333pt;}
.y47{bottom:661.693333pt;}
.y13{bottom:665.053333pt;}
.y63{bottom:680.253333pt;}
.y12{bottom:691.613333pt;}
.y45{bottom:694.813333pt;}
.y62{bottom:698.973333pt;}
.y11{bottom:710.333333pt;}
.y44{bottom:717.693333pt;}
.y10{bottom:729.053333pt;}
.y43{bottom:736.413333pt;}
.yf{bottom:747.773333pt;}
.y42{bottom:755.133333pt;}
.ye{bottom:766.493333pt;}
.y41{bottom:773.853333pt;}
.yd{bottom:785.373333pt;}
.y40{bottom:792.613333pt;}
.yc{bottom:806.053333pt;}
.y3f{bottom:811.333333pt;}
.yb{bottom:829.413333pt;}
.y3e{bottom:830.053333pt;}
.ya{bottom:847.973333pt;}
.y3d{bottom:848.773333pt;}
.y9{bottom:862.853333pt;}
.y3c{bottom:867.493333pt;}
.y8{bottom:882.693333pt;}
.y3b{bottom:886.213333pt;}
.y3a{bottom:904.933333pt;}
.y7{bottom:905.093333pt;}
.y39{bottom:923.653333pt;}
.y5{bottom:940.773333pt;}
.y38{bottom:942.373333pt;}
.y37{bottom:961.093333pt;}
.y4{bottom:969.413333pt;}
.y36{bottom:979.813333pt;}
.y3{bottom:998.053333pt;}
.y35{bottom:998.533333pt;}
.y34{bottom:1017.280000pt;}
.y2{bottom:1026.560000pt;}
.y33{bottom:1036.000000pt;}
.y1{bottom:1056.800000pt;}
.y32{bottom:1060.800000pt;}
.h9{height:16.320000pt;}
.ha{height:32.480000pt;}
.hb{height:32.640000pt;}
.h7{height:34.374375pt;}
.h5{height:52.834688pt;}
.h8{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:74.560000pt;}
.w3{width:83.072000pt;}
.w7{width:106.592000pt;}
.w8{width:125.472000pt;}
.w6{width:129.760000pt;}
.w5{width:169.986667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.xc{left:-39.360000pt;}
.x10{left:-12.160000pt;}
.x0{left:0.000000pt;}
.x12{left:8.640000pt;}
.xe{left:16.000000pt;}
.x8{left:23.999988pt;}
.x6{left:47.999988pt;}
.x9{left:50.560000pt;}
.x13{left:58.879988pt;}
.x7{left:71.999988pt;}
.x14{left:83.071988pt;}
.xa{left:134.426667pt;}
.x5{left:161.306655pt;}
.xb{left:209.626667pt;}
.x3{left:242.146655pt;}
.x2{left:311.746655pt;}
.x4{left:372.706655pt;}
.xd{left:380.413333pt;}
.x1{left:426.173321pt;}
.xf{left:510.813333pt;}
.x11{left:618.053333pt;}
.x15{left:746.079988pt;}
}




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