
    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_3d17047bc7abf124fa36c2cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_dd54f2c16b27c60fa71bde15.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_781f9ec89ea7823c85d6ab13.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022949;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_2eea5b2af983d75cc9ca366a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022949;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_dd311d77564cba0eaeb488a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_3d17047bc7abf124fa36c2cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_92da4d98cbd42ca40e34da23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls10{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-0.840000px;}
.ls27{letter-spacing:-0.798000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.420000px;}
.ls26{letter-spacing:-0.336000px;}
.ls2d{letter-spacing:-0.294000px;}
.ls17{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.252000px;}
.ls14{letter-spacing:-0.162000px;}
.ls2e{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.084000px;}
.ls19{letter-spacing:-0.054000px;}
.ls1a{letter-spacing:-0.031482px;}
.ls11{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.084000px;}
.ls1{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.157410px;}
.ls1d{letter-spacing:0.168000px;}
.ls20{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.323382px;}
.ls5{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.486000px;}
.ls4{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.546000px;}
.ls24{letter-spacing:0.588000px;}
.ls13{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.864000px;}
.ls1e{letter-spacing:1.218000px;}
.ls2b{letter-spacing:1.260000px;}
.lse{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.302000px;}
.lsf{letter-spacing:1.350000px;}
.lsb{letter-spacing:1.385208px;}
.ls9{letter-spacing:1.944000px;}
.ls23{letter-spacing:2.058000px;}
.ls12{letter-spacing:2.268000px;}
.ls7{letter-spacing:2.322000px;}
.ls8{letter-spacing:2.376000px;}
.ls2a{letter-spacing:2.982000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.796000px;}
.ws3{word-spacing:-10.011276px;}
.ws2{word-spacing:-8.626068px;}
.ws4{word-spacing:-8.594586px;}
.ws2e{word-spacing:-4.620000px;}
.ws2d{word-spacing:-4.578000px;}
.ws33{word-spacing:-4.410000px;}
.ws34{word-spacing:-4.368000px;}
.ws36{word-spacing:-4.116000px;}
.wsf{word-spacing:-3.726000px;}
.ws9{word-spacing:-3.672000px;}
.ws2f{word-spacing:-3.444000px;}
.ws31{word-spacing:-3.318000px;}
.ws2a{word-spacing:-3.294000px;}
.ws26{word-spacing:-3.240000px;}
.ws32{word-spacing:-2.982000px;}
.ws30{word-spacing:-2.310000px;}
.ws35{word-spacing:-2.268000px;}
.ws14{word-spacing:-2.214000px;}
.ws29{word-spacing:-2.160000px;}
.ws13{word-spacing:-1.188000px;}
.ws17{word-spacing:-1.026000px;}
.ws2c{word-spacing:-0.810000px;}
.ws1e{word-spacing:-0.324000px;}
.wsc{word-spacing:-0.157410px;}
.ws5{word-spacing:0.000000px;}
.ws24{word-spacing:0.972000px;}
.ws25{word-spacing:1.350000px;}
.ws15{word-spacing:1.404000px;}
.wsa{word-spacing:1.512000px;}
.ws12{word-spacing:1.728000px;}
.ws16{word-spacing:1.890000px;}
.ws23{word-spacing:2.052000px;}
.ws21{word-spacing:2.106000px;}
.ws18{word-spacing:2.538000px;}
.ws1b{word-spacing:2.646000px;}
.ws11{word-spacing:3.078000px;}
.ws28{word-spacing:3.132000px;}
.wse{word-spacing:3.672000px;}
.wsd{word-spacing:3.888000px;}
.ws27{word-spacing:4.050000px;}
.ws2b{word-spacing:4.320000px;}
.ws1f{word-spacing:4.374000px;}
.wsb{word-spacing:4.644000px;}
.ws1d{word-spacing:4.806000px;}
.ws19{word-spacing:5.076000px;}
.ws1a{word-spacing:5.508000px;}
.ws1c{word-spacing:5.994000px;}
.ws10{word-spacing:6.102000px;}
.ws22{word-spacing:6.750000px;}
.ws8{word-spacing:7.128000px;}
.ws20{word-spacing:7.236000px;}
.ws7{word-spacing:7.344000px;}
.ws6{word-spacing:7.398000px;}
._5{margin-left:-22.758600px;}
._7{margin-left:-14.480832px;}
._b{margin-left:-9.265200px;}
._d{margin-left:-7.617600px;}
._3{margin-left:-5.983200px;}
._6{margin-left:-4.390200px;}
._2{margin-left:-2.382000px;}
._0{margin-left:-1.344000px;}
._1{width:1.756800px;}
._4{width:2.837304px;}
._e{width:21.420000px;}
._9{width:39.774000px;}
._c{width:40.866000px;}
._8{width:43.386000px;}
._a{width:45.864000px;}
.fc1{color:rgb(0,94,138);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:26.800350px;}
.y5f{bottom:29.531850px;}
.y83{bottom:85.039350px;}
.y5a{bottom:183.685050px;}
.y11{bottom:189.872550px;}
.y59{bottom:200.295750px;}
.yb{bottom:214.851900px;}
.y58{bottom:216.906450px;}
.ya{bottom:227.452050px;}
.y57{bottom:233.517150px;}
.y9{bottom:240.052050px;}
.y56{bottom:250.127850px;}
.y8{bottom:252.652050px;}
.y55{bottom:266.738550px;}
.y10{bottom:273.229500px;}
.y54{bottom:283.349250px;}
.yf{bottom:289.429500px;}
.y53{bottom:299.959950px;}
.ye{bottom:305.629500px;}
.y52{bottom:316.570650px;}
.yd{bottom:321.829500px;}
.y51{bottom:333.181350px;}
.yc{bottom:342.304500px;}
.y50{bottom:349.792200px;}
.y4f{bottom:366.402900px;}
.y4e{bottom:387.288600px;}
.y30{bottom:398.371800px;}
.y4d{bottom:403.899300px;}
.y2f{bottom:414.613200px;}
.y4c{bottom:420.510000px;}
.y2e{bottom:430.854450px;}
.y4b{bottom:437.120700px;}
.y2d{bottom:447.095700px;}
.y4a{bottom:453.731400px;}
.y2c{bottom:463.336950px;}
.y49{bottom:470.342100px;}
.y2b{bottom:479.578200px;}
.y48{bottom:486.952800px;}
.y2a{bottom:495.819450px;}
.y47{bottom:503.563500px;}
.y29{bottom:512.060700px;}
.y46{bottom:520.174200px;}
.y28{bottom:528.302100px;}
.y45{bottom:536.784900px;}
.y27{bottom:544.543350px;}
.y44{bottom:553.395750px;}
.y26{bottom:560.784600px;}
.y43{bottom:570.006450px;}
.y25{bottom:577.025850px;}
.y42{bottom:586.617150px;}
.y24{bottom:593.267100px;}
.y41{bottom:603.227850px;}
.y23{bottom:609.508350px;}
.y40{bottom:619.838550px;}
.y22{bottom:625.749600px;}
.y3f{bottom:636.449250px;}
.y21{bottom:641.990850px;}
.y3e{bottom:653.059950px;}
.y20{bottom:658.232100px;}
.y3d{bottom:669.670650px;}
.y1f{bottom:674.473350px;}
.y3c{bottom:686.281350px;}
.y1e{bottom:690.714600px;}
.y3b{bottom:702.892050px;}
.y1d{bottom:706.956000px;}
.y3a{bottom:719.502750px;}
.y1c{bottom:723.197250px;}
.y39{bottom:736.113450px;}
.y71{bottom:739.417350px;}
.y1b{bottom:739.438500px;}
.y38{bottom:752.724150px;}
.y81{bottom:753.065550px;}
.y70{bottom:753.564150px;}
.y1a{bottom:755.679750px;}
.y80{bottom:766.713900px;}
.y37{bottom:769.335000px;}
.y19{bottom:771.921000px;}
.y6f{bottom:776.185950px;}
.y36{bottom:785.945550px;}
.y18{bottom:788.162250px;}
.y7f{bottom:788.837100px;}
.y6e{bottom:790.332750px;}
.y7e{bottom:802.485450px;}
.y35{bottom:802.556250px;}
.y6d{bottom:804.479700px;}
.y17{bottom:808.678500px;}
.y7d{bottom:816.133800px;}
.y34{bottom:819.167100px;}
.y16{bottom:824.919750px;}
.y6c{bottom:827.101500px;}
.y7c{bottom:838.257000px;}
.y33{bottom:840.052800px;}
.y15{bottom:841.161000px;}
.y6b{bottom:841.248300px;}
.y7b{bottom:851.905350px;}
.y6a{bottom:855.395100px;}
.y32{bottom:856.663350px;}
.y14{bottom:857.402400px;}
.y7a{bottom:865.553700px;}
.y69{bottom:869.541900px;}
.y31{bottom:873.274200px;}
.y13{bottom:873.643650px;}
.y68{bottom:883.688850px;}
.y79{bottom:887.676900px;}
.y12{bottom:889.884900px;}
.y67{bottom:897.835650px;}
.y78{bottom:901.325250px;}
.y77{bottom:914.973450px;}
.y66{bottom:920.457300px;}
.y7{bottom:934.379550px;}
.y65{bottom:934.604250px;}
.y76{bottom:937.096800px;}
.y64{bottom:948.751050px;}
.y75{bottom:950.745000px;}
.y6{bottom:950.879550px;}
.y63{bottom:962.897850px;}
.y74{bottom:964.393350px;}
.y5{bottom:967.379550px;}
.y73{bottom:978.041700px;}
.y4{bottom:983.879550px;}
.y62{bottom:985.519650px;}
.y61{bottom:999.666450px;}
.y72{bottom:1000.164900px;}
.y3{bottom:1008.883500px;}
.y60{bottom:1013.813250px;}
.y2{bottom:1037.683500px;}
.y82{bottom:1041.884700px;}
.y1{bottom:1102.761000px;}
.y5c{bottom:1103.309550px;}
.y5e{bottom:1137.109350px;}
.y5d{bottom:1147.909350px;}
.hb{height:27.000000px;}
.hc{height:27.216000px;}
.h6{height:31.500000px;}
.h5{height:36.000000px;}
.h8{height:40.500000px;}
.h9{height:41.593500px;}
.h4{height:45.000000px;}
.h7{height:54.000000px;}
.ha{height:61.154297px;}
.h3{height:72.000000px;}
.h2{height:78.626953px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:20.391600px;}
.x9{left:63.779550px;}
.x8{left:85.724400px;}
.x2{left:123.307050px;}
.x4{left:129.307050px;}
.x3{left:140.332050px;}
.xc{left:154.698000px;}
.xb{left:429.448800px;}
.xa{left:450.673800px;}
.x5{left:488.976450px;}
.x6{left:506.001450px;}
.x1{left:659.816700px;}
.x7{left:847.824600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls27{letter-spacing:-0.709333pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls26{letter-spacing:-0.298667pt;}
.ls2d{letter-spacing:-0.261333pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.224000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls2e{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.074667pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls1a{letter-spacing:-0.027984pt;}
.ls11{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.074667pt;}
.ls1{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.139920pt;}
.ls1d{letter-spacing:0.149333pt;}
.ls20{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.287451pt;}
.ls5{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.432000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.485333pt;}
.ls24{letter-spacing:0.522667pt;}
.ls13{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:1.082667pt;}
.ls2b{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.157333pt;}
.lsf{letter-spacing:1.200000pt;}
.lsb{letter-spacing:1.231296pt;}
.ls9{letter-spacing:1.728000pt;}
.ls23{letter-spacing:1.829333pt;}
.ls12{letter-spacing:2.016000pt;}
.ls7{letter-spacing:2.064000pt;}
.ls8{letter-spacing:2.112000pt;}
.ls2a{letter-spacing:2.650667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.152000pt;}
.ws3{word-spacing:-8.898912pt;}
.ws2{word-spacing:-7.667616pt;}
.ws4{word-spacing:-7.639632pt;}
.ws2e{word-spacing:-4.106667pt;}
.ws2d{word-spacing:-4.069333pt;}
.ws33{word-spacing:-3.920000pt;}
.ws34{word-spacing:-3.882667pt;}
.ws36{word-spacing:-3.658667pt;}
.wsf{word-spacing:-3.312000pt;}
.ws9{word-spacing:-3.264000pt;}
.ws2f{word-spacing:-3.061333pt;}
.ws31{word-spacing:-2.949333pt;}
.ws2a{word-spacing:-2.928000pt;}
.ws26{word-spacing:-2.880000pt;}
.ws32{word-spacing:-2.650667pt;}
.ws30{word-spacing:-2.053333pt;}
.ws35{word-spacing:-2.016000pt;}
.ws14{word-spacing:-1.968000pt;}
.ws29{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.056000pt;}
.ws17{word-spacing:-0.912000pt;}
.ws2c{word-spacing:-0.720000pt;}
.ws1e{word-spacing:-0.288000pt;}
.wsc{word-spacing:-0.139920pt;}
.ws5{word-spacing:0.000000pt;}
.ws24{word-spacing:0.864000pt;}
.ws25{word-spacing:1.200000pt;}
.ws15{word-spacing:1.248000pt;}
.wsa{word-spacing:1.344000pt;}
.ws12{word-spacing:1.536000pt;}
.ws16{word-spacing:1.680000pt;}
.ws23{word-spacing:1.824000pt;}
.ws21{word-spacing:1.872000pt;}
.ws18{word-spacing:2.256000pt;}
.ws1b{word-spacing:2.352000pt;}
.ws11{word-spacing:2.736000pt;}
.ws28{word-spacing:2.784000pt;}
.wse{word-spacing:3.264000pt;}
.wsd{word-spacing:3.456000pt;}
.ws27{word-spacing:3.600000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws1f{word-spacing:3.888000pt;}
.wsb{word-spacing:4.128000pt;}
.ws1d{word-spacing:4.272000pt;}
.ws19{word-spacing:4.512000pt;}
.ws1a{word-spacing:4.896000pt;}
.ws1c{word-spacing:5.328000pt;}
.ws10{word-spacing:5.424000pt;}
.ws22{word-spacing:6.000000pt;}
.ws8{word-spacing:6.336000pt;}
.ws20{word-spacing:6.432000pt;}
.ws7{word-spacing:6.528000pt;}
.ws6{word-spacing:6.576000pt;}
._5{margin-left:-20.229867pt;}
._7{margin-left:-12.871851pt;}
._b{margin-left:-8.235733pt;}
._d{margin-left:-6.771200pt;}
._3{margin-left:-5.318400pt;}
._6{margin-left:-3.902400pt;}
._2{margin-left:-2.117333pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.561600pt;}
._4{width:2.522048pt;}
._e{width:19.040000pt;}
._9{width:35.354667pt;}
._c{width:36.325333pt;}
._8{width:38.565333pt;}
._a{width:40.768000pt;}
.fs7{font-size:27.984000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:23.822533pt;}
.y5f{bottom:26.250533pt;}
.y83{bottom:75.590533pt;}
.y5a{bottom:163.275600pt;}
.y11{bottom:168.775600pt;}
.y59{bottom:178.040667pt;}
.yb{bottom:190.979467pt;}
.y58{bottom:192.805733pt;}
.ya{bottom:202.179600pt;}
.y57{bottom:207.570800pt;}
.y9{bottom:213.379600pt;}
.y56{bottom:222.335867pt;}
.y8{bottom:224.579600pt;}
.y55{bottom:237.100933pt;}
.y10{bottom:242.870667pt;}
.y54{bottom:251.866000pt;}
.yf{bottom:257.270667pt;}
.y53{bottom:266.631067pt;}
.ye{bottom:271.670667pt;}
.y52{bottom:281.396133pt;}
.yd{bottom:286.070667pt;}
.y51{bottom:296.161200pt;}
.yc{bottom:304.270667pt;}
.y50{bottom:310.926400pt;}
.y4f{bottom:325.691467pt;}
.y4e{bottom:344.256533pt;}
.y30{bottom:354.108267pt;}
.y4d{bottom:359.021600pt;}
.y2f{bottom:368.545067pt;}
.y4c{bottom:373.786667pt;}
.y2e{bottom:382.981733pt;}
.y4b{bottom:388.551733pt;}
.y2d{bottom:397.418400pt;}
.y4a{bottom:403.316800pt;}
.y2c{bottom:411.855067pt;}
.y49{bottom:418.081867pt;}
.y2b{bottom:426.291733pt;}
.y48{bottom:432.846933pt;}
.y2a{bottom:440.728400pt;}
.y47{bottom:447.612000pt;}
.y29{bottom:455.165067pt;}
.y46{bottom:462.377067pt;}
.y28{bottom:469.601867pt;}
.y45{bottom:477.142133pt;}
.y27{bottom:484.038533pt;}
.y44{bottom:491.907333pt;}
.y26{bottom:498.475200pt;}
.y43{bottom:506.672400pt;}
.y25{bottom:512.911867pt;}
.y42{bottom:521.437467pt;}
.y24{bottom:527.348533pt;}
.y41{bottom:536.202533pt;}
.y23{bottom:541.785200pt;}
.y40{bottom:550.967600pt;}
.y22{bottom:556.221867pt;}
.y3f{bottom:565.732667pt;}
.y21{bottom:570.658533pt;}
.y3e{bottom:580.497733pt;}
.y20{bottom:585.095200pt;}
.y3d{bottom:595.262800pt;}
.y1f{bottom:599.531867pt;}
.y3c{bottom:610.027867pt;}
.y1e{bottom:613.968533pt;}
.y3b{bottom:624.792933pt;}
.y1d{bottom:628.405333pt;}
.y3a{bottom:639.558000pt;}
.y1c{bottom:642.842000pt;}
.y39{bottom:654.323067pt;}
.y71{bottom:657.259867pt;}
.y1b{bottom:657.278667pt;}
.y38{bottom:669.088133pt;}
.y81{bottom:669.391600pt;}
.y70{bottom:669.834800pt;}
.y1a{bottom:671.715333pt;}
.y80{bottom:681.523467pt;}
.y37{bottom:683.853333pt;}
.y19{bottom:686.152000pt;}
.y6f{bottom:689.943067pt;}
.y36{bottom:698.618267pt;}
.y18{bottom:700.588667pt;}
.y7f{bottom:701.188533pt;}
.y6e{bottom:702.518000pt;}
.y7e{bottom:713.320400pt;}
.y35{bottom:713.383333pt;}
.y6d{bottom:715.093067pt;}
.y17{bottom:718.825333pt;}
.y7d{bottom:725.452267pt;}
.y34{bottom:728.148533pt;}
.y16{bottom:733.262000pt;}
.y6c{bottom:735.201333pt;}
.y7c{bottom:745.117333pt;}
.y33{bottom:746.713600pt;}
.y15{bottom:747.698667pt;}
.y6b{bottom:747.776267pt;}
.y7b{bottom:757.249200pt;}
.y6a{bottom:760.351200pt;}
.y32{bottom:761.478533pt;}
.y14{bottom:762.135467pt;}
.y7a{bottom:769.381067pt;}
.y69{bottom:772.926133pt;}
.y31{bottom:776.243733pt;}
.y13{bottom:776.572133pt;}
.y68{bottom:785.501200pt;}
.y79{bottom:789.046133pt;}
.y12{bottom:791.008800pt;}
.y67{bottom:798.076133pt;}
.y78{bottom:801.178000pt;}
.y77{bottom:813.309733pt;}
.y66{bottom:818.184267pt;}
.y7{bottom:830.559600pt;}
.y65{bottom:830.759333pt;}
.y76{bottom:832.974933pt;}
.y64{bottom:843.334267pt;}
.y75{bottom:845.106667pt;}
.y6{bottom:845.226267pt;}
.y63{bottom:855.909200pt;}
.y74{bottom:857.238533pt;}
.y5{bottom:859.892933pt;}
.y73{bottom:869.370400pt;}
.y4{bottom:874.559600pt;}
.y62{bottom:876.017467pt;}
.y61{bottom:888.592400pt;}
.y72{bottom:889.035467pt;}
.y3{bottom:896.785333pt;}
.y60{bottom:901.167333pt;}
.y2{bottom:922.385333pt;}
.y82{bottom:926.119733pt;}
.y1{bottom:980.232000pt;}
.y5c{bottom:980.719600pt;}
.y5e{bottom:1010.763867pt;}
.y5d{bottom:1020.363867pt;}
.hb{height:24.000000pt;}
.hc{height:24.192000pt;}
.h6{height:28.000000pt;}
.h5{height:32.000000pt;}
.h8{height:36.000000pt;}
.h9{height:36.972000pt;}
.h4{height:40.000000pt;}
.h7{height:48.000000pt;}
.ha{height:54.359375pt;}
.h3{height:64.000000pt;}
.h2{height:69.890625pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:18.125867pt;}
.x9{left:56.692933pt;}
.x8{left:76.199467pt;}
.x2{left:109.606267pt;}
.x4{left:114.939600pt;}
.x3{left:124.739600pt;}
.xc{left:137.509333pt;}
.xb{left:381.732267pt;}
.xa{left:400.598933pt;}
.x5{left:434.645733pt;}
.x6{left:449.779067pt;}
.x1{left:586.503733pt;}
.x7{left:753.621867pt;}
}




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