
    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_ee7d61344b58c793a390f4f4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_f4adcc5c963b07d821005fcb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_705709ffa67e4241e679c072.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_109e22db99be19243931fb19.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_2baa79372bff731c316bb939.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_69d7a854f951c3e24f0401a9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_a18b69ce841272726b4eaafa.woff')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;}
.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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-1.248000px;}
.lsb{letter-spacing:-1.200000px;}
.ls35{letter-spacing:-0.708000px;}
.ls18{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.372000px;}
.ls2f{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.828000px;}
.lsf{letter-spacing:0.948000px;}
.ls2{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.200000px;}
.lse{letter-spacing:1.800000px;}
.ls21{letter-spacing:3.000000px;}
.ls28{letter-spacing:6.540000px;}
.ls27{letter-spacing:6.600000px;}
.ls9{letter-spacing:9.000000px;}
.ls14{letter-spacing:10.200000px;}
.ls5{letter-spacing:12.540000px;}
.ls2e{letter-spacing:13.920000px;}
.ls15{letter-spacing:15.000000px;}
.ls1c{letter-spacing:16.140000px;}
.ls34{letter-spacing:17.400000px;}
.ls2d{letter-spacing:19.860000px;}
.ls10{letter-spacing:21.000000px;}
.lsc{letter-spacing:22.380000px;}
.ls8{letter-spacing:25.800000px;}
.ls20{letter-spacing:25.860000px;}
.lsd{letter-spacing:30.660000px;}
.ls2c{letter-spacing:31.740000px;}
.ls1d{letter-spacing:31.800000px;}
.ls29{letter-spacing:34.140000px;}
.ls1e{letter-spacing:34.260000px;}
.ls6{letter-spacing:35.400000px;}
.ls2b{letter-spacing:39.000000px;}
.ls26{letter-spacing:39.120000px;}
.ls30{letter-spacing:40.200000px;}
.ls1{letter-spacing:41.400000px;}
.ls1b{letter-spacing:43.740000px;}
.ls1a{letter-spacing:43.980000px;}
.ls12{letter-spacing:47.460000px;}
.ls24{letter-spacing:55.740000px;}
.ls7{letter-spacing:57.000000px;}
.ls22{letter-spacing:58.200000px;}
.ls1f{letter-spacing:64.140000px;}
.ls23{letter-spacing:65.400000px;}
.ls25{letter-spacing:70.200000px;}
.ls13{letter-spacing:79.860000px;}
.ls32{letter-spacing:137.520000px;}
.ls33{letter-spacing:167.598000px;}
.ls0{letter-spacing:942.930000px;}
.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;}
}
.ws2{word-spacing:-22.200000px;}
.ws5{word-spacing:-21.828000px;}
.ws0{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.628000px;}
.ws6{word-spacing:-20.460000px;}
.ws3{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.752000px;}
.ws1{word-spacing:0.000000px;}
._33{margin-left:-9.324000px;}
._4c{margin-left:-4.014000px;}
._a{margin-left:-2.268000px;}
._0{margin-left:-1.092000px;}
._1{width:1.008000px;}
._2{width:2.088000px;}
._14{width:3.786000px;}
._26{width:5.208000px;}
._28{width:6.216000px;}
._7{width:7.224000px;}
._1d{width:8.904000px;}
._8{width:10.836000px;}
._2a{width:12.012000px;}
._1a{width:13.020000px;}
._29{width:14.382000px;}
._46{width:15.420000px;}
._12{width:16.632000px;}
._11{width:17.724000px;}
._13{width:19.320000px;}
._39{width:22.830000px;}
._1b{width:23.970000px;}
._1c{width:25.254000px;}
._37{width:26.262000px;}
._21{width:27.468000px;}
._20{width:28.728000px;}
._36{width:29.820000px;}
._3c{width:30.990000px;}
._15{width:32.592000px;}
._16{width:33.768000px;}
._17{width:35.094000px;}
._2d{width:36.096000px;}
._27{width:37.380000px;}
._1e{width:38.556000px;}
._1f{width:39.606000px;}
._6{width:40.824000px;}
._5{width:41.832000px;}
._18{width:43.596000px;}
._19{width:45.192000px;}
._25{width:46.758000px;}
._32{width:48.132000px;}
._2c{width:49.560000px;}
._2b{width:51.156000px;}
._24{width:52.326000px;}
._56{width:53.430000px;}
._30{width:55.188000px;}
._31{width:57.066000px;}
._4{width:58.656000px;}
._3{width:59.928000px;}
._4d{width:61.020000px;}
._3f{width:62.244000px;}
._3a{width:63.492000px;}
._23{width:64.608000px;}
._22{width:65.760000px;}
._e{width:66.792000px;}
._f{width:68.124000px;}
._10{width:70.074000px;}
._3b{width:71.700000px;}
._49{width:73.122000px;}
._41{width:74.172000px;}
._40{width:75.516000px;}
._45{width:77.022000px;}
._43{width:78.378000px;}
._44{width:79.524000px;}
._51{width:80.928000px;}
._d{width:82.404000px;}
._c{width:84.168000px;}
._4e{width:85.392000px;}
._4f{width:86.544000px;}
._47{width:87.948000px;}
._48{width:89.040000px;}
._50{width:91.644000px;}
._3e{width:92.820000px;}
._3d{width:93.912000px;}
._34{width:96.096000px;}
._35{width:97.356000px;}
._52{width:101.652000px;}
._42{width:103.236000px;}
._b{width:106.008000px;}
._9{width:107.268000px;}
._4a{width:113.820000px;}
._4b{width:114.996000px;}
._38{width:122.814000px;}
._53{width:124.932000px;}
._54{width:126.624000px;}
._55{width:136.860000px;}
._2e{width:143.640000px;}
._2f{width:145.320000px;}
._57{width:843.330000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y37{bottom:95.437500px;}
.y38{bottom:96.037500px;}
.y2d{bottom:120.037500px;}
.y2c{bottom:144.337500px;}
.y3c{bottom:167.775000px;}
.y2b{bottom:168.375000px;}
.y2a{bottom:192.675000px;}
.y29{bottom:216.075000px;}
.y36{bottom:216.675000px;}
.y28{bottom:240.375000px;}
.y35{bottom:240.975000px;}
.y27{bottom:264.975000px;}
.y3b{bottom:288.675000px;}
.y26{bottom:289.275000px;}
.y25{bottom:313.275000px;}
.y24{bottom:337.620000px;}
.y3e{bottom:361.005000px;}
.y23{bottom:361.620000px;}
.y22{bottom:385.905000px;}
.y41{bottom:409.320000px;}
.y21{bottom:409.905000px;}
.y20{bottom:434.205000px;}
.y1f{bottom:458.205000px;}
.y1e{bottom:482.505000px;}
.y1d{bottom:506.550000px;}
.y1c{bottom:530.850000px;}
.y1b{bottom:554.850000px;}
.y1a{bottom:579.150000px;}
.y19{bottom:603.150000px;}
.y18{bottom:626.850000px;}
.y34{bottom:627.450000px;}
.y40{bottom:650.850000px;}
.y17{bottom:651.450000px;}
.y16{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y3a{bottom:723.480000px;}
.y14{bottom:724.080000px;}
.y39{bottom:747.480000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.y3d{bottom:916.725000px;}
.yc{bottom:917.325000px;}
.yb{bottom:941.325000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.025000px;}
.y33{bottom:989.625000px;}
.y8{bottom:1013.355000px;}
.y32{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y3f{bottom:1061.670000px;}
.y6{bottom:1062.255000px;}
.y31{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y30{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y2f{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2e{bottom:1158.870000px;}
.h6{height:58.898438px;}
.h3{height:61.670545px;}
.h4{height:72.638672px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.h7{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.937500px;}
.x6{left:110.137500px;}
.x5{left:127.537500px;}
.x3{left:142.537500px;}
.x4{left:330.720000px;}
.x7{left:373.620000px;}
.x1{left:430.650000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.109333pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls35{letter-spacing:-0.629333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.330667pt;}
.ls2f{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.736000pt;}
.lsf{letter-spacing:0.842667pt;}
.ls2{letter-spacing:0.896000pt;}
.lsa{letter-spacing:1.066667pt;}
.lse{letter-spacing:1.600000pt;}
.ls21{letter-spacing:2.666667pt;}
.ls28{letter-spacing:5.813333pt;}
.ls27{letter-spacing:5.866667pt;}
.ls9{letter-spacing:8.000000pt;}
.ls14{letter-spacing:9.066667pt;}
.ls5{letter-spacing:11.146667pt;}
.ls2e{letter-spacing:12.373333pt;}
.ls15{letter-spacing:13.333333pt;}
.ls1c{letter-spacing:14.346667pt;}
.ls34{letter-spacing:15.466667pt;}
.ls2d{letter-spacing:17.653333pt;}
.ls10{letter-spacing:18.666667pt;}
.lsc{letter-spacing:19.893333pt;}
.ls8{letter-spacing:22.933333pt;}
.ls20{letter-spacing:22.986667pt;}
.lsd{letter-spacing:27.253333pt;}
.ls2c{letter-spacing:28.213333pt;}
.ls1d{letter-spacing:28.266667pt;}
.ls29{letter-spacing:30.346667pt;}
.ls1e{letter-spacing:30.453333pt;}
.ls6{letter-spacing:31.466667pt;}
.ls2b{letter-spacing:34.666667pt;}
.ls26{letter-spacing:34.773333pt;}
.ls30{letter-spacing:35.733333pt;}
.ls1{letter-spacing:36.800000pt;}
.ls1b{letter-spacing:38.880000pt;}
.ls1a{letter-spacing:39.093333pt;}
.ls12{letter-spacing:42.186667pt;}
.ls24{letter-spacing:49.546667pt;}
.ls7{letter-spacing:50.666667pt;}
.ls22{letter-spacing:51.733333pt;}
.ls1f{letter-spacing:57.013333pt;}
.ls23{letter-spacing:58.133333pt;}
.ls25{letter-spacing:62.400000pt;}
.ls13{letter-spacing:70.986667pt;}
.ls32{letter-spacing:122.240000pt;}
.ls33{letter-spacing:148.976000pt;}
.ls0{letter-spacing:838.160000pt;}
.ws2{word-spacing:-19.733333pt;}
.ws5{word-spacing:-19.402667pt;}
.ws0{word-spacing:-18.666667pt;}
.ws4{word-spacing:-18.336000pt;}
.ws6{word-spacing:-18.186667pt;}
.ws3{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.557333pt;}
.ws1{word-spacing:0.000000pt;}
._33{margin-left:-8.288000pt;}
._4c{margin-left:-3.568000pt;}
._a{margin-left:-2.016000pt;}
._0{margin-left:-0.970667pt;}
._1{width:0.896000pt;}
._2{width:1.856000pt;}
._14{width:3.365333pt;}
._26{width:4.629333pt;}
._28{width:5.525333pt;}
._7{width:6.421333pt;}
._1d{width:7.914667pt;}
._8{width:9.632000pt;}
._2a{width:10.677333pt;}
._1a{width:11.573333pt;}
._29{width:12.784000pt;}
._46{width:13.706667pt;}
._12{width:14.784000pt;}
._11{width:15.754667pt;}
._13{width:17.173333pt;}
._39{width:20.293333pt;}
._1b{width:21.306667pt;}
._1c{width:22.448000pt;}
._37{width:23.344000pt;}
._21{width:24.416000pt;}
._20{width:25.536000pt;}
._36{width:26.506667pt;}
._3c{width:27.546667pt;}
._15{width:28.970667pt;}
._16{width:30.016000pt;}
._17{width:31.194667pt;}
._2d{width:32.085333pt;}
._27{width:33.226667pt;}
._1e{width:34.272000pt;}
._1f{width:35.205333pt;}
._6{width:36.288000pt;}
._5{width:37.184000pt;}
._18{width:38.752000pt;}
._19{width:40.170667pt;}
._25{width:41.562667pt;}
._32{width:42.784000pt;}
._2c{width:44.053333pt;}
._2b{width:45.472000pt;}
._24{width:46.512000pt;}
._56{width:47.493333pt;}
._30{width:49.056000pt;}
._31{width:50.725333pt;}
._4{width:52.138667pt;}
._3{width:53.269333pt;}
._4d{width:54.240000pt;}
._3f{width:55.328000pt;}
._3a{width:56.437333pt;}
._23{width:57.429333pt;}
._22{width:58.453333pt;}
._e{width:59.370667pt;}
._f{width:60.554667pt;}
._10{width:62.288000pt;}
._3b{width:63.733333pt;}
._49{width:64.997333pt;}
._41{width:65.930667pt;}
._40{width:67.125333pt;}
._45{width:68.464000pt;}
._43{width:69.669333pt;}
._44{width:70.688000pt;}
._51{width:71.936000pt;}
._d{width:73.248000pt;}
._c{width:74.816000pt;}
._4e{width:75.904000pt;}
._4f{width:76.928000pt;}
._47{width:78.176000pt;}
._48{width:79.146667pt;}
._50{width:81.461333pt;}
._3e{width:82.506667pt;}
._3d{width:83.477333pt;}
._34{width:85.418667pt;}
._35{width:86.538667pt;}
._52{width:90.357333pt;}
._42{width:91.765333pt;}
._b{width:94.229333pt;}
._9{width:95.349333pt;}
._4a{width:101.173333pt;}
._4b{width:102.218667pt;}
._38{width:109.168000pt;}
._53{width:111.050667pt;}
._54{width:112.554667pt;}
._55{width:121.653333pt;}
._2e{width:127.680000pt;}
._2f{width:129.173333pt;}
._57{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y37{bottom:84.833333pt;}
.y38{bottom:85.366667pt;}
.y2d{bottom:106.700000pt;}
.y2c{bottom:128.300000pt;}
.y3c{bottom:149.133333pt;}
.y2b{bottom:149.666667pt;}
.y2a{bottom:171.266667pt;}
.y29{bottom:192.066667pt;}
.y36{bottom:192.600000pt;}
.y28{bottom:213.666667pt;}
.y35{bottom:214.200000pt;}
.y27{bottom:235.533333pt;}
.y3b{bottom:256.600000pt;}
.y26{bottom:257.133333pt;}
.y25{bottom:278.466667pt;}
.y24{bottom:300.106667pt;}
.y3e{bottom:320.893333pt;}
.y23{bottom:321.440000pt;}
.y22{bottom:343.026667pt;}
.y41{bottom:363.840000pt;}
.y21{bottom:364.360000pt;}
.y20{bottom:385.960000pt;}
.y1f{bottom:407.293333pt;}
.y1e{bottom:428.893333pt;}
.y1d{bottom:450.266667pt;}
.y1c{bottom:471.866667pt;}
.y1b{bottom:493.200000pt;}
.y1a{bottom:514.800000pt;}
.y19{bottom:536.133333pt;}
.y18{bottom:557.200000pt;}
.y34{bottom:557.733333pt;}
.y40{bottom:578.533333pt;}
.y17{bottom:579.066667pt;}
.y16{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y3a{bottom:643.093333pt;}
.y14{bottom:643.626667pt;}
.y39{bottom:664.426667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.y3d{bottom:814.866667pt;}
.yc{bottom:815.400000pt;}
.yb{bottom:836.733333pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.133333pt;}
.y33{bottom:879.666667pt;}
.y8{bottom:900.760000pt;}
.y32{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y3f{bottom:943.706667pt;}
.y6{bottom:944.226667pt;}
.y31{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y30{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y2f{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2e{bottom:1030.106667pt;}
.h6{height:52.354167pt;}
.h3{height:54.818262pt;}
.h4{height:64.567708pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.h7{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.500000pt;}
.x6{left:97.900000pt;}
.x5{left:113.366667pt;}
.x3{left:126.700000pt;}
.x4{left:293.973333pt;}
.x7{left:332.106667pt;}
.x1{left:382.800000pt;}
}




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