
    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_bd164d01e6107f7f2a162eda.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c31160b68e04090b29e05a8.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_3058444344925b818888f077.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0a0876570f4996f2ed343115.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b4f5602cb3e5c5a45a48a917.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bbd63d6dccad9ca5ff503f5c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1d809ea17bdcb1e9249e48e7.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_1ec20269ff1d1733c59900ad.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_21fd634abcae66c97819197c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d003192ccb822d241e76a6b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_9a893e731b3ff2a9f3a1b219.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_d9803d33563c680b1d93cc8f.woff')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.ls17{letter-spacing:-0.477792px;}
.ls29{letter-spacing:-0.459648px;}
.ls16{letter-spacing:-0.381024px;}
.ls18{letter-spacing:-0.338688px;}
.ls9{letter-spacing:-0.328032px;}
.lse{letter-spacing:-0.320544px;}
.ls12{letter-spacing:-0.302400px;}
.ls14{letter-spacing:-0.260064px;}
.ls10{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.175392px;}
.lsa{letter-spacing:-0.173664px;}
.lsd{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.157248px;}
.lsf{letter-spacing:-0.145152px;}
.ls21{letter-spacing:-0.120960px;}
.ls19{letter-spacing:-0.119232px;}
.ls20{letter-spacing:-0.059616px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.120096px;}
.ls22{letter-spacing:0.158400px;}
.lsc{letter-spacing:0.186624px;}
.ls0{letter-spacing:0.300960px;}
.ls1b{letter-spacing:0.429696px;}
.ls1f{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.720576px;}
.ls25{letter-spacing:1.026720px;}
.ls1d{letter-spacing:1.029600px;}
.ls8{letter-spacing:1.044000px;}
.ls28{letter-spacing:1.116000px;}
.ls23{letter-spacing:1.342944px;}
.ls3{letter-spacing:2.251584px;}
.ls6{letter-spacing:3.103200px;}
.ls2{letter-spacing:4.334400px;}
.ls1a{letter-spacing:5.152320px;}
.ls1e{letter-spacing:5.372640px;}
.ls27{letter-spacing:6.272640px;}
.ls1c{letter-spacing:6.881904px;}
.ls2a{letter-spacing:12.748320px;}
.ls5{letter-spacing:13.198464px;}
.ls24{letter-spacing:15.350256px;}
.ls26{letter-spacing:15.350400px;}
.ls4{letter-spacing:19.418112px;}
.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;}
}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.401024px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.ws3{word-spacing:-14.944608px;}
.ws7{word-spacing:-14.896224px;}
.ws5{word-spacing:-14.878080px;}
.wsc{word-spacing:-14.859936px;}
.ws8{word-spacing:-14.781312px;}
.ws4{word-spacing:-14.738976px;}
.wsa{word-spacing:-14.660352px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-4.584960px;}
._b{margin-left:-3.568320px;}
._a{margin-left:-2.265120px;}
._1{margin-left:-1.061280px;}
._0{width:1.157760px;}
._5{width:2.748096px;}
._4{width:4.656960px;}
._9{width:6.652800px;}
._3{width:8.503200px;}
._2{width:9.737280px;}
._f{width:10.825920px;}
._7{width:12.035520px;}
._8{width:13.115520px;}
._c{width:16.295040px;}
._10{width:18.239040px;}
._6{width:19.656000px;}
._d{width:20.986560px;}
._14{width:22.908384px;}
._12{width:25.513920px;}
._13{width:26.581248px;}
._11{width:70.018560px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs7{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y34{bottom:111.960000px;}
.y63{bottom:122.040000px;}
.y86{bottom:125.640000px;}
.y33{bottom:129.240000px;}
.y62{bottom:139.320000px;}
.yaf{bottom:140.760000px;}
.y32{bottom:146.520000px;}
.y61{bottom:156.600000px;}
.yae{bottom:158.040000px;}
.y31{bottom:163.440000px;}
.y85{bottom:165.600000px;}
.yad{bottom:175.320000px;}
.y30{bottom:180.720000px;}
.yac{bottom:192.600000px;}
.y60{bottom:194.760000px;}
.y2f{bottom:198.000000px;}
.y84{bottom:205.560000px;}
.yab{bottom:209.880000px;}
.y5f{bottom:212.040000px;}
.y2e{bottom:215.280000px;}
.y83{bottom:222.840000px;}
.yaa{bottom:227.160000px;}
.y5e{bottom:229.320000px;}
.y2d{bottom:232.560000px;}
.y82{bottom:239.760000px;}
.ya9{bottom:244.440000px;}
.y5d{bottom:246.600000px;}
.y2c{bottom:249.840000px;}
.ya8{bottom:261.720000px;}
.y5c{bottom:263.880000px;}
.y2b{bottom:267.120000px;}
.y81{bottom:278.280000px;}
.ya7{bottom:279.000000px;}
.y5b{bottom:281.160000px;}
.ya6{bottom:296.280000px;}
.y5a{bottom:298.440000px;}
.y2a{bottom:305.640000px;}
.ya5{bottom:313.560000px;}
.y59{bottom:315.720000px;}
.y80{bottom:318.240000px;}
.y29{bottom:324.360000px;}
.ya4{bottom:330.840000px;}
.y58{bottom:333.000000px;}
.y7f{bottom:335.520000px;}
.y28{bottom:341.640000px;}
.ya3{bottom:348.120000px;}
.y57{bottom:349.920000px;}
.ycd{bottom:350.280000px;}
.y7e{bottom:352.800000px;}
.y27{bottom:358.920000px;}
.ya2{bottom:365.400000px;}
.ycc{bottom:367.560000px;}
.y26{bottom:376.200000px;}
.ya1{bottom:382.680000px;}
.y56{bottom:388.440000px;}
.ycb{bottom:390.240000px;}
.y7d{bottom:390.960000px;}
.y25{bottom:393.120000px;}
.ya0{bottom:399.960000px;}
.yca{bottom:402.120000px;}
.y55{bottom:405.720000px;}
.y24{bottom:410.400000px;}
.y9f{bottom:417.240000px;}
.yc9{bottom:419.400000px;}
.y54{bottom:423.000000px;}
.y23{bottom:427.680000px;}
.y7c{bottom:430.920000px;}
.y9e{bottom:434.520000px;}
.y53{bottom:439.920000px;}
.yc8{bottom:442.080000px;}
.y22{bottom:444.960000px;}
.y7b{bottom:448.200000px;}
.y9d{bottom:451.440000px;}
.yc7{bottom:453.960000px;}
.y52{bottom:457.200000px;}
.y21{bottom:462.240000px;}
.y7a{bottom:465.480000px;}
.y9c{bottom:468.720000px;}
.y51{bottom:474.480000px;}
.yc6{bottom:476.640000px;}
.y20{bottom:479.520000px;}
.y79{bottom:482.760000px;}
.y9b{bottom:486.000000px;}
.yc5{bottom:488.520000px;}
.y50{bottom:491.760000px;}
.y1f{bottom:496.800000px;}
.y78{bottom:499.680000px;}
.y9a{bottom:503.280000px;}
.y4f{bottom:509.040000px;}
.yc4{bottom:511.200000px;}
.y1e{bottom:514.080000px;}
.y77{bottom:516.960000px;}
.y99{bottom:520.560000px;}
.yc3{bottom:522.720000px;}
.y4e{bottom:526.320000px;}
.y1d{bottom:532.080000px;}
.y98{bottom:537.840000px;}
.yc2{bottom:545.400000px;}
.y1c{bottom:552.240000px;}
.y97{bottom:555.120000px;}
.y76{bottom:555.480000px;}
.yc1{bottom:562.680000px;}
.y4d{bottom:564.840000px;}
.y1b{bottom:571.680000px;}
.y96{bottom:572.400000px;}
.y75{bottom:572.760000px;}
.yc0{bottom:574.560000px;}
.y74{bottom:589.680000px;}
.ybf{bottom:591.840000px;}
.y1a{bottom:592.560000px;}
.y4c{bottom:604.440000px;}
.y73{bottom:606.960000px;}
.y19{bottom:612.360000px;}
.ybe{bottom:614.520000px;}
.y4b{bottom:621.720000px;}
.y72{bottom:624.240000px;}
.ybd{bottom:626.400000px;}
.y18{bottom:629.640000px;}
.y4a{bottom:639.000000px;}
.y71{bottom:641.520000px;}
.ybc{bottom:643.680000px;}
.y17{bottom:646.920000px;}
.y49{bottom:656.280000px;}
.y70{bottom:658.800000px;}
.y16{bottom:664.200000px;}
.ybb{bottom:666.360000px;}
.y48{bottom:673.560000px;}
.y6f{bottom:676.080000px;}
.yba{bottom:678.960000px;}
.y15{bottom:681.480000px;}
.y47{bottom:690.840000px;}
.y95{bottom:693.360000px;}
.y14{bottom:698.760000px;}
.yb9{bottom:699.120000px;}
.y46{bottom:708.120000px;}
.y94{bottom:710.640000px;}
.y6e{bottom:714.600000px;}
.y13{bottom:715.680000px;}
.y45{bottom:725.400000px;}
.y12{bottom:732.960000px;}
.yb8{bottom:738.720000px;}
.y44{bottom:742.680000px;}
.y93{bottom:748.800000px;}
.y11{bottom:750.240000px;}
.y6d{bottom:754.200000px;}
.yb7{bottom:756.000000px;}
.y43{bottom:759.960000px;}
.y92{bottom:766.080000px;}
.y10{bottom:767.520000px;}
.y6c{bottom:771.480000px;}
.yb6{bottom:773.280000px;}
.y42{bottom:776.880000px;}
.yf{bottom:784.800000px;}
.yb5{bottom:790.560000px;}
.y41{bottom:794.520000px;}
.ye{bottom:802.080000px;}
.y91{bottom:804.600000px;}
.y6b{bottom:810.000000px;}
.yd{bottom:819.360000px;}
.yb4{bottom:828.720000px;}
.y40{bottom:833.040000px;}
.yc{bottom:836.640000px;}
.y90{bottom:844.200000px;}
.yb3{bottom:846.000000px;}
.y6a{bottom:849.600000px;}
.yb{bottom:853.920000px;}
.y8f{bottom:861.480000px;}
.yb2{bottom:863.280000px;}
.y69{bottom:866.880000px;}
.ya{bottom:871.200000px;}
.y3f{bottom:872.640000px;}
.y8e{bottom:878.760000px;}
.y68{bottom:884.160000px;}
.y9{bottom:888.480000px;}
.y3e{bottom:889.920000px;}
.y8d{bottom:896.040000px;}
.y67{bottom:901.440000px;}
.yb1{bottom:901.800000px;}
.y8{bottom:906.120000px;}
.y3d{bottom:906.840000px;}
.y3c{bottom:924.120000px;}
.y7{bottom:931.680000px;}
.y8c{bottom:934.560000px;}
.y66{bottom:939.960000px;}
.y3b{bottom:941.400000px;}
.y6{bottom:952.560000px;}
.y3a{bottom:958.680000px;}
.y5{bottom:965.520000px;}
.y8b{bottom:974.160000px;}
.y39{bottom:975.960000px;}
.y65{bottom:979.560000px;}
.y4{bottom:987.480000px;}
.y8a{bottom:991.440000px;}
.yb0{bottom:993.240000px;}
.y64{bottom:996.840000px;}
.y3{bottom:1008.360000px;}
.y89{bottom:1008.720000px;}
.y38{bottom:1014.120000px;}
.y88{bottom:1026.000000px;}
.y2{bottom:1029.960000px;}
.y37{bottom:1031.400000px;}
.y36{bottom:1048.680000px;}
.y1{bottom:1057.320000px;}
.y87{bottom:1064.520000px;}
.y35{bottom:1065.960000px;}
.ha{height:26.274375px;}
.h4{height:28.220625px;}
.h5{height:31.672266px;}
.h8{height:40.310156px;}
.h7{height:42.022969px;}
.h6{height:44.893125px;}
.h9{height:47.874375px;}
.h2{height:47.988281px;}
.h3{height:61.419375px;}
.h1{height:65.387813px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:162.000000px;}
.x1{left:163.359360px;}
.x2{left:170.326188px;}
.xc{left:189.000000px;}
.x5{left:208.004868px;}
.xd{left:216.000000px;}
.xb{left:348.317892px;}
.xa{left:368.004240px;}
.x10{left:378.000000px;}
.x8{left:399.638520px;}
.x4{left:404.643960px;}
.x6{left:405.826200px;}
.x7{left:408.368160px;}
.xe{left:411.320880px;}
.x9{left:423.720000px;}
.xf{left:439.297560px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.424704pt;}
.ls29{letter-spacing:-0.408576pt;}
.ls16{letter-spacing:-0.338688pt;}
.ls18{letter-spacing:-0.301056pt;}
.ls9{letter-spacing:-0.291584pt;}
.lse{letter-spacing:-0.284928pt;}
.ls12{letter-spacing:-0.268800pt;}
.ls14{letter-spacing:-0.231168pt;}
.ls10{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.155904pt;}
.lsa{letter-spacing:-0.154368pt;}
.lsd{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.139776pt;}
.lsf{letter-spacing:-0.129024pt;}
.ls21{letter-spacing:-0.107520pt;}
.ls19{letter-spacing:-0.105984pt;}
.ls20{letter-spacing:-0.052992pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.106752pt;}
.ls22{letter-spacing:0.140800pt;}
.lsc{letter-spacing:0.165888pt;}
.ls0{letter-spacing:0.267520pt;}
.ls1b{letter-spacing:0.381952pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.640512pt;}
.ls25{letter-spacing:0.912640pt;}
.ls1d{letter-spacing:0.915200pt;}
.ls8{letter-spacing:0.928000pt;}
.ls28{letter-spacing:0.992000pt;}
.ls23{letter-spacing:1.193728pt;}
.ls3{letter-spacing:2.001408pt;}
.ls6{letter-spacing:2.758400pt;}
.ls2{letter-spacing:3.852800pt;}
.ls1a{letter-spacing:4.579840pt;}
.ls1e{letter-spacing:4.775680pt;}
.ls27{letter-spacing:5.575680pt;}
.ls1c{letter-spacing:6.117248pt;}
.ls2a{letter-spacing:11.331840pt;}
.ls5{letter-spacing:11.731968pt;}
.ls24{letter-spacing:13.644672pt;}
.ls26{letter-spacing:13.644800pt;}
.ls4{letter-spacing:17.260544pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.578688pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.ws3{word-spacing:-13.284096pt;}
.ws7{word-spacing:-13.241088pt;}
.ws5{word-spacing:-13.224960pt;}
.wsc{word-spacing:-13.208832pt;}
.ws8{word-spacing:-13.138944pt;}
.ws4{word-spacing:-13.101312pt;}
.wsa{word-spacing:-13.031424pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-4.075520pt;}
._b{margin-left:-3.171840pt;}
._a{margin-left:-2.013440pt;}
._1{margin-left:-0.943360pt;}
._0{width:1.029120pt;}
._5{width:2.442752pt;}
._4{width:4.139520pt;}
._9{width:5.913600pt;}
._3{width:7.558400pt;}
._2{width:8.655360pt;}
._f{width:9.623040pt;}
._7{width:10.698240pt;}
._8{width:11.658240pt;}
._c{width:14.484480pt;}
._10{width:16.212480pt;}
._6{width:17.472000pt;}
._d{width:18.654720pt;}
._14{width:20.363008pt;}
._12{width:22.679040pt;}
._13{width:23.627776pt;}
._11{width:62.238720pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs7{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:99.520000pt;}
.y63{bottom:108.480000pt;}
.y86{bottom:111.680000pt;}
.y33{bottom:114.880000pt;}
.y62{bottom:123.840000pt;}
.yaf{bottom:125.120000pt;}
.y32{bottom:130.240000pt;}
.y61{bottom:139.200000pt;}
.yae{bottom:140.480000pt;}
.y31{bottom:145.280000pt;}
.y85{bottom:147.200000pt;}
.yad{bottom:155.840000pt;}
.y30{bottom:160.640000pt;}
.yac{bottom:171.200000pt;}
.y60{bottom:173.120000pt;}
.y2f{bottom:176.000000pt;}
.y84{bottom:182.720000pt;}
.yab{bottom:186.560000pt;}
.y5f{bottom:188.480000pt;}
.y2e{bottom:191.360000pt;}
.y83{bottom:198.080000pt;}
.yaa{bottom:201.920000pt;}
.y5e{bottom:203.840000pt;}
.y2d{bottom:206.720000pt;}
.y82{bottom:213.120000pt;}
.ya9{bottom:217.280000pt;}
.y5d{bottom:219.200000pt;}
.y2c{bottom:222.080000pt;}
.ya8{bottom:232.640000pt;}
.y5c{bottom:234.560000pt;}
.y2b{bottom:237.440000pt;}
.y81{bottom:247.360000pt;}
.ya7{bottom:248.000000pt;}
.y5b{bottom:249.920000pt;}
.ya6{bottom:263.360000pt;}
.y5a{bottom:265.280000pt;}
.y2a{bottom:271.680000pt;}
.ya5{bottom:278.720000pt;}
.y59{bottom:280.640000pt;}
.y80{bottom:282.880000pt;}
.y29{bottom:288.320000pt;}
.ya4{bottom:294.080000pt;}
.y58{bottom:296.000000pt;}
.y7f{bottom:298.240000pt;}
.y28{bottom:303.680000pt;}
.ya3{bottom:309.440000pt;}
.y57{bottom:311.040000pt;}
.ycd{bottom:311.360000pt;}
.y7e{bottom:313.600000pt;}
.y27{bottom:319.040000pt;}
.ya2{bottom:324.800000pt;}
.ycc{bottom:326.720000pt;}
.y26{bottom:334.400000pt;}
.ya1{bottom:340.160000pt;}
.y56{bottom:345.280000pt;}
.ycb{bottom:346.880000pt;}
.y7d{bottom:347.520000pt;}
.y25{bottom:349.440000pt;}
.ya0{bottom:355.520000pt;}
.yca{bottom:357.440000pt;}
.y55{bottom:360.640000pt;}
.y24{bottom:364.800000pt;}
.y9f{bottom:370.880000pt;}
.yc9{bottom:372.800000pt;}
.y54{bottom:376.000000pt;}
.y23{bottom:380.160000pt;}
.y7c{bottom:383.040000pt;}
.y9e{bottom:386.240000pt;}
.y53{bottom:391.040000pt;}
.yc8{bottom:392.960000pt;}
.y22{bottom:395.520000pt;}
.y7b{bottom:398.400000pt;}
.y9d{bottom:401.280000pt;}
.yc7{bottom:403.520000pt;}
.y52{bottom:406.400000pt;}
.y21{bottom:410.880000pt;}
.y7a{bottom:413.760000pt;}
.y9c{bottom:416.640000pt;}
.y51{bottom:421.760000pt;}
.yc6{bottom:423.680000pt;}
.y20{bottom:426.240000pt;}
.y79{bottom:429.120000pt;}
.y9b{bottom:432.000000pt;}
.yc5{bottom:434.240000pt;}
.y50{bottom:437.120000pt;}
.y1f{bottom:441.600000pt;}
.y78{bottom:444.160000pt;}
.y9a{bottom:447.360000pt;}
.y4f{bottom:452.480000pt;}
.yc4{bottom:454.400000pt;}
.y1e{bottom:456.960000pt;}
.y77{bottom:459.520000pt;}
.y99{bottom:462.720000pt;}
.yc3{bottom:464.640000pt;}
.y4e{bottom:467.840000pt;}
.y1d{bottom:472.960000pt;}
.y98{bottom:478.080000pt;}
.yc2{bottom:484.800000pt;}
.y1c{bottom:490.880000pt;}
.y97{bottom:493.440000pt;}
.y76{bottom:493.760000pt;}
.yc1{bottom:500.160000pt;}
.y4d{bottom:502.080000pt;}
.y1b{bottom:508.160000pt;}
.y96{bottom:508.800000pt;}
.y75{bottom:509.120000pt;}
.yc0{bottom:510.720000pt;}
.y74{bottom:524.160000pt;}
.ybf{bottom:526.080000pt;}
.y1a{bottom:526.720000pt;}
.y4c{bottom:537.280000pt;}
.y73{bottom:539.520000pt;}
.y19{bottom:544.320000pt;}
.ybe{bottom:546.240000pt;}
.y4b{bottom:552.640000pt;}
.y72{bottom:554.880000pt;}
.ybd{bottom:556.800000pt;}
.y18{bottom:559.680000pt;}
.y4a{bottom:568.000000pt;}
.y71{bottom:570.240000pt;}
.ybc{bottom:572.160000pt;}
.y17{bottom:575.040000pt;}
.y49{bottom:583.360000pt;}
.y70{bottom:585.600000pt;}
.y16{bottom:590.400000pt;}
.ybb{bottom:592.320000pt;}
.y48{bottom:598.720000pt;}
.y6f{bottom:600.960000pt;}
.yba{bottom:603.520000pt;}
.y15{bottom:605.760000pt;}
.y47{bottom:614.080000pt;}
.y95{bottom:616.320000pt;}
.y14{bottom:621.120000pt;}
.yb9{bottom:621.440000pt;}
.y46{bottom:629.440000pt;}
.y94{bottom:631.680000pt;}
.y6e{bottom:635.200000pt;}
.y13{bottom:636.160000pt;}
.y45{bottom:644.800000pt;}
.y12{bottom:651.520000pt;}
.yb8{bottom:656.640000pt;}
.y44{bottom:660.160000pt;}
.y93{bottom:665.600000pt;}
.y11{bottom:666.880000pt;}
.y6d{bottom:670.400000pt;}
.yb7{bottom:672.000000pt;}
.y43{bottom:675.520000pt;}
.y92{bottom:680.960000pt;}
.y10{bottom:682.240000pt;}
.y6c{bottom:685.760000pt;}
.yb6{bottom:687.360000pt;}
.y42{bottom:690.560000pt;}
.yf{bottom:697.600000pt;}
.yb5{bottom:702.720000pt;}
.y41{bottom:706.240000pt;}
.ye{bottom:712.960000pt;}
.y91{bottom:715.200000pt;}
.y6b{bottom:720.000000pt;}
.yd{bottom:728.320000pt;}
.yb4{bottom:736.640000pt;}
.y40{bottom:740.480000pt;}
.yc{bottom:743.680000pt;}
.y90{bottom:750.400000pt;}
.yb3{bottom:752.000000pt;}
.y6a{bottom:755.200000pt;}
.yb{bottom:759.040000pt;}
.y8f{bottom:765.760000pt;}
.yb2{bottom:767.360000pt;}
.y69{bottom:770.560000pt;}
.ya{bottom:774.400000pt;}
.y3f{bottom:775.680000pt;}
.y8e{bottom:781.120000pt;}
.y68{bottom:785.920000pt;}
.y9{bottom:789.760000pt;}
.y3e{bottom:791.040000pt;}
.y8d{bottom:796.480000pt;}
.y67{bottom:801.280000pt;}
.yb1{bottom:801.600000pt;}
.y8{bottom:805.440000pt;}
.y3d{bottom:806.080000pt;}
.y3c{bottom:821.440000pt;}
.y7{bottom:828.160000pt;}
.y8c{bottom:830.720000pt;}
.y66{bottom:835.520000pt;}
.y3b{bottom:836.800000pt;}
.y6{bottom:846.720000pt;}
.y3a{bottom:852.160000pt;}
.y5{bottom:858.240000pt;}
.y8b{bottom:865.920000pt;}
.y39{bottom:867.520000pt;}
.y65{bottom:870.720000pt;}
.y4{bottom:877.760000pt;}
.y8a{bottom:881.280000pt;}
.yb0{bottom:882.880000pt;}
.y64{bottom:886.080000pt;}
.y3{bottom:896.320000pt;}
.y89{bottom:896.640000pt;}
.y38{bottom:901.440000pt;}
.y88{bottom:912.000000pt;}
.y2{bottom:915.520000pt;}
.y37{bottom:916.800000pt;}
.y36{bottom:932.160000pt;}
.y1{bottom:939.840000pt;}
.y87{bottom:946.240000pt;}
.y35{bottom:947.520000pt;}
.ha{height:23.355000pt;}
.h4{height:25.085000pt;}
.h5{height:28.153125pt;}
.h8{height:35.831250pt;}
.h7{height:37.353750pt;}
.h6{height:39.905000pt;}
.h9{height:42.555000pt;}
.h2{height:42.656250pt;}
.h3{height:54.595000pt;}
.h1{height:58.122500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:144.000000pt;}
.x1{left:145.208320pt;}
.x2{left:151.401056pt;}
.xc{left:168.000000pt;}
.x5{left:184.893216pt;}
.xd{left:192.000000pt;}
.xb{left:309.615904pt;}
.xa{left:327.114880pt;}
.x10{left:336.000000pt;}
.x8{left:355.234240pt;}
.x4{left:359.683520pt;}
.x6{left:360.734400pt;}
.x7{left:362.993920pt;}
.xe{left:365.618560pt;}
.x9{left:376.640000pt;}
.xf{left:390.486720pt;}
}




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