
    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_ba55fb347711f7c44e085f6d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5e46284bed536fa3f67b1ce4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_69baaa12615e424a51669af6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_7c04e7b8f61336fa7aacfb7e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_85ddac7450b8385b5f2a8d67.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_55a7fe5d247a154b9e5b6a59.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_ea07c1607ac850a63bcb9fba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929199;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_419d9cd02bce4badece40a9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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_a3da7729959811f9e48b60bd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.865234;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.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.v1{vertical-align:25.200000px;}
.lsf{letter-spacing:-0.384480px;}
.ls14{letter-spacing:-0.316800px;}
.lsd{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.203760px;}
.ls12{letter-spacing:-0.190080px;}
.ls3{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.084240px;}
.ls13{letter-spacing:-0.083520px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.063360px;}
.lsb{letter-spacing:0.124488px;}
.ls4{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.224640px;}
.ls8{letter-spacing:0.273600px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.336960px;}
.ls0{letter-spacing:22.910703px;}
.ls9{letter-spacing:45.000000px;}
.lse{letter-spacing:88.164000px;}
.lsa{letter-spacing:101.952000px;}
.lsc{letter-spacing:128.592000px;}
.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;}
}
.ws16{word-spacing:-26.621280px;}
.ws1c{word-spacing:-23.755680px;}
.wse{word-spacing:-23.334480px;}
.ws7{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.872000px;}
.ws20{word-spacing:-17.677440px;}
.ws4{word-spacing:-9.151644px;}
.ws26{word-spacing:-2.534400px;}
.ws14{word-spacing:-2.442960px;}
.ws28{word-spacing:-1.837440px;}
.ws18{word-spacing:-1.684800px;}
.ws17{word-spacing:-1.436400px;}
.wsd{word-spacing:-1.432080px;}
.ws1d{word-spacing:-1.153440px;}
.ws6{word-spacing:-1.152000px;}
.ws1f{word-spacing:-1.095120px;}
.ws24{word-spacing:-1.077120px;}
.ws19{word-spacing:-1.010880px;}
.ws27{word-spacing:-0.696960px;}
.ws11{word-spacing:-0.670320px;}
.ws1e{word-spacing:-0.384480px;}
.ws22{word-spacing:-0.380160px;}
.wsb{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.126720px;}
.ws3{word-spacing:-0.059776px;}
.ws5{word-spacing:0.000000px;}
.ws25{word-spacing:0.083520px;}
.wsa{word-spacing:0.144000px;}
.wsc{word-spacing:0.432000px;}
.ws13{word-spacing:0.766080px;}
.ws10{word-spacing:1.152000px;}
.ws9{word-spacing:1.222560px;}
.ws12{word-spacing:1.436400px;}
.wsf{word-spacing:1.872000px;}
.ws15{word-spacing:2.592000px;}
.ws1a{word-spacing:3.456000px;}
.ws21{word-spacing:6.373440px;}
.ws1b{word-spacing:6.716160px;}
.ws2{word-spacing:22.834279px;}
.ws1{word-spacing:26.970931px;}
.ws0{word-spacing:32.192873px;}
._3{margin-left:-3.868656px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.097470px;}
._4{width:1.120680px;}
._1{width:2.668393px;}
._5{width:16.093440px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,46,64);}
.fc2{color:rgb(173,156,112);}
.fc4{color:rgb(63,63,63);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:56.160000px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:63.360000px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:86.077200px;}
.fs9{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.fsa{font-size:192.240000px;}
.fs3{font-size:203.760000px;}
.y0{bottom:0.000000px;}
.y17{bottom:7.390800px;}
.y26{bottom:15.068850px;}
.y19{bottom:22.408800px;}
.y16{bottom:32.590800px;}
.y15{bottom:37.225350px;}
.y5c{bottom:38.629050px;}
.y32{bottom:51.425700px;}
.y5e{bottom:63.766500px;}
.y25{bottom:65.242200px;}
.y5b{bottom:68.311410px;}
.y40{bottom:71.020230px;}
.y3e{bottom:77.496630px;}
.y31{bottom:89.225850px;}
.y5a{bottom:93.520230px;}
.y3f{bottom:96.229050px;}
.y3d{bottom:106.296450px;}
.y59{bottom:118.729050px;}
.y30{bottom:127.025850px;}
.y11{bottom:134.047500px;}
.y24{bottom:134.902380px;}
.y58{bottom:148.420230px;}
.y4a{bottom:149.734800px;}
.y12{bottom:151.420200px;}
.y23{bottom:163.702200px;}
.y2f{bottom:164.826030px;}
.y57{bottom:173.629050px;}
.y3c{bottom:175.956990px;}
.y49{bottom:178.534620px;}
.y2e{bottom:193.625850px;}
.y22{bottom:201.502200px;}
.y65{bottom:203.220750px;}
.y56{bottom:203.320230px;}
.y3b{bottom:204.756810px;}
.y48{bottom:207.334440px;}
.y13{bottom:228.074400px;}
.y55{bottom:228.529050px;}
.y2d{bottom:231.426030px;}
.y3a{bottom:233.556630px;}
.y47{bottom:236.134260px;}
.y21{bottom:239.302200px;}
.y62{bottom:245.956650px;}
.y61{bottom:245.991750px;}
.y54{bottom:258.220230px;}
.y2c{bottom:260.225850px;}
.y39{bottom:262.356450px;}
.y46{bottom:264.934080px;}
.y60{bottom:266.983650px;}
.y53{bottom:283.429050px;}
.y45{bottom:293.733900px;}
.y2b{bottom:298.025850px;}
.y20{bottom:308.782200px;}
.y52{bottom:313.120230px;}
.y38{bottom:331.836630px;}
.y51{bottom:338.329050px;}
.y1f{bottom:346.582200px;}
.y37{bottom:360.636450px;}
.y44{bottom:363.394080px;}
.y50{bottom:368.020230px;}
.y2a{bottom:370.566030px;}
.y1e{bottom:384.382380px;}
.y64{bottom:385.576050px;}
.y43{bottom:392.193900px;}
.y4f{bottom:393.229050px;}
.y29{bottom:399.365850px;}
.y1d{bottom:413.182200px;}
.y42{bottom:420.993900px;}
.y4e{bottom:422.920230px;}
.y36{bottom:430.296630px;}
.y28{bottom:437.165700px;}
.y63{bottom:437.484300px;}
.y5f{bottom:443.250000px;}
.y1c{bottom:448.102200px;}
.y4d{bottom:448.129050px;}
.y35{bottom:459.096450px;}
.y10{bottom:460.263000px;}
.y4c{bottom:477.829050px;}
.yf{bottom:478.195500px;}
.y1b{bottom:482.842200px;}
.y27{bottom:501.353400px;}
.ye{bottom:505.780500px;}
.y33{bottom:534.032550px;}
.y41{bottom:536.550450px;}
.y4b{bottom:536.950950px;}
.y34{bottom:542.710350px;}
.y18{bottom:543.439650px;}
.y1a{bottom:546.882900px;}
.y5d{bottom:551.250000px;}
.y14{bottom:559.663200px;}
.yd{bottom:571.522500px;}
.yc{bottom:589.455000px;}
.yb{bottom:616.354500px;}
.ya{bottom:634.287000px;}
.y9{bottom:661.186500px;}
.y8{bottom:679.119000px;}
.y7{bottom:706.704000px;}
.y6{bottom:772.446000px;}
.y5{bottom:800.029500px;}
.y4{bottom:865.773000px;}
.y3{bottom:883.705500px;}
.y2{bottom:911.289000px;}
.y1{bottom:985.852500px;}
.h8{height:35.143594px;}
.h3{height:44.831700px;}
.he{height:46.158750px;}
.hf{height:49.142813px;}
.h2{height:50.211840px;}
.h6{height:52.453125px;}
.h1{height:60.254040px;}
.h9{height:61.370156px;}
.hd{height:66.148718px;}
.hb{height:69.762656px;}
.ha{height:78.679688px;}
.h7{height:104.906250px;}
.hc{height:140.049844px;}
.h5{height:148.442344px;}
.h4{height:607.500000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:10.798200px;}
.xe{left:20.531700px;}
.x8{left:24.466200px;}
.x1b{left:27.393300px;}
.x14{left:28.690350px;}
.x13{left:35.216400px;}
.x19{left:42.933450px;}
.x15{left:49.390350px;}
.xa{left:55.651800px;}
.x18{left:58.800900px;}
.x10{left:60.922500px;}
.x1a{left:63.633450px;}
.x4{left:65.254200px;}
.x5{left:74.974200px;}
.xb{left:77.071800px;}
.x9{left:86.398200px;}
.xf{left:87.534900px;}
.xc{left:123.151800px;}
.x11{left:127.702500px;}
.xd{left:163.656480px;}
.x12{left:168.202500px;}
.x2{left:198.819000px;}
.x1{left:200.652000px;}
.x23{left:249.689250px;}
.x1d{left:281.162250px;}
.x20{left:305.850000px;}
.x22{left:307.800000px;}
.x1c{left:342.450000px;}
.x21{left:375.750000px;}
.x3{left:454.699500px;}
.x16{left:511.689150px;}
.x1e{left:568.170000px;}
.x1f{left:664.290000px;}
.x17{left:673.324650px;}
.x7{left:986.512200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.v1{vertical-align:22.400000pt;}
.lsf{letter-spacing:-0.341760pt;}
.ls14{letter-spacing:-0.281600pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.181120pt;}
.ls12{letter-spacing:-0.168960pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.074880pt;}
.ls13{letter-spacing:-0.074240pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.056320pt;}
.lsb{letter-spacing:0.110656pt;}
.ls4{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.199680pt;}
.ls8{letter-spacing:0.243200pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.299520pt;}
.ls0{letter-spacing:20.365070pt;}
.ls9{letter-spacing:40.000000pt;}
.lse{letter-spacing:78.368000pt;}
.lsa{letter-spacing:90.624000pt;}
.lsc{letter-spacing:114.304000pt;}
.ws16{word-spacing:-23.663360pt;}
.ws1c{word-spacing:-21.116160pt;}
.wse{word-spacing:-20.741760pt;}
.ws7{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.664000pt;}
.ws20{word-spacing:-15.713280pt;}
.ws4{word-spacing:-8.134795pt;}
.ws26{word-spacing:-2.252800pt;}
.ws14{word-spacing:-2.171520pt;}
.ws28{word-spacing:-1.633280pt;}
.ws18{word-spacing:-1.497600pt;}
.ws17{word-spacing:-1.276800pt;}
.wsd{word-spacing:-1.272960pt;}
.ws1d{word-spacing:-1.025280pt;}
.ws6{word-spacing:-1.024000pt;}
.ws1f{word-spacing:-0.973440pt;}
.ws24{word-spacing:-0.957440pt;}
.ws19{word-spacing:-0.898560pt;}
.ws27{word-spacing:-0.619520pt;}
.ws11{word-spacing:-0.595840pt;}
.ws1e{word-spacing:-0.341760pt;}
.ws22{word-spacing:-0.337920pt;}
.wsb{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.112640pt;}
.ws3{word-spacing:-0.053134pt;}
.ws5{word-spacing:0.000000pt;}
.ws25{word-spacing:0.074240pt;}
.wsa{word-spacing:0.128000pt;}
.wsc{word-spacing:0.384000pt;}
.ws13{word-spacing:0.680960pt;}
.ws10{word-spacing:1.024000pt;}
.ws9{word-spacing:1.086720pt;}
.ws12{word-spacing:1.276800pt;}
.wsf{word-spacing:1.664000pt;}
.ws15{word-spacing:2.304000pt;}
.ws1a{word-spacing:3.072000pt;}
.ws21{word-spacing:5.665280pt;}
.ws1b{word-spacing:5.969920pt;}
.ws2{word-spacing:20.297137pt;}
.ws1{word-spacing:23.974161pt;}
.ws0{word-spacing:28.615887pt;}
._3{margin-left:-3.438805pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-0.975529pt;}
._4{width:0.996160pt;}
._1{width:2.371905pt;}
._5{width:14.305280pt;}
.fsd{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:49.920000pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:56.320000pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:76.513067pt;}
.fs9{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.fsa{font-size:170.880000pt;}
.fs3{font-size:181.120000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:6.569600pt;}
.y26{bottom:13.394533pt;}
.y19{bottom:19.918933pt;}
.y16{bottom:28.969600pt;}
.y15{bottom:33.089200pt;}
.y5c{bottom:34.336933pt;}
.y32{bottom:45.711733pt;}
.y5e{bottom:56.681333pt;}
.y25{bottom:57.993067pt;}
.y5b{bottom:60.721253pt;}
.y40{bottom:63.129093pt;}
.y3e{bottom:68.885893pt;}
.y31{bottom:79.311867pt;}
.y5a{bottom:83.129093pt;}
.y3f{bottom:85.536933pt;}
.y3d{bottom:94.485733pt;}
.y59{bottom:105.536933pt;}
.y30{bottom:112.911867pt;}
.y11{bottom:119.153333pt;}
.y24{bottom:119.913227pt;}
.y58{bottom:131.929093pt;}
.y4a{bottom:133.097600pt;}
.y12{bottom:134.595733pt;}
.y23{bottom:145.513067pt;}
.y2f{bottom:146.512027pt;}
.y57{bottom:154.336933pt;}
.y3c{bottom:156.406213pt;}
.y49{bottom:158.697440pt;}
.y2e{bottom:172.111867pt;}
.y22{bottom:179.113067pt;}
.y65{bottom:180.640667pt;}
.y56{bottom:180.729093pt;}
.y3b{bottom:182.006053pt;}
.y48{bottom:184.297280pt;}
.y13{bottom:202.732800pt;}
.y55{bottom:203.136933pt;}
.y2d{bottom:205.712027pt;}
.y3a{bottom:207.605893pt;}
.y47{bottom:209.897120pt;}
.y21{bottom:212.713067pt;}
.y62{bottom:218.628133pt;}
.y61{bottom:218.659333pt;}
.y54{bottom:229.529093pt;}
.y2c{bottom:231.311867pt;}
.y39{bottom:233.205733pt;}
.y46{bottom:235.496960pt;}
.y60{bottom:237.318800pt;}
.y53{bottom:251.936933pt;}
.y45{bottom:261.096800pt;}
.y2b{bottom:264.911867pt;}
.y20{bottom:274.473067pt;}
.y52{bottom:278.329093pt;}
.y38{bottom:294.965893pt;}
.y51{bottom:300.736933pt;}
.y1f{bottom:308.073067pt;}
.y37{bottom:320.565733pt;}
.y44{bottom:323.016960pt;}
.y50{bottom:327.129093pt;}
.y2a{bottom:329.392027pt;}
.y1e{bottom:341.673227pt;}
.y64{bottom:342.734267pt;}
.y43{bottom:348.616800pt;}
.y4f{bottom:349.536933pt;}
.y29{bottom:354.991867pt;}
.y1d{bottom:367.273067pt;}
.y42{bottom:374.216800pt;}
.y4e{bottom:375.929093pt;}
.y36{bottom:382.485893pt;}
.y28{bottom:388.591733pt;}
.y63{bottom:388.874933pt;}
.y5f{bottom:394.000000pt;}
.y1c{bottom:398.313067pt;}
.y4d{bottom:398.336933pt;}
.y35{bottom:408.085733pt;}
.y10{bottom:409.122667pt;}
.y4c{bottom:424.736933pt;}
.yf{bottom:425.062667pt;}
.y1b{bottom:429.193067pt;}
.y27{bottom:445.647467pt;}
.ye{bottom:449.582667pt;}
.y33{bottom:474.695600pt;}
.y41{bottom:476.933733pt;}
.y4b{bottom:477.289733pt;}
.y34{bottom:482.409200pt;}
.y18{bottom:483.057467pt;}
.y1a{bottom:486.118133pt;}
.y5d{bottom:490.000000pt;}
.y14{bottom:497.478400pt;}
.yd{bottom:508.020000pt;}
.yc{bottom:523.960000pt;}
.yb{bottom:547.870667pt;}
.ya{bottom:563.810667pt;}
.y9{bottom:587.721333pt;}
.y8{bottom:603.661333pt;}
.y7{bottom:628.181333pt;}
.y6{bottom:686.618667pt;}
.y5{bottom:711.137333pt;}
.y4{bottom:769.576000pt;}
.y3{bottom:785.516000pt;}
.y2{bottom:810.034667pt;}
.y1{bottom:876.313333pt;}
.h8{height:31.238750pt;}
.h3{height:39.850400pt;}
.he{height:41.030000pt;}
.hf{height:43.682500pt;}
.h2{height:44.632747pt;}
.h6{height:46.625000pt;}
.h1{height:53.559147pt;}
.h9{height:54.551250pt;}
.hd{height:58.798860pt;}
.hb{height:62.011250pt;}
.ha{height:69.937500pt;}
.h7{height:93.250000pt;}
.hc{height:124.488750pt;}
.h5{height:131.948750pt;}
.h4{height:540.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.598400pt;}
.xe{left:18.250400pt;}
.x8{left:21.747733pt;}
.x1b{left:24.349600pt;}
.x14{left:25.502533pt;}
.x13{left:31.303467pt;}
.x19{left:38.163067pt;}
.x15{left:43.902533pt;}
.xa{left:49.468267pt;}
.x18{left:52.267467pt;}
.x10{left:54.153333pt;}
.x1a{left:56.563067pt;}
.x4{left:58.003733pt;}
.x5{left:66.643733pt;}
.xb{left:68.508267pt;}
.x9{left:76.798400pt;}
.xf{left:77.808800pt;}
.xc{left:109.468267pt;}
.x11{left:113.513333pt;}
.xd{left:145.472427pt;}
.x12{left:149.513333pt;}
.x2{left:176.728000pt;}
.x1{left:178.357333pt;}
.x23{left:221.946000pt;}
.x1d{left:249.922000pt;}
.x20{left:271.866667pt;}
.x22{left:273.600000pt;}
.x1c{left:304.400000pt;}
.x21{left:334.000000pt;}
.x3{left:404.177333pt;}
.x16{left:454.834800pt;}
.x1e{left:505.040000pt;}
.x1f{left:590.480000pt;}
.x17{left:598.510800pt;}
.x7{left:876.899733pt;}
}




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