
    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_96096ce9e0de76434995e392.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_4627b403be7af83aef46d881.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_1d527d9509193ce37bb25f5e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_b08be11b37aaa509139a4a81.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7f9eb89cc0995ebd10854f8a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_8ac61af6749e827e2a2d1f29.woff')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_c85cab4131f527e4de2e761c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_e81c699b69e3bb65a14aff71.woff')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_932c6950ede21fa54c01a6f8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ed07ba02bf52db56091cca20.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f996e7e5ef79f367f8d2b32b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0d7b491f30d17587113d2d45.woff')format("woff");}.ffc{font-family:ffc;line-height:0.854980;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:ffd;src:url('chunks/assets/font_4e059b7d888fa74859b868fd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.873535;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:ffe;src:url('chunks/assets/font_ec90b8832825877afda6ea01.woff')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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:fff;src:url('chunks/assets/font_f4e8c95bb7f09106c831119f.woff')format("woff");}.fff{font-family:fff;line-height:0.669434;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:ff10;src:url('chunks/assets/font_276a39ba40589025f7f23cc4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_d411d00517f04e2edc8d4b30.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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(0.256602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.293100px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.480000px;}
.lsc{letter-spacing:-4.948736px;}
.lsd{letter-spacing:-3.299157px;}
.lsb{letter-spacing:-2.877598px;}
.ls29{letter-spacing:-0.463104px;}
.ls12{letter-spacing:-0.434224px;}
.lsf{letter-spacing:-0.426987px;}
.ls23{letter-spacing:-0.318384px;}
.ls2a{letter-spacing:-0.308736px;}
.ls3{letter-spacing:-0.304704px;}
.ls21{letter-spacing:-0.299088px;}
.ls19{letter-spacing:-0.289440px;}
.ls1f{letter-spacing:-0.270144px;}
.ls2{letter-spacing:-0.264960px;}
.ls28{letter-spacing:-0.260496px;}
.lsa{letter-spacing:-0.229824px;}
.ls5{letter-spacing:-0.225216px;}
.ls7{letter-spacing:-0.217728px;}
.ls1a{letter-spacing:-0.202608px;}
.ls4{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.133056px;}
.ls8{letter-spacing:-0.078624px;}
.ls1e{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.021600px;}
.ls1c{letter-spacing:-0.014400px;}
.ls24{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.005328px;}
.ls1b{letter-spacing:0.007200px;}
.ls15{letter-spacing:0.011520px;}
.ls13{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.021600px;}
.ls14{letter-spacing:0.028800px;}
.ls25{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.043200px;}
.ls1d{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.209875px;}
.lse{letter-spacing:0.217112px;}
.ls11{letter-spacing:0.282246px;}
.ls10{letter-spacing:0.412513px;}
.ls27{letter-spacing:7.388496px;}
.ls26{letter-spacing:8.287920px;}
.ls22{letter-spacing:73.059984px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-41.422754px;}
.ws5{word-spacing:-38.123597px;}
.ws1{word-spacing:-29.940480px;}
.ws2{word-spacing:-29.715264px;}
.ws0{word-spacing:-29.675520px;}
.wsd{word-spacing:-21.804480px;}
.ws1a{word-spacing:-21.543984px;}
.ws19{word-spacing:-21.534336px;}
.ws17{word-spacing:-21.505392px;}
.ws1d{word-spacing:-21.495744px;}
.ws1c{word-spacing:-21.341376px;}
.ws7{word-spacing:-16.768278px;}
.ws8{word-spacing:-16.638011px;}
.ws6{word-spacing:-16.565641px;}
.ws9{word-spacing:-16.355766px;}
.ws16{word-spacing:-16.315200px;}
.ws1b{word-spacing:-16.308000px;}
.ws11{word-spacing:-16.300800px;}
.ws13{word-spacing:-16.293600px;}
.wsc{word-spacing:-16.286400px;}
.wse{word-spacing:-16.279200px;}
.wsf{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.264800px;}
.ws10{word-spacing:-16.257600px;}
.ws14{word-spacing:-16.250400px;}
.ws15{word-spacing:-16.243200px;}
.wsa{word-spacing:-15.921542px;}
.ws3{word-spacing:-13.589856px;}
.ws12{word-spacing:-0.242352px;}
.wsb{word-spacing:0.000000px;}
._5{margin-left:-32.320677px;}
._14{margin-left:-14.701824px;}
._13{margin-left:-12.942000px;}
._11{margin-left:-10.917504px;}
._15{margin-left:-8.664192px;}
._10{margin-left:-5.829120px;}
._4{margin-left:-3.485590px;}
._0{margin-left:-1.011888px;}
._3{width:1.015619px;}
._6{width:2.446372px;}
._2{width:5.714679px;}
._1{width:6.947582px;}
._b{width:28.632030px;}
._e{width:65.340576px;}
._12{width:73.108800px;}
._7{width:218.187005px;}
._a{width:383.217246px;}
._c{width:393.566249px;}
._9{width:395.737368px;}
._d{width:476.141154px;}
._f{width:842.195520px;}
._8{width:926.357360px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.370644px;}
.fs7{font-size:78.663744px;}
.fsa{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:132.480000px;}
.fs2{font-size:168.480000px;}
.fs8{font-size:183.286524px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:261.950268px;}
.y27{bottom:-28.074106px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.179970px;}
.y7{bottom:0.180000px;}
.y3f{bottom:4.139970px;}
.y23{bottom:4.523186px;}
.yd{bottom:4.860000px;}
.yb{bottom:9.180000px;}
.y21{bottom:10.619970px;}
.y41{bottom:19.980000px;}
.y3e{bottom:25.620030px;}
.y48{bottom:26.820000px;}
.y20{bottom:28.979970px;}
.y3d{bottom:29.760000px;}
.y1e{bottom:110.580030px;}
.y26{bottom:110.760030px;}
.y22{bottom:111.201510px;}
.y25{bottom:116.118015px;}
.y93{bottom:116.880000px;}
.ya1{bottom:127.320000px;}
.y24{bottom:137.947204px;}
.ya0{bottom:156.480000px;}
.y92{bottom:156.840000px;}
.y1d{bottom:168.360000px;}
.y9f{bottom:186.000000px;}
.y91{bottom:196.800000px;}
.y1c{bottom:201.480000px;}
.y3a{bottom:202.058155px;}
.yb1{bottom:205.440000px;}
.y9e{bottom:208.680000px;}
.y1b{bottom:234.600000px;}
.y39{bottom:235.916342px;}
.y90{bottom:236.760000px;}
.yb0{bottom:248.280000px;}
.y63{bottom:261.960000px;}
.y1a{bottom:267.360000px;}
.y38{bottom:267.775158px;}
.y8f{bottom:276.720000px;}
.y37{bottom:289.801006px;}
.y62{bottom:291.120000px;}
.yaf{bottom:293.280000px;}
.y19{bottom:300.480000px;}
.y61{bottom:314.340000px;}
.y8e{bottom:316.680000px;}
.y36{bottom:321.463163px;}
.yae{bottom:322.800000px;}
.y18{bottom:333.240000px;}
.y8d{bottom:356.640000px;}
.y60{bottom:359.340000px;}
.y17{bottom:366.360000px;}
.yad{bottom:371.040000px;}
.y5f{bottom:382.020000px;}
.y8c{bottom:391.920000px;}
.y16{bottom:399.120000px;}
.y5e{bottom:411.360000px;}
.yac{bottom:413.880000px;}
.y35{bottom:426.880935px;}
.y15{bottom:432.240000px;}
.y5d{bottom:440.520000px;}
.y34{bottom:450.873377px;}
.yab{bottom:456.720000px;}
.y14{bottom:465.000000px;}
.y5c{bottom:470.040000px;}
.y33{bottom:484.698786px;}
.y5b{bottom:493.260000px;}
.y13{bottom:498.120000px;}
.yaa{bottom:499.920000px;}
.y5a{bottom:515.940000px;}
.y32{bottom:518.524196px;}
.ya9{bottom:521.880000px;}
.y12{bottom:531.240000px;}
.y59{bottom:538.620000px;}
.ya8{bottom:546.000000px;}
.y31{bottom:552.349606px;}
.y58{bottom:561.300000px;}
.y11{bottom:564.000000px;}
.ya7{bottom:573.360000px;}
.y57{bottom:583.980000px;}
.y30{bottom:586.175016px;}
.ya6{bottom:590.640000px;}
.y10{bottom:597.120000px;}
.y56{bottom:607.020000px;}
.y55{bottom:629.700000px;}
.yf{bottom:629.880000px;}
.y54{bottom:652.380000px;}
.ye{bottom:663.000000px;}
.y53{bottom:675.060000px;}
.yc{bottom:688.380000px;}
.y52{bottom:697.740000px;}
.ya{bottom:711.060000px;}
.y51{bottom:727.440000px;}
.y2e{bottom:740.585390px;}
.y50{bottom:757.320000px;}
.y9{bottom:763.080000px;}
.y2f{bottom:765.208621px;}
.y9d{bottom:770.280000px;}
.y2d{bottom:774.410800px;}
.y79{bottom:776.040000px;}
.y8b{bottom:779.640000px;}
.y4f{bottom:790.080000px;}
.y9c{bottom:797.640000px;}
.y78{bottom:803.400000px;}
.y2c{bottom:808.236210px;}
.y4e{bottom:816.540000px;}
.y8{bottom:817.440000px;}
.y9b{bottom:819.600000px;}
.y8a{bottom:821.400000px;}
.y77{bottom:825.360000px;}
.y4d{bottom:839.220000px;}
.y2b{bottom:842.061620px;}
.y9a{bottom:843.360000px;}
.y76{bottom:856.320000px;}
.y4c{bottom:861.900000px;}
.y6{bottom:868.740000px;}
.y89{bottom:869.640000px;}
.y99{bottom:872.880000px;}
.y2a{bottom:875.887030px;}
.y4b{bottom:884.580000px;}
.y75{bottom:887.280000px;}
.y88{bottom:891.600000px;}
.y98{bottom:900.240000px;}
.y4a{bottom:907.260000px;}
.y29{bottom:909.712440px;}
.y74{bottom:918.240000px;}
.y66{bottom:929.760000px;}
.y49{bottom:929.940000px;}
.y87{bottom:934.800000px;}
.y97{bottom:935.520000px;}
.y28{bottom:938.277212px;}
.y73{bottom:949.200000px;}
.y47{bottom:952.620000px;}
.y86{bottom:956.760000px;}
.y65{bottom:958.920000px;}
.y7b{bottom:967.200000px;}
.y5{bottom:971.880000px;}
.y85{bottom:978.720000px;}
.y72{bottom:980.160000px;}
.y6c{bottom:982.140000px;}
.y7f{bottom:990.420000px;}
.y83{bottom:995.280000px;}
.y84{bottom:1000.680000px;}
.y46{bottom:1004.280000px;}
.y6b{bottom:1005.180000px;}
.y71{bottom:1011.120000px;}
.y7e{bottom:1013.100000px;}
.y6a{bottom:1027.860000px;}
.y45{bottom:1034.160000px;}
.y7d{bottom:1035.780000px;}
.y4{bottom:1037.760000px;}
.y70{bottom:1042.080000px;}
.ya5{bottom:1042.800000px;}
.y82{bottom:1043.520000px;}
.y96{bottom:1046.760000px;}
.y69{bottom:1050.540000px;}
.y7c{bottom:1058.460000px;}
.ya4{bottom:1064.760000px;}
.y81{bottom:1065.480000px;}
.y44{bottom:1067.280000px;}
.y95{bottom:1068.720000px;}
.y6f{bottom:1073.040000px;}
.y68{bottom:1073.220000px;}
.ya3{bottom:1086.720000px;}
.y80{bottom:1087.800000px;}
.y3{bottom:1093.920000px;}
.y67{bottom:1095.900000px;}
.y43{bottom:1099.320000px;}
.y7a{bottom:1103.280000px;}
.y6e{bottom:1104.000000px;}
.ya2{bottom:1108.680000px;}
.y94{bottom:1110.480000px;}
.y2{bottom:1115.880000px;}
.y42{bottom:1129.200000px;}
.y6d{bottom:1132.080000px;}
.y64{bottom:1132.440000px;}
.y1{bottom:1137.840000px;}
.y40{bottom:1158.180000px;}
.y3c{bottom:1160.520000px;}
.y3b{bottom:1176.900000px;}
.hd{height:0.000000px;}
.h15{height:20.520000px;}
.h7{height:21.960000px;}
.h13{height:30.600000px;}
.h5{height:40.320000px;}
.ha{height:41.343750px;}
.h18{height:43.920000px;}
.h1b{height:47.988281px;}
.h14{height:48.656250px;}
.hb{height:49.238505px;}
.hc{height:49.472120px;}
.h9{height:49.679970px;}
.hf{height:49.680000px;}
.h19{height:50.062500px;}
.h1{height:51.679688px;}
.h10{height:53.505174px;}
.h12{height:53.774044px;}
.h1a{height:56.152266px;}
.he{height:68.907596px;}
.h17{height:69.250781px;}
.h8{height:71.982422px;}
.h16{height:85.680000px;}
.h3{height:88.560000px;}
.h6{height:90.109688px;}
.h4{height:112.292578px;}
.h2{height:143.964844px;}
.h11{height:178.172228px;}
.h0{height:1263.000000px;}
.w5{width:0.000000px;}
.w7{width:9.000000px;}
.wd{width:32.040000px;}
.w4{width:71.550000px;}
.we{width:83.520000px;}
.w2{width:84.960000px;}
.wf{width:97.560000px;}
.wb{width:112.320000px;}
.w12{width:116.640000px;}
.w8{width:122.040000px;}
.w9{width:180.360000px;}
.w10{width:188.640000px;}
.w11{width:303.480000px;}
.wa{width:495.720000px;}
.w6{width:521.280000px;}
.wc{width:535.680000px;}
.w13{width:559.440000px;}
.w3{width:585.000000px;}
.w1{width:676.080000px;}
.w0{width:892.500000px;}
.x9{left:-3.479351px;}
.x0{left:0.000000px;}
.x3{left:7.740036px;}
.x7{left:66.153109px;}
.x4{left:79.020072px;}
.x10{left:87.300000px;}
.x1{left:108.000000px;}
.x11{left:112.499928px;}
.x6{left:116.099880px;}
.xb{left:121.703901px;}
.x5{left:193.140000px;}
.x8{left:216.971657px;}
.xe{left:220.140000px;}
.x16{left:224.820000px;}
.x2{left:259.140204px;}
.x12{left:288.540000px;}
.x14{left:291.420000px;}
.x18{left:378.000000px;}
.xc{left:425.132274px;}
.xf{left:442.260000px;}
.x15{left:480.780000px;}
.xa{left:563.450927px;}
.xd{left:591.694410px;}
.x13{left:756.180000px;}
.x17{left:784.800000px;}
@media print{
.v1{vertical-align:-5.593866pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.760000pt;}
.lsc{letter-spacing:-4.398877pt;}
.lsd{letter-spacing:-2.932584pt;}
.lsb{letter-spacing:-2.557865pt;}
.ls29{letter-spacing:-0.411648pt;}
.ls12{letter-spacing:-0.385977pt;}
.lsf{letter-spacing:-0.379544pt;}
.ls23{letter-spacing:-0.283008pt;}
.ls2a{letter-spacing:-0.274432pt;}
.ls3{letter-spacing:-0.270848pt;}
.ls21{letter-spacing:-0.265856pt;}
.ls19{letter-spacing:-0.257280pt;}
.ls1f{letter-spacing:-0.240128pt;}
.ls2{letter-spacing:-0.235520pt;}
.ls28{letter-spacing:-0.231552pt;}
.lsa{letter-spacing:-0.204288pt;}
.ls5{letter-spacing:-0.200192pt;}
.ls7{letter-spacing:-0.193536pt;}
.ls1a{letter-spacing:-0.180096pt;}
.ls4{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.118272pt;}
.ls8{letter-spacing:-0.069888pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls24{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.004736pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls15{letter-spacing:0.010240pt;}
.ls13{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.019200pt;}
.ls14{letter-spacing:0.025600pt;}
.ls25{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.038400pt;}
.ls1d{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.186555pt;}
.lse{letter-spacing:0.192988pt;}
.ls11{letter-spacing:0.250885pt;}
.ls10{letter-spacing:0.366678pt;}
.ls27{letter-spacing:6.567552pt;}
.ls26{letter-spacing:7.367040pt;}
.ls22{letter-spacing:64.942208pt;}
.ws4{word-spacing:-36.820226pt;}
.ws5{word-spacing:-33.887642pt;}
.ws1{word-spacing:-26.613760pt;}
.ws2{word-spacing:-26.413568pt;}
.ws0{word-spacing:-26.378240pt;}
.wsd{word-spacing:-19.381760pt;}
.ws1a{word-spacing:-19.150208pt;}
.ws19{word-spacing:-19.141632pt;}
.ws17{word-spacing:-19.115904pt;}
.ws1d{word-spacing:-19.107328pt;}
.ws1c{word-spacing:-18.970112pt;}
.ws7{word-spacing:-14.905136pt;}
.ws8{word-spacing:-14.789343pt;}
.ws6{word-spacing:-14.725014pt;}
.ws9{word-spacing:-14.538458pt;}
.ws16{word-spacing:-14.502400pt;}
.ws1b{word-spacing:-14.496000pt;}
.ws11{word-spacing:-14.489600pt;}
.ws13{word-spacing:-14.483200pt;}
.wsc{word-spacing:-14.476800pt;}
.wse{word-spacing:-14.470400pt;}
.wsf{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.457600pt;}
.ws10{word-spacing:-14.451200pt;}
.ws14{word-spacing:-14.444800pt;}
.ws15{word-spacing:-14.438400pt;}
.wsa{word-spacing:-14.152482pt;}
.ws3{word-spacing:-12.079872pt;}
.ws12{word-spacing:-0.215424pt;}
.wsb{word-spacing:0.000000pt;}
._5{margin-left:-28.729491pt;}
._14{margin-left:-13.068288pt;}
._13{margin-left:-11.504000pt;}
._11{margin-left:-9.704448pt;}
._15{margin-left:-7.701504pt;}
._10{margin-left:-5.181440pt;}
._4{margin-left:-3.098303pt;}
._0{margin-left:-0.899456pt;}
._3{width:0.902773pt;}
._6{width:2.174553pt;}
._2{width:5.079715pt;}
._1{width:6.175628pt;}
._b{width:25.450693pt;}
._e{width:58.080512pt;}
._12{width:64.985600pt;}
._7{width:193.944004pt;}
._a{width:340.637552pt;}
._c{width:349.836665pt;}
._9{width:351.766549pt;}
._d{width:423.236581pt;}
._f{width:748.618240pt;}
._8{width:823.428764pt;}
.fsb{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.329462pt;}
.fs7{font-size:69.923328pt;}
.fsa{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:117.760000pt;}
.fs2{font-size:149.760000pt;}
.fs8{font-size:162.921354pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:232.844682pt;}
.y27{bottom:-24.954761pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.159973pt;}
.y7{bottom:0.160000pt;}
.y3f{bottom:3.679973pt;}
.y23{bottom:4.020610pt;}
.yd{bottom:4.320000pt;}
.yb{bottom:8.160000pt;}
.y21{bottom:9.439973pt;}
.y41{bottom:17.760000pt;}
.y3e{bottom:22.773360pt;}
.y48{bottom:23.840000pt;}
.y20{bottom:25.759973pt;}
.y3d{bottom:26.453333pt;}
.y1e{bottom:98.293360pt;}
.y26{bottom:98.453360pt;}
.y22{bottom:98.845787pt;}
.y25{bottom:103.216013pt;}
.y93{bottom:103.893333pt;}
.ya1{bottom:113.173333pt;}
.y24{bottom:122.619737pt;}
.ya0{bottom:139.093333pt;}
.y92{bottom:139.413333pt;}
.y1d{bottom:149.653333pt;}
.y9f{bottom:165.333333pt;}
.y91{bottom:174.933333pt;}
.y1c{bottom:179.093333pt;}
.y3a{bottom:179.607249pt;}
.yb1{bottom:182.613333pt;}
.y9e{bottom:185.493333pt;}
.y1b{bottom:208.533333pt;}
.y39{bottom:209.703415pt;}
.y90{bottom:210.453333pt;}
.yb0{bottom:220.693333pt;}
.y63{bottom:232.853333pt;}
.y1a{bottom:237.653333pt;}
.y38{bottom:238.022363pt;}
.y8f{bottom:245.973333pt;}
.y37{bottom:257.600894pt;}
.y62{bottom:258.773333pt;}
.yaf{bottom:260.693333pt;}
.y19{bottom:267.093333pt;}
.y61{bottom:279.413333pt;}
.y8e{bottom:281.493333pt;}
.y36{bottom:285.745034pt;}
.yae{bottom:286.933333pt;}
.y18{bottom:296.213333pt;}
.y8d{bottom:317.013333pt;}
.y60{bottom:319.413333pt;}
.y17{bottom:325.653333pt;}
.yad{bottom:329.813333pt;}
.y5f{bottom:339.573333pt;}
.y8c{bottom:348.373333pt;}
.y16{bottom:354.773333pt;}
.y5e{bottom:365.653333pt;}
.yac{bottom:367.893333pt;}
.y35{bottom:379.449720pt;}
.y15{bottom:384.213333pt;}
.y5d{bottom:391.573333pt;}
.y34{bottom:400.776335pt;}
.yab{bottom:405.973333pt;}
.y14{bottom:413.333333pt;}
.y5c{bottom:417.813333pt;}
.y33{bottom:430.843366pt;}
.y5b{bottom:438.453333pt;}
.y13{bottom:442.773333pt;}
.yaa{bottom:444.373333pt;}
.y5a{bottom:458.613333pt;}
.y32{bottom:460.910397pt;}
.ya9{bottom:463.893333pt;}
.y12{bottom:472.213333pt;}
.y59{bottom:478.773333pt;}
.ya8{bottom:485.333333pt;}
.y31{bottom:490.977428pt;}
.y58{bottom:498.933333pt;}
.y11{bottom:501.333333pt;}
.ya7{bottom:509.653333pt;}
.y57{bottom:519.093333pt;}
.y30{bottom:521.044459pt;}
.ya6{bottom:525.013333pt;}
.y10{bottom:530.773333pt;}
.y56{bottom:539.573333pt;}
.y55{bottom:559.733333pt;}
.yf{bottom:559.893333pt;}
.y54{bottom:579.893333pt;}
.ye{bottom:589.333333pt;}
.y53{bottom:600.053333pt;}
.yc{bottom:611.893333pt;}
.y52{bottom:620.213333pt;}
.ya{bottom:632.053333pt;}
.y51{bottom:646.613333pt;}
.y2e{bottom:658.298125pt;}
.y50{bottom:673.173333pt;}
.y9{bottom:678.293333pt;}
.y2f{bottom:680.185441pt;}
.y9d{bottom:684.693333pt;}
.y2d{bottom:688.365156pt;}
.y79{bottom:689.813333pt;}
.y8b{bottom:693.013333pt;}
.y4f{bottom:702.293333pt;}
.y9c{bottom:709.013333pt;}
.y78{bottom:714.133333pt;}
.y2c{bottom:718.432187pt;}
.y4e{bottom:725.813333pt;}
.y8{bottom:726.613333pt;}
.y9b{bottom:728.533333pt;}
.y8a{bottom:730.133333pt;}
.y77{bottom:733.653333pt;}
.y4d{bottom:745.973333pt;}
.y2b{bottom:748.499218pt;}
.y9a{bottom:749.653333pt;}
.y76{bottom:761.173333pt;}
.y4c{bottom:766.133333pt;}
.y6{bottom:772.213333pt;}
.y89{bottom:773.013333pt;}
.y99{bottom:775.893333pt;}
.y2a{bottom:778.566249pt;}
.y4b{bottom:786.293333pt;}
.y75{bottom:788.693333pt;}
.y88{bottom:792.533333pt;}
.y98{bottom:800.213333pt;}
.y4a{bottom:806.453333pt;}
.y29{bottom:808.633280pt;}
.y74{bottom:816.213333pt;}
.y66{bottom:826.453333pt;}
.y49{bottom:826.613333pt;}
.y87{bottom:830.933333pt;}
.y97{bottom:831.573333pt;}
.y28{bottom:834.024188pt;}
.y73{bottom:843.733333pt;}
.y47{bottom:846.773333pt;}
.y86{bottom:850.453333pt;}
.y65{bottom:852.373333pt;}
.y7b{bottom:859.733333pt;}
.y5{bottom:863.893333pt;}
.y85{bottom:869.973333pt;}
.y72{bottom:871.253333pt;}
.y6c{bottom:873.013333pt;}
.y7f{bottom:880.373333pt;}
.y83{bottom:884.693333pt;}
.y84{bottom:889.493333pt;}
.y46{bottom:892.693333pt;}
.y6b{bottom:893.493333pt;}
.y71{bottom:898.773333pt;}
.y7e{bottom:900.533333pt;}
.y6a{bottom:913.653333pt;}
.y45{bottom:919.253333pt;}
.y7d{bottom:920.693333pt;}
.y4{bottom:922.453333pt;}
.y70{bottom:926.293333pt;}
.ya5{bottom:926.933333pt;}
.y82{bottom:927.573333pt;}
.y96{bottom:930.453333pt;}
.y69{bottom:933.813333pt;}
.y7c{bottom:940.853333pt;}
.ya4{bottom:946.453333pt;}
.y81{bottom:947.093333pt;}
.y44{bottom:948.693333pt;}
.y95{bottom:949.973333pt;}
.y6f{bottom:953.813333pt;}
.y68{bottom:953.973333pt;}
.ya3{bottom:965.973333pt;}
.y80{bottom:966.933333pt;}
.y3{bottom:972.373333pt;}
.y67{bottom:974.133333pt;}
.y43{bottom:977.173333pt;}
.y7a{bottom:980.693333pt;}
.y6e{bottom:981.333333pt;}
.ya2{bottom:985.493333pt;}
.y94{bottom:987.093333pt;}
.y2{bottom:991.893333pt;}
.y42{bottom:1003.733333pt;}
.y6d{bottom:1006.293333pt;}
.y64{bottom:1006.613333pt;}
.y1{bottom:1011.413333pt;}
.y40{bottom:1029.493333pt;}
.y3c{bottom:1031.573333pt;}
.y3b{bottom:1046.133333pt;}
.hd{height:0.000000pt;}
.h15{height:18.240000pt;}
.h7{height:19.520000pt;}
.h13{height:27.200000pt;}
.h5{height:35.840000pt;}
.ha{height:36.750000pt;}
.h18{height:39.040000pt;}
.h1b{height:42.656250pt;}
.h14{height:43.250000pt;}
.hb{height:43.767560pt;}
.hc{height:43.975218pt;}
.h9{height:44.159973pt;}
.hf{height:44.160000pt;}
.h19{height:44.500000pt;}
.h1{height:45.937500pt;}
.h10{height:47.560154pt;}
.h12{height:47.799150pt;}
.h1a{height:49.913125pt;}
.he{height:61.251196pt;}
.h17{height:61.556250pt;}
.h8{height:63.984375pt;}
.h16{height:76.160000pt;}
.h3{height:78.720000pt;}
.h6{height:80.097500pt;}
.h4{height:99.815625pt;}
.h2{height:127.968750pt;}
.h11{height:158.375314pt;}
.h0{height:1122.666667pt;}
.w5{width:0.000000pt;}
.w7{width:8.000000pt;}
.wd{width:28.480000pt;}
.w4{width:63.600000pt;}
.we{width:74.240000pt;}
.w2{width:75.520000pt;}
.wf{width:86.720000pt;}
.wb{width:99.840000pt;}
.w12{width:103.680000pt;}
.w8{width:108.480000pt;}
.w9{width:160.320000pt;}
.w10{width:167.680000pt;}
.w11{width:269.760000pt;}
.wa{width:440.640000pt;}
.w6{width:463.360000pt;}
.wc{width:476.160000pt;}
.w13{width:497.280000pt;}
.w3{width:520.000000pt;}
.w1{width:600.960000pt;}
.w0{width:793.333333pt;}
.x9{left:-3.092756pt;}
.x0{left:0.000000pt;}
.x3{left:6.880032pt;}
.x7{left:58.802764pt;}
.x4{left:70.240064pt;}
.x10{left:77.600000pt;}
.x1{left:96.000000pt;}
.x11{left:99.999936pt;}
.x6{left:103.199893pt;}
.xb{left:108.181246pt;}
.x5{left:171.680000pt;}
.x8{left:192.863695pt;}
.xe{left:195.680000pt;}
.x16{left:199.840000pt;}
.x2{left:230.346848pt;}
.x12{left:256.480000pt;}
.x14{left:259.040000pt;}
.x18{left:336.000000pt;}
.xc{left:377.895355pt;}
.xf{left:393.120000pt;}
.x15{left:427.360000pt;}
.xa{left:500.845268pt;}
.xd{left:525.950587pt;}
.x13{left:672.160000pt;}
.x17{left:697.600000pt;}
}




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