
    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_8d4dbf51680b3cd52584311d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_becb69b2aa4cf5b2a070b37e.woff2')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_b5f16b47d6110d2c0ada4d08.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_65fc2f4df2d6c0de20ff19af.woff2')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_dadf4af81eb885e8374fc59d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_055d01b21b335445867aaefc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_fefecab770a0ba54015a4778.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_dab2f7b8400102525ec9ea8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c0ccd79d5c28bf0c7098aee9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_c98c40eef5f333f5714f957c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-14.160000px;}
.v3{vertical-align:-9.960000px;}
.v2{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:65.700000px;}
.v4{vertical-align:113.460000px;}
.ls2{letter-spacing:-3.510000px;}
.ls5{letter-spacing:-1.890000px;}
.ls7{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-1.740000px;}
.ls14{letter-spacing:-1.602000px;}
.ls12{letter-spacing:-1.218000px;}
.lsc{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.744000px;}
.ls11{letter-spacing:-0.454200px;}
.ls10{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.033300px;}
.lsf{letter-spacing:0.108000px;}
.lse{letter-spacing:0.110100px;}
.ls13{letter-spacing:0.233400px;}
.ls15{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.531000px;}
.ls9{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.326000px;}
.ls1{letter-spacing:1.506000px;}
.ls17{letter-spacing:1.812000px;}
.ls3{letter-spacing:24.921300px;}
.lsa{letter-spacing:49.770000px;}
.lsb{letter-spacing:49.822500px;}
.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;}
}
.ws18{word-spacing:-60.104700px;}
.ws8{word-spacing:-60.070800px;}
.wse{word-spacing:-51.390000px;}
.ws10{word-spacing:-51.300000px;}
.wsf{word-spacing:-49.500000px;}
.ws1a{word-spacing:-32.611800px;}
.wsc{word-spacing:-32.577900px;}
.ws16{word-spacing:-27.526800px;}
.ws14{word-spacing:-27.492900px;}
.ws3{word-spacing:-25.947900px;}
.ws2{word-spacing:-24.441900px;}
.ws6{word-spacing:-20.931900px;}
.ws21{word-spacing:-14.049900px;}
.ws1f{word-spacing:-12.237900px;}
.ws1c{word-spacing:-12.204000px;}
.ws22{word-spacing:-11.826000px;}
.ws20{word-spacing:-11.783700px;}
.ws1e{word-spacing:-11.019900px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:2.640000px;}
.ws11{word-spacing:38.196750px;}
.ws5{word-spacing:74.746050px;}
.ws13{word-spacing:92.376750px;}
.ws15{word-spacing:92.463000px;}
.ws23{word-spacing:164.704050px;}
.ws1{word-spacing:191.011350px;}
.ws1b{word-spacing:191.622000px;}
.ws1d{word-spacing:191.703900px;}
.ws4{word-spacing:223.227600px;}
.ws7{word-spacing:296.050200px;}
.wsa{word-spacing:363.250200px;}
.wsb{word-spacing:678.208200px;}
.wsd{word-spacing:717.623550px;}
.ws12{word-spacing:1114.663050px;}
.ws17{word-spacing:2028.653400px;}
.ws9{word-spacing:2275.237650px;}
._16{margin-left:-13.798200px;}
._13{margin-left:-10.837350px;}
._4{margin-left:-7.982850px;}
._8{margin-left:-6.567900px;}
._1{margin-left:-5.406750px;}
._7{margin-left:-4.395900px;}
._2{margin-left:-3.244050px;}
._0{margin-left:-1.802250px;}
._3{width:1.441800px;}
._6{width:2.931600px;}
._9{width:4.181550px;}
._e{width:5.268900px;}
._15{width:6.285600px;}
._14{width:40.865250px;}
._12{width:62.380650px;}
._11{width:66.633450px;}
._5{width:84.767100px;}
._c{width:148.438800px;}
._a{width:547.492500px;}
._d{width:622.432350px;}
._10{width:742.282800px;}
._b{width:965.442450px;}
._f{width:1252.495800px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(84,130,53);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:54.000000px;}
.fse{font-size:54.150000px;}
.fs7{font-size:85.500000px;}
.fs6{font-size:85.650000px;}
.fs4{font-size:108.150000px;}
.fs8{font-size:121.650000px;}
.fs9{font-size:121.800000px;}
.fs2{font-size:144.150000px;}
.fsa{font-size:144.300000px;}
.fsc{font-size:166.650000px;}
.fsb{font-size:166.800000px;}
.fs5{font-size:265.800000px;}
.fs3{font-size:265.950000px;}
.fs0{font-size:360.450000px;}
.fs1{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y21{bottom:36.187500px;}
.yb{bottom:44.212500px;}
.y45{bottom:48.525000px;}
.y4{bottom:52.237500px;}
.y47{bottom:52.537500px;}
.y33{bottom:59.250000px;}
.y20{bottom:61.425000px;}
.y32{bottom:84.037500px;}
.y1d{bottom:86.175000px;}
.y9{bottom:87.900000px;}
.y1f{bottom:94.087500px;}
.y56{bottom:94.125000px;}
.y1b{bottom:102.637500px;}
.y3{bottom:106.312500px;}
.y31{bottom:109.950000px;}
.y44{bottom:113.887500px;}
.y46{bottom:117.900000px;}
.y1c{bottom:118.837500px;}
.y1e{bottom:126.787500px;}
.y55{bottom:133.537500px;}
.y30{bottom:134.737500px;}
.y3b{bottom:134.887500px;}
.ya{bottom:159.870000px;}
.y2f{bottom:160.650000px;}
.y54{bottom:172.995000px;}
.y2e{bottom:185.430000px;}
.y43{bottom:192.120000px;}
.y3c{bottom:194.625000px;}
.yd{bottom:199.695000px;}
.y53{bottom:212.400000px;}
.y18{bottom:230.445000px;}
.y2d{bottom:236.130000px;}
.y39{bottom:236.175000px;}
.y52{bottom:237.195000px;}
.y7{bottom:246.720000px;}
.y10{bottom:247.770000px;}
.y42{bottom:251.820000px;}
.y2c{bottom:260.925000px;}
.y51{bottom:276.600000px;}
.y19{bottom:284.325000px;}
.y2b{bottom:286.845000px;}
.y50{bottom:300.255000px;}
.y38{bottom:302.775000px;}
.y2a{bottom:311.625000px;}
.y41{bottom:312.675000px;}
.y29{bottom:336.405000px;}
.y4f{bottom:339.705000px;}
.y8{bottom:351.630000px;}
.y28{bottom:362.325000px;}
.y4e{bottom:364.500000px;}
.y40{bottom:373.500000px;}
.y16{bottom:380.550000px;}
.y37{bottom:384.870000px;}
.y2{bottom:393.030000px;}
.y4d{bottom:403.905000px;}
.y27{bottom:412.995000px;}
.y12{bottom:416.370000px;}
.y11{bottom:419.850000px;}
.y3f{bottom:433.200000px;}
.y26{bottom:437.775000px;}
.y4c{bottom:443.325000px;}
.y36{bottom:451.425000px;}
.y25{bottom:462.570000px;}
.y4b{bottom:466.995000px;}
.y1a{bottom:488.070000px;}
.y24{bottom:488.475000px;}
.y1{bottom:491.025000px;}
.y3e{bottom:494.025000px;}
.y4a{bottom:506.445000px;}
.yc{bottom:509.850000px;}
.y23{bottom:513.255000px;}
.y15{bottom:526.950000px;}
.y49{bottom:531.225000px;}
.y14{bottom:531.255000px;}
.y35{bottom:533.550000px;}
.y22{bottom:539.175000px;}
.y3d{bottom:554.880000px;}
.y48{bottom:570.630000px;}
.yf{bottom:571.620000px;}
.y3a{bottom:576.945000px;}
.y34{bottom:600.120000px;}
.ye{bottom:604.275000px;}
.y17{bottom:644.655000px;}
.y5{bottom:652.245000px;}
.y13{bottom:657.000000px;}
.y6{bottom:670.050000px;}
.h14{height:51.416016px;}
.h15{height:51.558838px;}
.hb{height:57.988037px;}
.ha{height:58.089771px;}
.hd{height:73.349780px;}
.h6{height:82.115845px;}
.h5{height:107.569116px;}
.hc{height:120.996606px;}
.he{height:121.145801px;}
.h3{height:143.375757px;}
.h13{height:143.524951px;}
.h10{height:147.598901px;}
.hf{height:147.752490px;}
.h12{height:165.754907px;}
.h11{height:165.904102px;}
.h9{height:173.269116px;}
.h8{height:221.029116px;}
.h7{height:272.159473px;}
.h4{height:272.313062px;}
.h1{height:369.074048px;}
.h2{height:369.227637px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:30.112479px;}
.x26{left:59.137479px;}
.x7{left:76.049979px;}
.x6{left:109.874979px;}
.x20{left:112.312479px;}
.x17{left:114.562479px;}
.x1f{left:145.312479px;}
.x28{left:170.699979px;}
.x19{left:171.749979px;}
.xf{left:196.199979px;}
.x1{left:211.904979px;}
.x10{left:224.774979px;}
.x22{left:293.129979px;}
.xd{left:317.579979px;}
.x2{left:418.244979px;}
.x12{left:437.324979px;}
.x9{left:451.544979px;}
.x11{left:458.549979px;}
.x13{left:529.619979px;}
.x3{left:566.879979px;}
.xc{left:581.894979px;}
.x4{left:587.849979px;}
.x5{left:591.719979px;}
.x23{left:604.274979px;}
.xa{left:659.069979px;}
.x24{left:673.574979px;}
.xb{left:678.224979px;}
.xe{left:724.949979px;}
.x18{left:768.794979px;}
.x1e{left:771.449979px;}
.x1b{left:836.129979px;}
.x27{left:967.829979px;}
.x21{left:1053.149979px;}
.x1d{left:1154.354979px;}
.x1a{left:1164.449979px;}
.x1c{left:1189.619979px;}
.x14{left:1219.379979px;}
.x15{left:1300.544979px;}
.x16{left:1328.129979px;}
.x25{left:1366.829979px;}
@media print{
.v1{vertical-align:-12.586667pt;}
.v3{vertical-align:-8.853333pt;}
.v2{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:58.400000pt;}
.v4{vertical-align:100.853333pt;}
.ls2{letter-spacing:-3.120000pt;}
.ls5{letter-spacing:-1.680000pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-1.546667pt;}
.ls14{letter-spacing:-1.424000pt;}
.ls12{letter-spacing:-1.082667pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.661333pt;}
.ls11{letter-spacing:-0.403733pt;}
.ls10{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.029600pt;}
.lsf{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.097867pt;}
.ls13{letter-spacing:0.207467pt;}
.ls15{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.472000pt;}
.ls9{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.178667pt;}
.ls1{letter-spacing:1.338667pt;}
.ls17{letter-spacing:1.610667pt;}
.ls3{letter-spacing:22.152267pt;}
.lsa{letter-spacing:44.240000pt;}
.lsb{letter-spacing:44.286667pt;}
.ws18{word-spacing:-53.426400pt;}
.ws8{word-spacing:-53.396267pt;}
.wse{word-spacing:-45.680000pt;}
.ws10{word-spacing:-45.600000pt;}
.wsf{word-spacing:-44.000000pt;}
.ws1a{word-spacing:-28.988267pt;}
.wsc{word-spacing:-28.958133pt;}
.ws16{word-spacing:-24.468267pt;}
.ws14{word-spacing:-24.438133pt;}
.ws3{word-spacing:-23.064800pt;}
.ws2{word-spacing:-21.726133pt;}
.ws6{word-spacing:-18.606133pt;}
.ws21{word-spacing:-12.488800pt;}
.ws1f{word-spacing:-10.878133pt;}
.ws1c{word-spacing:-10.848000pt;}
.ws22{word-spacing:-10.512000pt;}
.ws20{word-spacing:-10.474400pt;}
.ws1e{word-spacing:-9.795467pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:2.346667pt;}
.ws11{word-spacing:33.952667pt;}
.ws5{word-spacing:66.440933pt;}
.ws13{word-spacing:82.112667pt;}
.ws15{word-spacing:82.189333pt;}
.ws23{word-spacing:146.403600pt;}
.ws1{word-spacing:169.787867pt;}
.ws1b{word-spacing:170.330667pt;}
.ws1d{word-spacing:170.403467pt;}
.ws4{word-spacing:198.424533pt;}
.ws7{word-spacing:263.155733pt;}
.wsa{word-spacing:322.889067pt;}
.wsb{word-spacing:602.851733pt;}
.wsd{word-spacing:637.887600pt;}
.ws12{word-spacing:990.811600pt;}
.ws17{word-spacing:1803.247467pt;}
.ws9{word-spacing:2022.433467pt;}
._16{margin-left:-12.265067pt;}
._13{margin-left:-9.633200pt;}
._4{margin-left:-7.095867pt;}
._8{margin-left:-5.838133pt;}
._1{margin-left:-4.806000pt;}
._7{margin-left:-3.907467pt;}
._2{margin-left:-2.883600pt;}
._0{margin-left:-1.602000pt;}
._3{width:1.281600pt;}
._6{width:2.605867pt;}
._9{width:3.716933pt;}
._e{width:4.683467pt;}
._15{width:5.587200pt;}
._14{width:36.324667pt;}
._12{width:55.449467pt;}
._11{width:59.229733pt;}
._5{width:75.348533pt;}
._c{width:131.945600pt;}
._a{width:486.660000pt;}
._d{width:553.273200pt;}
._10{width:659.806933pt;}
._b{width:858.171067pt;}
._f{width:1113.329600pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:48.133333pt;}
.fs7{font-size:76.000000pt;}
.fs6{font-size:76.133333pt;}
.fs4{font-size:96.133333pt;}
.fs8{font-size:108.133333pt;}
.fs9{font-size:108.266667pt;}
.fs2{font-size:128.133333pt;}
.fsa{font-size:128.266667pt;}
.fsc{font-size:148.133333pt;}
.fsb{font-size:148.266667pt;}
.fs5{font-size:236.266667pt;}
.fs3{font-size:236.400000pt;}
.fs0{font-size:320.400000pt;}
.fs1{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:32.166667pt;}
.yb{bottom:39.300000pt;}
.y45{bottom:43.133333pt;}
.y4{bottom:46.433333pt;}
.y47{bottom:46.700000pt;}
.y33{bottom:52.666667pt;}
.y20{bottom:54.600000pt;}
.y32{bottom:74.700000pt;}
.y1d{bottom:76.600000pt;}
.y9{bottom:78.133333pt;}
.y1f{bottom:83.633333pt;}
.y56{bottom:83.666667pt;}
.y1b{bottom:91.233333pt;}
.y3{bottom:94.500000pt;}
.y31{bottom:97.733333pt;}
.y44{bottom:101.233333pt;}
.y46{bottom:104.800000pt;}
.y1c{bottom:105.633333pt;}
.y1e{bottom:112.700000pt;}
.y55{bottom:118.700000pt;}
.y30{bottom:119.766667pt;}
.y3b{bottom:119.900000pt;}
.ya{bottom:142.106667pt;}
.y2f{bottom:142.800000pt;}
.y54{bottom:153.773333pt;}
.y2e{bottom:164.826667pt;}
.y43{bottom:170.773333pt;}
.y3c{bottom:173.000000pt;}
.yd{bottom:177.506667pt;}
.y53{bottom:188.800000pt;}
.y18{bottom:204.840000pt;}
.y2d{bottom:209.893333pt;}
.y39{bottom:209.933333pt;}
.y52{bottom:210.840000pt;}
.y7{bottom:219.306667pt;}
.y10{bottom:220.240000pt;}
.y42{bottom:223.840000pt;}
.y2c{bottom:231.933333pt;}
.y51{bottom:245.866667pt;}
.y19{bottom:252.733333pt;}
.y2b{bottom:254.973333pt;}
.y50{bottom:266.893333pt;}
.y38{bottom:269.133333pt;}
.y2a{bottom:277.000000pt;}
.y41{bottom:277.933333pt;}
.y29{bottom:299.026667pt;}
.y4f{bottom:301.960000pt;}
.y8{bottom:312.560000pt;}
.y28{bottom:322.066667pt;}
.y4e{bottom:324.000000pt;}
.y40{bottom:332.000000pt;}
.y16{bottom:338.266667pt;}
.y37{bottom:342.106667pt;}
.y2{bottom:349.360000pt;}
.y4d{bottom:359.026667pt;}
.y27{bottom:367.106667pt;}
.y12{bottom:370.106667pt;}
.y11{bottom:373.200000pt;}
.y3f{bottom:385.066667pt;}
.y26{bottom:389.133333pt;}
.y4c{bottom:394.066667pt;}
.y36{bottom:401.266667pt;}
.y25{bottom:411.173333pt;}
.y4b{bottom:415.106667pt;}
.y1a{bottom:433.840000pt;}
.y24{bottom:434.200000pt;}
.y1{bottom:436.466667pt;}
.y3e{bottom:439.133333pt;}
.y4a{bottom:450.173333pt;}
.yc{bottom:453.200000pt;}
.y23{bottom:456.226667pt;}
.y15{bottom:468.400000pt;}
.y49{bottom:472.200000pt;}
.y14{bottom:472.226667pt;}
.y35{bottom:474.266667pt;}
.y22{bottom:479.266667pt;}
.y3d{bottom:493.226667pt;}
.y48{bottom:507.226667pt;}
.yf{bottom:508.106667pt;}
.y3a{bottom:512.840000pt;}
.y34{bottom:533.440000pt;}
.ye{bottom:537.133333pt;}
.y17{bottom:573.026667pt;}
.y5{bottom:579.773333pt;}
.y13{bottom:584.000000pt;}
.y6{bottom:595.600000pt;}
.h14{height:45.703125pt;}
.h15{height:45.830078pt;}
.hb{height:51.544922pt;}
.ha{height:51.635352pt;}
.hd{height:65.199805pt;}
.h6{height:72.991862pt;}
.h5{height:95.616992pt;}
.hc{height:107.552539pt;}
.he{height:107.685156pt;}
.h3{height:127.445117pt;}
.h13{height:127.577734pt;}
.h10{height:131.199023pt;}
.hf{height:131.335547pt;}
.h12{height:147.337695pt;}
.h11{height:147.470313pt;}
.h9{height:154.016992pt;}
.h8{height:196.470326pt;}
.h7{height:241.919531pt;}
.h4{height:242.056055pt;}
.h1{height:328.065820pt;}
.h2{height:328.202344pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:26.766648pt;}
.x26{left:52.566648pt;}
.x7{left:67.599981pt;}
.x6{left:97.666648pt;}
.x20{left:99.833314pt;}
.x17{left:101.833314pt;}
.x1f{left:129.166648pt;}
.x28{left:151.733314pt;}
.x19{left:152.666648pt;}
.xf{left:174.399981pt;}
.x1{left:188.359981pt;}
.x10{left:199.799981pt;}
.x22{left:260.559981pt;}
.xd{left:282.293314pt;}
.x2{left:371.773314pt;}
.x12{left:388.733314pt;}
.x9{left:401.373314pt;}
.x11{left:407.599981pt;}
.x13{left:470.773314pt;}
.x3{left:503.893314pt;}
.xc{left:517.239981pt;}
.x4{left:522.533314pt;}
.x5{left:525.973314pt;}
.x23{left:537.133314pt;}
.xa{left:585.839981pt;}
.x24{left:598.733314pt;}
.xb{left:602.866648pt;}
.xe{left:644.399981pt;}
.x18{left:683.373314pt;}
.x1e{left:685.733314pt;}
.x1b{left:743.226648pt;}
.x27{left:860.293314pt;}
.x21{left:936.133314pt;}
.x1d{left:1026.093314pt;}
.x1a{left:1035.066648pt;}
.x1c{left:1057.439981pt;}
.x14{left:1083.893314pt;}
.x15{left:1156.039981pt;}
.x16{left:1180.559981pt;}
.x25{left:1214.959981pt;}
}




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