
    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_afd0421ce74524f6964d92a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_2cb194a8ae0ff00f9ef46de9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_76e3c4f82c5640b4420742fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_1e30de488e4b6101b312ffe9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fcb5ed0128282eb86528a385.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_8eaaa83257b3de841bd4bb5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_54aa22941f0e15f2d3cd504f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7fb2e4a84755c2b8e0628429.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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;}
.ls1{letter-spacing:0.285300px;}
.ls4{letter-spacing:18.000000px;}
.ls3{letter-spacing:164.886000px;}
.ls2{letter-spacing:493.920000px;}
.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:-63.071100px;}
.ws11{word-spacing:-55.944000px;}
.ws5{word-spacing:-38.652300px;}
.ws22{word-spacing:-38.645100px;}
.ws26{word-spacing:-38.636400px;}
.ws3b{word-spacing:-38.448000px;}
.ws18{word-spacing:-38.445000px;}
.ws38{word-spacing:-38.440800px;}
.wse{word-spacing:-38.435400px;}
.ws21{word-spacing:-38.425800px;}
.ws33{word-spacing:-38.353800px;}
.ws19{word-spacing:-38.160000px;}
.ws80{word-spacing:-38.153700px;}
.ws3{word-spacing:-38.152800px;}
.ws13{word-spacing:-38.145000px;}
.ws1e{word-spacing:-38.133300px;}
.ws2d{word-spacing:-38.129400px;}
.ws69{word-spacing:-38.128500px;}
.ws62{word-spacing:-38.118000px;}
.ws3f{word-spacing:-38.066700px;}
.ws4{word-spacing:-38.064300px;}
.ws39{word-spacing:-37.944000px;}
.ws37{word-spacing:-37.940400px;}
.ws31{word-spacing:-37.938600px;}
.ws85{word-spacing:-37.936800px;}
.ws71{word-spacing:-37.934400px;}
.ws35{word-spacing:-37.932300px;}
.ws1d{word-spacing:-37.931400px;}
.ws83{word-spacing:-37.930800px;}
.ws70{word-spacing:-37.930500px;}
.ws8d{word-spacing:-37.928100px;}
.ws24{word-spacing:-37.925400px;}
.ws84{word-spacing:-37.730400px;}
.ws47{word-spacing:-37.728000px;}
.ws51{word-spacing:-37.427400px;}
.ws4a{word-spacing:-37.224000px;}
.ws57{word-spacing:-36.856800px;}
.ws63{word-spacing:-36.504000px;}
.ws6f{word-spacing:-36.488100px;}
.ws68{word-spacing:-36.484500px;}
.ws67{word-spacing:-36.208800px;}
.wsd{word-spacing:-35.985000px;}
.ws3e{word-spacing:-35.976600px;}
.ws3d{word-spacing:-35.495100px;}
.ws15{word-spacing:-35.062200px;}
.ws59{word-spacing:-34.903200px;}
.ws2f{word-spacing:-34.834800px;}
.wsc{word-spacing:-34.554600px;}
.ws86{word-spacing:-34.344000px;}
.ws42{word-spacing:-34.335300px;}
.ws1b{word-spacing:-34.327200px;}
.ws17{word-spacing:-34.113600px;}
.ws2e{word-spacing:-33.834600px;}
.ws40{word-spacing:-33.629100px;}
.ws30{word-spacing:-33.622200px;}
.ws2{word-spacing:-33.547800px;}
.ws6d{word-spacing:-33.335100px;}
.ws55{word-spacing:-32.190000px;}
.ws16{word-spacing:-32.176500px;}
.ws50{word-spacing:-32.046000px;}
.ws81{word-spacing:-31.889100px;}
.ws52{word-spacing:-31.608000px;}
.ws77{word-spacing:-31.445100px;}
.ws3c{word-spacing:-30.744000px;}
.ws54{word-spacing:-30.024000px;}
.ws20{word-spacing:-30.007800px;}
.ws36{word-spacing:-29.526000px;}
.ws4c{word-spacing:-28.064700px;}
.ws58{word-spacing:-27.864000px;}
.ws2b{word-spacing:-27.619500px;}
.ws1a{word-spacing:-26.420400px;}
.ws6{word-spacing:-24.480000px;}
.ws7{word-spacing:-24.474600px;}
.ws12{word-spacing:-24.264000px;}
.ws7d{word-spacing:-23.747400px;}
.ws44{word-spacing:-23.684400px;}
.wsb{word-spacing:-23.317200px;}
.ws5e{word-spacing:-23.040000px;}
.ws66{word-spacing:-23.022900px;}
.ws34{word-spacing:-22.821300px;}
.ws6c{word-spacing:-22.104000px;}
.ws32{word-spacing:-22.095000px;}
.ws53{word-spacing:-21.591900px;}
.ws6a{word-spacing:-20.862900px;}
.ws4f{word-spacing:-20.670000px;}
.ws2a{word-spacing:-20.664000px;}
.wsa{word-spacing:-20.141400px;}
.ws4d{word-spacing:-19.943100px;}
.ws2c{word-spacing:-19.427100px;}
.ws5a{word-spacing:-19.230000px;}
.ws4b{word-spacing:-19.224000px;}
.ws10{word-spacing:-19.222200px;}
.wsf{word-spacing:-17.992800px;}
.ws6b{word-spacing:-17.768700px;}
.ws78{word-spacing:-17.489100px;}
.ws7f{word-spacing:-15.252300px;}
.ws3a{word-spacing:-14.902200px;}
.ws23{word-spacing:-14.167800px;}
.ws27{word-spacing:-13.468200px;}
.ws1f{word-spacing:-11.520000px;}
.ws60{word-spacing:-11.445300px;}
.ws61{word-spacing:-11.290500px;}
.ws29{word-spacing:-7.191000px;}
.ws25{word-spacing:-4.822200px;}
.ws9{word-spacing:-2.668200px;}
.ws4e{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.431900px;}
.ws7e{word-spacing:0.000000px;}
.ws45{word-spacing:0.936000px;}
.ws1c{word-spacing:1.663800px;}
.ws5f{word-spacing:2.953800px;}
.ws28{word-spacing:3.097800px;}
.ws72{word-spacing:4.328100px;}
.ws88{word-spacing:4.655400px;}
.ws56{word-spacing:10.164300px;}
.ws89{word-spacing:10.881000px;}
.ws8{word-spacing:13.903800px;}
.ws87{word-spacing:14.415300px;}
.ws49{word-spacing:14.488800px;}
.ws14{word-spacing:15.120000px;}
.ws65{word-spacing:16.069500px;}
.ws64{word-spacing:17.358900px;}
.ws41{word-spacing:18.226500px;}
.ws5d{word-spacing:23.547900px;}
.ws75{word-spacing:24.915600px;}
.ws74{word-spacing:25.448100px;}
.ws5c{word-spacing:32.983200px;}
.ws48{word-spacing:33.336900px;}
.ws5b{word-spacing:34.770000px;}
.ws6e{word-spacing:40.411500px;}
.ws8a{word-spacing:48.600000px;}
.ws7a{word-spacing:51.349500px;}
.ws79{word-spacing:52.080000px;}
.ws82{word-spacing:67.914000px;}
.ws8c{word-spacing:93.841800px;}
.ws8b{word-spacing:94.530000px;}
.ws7b{word-spacing:108.762000px;}
.ws7c{word-spacing:108.930000px;}
.ws73{word-spacing:126.229200px;}
.ws46{word-spacing:330.080400px;}
.ws76{word-spacing:437.987100px;}
.ws1{word-spacing:1871.357400px;}
._3{margin-left:-1.333500px;}
._0{width:1.148400px;}
._1{width:19.065600px;}
._17{width:20.266200px;}
._18{width:21.535500px;}
._9{width:22.824600px;}
._16{width:24.595500px;}
._1c{width:25.704000px;}
._10{width:27.033000px;}
._1b{width:28.979700px;}
._15{width:30.186600px;}
._d{width:31.473000px;}
._2{width:32.677200px;}
._7{width:33.835200px;}
._8{width:34.908600px;}
._6{width:36.836400px;}
._b{width:37.991700px;}
._a{width:39.013800px;}
._22{width:40.325700px;}
._24{width:41.748300px;}
._11{width:43.117800px;}
._f{width:45.510000px;}
._14{width:50.645100px;}
._12{width:52.422000px;}
._5{width:54.444000px;}
._1a{width:55.748700px;}
._e{width:58.932900px;}
._13{width:60.484200px;}
._4{width:70.867500px;}
._c{width:72.942000px;}
._19{width:75.290100px;}
._1e{width:80.498100px;}
._21{width:82.095000px;}
._1d{width:90.602700px;}
._1f{width:97.468500px;}
._25{width:105.774000px;}
._23{width:108.911700px;}
._26{width:151.552200px;}
._20{width:183.319500px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y8b{bottom:12.900000px;}
.y59{bottom:13.005000px;}
.y9f{bottom:33.570000px;}
.y58{bottom:33.705000px;}
.y8a{bottom:33.780000px;}
.y9e{bottom:54.271500px;}
.y57{bottom:54.405000px;}
.y89{bottom:54.480000px;}
.y3{bottom:72.825000px;}
.y9d{bottom:74.970000px;}
.y88{bottom:75.180000px;}
.y56{bottom:75.286500px;}
.y9c{bottom:95.670000px;}
.y87{bottom:95.880000px;}
.y55{bottom:95.986500px;}
.y49{bottom:108.750000px;}
.y5a{bottom:113.175000px;}
.y9b{bottom:116.550000px;}
.y86{bottom:116.580000px;}
.y54{bottom:116.686500px;}
.y2f{bottom:126.255000px;}
.y9a{bottom:137.250000px;}
.y85{bottom:137.280000px;}
.y53{bottom:137.386500px;}
.y2e{bottom:146.955000px;}
.y99{bottom:157.950000px;}
.y84{bottom:157.980000px;}
.y52{bottom:158.086500px;}
.y2d{bottom:167.655000px;}
.y98{bottom:178.650000px;}
.y83{bottom:178.680000px;}
.y51{bottom:178.786500px;}
.y2c{bottom:188.355000px;}
.y97{bottom:199.350000px;}
.y82{bottom:199.380000px;}
.y50{bottom:199.486500px;}
.y2b{bottom:209.055000px;}
.y96{bottom:220.050000px;}
.y81{bottom:220.080000px;}
.y4f{bottom:220.365000px;}
.y2a{bottom:229.755000px;}
.y95{bottom:240.750000px;}
.y80{bottom:240.961500px;}
.y4e{bottom:241.065000px;}
.y94{bottom:261.450000px;}
.y7f{bottom:261.661500px;}
.y4d{bottom:261.765000px;}
.y29{bottom:265.396500px;}
.y93{bottom:282.150000px;}
.y4c{bottom:282.286500px;}
.y7e{bottom:282.361500px;}
.y28{bottom:286.096500px;}
.y92{bottom:302.850000px;}
.y4b{bottom:302.986500px;}
.y7d{bottom:303.061500px;}
.y27{bottom:306.795000px;}
.y91{bottom:323.550000px;}
.y4a{bottom:323.686500px;}
.y7c{bottom:323.761500px;}
.y26{bottom:327.496500px;}
.y90{bottom:344.250000px;}
.y7b{bottom:344.461500px;}
.y25{bottom:348.196500px;}
.y8f{bottom:365.130000px;}
.y7a{bottom:365.161500px;}
.y24{bottom:368.896500px;}
.y8e{bottom:385.830000px;}
.y79{bottom:385.861500px;}
.y23{bottom:389.596500px;}
.y8d{bottom:406.350000px;}
.y78{bottom:406.740000px;}
.y22{bottom:410.295000px;}
.y77{bottom:427.440000px;}
.y21{bottom:430.996500px;}
.y76{bottom:448.140000px;}
.y20{bottom:451.696500px;}
.y75{bottom:468.840000px;}
.y1f{bottom:472.396500px;}
.y74{bottom:489.540000px;}
.y48{bottom:497.955000px;}
.y1e{bottom:508.036500px;}
.y73{bottom:510.240000px;}
.y47{bottom:518.655000px;}
.y1d{bottom:528.736500px;}
.y72{bottom:530.940000px;}
.y46{bottom:539.355000px;}
.y1c{bottom:549.436500px;}
.y71{bottom:551.640000px;}
.y1b{bottom:570.136500px;}
.y70{bottom:572.340000px;}
.y45{bottom:574.996500px;}
.y1a{bottom:590.836500px;}
.y6f{bottom:593.040000px;}
.y44{bottom:595.695000px;}
.y6e{bottom:613.921500px;}
.y43{bottom:616.396500px;}
.y19{bottom:626.475000px;}
.y6d{bottom:634.620000px;}
.y18{bottom:647.175000px;}
.y42{bottom:652.215000px;}
.y6c{bottom:655.321500px;}
.y17{bottom:667.875000px;}
.y41{bottom:672.915000px;}
.y6b{bottom:676.020000px;}
.y16{bottom:688.575000px;}
.y6a{bottom:696.720000px;}
.y40{bottom:708.555000px;}
.y15{bottom:709.275000px;}
.y8c{bottom:714.225000px;}
.y69{bottom:717.421500px;}
.y14{bottom:729.975000px;}
.y68{bottom:738.120000px;}
.y3f{bottom:744.195000px;}
.y13{bottom:750.675000px;}
.y67{bottom:758.821500px;}
.y12{bottom:771.375000px;}
.y66{bottom:779.520000px;}
.y3e{bottom:780.015000px;}
.y65{bottom:800.220000px;}
.y11{bottom:807.195000px;}
.y3d{bottom:815.655000px;}
.y64{bottom:821.100000px;}
.y10{bottom:827.895000px;}
.y3c{bottom:836.355000px;}
.y63{bottom:841.800000px;}
.yf{bottom:848.596500px;}
.y62{bottom:862.500000px;}
.ye{bottom:869.295000px;}
.y3b{bottom:871.996500px;}
.y61{bottom:883.200000px;}
.yd{bottom:889.995000px;}
.y3a{bottom:892.695000px;}
.y60{bottom:903.900000px;}
.yc{bottom:910.695000px;}
.y39{bottom:913.395000px;}
.y5f{bottom:924.600000px;}
.yb{bottom:931.395000px;}
.y5e{bottom:945.300000px;}
.y38{bottom:949.215000px;}
.ya{bottom:952.095000px;}
.y5d{bottom:966.000000px;}
.y37{bottom:969.915000px;}
.y9{bottom:972.795000px;}
.y5c{bottom:986.700000px;}
.y36{bottom:990.615000px;}
.y8{bottom:993.495000px;}
.y5b{bottom:1007.400000px;}
.y35{bottom:1011.315000px;}
.y34{bottom:1032.015000px;}
.y7{bottom:1052.355000px;}
.y33{bottom:1052.715000px;}
.y32{bottom:1073.415000px;}
.y6{bottom:1091.055000px;}
.y31{bottom:1109.055000px;}
.y5{bottom:1111.575000px;}
.y30{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h7{height:48.761719px;}
.h6{height:48.796875px;}
.h3{height:50.308594px;}
.h8{height:63.457031px;}
.h2{height:97.101563px;}
.h9{height:349.575000px;}
.hb{height:432.225000px;}
.ha{height:1033.275000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:627.375000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:285.300000px;}
.x3{left:475.350000px;}
.x5{left:560.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.253600pt;}
.ls4{letter-spacing:16.000000pt;}
.ls3{letter-spacing:146.565333pt;}
.ls2{letter-spacing:439.040000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws11{word-spacing:-49.728000pt;}
.ws5{word-spacing:-34.357600pt;}
.ws22{word-spacing:-34.351200pt;}
.ws26{word-spacing:-34.343467pt;}
.ws3b{word-spacing:-34.176000pt;}
.ws18{word-spacing:-34.173333pt;}
.ws38{word-spacing:-34.169600pt;}
.wse{word-spacing:-34.164800pt;}
.ws21{word-spacing:-34.156267pt;}
.ws33{word-spacing:-34.092267pt;}
.ws19{word-spacing:-33.920000pt;}
.ws80{word-spacing:-33.914400pt;}
.ws3{word-spacing:-33.913600pt;}
.ws13{word-spacing:-33.906667pt;}
.ws1e{word-spacing:-33.896267pt;}
.ws2d{word-spacing:-33.892800pt;}
.ws69{word-spacing:-33.892000pt;}
.ws62{word-spacing:-33.882667pt;}
.ws3f{word-spacing:-33.837067pt;}
.ws4{word-spacing:-33.834933pt;}
.ws39{word-spacing:-33.728000pt;}
.ws37{word-spacing:-33.724800pt;}
.ws31{word-spacing:-33.723200pt;}
.ws85{word-spacing:-33.721600pt;}
.ws71{word-spacing:-33.719467pt;}
.ws35{word-spacing:-33.717600pt;}
.ws1d{word-spacing:-33.716800pt;}
.ws83{word-spacing:-33.716267pt;}
.ws70{word-spacing:-33.716000pt;}
.ws8d{word-spacing:-33.713867pt;}
.ws24{word-spacing:-33.711467pt;}
.ws84{word-spacing:-33.538133pt;}
.ws47{word-spacing:-33.536000pt;}
.ws51{word-spacing:-33.268800pt;}
.ws4a{word-spacing:-33.088000pt;}
.ws57{word-spacing:-32.761600pt;}
.ws63{word-spacing:-32.448000pt;}
.ws6f{word-spacing:-32.433867pt;}
.ws68{word-spacing:-32.430667pt;}
.ws67{word-spacing:-32.185600pt;}
.wsd{word-spacing:-31.986667pt;}
.ws3e{word-spacing:-31.979200pt;}
.ws3d{word-spacing:-31.551200pt;}
.ws15{word-spacing:-31.166400pt;}
.ws59{word-spacing:-31.025067pt;}
.ws2f{word-spacing:-30.964267pt;}
.wsc{word-spacing:-30.715200pt;}
.ws86{word-spacing:-30.528000pt;}
.ws42{word-spacing:-30.520267pt;}
.ws1b{word-spacing:-30.513067pt;}
.ws17{word-spacing:-30.323200pt;}
.ws2e{word-spacing:-30.075200pt;}
.ws40{word-spacing:-29.892533pt;}
.ws30{word-spacing:-29.886400pt;}
.ws2{word-spacing:-29.820267pt;}
.ws6d{word-spacing:-29.631200pt;}
.ws55{word-spacing:-28.613333pt;}
.ws16{word-spacing:-28.601333pt;}
.ws50{word-spacing:-28.485333pt;}
.ws81{word-spacing:-28.345867pt;}
.ws52{word-spacing:-28.096000pt;}
.ws77{word-spacing:-27.951200pt;}
.ws3c{word-spacing:-27.328000pt;}
.ws54{word-spacing:-26.688000pt;}
.ws20{word-spacing:-26.673600pt;}
.ws36{word-spacing:-26.245333pt;}
.ws4c{word-spacing:-24.946400pt;}
.ws58{word-spacing:-24.768000pt;}
.ws2b{word-spacing:-24.550667pt;}
.ws1a{word-spacing:-23.484800pt;}
.ws6{word-spacing:-21.760000pt;}
.ws7{word-spacing:-21.755200pt;}
.ws12{word-spacing:-21.568000pt;}
.ws7d{word-spacing:-21.108800pt;}
.ws44{word-spacing:-21.052800pt;}
.wsb{word-spacing:-20.726400pt;}
.ws5e{word-spacing:-20.480000pt;}
.ws66{word-spacing:-20.464800pt;}
.ws34{word-spacing:-20.285600pt;}
.ws6c{word-spacing:-19.648000pt;}
.ws32{word-spacing:-19.640000pt;}
.ws53{word-spacing:-19.192800pt;}
.ws6a{word-spacing:-18.544800pt;}
.ws4f{word-spacing:-18.373333pt;}
.ws2a{word-spacing:-18.368000pt;}
.wsa{word-spacing:-17.903467pt;}
.ws4d{word-spacing:-17.727200pt;}
.ws2c{word-spacing:-17.268533pt;}
.ws5a{word-spacing:-17.093333pt;}
.ws4b{word-spacing:-17.088000pt;}
.ws10{word-spacing:-17.086400pt;}
.wsf{word-spacing:-15.993600pt;}
.ws6b{word-spacing:-15.794400pt;}
.ws78{word-spacing:-15.545867pt;}
.ws7f{word-spacing:-13.557600pt;}
.ws3a{word-spacing:-13.246400pt;}
.ws23{word-spacing:-12.593600pt;}
.ws27{word-spacing:-11.971733pt;}
.ws1f{word-spacing:-10.240000pt;}
.ws60{word-spacing:-10.173600pt;}
.ws61{word-spacing:-10.036000pt;}
.ws29{word-spacing:-6.392000pt;}
.ws25{word-spacing:-4.286400pt;}
.ws9{word-spacing:-2.371733pt;}
.ws4e{word-spacing:-1.408000pt;}
.ws43{word-spacing:-1.272800pt;}
.ws7e{word-spacing:0.000000pt;}
.ws45{word-spacing:0.832000pt;}
.ws1c{word-spacing:1.478933pt;}
.ws5f{word-spacing:2.625600pt;}
.ws28{word-spacing:2.753600pt;}
.ws72{word-spacing:3.847200pt;}
.ws88{word-spacing:4.138133pt;}
.ws56{word-spacing:9.034933pt;}
.ws89{word-spacing:9.672000pt;}
.ws8{word-spacing:12.358933pt;}
.ws87{word-spacing:12.813600pt;}
.ws49{word-spacing:12.878933pt;}
.ws14{word-spacing:13.440000pt;}
.ws65{word-spacing:14.284000pt;}
.ws64{word-spacing:15.430133pt;}
.ws41{word-spacing:16.201333pt;}
.ws5d{word-spacing:20.931467pt;}
.ws75{word-spacing:22.147200pt;}
.ws74{word-spacing:22.620533pt;}
.ws5c{word-spacing:29.318400pt;}
.ws48{word-spacing:29.632800pt;}
.ws5b{word-spacing:30.906667pt;}
.ws6e{word-spacing:35.921333pt;}
.ws8a{word-spacing:43.200000pt;}
.ws7a{word-spacing:45.644000pt;}
.ws79{word-spacing:46.293333pt;}
.ws82{word-spacing:60.368000pt;}
.ws8c{word-spacing:83.414933pt;}
.ws8b{word-spacing:84.026667pt;}
.ws7b{word-spacing:96.677333pt;}
.ws7c{word-spacing:96.826667pt;}
.ws73{word-spacing:112.203733pt;}
.ws46{word-spacing:293.404800pt;}
.ws76{word-spacing:389.321867pt;}
.ws1{word-spacing:1663.428800pt;}
._3{margin-left:-1.185333pt;}
._0{width:1.020800pt;}
._1{width:16.947200pt;}
._17{width:18.014400pt;}
._18{width:19.142667pt;}
._9{width:20.288533pt;}
._16{width:21.862667pt;}
._1c{width:22.848000pt;}
._10{width:24.029333pt;}
._1b{width:25.759733pt;}
._15{width:26.832533pt;}
._d{width:27.976000pt;}
._2{width:29.046400pt;}
._7{width:30.075733pt;}
._8{width:31.029867pt;}
._6{width:32.743467pt;}
._b{width:33.770400pt;}
._a{width:34.678933pt;}
._22{width:35.845067pt;}
._24{width:37.109600pt;}
._11{width:38.326933pt;}
._f{width:40.453333pt;}
._14{width:45.017867pt;}
._12{width:46.597333pt;}
._5{width:48.394667pt;}
._1a{width:49.554400pt;}
._e{width:52.384800pt;}
._13{width:53.763733pt;}
._4{width:62.993333pt;}
._c{width:64.837333pt;}
._19{width:66.924533pt;}
._1e{width:71.553867pt;}
._21{width:72.973333pt;}
._1d{width:80.535733pt;}
._1f{width:86.638667pt;}
._25{width:94.021333pt;}
._23{width:96.810400pt;}
._26{width:134.713067pt;}
._20{width:162.950667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y8b{bottom:11.466667pt;}
.y59{bottom:11.560000pt;}
.y9f{bottom:29.840000pt;}
.y58{bottom:29.960000pt;}
.y8a{bottom:30.026667pt;}
.y9e{bottom:48.241333pt;}
.y57{bottom:48.360000pt;}
.y89{bottom:48.426667pt;}
.y3{bottom:64.733333pt;}
.y9d{bottom:66.640000pt;}
.y88{bottom:66.826667pt;}
.y56{bottom:66.921333pt;}
.y9c{bottom:85.040000pt;}
.y87{bottom:85.226667pt;}
.y55{bottom:85.321333pt;}
.y49{bottom:96.666667pt;}
.y5a{bottom:100.600000pt;}
.y9b{bottom:103.600000pt;}
.y86{bottom:103.626667pt;}
.y54{bottom:103.721333pt;}
.y2f{bottom:112.226667pt;}
.y9a{bottom:122.000000pt;}
.y85{bottom:122.026667pt;}
.y53{bottom:122.121333pt;}
.y2e{bottom:130.626667pt;}
.y99{bottom:140.400000pt;}
.y84{bottom:140.426667pt;}
.y52{bottom:140.521333pt;}
.y2d{bottom:149.026667pt;}
.y98{bottom:158.800000pt;}
.y83{bottom:158.826667pt;}
.y51{bottom:158.921333pt;}
.y2c{bottom:167.426667pt;}
.y97{bottom:177.200000pt;}
.y82{bottom:177.226667pt;}
.y50{bottom:177.321333pt;}
.y2b{bottom:185.826667pt;}
.y96{bottom:195.600000pt;}
.y81{bottom:195.626667pt;}
.y4f{bottom:195.880000pt;}
.y2a{bottom:204.226667pt;}
.y95{bottom:214.000000pt;}
.y80{bottom:214.188000pt;}
.y4e{bottom:214.280000pt;}
.y94{bottom:232.400000pt;}
.y7f{bottom:232.588000pt;}
.y4d{bottom:232.680000pt;}
.y29{bottom:235.908000pt;}
.y93{bottom:250.800000pt;}
.y4c{bottom:250.921333pt;}
.y7e{bottom:250.988000pt;}
.y28{bottom:254.308000pt;}
.y92{bottom:269.200000pt;}
.y4b{bottom:269.321333pt;}
.y7d{bottom:269.388000pt;}
.y27{bottom:272.706667pt;}
.y91{bottom:287.600000pt;}
.y4a{bottom:287.721333pt;}
.y7c{bottom:287.788000pt;}
.y26{bottom:291.108000pt;}
.y90{bottom:306.000000pt;}
.y7b{bottom:306.188000pt;}
.y25{bottom:309.508000pt;}
.y8f{bottom:324.560000pt;}
.y7a{bottom:324.588000pt;}
.y24{bottom:327.908000pt;}
.y8e{bottom:342.960000pt;}
.y79{bottom:342.988000pt;}
.y23{bottom:346.308000pt;}
.y8d{bottom:361.200000pt;}
.y78{bottom:361.546667pt;}
.y22{bottom:364.706667pt;}
.y77{bottom:379.946667pt;}
.y21{bottom:383.108000pt;}
.y76{bottom:398.346667pt;}
.y20{bottom:401.508000pt;}
.y75{bottom:416.746667pt;}
.y1f{bottom:419.908000pt;}
.y74{bottom:435.146667pt;}
.y48{bottom:442.626667pt;}
.y1e{bottom:451.588000pt;}
.y73{bottom:453.546667pt;}
.y47{bottom:461.026667pt;}
.y1d{bottom:469.988000pt;}
.y72{bottom:471.946667pt;}
.y46{bottom:479.426667pt;}
.y1c{bottom:488.388000pt;}
.y71{bottom:490.346667pt;}
.y1b{bottom:506.788000pt;}
.y70{bottom:508.746667pt;}
.y45{bottom:511.108000pt;}
.y1a{bottom:525.188000pt;}
.y6f{bottom:527.146667pt;}
.y44{bottom:529.506667pt;}
.y6e{bottom:545.708000pt;}
.y43{bottom:547.908000pt;}
.y19{bottom:556.866667pt;}
.y6d{bottom:564.106667pt;}
.y18{bottom:575.266667pt;}
.y42{bottom:579.746667pt;}
.y6c{bottom:582.508000pt;}
.y17{bottom:593.666667pt;}
.y41{bottom:598.146667pt;}
.y6b{bottom:600.906667pt;}
.y16{bottom:612.066667pt;}
.y6a{bottom:619.306667pt;}
.y40{bottom:629.826667pt;}
.y15{bottom:630.466667pt;}
.y8c{bottom:634.866667pt;}
.y69{bottom:637.708000pt;}
.y14{bottom:648.866667pt;}
.y68{bottom:656.106667pt;}
.y3f{bottom:661.506667pt;}
.y13{bottom:667.266667pt;}
.y67{bottom:674.508000pt;}
.y12{bottom:685.666667pt;}
.y66{bottom:692.906667pt;}
.y3e{bottom:693.346667pt;}
.y65{bottom:711.306667pt;}
.y11{bottom:717.506667pt;}
.y3d{bottom:725.026667pt;}
.y64{bottom:729.866667pt;}
.y10{bottom:735.906667pt;}
.y3c{bottom:743.426667pt;}
.y63{bottom:748.266667pt;}
.yf{bottom:754.308000pt;}
.y62{bottom:766.666667pt;}
.ye{bottom:772.706667pt;}
.y3b{bottom:775.108000pt;}
.y61{bottom:785.066667pt;}
.yd{bottom:791.106667pt;}
.y3a{bottom:793.506667pt;}
.y60{bottom:803.466667pt;}
.yc{bottom:809.506667pt;}
.y39{bottom:811.906667pt;}
.y5f{bottom:821.866667pt;}
.yb{bottom:827.906667pt;}
.y5e{bottom:840.266667pt;}
.y38{bottom:843.746667pt;}
.ya{bottom:846.306667pt;}
.y5d{bottom:858.666667pt;}
.y37{bottom:862.146667pt;}
.y9{bottom:864.706667pt;}
.y5c{bottom:877.066667pt;}
.y36{bottom:880.546667pt;}
.y8{bottom:883.106667pt;}
.y5b{bottom:895.466667pt;}
.y35{bottom:898.946667pt;}
.y34{bottom:917.346667pt;}
.y7{bottom:935.426667pt;}
.y33{bottom:935.746667pt;}
.y32{bottom:954.146667pt;}
.y6{bottom:969.826667pt;}
.y31{bottom:985.826667pt;}
.y5{bottom:988.066667pt;}
.y30{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h7{height:43.343750pt;}
.h6{height:43.375000pt;}
.h3{height:44.718750pt;}
.h8{height:56.406250pt;}
.h2{height:86.312500pt;}
.h9{height:310.733333pt;}
.hb{height:384.200000pt;}
.ha{height:918.466667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:557.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:253.600000pt;}
.x3{left:422.533333pt;}
.x5{left:497.920000pt;}
}




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