
    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_c240ee7b11b3dc1bce05ec6f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_9070bd5f62a84d45fee32dbc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_3395f436a73aafbe1c89d17d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_f138c3aeed6d7827505d02d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.110000px;}
.lsd{letter-spacing:-0.834000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.180600px;}
.ls10{letter-spacing:0.820950px;}
.ls7{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.325100px;}
.lsa{letter-spacing:1.440000px;}
.lsb{letter-spacing:1.524000px;}
.lse{letter-spacing:7.822500px;}
.ls11{letter-spacing:17.070000px;}
.lsf{letter-spacing:17.220000px;}
.ls4{letter-spacing:17.498400px;}
.ls16{letter-spacing:67.018800px;}
.ls15{letter-spacing:67.109400px;}
.ls14{letter-spacing:96.886800px;}
.ls13{letter-spacing:96.977400px;}
.ls2{letter-spacing:99.040800px;}
.ls1{letter-spacing:99.131400px;}
.lsc{letter-spacing:100.289400px;}
.ls3{letter-spacing:103.325400px;}
.ls5{letter-spacing:103.416000px;}
.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;}
}
.ws11{word-spacing:-33.860400px;}
.ws10{word-spacing:-30.065700px;}
.ws12{word-spacing:-28.814700px;}
.ws5{word-spacing:-26.354400px;}
.ws8{word-spacing:-23.810700px;}
.wsb{word-spacing:-18.806700px;}
.wsf{word-spacing:-18.376650px;}
.wse{word-spacing:-17.555700px;}
.ws4{word-spacing:-16.304700px;}
.ws3{word-spacing:-15.194700px;}
.wsc{word-spacing:-2.166300px;}
.ws9{word-spacing:-2.038050px;}
.wsd{word-spacing:-0.625500px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.224700px;}
.ws1{word-spacing:43.981200px;}
.ws2{word-spacing:44.066400px;}
.ws7{word-spacing:47.677200px;}
.ws6{word-spacing:47.762400px;}
._2{margin-left:-5.111100px;}
._3{margin-left:-3.691350px;}
._0{margin-left:-2.271600px;}
._5{margin-left:-1.257750px;}
._1{width:1.987650px;}
._6{width:3.376050px;}
._4{width:4.435200px;}
._7{width:6.548550px;}
._b{width:31.264200px;}
._9{width:32.655300px;}
._a{width:96.886800px;}
._8{width:124.731600px;}
.fc2{color:rgb(0,151,167);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:36.000000px;}
.fs12{font-size:36.150000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:58.500000px;}
.fsb{font-size:58.650000px;}
.fs10{font-size:63.000000px;}
.fsf{font-size:63.150000px;}
.fs17{font-size:67.500000px;}
.fse{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs9{font-size:85.650000px;}
.fs1{font-size:90.150000px;}
.fs2{font-size:90.300000px;}
.fs5{font-size:94.650000px;}
.fs6{font-size:94.800000px;}
.fs8{font-size:103.650000px;}
.fsa{font-size:103.800000px;}
.fs16{font-size:108.150000px;}
.fs15{font-size:108.300000px;}
.fs18{font-size:112.650000px;}
.fs19{font-size:112.800000px;}
.fs13{font-size:121.650000px;}
.fs14{font-size:121.800000px;}
.fs3{font-size:148.650000px;}
.fs0{font-size:283.950000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.237500px;}
.y8d{bottom:9.600000px;}
.y55{bottom:50.962500px;}
.y2c{bottom:66.937500px;}
.y54{bottom:67.875000px;}
.y14{bottom:68.100000px;}
.y29{bottom:70.350000px;}
.y37{bottom:79.350000px;}
.y86{bottom:80.887500px;}
.y53{bottom:84.787500px;}
.y87{bottom:87.900000px;}
.y13{bottom:92.887500px;}
.y2b{bottom:96.225000px;}
.y85{bottom:97.800000px;}
.y28{bottom:104.137500px;}
.y1e{bottom:109.800000px;}
.y56{bottom:111.937500px;}
.y12{bottom:117.675000px;}
.y43{bottom:121.875000px;}
.y2a{bottom:125.550000px;}
.y95{bottom:127.425000px;}
.y6{bottom:128.962500px;}
.y27{bottom:136.837500px;}
.y83{bottom:139.012500px;}
.y6a{bottom:143.587500px;}
.y1d{bottom:144.712500px;}
.y84{bottom:146.062500px;}
.y51{bottom:146.212500px;}
.y5{bottom:150.375000px;}
.y82{bottom:155.925000px;}
.y36{bottom:158.250000px;}
.y42{bottom:160.200000px;}
.y1c{bottom:161.625000px;}
.y94{bottom:162.375000px;}
.y50{bottom:163.095000px;}
.y11{bottom:168.375000px;}
.y26{bottom:169.545000px;}
.y4{bottom:171.780000px;}
.y69{bottom:178.530000px;}
.y1b{bottom:179.655000px;}
.y4f{bottom:180.000000px;}
.y61{bottom:180.750000px;}
.y41{bottom:181.620000px;}
.y35{bottom:183.030000px;}
.y10{bottom:193.200000px;}
.y4e{bottom:196.905000px;}
.y80{bottom:197.130000px;}
.y93{bottom:197.325000px;}
.y70{bottom:201.675000px;}
.y40{bottom:201.900000px;}
.y25{bottom:203.325000px;}
.y81{bottom:204.195000px;}
.y68{bottom:212.370000px;}
.y7f{bottom:214.050000px;}
.y1a{bottom:214.620000px;}
.y60{bottom:216.825000px;}
.yf{bottom:217.995000px;}
.y52{bottom:224.070000px;}
.y34{bottom:228.120000px;}
.y92{bottom:232.275000px;}
.y24{bottom:236.025000px;}
.y6f{bottom:237.750000px;}
.y3f{bottom:241.350000px;}
.y3{bottom:244.770000px;}
.y67{bottom:246.150000px;}
.y5f{bottom:252.870000px;}
.y7d{bottom:255.300000px;}
.y33{bottom:256.320000px;}
.y4c{bottom:259.545000px;}
.y7e{bottom:262.320000px;}
.ye{bottom:267.570000px;}
.y91{bottom:268.320000px;}
.y23{bottom:269.820000px;}
.y7c{bottom:272.220000px;}
.y6e{bottom:273.780000px;}
.y4b{bottom:276.450000px;}
.y3e{bottom:279.675000px;}
.y66{bottom:279.975000px;}
.y32{bottom:283.350000px;}
.y5e{bottom:288.945000px;}
.yd{bottom:292.380000px;}
.y3d{bottom:301.095000px;}
.y22{bottom:302.505000px;}
.y90{bottom:303.255000px;}
.y4d{bottom:303.600000px;}
.y6d{bottom:309.870000px;}
.y31{bottom:310.395000px;}
.y7a{bottom:313.425000px;}
.yc{bottom:317.175000px;}
.y7b{bottom:320.475000px;}
.y19{bottom:321.675000px;}
.y5d{bottom:325.020000px;}
.y2{bottom:329.280000px;}
.y79{bottom:330.345000px;}
.y8c{bottom:330.525000px;}
.y21{bottom:336.345000px;}
.y30{bottom:338.580000px;}
.y49{bottom:339.045000px;}
.y3c{bottom:339.405000px;}
.yb{bottom:341.955000px;}
.y18{bottom:345.330000px;}
.y6c{bottom:345.945000px;}
.y48{bottom:355.950000px;}
.y3b{bottom:360.825000px;}
.y5c{bottom:361.095000px;}
.y2f{bottom:365.625000px;}
.y8b{bottom:366.570000px;}
.y65{bottom:366.750000px;}
.y17{bottom:369.000000px;}
.y77{bottom:371.550000px;}
.y8f{bottom:374.295000px;}
.y78{bottom:378.600000px;}
.y3a{bottom:381.120000px;}
.y6b{bottom:382.020000px;}
.y4a{bottom:383.100000px;}
.y76{bottom:388.455000px;}
.ya{bottom:391.575000px;}
.y16{bottom:392.700000px;}
.y5b{bottom:397.125000px;}
.y64{bottom:400.575000px;}
.y20{bottom:401.700000px;}
.y39{bottom:402.525000px;}
.y8a{bottom:402.630000px;}
.y1{bottom:413.820000px;}
.y9{bottom:416.370000px;}
.y15{bottom:417.495000px;}
.y46{bottom:418.575000px;}
.y74{bottom:429.720000px;}
.y63{bottom:434.400000px;}
.y45{bottom:435.495000px;}
.y1f{bottom:435.525000px;}
.y75{bottom:436.725000px;}
.y89{bottom:438.720000px;}
.y2e{bottom:438.900000px;}
.y38{bottom:440.850000px;}
.y8{bottom:441.150000px;}
.y8e{bottom:444.000000px;}
.y73{bottom:446.625000px;}
.y47{bottom:462.630000px;}
.y88{bottom:474.780000px;}
.y7{bottom:507.945000px;}
.y44{bottom:519.225000px;}
.y5a{bottom:519.825000px;}
.y72{bottom:528.825000px;}
.y59{bottom:531.075000px;}
.y58{bottom:542.370000px;}
.y57{bottom:552.495000px;}
.y71{bottom:554.745000px;}
.y62{bottom:577.650000px;}
.h15{height:26.314453px;}
.h16{height:26.424097px;}
.h17{height:26.560547px;}
.he{height:39.471680px;}
.hd{height:42.760986px;}
.hc{height:42.870630px;}
.hb{height:44.102051px;}
.h14{height:46.050293px;}
.h12{height:46.159937px;}
.h13{height:46.480957px;}
.h11{height:46.591626px;}
.h1d{height:49.339600px;}
.h10{height:49.449243px;}
.hf{height:50.869629px;}
.h5{height:54.253418px;}
.h9{height:62.606470px;}
.h1c{height:64.404785px;}
.h2{height:65.895776px;}
.h3{height:66.005420px;}
.h6{height:69.185083px;}
.h7{height:69.294727px;}
.h8{height:75.763696px;}
.ha{height:75.873340px;}
.h1b{height:79.053003px;}
.h1a{height:79.162646px;}
.h1e{height:82.342310px;}
.h1f{height:82.451953px;}
.h18{height:88.920923px;}
.h19{height:89.030566px;}
.h4{height:108.656763px;}
.h1{height:207.555249px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:10.799984px;}
.x12{left:21.637484px;}
.x2{left:48.524984px;}
.xd{left:52.162484px;}
.x1b{left:56.287484px;}
.x7{left:61.162484px;}
.x8{left:62.662484px;}
.xa{left:67.049984px;}
.x1{left:73.949984px;}
.x1d{left:81.449984px;}
.x9{left:101.737484px;}
.x17{left:104.062484px;}
.x16{left:108.937484px;}
.x1a{left:111.112484px;}
.x19{left:112.874984px;}
.xe{left:115.049984px;}
.x18{left:118.162484px;}
.xf{left:121.799984px;}
.x11{left:131.774984px;}
.x3{left:183.869984px;}
.x5{left:329.204984px;}
.x6{left:356.324984px;}
.x1c{left:358.199984px;}
.x4{left:369.494984px;}
.x13{left:400.499984px;}
.x14{left:404.474984px;}
.x15{left:411.224984px;}
.x10{left:751.094984px;}
.xc{left:869.699984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.986667pt;}
.lsd{letter-spacing:-0.741333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.160533pt;}
.ls10{letter-spacing:0.729733pt;}
.ls7{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.906667pt;}
.ls9{letter-spacing:1.177867pt;}
.lsa{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.354667pt;}
.lse{letter-spacing:6.953333pt;}
.ls11{letter-spacing:15.173333pt;}
.lsf{letter-spacing:15.306667pt;}
.ls4{letter-spacing:15.554133pt;}
.ls16{letter-spacing:59.572267pt;}
.ls15{letter-spacing:59.652800pt;}
.ls14{letter-spacing:86.121600pt;}
.ls13{letter-spacing:86.202133pt;}
.ls2{letter-spacing:88.036267pt;}
.ls1{letter-spacing:88.116800pt;}
.lsc{letter-spacing:89.146133pt;}
.ls3{letter-spacing:91.844800pt;}
.ls5{letter-spacing:91.925333pt;}
.ws11{word-spacing:-30.098133pt;}
.ws10{word-spacing:-26.725067pt;}
.ws12{word-spacing:-25.613067pt;}
.ws5{word-spacing:-23.426133pt;}
.ws8{word-spacing:-21.165067pt;}
.wsb{word-spacing:-16.717067pt;}
.wsf{word-spacing:-16.334800pt;}
.wse{word-spacing:-15.605067pt;}
.ws4{word-spacing:-14.493067pt;}
.ws3{word-spacing:-13.506400pt;}
.wsc{word-spacing:-1.925600pt;}
.ws9{word-spacing:-1.811600pt;}
.wsd{word-spacing:-0.556000pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.199733pt;}
.ws1{word-spacing:39.094400pt;}
.ws2{word-spacing:39.170133pt;}
.ws7{word-spacing:42.379733pt;}
.ws6{word-spacing:42.455467pt;}
._2{margin-left:-4.543200pt;}
._3{margin-left:-3.281200pt;}
._0{margin-left:-2.019200pt;}
._5{margin-left:-1.118000pt;}
._1{width:1.766800pt;}
._6{width:3.000933pt;}
._4{width:3.942400pt;}
._7{width:5.820933pt;}
._b{width:27.790400pt;}
._9{width:29.026933pt;}
._a{width:86.121600pt;}
._8{width:110.872533pt;}
.fs11{font-size:32.000000pt;}
.fs12{font-size:32.133333pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:52.000000pt;}
.fsb{font-size:52.133333pt;}
.fs10{font-size:56.000000pt;}
.fsf{font-size:56.133333pt;}
.fs17{font-size:60.000000pt;}
.fse{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs9{font-size:76.133333pt;}
.fs1{font-size:80.133333pt;}
.fs2{font-size:80.266667pt;}
.fs5{font-size:84.133333pt;}
.fs6{font-size:84.266667pt;}
.fs8{font-size:92.133333pt;}
.fsa{font-size:92.266667pt;}
.fs16{font-size:96.133333pt;}
.fs15{font-size:96.266667pt;}
.fs18{font-size:100.133333pt;}
.fs19{font-size:100.266667pt;}
.fs13{font-size:108.133333pt;}
.fs14{font-size:108.266667pt;}
.fs3{font-size:132.133333pt;}
.fs0{font-size:252.400000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:6.433333pt;}
.y8d{bottom:8.533333pt;}
.y55{bottom:45.300000pt;}
.y2c{bottom:59.500000pt;}
.y54{bottom:60.333333pt;}
.y14{bottom:60.533333pt;}
.y29{bottom:62.533333pt;}
.y37{bottom:70.533333pt;}
.y86{bottom:71.900000pt;}
.y53{bottom:75.366667pt;}
.y87{bottom:78.133333pt;}
.y13{bottom:82.566667pt;}
.y2b{bottom:85.533333pt;}
.y85{bottom:86.933333pt;}
.y28{bottom:92.566667pt;}
.y1e{bottom:97.600000pt;}
.y56{bottom:99.500000pt;}
.y12{bottom:104.600000pt;}
.y43{bottom:108.333333pt;}
.y2a{bottom:111.600000pt;}
.y95{bottom:113.266667pt;}
.y6{bottom:114.633333pt;}
.y27{bottom:121.633333pt;}
.y83{bottom:123.566667pt;}
.y6a{bottom:127.633333pt;}
.y1d{bottom:128.633333pt;}
.y84{bottom:129.833333pt;}
.y51{bottom:129.966667pt;}
.y5{bottom:133.666667pt;}
.y82{bottom:138.600000pt;}
.y36{bottom:140.666667pt;}
.y42{bottom:142.400000pt;}
.y1c{bottom:143.666667pt;}
.y94{bottom:144.333333pt;}
.y50{bottom:144.973333pt;}
.y11{bottom:149.666667pt;}
.y26{bottom:150.706667pt;}
.y4{bottom:152.693333pt;}
.y69{bottom:158.693333pt;}
.y1b{bottom:159.693333pt;}
.y4f{bottom:160.000000pt;}
.y61{bottom:160.666667pt;}
.y41{bottom:161.440000pt;}
.y35{bottom:162.693333pt;}
.y10{bottom:171.733333pt;}
.y4e{bottom:175.026667pt;}
.y80{bottom:175.226667pt;}
.y93{bottom:175.400000pt;}
.y70{bottom:179.266667pt;}
.y40{bottom:179.466667pt;}
.y25{bottom:180.733333pt;}
.y81{bottom:181.506667pt;}
.y68{bottom:188.773333pt;}
.y7f{bottom:190.266667pt;}
.y1a{bottom:190.773333pt;}
.y60{bottom:192.733333pt;}
.yf{bottom:193.773333pt;}
.y52{bottom:199.173333pt;}
.y34{bottom:202.773333pt;}
.y92{bottom:206.466667pt;}
.y24{bottom:209.800000pt;}
.y6f{bottom:211.333333pt;}
.y3f{bottom:214.533333pt;}
.y3{bottom:217.573333pt;}
.y67{bottom:218.800000pt;}
.y5f{bottom:224.773333pt;}
.y7d{bottom:226.933333pt;}
.y33{bottom:227.840000pt;}
.y4c{bottom:230.706667pt;}
.y7e{bottom:233.173333pt;}
.ye{bottom:237.840000pt;}
.y91{bottom:238.506667pt;}
.y23{bottom:239.840000pt;}
.y7c{bottom:241.973333pt;}
.y6e{bottom:243.360000pt;}
.y4b{bottom:245.733333pt;}
.y3e{bottom:248.600000pt;}
.y66{bottom:248.866667pt;}
.y32{bottom:251.866667pt;}
.y5e{bottom:256.840000pt;}
.yd{bottom:259.893333pt;}
.y3d{bottom:267.640000pt;}
.y22{bottom:268.893333pt;}
.y90{bottom:269.560000pt;}
.y4d{bottom:269.866667pt;}
.y6d{bottom:275.440000pt;}
.y31{bottom:275.906667pt;}
.y7a{bottom:278.600000pt;}
.yc{bottom:281.933333pt;}
.y7b{bottom:284.866667pt;}
.y19{bottom:285.933333pt;}
.y5d{bottom:288.906667pt;}
.y2{bottom:292.693333pt;}
.y79{bottom:293.640000pt;}
.y8c{bottom:293.800000pt;}
.y21{bottom:298.973333pt;}
.y30{bottom:300.960000pt;}
.y49{bottom:301.373333pt;}
.y3c{bottom:301.693333pt;}
.yb{bottom:303.960000pt;}
.y18{bottom:306.960000pt;}
.y6c{bottom:307.506667pt;}
.y48{bottom:316.400000pt;}
.y3b{bottom:320.733333pt;}
.y5c{bottom:320.973333pt;}
.y2f{bottom:325.000000pt;}
.y8b{bottom:325.840000pt;}
.y65{bottom:326.000000pt;}
.y17{bottom:328.000000pt;}
.y77{bottom:330.266667pt;}
.y8f{bottom:332.706667pt;}
.y78{bottom:336.533333pt;}
.y3a{bottom:338.773333pt;}
.y6b{bottom:339.573333pt;}
.y4a{bottom:340.533333pt;}
.y76{bottom:345.293333pt;}
.ya{bottom:348.066667pt;}
.y16{bottom:349.066667pt;}
.y5b{bottom:353.000000pt;}
.y64{bottom:356.066667pt;}
.y20{bottom:357.066667pt;}
.y39{bottom:357.800000pt;}
.y8a{bottom:357.893333pt;}
.y1{bottom:367.840000pt;}
.y9{bottom:370.106667pt;}
.y15{bottom:371.106667pt;}
.y46{bottom:372.066667pt;}
.y74{bottom:381.973333pt;}
.y63{bottom:386.133333pt;}
.y45{bottom:387.106667pt;}
.y1f{bottom:387.133333pt;}
.y75{bottom:388.200000pt;}
.y89{bottom:389.973333pt;}
.y2e{bottom:390.133333pt;}
.y38{bottom:391.866667pt;}
.y8{bottom:392.133333pt;}
.y8e{bottom:394.666667pt;}
.y73{bottom:397.000000pt;}
.y47{bottom:411.226667pt;}
.y88{bottom:422.026667pt;}
.y7{bottom:451.506667pt;}
.y44{bottom:461.533333pt;}
.y5a{bottom:462.066667pt;}
.y72{bottom:470.066667pt;}
.y59{bottom:472.066667pt;}
.y58{bottom:482.106667pt;}
.y57{bottom:491.106667pt;}
.y71{bottom:493.106667pt;}
.y62{bottom:513.466667pt;}
.h15{height:23.390625pt;}
.h16{height:23.488086pt;}
.h17{height:23.609375pt;}
.he{height:35.085938pt;}
.hd{height:38.009766pt;}
.hc{height:38.107227pt;}
.hb{height:39.201823pt;}
.h14{height:40.933594pt;}
.h12{height:41.031055pt;}
.h13{height:41.316406pt;}
.h11{height:41.414779pt;}
.h1d{height:43.857422pt;}
.h10{height:43.954883pt;}
.hf{height:45.217448pt;}
.h5{height:48.225260pt;}
.h9{height:55.650195pt;}
.h1c{height:57.248698pt;}
.h2{height:58.574023pt;}
.h3{height:58.671484pt;}
.h6{height:61.497852pt;}
.h7{height:61.595312pt;}
.h8{height:67.345508pt;}
.ha{height:67.442969pt;}
.h1b{height:70.269336pt;}
.h1a{height:70.366797pt;}
.h1e{height:73.193164pt;}
.h1f{height:73.290625pt;}
.h18{height:79.040820pt;}
.h19{height:79.138281pt;}
.h4{height:96.583789pt;}
.h1{height:184.493555pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.599986pt;}
.x12{left:19.233319pt;}
.x2{left:43.133319pt;}
.xd{left:46.366652pt;}
.x1b{left:50.033319pt;}
.x7{left:54.366652pt;}
.x8{left:55.699986pt;}
.xa{left:59.599986pt;}
.x1{left:65.733319pt;}
.x1d{left:72.399986pt;}
.x9{left:90.433319pt;}
.x17{left:92.499986pt;}
.x16{left:96.833319pt;}
.x1a{left:98.766652pt;}
.x19{left:100.333319pt;}
.xe{left:102.266652pt;}
.x18{left:105.033319pt;}
.xf{left:108.266652pt;}
.x11{left:117.133319pt;}
.x3{left:163.439986pt;}
.x5{left:292.626652pt;}
.x6{left:316.733319pt;}
.x1c{left:318.399986pt;}
.x4{left:328.439986pt;}
.x13{left:355.999986pt;}
.x14{left:359.533319pt;}
.x15{left:365.533319pt;}
.x10{left:667.639986pt;}
.xc{left:773.066652pt;}
}




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