
    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_76516cf175efa0f5ad38a047.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a3efb9679ddcfca101eaaf0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_2468e4e6fc95af9325c939a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_73e1bfa7136246352d738853.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_5a806a101f835a1206f52f13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_f37e6bdd97cd0a09f59b57a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_96196d8911ffe4e9b3997199.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_42c09b59adbf35a8d0d08968.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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;}
.m2{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-2.250000px;}
.ls19{letter-spacing:-1.524000px;}
.ls17{letter-spacing:-1.230000px;}
.lse{letter-spacing:-1.128000px;}
.ls7{letter-spacing:-0.876000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.771000px;}
.ls6{letter-spacing:1.128000px;}
.lsa{letter-spacing:1.230000px;}
.ls1a{letter-spacing:1.524000px;}
.ls15{letter-spacing:1.525500px;}
.ls25{letter-spacing:1.675500px;}
.ls1f{letter-spacing:1.705500px;}
.ls23{letter-spacing:2.034000px;}
.ls1{letter-spacing:2.142000px;}
.ls21{letter-spacing:2.154000px;}
.ls22{letter-spacing:2.214000px;}
.lsd{letter-spacing:2.250000px;}
.ls1d{letter-spacing:3.151500px;}
.ls16{letter-spacing:3.378000px;}
.ls9{letter-spacing:7.875000px;}
.ls4{letter-spacing:12.375000px;}
.ls10{letter-spacing:12.495000px;}
.ls26{letter-spacing:14.733000px;}
.ls2{letter-spacing:17.055000px;}
.ls1c{letter-spacing:21.375000px;}
.ls1b{letter-spacing:21.555000px;}
.ls24{letter-spacing:25.860000px;}
.ls8{letter-spacing:25.995000px;}
.ls14{letter-spacing:30.495000px;}
.lsf{letter-spacing:44.055000px;}
.ls20{letter-spacing:50.883000px;}
.ls3{letter-spacing:66.495000px;}
.ls12{letter-spacing:87.387000px;}
.lsc{letter-spacing:91.383000px;}
.ls1e{letter-spacing:104.883000px;}
.ls13{letter-spacing:127.887000px;}
.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;}
}
.ws4{word-spacing:-21.375000px;}
.ws2{word-spacing:-21.267000px;}
.ws8{word-spacing:-21.159000px;}
.ws9{word-spacing:-20.355000px;}
.ws1{word-spacing:-19.125000px;}
.ws5{word-spacing:-17.895000px;}
.ws7{word-spacing:-17.601000px;}
.ws6{word-spacing:-16.875000px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._c{margin-left:-6.195000px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._13{width:5.475750px;}
._a{width:7.198650px;}
._b{width:8.798550px;}
._29{width:9.944850px;}
._9{width:11.550750px;}
._d{width:13.004400px;}
._27{width:14.239350px;}
._12{width:16.070400px;}
._8{width:17.092050px;}
._28{width:18.581700px;}
._7{width:21.064500px;}
._e{width:22.250850px;}
._2e{width:23.569650px;}
._1b{width:25.573800px;}
._1d{width:26.736750px;}
._26{width:27.884100px;}
._1c{width:30.213300px;}
._10{width:31.263750px;}
._2a{width:32.566200px;}
._f{width:34.210950px;}
._22{width:35.433600px;}
._2c{width:36.677400px;}
._20{width:39.649200px;}
._21{width:43.430100px;}
._16{width:44.596950px;}
._11{width:48.419550px;}
._1f{width:52.667700px;}
._2b{width:54.564300px;}
._1e{width:57.417600px;}
._2d{width:58.462650px;}
._25{width:61.330950px;}
._23{width:62.655450px;}
._24{width:64.501350px;}
._14{width:66.265200px;}
._15{width:67.472400px;}
._17{width:71.660550px;}
._18{width:74.520150px;}
._19{width:75.596850px;}
._1a{width:133.985550px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y5{bottom:14.662500px;}
.y3{bottom:32.662500px;}
.y4{bottom:61.912500px;}
.y54{bottom:130.612500px;}
.y53{bottom:156.480000px;}
.y2c{bottom:157.650000px;}
.y78{bottom:162.150000px;}
.y52{bottom:182.400000px;}
.y2b{bottom:183.525000px;}
.y77{bottom:188.025000px;}
.y51{bottom:208.320000px;}
.y2a{bottom:209.445000px;}
.y76{bottom:213.945000px;}
.y50{bottom:234.195000px;}
.y29{bottom:235.320000px;}
.y75{bottom:239.820000px;}
.y4f{bottom:260.100000px;}
.y28{bottom:261.225000px;}
.y74{bottom:265.725000px;}
.y4e{bottom:286.005000px;}
.y27{bottom:287.130000px;}
.y79{bottom:288.270000px;}
.y73{bottom:291.645000px;}
.y4d{bottom:311.895000px;}
.y26{bottom:313.005000px;}
.y72{bottom:317.505000px;}
.y4c{bottom:336.675000px;}
.y25{bottom:338.925000px;}
.y71{bottom:343.425000px;}
.y4b{bottom:362.550000px;}
.y24{bottom:364.800000px;}
.y70{bottom:369.345000px;}
.y4a{bottom:388.455000px;}
.y23{bottom:390.705000px;}
.y6f{bottom:395.205000px;}
.y49{bottom:414.375000px;}
.y22{bottom:416.625000px;}
.y6e{bottom:421.125000px;}
.y48{bottom:440.250000px;}
.y21{bottom:442.500000px;}
.y6d{bottom:447.000000px;}
.y47{bottom:466.170000px;}
.y20{bottom:467.295000px;}
.y6c{bottom:472.920000px;}
.y46{bottom:492.075000px;}
.y1f{bottom:493.200000px;}
.y6b{bottom:498.825000px;}
.y45{bottom:517.950000px;}
.y1e{bottom:519.075000px;}
.y6a{bottom:525.825000px;}
.y44{bottom:543.870000px;}
.y1d{bottom:544.980000px;}
.y69{bottom:551.730000px;}
.y43{bottom:569.745000px;}
.y1c{bottom:570.870000px;}
.y68{bottom:578.775000px;}
.y42{bottom:595.650000px;}
.y1b{bottom:596.775000px;}
.y67{bottom:605.775000px;}
.y41{bottom:621.570000px;}
.y1a{bottom:622.695000px;}
.y66{bottom:631.695000px;}
.y40{bottom:646.320000px;}
.y19{bottom:648.570000px;}
.y65{bottom:658.725000px;}
.y3f{bottom:672.225000px;}
.y18{bottom:674.475000px;}
.y64{bottom:684.600000px;}
.y3e{bottom:698.100000px;}
.y17{bottom:700.380000px;}
.y63{bottom:711.630000px;}
.y3d{bottom:724.005000px;}
.y16{bottom:726.270000px;}
.y62{bottom:737.505000px;}
.y3c{bottom:749.925000px;}
.y15{bottom:752.175000px;}
.y61{bottom:764.550000px;}
.y3b{bottom:775.800000px;}
.y14{bottom:778.050000px;}
.y60{bottom:790.455000px;}
.y3a{bottom:801.705000px;}
.y13{bottom:802.830000px;}
.y5f{bottom:816.330000px;}
.y39{bottom:827.625000px;}
.y12{bottom:828.750000px;}
.y5e{bottom:842.250000px;}
.y38{bottom:853.500000px;}
.y11{bottom:854.625000px;}
.y5d{bottom:869.295000px;}
.y37{bottom:879.420000px;}
.y10{bottom:880.545000px;}
.y5c{bottom:896.295000px;}
.y36{bottom:905.295000px;}
.yf{bottom:906.420000px;}
.y5b{bottom:923.325000px;}
.y35{bottom:931.200000px;}
.ye{bottom:932.325000px;}
.y5a{bottom:950.325000px;}
.y34{bottom:957.120000px;}
.yd{bottom:958.245000px;}
.y59{bottom:976.245000px;}
.y33{bottom:981.870000px;}
.yc{bottom:984.120000px;}
.y58{bottom:1003.275000px;}
.y32{bottom:1007.775000px;}
.yb{bottom:1010.025000px;}
.y57{bottom:1030.275000px;}
.y31{bottom:1033.650000px;}
.ya{bottom:1035.945000px;}
.y56{bottom:1057.320000px;}
.y30{bottom:1059.570000px;}
.y9{bottom:1061.820000px;}
.y55{bottom:1084.350000px;}
.y2f{bottom:1085.475000px;}
.y8{bottom:1087.725000px;}
.y2e{bottom:1111.350000px;}
.y7{bottom:1113.600000px;}
.y6{bottom:1136.130000px;}
.y2d{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h5{height:40.537500px;}
.hc{height:53.415527px;}
.hb{height:53.975830px;}
.h9{height:55.918213px;}
.he{height:67.137451px;}
.h3{height:68.027344px;}
.h8{height:75.043213px;}
.ha{height:75.080566px;}
.h7{height:77.097656px;}
.hd{height:78.629945px;}
.h2{height:86.319141px;}
.h4{height:95.389453px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x1{left:108.149987px;}
.x12{left:118.274987px;}
.xa{left:129.524987px;}
.xe{left:134.062487px;}
.xb{left:136.312487px;}
.x11{left:139.687487px;}
.x5{left:159.929987px;}
.xc{left:165.599987px;}
.x6{left:179.099987px;}
.xf{left:225.299987px;}
.x8{left:264.719987px;}
.x9{left:278.219987px;}
.x13{left:346.949987px;}
.xd{left:375.119987px;}
.x10{left:404.399987px;}
.x4{left:447.194987px;}
.x7{left:457.319987px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-2.000000pt;}
.ls19{letter-spacing:-1.354667pt;}
.ls17{letter-spacing:-1.093333pt;}
.lse{letter-spacing:-1.002667pt;}
.ls7{letter-spacing:-0.778667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.685333pt;}
.ls6{letter-spacing:1.002667pt;}
.lsa{letter-spacing:1.093333pt;}
.ls1a{letter-spacing:1.354667pt;}
.ls15{letter-spacing:1.356000pt;}
.ls25{letter-spacing:1.489333pt;}
.ls1f{letter-spacing:1.516000pt;}
.ls23{letter-spacing:1.808000pt;}
.ls1{letter-spacing:1.904000pt;}
.ls21{letter-spacing:1.914667pt;}
.ls22{letter-spacing:1.968000pt;}
.lsd{letter-spacing:2.000000pt;}
.ls1d{letter-spacing:2.801333pt;}
.ls16{letter-spacing:3.002667pt;}
.ls9{letter-spacing:7.000000pt;}
.ls4{letter-spacing:11.000000pt;}
.ls10{letter-spacing:11.106667pt;}
.ls26{letter-spacing:13.096000pt;}
.ls2{letter-spacing:15.160000pt;}
.ls1c{letter-spacing:19.000000pt;}
.ls1b{letter-spacing:19.160000pt;}
.ls24{letter-spacing:22.986667pt;}
.ls8{letter-spacing:23.106667pt;}
.ls14{letter-spacing:27.106667pt;}
.lsf{letter-spacing:39.160000pt;}
.ls20{letter-spacing:45.229333pt;}
.ls3{letter-spacing:59.106667pt;}
.ls12{letter-spacing:77.677333pt;}
.lsc{letter-spacing:81.229333pt;}
.ls1e{letter-spacing:93.229333pt;}
.ls13{letter-spacing:113.677333pt;}
.ws4{word-spacing:-19.000000pt;}
.ws2{word-spacing:-18.904000pt;}
.ws8{word-spacing:-18.808000pt;}
.ws9{word-spacing:-18.093333pt;}
.ws1{word-spacing:-17.000000pt;}
.ws5{word-spacing:-15.906667pt;}
.ws7{word-spacing:-15.645333pt;}
.ws6{word-spacing:-15.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._c{margin-left:-5.506667pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._13{width:4.867333pt;}
._a{width:6.398800pt;}
._b{width:7.820933pt;}
._29{width:8.839867pt;}
._9{width:10.267333pt;}
._d{width:11.559467pt;}
._27{width:12.657200pt;}
._12{width:14.284800pt;}
._8{width:15.192933pt;}
._28{width:16.517067pt;}
._7{width:18.724000pt;}
._e{width:19.778533pt;}
._2e{width:20.950800pt;}
._1b{width:22.732267pt;}
._1d{width:23.766000pt;}
._26{width:24.785867pt;}
._1c{width:26.856267pt;}
._10{width:27.790000pt;}
._2a{width:28.947733pt;}
._f{width:30.409733pt;}
._22{width:31.496533pt;}
._2c{width:32.602133pt;}
._20{width:35.243733pt;}
._21{width:38.604533pt;}
._16{width:39.641733pt;}
._11{width:43.039600pt;}
._1f{width:46.815733pt;}
._2b{width:48.501600pt;}
._1e{width:51.037867pt;}
._2d{width:51.966800pt;}
._25{width:54.516400pt;}
._23{width:55.693733pt;}
._24{width:57.334533pt;}
._14{width:58.902400pt;}
._15{width:59.975467pt;}
._17{width:63.698267pt;}
._18{width:66.240133pt;}
._19{width:67.197200pt;}
._1a{width:119.098267pt;}
.fs6{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:13.033333pt;}
.y3{bottom:29.033333pt;}
.y4{bottom:55.033333pt;}
.y54{bottom:116.100000pt;}
.y53{bottom:139.093333pt;}
.y2c{bottom:140.133333pt;}
.y78{bottom:144.133333pt;}
.y52{bottom:162.133333pt;}
.y2b{bottom:163.133333pt;}
.y77{bottom:167.133333pt;}
.y51{bottom:185.173333pt;}
.y2a{bottom:186.173333pt;}
.y76{bottom:190.173333pt;}
.y50{bottom:208.173333pt;}
.y29{bottom:209.173333pt;}
.y75{bottom:213.173333pt;}
.y4f{bottom:231.200000pt;}
.y28{bottom:232.200000pt;}
.y74{bottom:236.200000pt;}
.y4e{bottom:254.226667pt;}
.y27{bottom:255.226667pt;}
.y79{bottom:256.240000pt;}
.y73{bottom:259.240000pt;}
.y4d{bottom:277.240000pt;}
.y26{bottom:278.226667pt;}
.y72{bottom:282.226667pt;}
.y4c{bottom:299.266667pt;}
.y25{bottom:301.266667pt;}
.y71{bottom:305.266667pt;}
.y4b{bottom:322.266667pt;}
.y24{bottom:324.266667pt;}
.y70{bottom:328.306667pt;}
.y4a{bottom:345.293333pt;}
.y23{bottom:347.293333pt;}
.y6f{bottom:351.293333pt;}
.y49{bottom:368.333333pt;}
.y22{bottom:370.333333pt;}
.y6e{bottom:374.333333pt;}
.y48{bottom:391.333333pt;}
.y21{bottom:393.333333pt;}
.y6d{bottom:397.333333pt;}
.y47{bottom:414.373333pt;}
.y20{bottom:415.373333pt;}
.y6c{bottom:420.373333pt;}
.y46{bottom:437.400000pt;}
.y1f{bottom:438.400000pt;}
.y6b{bottom:443.400000pt;}
.y45{bottom:460.400000pt;}
.y1e{bottom:461.400000pt;}
.y6a{bottom:467.400000pt;}
.y44{bottom:483.440000pt;}
.y1d{bottom:484.426667pt;}
.y69{bottom:490.426667pt;}
.y43{bottom:506.440000pt;}
.y1c{bottom:507.440000pt;}
.y68{bottom:514.466667pt;}
.y42{bottom:529.466667pt;}
.y1b{bottom:530.466667pt;}
.y67{bottom:538.466667pt;}
.y41{bottom:552.506667pt;}
.y1a{bottom:553.506667pt;}
.y66{bottom:561.506667pt;}
.y40{bottom:574.506667pt;}
.y19{bottom:576.506667pt;}
.y65{bottom:585.533333pt;}
.y3f{bottom:597.533333pt;}
.y18{bottom:599.533333pt;}
.y64{bottom:608.533333pt;}
.y3e{bottom:620.533333pt;}
.y17{bottom:622.560000pt;}
.y63{bottom:632.560000pt;}
.y3d{bottom:643.560000pt;}
.y16{bottom:645.573333pt;}
.y62{bottom:655.560000pt;}
.y3c{bottom:666.600000pt;}
.y15{bottom:668.600000pt;}
.y61{bottom:679.600000pt;}
.y3b{bottom:689.600000pt;}
.y14{bottom:691.600000pt;}
.y60{bottom:702.626667pt;}
.y3a{bottom:712.626667pt;}
.y13{bottom:713.626667pt;}
.y5f{bottom:725.626667pt;}
.y39{bottom:735.666667pt;}
.y12{bottom:736.666667pt;}
.y5e{bottom:748.666667pt;}
.y38{bottom:758.666667pt;}
.y11{bottom:759.666667pt;}
.y5d{bottom:772.706667pt;}
.y37{bottom:781.706667pt;}
.y10{bottom:782.706667pt;}
.y5c{bottom:796.706667pt;}
.y36{bottom:804.706667pt;}
.yf{bottom:805.706667pt;}
.y5b{bottom:820.733333pt;}
.y35{bottom:827.733333pt;}
.ye{bottom:828.733333pt;}
.y5a{bottom:844.733333pt;}
.y34{bottom:850.773333pt;}
.yd{bottom:851.773333pt;}
.y59{bottom:867.773333pt;}
.y33{bottom:872.773333pt;}
.yc{bottom:874.773333pt;}
.y58{bottom:891.800000pt;}
.y32{bottom:895.800000pt;}
.yb{bottom:897.800000pt;}
.y57{bottom:915.800000pt;}
.y31{bottom:918.800000pt;}
.ya{bottom:920.840000pt;}
.y56{bottom:939.840000pt;}
.y30{bottom:941.840000pt;}
.y9{bottom:943.840000pt;}
.y55{bottom:963.866667pt;}
.y2f{bottom:964.866667pt;}
.y8{bottom:966.866667pt;}
.y2e{bottom:987.866667pt;}
.y7{bottom:989.866667pt;}
.y6{bottom:1009.893333pt;}
.y2d{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h5{height:36.033333pt;}
.hc{height:47.480469pt;}
.hb{height:47.978516pt;}
.h9{height:49.705078pt;}
.he{height:59.677734pt;}
.h3{height:60.468750pt;}
.h8{height:66.705078pt;}
.ha{height:66.738281pt;}
.h7{height:68.531250pt;}
.hd{height:69.893285pt;}
.h2{height:76.728125pt;}
.h4{height:84.790625pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.133322pt;}
.x12{left:105.133322pt;}
.xa{left:115.133322pt;}
.xe{left:119.166655pt;}
.xb{left:121.166655pt;}
.x11{left:124.166655pt;}
.x5{left:142.159988pt;}
.xc{left:147.199988pt;}
.x6{left:159.199988pt;}
.xf{left:200.266655pt;}
.x8{left:235.306655pt;}
.x9{left:247.306655pt;}
.x13{left:308.399988pt;}
.xd{left:333.439988pt;}
.x10{left:359.466655pt;}
.x4{left:397.506655pt;}
.x7{left:406.506655pt;}
.x2{left:712.893333pt;}
}




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