
    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_da7510a9b54c763653aac306.woff2')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_dce51b7033d17763d3b239ac.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_54accefe9c1bfaebec148a4a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_89647e1cbe7274536fb5787b.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ea91b01f515a36641bcec79.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v1{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:43.560000px;}
.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;}
}
.ws48{word-spacing:-55.944000px;}
.ws30{word-spacing:-40.536000px;}
.ws84{word-spacing:-38.865600px;}
.wsa{word-spacing:-38.789400px;}
.ws49{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws77{word-spacing:-38.588400px;}
.ws89{word-spacing:-38.447700px;}
.ws9{word-spacing:-38.438700px;}
.ws5c{word-spacing:-38.437200px;}
.ws3{word-spacing:-38.374200px;}
.ws64{word-spacing:-38.163300px;}
.ws8c{word-spacing:-38.154600px;}
.ws1b{word-spacing:-38.151900px;}
.ws0{word-spacing:-37.944000px;}
.wsf{word-spacing:-37.942200px;}
.wsd{word-spacing:-37.941300px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws86{word-spacing:-37.857600px;}
.ws80{word-spacing:-37.722300px;}
.ws7c{word-spacing:-37.432800px;}
.ws7e{word-spacing:-36.708300px;}
.ws7a{word-spacing:-35.276400px;}
.ws83{word-spacing:-35.202600px;}
.ws8{word-spacing:-33.547800px;}
.ws76{word-spacing:-32.904000px;}
.ws85{word-spacing:-28.804200px;}
.ws2f{word-spacing:-26.348400px;}
.ws78{word-spacing:-25.920000px;}
.ws88{word-spacing:-23.754600px;}
.ws26{word-spacing:-23.463000px;}
.ws65{word-spacing:-23.252400px;}
.ws10{word-spacing:-23.250000px;}
.ws47{word-spacing:-23.248800px;}
.ws59{word-spacing:-23.245200px;}
.ws74{word-spacing:-23.241600px;}
.ws81{word-spacing:-23.040000px;}
.ws45{word-spacing:-23.036400px;}
.ws6d{word-spacing:-23.032800px;}
.ws69{word-spacing:-23.029200px;}
.ws3d{word-spacing:-23.020200px;}
.ws66{word-spacing:-22.824000px;}
.ws44{word-spacing:-22.752000px;}
.ws43{word-spacing:-22.749000px;}
.ws3e{word-spacing:-22.746000px;}
.wsb{word-spacing:-22.743000px;}
.ws2b{word-spacing:-22.740000px;}
.ws33{word-spacing:-22.734000px;}
.ws46{word-spacing:-22.536000px;}
.ws8a{word-spacing:-22.535700px;}
.ws7b{word-spacing:-22.535100px;}
.ws4d{word-spacing:-22.534800px;}
.wsc{word-spacing:-22.530600px;}
.ws21{word-spacing:-22.529400px;}
.ws4a{word-spacing:-22.527900px;}
.ws55{word-spacing:-22.527000px;}
.ws11{word-spacing:-22.522800px;}
.ws1c{word-spacing:-22.513500px;}
.ws1a{word-spacing:-22.318800px;}
.ws35{word-spacing:-22.314600px;}
.ws38{word-spacing:-22.313400px;}
.ws51{word-spacing:-22.038000px;}
.ws1d{word-spacing:-22.032000px;}
.ws4b{word-spacing:-22.030800px;}
.ws4e{word-spacing:-21.816600px;}
.ws25{word-spacing:-21.816000px;}
.ws4c{word-spacing:-21.810600px;}
.ws20{word-spacing:-21.796200px;}
.wse{word-spacing:-21.578400px;}
.ws15{word-spacing:-21.096000px;}
.ws5a{word-spacing:-21.093000px;}
.ws4f{word-spacing:-21.088800px;}
.ws29{word-spacing:-21.081000px;}
.ws7d{word-spacing:-20.375100px;}
.ws40{word-spacing:-20.160000px;}
.ws41{word-spacing:-19.870800px;}
.ws50{word-spacing:-19.650000px;}
.ws82{word-spacing:-18.935100px;}
.ws3a{word-spacing:-18.925200px;}
.ws7{word-spacing:-18.472500px;}
.ws63{word-spacing:-18.423000px;}
.ws57{word-spacing:-18.422400px;}
.ws75{word-spacing:-17.493300px;}
.ws36{word-spacing:-17.269200px;}
.ws3f{word-spacing:-16.269000px;}
.ws32{word-spacing:-16.239000px;}
.ws3c{word-spacing:-15.118800px;}
.ws67{word-spacing:-15.118200px;}
.ws14{word-spacing:-14.616000px;}
.ws62{word-spacing:-14.602500px;}
.ws1f{word-spacing:-14.397000px;}
.ws68{word-spacing:-13.899300px;}
.ws56{word-spacing:-13.381200px;}
.ws73{word-spacing:-13.176000px;}
.ws22{word-spacing:-13.162500px;}
.ws2c{word-spacing:-12.663000px;}
.ws60{word-spacing:-12.453300px;}
.ws28{word-spacing:-12.450600px;}
.ws42{word-spacing:-12.236400px;}
.ws8b{word-spacing:-11.516400px;}
.ws23{word-spacing:-11.008800px;}
.ws58{word-spacing:-11.005200px;}
.ws18{word-spacing:-10.512000px;}
.ws5f{word-spacing:-9.576000px;}
.ws79{word-spacing:-9.568800px;}
.ws16{word-spacing:-9.049500px;}
.ws87{word-spacing:-8.113500px;}
.ws12{word-spacing:-7.920000px;}
.ws61{word-spacing:-4.536000px;}
.ws52{word-spacing:-4.522500px;}
.ws37{word-spacing:-4.320000px;}
.ws6a{word-spacing:-3.808800px;}
.ws6b{word-spacing:-2.367000px;}
.ws2a{word-spacing:-1.656000px;}
.ws3b{word-spacing:-1.436400px;}
.ws34{word-spacing:-1.143000px;}
.ws39{word-spacing:0.000000px;}
.ws7f{word-spacing:0.725400px;}
.ws31{word-spacing:1.947600px;}
.ws27{word-spacing:1.954800px;}
.ws5b{word-spacing:1.956600px;}
.ws5d{word-spacing:1.963500px;}
.ws2e{word-spacing:2.172600px;}
.ws19{word-spacing:5.551200px;}
.ws5e{word-spacing:6.067800px;}
.ws13{word-spacing:6.986700px;}
.ws1e{word-spacing:8.433000px;}
.ws6c{word-spacing:8.963100px;}
.ws2d{word-spacing:9.143400px;}
.ws24{word-spacing:9.363600px;}
.ws17{word-spacing:11.311200px;}
.ws71{word-spacing:11.827800px;}
.ws6f{word-spacing:12.979800px;}
.ws53{word-spacing:13.687200px;}
.ws6e{word-spacing:19.224000px;}
.ws54{word-spacing:29.320200px;}
.ws70{word-spacing:377.568000px;}
.ws1{word-spacing:455.092800px;}
.ws72{word-spacing:2083.701600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._7{width:20.608800px;}
._15{width:21.666000px;}
._14{width:22.957200px;}
._11{width:24.325200px;}
._10{width:25.909800px;}
._6{width:27.432000px;}
._b{width:28.701000px;}
._e{width:29.719800px;}
._a{width:31.291200px;}
._8{width:33.291000px;}
._1{width:36.000000px;}
._13{width:37.388400px;}
._12{width:38.448000px;}
._f{width:40.320000px;}
._d{width:43.981200px;}
._1c{width:45.144000px;}
._5{width:48.536700px;}
._c{width:50.972400px;}
._9{width:52.978800px;}
._18{width:54.067500px;}
._16{width:55.971600px;}
._1b{width:57.860400px;}
._19{width:60.856800px;}
._17{width:71.257800px;}
._1a{width:419.953200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.750000px;}
.y5d{bottom:3.870000px;}
.y5f{bottom:3.871500px;}
.y42{bottom:3.930000px;}
.y65{bottom:3.946500px;}
.y7{bottom:4.471500px;}
.y40{bottom:14.190000px;}
.y5b{bottom:14.311500px;}
.y41{bottom:24.450000px;}
.y5c{bottom:24.571500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y56{bottom:100.696500px;}
.y30{bottom:113.296500px;}
.y55{bottom:121.396500px;}
.y2f{bottom:133.996500px;}
.y6e{bottom:135.796500px;}
.y54{bottom:142.096500px;}
.y2e{bottom:154.696500px;}
.y6d{bottom:156.496500px;}
.y53{bottom:162.796500px;}
.y2d{bottom:175.396500px;}
.y8c{bottom:179.536500px;}
.y52{bottom:183.496500px;}
.y2c{bottom:196.096500px;}
.y8b{bottom:200.236500px;}
.y51{bottom:204.196500px;}
.y2b{bottom:224.175000px;}
.y50{bottom:224.896500px;}
.y8a{bottom:228.496500px;}
.y2a{bottom:244.875000px;}
.y4f{bottom:245.596500px;}
.y89{bottom:249.196500px;}
.y29{bottom:265.575000px;}
.y4e{bottom:266.295000px;}
.y88{bottom:277.275000px;}
.y28{bottom:286.275000px;}
.y87{bottom:297.975000px;}
.y27{bottom:306.975000px;}
.y4d{bottom:324.825000px;}
.y86{bottom:326.236500px;}
.y26{bottom:335.236500px;}
.y4c{bottom:345.525000px;}
.y85{bottom:346.936500px;}
.y25{bottom:355.936500px;}
.y4b{bottom:366.225000px;}
.y84{bottom:375.196500px;}
.y24{bottom:376.636500px;}
.y4a{bottom:386.925000px;}
.y83{bottom:395.896500px;}
.y23{bottom:397.336500px;}
.y49{bottom:407.625000px;}
.y22{bottom:418.036500px;}
.y82{bottom:423.975000px;}
.y48{bottom:428.325000px;}
.y21{bottom:438.736500px;}
.y81{bottom:444.675000px;}
.y47{bottom:449.025000px;}
.y6b{bottom:453.675000px;}
.y20{bottom:466.996500px;}
.y46{bottom:469.725000px;}
.y80{bottom:472.936500px;}
.y6a{bottom:474.375000px;}
.y1f{bottom:487.696500px;}
.y45{bottom:490.425000px;}
.y7f{bottom:493.636500px;}
.y69{bottom:495.075000px;}
.y1e{bottom:508.396500px;}
.y43{bottom:511.125000px;}
.y68{bottom:515.775000px;}
.y7e{bottom:521.896500px;}
.y1d{bottom:529.096500px;}
.y3f{bottom:531.825000px;}
.y67{bottom:536.475000px;}
.y7d{bottom:542.596500px;}
.y1c{bottom:549.796500px;}
.y66{bottom:557.175000px;}
.y7c{bottom:570.675000px;}
.y1b{bottom:577.875000px;}
.y7b{bottom:591.375000px;}
.y3e{bottom:598.036500px;}
.y1a{bottom:598.575000px;}
.y19{bottom:619.275000px;}
.y7a{bottom:619.636500px;}
.y6c{bottom:638.536500px;}
.y3d{bottom:639.795000px;}
.y18{bottom:639.975000px;}
.y79{bottom:640.336500px;}
.y17{bottom:660.675000px;}
.y64{bottom:678.150000px;}
.y3c{bottom:681.375000px;}
.y78{bottom:682.096500px;}
.y63{bottom:698.925000px;}
.y3b{bottom:702.075000px;}
.y16{bottom:702.436500px;}
.y62{bottom:719.625000px;}
.y77{bottom:723.675000px;}
.y61{bottom:740.325000px;}
.y3a{bottom:743.836500px;}
.y15{bottom:744.195000px;}
.y76{bottom:744.375000px;}
.y60{bottom:761.025000px;}
.y14{bottom:764.895000px;}
.y75{bottom:765.075000px;}
.y5e{bottom:781.725000px;}
.y13{bottom:785.596500px;}
.y74{bottom:785.775000px;}
.y5a{bottom:802.425000px;}
.y12{bottom:806.295000px;}
.y73{bottom:806.475000px;}
.y11{bottom:826.996500px;}
.y39{bottom:827.175000px;}
.y10{bottom:847.695000px;}
.y72{bottom:847.875000px;}
.yf{bottom:868.395000px;}
.y59{bottom:868.575000px;}
.y38{bottom:868.936500px;}
.ye{bottom:889.095000px;}
.y37{bottom:889.636500px;}
.y36{bottom:910.336500px;}
.yd{bottom:930.675000px;}
.y35{bottom:931.036500px;}
.y71{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y34{bottom:951.736500px;}
.y58{bottom:952.095000px;}
.y57{bottom:972.795000px;}
.yb{bottom:993.136500px;}
.y33{bottom:993.495000px;}
.y70{bottom:1014.195000px;}
.ya{bottom:1034.895000px;}
.y32{bottom:1035.075000px;}
.y6f{bottom:1055.595000px;}
.y31{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h7{height:20.625000px;}
.h8{height:20.700000px;}
.h6{height:41.325000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w3{width:129.675000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.010000px;}
.x1{left:127.620000px;}
.x8{left:132.660000px;}
.xa{left:154.350000px;}
.x4{left:172.800000px;}
.x10{left:180.720000px;}
.xc{left:283.950000px;}
.x5{left:314.460000px;}
.x6{left:320.400000px;}
.xd{left:413.550000px;}
.x7{left:417.238500px;}
.x3{left:461.625000px;}
.xe{left:543.150000px;}
.x9{left:605.160000px;}
.xf{left:672.750000px;}
.x2{left:731.160000px;}
@media print{
.v1{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:38.720000pt;}
.ws48{word-spacing:-49.728000pt;}
.ws30{word-spacing:-36.032000pt;}
.ws84{word-spacing:-34.547200pt;}
.wsa{word-spacing:-34.479467pt;}
.ws49{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws77{word-spacing:-34.300800pt;}
.ws89{word-spacing:-34.175733pt;}
.ws9{word-spacing:-34.167733pt;}
.ws5c{word-spacing:-34.166400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws64{word-spacing:-33.922933pt;}
.ws8c{word-spacing:-33.915200pt;}
.ws1b{word-spacing:-33.912800pt;}
.ws0{word-spacing:-33.728000pt;}
.wsf{word-spacing:-33.726400pt;}
.wsd{word-spacing:-33.725600pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws86{word-spacing:-33.651200pt;}
.ws80{word-spacing:-33.530933pt;}
.ws7c{word-spacing:-33.273600pt;}
.ws7e{word-spacing:-32.629600pt;}
.ws7a{word-spacing:-31.356800pt;}
.ws83{word-spacing:-31.291200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws76{word-spacing:-29.248000pt;}
.ws85{word-spacing:-25.603733pt;}
.ws2f{word-spacing:-23.420800pt;}
.ws78{word-spacing:-23.040000pt;}
.ws88{word-spacing:-21.115200pt;}
.ws26{word-spacing:-20.856000pt;}
.ws65{word-spacing:-20.668800pt;}
.ws10{word-spacing:-20.666667pt;}
.ws47{word-spacing:-20.665600pt;}
.ws59{word-spacing:-20.662400pt;}
.ws74{word-spacing:-20.659200pt;}
.ws81{word-spacing:-20.480000pt;}
.ws45{word-spacing:-20.476800pt;}
.ws6d{word-spacing:-20.473600pt;}
.ws69{word-spacing:-20.470400pt;}
.ws3d{word-spacing:-20.462400pt;}
.ws66{word-spacing:-20.288000pt;}
.ws44{word-spacing:-20.224000pt;}
.ws43{word-spacing:-20.221333pt;}
.ws3e{word-spacing:-20.218667pt;}
.wsb{word-spacing:-20.216000pt;}
.ws2b{word-spacing:-20.213333pt;}
.ws33{word-spacing:-20.208000pt;}
.ws46{word-spacing:-20.032000pt;}
.ws8a{word-spacing:-20.031733pt;}
.ws7b{word-spacing:-20.031200pt;}
.ws4d{word-spacing:-20.030933pt;}
.wsc{word-spacing:-20.027200pt;}
.ws21{word-spacing:-20.026133pt;}
.ws4a{word-spacing:-20.024800pt;}
.ws55{word-spacing:-20.024000pt;}
.ws11{word-spacing:-20.020267pt;}
.ws1c{word-spacing:-20.012000pt;}
.ws1a{word-spacing:-19.838933pt;}
.ws35{word-spacing:-19.835200pt;}
.ws38{word-spacing:-19.834133pt;}
.ws51{word-spacing:-19.589333pt;}
.ws1d{word-spacing:-19.584000pt;}
.ws4b{word-spacing:-19.582933pt;}
.ws4e{word-spacing:-19.392533pt;}
.ws25{word-spacing:-19.392000pt;}
.ws4c{word-spacing:-19.387200pt;}
.ws20{word-spacing:-19.374400pt;}
.wse{word-spacing:-19.180800pt;}
.ws15{word-spacing:-18.752000pt;}
.ws5a{word-spacing:-18.749333pt;}
.ws4f{word-spacing:-18.745600pt;}
.ws29{word-spacing:-18.738667pt;}
.ws7d{word-spacing:-18.111200pt;}
.ws40{word-spacing:-17.920000pt;}
.ws41{word-spacing:-17.662933pt;}
.ws50{word-spacing:-17.466667pt;}
.ws82{word-spacing:-16.831200pt;}
.ws3a{word-spacing:-16.822400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws63{word-spacing:-16.376000pt;}
.ws57{word-spacing:-16.375467pt;}
.ws75{word-spacing:-15.549600pt;}
.ws36{word-spacing:-15.350400pt;}
.ws3f{word-spacing:-14.461333pt;}
.ws32{word-spacing:-14.434667pt;}
.ws3c{word-spacing:-13.438933pt;}
.ws67{word-spacing:-13.438400pt;}
.ws14{word-spacing:-12.992000pt;}
.ws62{word-spacing:-12.980000pt;}
.ws1f{word-spacing:-12.797333pt;}
.ws68{word-spacing:-12.354933pt;}
.ws56{word-spacing:-11.894400pt;}
.ws73{word-spacing:-11.712000pt;}
.ws22{word-spacing:-11.700000pt;}
.ws2c{word-spacing:-11.256000pt;}
.ws60{word-spacing:-11.069600pt;}
.ws28{word-spacing:-11.067200pt;}
.ws42{word-spacing:-10.876800pt;}
.ws8b{word-spacing:-10.236800pt;}
.ws23{word-spacing:-9.785600pt;}
.ws58{word-spacing:-9.782400pt;}
.ws18{word-spacing:-9.344000pt;}
.ws5f{word-spacing:-8.512000pt;}
.ws79{word-spacing:-8.505600pt;}
.ws16{word-spacing:-8.044000pt;}
.ws87{word-spacing:-7.212000pt;}
.ws12{word-spacing:-7.040000pt;}
.ws61{word-spacing:-4.032000pt;}
.ws52{word-spacing:-4.020000pt;}
.ws37{word-spacing:-3.840000pt;}
.ws6a{word-spacing:-3.385600pt;}
.ws6b{word-spacing:-2.104000pt;}
.ws2a{word-spacing:-1.472000pt;}
.ws3b{word-spacing:-1.276800pt;}
.ws34{word-spacing:-1.016000pt;}
.ws39{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.644800pt;}
.ws31{word-spacing:1.731200pt;}
.ws27{word-spacing:1.737600pt;}
.ws5b{word-spacing:1.739200pt;}
.ws5d{word-spacing:1.745333pt;}
.ws2e{word-spacing:1.931200pt;}
.ws19{word-spacing:4.934400pt;}
.ws5e{word-spacing:5.393600pt;}
.ws13{word-spacing:6.210400pt;}
.ws1e{word-spacing:7.496000pt;}
.ws6c{word-spacing:7.967200pt;}
.ws2d{word-spacing:8.127467pt;}
.ws24{word-spacing:8.323200pt;}
.ws17{word-spacing:10.054400pt;}
.ws71{word-spacing:10.513600pt;}
.ws6f{word-spacing:11.537600pt;}
.ws53{word-spacing:12.166400pt;}
.ws6e{word-spacing:17.088000pt;}
.ws54{word-spacing:26.062400pt;}
.ws70{word-spacing:335.616000pt;}
.ws1{word-spacing:404.526933pt;}
.ws72{word-spacing:1852.179200pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._7{width:18.318933pt;}
._15{width:19.258667pt;}
._14{width:20.406400pt;}
._11{width:21.622400pt;}
._10{width:23.030933pt;}
._6{width:24.384000pt;}
._b{width:25.512000pt;}
._e{width:26.417600pt;}
._a{width:27.814400pt;}
._8{width:29.592000pt;}
._1{width:32.000000pt;}
._13{width:33.234133pt;}
._12{width:34.176000pt;}
._f{width:35.840000pt;}
._d{width:39.094400pt;}
._1c{width:40.128000pt;}
._5{width:43.143733pt;}
._c{width:45.308800pt;}
._9{width:47.092267pt;}
._18{width:48.060000pt;}
._16{width:49.752533pt;}
._1b{width:51.431467pt;}
._19{width:54.094933pt;}
._17{width:63.340267pt;}
._1a{width:373.291733pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:3.333333pt;}
.y5d{bottom:3.440000pt;}
.y5f{bottom:3.441333pt;}
.y42{bottom:3.493333pt;}
.y65{bottom:3.508000pt;}
.y7{bottom:3.974667pt;}
.y40{bottom:12.613333pt;}
.y5b{bottom:12.721333pt;}
.y41{bottom:21.733333pt;}
.y5c{bottom:21.841333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y56{bottom:89.508000pt;}
.y30{bottom:100.708000pt;}
.y55{bottom:107.908000pt;}
.y2f{bottom:119.108000pt;}
.y6e{bottom:120.708000pt;}
.y54{bottom:126.308000pt;}
.y2e{bottom:137.508000pt;}
.y6d{bottom:139.108000pt;}
.y53{bottom:144.708000pt;}
.y2d{bottom:155.908000pt;}
.y8c{bottom:159.588000pt;}
.y52{bottom:163.108000pt;}
.y2c{bottom:174.308000pt;}
.y8b{bottom:177.988000pt;}
.y51{bottom:181.508000pt;}
.y2b{bottom:199.266667pt;}
.y50{bottom:199.908000pt;}
.y8a{bottom:203.108000pt;}
.y2a{bottom:217.666667pt;}
.y4f{bottom:218.308000pt;}
.y89{bottom:221.508000pt;}
.y29{bottom:236.066667pt;}
.y4e{bottom:236.706667pt;}
.y88{bottom:246.466667pt;}
.y28{bottom:254.466667pt;}
.y87{bottom:264.866667pt;}
.y27{bottom:272.866667pt;}
.y4d{bottom:288.733333pt;}
.y86{bottom:289.988000pt;}
.y26{bottom:297.988000pt;}
.y4c{bottom:307.133333pt;}
.y85{bottom:308.388000pt;}
.y25{bottom:316.388000pt;}
.y4b{bottom:325.533333pt;}
.y84{bottom:333.508000pt;}
.y24{bottom:334.788000pt;}
.y4a{bottom:343.933333pt;}
.y83{bottom:351.908000pt;}
.y23{bottom:353.188000pt;}
.y49{bottom:362.333333pt;}
.y22{bottom:371.588000pt;}
.y82{bottom:376.866667pt;}
.y48{bottom:380.733333pt;}
.y21{bottom:389.988000pt;}
.y81{bottom:395.266667pt;}
.y47{bottom:399.133333pt;}
.y6b{bottom:403.266667pt;}
.y20{bottom:415.108000pt;}
.y46{bottom:417.533333pt;}
.y80{bottom:420.388000pt;}
.y6a{bottom:421.666667pt;}
.y1f{bottom:433.508000pt;}
.y45{bottom:435.933333pt;}
.y7f{bottom:438.788000pt;}
.y69{bottom:440.066667pt;}
.y1e{bottom:451.908000pt;}
.y43{bottom:454.333333pt;}
.y68{bottom:458.466667pt;}
.y7e{bottom:463.908000pt;}
.y1d{bottom:470.308000pt;}
.y3f{bottom:472.733333pt;}
.y67{bottom:476.866667pt;}
.y7d{bottom:482.308000pt;}
.y1c{bottom:488.708000pt;}
.y66{bottom:495.266667pt;}
.y7c{bottom:507.266667pt;}
.y1b{bottom:513.666667pt;}
.y7b{bottom:525.666667pt;}
.y3e{bottom:531.588000pt;}
.y1a{bottom:532.066667pt;}
.y19{bottom:550.466667pt;}
.y7a{bottom:550.788000pt;}
.y6c{bottom:567.588000pt;}
.y3d{bottom:568.706667pt;}
.y18{bottom:568.866667pt;}
.y79{bottom:569.188000pt;}
.y17{bottom:587.266667pt;}
.y64{bottom:602.800000pt;}
.y3c{bottom:605.666667pt;}
.y78{bottom:606.308000pt;}
.y63{bottom:621.266667pt;}
.y3b{bottom:624.066667pt;}
.y16{bottom:624.388000pt;}
.y62{bottom:639.666667pt;}
.y77{bottom:643.266667pt;}
.y61{bottom:658.066667pt;}
.y3a{bottom:661.188000pt;}
.y15{bottom:661.506667pt;}
.y76{bottom:661.666667pt;}
.y60{bottom:676.466667pt;}
.y14{bottom:679.906667pt;}
.y75{bottom:680.066667pt;}
.y5e{bottom:694.866667pt;}
.y13{bottom:698.308000pt;}
.y74{bottom:698.466667pt;}
.y5a{bottom:713.266667pt;}
.y12{bottom:716.706667pt;}
.y73{bottom:716.866667pt;}
.y11{bottom:735.108000pt;}
.y39{bottom:735.266667pt;}
.y10{bottom:753.506667pt;}
.y72{bottom:753.666667pt;}
.yf{bottom:771.906667pt;}
.y59{bottom:772.066667pt;}
.y38{bottom:772.388000pt;}
.ye{bottom:790.306667pt;}
.y37{bottom:790.788000pt;}
.y36{bottom:809.188000pt;}
.yd{bottom:827.266667pt;}
.y35{bottom:827.588000pt;}
.y71{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y34{bottom:845.988000pt;}
.y58{bottom:846.306667pt;}
.y57{bottom:864.706667pt;}
.yb{bottom:882.788000pt;}
.y33{bottom:883.106667pt;}
.y70{bottom:901.506667pt;}
.ya{bottom:919.906667pt;}
.y32{bottom:920.066667pt;}
.y6f{bottom:938.306667pt;}
.y31{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h7{height:18.333333pt;}
.h8{height:18.400000pt;}
.h6{height:36.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w3{width:115.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.120000pt;}
.x1{left:113.440000pt;}
.x8{left:117.920000pt;}
.xa{left:137.200000pt;}
.x4{left:153.600000pt;}
.x10{left:160.640000pt;}
.xc{left:252.400000pt;}
.x5{left:279.520000pt;}
.x6{left:284.800000pt;}
.xd{left:367.600000pt;}
.x7{left:370.878667pt;}
.x3{left:410.333333pt;}
.xe{left:482.800000pt;}
.x9{left:537.920000pt;}
.xf{left:598.000000pt;}
.x2{left:649.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; }
  