
    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_eba258b7816b245854097b8c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_5dc802f49576aeaeace494d9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.193359;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_e93e1c372d3846422ca8204c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193359;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_411c9646960ad6d5414117fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.193359;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_a77da137214cda1b1cc36d8f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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_1d7bb0b20583c4d9ee687754.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193359;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_b76bc4414826b3243a3fa8cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_4681ce9acc27741042c0eda2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.193359;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_bf4492e782e727583c23392a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.193359;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_77c1f2e9a3161bc3db6bb78a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.193359;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_1194d85c60fcddb689bda67e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.193359;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_ed66d6ca60dd4938a68846e2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.193359;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_484aab3004c0fb2c6cc482d8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.193359;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:ffe;src:url('chunks/assets/font_04eb6080b5f8ea84d2bf66de.woff')format("woff");}.ffe{font-family:ffe;line-height:1.193359;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:fff;src:url('chunks/assets/font_7b46096cc970303d665b0547.woff')format("woff");}.fff{font-family:fff;line-height:1.193359;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:ff10;src:url('chunks/assets/font_083d200bc71443ac353fd199.woff')format("woff");}.ff10{font-family:ff10;line-height:1.193359;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:53.358000px;}
.ls18{letter-spacing:-12.285000px;}
.ls28{letter-spacing:-7.795800px;}
.lse{letter-spacing:-5.400000px;}
.ls17{letter-spacing:-5.265000px;}
.ls1e{letter-spacing:-5.238000px;}
.ls25{letter-spacing:-5.184000px;}
.ls22{letter-spacing:-5.016000px;}
.ls1f{letter-spacing:-3.398400px;}
.ls5{letter-spacing:-1.606800px;}
.ls1{letter-spacing:-1.591200px;}
.ls4{letter-spacing:-1.575600px;}
.ls3{letter-spacing:-1.544400px;}
.ls27{letter-spacing:-1.500000px;}
.ls26{letter-spacing:-1.455000px;}
.ls23{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.322400px;}
.ls9{letter-spacing:-1.224000px;}
.lsa{letter-spacing:-1.166400px;}
.lsc{letter-spacing:-1.137600px;}
.ls6{letter-spacing:-1.108800px;}
.ls7{letter-spacing:-1.094400px;}
.ls21{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-1.065600px;}
.lsb{letter-spacing:-1.036800px;}
.ls2a{letter-spacing:-0.673200px;}
.ls2e{letter-spacing:-0.580800px;}
.ls1d{letter-spacing:-0.554400px;}
.ls2d{letter-spacing:-0.541200px;}
.ls2b{letter-spacing:-0.528000px;}
.ls29{letter-spacing:-0.501600px;}
.ls19{letter-spacing:-0.475200px;}
.ls1b{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.448800px;}
.ls13{letter-spacing:-0.315000px;}
.ls16{letter-spacing:-0.289800px;}
.ls10{letter-spacing:-0.277200px;}
.ls14{letter-spacing:-0.264600px;}
.ls15{letter-spacing:-0.226800px;}
.ls11{letter-spacing:-0.176400px;}
.lsf{letter-spacing:-0.163800px;}
.lsd{letter-spacing:-0.158400px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.172800px;}
.ls2c{letter-spacing:0.620400px;}
.ls1c{letter-spacing:0.752400px;}
.ls12{letter-spacing:1.083600px;}
.ls0{letter-spacing:1.125600px;}
.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;}
}
.ws6{word-spacing:-47.466000px;}
.ws7{word-spacing:-47.412000px;}
.ws1{word-spacing:-47.250000px;}
.ws2{word-spacing:-24.910200px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:0.892800px;}
.ws5{word-spacing:1.208400px;}
.ws4{word-spacing:1.254000px;}
.ws3{word-spacing:6446.892000px;}
._18{margin-left:-2029.723860px;}
._17{margin-left:-28.800000px;}
._16{margin-left:-26.400000px;}
._13{margin-left:-25.200000px;}
._1a{margin-left:-16.224000px;}
._4{margin-left:-14.508000px;}
._19{margin-left:-11.520000px;}
._6{margin-left:-10.296000px;}
._f{margin-left:-9.264000px;}
._14{margin-left:-7.854000px;}
._a{margin-left:-6.048000px;}
._1{margin-left:-4.524000px;}
._b{margin-left:-2.832000px;}
._0{margin-left:-1.248000px;}
._2{width:1.248000px;}
._5{width:2.808000px;}
._d{width:4.296000px;}
._3{width:5.304000px;}
._15{width:6.630000px;}
._8{width:7.632000px;}
._9{width:8.640000px;}
._10{width:9.840000px;}
._e{width:10.848000px;}
._c{width:16.848000px;}
._12{width:25.536000px;}
._11{width:26.544000px;}
._7{width:31.248000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,17,17);}
.fsa{font-size:84.000000px;}
.fs6{font-size:114.000000px;}
.fs7{font-size:120.000000px;}
.fs3{font-size:126.000000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:144.000000px;}
.fs8{font-size:150.000000px;}
.fs0{font-size:156.000000px;}
.fs5{font-size:264.000000px;}
.fs2{font-size:270.000000px;}
.fs9{font-size:366.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:2.481000px;}
.y34{bottom:369.164700px;}
.y33{bottom:417.764700px;}
.y32{bottom:466.364700px;}
.y31{bottom:514.964700px;}
.y30{bottom:563.564700px;}
.y2f{bottom:612.164700px;}
.y2e{bottom:660.764700px;}
.y2d{bottom:709.364700px;}
.y2c{bottom:764.138100px;}
.y29{bottom:906.159600px;}
.y28{bottom:964.884600px;}
.y27{bottom:1041.609600px;}
.y26{bottom:1100.334600px;}
.y2b{bottom:1115.730900px;}
.y25{bottom:1177.059600px;}
.y36{bottom:1229.962500px;}
.y24{bottom:1235.784600px;}
.y35{bottom:1274.962500px;}
.y23{bottom:1312.509600px;}
.y2a{bottom:1373.202300px;}
.y22{bottom:1381.248000px;}
.y1a{bottom:1530.574500px;}
.y40{bottom:1533.261000px;}
.y19{bottom:1581.199500px;}
.y3f{bottom:1585.911000px;}
.y21{bottom:1631.665500px;}
.y18{bottom:1649.824500px;}
.y3e{bottom:1656.561000px;}
.y20{bottom:1684.315500px;}
.y3d{bottom:1709.211000px;}
.y17{bottom:1718.449500px;}
.y1f{bottom:1754.965500px;}
.y3c{bottom:1779.861000px;}
.y16{bottom:1787.074500px;}
.y1e{bottom:1807.615500px;}
.y3b{bottom:1832.511000px;}
.y15{bottom:1837.699500px;}
.y1d{bottom:1878.265500px;}
.y3a{bottom:1903.161000px;}
.y14{bottom:1906.324500px;}
.y1c{bottom:1948.915500px;}
.y39{bottom:1955.811000px;}
.y13{bottom:1956.949500px;}
.y1b{bottom:2011.089000px;}
.y41{bottom:2017.089000px;}
.y38{bottom:2167.926000px;}
.yd{bottom:2224.945500px;}
.yc{bottom:2283.670500px;}
.yb{bottom:2342.395500px;}
.ya{bottom:2401.120500px;}
.y9{bottom:2459.845500px;}
.y8{bottom:2518.570500px;}
.y7{bottom:2577.295500px;}
.y11{bottom:2636.383500px;}
.y10{bottom:2810.746500px;}
.yf{bottom:2869.471500px;}
.ye{bottom:2928.196500px;}
.y6{bottom:3011.829000px;}
.y5{bottom:3074.604000px;}
.y4{bottom:3137.379000px;}
.y3{bottom:3200.154000px;}
.y2{bottom:3262.929000px;}
.y1{bottom:3325.704000px;}
.y37{bottom:3419.904000px;}
.h3{height:67.200000px;}
.hd{height:79.980469px;}
.h9{height:108.544922px;}
.ha{height:114.257812px;}
.h5{height:119.970703px;}
.h7{height:125.683594px;}
.h2{height:137.109375px;}
.hb{height:142.822266px;}
.h1{height:148.535156px;}
.h8{height:251.367188px;}
.h4{height:257.080078px;}
.h6{height:310.438078px;}
.hc{height:348.486328px;}
.h0{height:4251.000000px;}
.w1{width:1049.631450px;}
.w0{width:2976.000000px;}
.x0{left:0.000000px;}
.x5{left:20.137935px;}
.x4{left:82.762065px;}
.x3{left:88.230780px;}
.x1{left:90.762780px;}
.x2{left:93.198735px;}
.x10{left:96.899955px;}
.xd{left:102.900000px;}
.xf{left:108.094905px;}
.x7{left:110.400000px;}
.x6{left:111.867465px;}
.xe{left:449.005500px;}
.x12{left:1107.026700px;}
.x13{left:1126.526700px;}
.xa{left:1332.026700px;}
.xb{left:1333.278600px;}
.xc{left:1352.778600px;}
.x11{left:1580.175000px;}
.x8{left:2092.174500px;}
.x9{left:2111.674500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.429333pt;}
.ls18{letter-spacing:-10.920000pt;}
.ls28{letter-spacing:-6.929600pt;}
.lse{letter-spacing:-4.800000pt;}
.ls17{letter-spacing:-4.680000pt;}
.ls1e{letter-spacing:-4.656000pt;}
.ls25{letter-spacing:-4.608000pt;}
.ls22{letter-spacing:-4.458667pt;}
.ls1f{letter-spacing:-3.020800pt;}
.ls5{letter-spacing:-1.428267pt;}
.ls1{letter-spacing:-1.414400pt;}
.ls4{letter-spacing:-1.400533pt;}
.ls3{letter-spacing:-1.372800pt;}
.ls27{letter-spacing:-1.333333pt;}
.ls26{letter-spacing:-1.293333pt;}
.ls23{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-1.175467pt;}
.ls9{letter-spacing:-1.088000pt;}
.lsa{letter-spacing:-1.036800pt;}
.lsc{letter-spacing:-1.011200pt;}
.ls6{letter-spacing:-0.985600pt;}
.ls7{letter-spacing:-0.972800pt;}
.ls21{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.947200pt;}
.lsb{letter-spacing:-0.921600pt;}
.ls2a{letter-spacing:-0.598400pt;}
.ls2e{letter-spacing:-0.516267pt;}
.ls1d{letter-spacing:-0.492800pt;}
.ls2d{letter-spacing:-0.481067pt;}
.ls2b{letter-spacing:-0.469333pt;}
.ls29{letter-spacing:-0.445867pt;}
.ls19{letter-spacing:-0.422400pt;}
.ls1b{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.398933pt;}
.ls13{letter-spacing:-0.280000pt;}
.ls16{letter-spacing:-0.257600pt;}
.ls10{letter-spacing:-0.246400pt;}
.ls14{letter-spacing:-0.235200pt;}
.ls15{letter-spacing:-0.201600pt;}
.ls11{letter-spacing:-0.156800pt;}
.lsf{letter-spacing:-0.145600pt;}
.lsd{letter-spacing:-0.140800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.153600pt;}
.ls2c{letter-spacing:0.551467pt;}
.ls1c{letter-spacing:0.668800pt;}
.ls12{letter-spacing:0.963200pt;}
.ls0{letter-spacing:1.000533pt;}
.ws6{word-spacing:-42.192000pt;}
.ws7{word-spacing:-42.144000pt;}
.ws1{word-spacing:-42.000000pt;}
.ws2{word-spacing:-22.142400pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:0.793600pt;}
.ws5{word-spacing:1.074133pt;}
.ws4{word-spacing:1.114667pt;}
.ws3{word-spacing:5730.570667pt;}
._18{margin-left:-1804.198987pt;}
._17{margin-left:-25.600000pt;}
._16{margin-left:-23.466667pt;}
._13{margin-left:-22.400000pt;}
._1a{margin-left:-14.421333pt;}
._4{margin-left:-12.896000pt;}
._19{margin-left:-10.240000pt;}
._6{margin-left:-9.152000pt;}
._f{margin-left:-8.234667pt;}
._14{margin-left:-6.981333pt;}
._a{margin-left:-5.376000pt;}
._1{margin-left:-4.021333pt;}
._b{margin-left:-2.517333pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.109333pt;}
._5{width:2.496000pt;}
._d{width:3.818667pt;}
._3{width:4.714667pt;}
._15{width:5.893333pt;}
._8{width:6.784000pt;}
._9{width:7.680000pt;}
._10{width:8.746667pt;}
._e{width:9.642667pt;}
._c{width:14.976000pt;}
._12{width:22.698667pt;}
._11{width:23.594667pt;}
._7{width:27.776000pt;}
.fsa{font-size:74.666667pt;}
.fs6{font-size:101.333333pt;}
.fs7{font-size:106.666667pt;}
.fs3{font-size:112.000000pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:128.000000pt;}
.fs8{font-size:133.333333pt;}
.fs0{font-size:138.666667pt;}
.fs5{font-size:234.666667pt;}
.fs2{font-size:240.000000pt;}
.fs9{font-size:325.333333pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:2.205333pt;}
.y34{bottom:328.146400pt;}
.y33{bottom:371.346400pt;}
.y32{bottom:414.546400pt;}
.y31{bottom:457.746400pt;}
.y30{bottom:500.946400pt;}
.y2f{bottom:544.146400pt;}
.y2e{bottom:587.346400pt;}
.y2d{bottom:630.546400pt;}
.y2c{bottom:679.233867pt;}
.y29{bottom:805.475200pt;}
.y28{bottom:857.675200pt;}
.y27{bottom:925.875200pt;}
.y26{bottom:978.075200pt;}
.y2b{bottom:991.760800pt;}
.y25{bottom:1046.275200pt;}
.y36{bottom:1093.300000pt;}
.y24{bottom:1098.475200pt;}
.y35{bottom:1133.300000pt;}
.y23{bottom:1166.675200pt;}
.y2a{bottom:1220.624267pt;}
.y22{bottom:1227.776000pt;}
.y1a{bottom:1360.510667pt;}
.y40{bottom:1362.898667pt;}
.y19{bottom:1405.510667pt;}
.y3f{bottom:1409.698667pt;}
.y21{bottom:1450.369333pt;}
.y18{bottom:1466.510667pt;}
.y3e{bottom:1472.498667pt;}
.y20{bottom:1497.169333pt;}
.y3d{bottom:1519.298667pt;}
.y17{bottom:1527.510667pt;}
.y1f{bottom:1559.969333pt;}
.y3c{bottom:1582.098667pt;}
.y16{bottom:1588.510667pt;}
.y1e{bottom:1606.769333pt;}
.y3b{bottom:1628.898667pt;}
.y15{bottom:1633.510667pt;}
.y1d{bottom:1669.569333pt;}
.y3a{bottom:1691.698667pt;}
.y14{bottom:1694.510667pt;}
.y1c{bottom:1732.369333pt;}
.y39{bottom:1738.498667pt;}
.y13{bottom:1739.510667pt;}
.y1b{bottom:1787.634667pt;}
.y41{bottom:1792.968000pt;}
.y38{bottom:1927.045333pt;}
.yd{bottom:1977.729333pt;}
.yc{bottom:2029.929333pt;}
.yb{bottom:2082.129333pt;}
.ya{bottom:2134.329333pt;}
.y9{bottom:2186.529333pt;}
.y8{bottom:2238.729333pt;}
.y7{bottom:2290.929333pt;}
.y11{bottom:2343.452000pt;}
.y10{bottom:2498.441333pt;}
.yf{bottom:2550.641333pt;}
.ye{bottom:2602.841333pt;}
.y6{bottom:2677.181333pt;}
.y5{bottom:2732.981333pt;}
.y4{bottom:2788.781333pt;}
.y3{bottom:2844.581333pt;}
.y2{bottom:2900.381333pt;}
.y1{bottom:2956.181333pt;}
.y37{bottom:3039.914667pt;}
.h3{height:59.733333pt;}
.hd{height:71.093750pt;}
.h9{height:96.484375pt;}
.ha{height:101.562500pt;}
.h5{height:106.640625pt;}
.h7{height:111.718750pt;}
.h2{height:121.875000pt;}
.hb{height:126.953125pt;}
.h1{height:132.031250pt;}
.h8{height:223.437500pt;}
.h4{height:228.515625pt;}
.h6{height:275.944958pt;}
.hc{height:309.765625pt;}
.h0{height:3778.666667pt;}
.w1{width:933.005733pt;}
.w0{width:2645.333333pt;}
.x0{left:0.000000pt;}
.x5{left:17.900387pt;}
.x4{left:73.566280pt;}
.x3{left:78.427360pt;}
.x1{left:80.678027pt;}
.x2{left:82.843320pt;}
.x10{left:86.133293pt;}
.xd{left:91.466667pt;}
.xf{left:96.084360pt;}
.x7{left:98.133333pt;}
.x6{left:99.437747pt;}
.xe{left:399.116000pt;}
.x12{left:984.023733pt;}
.x13{left:1001.357067pt;}
.xa{left:1184.023733pt;}
.xb{left:1185.136533pt;}
.xc{left:1202.469867pt;}
.x11{left:1404.600000pt;}
.x8{left:1859.710667pt;}
.x9{left:1877.044000pt;}
}




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