
    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_8650165fb29295c219332a97.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_a2f7bf774f30441a7b98e506.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_bef2c7d1c642ff7b607ea445.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_30a774bb579eb2a482aa40f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_3bbc980b57174f6d1bf958c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_58c0f2941a946cf1eb13fec7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_e6591f157588197253dd637e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1e3a06e47aa735157ffa836e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls46{letter-spacing:-0.342144px;}
.ls1a{letter-spacing:-0.310464px;}
.ls19{letter-spacing:-0.297792px;}
.ls35{letter-spacing:-0.285120px;}
.lse{letter-spacing:-0.266112px;}
.ls45{letter-spacing:-0.253440px;}
.ls10{letter-spacing:-0.234432px;}
.ls12{letter-spacing:-0.221760px;}
.ls18{letter-spacing:-0.215424px;}
.lsf{letter-spacing:-0.209088px;}
.ls30{letter-spacing:-0.202752px;}
.ls8{letter-spacing:-0.196416px;}
.ls7{letter-spacing:-0.190080px;}
.ls1b{letter-spacing:-0.183744px;}
.ls27{letter-spacing:-0.177408px;}
.ls16{letter-spacing:-0.171072px;}
.ls9{letter-spacing:-0.164736px;}
.ls14{letter-spacing:-0.158400px;}
.ls41{letter-spacing:-0.152064px;}
.ls29{letter-spacing:-0.145728px;}
.ls5{letter-spacing:-0.133056px;}
.ls28{letter-spacing:-0.126720px;}
.ls11{letter-spacing:-0.120384px;}
.ls17{letter-spacing:-0.101376px;}
.ls13{letter-spacing:-0.095040px;}
.ls36{letter-spacing:-0.076032px;}
.ls31{letter-spacing:-0.063360px;}
.ls15{letter-spacing:-0.050688px;}
.ls6{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.079344px;}
.ls3e{letter-spacing:0.100224px;}
.lsb{letter-spacing:0.141984px;}
.ls23{letter-spacing:0.254448px;}
.lsd{letter-spacing:0.267264px;}
.lsa{letter-spacing:0.317376px;}
.lsc{letter-spacing:0.367488px;}
.ls3b{letter-spacing:0.459504px;}
.ls34{letter-spacing:0.686592px;}
.ls38{letter-spacing:1.473120px;}
.ls25{letter-spacing:1.563840px;}
.ls24{letter-spacing:1.563984px;}
.ls2f{letter-spacing:1.982880px;}
.ls1f{letter-spacing:2.025360px;}
.ls2a{letter-spacing:2.368080px;}
.ls3d{letter-spacing:2.489760px;}
.ls1c{letter-spacing:2.596320px;}
.ls3c{letter-spacing:2.689920px;}
.ls4{letter-spacing:3.236688px;}
.ls2{letter-spacing:3.463200px;}
.ls42{letter-spacing:4.600512px;}
.ls26{letter-spacing:4.786560px;}
.ls3{letter-spacing:5.421600px;}
.ls2b{letter-spacing:5.735520px;}
.ls22{letter-spacing:6.170400px;}
.ls20{letter-spacing:6.521760px;}
.ls40{letter-spacing:6.621120px;}
.ls37{letter-spacing:7.018560px;}
.ls2d{letter-spacing:7.166880px;}
.ls2c{letter-spacing:7.167024px;}
.ls1d{letter-spacing:7.534656px;}
.ls21{letter-spacing:7.907040px;}
.ls1e{letter-spacing:9.244800px;}
.ls3f{letter-spacing:9.421344px;}
.ls3a{letter-spacing:11.079360px;}
.ls43{letter-spacing:11.190240px;}
.ls2e{letter-spacing:11.595168px;}
.ls39{letter-spacing:14.633136px;}
.ls32{letter-spacing:17.933472px;}
.ls33{letter-spacing:63.437184px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.ws6{word-spacing:-14.268672px;}
.ws11{word-spacing:-14.224320px;}
.ws5{word-spacing:-14.198976px;}
.ws14{word-spacing:-14.192640px;}
.wsd{word-spacing:-14.186304px;}
.wsb{word-spacing:-14.173632px;}
.ws13{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.wsc{word-spacing:-14.148288px;}
.ws12{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.ws9{word-spacing:-14.122944px;}
.wsf{word-spacing:-14.116608px;}
.wsa{word-spacing:-14.110272px;}
.ws4{word-spacing:-14.097600px;}
.ws3{word-spacing:-14.084928px;}
.ws16{word-spacing:-14.065920px;}
.ws7{word-spacing:-14.021568px;}
.ws10{word-spacing:-0.141984px;}
.ws15{word-spacing:-0.121104px;}
.wse{word-spacing:-0.063360px;}
.ws8{word-spacing:0.000000px;}
._e{margin-left:-3.674880px;}
._6{margin-left:-2.407680px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._9{width:2.090880px;}
._3{width:3.104640px;}
._4{width:4.435200px;}
._c{width:5.738400px;}
._8{width:7.630416px;}
._7{width:8.807040px;}
._a{width:9.947520px;}
._f{width:11.441952px;}
._5{width:12.481920px;}
._b{width:15.269760px;}
._d{width:16.853760px;}
._13{width:18.247680px;}
._12{width:20.211840px;}
._11{width:25.153920px;}
._10{width:26.167680px;}
._18{width:27.434880px;}
._14{width:28.702080px;}
._1c{width:31.936176px;}
._1b{width:33.451344px;}
._1f{width:40.930560px;}
._21{width:67.541760px;}
._20{width:81.544320px;}
._1a{width:83.318400px;}
._1e{width:86.866560px;}
._19{width:98.841600px;}
._1d{width:105.087168px;}
._17{width:114.871680px;}
._16{width:115.885440px;}
._15{width:180.069120px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y36{bottom:100.800000px;}
.y6e{bottom:105.480000px;}
.y35{bottom:119.880000px;}
.y6d{bottom:124.920000px;}
.y34{bottom:139.320000px;}
.y6c{bottom:144.000000px;}
.y33{bottom:158.400000px;}
.y6b{bottom:163.440000px;}
.y32{bottom:177.840000px;}
.y6a{bottom:182.520000px;}
.y31{bottom:196.920000px;}
.y69{bottom:201.600000px;}
.y30{bottom:216.000000px;}
.y68{bottom:221.040000px;}
.y2f{bottom:235.440000px;}
.y67{bottom:240.120000px;}
.y2e{bottom:254.520000px;}
.y66{bottom:259.560000px;}
.y2d{bottom:273.960000px;}
.y65{bottom:278.640000px;}
.y2c{bottom:293.040000px;}
.y64{bottom:297.720000px;}
.y2b{bottom:312.120000px;}
.y63{bottom:317.160000px;}
.y2a{bottom:331.560000px;}
.y62{bottom:336.240000px;}
.y29{bottom:350.640000px;}
.y61{bottom:355.680000px;}
.y28{bottom:370.080000px;}
.y60{bottom:374.760000px;}
.y27{bottom:389.160000px;}
.y5f{bottom:394.200000px;}
.y26{bottom:408.240000px;}
.y5e{bottom:413.280000px;}
.y25{bottom:427.680000px;}
.y5d{bottom:432.360000px;}
.y24{bottom:446.760000px;}
.y5c{bottom:451.800000px;}
.y23{bottom:466.200000px;}
.y5b{bottom:470.880000px;}
.y22{bottom:485.280000px;}
.y5a{bottom:490.320000px;}
.y21{bottom:504.360000px;}
.y59{bottom:509.400000px;}
.y20{bottom:523.800000px;}
.y58{bottom:528.480000px;}
.y1f{bottom:542.880000px;}
.y57{bottom:547.920000px;}
.y1e{bottom:562.320000px;}
.y56{bottom:567.000000px;}
.y1d{bottom:581.400000px;}
.y55{bottom:586.440000px;}
.y1c{bottom:600.480000px;}
.y54{bottom:605.520000px;}
.y1b{bottom:619.920000px;}
.y53{bottom:624.600000px;}
.y1a{bottom:639.000000px;}
.y52{bottom:644.040000px;}
.y19{bottom:658.440000px;}
.y51{bottom:663.120000px;}
.y18{bottom:677.520000px;}
.y50{bottom:682.560000px;}
.y17{bottom:696.960000px;}
.y4f{bottom:701.640000px;}
.y16{bottom:716.040000px;}
.y4e{bottom:720.720000px;}
.y15{bottom:735.120000px;}
.y4d{bottom:740.160000px;}
.y14{bottom:754.560000px;}
.y4c{bottom:759.240000px;}
.y13{bottom:773.640000px;}
.y4b{bottom:778.680000px;}
.y12{bottom:793.080000px;}
.y4a{bottom:797.760000px;}
.y11{bottom:812.160000px;}
.y49{bottom:816.840000px;}
.y10{bottom:831.240000px;}
.y48{bottom:836.280000px;}
.yf{bottom:850.680000px;}
.y47{bottom:855.360000px;}
.ye{bottom:869.760000px;}
.y46{bottom:874.800000px;}
.yd{bottom:889.560000px;}
.y45{bottom:893.880000px;}
.yc{bottom:909.360000px;}
.y44{bottom:912.960000px;}
.yb{bottom:928.440000px;}
.y43{bottom:932.400000px;}
.ya{bottom:948.600000px;}
.y42{bottom:951.480000px;}
.y41{bottom:970.920000px;}
.y9{bottom:974.160000px;}
.y40{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y3f{bottom:1009.440000px;}
.y7{bottom:1024.920000px;}
.y3e{bottom:1028.520000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.y39{bottom:1124.640000px;}
.y38{bottom:1143.720000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h3{height:43.312500px;}
.h5{height:43.900313px;}
.h6{height:45.787500px;}
.h2{height:52.253438px;}
.h4{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:62.009748px;}
.xb{left:84.959856px;}
.x4{left:106.184700px;}
.x6{left:117.372816px;}
.x5{left:127.237068px;}
.x9{left:167.286240px;}
.x3{left:181.064592px;}
.x7{left:367.783560px;}
.x2{left:442.885680px;}
.xc{left:456.997320px;}
.xa{left:613.285200px;}
.x8{left:631.122120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls46{letter-spacing:-0.304128pt;}
.ls1a{letter-spacing:-0.275968pt;}
.ls19{letter-spacing:-0.264704pt;}
.ls35{letter-spacing:-0.253440pt;}
.lse{letter-spacing:-0.236544pt;}
.ls45{letter-spacing:-0.225280pt;}
.ls10{letter-spacing:-0.208384pt;}
.ls12{letter-spacing:-0.197120pt;}
.ls18{letter-spacing:-0.191488pt;}
.lsf{letter-spacing:-0.185856pt;}
.ls30{letter-spacing:-0.180224pt;}
.ls8{letter-spacing:-0.174592pt;}
.ls7{letter-spacing:-0.168960pt;}
.ls1b{letter-spacing:-0.163328pt;}
.ls27{letter-spacing:-0.157696pt;}
.ls16{letter-spacing:-0.152064pt;}
.ls9{letter-spacing:-0.146432pt;}
.ls14{letter-spacing:-0.140800pt;}
.ls41{letter-spacing:-0.135168pt;}
.ls29{letter-spacing:-0.129536pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls28{letter-spacing:-0.112640pt;}
.ls11{letter-spacing:-0.107008pt;}
.ls17{letter-spacing:-0.090112pt;}
.ls13{letter-spacing:-0.084480pt;}
.ls36{letter-spacing:-0.067584pt;}
.ls31{letter-spacing:-0.056320pt;}
.ls15{letter-spacing:-0.045056pt;}
.ls6{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.070528pt;}
.ls3e{letter-spacing:0.089088pt;}
.lsb{letter-spacing:0.126208pt;}
.ls23{letter-spacing:0.226176pt;}
.lsd{letter-spacing:0.237568pt;}
.lsa{letter-spacing:0.282112pt;}
.lsc{letter-spacing:0.326656pt;}
.ls3b{letter-spacing:0.408448pt;}
.ls34{letter-spacing:0.610304pt;}
.ls38{letter-spacing:1.309440pt;}
.ls25{letter-spacing:1.390080pt;}
.ls24{letter-spacing:1.390208pt;}
.ls2f{letter-spacing:1.762560pt;}
.ls1f{letter-spacing:1.800320pt;}
.ls2a{letter-spacing:2.104960pt;}
.ls3d{letter-spacing:2.213120pt;}
.ls1c{letter-spacing:2.307840pt;}
.ls3c{letter-spacing:2.391040pt;}
.ls4{letter-spacing:2.877056pt;}
.ls2{letter-spacing:3.078400pt;}
.ls42{letter-spacing:4.089344pt;}
.ls26{letter-spacing:4.254720pt;}
.ls3{letter-spacing:4.819200pt;}
.ls2b{letter-spacing:5.098240pt;}
.ls22{letter-spacing:5.484800pt;}
.ls20{letter-spacing:5.797120pt;}
.ls40{letter-spacing:5.885440pt;}
.ls37{letter-spacing:6.238720pt;}
.ls2d{letter-spacing:6.370560pt;}
.ls2c{letter-spacing:6.370688pt;}
.ls1d{letter-spacing:6.697472pt;}
.ls21{letter-spacing:7.028480pt;}
.ls1e{letter-spacing:8.217600pt;}
.ls3f{letter-spacing:8.374528pt;}
.ls3a{letter-spacing:9.848320pt;}
.ls43{letter-spacing:9.946880pt;}
.ls2e{letter-spacing:10.306816pt;}
.ls39{letter-spacing:13.007232pt;}
.ls32{letter-spacing:15.940864pt;}
.ls33{letter-spacing:56.388608pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws6{word-spacing:-12.683264pt;}
.ws11{word-spacing:-12.643840pt;}
.ws5{word-spacing:-12.621312pt;}
.ws14{word-spacing:-12.615680pt;}
.wsd{word-spacing:-12.610048pt;}
.wsb{word-spacing:-12.598784pt;}
.ws13{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.wsc{word-spacing:-12.576256pt;}
.ws12{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.ws9{word-spacing:-12.553728pt;}
.wsf{word-spacing:-12.548096pt;}
.wsa{word-spacing:-12.542464pt;}
.ws4{word-spacing:-12.531200pt;}
.ws3{word-spacing:-12.519936pt;}
.ws16{word-spacing:-12.503040pt;}
.ws7{word-spacing:-12.463616pt;}
.ws10{word-spacing:-0.126208pt;}
.ws15{word-spacing:-0.107648pt;}
.wse{word-spacing:-0.056320pt;}
.ws8{word-spacing:0.000000pt;}
._e{margin-left:-3.266560pt;}
._6{margin-left:-2.140160pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._9{width:1.858560pt;}
._3{width:2.759680pt;}
._4{width:3.942400pt;}
._c{width:5.100800pt;}
._8{width:6.782592pt;}
._7{width:7.828480pt;}
._a{width:8.842240pt;}
._f{width:10.170624pt;}
._5{width:11.095040pt;}
._b{width:13.573120pt;}
._d{width:14.981120pt;}
._13{width:16.220160pt;}
._12{width:17.966080pt;}
._11{width:22.359040pt;}
._10{width:23.260160pt;}
._18{width:24.386560pt;}
._14{width:25.512960pt;}
._1c{width:28.387712pt;}
._1b{width:29.734528pt;}
._1f{width:36.382720pt;}
._21{width:60.037120pt;}
._20{width:72.483840pt;}
._1a{width:74.060800pt;}
._1e{width:77.214720pt;}
._19{width:87.859200pt;}
._1d{width:93.410816pt;}
._17{width:102.108160pt;}
._16{width:103.009280pt;}
._15{width:160.061440pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y36{bottom:89.600000pt;}
.y6e{bottom:93.760000pt;}
.y35{bottom:106.560000pt;}
.y6d{bottom:111.040000pt;}
.y34{bottom:123.840000pt;}
.y6c{bottom:128.000000pt;}
.y33{bottom:140.800000pt;}
.y6b{bottom:145.280000pt;}
.y32{bottom:158.080000pt;}
.y6a{bottom:162.240000pt;}
.y31{bottom:175.040000pt;}
.y69{bottom:179.200000pt;}
.y30{bottom:192.000000pt;}
.y68{bottom:196.480000pt;}
.y2f{bottom:209.280000pt;}
.y67{bottom:213.440000pt;}
.y2e{bottom:226.240000pt;}
.y66{bottom:230.720000pt;}
.y2d{bottom:243.520000pt;}
.y65{bottom:247.680000pt;}
.y2c{bottom:260.480000pt;}
.y64{bottom:264.640000pt;}
.y2b{bottom:277.440000pt;}
.y63{bottom:281.920000pt;}
.y2a{bottom:294.720000pt;}
.y62{bottom:298.880000pt;}
.y29{bottom:311.680000pt;}
.y61{bottom:316.160000pt;}
.y28{bottom:328.960000pt;}
.y60{bottom:333.120000pt;}
.y27{bottom:345.920000pt;}
.y5f{bottom:350.400000pt;}
.y26{bottom:362.880000pt;}
.y5e{bottom:367.360000pt;}
.y25{bottom:380.160000pt;}
.y5d{bottom:384.320000pt;}
.y24{bottom:397.120000pt;}
.y5c{bottom:401.600000pt;}
.y23{bottom:414.400000pt;}
.y5b{bottom:418.560000pt;}
.y22{bottom:431.360000pt;}
.y5a{bottom:435.840000pt;}
.y21{bottom:448.320000pt;}
.y59{bottom:452.800000pt;}
.y20{bottom:465.600000pt;}
.y58{bottom:469.760000pt;}
.y1f{bottom:482.560000pt;}
.y57{bottom:487.040000pt;}
.y1e{bottom:499.840000pt;}
.y56{bottom:504.000000pt;}
.y1d{bottom:516.800000pt;}
.y55{bottom:521.280000pt;}
.y1c{bottom:533.760000pt;}
.y54{bottom:538.240000pt;}
.y1b{bottom:551.040000pt;}
.y53{bottom:555.200000pt;}
.y1a{bottom:568.000000pt;}
.y52{bottom:572.480000pt;}
.y19{bottom:585.280000pt;}
.y51{bottom:589.440000pt;}
.y18{bottom:602.240000pt;}
.y50{bottom:606.720000pt;}
.y17{bottom:619.520000pt;}
.y4f{bottom:623.680000pt;}
.y16{bottom:636.480000pt;}
.y4e{bottom:640.640000pt;}
.y15{bottom:653.440000pt;}
.y4d{bottom:657.920000pt;}
.y14{bottom:670.720000pt;}
.y4c{bottom:674.880000pt;}
.y13{bottom:687.680000pt;}
.y4b{bottom:692.160000pt;}
.y12{bottom:704.960000pt;}
.y4a{bottom:709.120000pt;}
.y11{bottom:721.920000pt;}
.y49{bottom:726.080000pt;}
.y10{bottom:738.880000pt;}
.y48{bottom:743.360000pt;}
.yf{bottom:756.160000pt;}
.y47{bottom:760.320000pt;}
.ye{bottom:773.120000pt;}
.y46{bottom:777.600000pt;}
.yd{bottom:790.720000pt;}
.y45{bottom:794.560000pt;}
.yc{bottom:808.320000pt;}
.y44{bottom:811.520000pt;}
.yb{bottom:825.280000pt;}
.y43{bottom:828.800000pt;}
.ya{bottom:843.200000pt;}
.y42{bottom:845.760000pt;}
.y41{bottom:863.040000pt;}
.y9{bottom:865.920000pt;}
.y40{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y3f{bottom:897.280000pt;}
.y7{bottom:911.040000pt;}
.y3e{bottom:914.240000pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.y39{bottom:999.680000pt;}
.y38{bottom:1016.640000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h3{height:38.500000pt;}
.h5{height:39.022500pt;}
.h6{height:40.700000pt;}
.h2{height:46.447500pt;}
.h4{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:55.119776pt;}
.xb{left:75.519872pt;}
.x4{left:94.386400pt;}
.x6{left:104.331392pt;}
.x5{left:113.099616pt;}
.x9{left:148.698880pt;}
.x3{left:160.946304pt;}
.x7{left:326.918720pt;}
.x2{left:393.676160pt;}
.xc{left:406.219840pt;}
.xa{left:545.142400pt;}
.x8{left:560.997440pt;}
}




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