
    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_4bef25e9be588e533ba0decf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_f3f661da7912b9ec5f6d43c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a98e3b872f4bff2b3573aaaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_3c48178d7e03f7b577d2b892.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_9c39baf7f948af60673d2fce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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;}
.m2{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);}
.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);}
.v1{vertical-align:-51.384000px;}
.v3{vertical-align:-34.566000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.990092px;}
.ls1{letter-spacing:32.728403px;}
.ls3{letter-spacing:32.730530px;}
.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;}
}
.ws15{word-spacing:-57.327415px;}
.wse{word-spacing:-47.772979px;}
.wsa{word-spacing:-43.592764px;}
.wsf{word-spacing:-35.865360px;}
.ws8{word-spacing:-34.603034px;}
.ws0{word-spacing:-34.516957px;}
.ws17{word-spacing:-32.279040px;}
.ws4{word-spacing:-31.848520px;}
.ws5{word-spacing:-28.835942px;}
.ws10{word-spacing:-28.767341px;}
.ws9{word-spacing:-28.764211px;}
.ws1{word-spacing:-27.831706px;}
.wsd{word-spacing:-26.312749px;}
.wsc{word-spacing:-26.247295px;}
.ws1a{word-spacing:-26.181840px;}
.ws19{word-spacing:-26.116385px;}
.ws6{word-spacing:-25.396385px;}
.ws18{word-spacing:-25.331625px;}
.ws7{word-spacing:-25.330930px;}
.ws2{word-spacing:-23.192933px;}
.ws14{word-spacing:-23.133157px;}
.ws20{word-spacing:-22.955525px;}
.ws1f{word-spacing:-22.953818px;}
.ws1e{word-spacing:-22.953403px;}
.ws1d{word-spacing:-22.952074px;}
.ws13{word-spacing:-21.519360px;}
.ws1b{word-spacing:-20.873779px;}
.ws3{word-spacing:-18.554393px;}
.ws16{word-spacing:-8.926742px;}
.ws11{word-spacing:-1.506355px;}
.ws12{word-spacing:-0.753178px;}
.wsb{word-spacing:0.000000px;}
.ws1c{word-spacing:1326.331318px;}
._c{margin-left:-6.545460px;}
._6{margin-left:-4.648169px;}
._0{margin-left:-2.926625px;}
._1{margin-left:-1.018591px;}
._9{width:2.929004px;}
._2{width:8.966400px;}
._3{width:11.448268px;}
._e{width:19.224820px;}
._f{width:26.904298px;}
._4{width:32.730530px;}
._7{width:335.895310px;}
._a{width:405.052989px;}
._8{width:436.406453px;}
._5{width:595.447068px;}
._b{width:648.667906px;}
._d{width:701.336242px;}
.fc5{color:rgb(235,129,27);}
.fc8{color:rgb(57,75,79);}
.fc4{color:transparent;}
.fc6{color:rgb(228,231,231);}
.fc2{color:rgb(42,27,129);}
.fc7{color:rgb(229,228,238);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(250,250,250);}
.fc0{color:rgb(35,55,59);}
.fs5{font-size:24.659583px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y6{bottom:19.953000px;}
.y74{bottom:28.594500px;}
.y39{bottom:32.799000px;}
.y44{bottom:46.825500px;}
.y52{bottom:49.599000px;}
.y73{bottom:51.967500px;}
.y38{bottom:53.422500px;}
.y2c{bottom:64.912500px;}
.y43{bottom:67.449000px;}
.y51{bottom:68.503500px;}
.y80{bottom:70.806000px;}
.y82{bottom:70.807500px;}
.y18{bottom:71.324294px;}
.y37{bottom:74.044500px;}
.y72{bottom:75.339000px;}
.y64{bottom:85.113000px;}
.y2b{bottom:85.534500px;}
.y42{bottom:88.071000px;}
.y36{bottom:97.656000px;}
.y71{bottom:98.712000px;}
.y17{bottom:99.663000px;}
.y63{bottom:108.484500px;}
.y2a{bottom:109.146000px;}
.y5{bottom:110.619000px;}
.y41{bottom:111.682500px;}
.y7e{bottom:111.978000px;}
.y5a{bottom:116.088000px;}
.y70{bottom:122.083500px;}
.y35{bottom:122.761500px;}
.y16{bottom:127.518000px;}
.yb{bottom:127.683000px;}
.y62{bottom:131.857500px;}
.y29{bottom:134.251500px;}
.y34{bottom:134.791500px;}
.y40{bottom:136.788000px;}
.y50{bottom:137.880000px;}
.y59{bottom:139.459500px;}
.y4{bottom:139.701000px;}
.y7d{bottom:142.822500px;}
.y6f{bottom:145.456500px;}
.y33{bottom:149.811000px;}
.y15{bottom:150.889500px;}
.y1d{bottom:152.864769px;}
.y61{bottom:155.229000px;}
.y68{bottom:155.491500px;}
.y3f{bottom:157.410000px;}
.y28{bottom:157.863000px;}
.y1c{bottom:161.189459px;}
.y4f{bottom:161.253000px;}
.y58{bottom:162.832500px;}
.y7c{bottom:163.444500px;}
.y3{bottom:164.059500px;}
.y6e{bottom:168.828000px;}
.y1b{bottom:169.514149px;}
.y49{bottom:171.778500px;}
.y21{bottom:176.991000px;}
.y1a{bottom:177.838841px;}
.y60{bottom:178.602000px;}
.y14{bottom:178.746000px;}
.y32{bottom:178.756500px;}
.y67{bottom:178.864500px;}
.y3e{bottom:181.021500px;}
.y76{bottom:182.692500px;}
.y7b{bottom:184.068000px;}
.y4e{bottom:184.624500px;}
.y19{bottom:186.163531px;}
.y57{bottom:186.204000px;}
.y27{bottom:186.810000px;}
.ye{bottom:187.245000px;}
.ya{bottom:190.875000px;}
.y6d{bottom:192.201000px;}
.y46{bottom:201.492000px;}
.y5f{bottom:201.973500px;}
.y7a{bottom:204.690000px;}
.y75{bottom:206.065500px;}
.y13{bottom:206.601000px;}
.y66{bottom:206.719500px;}
.y4d{bottom:207.997500px;}
.y3d{bottom:209.968500px;}
.y56{bottom:214.060500px;}
.y9{bottom:214.246500px;}
.y48{bottom:215.431500px;}
.y6c{bottom:215.572500px;}
.yc{bottom:216.958500px;}
.y31{bottom:217.365000px;}
.y5e{bottom:225.346500px;}
.y26{bottom:225.523500px;}
.y79{bottom:228.301500px;}
.y65{bottom:230.091000px;}
.yd{bottom:230.898000px;}
.y4c{bottom:231.369000px;}
.y45{bottom:232.425000px;}
.y12{bottom:234.456000px;}
.y55{bottom:237.432000px;}
.y30{bottom:237.987000px;}
.y6b{bottom:238.945500px;}
.y47{bottom:246.364500px;}
.y2{bottom:246.909000px;}
.y25{bottom:248.895000px;}
.y3c{bottom:253.351500px;}
.y78{bottom:253.407000px;}
.y4b{bottom:254.742000px;}
.y5d{bottom:256.900500px;}
.y2f{bottom:258.610500px;}
.y54{bottom:260.805000px;}
.y11{bottom:262.312500px;}
.y6a{bottom:262.317000px;}
.y24{bottom:276.750000px;}
.y77{bottom:276.780000px;}
.y8{bottom:277.438500px;}
.y4a{bottom:278.113500px;}
.y5c{bottom:280.272000px;}
.y3b{bottom:281.206500px;}
.y1{bottom:281.727000px;}
.y2e{bottom:282.222000px;}
.y53{bottom:284.176500px;}
.y10{bottom:285.684000px;}
.y69{bottom:285.690000px;}
.y1f{bottom:294.852000px;}
.y23{bottom:300.123000px;}
.y5b{bottom:303.645000px;}
.y2d{bottom:307.327500px;}
.y3a{bottom:309.061500px;}
.yf{bottom:313.539000px;}
.y81{bottom:315.928500px;}
.y7f{bottom:315.930000px;}
.y22{bottom:329.070000px;}
.y1e{bottom:338.008500px;}
.y20{bottom:342.426000px;}
.y7{bottom:379.849500px;}
.h8{height:23.426604px;}
.h9{height:37.658880px;}
.h5{height:50.211630px;}
.hb{height:56.488320px;}
.h4{height:62.764380px;}
.h6{height:68.727330px;}
.ha{height:73.965630px;}
.h3{height:75.317760px;}
.h2{height:90.381060px;}
.h7{height:259.495980px;}
.h1{height:408.000000px;}
.h0{height:408.195000px;}
.w2{width:183.681240px;}
.w0{width:544.245000px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x3{left:15.984000px;}
.x8{left:27.030992px;}
.x27{left:28.744498px;}
.x1d{left:30.414858px;}
.x9{left:31.918796px;}
.x16{left:33.891179px;}
.x17{left:36.387472px;}
.x1e{left:38.501615px;}
.x1f{left:40.159645px;}
.x1{left:42.519000px;}
.xa{left:46.952037px;}
.x5{left:48.195000px;}
.xb{left:50.514648px;}
.xc{left:53.325288px;}
.x28{left:54.440905px;}
.x18{left:56.462603px;}
.x29{left:57.917224px;}
.x19{left:59.938924px;}
.x6{left:61.074000px;}
.x2b{left:62.368500px;}
.xd{left:64.241176px;}
.x20{left:65.591020px;}
.xe{left:66.737469px;}
.x24{left:68.555759px;}
.x1a{left:71.964283px;}
.xf{left:73.683947px;}
.x2c{left:75.247500px;}
.x10{left:77.474619px;}
.x11{left:81.037230px;}
.x12{left:83.533523px;}
.x1b{left:85.690808px;}
.x13{left:86.917384px;}
.x14{left:90.708059px;}
.x4{left:92.125500px;}
.x15{left:95.928699px;}
.x21{left:96.933363px;}
.x1c{left:99.250924px;}
.x22{left:100.304893px;}
.x23{left:103.867500px;}
.x25{left:106.616520px;}
.x2d{left:107.974500px;}
.x26{left:111.837167px;}
.x30{left:286.299000px;}
.x7{left:332.223858px;}
.x2e{left:500.631000px;}
.x2f{left:501.634500px;}
.x2a{left:506.190000px;}
.x2{left:507.205500px;}
@media print{
.v1{vertical-align:-45.674667pt;}
.v3{vertical-align:-30.725333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.657860pt;}
.ls1{letter-spacing:29.091914pt;}
.ls3{letter-spacing:29.093804pt;}
.ws15{word-spacing:-50.957702pt;}
.wse{word-spacing:-42.464870pt;}
.wsa{word-spacing:-38.749123pt;}
.wsf{word-spacing:-31.880320pt;}
.ws8{word-spacing:-30.758253pt;}
.ws0{word-spacing:-30.681740pt;}
.ws17{word-spacing:-28.692480pt;}
.ws4{word-spacing:-28.309795pt;}
.ws5{word-spacing:-25.631949pt;}
.ws10{word-spacing:-25.570970pt;}
.ws9{word-spacing:-25.568188pt;}
.ws1{word-spacing:-24.739294pt;}
.wsd{word-spacing:-23.389110pt;}
.wsc{word-spacing:-23.330929pt;}
.ws1a{word-spacing:-23.272747pt;}
.ws19{word-spacing:-23.214565pt;}
.ws6{word-spacing:-22.574564pt;}
.ws18{word-spacing:-22.517000pt;}
.ws7{word-spacing:-22.516382pt;}
.ws2{word-spacing:-20.615940pt;}
.ws14{word-spacing:-20.562806pt;}
.ws20{word-spacing:-20.404911pt;}
.ws1f{word-spacing:-20.403394pt;}
.ws1e{word-spacing:-20.403025pt;}
.ws1d{word-spacing:-20.401843pt;}
.ws13{word-spacing:-19.128320pt;}
.ws1b{word-spacing:-18.554470pt;}
.ws3{word-spacing:-16.492794pt;}
.ws16{word-spacing:-7.934882pt;}
.ws11{word-spacing:-1.338982pt;}
.ws12{word-spacing:-0.669491pt;}
.wsb{word-spacing:0.000000pt;}
.ws1c{word-spacing:1178.961171pt;}
._c{margin-left:-5.818187pt;}
._6{margin-left:-4.131706pt;}
._0{margin-left:-2.601444pt;}
._1{margin-left:-0.905414pt;}
._9{width:2.603559pt;}
._2{width:7.970133pt;}
._3{width:10.176238pt;}
._e{width:17.088729pt;}
._f{width:23.914931pt;}
._4{width:29.093804pt;}
._7{width:298.573609pt;}
._a{width:360.047101pt;}
._8{width:387.916847pt;}
._5{width:529.286283pt;}
._b{width:576.593694pt;}
._d{width:623.409993pt;}
.fs5{font-size:21.919629pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:17.736000pt;}
.y74{bottom:25.417333pt;}
.y39{bottom:29.154667pt;}
.y44{bottom:41.622667pt;}
.y52{bottom:44.088000pt;}
.y73{bottom:46.193333pt;}
.y38{bottom:47.486667pt;}
.y2c{bottom:57.700000pt;}
.y43{bottom:59.954667pt;}
.y51{bottom:60.892000pt;}
.y80{bottom:62.938667pt;}
.y82{bottom:62.940000pt;}
.y18{bottom:63.399373pt;}
.y37{bottom:65.817333pt;}
.y72{bottom:66.968000pt;}
.y64{bottom:75.656000pt;}
.y2b{bottom:76.030667pt;}
.y42{bottom:78.285333pt;}
.y36{bottom:86.805333pt;}
.y71{bottom:87.744000pt;}
.y17{bottom:88.589333pt;}
.y63{bottom:96.430667pt;}
.y2a{bottom:97.018667pt;}
.y5{bottom:98.328000pt;}
.y41{bottom:99.273333pt;}
.y7e{bottom:99.536000pt;}
.y5a{bottom:103.189333pt;}
.y70{bottom:108.518667pt;}
.y35{bottom:109.121333pt;}
.y16{bottom:113.349333pt;}
.yb{bottom:113.496000pt;}
.y62{bottom:117.206667pt;}
.y29{bottom:119.334667pt;}
.y34{bottom:119.814667pt;}
.y40{bottom:121.589333pt;}
.y50{bottom:122.560000pt;}
.y59{bottom:123.964000pt;}
.y4{bottom:124.178667pt;}
.y7d{bottom:126.953333pt;}
.y6f{bottom:129.294667pt;}
.y33{bottom:133.165333pt;}
.y15{bottom:134.124000pt;}
.y1d{bottom:135.879794pt;}
.y61{bottom:137.981333pt;}
.y68{bottom:138.214667pt;}
.y3f{bottom:139.920000pt;}
.y28{bottom:140.322667pt;}
.y1c{bottom:143.279519pt;}
.y4f{bottom:143.336000pt;}
.y58{bottom:144.740000pt;}
.y7c{bottom:145.284000pt;}
.y3{bottom:145.830667pt;}
.y6e{bottom:150.069333pt;}
.y1b{bottom:150.679244pt;}
.y49{bottom:152.692000pt;}
.y21{bottom:157.325333pt;}
.y1a{bottom:158.078970pt;}
.y60{bottom:158.757333pt;}
.y14{bottom:158.885333pt;}
.y32{bottom:158.894667pt;}
.y67{bottom:158.990667pt;}
.y3e{bottom:160.908000pt;}
.y76{bottom:162.393333pt;}
.y7b{bottom:163.616000pt;}
.y4e{bottom:164.110667pt;}
.y19{bottom:165.478694pt;}
.y57{bottom:165.514667pt;}
.y27{bottom:166.053333pt;}
.ye{bottom:166.440000pt;}
.ya{bottom:169.666667pt;}
.y6d{bottom:170.845333pt;}
.y46{bottom:179.104000pt;}
.y5f{bottom:179.532000pt;}
.y7a{bottom:181.946667pt;}
.y75{bottom:183.169333pt;}
.y13{bottom:183.645333pt;}
.y66{bottom:183.750667pt;}
.y4d{bottom:184.886667pt;}
.y3d{bottom:186.638667pt;}
.y56{bottom:190.276000pt;}
.y9{bottom:190.441333pt;}
.y48{bottom:191.494667pt;}
.y6c{bottom:191.620000pt;}
.yc{bottom:192.852000pt;}
.y31{bottom:193.213333pt;}
.y5e{bottom:200.308000pt;}
.y26{bottom:200.465333pt;}
.y79{bottom:202.934667pt;}
.y65{bottom:204.525333pt;}
.yd{bottom:205.242667pt;}
.y4c{bottom:205.661333pt;}
.y45{bottom:206.600000pt;}
.y12{bottom:208.405333pt;}
.y55{bottom:211.050667pt;}
.y30{bottom:211.544000pt;}
.y6b{bottom:212.396000pt;}
.y47{bottom:218.990667pt;}
.y2{bottom:219.474667pt;}
.y25{bottom:221.240000pt;}
.y3c{bottom:225.201333pt;}
.y78{bottom:225.250667pt;}
.y4b{bottom:226.437333pt;}
.y5d{bottom:228.356000pt;}
.y2f{bottom:229.876000pt;}
.y54{bottom:231.826667pt;}
.y11{bottom:233.166667pt;}
.y6a{bottom:233.170667pt;}
.y24{bottom:246.000000pt;}
.y77{bottom:246.026667pt;}
.y8{bottom:246.612000pt;}
.y4a{bottom:247.212000pt;}
.y5c{bottom:249.130667pt;}
.y3b{bottom:249.961333pt;}
.y1{bottom:250.424000pt;}
.y2e{bottom:250.864000pt;}
.y53{bottom:252.601333pt;}
.y10{bottom:253.941333pt;}
.y69{bottom:253.946667pt;}
.y1f{bottom:262.090667pt;}
.y23{bottom:266.776000pt;}
.y5b{bottom:269.906667pt;}
.y2d{bottom:273.180000pt;}
.y3a{bottom:274.721333pt;}
.yf{bottom:278.701333pt;}
.y81{bottom:280.825333pt;}
.y7f{bottom:280.826667pt;}
.y22{bottom:292.506667pt;}
.y1e{bottom:300.452000pt;}
.y20{bottom:304.378667pt;}
.y7{bottom:337.644000pt;}
.h8{height:20.823648pt;}
.h9{height:33.474560pt;}
.h5{height:44.632560pt;}
.hb{height:50.211840pt;}
.h4{height:55.790560pt;}
.h6{height:61.090960pt;}
.ha{height:65.747227pt;}
.h3{height:66.949120pt;}
.h2{height:80.338720pt;}
.h7{height:230.663093pt;}
.h1{height:362.666667pt;}
.h0{height:362.840000pt;}
.w2{width:163.272213pt;}
.w0{width:483.773333pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x3{left:14.208000pt;}
.x8{left:24.027549pt;}
.x27{left:25.550665pt;}
.x1d{left:27.035429pt;}
.x9{left:28.372263pt;}
.x16{left:30.125492pt;}
.x17{left:32.344420pt;}
.x1e{left:34.223658pt;}
.x1f{left:35.697462pt;}
.x1{left:37.794667pt;}
.xa{left:41.735144pt;}
.x5{left:42.840000pt;}
.xb{left:44.901909pt;}
.xc{left:47.400256pt;}
.x28{left:48.391915pt;}
.x18{left:50.188980pt;}
.x29{left:51.481977pt;}
.x19{left:53.279043pt;}
.x6{left:54.288000pt;}
.x2b{left:55.438667pt;}
.xd{left:57.103267pt;}
.x20{left:58.303129pt;}
.xe{left:59.322194pt;}
.x24{left:60.938453pt;}
.x1a{left:63.968251pt;}
.xf{left:65.496842pt;}
.x2c{left:66.886667pt;}
.x10{left:68.866328pt;}
.x11{left:72.033093pt;}
.x12{left:74.252020pt;}
.x1b{left:76.169607pt;}
.x13{left:77.259897pt;}
.x14{left:80.629386pt;}
.x4{left:81.889333pt;}
.x15{left:85.269954pt;}
.x21{left:86.162990pt;}
.x1c{left:88.223044pt;}
.x22{left:89.159905pt;}
.x23{left:92.326667pt;}
.x25{left:94.770240pt;}
.x2d{left:95.977333pt;}
.x26{left:99.410815pt;}
.x30{left:254.488000pt;}
.x7{left:295.310096pt;}
.x2e{left:445.005333pt;}
.x2f{left:445.897333pt;}
.x2a{left:449.946667pt;}
.x2{left:450.849333pt;}
}




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