
    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_7c18aa01f142662eb715ef94.woff')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_c7d67aa694b06014f7be2bfe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_791699ed0994651b64ec022c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.772000;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_6c834d4c9228fdfa9db29387.woff')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_2bc8bfb08d45418d128cb600.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_415c6cbed319f33e518114d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_cdfdca04b3f186929e86eb2f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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_428ccb902a3659c03c15559f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.717285;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_7218634341f394992d9dc07a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_e679a98299883f6953e78b6b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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:ffb;src:url('chunks/assets/font_4b555b9d38284bbeac02ef98.woff')format("woff");}.ffb{font-family:ffb;line-height:0.717285;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:ffc;src:url('chunks/assets/font_4fa93221c67cad891727983c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.765625;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:ffd;src:url('chunks/assets/font_a6782f02aa8caca9c630470a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.945312;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;}
.m1{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-11.004000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.004000px;}
.v4{vertical-align:14.672280px;}
.v1{vertical-align:24.480000px;}
.ls29{letter-spacing:-3.640972px;}
.ls23{letter-spacing:-0.205344px;}
.ls28{letter-spacing:-0.200279px;}
.ls20{letter-spacing:-0.198720px;}
.ls25{letter-spacing:-0.193677px;}
.ls16{letter-spacing:-0.185472px;}
.ls21{letter-spacing:-0.172224px;}
.ls2b{letter-spacing:-0.171668px;}
.ls22{letter-spacing:-0.158976px;}
.ls18{letter-spacing:-0.145728px;}
.ls2c{letter-spacing:-0.145257px;}
.ls11{letter-spacing:-0.139104px;}
.ls14{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.125856px;}
.ls27{letter-spacing:-0.123249px;}
.ls1c{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.112608px;}
.ls19{letter-spacing:-0.105984px;}
.ls1f{letter-spacing:-0.099360px;}
.ls24{letter-spacing:-0.092736px;}
.ls1e{letter-spacing:-0.086112px;}
.ls1d{letter-spacing:-0.079488px;}
.ls26{letter-spacing:-0.076297px;}
.ls13{letter-spacing:-0.072864px;}
.ls1b{letter-spacing:-0.066240px;}
.ls1a{letter-spacing:-0.059616px;}
.ls2a{letter-spacing:-0.013205px;}
.ls12{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003168px;}
.ls1{letter-spacing:0.061920px;}
.ls0{letter-spacing:0.062064px;}
.ls4{letter-spacing:0.063360px;}
.ls3{letter-spacing:0.067680px;}
.lsf{letter-spacing:0.469654px;}
.lsc{letter-spacing:5.168160px;}
.lsd{letter-spacing:5.481648px;}
.ls7{letter-spacing:6.167520px;}
.lsa{letter-spacing:8.264160px;}
.lsb{letter-spacing:8.265600px;}
.lse{letter-spacing:11.868480px;}
.ls9{letter-spacing:34.781328px;}
.ls8{letter-spacing:34.782768px;}
.ls5{letter-spacing:38.172240px;}
.ls6{letter-spacing:38.238048px;}
.ls10{letter-spacing:47.934827px;}
.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;}
}
.ws13{word-spacing:-16.315778px;}
.ws16{word-spacing:-16.239481px;}
.ws12{word-spacing:-16.122102px;}
.ws1a{word-spacing:-14.276306px;}
.ws0{word-spacing:-13.248000px;}
.ws6{word-spacing:-13.188384px;}
.ws8{word-spacing:-13.181760px;}
.wse{word-spacing:-13.175136px;}
.ws11{word-spacing:-13.161888px;}
.ws10{word-spacing:-13.155264px;}
.ws9{word-spacing:-13.148640px;}
.ws5{word-spacing:-13.142016px;}
.wsc{word-spacing:-13.135392px;}
.ws7{word-spacing:-13.128768px;}
.ws4{word-spacing:-13.122144px;}
.wsa{word-spacing:-13.115520px;}
.wsf{word-spacing:-13.108896px;}
.wsd{word-spacing:-13.089024px;}
.ws2{word-spacing:-13.062528px;}
.wsb{word-spacing:-13.049280px;}
.ws1c{word-spacing:-12.236834px;}
.ws1d{word-spacing:-12.223628px;}
.ws1e{word-spacing:-12.091576px;}
.ws18{word-spacing:-10.635334px;}
.ws17{word-spacing:-2.641280px;}
.ws19{word-spacing:-0.051354px;}
.ws14{word-spacing:-0.040349px;}
.ws20{word-spacing:0.000000px;}
.ws1{word-spacing:0.006624px;}
.ws1b{word-spacing:0.023582px;}
.ws3{word-spacing:0.119232px;}
.ws1f{word-spacing:0.261754px;}
.ws15{word-spacing:0.266744px;}
._5{margin-left:-2.030256px;}
._1{margin-left:-1.017360px;}
._0{width:1.059840px;}
._2{width:2.185920px;}
._d{width:3.485232px;}
._8{width:4.758624px;}
._3{width:6.160320px;}
._4{width:7.160976px;}
._7{width:8.876160px;}
._a{width:10.465920px;}
._9{width:11.612736px;}
._b{width:23.250240px;}
._c{width:24.551856px;}
._6{width:34.858656px;}
._e{width:812.834295px;}
.fc4{color:rgb(255,192,0);}
.fc3{color:rgb(4,50,255);}
.fc1{color:rgb(238,0,0);}
.fc2{color:rgb(78,143,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.013040px;}
.fs1{font-size:38.880000px;}
.fs3{font-size:40.349272px;}
.fs6{font-size:44.017387px;}
.fs4{font-size:51.353618px;}
.fs2{font-size:58.689850px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y27{bottom:11.806615px;}
.y29{bottom:25.562005px;}
.y26{bottom:27.396055px;}
.y28{bottom:71.413450px;}
.y23{bottom:100.758370px;}
.y32{bottom:115.430830px;}
.y31{bottom:128.269240px;}
.y25{bottom:131.020330px;}
.y20{bottom:138.600000px;}
.y30{bottom:141.107650px;}
.y24{bottom:146.609815px;}
.y2f{bottom:154.863080px;}
.y1f{bottom:159.480000px;}
.y2e{bottom:167.701486px;}
.y1e{bottom:180.000000px;}
.y2d{bottom:181.456915px;}
.y2c{bottom:194.295325px;}
.y1d{bottom:200.880000px;}
.y1c{bottom:217.080000px;}
.y21{bottom:283.247140px;}
.y2b{bottom:303.421765px;}
.y22{bottom:351.107215px;}
.y2a{bottom:361.194565px;}
.y1b{bottom:601.200000px;}
.y1a{bottom:622.080000px;}
.y19{bottom:642.600000px;}
.y18{bottom:663.480000px;}
.y17{bottom:684.360000px;}
.y16{bottom:704.880000px;}
.y15{bottom:725.760000px;}
.y14{bottom:746.640000px;}
.y13{bottom:767.160000px;}
.y12{bottom:788.040000px;}
.y11{bottom:808.560000px;}
.y10{bottom:829.440000px;}
.yf{bottom:850.320000px;}
.ye{bottom:870.840000px;}
.yd{bottom:891.720000px;}
.yc{bottom:912.240000px;}
.yb{bottom:933.120000px;}
.ya{bottom:954.000000px;}
.y9{bottom:974.520000px;}
.y8{bottom:995.400000px;}
.y7{bottom:1016.280000px;}
.y6{bottom:1036.800000px;}
.y5{bottom:1057.680000px;}
.y4{bottom:1078.200000px;}
.y3{bottom:1099.080000px;}
.y2{bottom:1119.960000px;}
.y1{bottom:1140.480000px;}
.ha{height:33.700812px;}
.h7{height:37.788039px;}
.h8{height:38.352044px;}
.h6{height:43.243644px;}
.h3{height:48.487680px;}
.h4{height:51.468480px;}
.h9{height:52.460499px;}
.h2{height:54.714240px;}
.h5{height:379.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:680.400000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:9.595740px;}
.x9{left:82.284645px;}
.xa{left:99.416745px;}
.x3{left:106.200072px;}
.x1{left:111.068136px;}
.xb{left:125.398995px;}
.x4{left:133.200072px;}
.x6{left:135.975204px;}
.x5{left:160.200072px;}
.x10{left:175.873545px;}
.xe{left:215.309895px;}
.x11{left:256.823745px;}
.xd{left:348.952545px;}
.xc{left:370.006545px;}
.x2{left:386.976240px;}
.x12{left:482.015895px;}
.xf{left:490.427595px;}
.x7{left:786.960360px;}
@media print{
.v2{vertical-align:-9.781333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.781333pt;}
.v4{vertical-align:13.042027pt;}
.v1{vertical-align:21.760000pt;}
.ls29{letter-spacing:-3.236419pt;}
.ls23{letter-spacing:-0.182528pt;}
.ls28{letter-spacing:-0.178026pt;}
.ls20{letter-spacing:-0.176640pt;}
.ls25{letter-spacing:-0.172157pt;}
.ls16{letter-spacing:-0.164864pt;}
.ls21{letter-spacing:-0.153088pt;}
.ls2b{letter-spacing:-0.152594pt;}
.ls22{letter-spacing:-0.141312pt;}
.ls18{letter-spacing:-0.129536pt;}
.ls2c{letter-spacing:-0.129118pt;}
.ls11{letter-spacing:-0.123648pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.111872pt;}
.ls27{letter-spacing:-0.109554pt;}
.ls1c{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.100096pt;}
.ls19{letter-spacing:-0.094208pt;}
.ls1f{letter-spacing:-0.088320pt;}
.ls24{letter-spacing:-0.082432pt;}
.ls1e{letter-spacing:-0.076544pt;}
.ls1d{letter-spacing:-0.070656pt;}
.ls26{letter-spacing:-0.067819pt;}
.ls13{letter-spacing:-0.064768pt;}
.ls1b{letter-spacing:-0.058880pt;}
.ls1a{letter-spacing:-0.052992pt;}
.ls2a{letter-spacing:-0.011738pt;}
.ls12{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002816pt;}
.ls1{letter-spacing:0.055040pt;}
.ls0{letter-spacing:0.055168pt;}
.ls4{letter-spacing:0.056320pt;}
.ls3{letter-spacing:0.060160pt;}
.lsf{letter-spacing:0.417470pt;}
.lsc{letter-spacing:4.593920pt;}
.lsd{letter-spacing:4.872576pt;}
.ls7{letter-spacing:5.482240pt;}
.lsa{letter-spacing:7.345920pt;}
.lsb{letter-spacing:7.347200pt;}
.lse{letter-spacing:10.549760pt;}
.ls9{letter-spacing:30.916736pt;}
.ls8{letter-spacing:30.918016pt;}
.ls5{letter-spacing:33.930880pt;}
.ls6{letter-spacing:33.989376pt;}
.ls10{letter-spacing:42.608735pt;}
.ws13{word-spacing:-14.502914pt;}
.ws16{word-spacing:-14.435095pt;}
.ws12{word-spacing:-14.330757pt;}
.ws1a{word-spacing:-12.690050pt;}
.ws0{word-spacing:-11.776000pt;}
.ws6{word-spacing:-11.723008pt;}
.ws8{word-spacing:-11.717120pt;}
.wse{word-spacing:-11.711232pt;}
.ws11{word-spacing:-11.699456pt;}
.ws10{word-spacing:-11.693568pt;}
.ws9{word-spacing:-11.687680pt;}
.ws5{word-spacing:-11.681792pt;}
.wsc{word-spacing:-11.675904pt;}
.ws7{word-spacing:-11.670016pt;}
.ws4{word-spacing:-11.664128pt;}
.wsa{word-spacing:-11.658240pt;}
.wsf{word-spacing:-11.652352pt;}
.wsd{word-spacing:-11.634688pt;}
.ws2{word-spacing:-11.611136pt;}
.wsb{word-spacing:-11.599360pt;}
.ws1c{word-spacing:-10.877185pt;}
.ws1d{word-spacing:-10.865447pt;}
.ws1e{word-spacing:-10.748068pt;}
.ws18{word-spacing:-9.453631pt;}
.ws17{word-spacing:-2.347804pt;}
.ws19{word-spacing:-0.045648pt;}
.ws14{word-spacing:-0.035866pt;}
.ws20{word-spacing:0.000000pt;}
.ws1{word-spacing:0.005888pt;}
.ws1b{word-spacing:0.020961pt;}
.ws3{word-spacing:0.105984pt;}
.ws1f{word-spacing:0.232670pt;}
.ws15{word-spacing:0.237106pt;}
._5{margin-left:-1.804672pt;}
._1{margin-left:-0.904320pt;}
._0{width:0.942080pt;}
._2{width:1.943040pt;}
._d{width:3.097984pt;}
._8{width:4.229888pt;}
._3{width:5.475840pt;}
._4{width:6.365312pt;}
._7{width:7.889920pt;}
._a{width:9.303040pt;}
._9{width:10.322432pt;}
._b{width:20.666880pt;}
._c{width:21.823872pt;}
._6{width:30.985472pt;}
._e{width:722.519373pt;}
.fs5{font-size:29.344925pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:35.866019pt;}
.fs6{font-size:39.126566pt;}
.fs4{font-size:45.647661pt;}
.fs2{font-size:52.168755pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:10.494769pt;}
.y29{bottom:22.721782pt;}
.y26{bottom:24.352049pt;}
.y28{bottom:63.478622pt;}
.y23{bottom:89.562995pt;}
.y32{bottom:102.605182pt;}
.y31{bottom:114.017102pt;}
.y25{bottom:116.462515pt;}
.y20{bottom:123.200000pt;}
.y30{bottom:125.429022pt;}
.y24{bottom:130.319835pt;}
.y2f{bottom:137.656071pt;}
.y1f{bottom:141.760000pt;}
.y2e{bottom:149.067987pt;}
.y1e{bottom:160.000000pt;}
.y2d{bottom:161.295035pt;}
.y2c{bottom:172.706955pt;}
.y1d{bottom:178.560000pt;}
.y1c{bottom:192.960000pt;}
.y21{bottom:251.775235pt;}
.y2b{bottom:269.708235pt;}
.y22{bottom:312.095302pt;}
.y2a{bottom:321.061835pt;}
.y1b{bottom:534.400000pt;}
.y1a{bottom:552.960000pt;}
.y19{bottom:571.200000pt;}
.y18{bottom:589.760000pt;}
.y17{bottom:608.320000pt;}
.y16{bottom:626.560000pt;}
.y15{bottom:645.120000pt;}
.y14{bottom:663.680000pt;}
.y13{bottom:681.920000pt;}
.y12{bottom:700.480000pt;}
.y11{bottom:718.720000pt;}
.y10{bottom:737.280000pt;}
.yf{bottom:755.840000pt;}
.ye{bottom:774.080000pt;}
.yd{bottom:792.640000pt;}
.yc{bottom:810.880000pt;}
.yb{bottom:829.440000pt;}
.ya{bottom:848.000000pt;}
.y9{bottom:866.240000pt;}
.y8{bottom:884.800000pt;}
.y7{bottom:903.360000pt;}
.y6{bottom:921.600000pt;}
.y5{bottom:940.160000pt;}
.y4{bottom:958.400000pt;}
.y3{bottom:976.960000pt;}
.y2{bottom:995.520000pt;}
.y1{bottom:1013.760000pt;}
.ha{height:29.956277pt;}
.h7{height:33.589368pt;}
.h8{height:34.090706pt;}
.h6{height:38.438795pt;}
.h3{height:43.100160pt;}
.h4{height:45.749760pt;}
.h9{height:46.631554pt;}
.h2{height:48.634880pt;}
.h5{height:337.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:604.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:8.529547pt;}
.x9{left:73.141907pt;}
.xa{left:88.370440pt;}
.x3{left:94.400064pt;}
.x1{left:98.727232pt;}
.xb{left:111.465773pt;}
.x4{left:118.400064pt;}
.x6{left:120.866848pt;}
.x5{left:142.400064pt;}
.x10{left:156.332040pt;}
.xe{left:191.386573pt;}
.x11{left:228.287773pt;}
.xd{left:310.180040pt;}
.xc{left:328.894707pt;}
.x2{left:343.978880pt;}
.x12{left:428.458573pt;}
.xf{left:435.935640pt;}
.x7{left:699.520320pt;}
}




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