
    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_4f792afa18497016ec9ea5f0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_1d16593f2d6c92d0fff5157e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c6cb6b1479f11bc915522d85.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_d0bf1ff0e2e394a142f0689a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_013ffac7fbfe33c3493ac628.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c156e1ab8ddf59cd33b57c5f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944336;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_ead110228ac2479cd05932df.woff')format("woff");}.ff7{font-family:ff7;line-height:0.680000;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_ab61c9d16671dfd04d47dbeb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.713867;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_b7d820b2d69ba82714f9bcd4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_b289fe7f728cd68c056e61bc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.044000;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_b3a7b8509f0a4582c28534a3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-97.028553px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.484460px;}
.v3{vertical-align:107.999981px;}
.v4{vertical-align:147.555590px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.133277px;}
.lse{letter-spacing:0.133299px;}
.ls10{letter-spacing:0.133502px;}
.lsb{letter-spacing:45.037266px;}
.lsd{letter-spacing:180.028131px;}
.ls2{letter-spacing:200.175113px;}
.lsc{letter-spacing:240.008249px;}
.ls4{letter-spacing:987.193125px;}
.ls9{letter-spacing:1010.975986px;}
.ls8{letter-spacing:1094.410983px;}
.ls5{letter-spacing:1139.403425px;}
.ls7{letter-spacing:1215.586627px;}
.ls3{letter-spacing:1282.412664px;}
.ls1{letter-spacing:1516.236812px;}
.ls6{letter-spacing:1522.268657px;}
.lsa{letter-spacing:3609.316465px;}
.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;}
}
.ws9{word-spacing:-57.600002px;}
.ws5{word-spacing:-54.720002px;}
.ws7{word-spacing:-48.000000px;}
.wsb{word-spacing:-44.160003px;}
.wsc{word-spacing:-38.640000px;}
.ws8{word-spacing:-38.400003px;}
.ws6{word-spacing:-36.000001px;}
.ws3{word-spacing:-35.880003px;}
.ws2{word-spacing:-33.540002px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:904.410017px;}
.ws4{word-spacing:3505.816462px;}
.ws0{word-spacing:4620.584264px;}
._1a{margin-left:-18.000001px;}
._1{margin-left:-13.728001px;}
._5{margin-left:-12.600000px;}
._0{margin-left:-7.128000px;}
._3{margin-left:-5.280000px;}
._9{margin-left:-3.816000px;}
._a{margin-left:-1.944000px;}
._22{width:1.163850px;}
._21{width:2.592000px;}
._1b{width:3.600000px;}
._b{width:5.088000px;}
._7{width:6.336000px;}
._4{width:7.920000px;}
._6{width:10.560001px;}
._2{width:11.616001px;}
._20{width:14.112000px;}
._23{width:15.180000px;}
._18{width:16.896001px;}
._8{width:18.360001px;}
._c{width:55.148175px;}
._f{width:100.856178px;}
._1c{width:166.536019px;}
._e{width:269.804190px;}
._12{width:420.344201px;}
._16{width:435.164202px;}
._17{width:467.684204px;}
._15{width:511.760207px;}
._1e{width:621.864063px;}
._11{width:774.536226px;}
._13{width:779.300226px;}
._14{width:826.796229px;}
._10{width:1058.852246px;}
._d{width:1109.374623px;}
._1f{width:1260.960057px;}
._1d{width:2556.960099px;}
._19{width:6003.883227px;}
.fc0{color:rgb(214,118,147);}
.fc1{color:rgb(83,83,83);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(41,41,41);}
.fc9{color:rgb(216,216,216);}
.fcd{color:rgb(126,55,181);}
.fc2{color:rgb(0,110,184);}
.fca{color:rgb(240,126,178);}
.fcc{color:rgb(34,224,213);}
.fc3{color:rgb(87,87,85);}
.fc5{color:transparent;}
.fc8{color:rgb(189,229,255);}
.fc6{color:rgb(255,255,255);}
.fcb{color:rgb(57,170,53);}
.fs14{font-size:84.000000px;}
.fs5{font-size:96.000006px;}
.fs7{font-size:126.000004px;}
.fs9{font-size:132.000007px;}
.fsf{font-size:144.000005px;}
.fs6{font-size:156.000011px;}
.fse{font-size:167.999999px;}
.fsc{font-size:180.000006px;}
.fsb{font-size:183.564708px;}
.fs13{font-size:192.000012px;}
.fs11{font-size:192.000016px;}
.fs1{font-size:216.000007px;}
.fsa{font-size:240.000002px;}
.fs0{font-size:264.000014px;}
.fs10{font-size:270.000009px;}
.fs4{font-size:288.000009px;}
.fsd{font-size:299.999998px;}
.fs3{font-size:360.000012px;}
.fs8{font-size:450.000014px;}
.fs2{font-size:528.000029px;}
.fs12{font-size:690.000007px;}
.y0{bottom:0.000000px;}
.y2{bottom:74.763288px;}
.y43{bottom:79.402451px;}
.y67{bottom:82.422075px;}
.y3f{bottom:85.456863px;}
.yc{bottom:88.196688px;}
.y12{bottom:95.430169px;}
.y29{bottom:109.714002px;}
.y26{bottom:112.460464px;}
.y2e{bottom:115.408414px;}
.y2f{bottom:117.571114px;}
.y66{bottom:132.822076px;}
.y1{bottom:153.963291px;}
.y68{bottom:156.652380px;}
.y42{bottom:165.802442px;}
.y25{bottom:170.231129px;}
.y11{bottom:181.830104px;}
.y65{bottom:183.222071px;}
.y3d{bottom:195.857392px;}
.y4e{bottom:225.860355px;}
.y24{bottom:228.001680px;}
.y55{bottom:229.592566px;}
.y41{bottom:252.202456px;}
.y3c{bottom:267.857398px;}
.y10{bottom:268.230095px;}
.y23{bottom:285.772345px;}
.y54{bottom:315.992568px;}
.y40{bottom:338.602459px;}
.y22{bottom:343.543009px;}
.y36{bottom:352.728972px;}
.yf{bottom:354.630065px;}
.y21{bottom:401.313786px;}
.y53{bottom:402.392571px;}
.y35{bottom:424.728978px;}
.ye{bottom:441.030067px;}
.y20{bottom:459.084383px;}
.y52{bottom:488.792574px;}
.y1f{bottom:516.855115px;}
.y5f{bottom:527.430070px;}
.y34{bottom:558.948026px;}
.y5b{bottom:560.491639px;}
.y1e{bottom:574.625779px;}
.y51{bottom:575.192577px;}
.yd{bottom:613.830073px;}
.y1d{bottom:632.396398px;}
.y5a{bottom:641.491641px;}
.y33{bottom:645.348006px;}
.y6{bottom:659.474981px;}
.y1c{bottom:690.167108px;}
.y5e{bottom:700.230076px;}
.y4d{bottom:700.654808px;}
.y59{bottom:722.491633px;}
.y32{bottom:731.747998px;}
.y1b{bottom:747.937772px;}
.y50{bottom:762.760716px;}
.y63{bottom:763.630173px;}
.y5{bottom:767.474978px;}
.y64{bottom:772.195023px;}
.y5d{bottom:786.630000px;}
.y58{bottom:803.491624px;}
.y1a{bottom:805.708470px;}
.y31{bottom:818.148012px;}
.y19{bottom:863.479101px;}
.y60{bottom:873.029991px;}
.y4c{bottom:882.813752px;}
.y30{bottom:904.548015px;}
.y18{bottom:921.249765px;}
.y2a{bottom:925.378673px;}
.y5c{bottom:959.429971px;}
.y49{bottom:965.984930px;}
.y17{bottom:979.020486px;}
.y4f{bottom:989.448505px;}
.y3b{bottom:991.070755px;}
.y56{bottom:993.256405px;}
.y62{bottom:993.620759px;}
.y48{bottom:1016.384921px;}
.y2c{bottom:1026.581910px;}
.y16{bottom:1036.791128px;}
.y3a{bottom:1045.070757px;}
.ya{bottom:1045.829963px;}
.y47{bottom:1066.784911px;}
.y2d{bottom:1093.422876px;}
.y15{bottom:1094.561814px;}
.y39{bottom:1099.070758px;}
.y46{bottom:1117.184901px;}
.y28{bottom:1123.391239px;}
.y9{bottom:1132.229977px;}
.y3e{bottom:1136.321535px;}
.y38{bottom:1153.070767px;}
.y14{bottom:1158.533243px;}
.y27{bottom:1161.191235px;}
.y2b{bottom:1161.581914px;}
.y45{bottom:1167.584881px;}
.y37{bottom:1207.070764px;}
.y8{bottom:1218.629980px;}
.y44{bottom:1225.904882px;}
.y61{bottom:1232.617904px;}
.y4{bottom:1244.129991px;}
.y57{bottom:1327.480854px;}
.y7{bottom:1350.540347px;}
.yb{bottom:1359.168764px;}
.y13{bottom:1359.169237px;}
.y3{bottom:1402.529996px;}
.y4b{bottom:1404.193572px;}
.y4a{bottom:1476.193578px;}
.h1b{height:61.195312px;}
.h5{height:69.937504px;}
.h8{height:94.500003px;}
.ha{height:99.000005px;}
.h13{height:106.992003px;}
.h7{height:115.908008px;}
.h1a{height:124.824000px;}
.h10{height:129.024000px;}
.hc{height:131.040822px;}
.hd{height:133.740004px;}
.h19{height:142.656009px;}
.hb{height:178.320001px;}
.h11{height:184.320001px;}
.h1{height:196.152011px;}
.h14{height:196.699225px;}
.h6{height:213.696007px;}
.h4{height:213.984007px;}
.h12{height:218.408201px;}
.hf{height:230.399998px;}
.h15{height:250.463993px;}
.h16{height:250.464015px;}
.h3{height:267.480009px;}
.h18{height:290.211599px;}
.h9{height:334.350011px;}
.he{height:391.776021px;}
.h2{height:392.304021px;}
.h17{height:512.670005px;}
.h0{height:1620.000000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x1{left:89.031476px;}
.xc{left:118.384845px;}
.x7{left:126.375007px;}
.x2a{left:137.373309px;}
.x29{left:148.166278px;}
.x1e{left:164.234424px;}
.x1c{left:177.543326px;}
.x2f{left:180.375009px;}
.x2e{left:207.375010px;}
.x8{left:262.125008px;}
.x6{left:270.888781px;}
.x19{left:303.710376px;}
.x2{left:304.944824px;}
.xf{left:313.831113px;}
.x18{left:333.587216px;}
.xe{left:388.137286px;}
.x34{left:411.443147px;}
.x3{left:463.639065px;}
.x1d{left:487.202607px;}
.x4{left:700.040475px;}
.x5{left:906.750029px;}
.x31{left:1050.118864px;}
.x33{left:1067.635542px;}
.x20{left:1069.194972px;}
.x21{left:1075.492912px;}
.x14{left:1081.122350px;}
.x2d{left:1089.468485px;}
.x30{left:1100.522960px;}
.x22{left:1150.194974px;}
.x10{left:1245.187154px;}
.x15{left:1279.744691px;}
.x24{left:1284.130200px;}
.x11{left:1341.093339px;}
.xa{left:1388.075107px;}
.x17{left:1394.547007px;}
.x1a{left:1427.075730px;}
.x1b{left:1483.875047px;}
.x23{left:1540.604671px;}
.x9{left:1594.125051px;}
.x32{left:1626.167865px;}
.x2b{left:1733.506255px;}
.x26{left:1837.598684px;}
.x2c{left:1874.537610px;}
.xd{left:2055.872991px;}
.x27{left:2165.388144px;}
.x12{left:2173.240020px;}
.x13{left:2223.133744px;}
.x25{left:2232.171746px;}
.x35{left:2242.125072px;}
.x16{left:2355.163163px;}
.x28{left:2412.064652px;}
.x1f{left:2499.609680px;}
.xb{left:2612.151084px;}
@media print{
.v2{vertical-align:-86.247603pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.208409pt;}
.v3{vertical-align:95.999983pt;}
.v4{vertical-align:131.160524pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.118468pt;}
.lse{letter-spacing:0.118488pt;}
.ls10{letter-spacing:0.118668pt;}
.lsb{letter-spacing:40.033125pt;}
.lsd{letter-spacing:160.025005pt;}
.ls2{letter-spacing:177.933434pt;}
.lsc{letter-spacing:213.340666pt;}
.ls4{letter-spacing:877.505000pt;}
.ls9{letter-spacing:898.645321pt;}
.ls8{letter-spacing:972.809763pt;}
.ls5{letter-spacing:1012.803044pt;}
.ls7{letter-spacing:1080.521446pt;}
.ls3{letter-spacing:1139.922368pt;}
.ls1{letter-spacing:1347.766055pt;}
.ls6{letter-spacing:1353.127695pt;}
.lsa{letter-spacing:3208.281303pt;}
.ws9{word-spacing:-51.200002pt;}
.ws5{word-spacing:-48.640002pt;}
.ws7{word-spacing:-42.666667pt;}
.wsb{word-spacing:-39.253336pt;}
.wsc{word-spacing:-34.346667pt;}
.ws8{word-spacing:-34.133336pt;}
.ws6{word-spacing:-32.000001pt;}
.ws3{word-spacing:-31.893336pt;}
.ws2{word-spacing:-29.813335pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:803.920015pt;}
.ws4{word-spacing:3116.281300pt;}
.ws0{word-spacing:4107.186012pt;}
._1a{margin-left:-16.000001pt;}
._1{margin-left:-12.202667pt;}
._5{margin-left:-11.200000pt;}
._0{margin-left:-6.336000pt;}
._3{margin-left:-4.693334pt;}
._9{margin-left:-3.392000pt;}
._a{margin-left:-1.728000pt;}
._22{width:1.034533pt;}
._21{width:2.304000pt;}
._1b{width:3.200000pt;}
._b{width:4.522667pt;}
._7{width:5.632000pt;}
._4{width:7.040000pt;}
._6{width:9.386667pt;}
._2{width:10.325334pt;}
._20{width:12.544000pt;}
._23{width:13.493333pt;}
._18{width:15.018667pt;}
._8{width:16.320001pt;}
._c{width:49.020600pt;}
._f{width:89.649936pt;}
._1c{width:148.032017pt;}
._e{width:239.825947pt;}
._12{width:373.639289pt;}
._16{width:386.812624pt;}
._17{width:415.719292pt;}
._15{width:454.897962pt;}
._1e{width:552.768056pt;}
._11{width:688.476645pt;}
._13{width:692.711312pt;}
._14{width:734.929981pt;}
._10{width:941.201996pt;}
._d{width:986.110776pt;}
._1f{width:1120.853384pt;}
._1d{width:2272.853421pt;}
._19{width:5336.785091pt;}
.fs14{font-size:74.666666pt;}
.fs5{font-size:85.333339pt;}
.fs7{font-size:112.000004pt;}
.fs9{font-size:117.333340pt;}
.fsf{font-size:128.000004pt;}
.fs6{font-size:138.666676pt;}
.fse{font-size:149.333333pt;}
.fsc{font-size:160.000005pt;}
.fsb{font-size:163.168630pt;}
.fs13{font-size:170.666677pt;}
.fs11{font-size:170.666681pt;}
.fs1{font-size:192.000006pt;}
.fsa{font-size:213.333335pt;}
.fs0{font-size:234.666680pt;}
.fs10{font-size:240.000008pt;}
.fs4{font-size:256.000008pt;}
.fsd{font-size:266.666665pt;}
.fs3{font-size:320.000010pt;}
.fs8{font-size:400.000013pt;}
.fs2{font-size:469.333359pt;}
.fs12{font-size:613.333340pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:66.456256pt;}
.y43{bottom:70.579956pt;}
.y67{bottom:73.264066pt;}
.y3f{bottom:75.961656pt;}
.yc{bottom:78.397056pt;}
.y12{bottom:84.826817pt;}
.y29{bottom:97.523557pt;}
.y26{bottom:99.964857pt;}
.y2e{bottom:102.585257pt;}
.y2f{bottom:104.507657pt;}
.y66{bottom:118.064068pt;}
.y1{bottom:136.856258pt;}
.y68{bottom:139.246560pt;}
.y42{bottom:147.379949pt;}
.y25{bottom:151.316559pt;}
.y11{bottom:161.626759pt;}
.y65{bottom:162.864063pt;}
.y3d{bottom:174.095459pt;}
.y4e{bottom:200.764760pt;}
.y24{bottom:202.668160pt;}
.y55{bottom:204.082280pt;}
.y41{bottom:224.179961pt;}
.y3c{bottom:238.095465pt;}
.y10{bottom:238.426752pt;}
.y23{bottom:254.019862pt;}
.y54{bottom:280.882283pt;}
.y40{bottom:300.979964pt;}
.y22{bottom:305.371564pt;}
.y36{bottom:313.536864pt;}
.yf{bottom:315.226724pt;}
.y21{bottom:356.723365pt;}
.y53{bottom:357.682285pt;}
.y35{bottom:377.536869pt;}
.ye{bottom:392.026726pt;}
.y20{bottom:408.075007pt;}
.y52{bottom:434.482288pt;}
.y1f{bottom:459.426769pt;}
.y5f{bottom:468.826729pt;}
.y34{bottom:496.842690pt;}
.y5b{bottom:498.214790pt;}
.y1e{bottom:510.778470pt;}
.y51{bottom:511.282290pt;}
.yd{bottom:545.626731pt;}
.y1d{bottom:562.130132pt;}
.y5a{bottom:570.214792pt;}
.y33{bottom:573.642672pt;}
.y6{bottom:586.199983pt;}
.y1c{bottom:613.481874pt;}
.y5e{bottom:622.426734pt;}
.y4d{bottom:622.804274pt;}
.y59{bottom:642.214784pt;}
.y32{bottom:650.442665pt;}
.y1b{bottom:664.833575pt;}
.y50{bottom:678.009526pt;}
.y63{bottom:678.782376pt;}
.y5{bottom:682.199981pt;}
.y64{bottom:686.395576pt;}
.y5d{bottom:699.226666pt;}
.y58{bottom:714.214777pt;}
.y1a{bottom:716.185307pt;}
.y31{bottom:727.242677pt;}
.y19{bottom:767.536978pt;}
.y60{bottom:776.026659pt;}
.y4c{bottom:784.723335pt;}
.y30{bottom:804.042680pt;}
.y18{bottom:818.888680pt;}
.y2a{bottom:822.558820pt;}
.y5c{bottom:852.826641pt;}
.y49{bottom:858.653271pt;}
.y17{bottom:870.240432pt;}
.y4f{bottom:879.509782pt;}
.y3b{bottom:880.951782pt;}
.y56{bottom:882.894582pt;}
.y62{bottom:883.218452pt;}
.y48{bottom:903.453263pt;}
.y2c{bottom:912.517253pt;}
.y16{bottom:921.592113pt;}
.y3a{bottom:928.951784pt;}
.ya{bottom:929.626634pt;}
.y47{bottom:948.253254pt;}
.y2d{bottom:971.931445pt;}
.y15{bottom:972.943835pt;}
.y39{bottom:976.951785pt;}
.y46{bottom:993.053246pt;}
.y28{bottom:998.569990pt;}
.y9{bottom:1006.426646pt;}
.y3e{bottom:1010.063586pt;}
.y38{bottom:1024.951793pt;}
.y14{bottom:1029.807327pt;}
.y27{bottom:1032.169987pt;}
.y2b{bottom:1032.517257pt;}
.y45{bottom:1037.853227pt;}
.y37{bottom:1072.951790pt;}
.y8{bottom:1083.226649pt;}
.y44{bottom:1089.693229pt;}
.y61{bottom:1095.660359pt;}
.y4{bottom:1105.893325pt;}
.y57{bottom:1179.982982pt;}
.y7{bottom:1200.480308pt;}
.yb{bottom:1208.150013pt;}
.y13{bottom:1208.150433pt;}
.y3{bottom:1246.693330pt;}
.y4b{bottom:1248.172064pt;}
.y4a{bottom:1312.172069pt;}
.h1b{height:54.395833pt;}
.h5{height:62.166671pt;}
.h8{height:84.000003pt;}
.ha{height:88.000005pt;}
.h13{height:95.104003pt;}
.h7{height:103.029341pt;}
.h1a{height:110.954666pt;}
.h10{height:114.688000pt;}
.hc{height:116.480731pt;}
.hd{height:118.880004pt;}
.h19{height:126.805341pt;}
.hb{height:158.506668pt;}
.h11{height:163.840001pt;}
.h1{height:174.357343pt;}
.h14{height:174.843756pt;}
.h6{height:189.952006pt;}
.h4{height:190.208006pt;}
.h12{height:194.140623pt;}
.hf{height:204.799998pt;}
.h15{height:222.634660pt;}
.h16{height:222.634680pt;}
.h3{height:237.760008pt;}
.h18{height:257.965866pt;}
.h9{height:297.200010pt;}
.he{height:348.245352pt;}
.h2{height:348.714686pt;}
.h17{height:455.706671pt;}
.h0{height:1440.000000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1{left:79.139090pt;}
.xc{left:105.230973pt;}
.x7{left:112.333340pt;}
.x2a{left:122.109608pt;}
.x29{left:131.703358pt;}
.x1e{left:145.986155pt;}
.x1c{left:157.816290pt;}
.x2f{left:160.333341pt;}
.x2e{left:184.333342pt;}
.x8{left:233.000007pt;}
.x6{left:240.790028pt;}
.x19{left:269.964779pt;}
.x2{left:271.062066pt;}
.xf{left:278.960989pt;}
.x18{left:296.521969pt;}
.xe{left:345.010921pt;}
.x34{left:365.727242pt;}
.x3{left:412.123613pt;}
.x1d{left:433.068984pt;}
.x4{left:622.258200pt;}
.x5{left:806.000026pt;}
.x31{left:933.438990pt;}
.x33{left:949.009370pt;}
.x20{left:950.395530pt;}
.x21{left:955.993700pt;}
.x14{left:960.997645pt;}
.x2d{left:968.416431pt;}
.x30{left:978.242631pt;}
.x22{left:1022.395533pt;}
.x10{left:1106.833025pt;}
.x15{left:1137.550836pt;}
.x24{left:1141.449067pt;}
.x11{left:1192.082968pt;}
.xa{left:1233.844539pt;}
.x17{left:1239.597340pt;}
.x1a{left:1268.511760pt;}
.x1b{left:1319.000042pt;}
.x23{left:1369.426374pt;}
.x9{left:1417.000045pt;}
.x32{left:1445.482546pt;}
.x2b{left:1540.894449pt;}
.x26{left:1633.421052pt;}
.x2c{left:1666.255653pt;}
.xd{left:1827.442658pt;}
.x27{left:1924.789462pt;}
.x12{left:1931.768907pt;}
.x13{left:1976.118883pt;}
.x25{left:1984.152663pt;}
.x35{left:1993.000064pt;}
.x16{left:2093.478367pt;}
.x28{left:2144.057469pt;}
.x1f{left:2221.875271pt;}
.xb{left:2321.912074pt;}
}




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