
    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_ffc5aa92eae06b29f7c99fdb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_477a181dd19ee17f8857c5f7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_e83b6ce93e7f2698902fddf8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws11{word-spacing:-55.944000px;}
.ws38{word-spacing:-38.659200px;}
.ws69{word-spacing:-38.651400px;}
.ws7e{word-spacing:-38.647200px;}
.ws57{word-spacing:-38.645400px;}
.ws9f{word-spacing:-38.448000px;}
.ws2d{word-spacing:-38.443200px;}
.ws26{word-spacing:-38.439000px;}
.ws3e{word-spacing:-38.437800px;}
.ws65{word-spacing:-38.437200px;}
.ws6f{word-spacing:-38.435400px;}
.ws1b{word-spacing:-38.359800px;}
.ws3{word-spacing:-38.358300px;}
.ws18{word-spacing:-38.310000px;}
.ws6b{word-spacing:-38.160600px;}
.ws5{word-spacing:-38.160000px;}
.ws62{word-spacing:-38.156400px;}
.ws34{word-spacing:-38.154000px;}
.ws7d{word-spacing:-38.152800px;}
.ws22{word-spacing:-38.150400px;}
.ws4e{word-spacing:-38.147400px;}
.wsc{word-spacing:-38.146500px;}
.ws64{word-spacing:-38.145600px;}
.ws2a{word-spacing:-38.142000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws72{word-spacing:-37.936800px;}
.ws30{word-spacing:-37.935000px;}
.ws56{word-spacing:-37.927800px;}
.ws82{word-spacing:-37.900200px;}
.ws8c{word-spacing:-37.717200px;}
.ws37{word-spacing:-37.715400px;}
.ws92{word-spacing:-37.712700px;}
.ws6{word-spacing:-37.711800px;}
.ws12{word-spacing:-37.686000px;}
.ws1c{word-spacing:-37.643400px;}
.ws8d{word-spacing:-37.639800px;}
.ws9c{word-spacing:-37.430100px;}
.ws49{word-spacing:-37.427400px;}
.ws81{word-spacing:-37.217400px;}
.ws25{word-spacing:-37.215000px;}
.ws4{word-spacing:-37.213200px;}
.ws43{word-spacing:-37.000800px;}
.ws9e{word-spacing:-36.700200px;}
.ws3f{word-spacing:-36.507300px;}
.ws96{word-spacing:-36.504000px;}
.ws39{word-spacing:-36.491400px;}
.ws3d{word-spacing:-35.781000px;}
.ws44{word-spacing:-35.267400px;}
.ws3a{word-spacing:-35.050500px;}
.ws53{word-spacing:-34.837200px;}
.ws70{word-spacing:-34.527000px;}
.ws76{word-spacing:-34.337400px;}
.ws4f{word-spacing:-34.315200px;}
.ws9d{word-spacing:-34.010700px;}
.ws16{word-spacing:-33.753000px;}
.ws83{word-spacing:-33.598800px;}
.ws98{word-spacing:-31.680000px;}
.ws63{word-spacing:-31.461000px;}
.ws7c{word-spacing:-31.449000px;}
.ws1f{word-spacing:-30.960000px;}
.ws94{word-spacing:-30.744000px;}
.ws89{word-spacing:-30.733200px;}
.ws6d{word-spacing:-30.513600px;}
.ws8f{word-spacing:-30.030000px;}
.wsb{word-spacing:-30.013200px;}
.ws60{word-spacing:-29.784600px;}
.ws66{word-spacing:-29.511000px;}
.ws67{word-spacing:-29.301000px;}
.ws68{word-spacing:-29.289000px;}
.ws90{word-spacing:-29.070000px;}
.ws51{word-spacing:-28.565400px;}
.ws7b{word-spacing:-27.864600px;}
.ws2b{word-spacing:-27.862200px;}
.ws52{word-spacing:-27.633600px;}
.ws6a{word-spacing:-27.142200px;}
.ws5f{word-spacing:-27.135000px;}
.ws7f{word-spacing:-27.127200px;}
.ws79{word-spacing:-26.421000px;}
.ws3c{word-spacing:-26.417400px;}
.ws29{word-spacing:-26.404200px;}
.ws27{word-spacing:-26.191800px;}
.ws24{word-spacing:-25.695000px;}
.ws84{word-spacing:-25.691400px;}
.ws40{word-spacing:-25.483200px;}
.ws5b{word-spacing:-25.465800px;}
.ws23{word-spacing:-25.189200px;}
.ws6e{word-spacing:-24.751800px;}
.ws42{word-spacing:-24.264000px;}
.ws8{word-spacing:-24.039000px;}
.ws77{word-spacing:-23.533200px;}
.ws80{word-spacing:-22.822200px;}
.ws2f{word-spacing:-22.817400px;}
.ws31{word-spacing:-22.813200px;}
.ws6c{word-spacing:-22.604400px;}
.ws48{word-spacing:-21.600000px;}
.ws59{word-spacing:-21.587400px;}
.ws61{word-spacing:-21.384000px;}
.ws47{word-spacing:-21.374100px;}
.wsa0{word-spacing:-20.880000px;}
.ws5c{word-spacing:-20.656800px;}
.ws20{word-spacing:-20.588400px;}
.ws2e{word-spacing:-20.154600px;}
.ws14{word-spacing:-20.150100px;}
.ws74{word-spacing:-20.142000px;}
.ws19{word-spacing:-19.944000px;}
.ws33{word-spacing:-19.924200px;}
.ws8b{word-spacing:-19.724400px;}
.ws99{word-spacing:-19.720800px;}
.ws13{word-spacing:-19.440000px;}
.ws2c{word-spacing:-19.211400px;}
.ws86{word-spacing:-19.205400px;}
.ws46{word-spacing:-18.694800px;}
.ws7a{word-spacing:-18.502200px;}
.ws21{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.057400px;}
.ws1e{word-spacing:-16.551000px;}
.ws32{word-spacing:-16.547400px;}
.ws85{word-spacing:-16.331400px;}
.ws15{word-spacing:-15.986400px;}
.ws41{word-spacing:-15.828600px;}
.ws58{word-spacing:-15.827400px;}
.ws28{word-spacing:-15.616800px;}
.ws78{word-spacing:-15.612300px;}
.ws9{word-spacing:-15.609600px;}
.ws75{word-spacing:-15.399000px;}
.ws1d{word-spacing:-15.113400px;}
.ws9b{word-spacing:-14.904000px;}
.ws5a{word-spacing:-14.891400px;}
.ws4b{word-spacing:-14.169600px;}
.ws55{word-spacing:-13.946400px;}
.wsa{word-spacing:-13.941000px;}
.ws88{word-spacing:-13.458000px;}
.ws4a{word-spacing:-12.960000px;}
.ws4c{word-spacing:-10.800600px;}
.ws91{word-spacing:-9.104400px;}
.wsa1{word-spacing:-6.984000px;}
.ws54{word-spacing:-6.973200px;}
.ws93{word-spacing:-6.760800px;}
.ws50{word-spacing:-4.104000px;}
.ws45{word-spacing:-3.868200px;}
.ws1a{word-spacing:-2.658000px;}
.ws10{word-spacing:-1.944000px;}
.ws73{word-spacing:0.012600px;}
.ws71{word-spacing:2.388000px;}
.ws97{word-spacing:2.880000px;}
.ws95{word-spacing:3.108600px;}
.ws4d{word-spacing:7.432200px;}
.ws8e{word-spacing:7.745700px;}
.ws7{word-spacing:8.658900px;}
.wse{word-spacing:8.861400px;}
.wsd{word-spacing:9.368100px;}
.ws3b{word-spacing:9.576000px;}
.ws5d{word-spacing:9.582600px;}
.ws17{word-spacing:12.112200px;}
.ws36{word-spacing:12.451800px;}
.ws5e{word-spacing:14.122800px;}
.ws9a{word-spacing:25.745700px;}
.ws8a{word-spacing:33.339600px;}
.ws87{word-spacing:60.715800px;}
.wsf{word-spacing:73.666800px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.305900px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._13{width:20.007000px;}
._16{width:21.194400px;}
._17{width:22.374900px;}
._d{width:23.400000px;}
._11{width:26.136000px;}
._22{width:27.301500px;}
._14{width:28.524600px;}
._1e{width:29.580600px;}
._18{width:30.672000px;}
._23{width:32.605200px;}
._4{width:33.648300px;}
._15{width:34.706100px;}
._3{width:36.403200px;}
._f{width:37.440000px;}
._12{width:39.243600px;}
._10{width:40.443000px;}
._5{width:41.544000px;}
._6{width:43.488000px;}
._29{width:48.168000px;}
._20{width:49.981500px;}
._7{width:52.077600px;}
._1b{width:53.836200px;}
._c{width:55.152000px;}
._1d{width:56.217900px;}
._26{width:57.591900px;}
._1f{width:58.656600px;}
._25{width:59.799600px;}
._19{width:61.135200px;}
._1c{width:64.915200px;}
._a{width:66.589200px;}
._e{width:69.205500px;}
._21{width:71.221500px;}
._28{width:73.440000px;}
._8{width:90.792000px;}
._1a{width:93.888000px;}
._2a{width:99.065700px;}
._24{width:106.531200px;}
._b{width:108.075600px;}
._27{width:118.132200px;}
._9{width:130.383900px;}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(68,68,68);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y28{bottom:121.036500px;}
.y6e{bottom:138.315000px;}
.y83{bottom:142.275000px;}
.y4e{bottom:152.715000px;}
.y6d{bottom:159.015000px;}
.y27{bottom:162.796500px;}
.y4d{bottom:173.415000px;}
.y26{bottom:183.496500px;}
.y82{bottom:184.036500px;}
.y4c{bottom:194.115000px;}
.y6c{bottom:200.596500px;}
.y25{bottom:204.196500px;}
.y81{bottom:204.736500px;}
.y4b{bottom:214.815000px;}
.y6b{bottom:221.295000px;}
.y24{bottom:224.896500px;}
.y80{bottom:225.436500px;}
.y4a{bottom:235.515000px;}
.y6a{bottom:241.996500px;}
.y7f{bottom:246.136500px;}
.y49{bottom:256.215000px;}
.y23{bottom:266.475000px;}
.y7e{bottom:266.836500px;}
.y48{bottom:276.915000px;}
.y69{bottom:283.575000px;}
.y22{bottom:287.175000px;}
.y7d{bottom:287.536500px;}
.y47{bottom:297.615000px;}
.y21{bottom:307.875000px;}
.y7c{bottom:308.236500px;}
.y46{bottom:318.315000px;}
.y68{bottom:325.336500px;}
.y20{bottom:328.575000px;}
.y7b{bottom:328.936500px;}
.y45{bottom:339.015000px;}
.y67{bottom:346.036500px;}
.y1f{bottom:349.275000px;}
.y7a{bottom:349.636500px;}
.y44{bottom:359.715000px;}
.y66{bottom:366.736500px;}
.y79{bottom:370.336500px;}
.y43{bottom:380.415000px;}
.y65{bottom:387.436500px;}
.y1e{bottom:391.036500px;}
.y42{bottom:401.115000px;}
.y1d{bottom:411.736500px;}
.y78{bottom:412.096500px;}
.y41{bottom:421.815000px;}
.y64{bottom:429.196500px;}
.y77{bottom:432.795000px;}
.y40{bottom:442.515000px;}
.y3f{bottom:463.215000px;}
.y63{bottom:470.775000px;}
.y1c{bottom:474.196500px;}
.y76{bottom:474.375000px;}
.y3e{bottom:483.915000px;}
.y62{bottom:491.475000px;}
.y75{bottom:495.075000px;}
.y1b{bottom:515.775000px;}
.y3d{bottom:516.136500px;}
.y61{bottom:534.496500px;}
.y1a{bottom:536.475000px;}
.y3c{bottom:536.836500px;}
.y19{bottom:557.175000px;}
.y3b{bottom:557.536500px;}
.y60{bottom:577.336500px;}
.y3a{bottom:578.236500px;}
.y9e{bottom:590.655000px;}
.y18{bottom:598.936500px;}
.y9d{bottom:611.355000px;}
.y17{bottom:619.636500px;}
.y5f{bottom:620.175000px;}
.y9c{bottom:632.055000px;}
.y16{bottom:640.336500px;}
.y5e{bottom:640.875000px;}
.y9b{bottom:655.636500px;}
.y15{bottom:661.036500px;}
.y39{bottom:661.396500px;}
.y5d{bottom:661.575000px;}
.y9a{bottom:676.336500px;}
.y14{bottom:681.736500px;}
.y38{bottom:682.096500px;}
.y5c{bottom:682.275000px;}
.y99{bottom:699.736500px;}
.y74{bottom:702.436500px;}
.y37{bottom:702.795000px;}
.y98{bottom:720.436500px;}
.y13{bottom:723.496500px;}
.y5b{bottom:724.036500px;}
.y97{bottom:741.136500px;}
.y12{bottom:744.195000px;}
.y5a{bottom:744.736500px;}
.y96{bottom:764.715000px;}
.y73{bottom:764.895000px;}
.y36{bottom:765.075000px;}
.y59{bottom:765.436500px;}
.y95{bottom:785.415000px;}
.y35{bottom:785.775000px;}
.y58{bottom:786.136500px;}
.y11{bottom:806.475000px;}
.y94{bottom:808.815000px;}
.y10{bottom:827.175000px;}
.y34{bottom:827.536500px;}
.y57{bottom:827.895000px;}
.y93{bottom:829.515000px;}
.yf{bottom:847.875000px;}
.y33{bottom:848.236500px;}
.y56{bottom:848.596500px;}
.y92{bottom:850.215000px;}
.ye{bottom:868.575000px;}
.y32{bottom:868.936500px;}
.y55{bottom:869.295000px;}
.y91{bottom:873.795000px;}
.y72{bottom:889.275000px;}
.y54{bottom:889.995000px;}
.y90{bottom:894.495000px;}
.yd{bottom:910.336500px;}
.y31{bottom:910.695000px;}
.y8f{bottom:917.895000px;}
.yc{bottom:931.036500px;}
.y30{bottom:931.395000px;}
.y8e{bottom:938.595000px;}
.yb{bottom:951.736500px;}
.y2f{bottom:952.095000px;}
.y8d{bottom:962.175000px;}
.ya{bottom:972.436500px;}
.y2e{bottom:972.795000px;}
.y53{bottom:972.975000px;}
.y8c{bottom:982.875000px;}
.y9{bottom:993.136500px;}
.y8b{bottom:1003.575000px;}
.y71{bottom:1014.195000px;}
.y2d{bottom:1014.375000px;}
.y52{bottom:1014.736500px;}
.y8a{bottom:1026.975000px;}
.y8{bottom:1034.895000px;}
.y2c{bottom:1035.075000px;}
.y51{bottom:1035.436500px;}
.y89{bottom:1047.675000px;}
.y7{bottom:1055.595000px;}
.y2b{bottom:1055.775000px;}
.y50{bottom:1056.136500px;}
.y88{bottom:1071.255000px;}
.y70{bottom:1076.475000px;}
.y4f{bottom:1076.836500px;}
.y87{bottom:1091.955000px;}
.y6f{bottom:1097.175000px;}
.y2a{bottom:1097.536500px;}
.y86{bottom:1112.655000px;}
.y29{bottom:1118.236500px;}
.y85{bottom:1136.055000px;}
.y6{bottom:1138.936500px;}
.y84{bottom:1156.755000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h6{height:58.573682px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xd{left:129.600000px;}
.xc{left:134.100000px;}
.x9{left:143.280000px;}
.x8{left:159.300000px;}
.x2{left:160.560000px;}
.xb{left:165.420000px;}
.xe{left:168.300000px;}
.xf{left:177.838500px;}
.xa{left:320.038500px;}
.x7{left:363.060000px;}
.x5{left:572.760000px;}
.x6{left:642.238500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws11{word-spacing:-49.728000pt;}
.ws38{word-spacing:-34.363733pt;}
.ws69{word-spacing:-34.356800pt;}
.ws7e{word-spacing:-34.353067pt;}
.ws57{word-spacing:-34.351467pt;}
.ws9f{word-spacing:-34.176000pt;}
.ws2d{word-spacing:-34.171733pt;}
.ws26{word-spacing:-34.168000pt;}
.ws3e{word-spacing:-34.166933pt;}
.ws65{word-spacing:-34.166400pt;}
.ws6f{word-spacing:-34.164800pt;}
.ws1b{word-spacing:-34.097600pt;}
.ws3{word-spacing:-34.096267pt;}
.ws18{word-spacing:-34.053333pt;}
.ws6b{word-spacing:-33.920533pt;}
.ws5{word-spacing:-33.920000pt;}
.ws62{word-spacing:-33.916800pt;}
.ws34{word-spacing:-33.914667pt;}
.ws7d{word-spacing:-33.913600pt;}
.ws22{word-spacing:-33.911467pt;}
.ws4e{word-spacing:-33.908800pt;}
.wsc{word-spacing:-33.908000pt;}
.ws64{word-spacing:-33.907200pt;}
.ws2a{word-spacing:-33.904000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws72{word-spacing:-33.721600pt;}
.ws30{word-spacing:-33.720000pt;}
.ws56{word-spacing:-33.713600pt;}
.ws82{word-spacing:-33.689067pt;}
.ws8c{word-spacing:-33.526400pt;}
.ws37{word-spacing:-33.524800pt;}
.ws92{word-spacing:-33.522400pt;}
.ws6{word-spacing:-33.521600pt;}
.ws12{word-spacing:-33.498667pt;}
.ws1c{word-spacing:-33.460800pt;}
.ws8d{word-spacing:-33.457600pt;}
.ws9c{word-spacing:-33.271200pt;}
.ws49{word-spacing:-33.268800pt;}
.ws81{word-spacing:-33.082133pt;}
.ws25{word-spacing:-33.080000pt;}
.ws4{word-spacing:-33.078400pt;}
.ws43{word-spacing:-32.889600pt;}
.ws9e{word-spacing:-32.622400pt;}
.ws3f{word-spacing:-32.450933pt;}
.ws96{word-spacing:-32.448000pt;}
.ws39{word-spacing:-32.436800pt;}
.ws3d{word-spacing:-31.805333pt;}
.ws44{word-spacing:-31.348800pt;}
.ws3a{word-spacing:-31.156000pt;}
.ws53{word-spacing:-30.966400pt;}
.ws70{word-spacing:-30.690667pt;}
.ws76{word-spacing:-30.522133pt;}
.ws4f{word-spacing:-30.502400pt;}
.ws9d{word-spacing:-30.231733pt;}
.ws16{word-spacing:-30.002667pt;}
.ws83{word-spacing:-29.865600pt;}
.ws98{word-spacing:-28.160000pt;}
.ws63{word-spacing:-27.965333pt;}
.ws7c{word-spacing:-27.954667pt;}
.ws1f{word-spacing:-27.520000pt;}
.ws94{word-spacing:-27.328000pt;}
.ws89{word-spacing:-27.318400pt;}
.ws6d{word-spacing:-27.123200pt;}
.ws8f{word-spacing:-26.693333pt;}
.wsb{word-spacing:-26.678400pt;}
.ws60{word-spacing:-26.475200pt;}
.ws66{word-spacing:-26.232000pt;}
.ws67{word-spacing:-26.045333pt;}
.ws68{word-spacing:-26.034667pt;}
.ws90{word-spacing:-25.840000pt;}
.ws51{word-spacing:-25.391467pt;}
.ws7b{word-spacing:-24.768533pt;}
.ws2b{word-spacing:-24.766400pt;}
.ws52{word-spacing:-24.563200pt;}
.ws6a{word-spacing:-24.126400pt;}
.ws5f{word-spacing:-24.120000pt;}
.ws7f{word-spacing:-24.113067pt;}
.ws79{word-spacing:-23.485333pt;}
.ws3c{word-spacing:-23.482133pt;}
.ws29{word-spacing:-23.470400pt;}
.ws27{word-spacing:-23.281600pt;}
.ws24{word-spacing:-22.840000pt;}
.ws84{word-spacing:-22.836800pt;}
.ws40{word-spacing:-22.651733pt;}
.ws5b{word-spacing:-22.636267pt;}
.ws23{word-spacing:-22.390400pt;}
.ws6e{word-spacing:-22.001600pt;}
.ws42{word-spacing:-21.568000pt;}
.ws8{word-spacing:-21.368000pt;}
.ws77{word-spacing:-20.918400pt;}
.ws80{word-spacing:-20.286400pt;}
.ws2f{word-spacing:-20.282133pt;}
.ws31{word-spacing:-20.278400pt;}
.ws6c{word-spacing:-20.092800pt;}
.ws48{word-spacing:-19.200000pt;}
.ws59{word-spacing:-19.188800pt;}
.ws61{word-spacing:-19.008000pt;}
.ws47{word-spacing:-18.999200pt;}
.wsa0{word-spacing:-18.560000pt;}
.ws5c{word-spacing:-18.361600pt;}
.ws20{word-spacing:-18.300800pt;}
.ws2e{word-spacing:-17.915200pt;}
.ws14{word-spacing:-17.911200pt;}
.ws74{word-spacing:-17.904000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws33{word-spacing:-17.710400pt;}
.ws8b{word-spacing:-17.532800pt;}
.ws99{word-spacing:-17.529600pt;}
.ws13{word-spacing:-17.280000pt;}
.ws2c{word-spacing:-17.076800pt;}
.ws86{word-spacing:-17.071467pt;}
.ws46{word-spacing:-16.617600pt;}
.ws7a{word-spacing:-16.446400pt;}
.ws21{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.162133pt;}
.ws1e{word-spacing:-14.712000pt;}
.ws32{word-spacing:-14.708800pt;}
.ws85{word-spacing:-14.516800pt;}
.ws15{word-spacing:-14.210133pt;}
.ws41{word-spacing:-14.069867pt;}
.ws58{word-spacing:-14.068800pt;}
.ws28{word-spacing:-13.881600pt;}
.ws78{word-spacing:-13.877600pt;}
.ws9{word-spacing:-13.875200pt;}
.ws75{word-spacing:-13.688000pt;}
.ws1d{word-spacing:-13.434133pt;}
.ws9b{word-spacing:-13.248000pt;}
.ws5a{word-spacing:-13.236800pt;}
.ws4b{word-spacing:-12.595200pt;}
.ws55{word-spacing:-12.396800pt;}
.wsa{word-spacing:-12.392000pt;}
.ws88{word-spacing:-11.962667pt;}
.ws4a{word-spacing:-11.520000pt;}
.ws4c{word-spacing:-9.600533pt;}
.ws91{word-spacing:-8.092800pt;}
.wsa1{word-spacing:-6.208000pt;}
.ws54{word-spacing:-6.198400pt;}
.ws93{word-spacing:-6.009600pt;}
.ws50{word-spacing:-3.648000pt;}
.ws45{word-spacing:-3.438400pt;}
.ws1a{word-spacing:-2.362667pt;}
.ws10{word-spacing:-1.728000pt;}
.ws73{word-spacing:0.011200pt;}
.ws71{word-spacing:2.122667pt;}
.ws97{word-spacing:2.560000pt;}
.ws95{word-spacing:2.763200pt;}
.ws4d{word-spacing:6.606400pt;}
.ws8e{word-spacing:6.885067pt;}
.ws7{word-spacing:7.696800pt;}
.wse{word-spacing:7.876800pt;}
.wsd{word-spacing:8.327200pt;}
.ws3b{word-spacing:8.512000pt;}
.ws5d{word-spacing:8.517867pt;}
.ws17{word-spacing:10.766400pt;}
.ws36{word-spacing:11.068267pt;}
.ws5e{word-spacing:12.553600pt;}
.ws9a{word-spacing:22.885067pt;}
.ws8a{word-spacing:29.635200pt;}
.ws87{word-spacing:53.969600pt;}
.wsf{word-spacing:65.481600pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.160800pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._13{width:17.784000pt;}
._16{width:18.839467pt;}
._17{width:19.888800pt;}
._d{width:20.800000pt;}
._11{width:23.232000pt;}
._22{width:24.268000pt;}
._14{width:25.355200pt;}
._1e{width:26.293867pt;}
._18{width:27.264000pt;}
._23{width:28.982400pt;}
._4{width:29.909600pt;}
._15{width:30.849867pt;}
._3{width:32.358400pt;}
._f{width:33.280000pt;}
._12{width:34.883200pt;}
._10{width:35.949333pt;}
._5{width:36.928000pt;}
._6{width:38.656000pt;}
._29{width:42.816000pt;}
._20{width:44.428000pt;}
._7{width:46.291200pt;}
._1b{width:47.854400pt;}
._c{width:49.024000pt;}
._1d{width:49.971467pt;}
._26{width:51.192800pt;}
._1f{width:52.139200pt;}
._25{width:53.155200pt;}
._19{width:54.342400pt;}
._1c{width:57.702400pt;}
._a{width:59.190400pt;}
._e{width:61.516000pt;}
._21{width:63.308000pt;}
._28{width:65.280000pt;}
._8{width:80.704000pt;}
._1a{width:83.456000pt;}
._2a{width:88.058400pt;}
._24{width:94.694400pt;}
._b{width:96.067200pt;}
._27{width:105.006400pt;}
._9{width:115.896800pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y28{bottom:107.588000pt;}
.y6e{bottom:122.946667pt;}
.y83{bottom:126.466667pt;}
.y4e{bottom:135.746667pt;}
.y6d{bottom:141.346667pt;}
.y27{bottom:144.708000pt;}
.y4d{bottom:154.146667pt;}
.y26{bottom:163.108000pt;}
.y82{bottom:163.588000pt;}
.y4c{bottom:172.546667pt;}
.y6c{bottom:178.308000pt;}
.y25{bottom:181.508000pt;}
.y81{bottom:181.988000pt;}
.y4b{bottom:190.946667pt;}
.y6b{bottom:196.706667pt;}
.y24{bottom:199.908000pt;}
.y80{bottom:200.388000pt;}
.y4a{bottom:209.346667pt;}
.y6a{bottom:215.108000pt;}
.y7f{bottom:218.788000pt;}
.y49{bottom:227.746667pt;}
.y23{bottom:236.866667pt;}
.y7e{bottom:237.188000pt;}
.y48{bottom:246.146667pt;}
.y69{bottom:252.066667pt;}
.y22{bottom:255.266667pt;}
.y7d{bottom:255.588000pt;}
.y47{bottom:264.546667pt;}
.y21{bottom:273.666667pt;}
.y7c{bottom:273.988000pt;}
.y46{bottom:282.946667pt;}
.y68{bottom:289.188000pt;}
.y20{bottom:292.066667pt;}
.y7b{bottom:292.388000pt;}
.y45{bottom:301.346667pt;}
.y67{bottom:307.588000pt;}
.y1f{bottom:310.466667pt;}
.y7a{bottom:310.788000pt;}
.y44{bottom:319.746667pt;}
.y66{bottom:325.988000pt;}
.y79{bottom:329.188000pt;}
.y43{bottom:338.146667pt;}
.y65{bottom:344.388000pt;}
.y1e{bottom:347.588000pt;}
.y42{bottom:356.546667pt;}
.y1d{bottom:365.988000pt;}
.y78{bottom:366.308000pt;}
.y41{bottom:374.946667pt;}
.y64{bottom:381.508000pt;}
.y77{bottom:384.706667pt;}
.y40{bottom:393.346667pt;}
.y3f{bottom:411.746667pt;}
.y63{bottom:418.466667pt;}
.y1c{bottom:421.508000pt;}
.y76{bottom:421.666667pt;}
.y3e{bottom:430.146667pt;}
.y62{bottom:436.866667pt;}
.y75{bottom:440.066667pt;}
.y1b{bottom:458.466667pt;}
.y3d{bottom:458.788000pt;}
.y61{bottom:475.108000pt;}
.y1a{bottom:476.866667pt;}
.y3c{bottom:477.188000pt;}
.y19{bottom:495.266667pt;}
.y3b{bottom:495.588000pt;}
.y60{bottom:513.188000pt;}
.y3a{bottom:513.988000pt;}
.y9e{bottom:525.026667pt;}
.y18{bottom:532.388000pt;}
.y9d{bottom:543.426667pt;}
.y17{bottom:550.788000pt;}
.y5f{bottom:551.266667pt;}
.y9c{bottom:561.826667pt;}
.y16{bottom:569.188000pt;}
.y5e{bottom:569.666667pt;}
.y9b{bottom:582.788000pt;}
.y15{bottom:587.588000pt;}
.y39{bottom:587.908000pt;}
.y5d{bottom:588.066667pt;}
.y9a{bottom:601.188000pt;}
.y14{bottom:605.988000pt;}
.y38{bottom:606.308000pt;}
.y5c{bottom:606.466667pt;}
.y99{bottom:621.988000pt;}
.y74{bottom:624.388000pt;}
.y37{bottom:624.706667pt;}
.y98{bottom:640.388000pt;}
.y13{bottom:643.108000pt;}
.y5b{bottom:643.588000pt;}
.y97{bottom:658.788000pt;}
.y12{bottom:661.506667pt;}
.y5a{bottom:661.988000pt;}
.y96{bottom:679.746667pt;}
.y73{bottom:679.906667pt;}
.y36{bottom:680.066667pt;}
.y59{bottom:680.388000pt;}
.y95{bottom:698.146667pt;}
.y35{bottom:698.466667pt;}
.y58{bottom:698.788000pt;}
.y11{bottom:716.866667pt;}
.y94{bottom:718.946667pt;}
.y10{bottom:735.266667pt;}
.y34{bottom:735.588000pt;}
.y57{bottom:735.906667pt;}
.y93{bottom:737.346667pt;}
.yf{bottom:753.666667pt;}
.y33{bottom:753.988000pt;}
.y56{bottom:754.308000pt;}
.y92{bottom:755.746667pt;}
.ye{bottom:772.066667pt;}
.y32{bottom:772.388000pt;}
.y55{bottom:772.706667pt;}
.y91{bottom:776.706667pt;}
.y72{bottom:790.466667pt;}
.y54{bottom:791.106667pt;}
.y90{bottom:795.106667pt;}
.yd{bottom:809.188000pt;}
.y31{bottom:809.506667pt;}
.y8f{bottom:815.906667pt;}
.yc{bottom:827.588000pt;}
.y30{bottom:827.906667pt;}
.y8e{bottom:834.306667pt;}
.yb{bottom:845.988000pt;}
.y2f{bottom:846.306667pt;}
.y8d{bottom:855.266667pt;}
.ya{bottom:864.388000pt;}
.y2e{bottom:864.706667pt;}
.y53{bottom:864.866667pt;}
.y8c{bottom:873.666667pt;}
.y9{bottom:882.788000pt;}
.y8b{bottom:892.066667pt;}
.y71{bottom:901.506667pt;}
.y2d{bottom:901.666667pt;}
.y52{bottom:901.988000pt;}
.y8a{bottom:912.866667pt;}
.y8{bottom:919.906667pt;}
.y2c{bottom:920.066667pt;}
.y51{bottom:920.388000pt;}
.y89{bottom:931.266667pt;}
.y7{bottom:938.306667pt;}
.y2b{bottom:938.466667pt;}
.y50{bottom:938.788000pt;}
.y88{bottom:952.226667pt;}
.y70{bottom:956.866667pt;}
.y4f{bottom:957.188000pt;}
.y87{bottom:970.626667pt;}
.y6f{bottom:975.266667pt;}
.y2a{bottom:975.588000pt;}
.y86{bottom:989.026667pt;}
.y29{bottom:993.988000pt;}
.y85{bottom:1009.826667pt;}
.y6{bottom:1012.388000pt;}
.y84{bottom:1028.226667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h6{height:52.065495pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xd{left:115.200000pt;}
.xc{left:119.200000pt;}
.x9{left:127.360000pt;}
.x8{left:141.600000pt;}
.x2{left:142.720000pt;}
.xb{left:147.040000pt;}
.xe{left:149.600000pt;}
.xf{left:158.078667pt;}
.xa{left:284.478667pt;}
.x7{left:322.720000pt;}
.x5{left:509.120000pt;}
.x6{left:570.878667pt;}
}




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