
    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_a8a0b58175ad1ba331058633.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0992f0f229b87a22071451d.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_93d51233d7dae3f0e46b5b2c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8e26e238f11a032d9353837.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_98c4de488480cdd08db29113.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933105;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_aa12a177915ba1b3137446d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.061523;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-5.550000px;}
.v1{vertical-align:-3.180000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:76.500000px;}
.ls8{letter-spacing:-4.248000px;}
.ls12{letter-spacing:-4.098000px;}
.ls9{letter-spacing:-2.442000px;}
.ls14{letter-spacing:-2.388000px;}
.lsc{letter-spacing:-2.340000px;}
.ls17{letter-spacing:-2.094000px;}
.ls11{letter-spacing:-1.710000px;}
.lsa{letter-spacing:-1.596000px;}
.ls10{letter-spacing:-1.236000px;}
.ls1a{letter-spacing:-0.984000px;}
.ls15{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.834000px;}
.ls16{letter-spacing:-0.744000px;}
.lsd{letter-spacing:-0.350400px;}
.ls1e{letter-spacing:-0.075600px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.308100px;}
.ls19{letter-spacing:0.338100px;}
.lsb{letter-spacing:0.511200px;}
.ls5{letter-spacing:1.086000px;}
.ls13{letter-spacing:25.057500px;}
.ls0{letter-spacing:32.238600px;}
.ls1{letter-spacing:32.493300px;}
.ls1c{letter-spacing:70.080000px;}
.lse{letter-spacing:70.860000px;}
.lsf{letter-spacing:70.950000px;}
.ls7{letter-spacing:75.115950px;}
.ls6{letter-spacing:75.228000px;}
.ls1b{letter-spacing:97.147500px;}
.ls3{letter-spacing:106.434300px;}
.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;}
}
.ws2{word-spacing:-43.798800px;}
.ws18{word-spacing:-42.838800px;}
.ws17{word-spacing:-37.696800px;}
.ws0{word-spacing:-32.611800px;}
.ws6{word-spacing:-27.526800px;}
.ws4{word-spacing:-27.492900px;}
.ws5{word-spacing:-26.628900px;}
.ws3{word-spacing:-24.441900px;}
.ws1f{word-spacing:-24.366300px;}
.ws16{word-spacing:-22.053900px;}
.ws11{word-spacing:-21.390900px;}
.ws7{word-spacing:-19.356900px;}
.wsf{word-spacing:-15.288900px;}
.ws10{word-spacing:-15.255000px;}
.wse{word-spacing:-2.915550px;}
.ws20{word-spacing:-2.894400px;}
.wsc{word-spacing:-2.831400px;}
.wsa{word-spacing:-2.528100px;}
.wsd{word-spacing:-0.415500px;}
.ws1b{word-spacing:-0.193800px;}
.ws1e{word-spacing:-0.108150px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.875850px;}
.ws12{word-spacing:0.881400px;}
.ws13{word-spacing:1.676850px;}
.ws1c{word-spacing:4.717800px;}
.wsb{word-spacing:5.457000px;}
.ws9{word-spacing:5.900250px;}
.ws14{word-spacing:8.962200px;}
.ws8{word-spacing:9.232200px;}
.ws19{word-spacing:40.532400px;}
.ws1a{word-spacing:44.016600px;}
.ws15{word-spacing:45.114000px;}
._c{margin-left:-584.219850px;}
._1c{margin-left:-15.468600px;}
._a{margin-left:-10.528500px;}
._f{margin-left:-8.323650px;}
._9{margin-left:-7.159650px;}
._5{margin-left:-6.075300px;}
._2{margin-left:-4.761900px;}
._7{margin-left:-3.463200px;}
._0{margin-left:-2.164500px;}
._8{margin-left:-1.069050px;}
._3{width:1.731600px;}
._1{width:2.741700px;}
._6{width:4.473300px;}
._b{width:5.988450px;}
._11{width:6.998550px;}
._18{width:24.055500px;}
._13{width:25.271100px;}
._1d{width:27.404850px;}
._17{width:28.640400px;}
._15{width:29.781150px;}
._4{width:34.339200px;}
._d{width:40.562400px;}
._12{width:41.564400px;}
._1b{width:42.598650px;}
._19{width:44.821200px;}
._1a{width:46.058700px;}
._14{width:52.324350px;}
._10{width:207.185400px;}
._e{width:354.357300px;}
._16{width:2170.311600px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(0,119,200);}
.fc2{color:transparent;}
.fc1{color:rgb(234,118,0);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:36.000000px;}
.fsc{font-size:36.150000px;}
.fs11{font-size:67.500000px;}
.fs10{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fsb{font-size:85.500000px;}
.fsd{font-size:85.650000px;}
.fse{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs8{font-size:108.150000px;}
.fs6{font-size:121.650000px;}
.fs9{font-size:121.800000px;}
.fs1{font-size:144.150000px;}
.fs0{font-size:144.300000px;}
.fs12{font-size:166.800000px;}
.fsf{font-size:193.650000px;}
.fs5{font-size:193.800000px;}
.fs3{font-size:301.950000px;}
.y0{bottom:0.000000px;}
.y51{bottom:7.575000px;}
.y49{bottom:16.425000px;}
.y52{bottom:17.850000px;}
.y50{bottom:27.862500px;}
.y48{bottom:35.550000px;}
.y1f{bottom:36.712500px;}
.yc{bottom:36.975000px;}
.y20{bottom:37.012500px;}
.y4f{bottom:47.025000px;}
.y1d{bottom:95.512500px;}
.y1c{bottom:121.425000px;}
.y3{bottom:128.400000px;}
.y1b{bottom:146.212500px;}
.y36{bottom:163.680000px;}
.y1a{bottom:171.000000px;}
.y3b{bottom:176.625000px;}
.y19{bottom:196.920000px;}
.y35{bottom:199.755000px;}
.y5f{bottom:209.775000px;}
.y3a{bottom:212.655000px;}
.y18{bottom:221.655000px;}
.y2c{bottom:238.995000px;}
.y5e{bottom:242.445000px;}
.y17{bottom:247.575000px;}
.y39{bottom:248.730000px;}
.y2{bottom:251.175000px;}
.y4d{bottom:252.600000px;}
.y45{bottom:253.350000px;}
.y4e{bottom:260.130000px;}
.yb{bottom:268.125000px;}
.y4c{bottom:271.755000px;}
.y44{bottom:272.505000px;}
.y5d{bottom:275.100000px;}
.y13{bottom:288.450000px;}
.y2b{bottom:311.100000px;}
.y1{bottom:312.030000px;}
.ya{bottom:322.200000px;}
.y1e{bottom:325.500000px;}
.y2a{bottom:347.145000px;}
.y3d{bottom:354.570000px;}
.y6{bottom:367.125000px;}
.y38{bottom:370.800000px;}
.y9{bottom:376.275000px;}
.y3c{bottom:390.600000px;}
.y29{bottom:394.500000px;}
.y16{bottom:398.595000px;}
.y28{bottom:430.530000px;}
.y15{bottom:431.250000px;}
.y12{bottom:435.975000px;}
.y32{bottom:451.920000px;}
.y5{bottom:457.245000px;}
.y11{bottom:472.005000px;}
.yd{bottom:473.280000px;}
.y68{bottom:481.275000px;}
.y4b{bottom:485.745000px;}
.y47{bottom:486.225000px;}
.y31{bottom:487.995000px;}
.y41{bottom:489.075000px;}
.y24{bottom:495.600000px;}
.y2f{bottom:501.405000px;}
.y4a{bottom:504.900000px;}
.y46{bottom:505.380000px;}
.y67{bottom:513.945000px;}
.y30{bottom:524.025000px;}
.y10{bottom:526.095000px;}
.y23{bottom:531.675000px;}
.y58{bottom:535.005000px;}
.y2e{bottom:537.450000px;}
.y40{bottom:540.870000px;}
.y66{bottom:545.475000px;}
.y27{bottom:559.995000px;}
.yf{bottom:562.125000px;}
.y2d{bottom:573.525000px;}
.y65{bottom:578.130000px;}
.y55{bottom:582.630000px;}
.y22{bottom:585.750000px;}
.y3f{bottom:588.195000px;}
.y34{bottom:593.475000px;}
.y26{bottom:596.025000px;}
.y64{bottom:610.830000px;}
.ye{bottom:616.200000px;}
.y54{bottom:618.720000px;}
.y33{bottom:629.505000px;}
.y5a{bottom:635.025000px;}
.y3e{bottom:636.630000px;}
.y21{bottom:639.825000px;}
.y63{bottom:643.500000px;}
.y57{bottom:644.175000px;}
.y5c{bottom:660.720000px;}
.y56{bottom:660.780000px;}
.y37{bottom:673.275000px;}
.y62{bottom:675.030000px;}
.y14{bottom:676.050000px;}
.y61{bottom:676.155000px;}
.y59{bottom:677.280000px;}
.y25{bottom:688.200000px;}
.y43{bottom:691.380000px;}
.y5b{bottom:717.780000px;}
.y53{bottom:719.550000px;}
.y8{bottom:734.370000px;}
.y42{bottom:737.550000px;}
.y60{bottom:744.525000px;}
.y4{bottom:836.625000px;}
.y7{bottom:886.995000px;}
.h14{height:67.137451px;}
.h13{height:67.286646px;}
.h5{height:71.762476px;}
.h9{height:73.722656px;}
.he{height:73.876245px;}
.hc{height:85.040771px;}
.hd{height:85.189966px;}
.h10{height:93.992432px;}
.hf{height:94.141626px;}
.h3{height:96.914575px;}
.ha{height:107.569116px;}
.h16{height:110.737573px;}
.h8{height:120.996606px;}
.h11{height:121.145801px;}
.h7{height:124.560571px;}
.hb{height:124.714160px;}
.h2{height:143.375757px;}
.h1{height:143.524951px;}
.h15{height:143.637451px;}
.h17{height:165.904102px;}
.h12{height:198.283228px;}
.h6{height:198.436816px;}
.h4{height:300.328198px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2b{left:58.762479px;}
.x4{left:61.312479px;}
.xa{left:65.287479px;}
.x1b{left:72.299979px;}
.x1d{left:77.174979px;}
.x10{left:79.499979px;}
.x1e{left:80.587479px;}
.x5{left:84.112479px;}
.x28{left:89.962479px;}
.x7{left:93.824979px;}
.x2{left:100.012479px;}
.x1{left:102.299979px;}
.x1f{left:105.337479px;}
.x1c{left:115.724979px;}
.x2f{left:126.787479px;}
.xc{left:136.349979px;}
.xb{left:151.199979px;}
.x17{left:321.674979px;}
.x18{left:356.774979px;}
.x2d{left:364.469979px;}
.x27{left:426.674979px;}
.x26{left:463.544979px;}
.xf{left:545.444979px;}
.xd{left:568.499979px;}
.x2a{left:588.149979px;}
.xe{left:594.029979px;}
.x9{left:608.549979px;}
.x12{left:633.704979px;}
.x29{left:635.069979px;}
.x3{left:646.799979px;}
.x24{left:649.049979px;}
.x11{left:676.469979px;}
.x16{left:765.869979px;}
.x20{left:790.649979px;}
.x2e{left:800.024979px;}
.x13{left:840.974979px;}
.x6{left:924.599979px;}
.x19{left:931.154979px;}
.x2c{left:971.129979px;}
.x14{left:981.704979px;}
.x8{left:1081.004979px;}
.x25{left:1135.694979px;}
.x15{left:1161.974979px;}
.x23{left:1175.549979px;}
.x22{left:1180.724979px;}
.x1a{left:1199.474979px;}
.x21{left:1213.724979px;}
@media print{
.v2{vertical-align:-4.933333pt;}
.v1{vertical-align:-2.826667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:68.000000pt;}
.ls8{letter-spacing:-3.776000pt;}
.ls12{letter-spacing:-3.642667pt;}
.ls9{letter-spacing:-2.170667pt;}
.ls14{letter-spacing:-2.122667pt;}
.lsc{letter-spacing:-2.080000pt;}
.ls17{letter-spacing:-1.861333pt;}
.ls11{letter-spacing:-1.520000pt;}
.lsa{letter-spacing:-1.418667pt;}
.ls10{letter-spacing:-1.098667pt;}
.ls1a{letter-spacing:-0.874667pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.741333pt;}
.ls16{letter-spacing:-0.661333pt;}
.lsd{letter-spacing:-0.311467pt;}
.ls1e{letter-spacing:-0.067200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.273867pt;}
.ls19{letter-spacing:0.300533pt;}
.lsb{letter-spacing:0.454400pt;}
.ls5{letter-spacing:0.965333pt;}
.ls13{letter-spacing:22.273333pt;}
.ls0{letter-spacing:28.656533pt;}
.ls1{letter-spacing:28.882933pt;}
.ls1c{letter-spacing:62.293333pt;}
.lse{letter-spacing:62.986667pt;}
.lsf{letter-spacing:63.066667pt;}
.ls7{letter-spacing:66.769733pt;}
.ls6{letter-spacing:66.869333pt;}
.ls1b{letter-spacing:86.353333pt;}
.ls3{letter-spacing:94.608267pt;}
.ws2{word-spacing:-38.932267pt;}
.ws18{word-spacing:-38.078933pt;}
.ws17{word-spacing:-33.508267pt;}
.ws0{word-spacing:-28.988267pt;}
.ws6{word-spacing:-24.468267pt;}
.ws4{word-spacing:-24.438133pt;}
.ws5{word-spacing:-23.670133pt;}
.ws3{word-spacing:-21.726133pt;}
.ws1f{word-spacing:-21.658933pt;}
.ws16{word-spacing:-19.603467pt;}
.ws11{word-spacing:-19.014133pt;}
.ws7{word-spacing:-17.206133pt;}
.wsf{word-spacing:-13.590133pt;}
.ws10{word-spacing:-13.560000pt;}
.wse{word-spacing:-2.591600pt;}
.ws20{word-spacing:-2.572800pt;}
.wsc{word-spacing:-2.516800pt;}
.wsa{word-spacing:-2.247200pt;}
.wsd{word-spacing:-0.369333pt;}
.ws1b{word-spacing:-0.172267pt;}
.ws1e{word-spacing:-0.096133pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.778533pt;}
.ws12{word-spacing:0.783467pt;}
.ws13{word-spacing:1.490533pt;}
.ws1c{word-spacing:4.193600pt;}
.wsb{word-spacing:4.850667pt;}
.ws9{word-spacing:5.244667pt;}
.ws14{word-spacing:7.966400pt;}
.ws8{word-spacing:8.206400pt;}
.ws19{word-spacing:36.028800pt;}
.ws1a{word-spacing:39.125867pt;}
.ws15{word-spacing:40.101333pt;}
._c{margin-left:-519.306533pt;}
._1c{margin-left:-13.749867pt;}
._a{margin-left:-9.358667pt;}
._f{margin-left:-7.398800pt;}
._9{margin-left:-6.364133pt;}
._5{margin-left:-5.400267pt;}
._2{margin-left:-4.232800pt;}
._7{margin-left:-3.078400pt;}
._0{margin-left:-1.924000pt;}
._8{margin-left:-0.950267pt;}
._3{width:1.539200pt;}
._1{width:2.437067pt;}
._6{width:3.976267pt;}
._b{width:5.323067pt;}
._11{width:6.220933pt;}
._18{width:21.382667pt;}
._13{width:22.463200pt;}
._1d{width:24.359867pt;}
._17{width:25.458133pt;}
._15{width:26.472133pt;}
._4{width:30.523733pt;}
._d{width:36.055467pt;}
._12{width:36.946133pt;}
._1b{width:37.865467pt;}
._19{width:39.841067pt;}
._1a{width:40.941067pt;}
._14{width:46.510533pt;}
._10{width:184.164800pt;}
._e{width:314.984267pt;}
._16{width:1929.165867pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:32.133333pt;}
.fs11{font-size:60.000000pt;}
.fs10{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fsb{font-size:76.000000pt;}
.fsd{font-size:76.133333pt;}
.fse{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs8{font-size:96.133333pt;}
.fs6{font-size:108.133333pt;}
.fs9{font-size:108.266667pt;}
.fs1{font-size:128.133333pt;}
.fs0{font-size:128.266667pt;}
.fs12{font-size:148.266667pt;}
.fsf{font-size:172.133333pt;}
.fs5{font-size:172.266667pt;}
.fs3{font-size:268.400000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:6.733333pt;}
.y49{bottom:14.600000pt;}
.y52{bottom:15.866667pt;}
.y50{bottom:24.766667pt;}
.y48{bottom:31.600000pt;}
.y1f{bottom:32.633333pt;}
.yc{bottom:32.866667pt;}
.y20{bottom:32.900000pt;}
.y4f{bottom:41.800000pt;}
.y1d{bottom:84.900000pt;}
.y1c{bottom:107.933333pt;}
.y3{bottom:114.133333pt;}
.y1b{bottom:129.966667pt;}
.y36{bottom:145.493333pt;}
.y1a{bottom:152.000000pt;}
.y3b{bottom:157.000000pt;}
.y19{bottom:175.040000pt;}
.y35{bottom:177.560000pt;}
.y5f{bottom:186.466667pt;}
.y3a{bottom:189.026667pt;}
.y18{bottom:197.026667pt;}
.y2c{bottom:212.440000pt;}
.y5e{bottom:215.506667pt;}
.y17{bottom:220.066667pt;}
.y39{bottom:221.093333pt;}
.y2{bottom:223.266667pt;}
.y4d{bottom:224.533333pt;}
.y45{bottom:225.200000pt;}
.y4e{bottom:231.226667pt;}
.yb{bottom:238.333333pt;}
.y4c{bottom:241.560000pt;}
.y44{bottom:242.226667pt;}
.y5d{bottom:244.533333pt;}
.y13{bottom:256.400000pt;}
.y2b{bottom:276.533333pt;}
.y1{bottom:277.360000pt;}
.ya{bottom:286.400000pt;}
.y1e{bottom:289.333333pt;}
.y2a{bottom:308.573333pt;}
.y3d{bottom:315.173333pt;}
.y6{bottom:326.333333pt;}
.y38{bottom:329.600000pt;}
.y9{bottom:334.466667pt;}
.y3c{bottom:347.200000pt;}
.y29{bottom:350.666667pt;}
.y16{bottom:354.306667pt;}
.y28{bottom:382.693333pt;}
.y15{bottom:383.333333pt;}
.y12{bottom:387.533333pt;}
.y32{bottom:401.706667pt;}
.y5{bottom:406.440000pt;}
.y11{bottom:419.560000pt;}
.yd{bottom:420.693333pt;}
.y68{bottom:427.800000pt;}
.y4b{bottom:431.773333pt;}
.y47{bottom:432.200000pt;}
.y31{bottom:433.773333pt;}
.y41{bottom:434.733333pt;}
.y24{bottom:440.533333pt;}
.y2f{bottom:445.693333pt;}
.y4a{bottom:448.800000pt;}
.y46{bottom:449.226667pt;}
.y67{bottom:456.840000pt;}
.y30{bottom:465.800000pt;}
.y10{bottom:467.640000pt;}
.y23{bottom:472.600000pt;}
.y58{bottom:475.560000pt;}
.y2e{bottom:477.733333pt;}
.y40{bottom:480.773333pt;}
.y66{bottom:484.866667pt;}
.y27{bottom:497.773333pt;}
.yf{bottom:499.666667pt;}
.y2d{bottom:509.800000pt;}
.y65{bottom:513.893333pt;}
.y55{bottom:517.893333pt;}
.y22{bottom:520.666667pt;}
.y3f{bottom:522.840000pt;}
.y34{bottom:527.533333pt;}
.y26{bottom:529.800000pt;}
.y64{bottom:542.960000pt;}
.ye{bottom:547.733333pt;}
.y54{bottom:549.973333pt;}
.y33{bottom:559.560000pt;}
.y5a{bottom:564.466667pt;}
.y3e{bottom:565.893333pt;}
.y21{bottom:568.733333pt;}
.y63{bottom:572.000000pt;}
.y57{bottom:572.600000pt;}
.y5c{bottom:587.306667pt;}
.y56{bottom:587.360000pt;}
.y37{bottom:598.466667pt;}
.y62{bottom:600.026667pt;}
.y14{bottom:600.933333pt;}
.y61{bottom:601.026667pt;}
.y59{bottom:602.026667pt;}
.y25{bottom:611.733333pt;}
.y43{bottom:614.560000pt;}
.y5b{bottom:638.026667pt;}
.y53{bottom:639.600000pt;}
.y8{bottom:652.773333pt;}
.y42{bottom:655.600000pt;}
.y60{bottom:661.800000pt;}
.y4{bottom:743.666667pt;}
.y7{bottom:788.440000pt;}
.h14{height:59.677734pt;}
.h13{height:59.810352pt;}
.h5{height:63.788867pt;}
.h9{height:65.531250pt;}
.he{height:65.667773pt;}
.hc{height:75.591797pt;}
.hd{height:75.724414pt;}
.h10{height:83.548828pt;}
.hf{height:83.681445pt;}
.h3{height:86.146289pt;}
.ha{height:95.616992pt;}
.h16{height:98.433398pt;}
.h8{height:107.552539pt;}
.h11{height:107.685156pt;}
.h7{height:110.720508pt;}
.hb{height:110.857031pt;}
.h2{height:127.445117pt;}
.h1{height:127.577734pt;}
.h15{height:127.677734pt;}
.h17{height:147.470313pt;}
.h12{height:176.251758pt;}
.h6{height:176.388281pt;}
.h4{height:266.958398pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:52.233314pt;}
.x4{left:54.499981pt;}
.xa{left:58.033314pt;}
.x1b{left:64.266648pt;}
.x1d{left:68.599981pt;}
.x10{left:70.666648pt;}
.x1e{left:71.633314pt;}
.x5{left:74.766648pt;}
.x28{left:79.966648pt;}
.x7{left:83.399981pt;}
.x2{left:88.899981pt;}
.x1{left:90.933314pt;}
.x1f{left:93.633314pt;}
.x1c{left:102.866648pt;}
.x2f{left:112.699981pt;}
.xc{left:121.199981pt;}
.xb{left:134.399981pt;}
.x17{left:285.933314pt;}
.x18{left:317.133314pt;}
.x2d{left:323.973314pt;}
.x27{left:379.266648pt;}
.x26{left:412.039981pt;}
.xf{left:484.839981pt;}
.xd{left:505.333314pt;}
.x2a{left:522.799981pt;}
.xe{left:528.026648pt;}
.x9{left:540.933314pt;}
.x12{left:563.293314pt;}
.x29{left:564.506648pt;}
.x3{left:574.933314pt;}
.x24{left:576.933314pt;}
.x11{left:601.306648pt;}
.x16{left:680.773314pt;}
.x20{left:702.799981pt;}
.x2e{left:711.133314pt;}
.x13{left:747.533314pt;}
.x6{left:821.866648pt;}
.x19{left:827.693314pt;}
.x2c{left:863.226648pt;}
.x14{left:872.626648pt;}
.x8{left:960.893314pt;}
.x25{left:1009.506648pt;}
.x15{left:1032.866648pt;}
.x23{left:1044.933314pt;}
.x22{left:1049.533314pt;}
.x1a{left:1066.199981pt;}
.x21{left:1078.866648pt;}
}




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