
    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_5edaf46735614c319ad296c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.758000;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_a98ec9613cc185f488759bb6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123535;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_40e4b1bd9556ef88a786586c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951172;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_297a99622742c30a6848ff99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064000;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_7580df3d75dbcfd73623745d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_ff3a2605c1bfb7aca1651cab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_1a3b19d61d6f593b6ce23cae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_9e83fbcf85c0d4010b1473e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls23{letter-spacing:-6.480000px;}
.ls16{letter-spacing:-4.818000px;}
.ls19{letter-spacing:-4.440000px;}
.ls25{letter-spacing:-2.760000px;}
.ls30{letter-spacing:-2.220000px;}
.ls17{letter-spacing:-2.046000px;}
.ls1d{letter-spacing:-1.782000px;}
.ls21{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.529200px;}
.lsb{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.462000px;}
.ls1b{letter-spacing:-0.396000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.132000px;}
.ls13{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.075600px;}
.ls14{letter-spacing:-0.066000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.264000px;}
.ls20{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.420000px;}
.lse{letter-spacing:0.495000px;}
.ls5{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.600000px;}
.ls31{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.840000px;}
.ls2d{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.960000px;}
.ls11{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.056000px;}
.ls2a{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.117800px;}
.ls32{letter-spacing:1.140000px;}
.lsf{letter-spacing:1.620000px;}
.ls24{letter-spacing:1.680000px;}
.ls33{letter-spacing:2.040000px;}
.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;}
}
.ws6a{word-spacing:-13.440000px;}
.ws35{word-spacing:-12.375000px;}
.ws69{word-spacing:-12.300000px;}
.ws68{word-spacing:-11.700000px;}
.ws67{word-spacing:-11.340000px;}
.ws4e{word-spacing:-8.640000px;}
.ws1e{word-spacing:-7.854000px;}
.ws4d{word-spacing:-4.920000px;}
.ws70{word-spacing:-4.380000px;}
.wsb{word-spacing:-3.696000px;}
.ws1a{word-spacing:-3.600000px;}
.ws48{word-spacing:-3.432000px;}
.ws8{word-spacing:-3.168000px;}
.wse{word-spacing:-3.102000px;}
.wsc{word-spacing:-2.904000px;}
.ws56{word-spacing:-2.880000px;}
.ws19{word-spacing:-2.820000px;}
.ws3e{word-spacing:-2.640000px;}
.ws43{word-spacing:-2.574000px;}
.ws15{word-spacing:-2.376000px;}
.ws31{word-spacing:-2.244000px;}
.ws42{word-spacing:-2.112000px;}
.ws41{word-spacing:-1.914000px;}
.ws6f{word-spacing:-1.860000px;}
.ws9{word-spacing:-1.848000px;}
.ws38{word-spacing:-1.782000px;}
.ws66{word-spacing:-1.740000px;}
.ws32{word-spacing:-1.716000px;}
.ws5b{word-spacing:-1.680000px;}
.ws33{word-spacing:-1.584000px;}
.ws2b{word-spacing:-1.518000px;}
.ws63{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.386000px;}
.ws5{word-spacing:-1.254000px;}
.ws37{word-spacing:-1.188000px;}
.ws0{word-spacing:-1.166400px;}
.ws34{word-spacing:-1.056000px;}
.ws23{word-spacing:-0.990000px;}
.ws6d{word-spacing:-0.960000px;}
.ws6b{word-spacing:-0.900000px;}
.ws7{word-spacing:-0.792000px;}
.ws2c{word-spacing:-0.726000px;}
.ws5d{word-spacing:-0.720000px;}
.ws60{word-spacing:-0.600000px;}
.ws51{word-spacing:-0.594000px;}
.ws5c{word-spacing:-0.540000px;}
.wsa{word-spacing:-0.528000px;}
.ws1f{word-spacing:-0.495000px;}
.ws4a{word-spacing:-0.462000px;}
.ws47{word-spacing:-0.330000px;}
.ws61{word-spacing:-0.300000px;}
.ws58{word-spacing:-0.270000px;}
.ws6{word-spacing:-0.264000px;}
.ws18{word-spacing:-0.132000px;}
.ws24{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.066000px;}
.ws3{word-spacing:0.075600px;}
.ws21{word-spacing:0.120000px;}
.ws1d{word-spacing:0.126000px;}
.ws4c{word-spacing:0.132000px;}
.ws6e{word-spacing:0.180000px;}
.ws2f{word-spacing:0.198000px;}
.ws11{word-spacing:0.264000px;}
.ws46{word-spacing:0.330000px;}
.ws17{word-spacing:0.396000px;}
.ws12{word-spacing:0.462000px;}
.ws13{word-spacing:0.528000px;}
.ws2{word-spacing:0.529200px;}
.ws4{word-spacing:0.576000px;}
.ws50{word-spacing:0.594000px;}
.ws44{word-spacing:0.660000px;}
.ws22{word-spacing:0.726000px;}
.ws3b{word-spacing:0.792000px;}
.ws3c{word-spacing:0.858000px;}
.ws14{word-spacing:0.990000px;}
.wsd{word-spacing:1.056000px;}
.ws39{word-spacing:1.122000px;}
.ws4f{word-spacing:1.188000px;}
.ws57{word-spacing:1.320000px;}
.ws3d{word-spacing:1.386000px;}
.ws26{word-spacing:1.452000px;}
.ws53{word-spacing:1.650000px;}
.ws3f{word-spacing:1.716000px;}
.ws49{word-spacing:1.782000px;}
.ws16{word-spacing:1.848000px;}
.ws1c{word-spacing:1.932000px;}
.ws29{word-spacing:2.046000px;}
.ws52{word-spacing:2.244000px;}
.ws4b{word-spacing:2.310000px;}
.ws27{word-spacing:2.508000px;}
.ws45{word-spacing:2.574000px;}
.ws5e{word-spacing:3.000000px;}
.ws3a{word-spacing:3.036000px;}
.ws5f{word-spacing:3.060000px;}
.ws25{word-spacing:3.102000px;}
.ws64{word-spacing:3.360000px;}
.ws10{word-spacing:3.498000px;}
.ws40{word-spacing:3.630000px;}
.ws65{word-spacing:3.840000px;}
.ws55{word-spacing:4.020000px;}
.wsf{word-spacing:4.026000px;}
.ws36{word-spacing:4.440000px;}
.ws72{word-spacing:4.860000px;}
.ws71{word-spacing:4.920000px;}
.ws20{word-spacing:5.040000px;}
.ws2d{word-spacing:5.082000px;}
.ws2a{word-spacing:5.214000px;}
.ws6c{word-spacing:5.220000px;}
.ws2e{word-spacing:5.412000px;}
.ws62{word-spacing:5.640000px;}
.ws1b{word-spacing:5.700000px;}
.ws5a{word-spacing:5.760000px;}
.ws28{word-spacing:6.270000px;}
.ws59{word-spacing:7.200000px;}
._1{margin-left:-7.091280px;}
._c{margin-left:-5.930400px;}
._7{margin-left:-4.864680px;}
._3{margin-left:-3.815640px;}
._2{margin-left:-2.246400px;}
._0{margin-left:-1.001160px;}
._4{width:1.156680px;}
._5{width:2.757600px;}
._6{width:3.823200px;}
._a{width:4.832280px;}
._8{width:5.913600px;}
._9{width:7.055400px;}
._b{width:9.619440px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs0{font-size:48.600000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y22{bottom:70.883850px;}
.y20{bottom:99.916200px;}
.y79{bottom:102.416400px;}
.y91{bottom:106.474500px;}
.y1f{bottom:111.917700px;}
.y4d{bottom:112.441050px;}
.y78{bottom:120.417900px;}
.y90{bottom:122.974500px;}
.y1e{bottom:123.919200px;}
.y4c{bottom:130.442550px;}
.y77{bottom:138.419400px;}
.y8f{bottom:139.474500px;}
.y1d{bottom:140.173200px;}
.y4b{bottom:148.444050px;}
.y8e{bottom:155.974500px;}
.y76{bottom:156.420900px;}
.y4a{bottom:166.445550px;}
.y8d{bottom:172.474500px;}
.y75{bottom:174.422400px;}
.y49{bottom:184.447050px;}
.y8c{bottom:188.974500px;}
.y1c{bottom:201.072600px;}
.y48{bottom:202.448550px;}
.y8b{bottom:205.474500px;}
.y74{bottom:210.425400px;}
.y1b{bottom:219.072600px;}
.y47{bottom:220.450050px;}
.y8a{bottom:221.974500px;}
.y73{bottom:228.426900px;}
.y46{bottom:238.451550px;}
.y89{bottom:238.474500px;}
.y1a{bottom:246.042600px;}
.y72{bottom:246.428400px;}
.y88{bottom:254.974500px;}
.y45{bottom:256.453050px;}
.y19{bottom:264.044100px;}
.y71{bottom:264.429900px;}
.y87{bottom:271.474500px;}
.y44{bottom:274.454550px;}
.y18{bottom:282.045600px;}
.y70{bottom:282.431400px;}
.y86{bottom:287.974500px;}
.y43{bottom:292.456050px;}
.y17{bottom:300.047100px;}
.y6f{bottom:300.432900px;}
.y85{bottom:304.474500px;}
.y42{bottom:310.457550px;}
.y16{bottom:318.048600px;}
.y6e{bottom:318.434400px;}
.y84{bottom:320.974500px;}
.y41{bottom:328.459050px;}
.y15{bottom:336.050100px;}
.y6d{bottom:336.435900px;}
.y40{bottom:346.460550px;}
.y83{bottom:346.969200px;}
.y14{bottom:354.051600px;}
.y6c{bottom:354.437400px;}
.y3f{bottom:364.462050px;}
.y13{bottom:372.053100px;}
.y6b{bottom:372.438900px;}
.y3e{bottom:382.463550px;}
.y12{bottom:390.054600px;}
.y6a{bottom:390.440400px;}
.y82{bottom:390.475050px;}
.y3d{bottom:400.465050px;}
.y11{bottom:408.056100px;}
.y69{bottom:408.441900px;}
.y81{bottom:408.476550px;}
.y3c{bottom:418.466550px;}
.y10{bottom:426.057600px;}
.y68{bottom:426.443400px;}
.y80{bottom:426.478050px;}
.y3b{bottom:436.468050px;}
.yf{bottom:444.059100px;}
.y67{bottom:444.444900px;}
.y7f{bottom:444.479550px;}
.y3a{bottom:454.469550px;}
.ye{bottom:462.060600px;}
.y66{bottom:462.446400px;}
.y7e{bottom:462.481050px;}
.y39{bottom:472.471050px;}
.yd{bottom:480.062100px;}
.y65{bottom:480.447900px;}
.y7d{bottom:489.482400px;}
.y38{bottom:490.472550px;}
.yc{bottom:498.063600px;}
.y64{bottom:498.449400px;}
.y7c{bottom:507.482400px;}
.yb{bottom:516.065100px;}
.y63{bottom:516.450900px;}
.y7b{bottom:525.482400px;}
.y37{bottom:526.475550px;}
.ya{bottom:534.066600px;}
.y62{bottom:534.452400px;}
.y7a{bottom:543.482400px;}
.y36{bottom:544.477050px;}
.y9{bottom:552.068100px;}
.y61{bottom:552.453900px;}
.y35{bottom:562.478550px;}
.y8{bottom:570.069600px;}
.y60{bottom:570.455400px;}
.y34{bottom:580.480050px;}
.y7{bottom:588.071100px;}
.y5f{bottom:588.456900px;}
.y33{bottom:598.481550px;}
.y6{bottom:606.072600px;}
.y5e{bottom:606.458400px;}
.ya3{bottom:614.999400px;}
.y32{bottom:616.483050px;}
.y5d{bottom:624.459900px;}
.ya2{bottom:631.499400px;}
.y31{bottom:634.484550px;}
.y5c{bottom:642.461400px;}
.ya1{bottom:647.999400px;}
.y30{bottom:652.486050px;}
.y5b{bottom:660.462900px;}
.ya0{bottom:664.499400px;}
.y2f{bottom:670.487550px;}
.y5a{bottom:678.464400px;}
.y9f{bottom:680.999400px;}
.y2e{bottom:688.489050px;}
.y59{bottom:696.465900px;}
.y9e{bottom:697.499400px;}
.y2d{bottom:706.490550px;}
.y9d{bottom:713.999400px;}
.y58{bottom:714.467400px;}
.y2c{bottom:724.492050px;}
.y9c{bottom:730.499400px;}
.y57{bottom:732.468900px;}
.y2b{bottom:742.493550px;}
.y9b{bottom:746.999400px;}
.y56{bottom:750.470400px;}
.y2a{bottom:760.495050px;}
.y9a{bottom:763.499400px;}
.y55{bottom:768.471900px;}
.y29{bottom:778.496550px;}
.y99{bottom:779.999400px;}
.y54{bottom:786.473400px;}
.y5{bottom:795.066450px;}
.y28{bottom:796.498050px;}
.y98{bottom:796.499400px;}
.y53{bottom:804.474900px;}
.y97{bottom:812.999400px;}
.y4{bottom:816.072450px;}
.y52{bottom:822.476400px;}
.y27{bottom:823.493850px;}
.y96{bottom:829.499400px;}
.y51{bottom:840.477900px;}
.y26{bottom:841.493850px;}
.y3{bottom:845.582700px;}
.y95{bottom:845.999400px;}
.y50{bottom:858.479400px;}
.y25{bottom:859.493850px;}
.y94{bottom:862.499400px;}
.y2{bottom:870.776400px;}
.y4f{bottom:876.480900px;}
.y24{bottom:877.493850px;}
.y93{bottom:878.999400px;}
.y4e{bottom:894.482400px;}
.y23{bottom:895.493850px;}
.y92{bottom:895.499400px;}
.y1{bottom:895.976400px;}
.y21{bottom:934.435800px;}
.h7{height:30.597656px;}
.h2{height:35.915400px;}
.hb{height:39.287109px;}
.h8{height:41.176758px;}
.h6{height:47.760000px;}
.ha{height:50.424000px;}
.h5{height:52.536000px;}
.h9{height:54.902344px;}
.h4{height:57.312000px;}
.h3{height:69.176953px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x1{left:106.299150px;}
.x2{left:127.551150px;}
.x5{left:508.455450px;}
.x6{left:578.591100px;}
.x4{left:579.697050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-5.760000pt;}
.ls16{letter-spacing:-4.282667pt;}
.ls19{letter-spacing:-3.946667pt;}
.ls25{letter-spacing:-2.453333pt;}
.ls30{letter-spacing:-1.973333pt;}
.ls17{letter-spacing:-1.818667pt;}
.ls1d{letter-spacing:-1.584000pt;}
.ls21{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.470400pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.410667pt;}
.ls1b{letter-spacing:-0.352000pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.067200pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls20{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.440000pt;}
.ls5{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls31{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.746667pt;}
.ls2d{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls11{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.938667pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls0{letter-spacing:0.993600pt;}
.ls32{letter-spacing:1.013333pt;}
.lsf{letter-spacing:1.440000pt;}
.ls24{letter-spacing:1.493333pt;}
.ls33{letter-spacing:1.813333pt;}
.ws6a{word-spacing:-11.946667pt;}
.ws35{word-spacing:-11.000000pt;}
.ws69{word-spacing:-10.933333pt;}
.ws68{word-spacing:-10.400000pt;}
.ws67{word-spacing:-10.080000pt;}
.ws4e{word-spacing:-7.680000pt;}
.ws1e{word-spacing:-6.981333pt;}
.ws4d{word-spacing:-4.373333pt;}
.ws70{word-spacing:-3.893333pt;}
.wsb{word-spacing:-3.285333pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws48{word-spacing:-3.050667pt;}
.ws8{word-spacing:-2.816000pt;}
.wse{word-spacing:-2.757333pt;}
.wsc{word-spacing:-2.581333pt;}
.ws56{word-spacing:-2.560000pt;}
.ws19{word-spacing:-2.506667pt;}
.ws3e{word-spacing:-2.346667pt;}
.ws43{word-spacing:-2.288000pt;}
.ws15{word-spacing:-2.112000pt;}
.ws31{word-spacing:-1.994667pt;}
.ws42{word-spacing:-1.877333pt;}
.ws41{word-spacing:-1.701333pt;}
.ws6f{word-spacing:-1.653333pt;}
.ws9{word-spacing:-1.642667pt;}
.ws38{word-spacing:-1.584000pt;}
.ws66{word-spacing:-1.546667pt;}
.ws32{word-spacing:-1.525333pt;}
.ws5b{word-spacing:-1.493333pt;}
.ws33{word-spacing:-1.408000pt;}
.ws2b{word-spacing:-1.349333pt;}
.ws63{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.232000pt;}
.ws5{word-spacing:-1.114667pt;}
.ws37{word-spacing:-1.056000pt;}
.ws0{word-spacing:-1.036800pt;}
.ws34{word-spacing:-0.938667pt;}
.ws23{word-spacing:-0.880000pt;}
.ws6d{word-spacing:-0.853333pt;}
.ws6b{word-spacing:-0.800000pt;}
.ws7{word-spacing:-0.704000pt;}
.ws2c{word-spacing:-0.645333pt;}
.ws5d{word-spacing:-0.640000pt;}
.ws60{word-spacing:-0.533333pt;}
.ws51{word-spacing:-0.528000pt;}
.ws5c{word-spacing:-0.480000pt;}
.wsa{word-spacing:-0.469333pt;}
.ws1f{word-spacing:-0.440000pt;}
.ws4a{word-spacing:-0.410667pt;}
.ws47{word-spacing:-0.293333pt;}
.ws61{word-spacing:-0.266667pt;}
.ws58{word-spacing:-0.240000pt;}
.ws6{word-spacing:-0.234667pt;}
.ws18{word-spacing:-0.117333pt;}
.ws24{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.058667pt;}
.ws3{word-spacing:0.067200pt;}
.ws21{word-spacing:0.106667pt;}
.ws1d{word-spacing:0.112000pt;}
.ws4c{word-spacing:0.117333pt;}
.ws6e{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.176000pt;}
.ws11{word-spacing:0.234667pt;}
.ws46{word-spacing:0.293333pt;}
.ws17{word-spacing:0.352000pt;}
.ws12{word-spacing:0.410667pt;}
.ws13{word-spacing:0.469333pt;}
.ws2{word-spacing:0.470400pt;}
.ws4{word-spacing:0.512000pt;}
.ws50{word-spacing:0.528000pt;}
.ws44{word-spacing:0.586667pt;}
.ws22{word-spacing:0.645333pt;}
.ws3b{word-spacing:0.704000pt;}
.ws3c{word-spacing:0.762667pt;}
.ws14{word-spacing:0.880000pt;}
.wsd{word-spacing:0.938667pt;}
.ws39{word-spacing:0.997333pt;}
.ws4f{word-spacing:1.056000pt;}
.ws57{word-spacing:1.173333pt;}
.ws3d{word-spacing:1.232000pt;}
.ws26{word-spacing:1.290667pt;}
.ws53{word-spacing:1.466667pt;}
.ws3f{word-spacing:1.525333pt;}
.ws49{word-spacing:1.584000pt;}
.ws16{word-spacing:1.642667pt;}
.ws1c{word-spacing:1.717333pt;}
.ws29{word-spacing:1.818667pt;}
.ws52{word-spacing:1.994667pt;}
.ws4b{word-spacing:2.053333pt;}
.ws27{word-spacing:2.229333pt;}
.ws45{word-spacing:2.288000pt;}
.ws5e{word-spacing:2.666667pt;}
.ws3a{word-spacing:2.698667pt;}
.ws5f{word-spacing:2.720000pt;}
.ws25{word-spacing:2.757333pt;}
.ws64{word-spacing:2.986667pt;}
.ws10{word-spacing:3.109333pt;}
.ws40{word-spacing:3.226667pt;}
.ws65{word-spacing:3.413333pt;}
.ws55{word-spacing:3.573333pt;}
.wsf{word-spacing:3.578667pt;}
.ws36{word-spacing:3.946667pt;}
.ws72{word-spacing:4.320000pt;}
.ws71{word-spacing:4.373333pt;}
.ws20{word-spacing:4.480000pt;}
.ws2d{word-spacing:4.517333pt;}
.ws2a{word-spacing:4.634667pt;}
.ws6c{word-spacing:4.640000pt;}
.ws2e{word-spacing:4.810667pt;}
.ws62{word-spacing:5.013333pt;}
.ws1b{word-spacing:5.066667pt;}
.ws5a{word-spacing:5.120000pt;}
.ws28{word-spacing:5.573333pt;}
.ws59{word-spacing:6.400000pt;}
._1{margin-left:-6.303360pt;}
._c{margin-left:-5.271467pt;}
._7{margin-left:-4.324160pt;}
._3{margin-left:-3.391680pt;}
._2{margin-left:-1.996800pt;}
._0{margin-left:-0.889920pt;}
._4{width:1.028160pt;}
._5{width:2.451200pt;}
._6{width:3.398400pt;}
._a{width:4.295360pt;}
._8{width:5.256533pt;}
._9{width:6.271467pt;}
._b{width:8.550613pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs0{font-size:43.200000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:63.007867pt;}
.y20{bottom:88.814400pt;}
.y79{bottom:91.036800pt;}
.y91{bottom:94.644000pt;}
.y1f{bottom:99.482400pt;}
.y4d{bottom:99.947600pt;}
.y78{bottom:107.038133pt;}
.y90{bottom:109.310667pt;}
.y1e{bottom:110.150400pt;}
.y4c{bottom:115.948933pt;}
.y77{bottom:123.039467pt;}
.y8f{bottom:123.977333pt;}
.y1d{bottom:124.598400pt;}
.y4b{bottom:131.950267pt;}
.y8e{bottom:138.644000pt;}
.y76{bottom:139.040800pt;}
.y4a{bottom:147.951600pt;}
.y8d{bottom:153.310667pt;}
.y75{bottom:155.042133pt;}
.y49{bottom:163.952933pt;}
.y8c{bottom:167.977333pt;}
.y1c{bottom:178.731200pt;}
.y48{bottom:179.954267pt;}
.y8b{bottom:182.644000pt;}
.y74{bottom:187.044800pt;}
.y1b{bottom:194.731200pt;}
.y47{bottom:195.955600pt;}
.y8a{bottom:197.310667pt;}
.y73{bottom:203.046133pt;}
.y46{bottom:211.956933pt;}
.y89{bottom:211.977333pt;}
.y1a{bottom:218.704533pt;}
.y72{bottom:219.047467pt;}
.y88{bottom:226.644000pt;}
.y45{bottom:227.958267pt;}
.y19{bottom:234.705867pt;}
.y71{bottom:235.048800pt;}
.y87{bottom:241.310667pt;}
.y44{bottom:243.959600pt;}
.y18{bottom:250.707200pt;}
.y70{bottom:251.050133pt;}
.y86{bottom:255.977333pt;}
.y43{bottom:259.960933pt;}
.y17{bottom:266.708533pt;}
.y6f{bottom:267.051467pt;}
.y85{bottom:270.644000pt;}
.y42{bottom:275.962267pt;}
.y16{bottom:282.709867pt;}
.y6e{bottom:283.052800pt;}
.y84{bottom:285.310667pt;}
.y41{bottom:291.963600pt;}
.y15{bottom:298.711200pt;}
.y6d{bottom:299.054133pt;}
.y40{bottom:307.964933pt;}
.y83{bottom:308.417067pt;}
.y14{bottom:314.712533pt;}
.y6c{bottom:315.055467pt;}
.y3f{bottom:323.966267pt;}
.y13{bottom:330.713867pt;}
.y6b{bottom:331.056800pt;}
.y3e{bottom:339.967600pt;}
.y12{bottom:346.715200pt;}
.y6a{bottom:347.058133pt;}
.y82{bottom:347.088933pt;}
.y3d{bottom:355.968933pt;}
.y11{bottom:362.716533pt;}
.y69{bottom:363.059467pt;}
.y81{bottom:363.090267pt;}
.y3c{bottom:371.970267pt;}
.y10{bottom:378.717867pt;}
.y68{bottom:379.060800pt;}
.y80{bottom:379.091600pt;}
.y3b{bottom:387.971600pt;}
.yf{bottom:394.719200pt;}
.y67{bottom:395.062133pt;}
.y7f{bottom:395.092933pt;}
.y3a{bottom:403.972933pt;}
.ye{bottom:410.720533pt;}
.y66{bottom:411.063467pt;}
.y7e{bottom:411.094267pt;}
.y39{bottom:419.974267pt;}
.yd{bottom:426.721867pt;}
.y65{bottom:427.064800pt;}
.y7d{bottom:435.095467pt;}
.y38{bottom:435.975600pt;}
.yc{bottom:442.723200pt;}
.y64{bottom:443.066133pt;}
.y7c{bottom:451.095467pt;}
.yb{bottom:458.724533pt;}
.y63{bottom:459.067467pt;}
.y7b{bottom:467.095467pt;}
.y37{bottom:467.978267pt;}
.ya{bottom:474.725867pt;}
.y62{bottom:475.068800pt;}
.y7a{bottom:483.095467pt;}
.y36{bottom:483.979600pt;}
.y9{bottom:490.727200pt;}
.y61{bottom:491.070133pt;}
.y35{bottom:499.980933pt;}
.y8{bottom:506.728533pt;}
.y60{bottom:507.071467pt;}
.y34{bottom:515.982267pt;}
.y7{bottom:522.729867pt;}
.y5f{bottom:523.072800pt;}
.y33{bottom:531.983600pt;}
.y6{bottom:538.731200pt;}
.y5e{bottom:539.074133pt;}
.ya3{bottom:546.666133pt;}
.y32{bottom:547.984933pt;}
.y5d{bottom:555.075467pt;}
.ya2{bottom:561.332800pt;}
.y31{bottom:563.986267pt;}
.y5c{bottom:571.076800pt;}
.ya1{bottom:575.999467pt;}
.y30{bottom:579.987600pt;}
.y5b{bottom:587.078133pt;}
.ya0{bottom:590.666133pt;}
.y2f{bottom:595.988933pt;}
.y5a{bottom:603.079467pt;}
.y9f{bottom:605.332800pt;}
.y2e{bottom:611.990267pt;}
.y59{bottom:619.080800pt;}
.y9e{bottom:619.999467pt;}
.y2d{bottom:627.991600pt;}
.y9d{bottom:634.666133pt;}
.y58{bottom:635.082133pt;}
.y2c{bottom:643.992933pt;}
.y9c{bottom:649.332800pt;}
.y57{bottom:651.083467pt;}
.y2b{bottom:659.994267pt;}
.y9b{bottom:663.999467pt;}
.y56{bottom:667.084800pt;}
.y2a{bottom:675.995600pt;}
.y9a{bottom:678.666133pt;}
.y55{bottom:683.086133pt;}
.y29{bottom:691.996933pt;}
.y99{bottom:693.332800pt;}
.y54{bottom:699.087467pt;}
.y5{bottom:706.725733pt;}
.y28{bottom:707.998267pt;}
.y98{bottom:707.999467pt;}
.y53{bottom:715.088800pt;}
.y97{bottom:722.666133pt;}
.y4{bottom:725.397733pt;}
.y52{bottom:731.090133pt;}
.y27{bottom:731.994533pt;}
.y96{bottom:737.332800pt;}
.y51{bottom:747.091467pt;}
.y26{bottom:747.994533pt;}
.y3{bottom:751.629067pt;}
.y95{bottom:751.999467pt;}
.y50{bottom:763.092800pt;}
.y25{bottom:763.994533pt;}
.y94{bottom:766.666133pt;}
.y2{bottom:774.023467pt;}
.y4f{bottom:779.094133pt;}
.y24{bottom:779.994533pt;}
.y93{bottom:781.332800pt;}
.y4e{bottom:795.095467pt;}
.y23{bottom:795.994533pt;}
.y92{bottom:795.999467pt;}
.y1{bottom:796.423467pt;}
.y21{bottom:830.609600pt;}
.h7{height:27.197917pt;}
.h2{height:31.924800pt;}
.hb{height:34.921875pt;}
.h8{height:36.601562pt;}
.h6{height:42.453333pt;}
.ha{height:44.821333pt;}
.h5{height:46.698667pt;}
.h9{height:48.802083pt;}
.h4{height:50.944000pt;}
.h3{height:61.490625pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x1{left:94.488133pt;}
.x2{left:113.378800pt;}
.x5{left:451.960400pt;}
.x6{left:514.303200pt;}
.x4{left:515.286267pt;}
}




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