
    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_e1dbe5384a61da0b0f506974.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_927c431200ee3c34a9bf6483.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_fb093a658fe2ca7ca613adc1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_8c9924cf9f3ef33cca3550bc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_7ce8ae7e7194b5205cf0af8c.woff')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v1{vertical-align:-122.880000px;}
.v7{vertical-align:-34.380000px;}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.200000px;}
.v6{vertical-align:32.400000px;}
.v5{vertical-align:76.500000px;}
.v4{vertical-align:81.780000px;}
.ls17{letter-spacing:-2.358000px;}
.lsc{letter-spacing:-2.316000px;}
.ls18{letter-spacing:-2.208000px;}
.ls16{letter-spacing:-2.190000px;}
.lsb{letter-spacing:-2.184000px;}
.ls6{letter-spacing:-0.636000px;}
.ls11{letter-spacing:-0.484200px;}
.ls4{letter-spacing:-0.230400px;}
.lsd{letter-spacing:-0.137400px;}
.lsf{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.009480px;}
.lsa{letter-spacing:0.012600px;}
.lse{letter-spacing:1.074000px;}
.ls19{letter-spacing:1.434000px;}
.ls1{letter-spacing:1.908000px;}
.ls5{letter-spacing:2.136000px;}
.ls7{letter-spacing:2.196000px;}
.ls12{letter-spacing:2.346000px;}
.ls2{letter-spacing:4.800600px;}
.ls10{letter-spacing:4.860600px;}
.ls9{letter-spacing:32.210550px;}
.ls15{letter-spacing:32.322600px;}
.ls8{letter-spacing:47.340000px;}
.ls3{letter-spacing:49.792350px;}
.ls14{letter-spacing:92.572500px;}
.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;}
}
.ws1f{word-spacing:-166.800000px;}
.ws8{word-spacing:-108.150000px;}
.ws11{word-spacing:-87.168900px;}
.ws24{word-spacing:-87.108900px;}
.wse{word-spacing:-81.150000px;}
.ws2{word-spacing:-80.189100px;}
.ws12{word-spacing:-80.147400px;}
.wsd{word-spacing:-75.108900px;}
.ws20{word-spacing:-67.061550px;}
.ws9{word-spacing:-50.841000px;}
.ws23{word-spacing:-49.159650px;}
.ws10{word-spacing:-49.141950px;}
.ws4{word-spacing:-46.370400px;}
.ws26{word-spacing:-46.328700px;}
.ws1c{word-spacing:-33.818700px;}
.ws2f{word-spacing:-33.681300px;}
.ws16{word-spacing:-31.634700px;}
.ws0{word-spacing:-30.065700px;}
.ws13{word-spacing:-29.659650px;}
.ws25{word-spacing:-26.787900px;}
.ws14{word-spacing:-26.637900px;}
.wsc{word-spacing:-26.577900px;}
.wsa{word-spacing:-24.441900px;}
.ws19{word-spacing:-4.421850px;}
.ws1b{word-spacing:-4.136700px;}
.ws21{word-spacing:-3.889650px;}
.ws2a{word-spacing:-3.221970px;}
.ws34{word-spacing:-2.970750px;}
.ws1d{word-spacing:-2.946450px;}
.ws15{word-spacing:-2.671200px;}
.ws2e{word-spacing:-2.379000px;}
.ws28{word-spacing:-2.292000px;}
.ws2d{word-spacing:-2.275350px;}
.ws32{word-spacing:-2.261400px;}
.ws22{word-spacing:-1.766550px;}
.ws2b{word-spacing:-0.941400px;}
.ws1e{word-spacing:-0.882300px;}
.ws18{word-spacing:-0.813600px;}
.ws1a{word-spacing:-0.783600px;}
.ws29{word-spacing:-0.766200px;}
.ws17{word-spacing:-0.220050px;}
.wsb{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.ws35{word-spacing:0.310350px;}
.ws36{word-spacing:0.609750px;}
.ws7{word-spacing:1.132800px;}
.ws27{word-spacing:1.326300px;}
.ws3{word-spacing:1.404000px;}
.ws5{word-spacing:2.004000px;}
.ws6{word-spacing:3.253200px;}
.ws31{word-spacing:4.082400px;}
.ws33{word-spacing:4.453200px;}
.ws30{word-spacing:4.532400px;}
.ws2c{word-spacing:4.573200px;}
.wsf{word-spacing:710.654400px;}
._14{margin-left:-23.941350px;}
._15{margin-left:-20.570700px;}
._13{margin-left:-15.994500px;}
._b{margin-left:-12.112800px;}
._19{margin-left:-10.772550px;}
._6{margin-left:-9.084600px;}
._a{margin-left:-7.574700px;}
._f{margin-left:-5.544300px;}
._12{margin-left:-4.506150px;}
._2{margin-left:-3.485700px;}
._1{margin-left:-2.130150px;}
._7{margin-left:-1.114350px;}
._0{width:1.355550px;}
._4{width:2.816100px;}
._5{width:4.580700px;}
._e{width:5.632950px;}
._c{width:13.877700px;}
._16{width:24.653550px;}
._17{width:25.714800px;}
._18{width:27.591900px;}
._9{width:31.198950px;}
._8{width:32.420250px;}
._1a{width:33.676350px;}
._1d{width:34.842900px;}
._10{width:45.931950px;}
._d{width:50.172000px;}
._3{width:52.201950px;}
._11{width:54.037050px;}
._1b{width:55.210800px;}
._1c{width:94.640550px;}
.fc6{color:rgb(47,84,150);}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fc2{color:rgb(146,208,80);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(44,86,151);}
.fs6{font-size:81.000000px;}
.fs7{font-size:81.150000px;}
.fs2{font-size:108.150000px;}
.fs9{font-size:121.650000px;}
.fsa{font-size:121.800000px;}
.fs1{font-size:144.150000px;}
.fs3{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs0{font-size:193.650000px;}
.fs8{font-size:288.300000px;}
.fs4{font-size:288.450000px;}
.y0{bottom:0.000000px;}
.y37{bottom:10.425000px;}
.y33{bottom:10.875000px;}
.y36{bottom:22.087500px;}
.y11{bottom:29.137500px;}
.y40{bottom:33.712500px;}
.y3f{bottom:65.250000px;}
.y35{bottom:66.037500px;}
.y3c{bottom:71.062500px;}
.y39{bottom:72.787500px;}
.y2e{bottom:73.012500px;}
.y50{bottom:91.950000px;}
.yd{bottom:94.425000px;}
.y3e{bottom:97.912500px;}
.y1b{bottom:98.175000px;}
.y54{bottom:103.687500px;}
.y3b{bottom:103.762500px;}
.y38{bottom:105.450000px;}
.y2d{bottom:105.675000px;}
.y34{bottom:108.825000px;}
.y2b{bottom:113.887500px;}
.y17{bottom:117.787500px;}
.y8{bottom:127.500000px;}
.yc{bottom:129.375000px;}
.y4f{bottom:130.275000px;}
.y1a{bottom:130.875000px;}
.y3a{bottom:136.425000px;}
.y2c{bottom:138.337500px;}
.y2a{bottom:146.550000px;}
.y16{bottom:150.450000px;}
.y19{bottom:163.530000px;}
.yb{bottom:164.280000px;}
.y53{bottom:169.005000px;}
.y31{bottom:169.125000px;}
.y4e{bottom:169.680000px;}
.y15{bottom:185.400000px;}
.y7{bottom:186.075000px;}
.ya{bottom:199.200000px;}
.y4d{bottom:208.005000px;}
.y6{bottom:215.370000px;}
.y55{bottom:225.075000px;}
.y30{bottom:226.155000px;}
.y4c{bottom:246.300000px;}
.y14{bottom:250.725000px;}
.y1d{bottom:256.275000px;}
.y2f{bottom:258.825000px;}
.y4b{bottom:284.625000px;}
.y23{bottom:284.745000px;}
.y1c{bottom:288.945000px;}
.y9{bottom:289.620000px;}
.y26{bottom:294.570000px;}
.y5{bottom:303.270000px;}
.y24{bottom:303.570000px;}
.y4{bottom:339.150000px;}
.y4a{bottom:362.325000px;}
.y10{bottom:390.075000px;}
.y13{bottom:393.570000px;}
.y49{bottom:400.650000px;}
.y20{bottom:420.300000px;}
.y21{bottom:421.350000px;}
.y1f{bottom:425.820000px;}
.y3{bottom:434.475000px;}
.y48{bottom:438.945000px;}
.y1e{bottom:443.925000px;}
.yf{bottom:444.150000px;}
.y12{bottom:447.630000px;}
.y22{bottom:459.900000px;}
.y25{bottom:471.975000px;}
.y2{bottom:487.425000px;}
.y47{bottom:529.095000px;}
.y1{bottom:539.250000px;}
.y42{bottom:545.700000px;}
.y41{bottom:563.775000px;}
.y46{bottom:565.125000px;}
.y52{bottom:568.005000px;}
.y29{bottom:570.750000px;}
.y43{bottom:584.250000px;}
.y51{bottom:618.720000px;}
.ye{bottom:621.975000px;}
.y27{bottom:656.595000px;}
.y18{bottom:664.620000px;}
.y45{bottom:674.130000px;}
.y44{bottom:703.155000px;}
.y32{bottom:704.700000px;}
.y28{bottom:709.050000px;}
.y3d{bottom:709.500000px;}
.h3{height:79.053003px;}
.hd{height:88.920923px;}
.h11{height:89.030566px;}
.h9{height:91.145947px;}
.hb{height:100.664648px;}
.h10{height:100.791064px;}
.h2{height:105.367456px;}
.h7{height:107.569116px;}
.h4{height:121.813989px;}
.h6{height:121.923633px;}
.he{height:140.574609px;}
.h1{height:141.549829px;}
.h8{height:172.925947px;}
.hf{height:173.045947px;}
.hc{height:210.734912px;}
.h5{height:210.844556px;}
.ha{height:249.545947px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:30.562479px;}
.x10{left:33.524979px;}
.x36{left:57.637479px;}
.x4{left:72.749979px;}
.x2f{left:82.199979px;}
.x20{left:90.824979px;}
.x38{left:96.037479px;}
.x6{left:99.674979px;}
.x34{left:102.112479px;}
.x1{left:104.549979px;}
.x2{left:108.599979px;}
.x28{left:109.762479px;}
.x33{left:115.049979px;}
.xd{left:122.174979px;}
.x27{left:123.412479px;}
.x35{left:135.899979px;}
.xe{left:152.549979px;}
.x7{left:155.624979px;}
.x30{left:156.719979px;}
.x9{left:165.299979px;}
.xf{left:166.679979px;}
.x3{left:195.194979px;}
.x37{left:205.994979px;}
.x31{left:273.869979px;}
.x5{left:297.824979px;}
.x32{left:312.119979px;}
.xa{left:366.974979px;}
.x1d{left:525.869979px;}
.x23{left:561.749979px;}
.x14{left:584.969979px;}
.x15{left:592.979979px;}
.x24{left:599.219979px;}
.x26{left:770.819979px;}
.x25{left:775.904979px;}
.x2b{left:829.544979px;}
.x16{left:850.649979px;}
.x2a{left:860.624979px;}
.x1e{left:892.049979px;}
.x17{left:903.074979px;}
.x2c{left:908.594979px;}
.x18{left:913.124979px;}
.xb{left:922.829979px;}
.x2d{left:930.749979px;}
.x1c{left:932.294979px;}
.x2e{left:936.119979px;}
.x11{left:945.824979px;}
.x1f{left:947.954979px;}
.x12{left:961.229979px;}
.x13{left:964.904979px;}
.xc{left:1049.204979px;}
.x29{left:1094.219979px;}
.x1b{left:1101.224979px;}
.x22{left:1232.549979px;}
.x21{left:1244.549979px;}
.x19{left:1275.824979px;}
.x1a{left:1314.044979px;}
@media print{
.v1{vertical-align:-109.226667pt;}
.v7{vertical-align:-30.560000pt;}
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.733333pt;}
.v6{vertical-align:28.800000pt;}
.v5{vertical-align:68.000000pt;}
.v4{vertical-align:72.693333pt;}
.ls17{letter-spacing:-2.096000pt;}
.lsc{letter-spacing:-2.058667pt;}
.ls18{letter-spacing:-1.962667pt;}
.ls16{letter-spacing:-1.946667pt;}
.lsb{letter-spacing:-1.941333pt;}
.ls6{letter-spacing:-0.565333pt;}
.ls11{letter-spacing:-0.430400pt;}
.ls4{letter-spacing:-0.204800pt;}
.lsd{letter-spacing:-0.122133pt;}
.lsf{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.008427pt;}
.lsa{letter-spacing:0.011200pt;}
.lse{letter-spacing:0.954667pt;}
.ls19{letter-spacing:1.274667pt;}
.ls1{letter-spacing:1.696000pt;}
.ls5{letter-spacing:1.898667pt;}
.ls7{letter-spacing:1.952000pt;}
.ls12{letter-spacing:2.085333pt;}
.ls2{letter-spacing:4.267200pt;}
.ls10{letter-spacing:4.320533pt;}
.ls9{letter-spacing:28.631600pt;}
.ls15{letter-spacing:28.731200pt;}
.ls8{letter-spacing:42.080000pt;}
.ls3{letter-spacing:44.259867pt;}
.ls14{letter-spacing:82.286667pt;}
.ws1f{word-spacing:-148.266667pt;}
.ws8{word-spacing:-96.133333pt;}
.ws11{word-spacing:-77.483467pt;}
.ws24{word-spacing:-77.430133pt;}
.wse{word-spacing:-72.133333pt;}
.ws2{word-spacing:-71.279200pt;}
.ws12{word-spacing:-71.242133pt;}
.wsd{word-spacing:-66.763467pt;}
.ws20{word-spacing:-59.610267pt;}
.ws9{word-spacing:-45.192000pt;}
.ws23{word-spacing:-43.697467pt;}
.ws10{word-spacing:-43.681733pt;}
.ws4{word-spacing:-41.218133pt;}
.ws26{word-spacing:-41.181067pt;}
.ws1c{word-spacing:-30.061067pt;}
.ws2f{word-spacing:-29.938933pt;}
.ws16{word-spacing:-28.119733pt;}
.ws0{word-spacing:-26.725067pt;}
.ws13{word-spacing:-26.364133pt;}
.ws25{word-spacing:-23.811467pt;}
.ws14{word-spacing:-23.678133pt;}
.wsc{word-spacing:-23.624800pt;}
.wsa{word-spacing:-21.726133pt;}
.ws19{word-spacing:-3.930533pt;}
.ws1b{word-spacing:-3.677067pt;}
.ws21{word-spacing:-3.457467pt;}
.ws2a{word-spacing:-2.863973pt;}
.ws34{word-spacing:-2.640667pt;}
.ws1d{word-spacing:-2.619067pt;}
.ws15{word-spacing:-2.374400pt;}
.ws2e{word-spacing:-2.114667pt;}
.ws28{word-spacing:-2.037333pt;}
.ws2d{word-spacing:-2.022533pt;}
.ws32{word-spacing:-2.010133pt;}
.ws22{word-spacing:-1.570267pt;}
.ws2b{word-spacing:-0.836800pt;}
.ws1e{word-spacing:-0.784267pt;}
.ws18{word-spacing:-0.723200pt;}
.ws1a{word-spacing:-0.696533pt;}
.ws29{word-spacing:-0.681067pt;}
.ws17{word-spacing:-0.195600pt;}
.wsb{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.ws35{word-spacing:0.275867pt;}
.ws36{word-spacing:0.542000pt;}
.ws7{word-spacing:1.006933pt;}
.ws27{word-spacing:1.178933pt;}
.ws3{word-spacing:1.248000pt;}
.ws5{word-spacing:1.781333pt;}
.ws6{word-spacing:2.891733pt;}
.ws31{word-spacing:3.628800pt;}
.ws33{word-spacing:3.958400pt;}
.ws30{word-spacing:4.028800pt;}
.ws2c{word-spacing:4.065067pt;}
.wsf{word-spacing:631.692800pt;}
._14{margin-left:-21.281200pt;}
._15{margin-left:-18.285067pt;}
._13{margin-left:-14.217333pt;}
._b{margin-left:-10.766933pt;}
._19{margin-left:-9.575600pt;}
._6{margin-left:-8.075200pt;}
._a{margin-left:-6.733067pt;}
._f{margin-left:-4.928267pt;}
._12{margin-left:-4.005467pt;}
._2{margin-left:-3.098400pt;}
._1{margin-left:-1.893467pt;}
._7{margin-left:-0.990533pt;}
._0{width:1.204933pt;}
._4{width:2.503200pt;}
._5{width:4.071733pt;}
._e{width:5.007067pt;}
._c{width:12.335733pt;}
._16{width:21.914267pt;}
._17{width:22.857600pt;}
._18{width:24.526133pt;}
._9{width:27.732400pt;}
._8{width:28.818000pt;}
._1a{width:29.934533pt;}
._1d{width:30.971467pt;}
._10{width:40.828400pt;}
._d{width:44.597333pt;}
._3{width:46.401733pt;}
._11{width:48.032933pt;}
._1b{width:49.076267pt;}
._1c{width:84.124933pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:72.133333pt;}
.fs2{font-size:96.133333pt;}
.fs9{font-size:108.133333pt;}
.fsa{font-size:108.266667pt;}
.fs1{font-size:128.133333pt;}
.fs3{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs0{font-size:172.133333pt;}
.fs8{font-size:256.266667pt;}
.fs4{font-size:256.400000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:9.266667pt;}
.y33{bottom:9.666667pt;}
.y36{bottom:19.633333pt;}
.y11{bottom:25.900000pt;}
.y40{bottom:29.966667pt;}
.y3f{bottom:58.000000pt;}
.y35{bottom:58.700000pt;}
.y3c{bottom:63.166667pt;}
.y39{bottom:64.700000pt;}
.y2e{bottom:64.900000pt;}
.y50{bottom:81.733333pt;}
.yd{bottom:83.933333pt;}
.y3e{bottom:87.033333pt;}
.y1b{bottom:87.266667pt;}
.y54{bottom:92.166667pt;}
.y3b{bottom:92.233333pt;}
.y38{bottom:93.733333pt;}
.y2d{bottom:93.933333pt;}
.y34{bottom:96.733333pt;}
.y2b{bottom:101.233333pt;}
.y17{bottom:104.700000pt;}
.y8{bottom:113.333333pt;}
.yc{bottom:115.000000pt;}
.y4f{bottom:115.800000pt;}
.y1a{bottom:116.333333pt;}
.y3a{bottom:121.266667pt;}
.y2c{bottom:122.966667pt;}
.y2a{bottom:130.266667pt;}
.y16{bottom:133.733333pt;}
.y19{bottom:145.360000pt;}
.yb{bottom:146.026667pt;}
.y53{bottom:150.226667pt;}
.y31{bottom:150.333333pt;}
.y4e{bottom:150.826667pt;}
.y15{bottom:164.800000pt;}
.y7{bottom:165.400000pt;}
.ya{bottom:177.066667pt;}
.y4d{bottom:184.893333pt;}
.y6{bottom:191.440000pt;}
.y55{bottom:200.066667pt;}
.y30{bottom:201.026667pt;}
.y4c{bottom:218.933333pt;}
.y14{bottom:222.866667pt;}
.y1d{bottom:227.800000pt;}
.y2f{bottom:230.066667pt;}
.y4b{bottom:253.000000pt;}
.y23{bottom:253.106667pt;}
.y1c{bottom:256.840000pt;}
.y9{bottom:257.440000pt;}
.y26{bottom:261.840000pt;}
.y5{bottom:269.573333pt;}
.y24{bottom:269.840000pt;}
.y4{bottom:301.466667pt;}
.y4a{bottom:322.066667pt;}
.y10{bottom:346.733333pt;}
.y13{bottom:349.840000pt;}
.y49{bottom:356.133333pt;}
.y20{bottom:373.600000pt;}
.y21{bottom:374.533333pt;}
.y1f{bottom:378.506667pt;}
.y3{bottom:386.200000pt;}
.y48{bottom:390.173333pt;}
.y1e{bottom:394.600000pt;}
.yf{bottom:394.800000pt;}
.y12{bottom:397.893333pt;}
.y22{bottom:408.800000pt;}
.y25{bottom:419.533333pt;}
.y2{bottom:433.266667pt;}
.y47{bottom:470.306667pt;}
.y1{bottom:479.333333pt;}
.y42{bottom:485.066667pt;}
.y41{bottom:501.133333pt;}
.y46{bottom:502.333333pt;}
.y52{bottom:504.893333pt;}
.y29{bottom:507.333333pt;}
.y43{bottom:519.333333pt;}
.y51{bottom:549.973333pt;}
.ye{bottom:552.866667pt;}
.y27{bottom:583.640000pt;}
.y18{bottom:590.773333pt;}
.y45{bottom:599.226667pt;}
.y44{bottom:625.026667pt;}
.y32{bottom:626.400000pt;}
.y28{bottom:630.266667pt;}
.y3d{bottom:630.666667pt;}
.h3{height:70.269336pt;}
.hd{height:79.040820pt;}
.h11{height:79.138281pt;}
.h9{height:81.018620pt;}
.hb{height:89.479688pt;}
.h10{height:89.592057pt;}
.h2{height:93.659961pt;}
.h7{height:95.616992pt;}
.h4{height:108.279102pt;}
.h6{height:108.376562pt;}
.he{height:124.955208pt;}
.h1{height:125.822070pt;}
.h8{height:153.711953pt;}
.hf{height:153.818620pt;}
.hc{height:187.319922pt;}
.h5{height:187.417383pt;}
.ha{height:221.818620pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:27.166648pt;}
.x10{left:29.799981pt;}
.x36{left:51.233314pt;}
.x4{left:64.666648pt;}
.x2f{left:73.066648pt;}
.x20{left:80.733314pt;}
.x38{left:85.366648pt;}
.x6{left:88.599981pt;}
.x34{left:90.766648pt;}
.x1{left:92.933314pt;}
.x2{left:96.533314pt;}
.x28{left:97.566648pt;}
.x33{left:102.266648pt;}
.xd{left:108.599981pt;}
.x27{left:109.699981pt;}
.x35{left:120.799981pt;}
.xe{left:135.599981pt;}
.x7{left:138.333314pt;}
.x30{left:139.306648pt;}
.x9{left:146.933314pt;}
.xf{left:148.159981pt;}
.x3{left:173.506648pt;}
.x37{left:183.106648pt;}
.x31{left:243.439981pt;}
.x5{left:264.733314pt;}
.x32{left:277.439981pt;}
.xa{left:326.199981pt;}
.x1d{left:467.439981pt;}
.x23{left:499.333314pt;}
.x14{left:519.973314pt;}
.x15{left:527.093314pt;}
.x24{left:532.639981pt;}
.x26{left:685.173314pt;}
.x25{left:689.693314pt;}
.x2b{left:737.373314pt;}
.x16{left:756.133314pt;}
.x2a{left:764.999981pt;}
.x1e{left:792.933314pt;}
.x17{left:802.733314pt;}
.x2c{left:807.639981pt;}
.x18{left:811.666648pt;}
.xb{left:820.293314pt;}
.x2d{left:827.333314pt;}
.x1c{left:828.706648pt;}
.x2e{left:832.106648pt;}
.x11{left:840.733314pt;}
.x1f{left:842.626648pt;}
.x12{left:854.426648pt;}
.x13{left:857.693314pt;}
.xc{left:932.626648pt;}
.x29{left:972.639981pt;}
.x1b{left:978.866648pt;}
.x22{left:1095.599981pt;}
.x21{left:1106.266648pt;}
.x19{left:1134.066648pt;}
.x1a{left:1168.039981pt;}
}




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