
    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_1fa78331ef2749146379bad5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752000;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_0608efe2c6525f028d5d6296.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.197000;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_cdd73d83b3c8cb913c0f7081.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_0555a5aee13967abd4c608be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.283203;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_fa5709b7eeb655eceee52182.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.133000;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_dbaca491e973089b0b67bb48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.265200px;}
.ls9{letter-spacing:-0.184200px;}
.ls10{letter-spacing:-0.169800px;}
.ls7{letter-spacing:-0.152400px;}
.ls15{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.135600px;}
.lsa{letter-spacing:-0.083400px;}
.ls0{letter-spacing:-0.075000px;}
.ls16{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.051840px;}
.ls3{letter-spacing:-0.040320px;}
.ls11{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000026px;}
.ls12{letter-spacing:0.005754px;}
.lsb{letter-spacing:0.080400px;}
.ls1d{letter-spacing:0.080673px;}
.ls1f{letter-spacing:0.135404px;}
.lsd{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.147000px;}
.ls14{letter-spacing:0.155400px;}
.ls2{letter-spacing:0.199200px;}
.ls13{letter-spacing:0.219000px;}
.ls8{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.348600px;}
.ls18{letter-spacing:0.357000px;}
.ls2c{letter-spacing:0.381620px;}
.ls2d{letter-spacing:46.074704px;}
.ls1a{letter-spacing:58.320004px;}
.ls1e{letter-spacing:59.039974px;}
.ls29{letter-spacing:65.514691px;}
.ls20{letter-spacing:71.975964px;}
.ls26{letter-spacing:75.576000px;}
.ls28{letter-spacing:77.015988px;}
.ls19{letter-spacing:78.455975px;}
.ls17{letter-spacing:92.135967px;}
.ls22{letter-spacing:110.880016px;}
.ls25{letter-spacing:112.320049px;}
.ls23{letter-spacing:114.480053px;}
.ls24{letter-spacing:115.920040px;}
.ls1b{letter-spacing:116.640057px;}
.ls1c{letter-spacing:117.360027px;}
.ls21{letter-spacing:124.560055px;}
.ls27{letter-spacing:128.160046px;}
.ls2b{letter-spacing:840.180117px;}
.ls4{letter-spacing:847.596052px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(111,177,77),0 0.015em rgb(111,177,77),0.015em 0 rgb(111,177,77),0 -0.015em  rgb(111,177,77);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(111,177,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-47.675278px;}
.ws12{word-spacing:-27.100080px;}
.wsd{word-spacing:-18.792000px;}
.ws13{word-spacing:-18.751674px;}
.ws10{word-spacing:-18.745920px;}
.wsc{word-spacing:-18.720000px;}
.wsf{word-spacing:-17.711880px;}
.ws5{word-spacing:-17.680080px;}
.wsb{word-spacing:-17.510280px;}
.ws3{word-spacing:-17.501880px;}
.ws11{word-spacing:-17.490480px;}
.ws15{word-spacing:-17.435280px;}
.wsa{word-spacing:-17.360634px;}
.ws4{word-spacing:-17.354880px;}
.ws1{word-spacing:-17.314560px;}
.ws6{word-spacing:-17.271480px;}
.ws7{word-spacing:-17.219280px;}
.wse{word-spacing:-17.202480px;}
.ws9{word-spacing:-17.185080px;}
.ws14{word-spacing:-17.170680px;}
.ws8{word-spacing:-17.089680px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-16.403974px;}
._18{margin-left:-14.311621px;}
._e{margin-left:-12.939327px;}
._17{margin-left:-11.440822px;}
._c{margin-left:-10.248462px;}
._1c{margin-left:-8.961534px;}
._d{margin-left:-7.869052px;}
._b{margin-left:-6.331618px;}
._14{margin-left:-4.271183px;}
._6{margin-left:-3.012480px;}
._0{margin-left:-1.640160px;}
._1{width:1.065758px;}
._7{width:2.215978px;}
._13{width:13.314240px;}
._16{width:14.749762px;}
._1d{width:15.897600px;}
._19{width:17.126855px;}
._1f{width:25.237440px;}
._1e{width:26.694720px;}
._5{width:33.812585px;}
._4{width:35.798400px;}
._3{width:36.875520px;}
._2{width:49.983840px;}
._10{width:67.084349px;}
._1a{width:80.099058px;}
._8{width:85.098152px;}
._15{width:98.467905px;}
._1b{width:139.584339px;}
._11{width:147.728684px;}
._12{width:149.090400px;}
._a{width:234.622080px;}
._9{width:300.530880px;}
.fc5{color:transparent;}
.fc4{color:rgb(54,95,145);}
.fc2{color:rgb(50,146,68);}
.fc1{color:rgb(111,177,77);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:43.200000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:167.759995px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.959999px;}
.y32{bottom:4.140002px;}
.y3f{bottom:4.140015px;}
.y61{bottom:4.320007px;}
.y5d{bottom:4.500000px;}
.y4e{bottom:4.679993px;}
.y64{bottom:4.680038px;}
.y52{bottom:4.859985px;}
.y68{bottom:4.860031px;}
.y54{bottom:4.904938px;}
.y5c{bottom:5.039978px;}
.y27{bottom:5.040000px;}
.y5f{bottom:5.040024px;}
.y4c{bottom:5.579956px;}
.y26{bottom:5.759995px;}
.y1b{bottom:6.119980px;}
.y21{bottom:6.120003px;}
.y35{bottom:6.120004px;}
.y24{bottom:6.300018px;}
.y1a{bottom:6.839996px;}
.y34{bottom:6.839998px;}
.y20{bottom:6.840019px;}
.y23{bottom:7.020011px;}
.y5a{bottom:8.099945px;}
.y66{bottom:8.460022px;}
.y42{bottom:9.000000px;}
.yc{bottom:13.140015px;}
.y57{bottom:14.219971px;}
.y2c{bottom:23.219994px;}
.y58{bottom:24.119934px;}
.y31{bottom:24.120002px;}
.y4a{bottom:24.120026px;}
.y3e{bottom:24.300018px;}
.y30{bottom:24.839996px;}
.y1e{bottom:28.259995px;}
.y1d{bottom:28.980011px;}
.y46{bottom:29.160004px;}
.y41{bottom:29.204956px;}
.y2e{bottom:41.759994px;}
.yb{bottom:42.120026px;}
.y2b{bottom:42.479988px;}
.y44{bottom:44.280029px;}
.y7{bottom:56.159998px;}
.y6{bottom:70.775997px;}
.ya{bottom:77.760040px;}
.y5{bottom:85.355999px;}
.y4{bottom:101.016003px;}
.y8b{bottom:131.436000px;}
.y36{bottom:139.896000px;}
.y8a{bottom:153.029995px;}
.y33{bottom:156.810000px;}
.y2f{bottom:179.669998px;}
.y89{bottom:182.370003px;}
.y88{bottom:211.530006px;}
.y2a{bottom:220.530006px;}
.y87{bottom:240.690010px;}
.y86{bottom:269.849991px;}
.y29{bottom:278.849991px;}
.y85{bottom:291.629997px;}
.y28{bottom:301.889992px;}
.y84{bottom:320.790000px;}
.y25{bottom:324.750000px;}
.y22{bottom:346.394989px;}
.y83{bottom:350.174995px;}
.y1f{bottom:369.434990px;}
.y82{bottom:371.775009px;}
.y1c{bottom:392.294998px;}
.y81{bottom:400.935013px;}
.y80{bottom:430.275009px;}
.y19{bottom:437.294998px;}
.y7f{bottom:459.435013px;}
.y18{bottom:477.794998px;}
.y7e{bottom:481.214996px;}
.y9f{bottom:498.675018px;}
.y7d{bottom:510.375000px;}
.y17{bottom:511.634995px;}
.y7c{bottom:531.974991px;}
.y9e{bottom:532.335022px;}
.y16{bottom:545.294998px;}
.y7b{bottom:561.314987px;}
.y9d{bottom:561.494980px;}
.y15{bottom:578.955002px;}
.y7a{bottom:582.914978px;}
.y9c{bottom:590.654984px;}
.ya5{bottom:595.335022px;}
.y69{bottom:600.554993px;}
.y79{bottom:612.105011px;}
.y14{bottom:612.644989px;}
.y67{bottom:617.324982px;}
.y9b{bottom:620.025009px;}
.y78{bottom:633.884995px;}
.y65{bottom:639.464996px;}
.y13{bottom:646.484985px;}
.y9a{bottom:649.185013px;}
.y77{bottom:663.044998px;}
.y63{bottom:669.164978px;}
.y99{bottom:678.345016px;}
.y12{bottom:680.144989px;}
.y76{bottom:684.824982px;}
.y62{bottom:691.304993px;}
.y48{bottom:701.564987px;}
.y98{bottom:707.505020px;}
.y60{bottom:712.185013px;}
.y11{bottom:713.804993px;}
.y75{bottom:713.984985px;}
.y5e{bottom:733.244980px;}
.y47{bottom:735.224991px;}
.y74{bottom:735.765015px;}
.y97{bottom:736.845016px;}
.y10{bottom:747.464996px;}
.y45{bottom:751.964996px;}
.y5b{bottom:755.925018px;}
.y96{bottom:758.445007px;}
.y73{bottom:764.925018px;}
.yf{bottom:774.105011px;}
.y59{bottom:778.605011px;}
.y72{bottom:786.704956px;}
.y95{bottom:787.785004px;}
.y43{bottom:797.864960px;}
.y56{bottom:807.405029px;}
.y94{bottom:809.385040px;}
.y71{bottom:815.864960px;}
.ye{bottom:825.225037px;}
.y93{bottom:838.545044px;}
.y70{bottom:845.024963px;}
.y55{bottom:848.265015px;}
.y40{bottom:858.885040px;}
.yab{bottom:866.265015px;}
.y92{bottom:867.885040px;}
.y53{bottom:870.405029px;}
.y6f{bottom:874.230011px;}
.yd{bottom:876.570007px;}
.y51{bottom:892.589996px;}
.y91{bottom:897.089996px;}
.y6e{bottom:903.570007px;}
.y3d{bottom:904.829956px;}
.y50{bottom:914.730011px;}
.y9{bottom:917.969971px;}
.ya4{bottom:923.910004px;}
.y90{bottom:926.250000px;}
.y6d{bottom:932.730011px;}
.y4f{bottom:935.789978px;}
.ya3{bottom:945.690033px;}
.yaa{bottom:953.969971px;}
.y8f{bottom:955.410004px;}
.y4d{bottom:957.929993px;}
.y6c{bottom:961.890015px;}
.y3c{bottom:966.030029px;}
.ya2{bottom:967.289978px;}
.ya9{bottom:975.570007px;}
.y4b{bottom:980.070007px;}
.y8e{bottom:984.750000px;}
.y6b{bottom:991.050018px;}
.ya1{bottom:991.589996px;}
.ya8{bottom:997.350037px;}
.y49{bottom:1003.829956px;}
.y3b{bottom:1007.070007px;}
.y8d{bottom:1013.910004px;}
.y6a{bottom:1015.890015px;}
.ya7{bottom:1018.949982px;}
.y3a{bottom:1028.670044px;}
.ya0{bottom:1038.570007px;}
.ya6{bottom:1040.730011px;}
.y8c{bottom:1043.070007px;}
.y8{bottom:1047.570007px;}
.y39{bottom:1065.030029px;}
.y38{bottom:1072.230011px;}
.y3{bottom:1106.070007px;}
.y2{bottom:1132.530029px;}
.y1{bottom:1173.420044px;}
.y37{bottom:1200.299100px;}
.h1b{height:20.159999px;}
.h18{height:20.340000px;}
.hc{height:20.916000px;}
.h16{height:21.240000px;}
.h17{height:21.420000px;}
.h19{height:21.456000px;}
.hb{height:21.960000px;}
.h8{height:22.140000px;}
.h14{height:23.039999px;}
.h1a{height:28.079999px;}
.h1c{height:28.980000px;}
.he{height:40.140000px;}
.hf{height:42.335156px;}
.ha{height:44.280000px;}
.h13{height:45.180000px;}
.h11{height:45.215999px;}
.h5{height:48.143520px;}
.hd{height:57.600002px;}
.h9{height:58.988160px;}
.h12{height:60.300000px;}
.h1e{height:61.669440px;}
.h3{height:66.107520px;}
.h15{height:71.856000px;}
.h10{height:89.152560px;}
.h1d{height:95.245664px;}
.h7{height:118.439999px;}
.h4{height:124.477916px;}
.h6{height:156.184555px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:45.180000px;}
.w6{width:52.199999px;}
.wd{width:82.260000px;}
.w7{width:86.075998px;}
.w8{width:136.799995px;}
.w9{width:137.556004px;}
.w4{width:188.129997px;}
.wa{width:221.610008px;}
.w5{width:479.955002px;}
.wc{width:566.925018px;}
.w3{width:636.404984px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.279995px;}
.x18{left:12.240005px;}
.x1b{left:29.160004px;}
.x1a{left:30.419998px;}
.x1c{left:33.839996px;}
.x19{left:36.539978px;}
.x15{left:98.675995px;}
.x8{left:102.593994px;}
.x3{left:127.655981px;}
.x16{left:144.576004px;}
.x5{left:145.835985px;}
.x10{left:149.795998px;}
.xa{left:153.029982px;}
.x1d{left:160.589983px;}
.x6{left:175.529982px;}
.x9{left:190.838997px;}
.x7{left:201.098991px;}
.x11{left:202.709999px;}
.x1{left:221.249987px;}
.x12{left:289.514992px;}
.xd{left:317.235008px;}
.xb{left:366.554979px;}
.x13{left:427.035004px;}
.x2{left:446.474978px;}
.x14{left:565.304993px;}
.xe{left:675.356415px;}
.x17{left:712.230011px;}
.x22{left:743.729998px;}
.x20{left:745.169985px;}
.x21{left:746.789965px;}
.x1e{left:748.589983px;}
.x1f{left:750.210009px;}
.xf{left:754.529970px;}
.x4{left:756.149996px;}
.x24{left:765.509981px;}
.x23{left:797.909990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.235733pt;}
.ls9{letter-spacing:-0.163733pt;}
.ls10{letter-spacing:-0.150933pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.120533pt;}
.lsa{letter-spacing:-0.074133pt;}
.ls0{letter-spacing:-0.066667pt;}
.ls16{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:-0.035840pt;}
.ls11{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000023pt;}
.ls12{letter-spacing:0.005115pt;}
.lsb{letter-spacing:0.071467pt;}
.ls1d{letter-spacing:0.071709pt;}
.ls1f{letter-spacing:0.120359pt;}
.lsd{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.130667pt;}
.ls14{letter-spacing:0.138133pt;}
.ls2{letter-spacing:0.177067pt;}
.ls13{letter-spacing:0.194667pt;}
.ls8{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.309867pt;}
.ls18{letter-spacing:0.317333pt;}
.ls2c{letter-spacing:0.339218pt;}
.ls2d{letter-spacing:40.955292pt;}
.ls1a{letter-spacing:51.840003pt;}
.ls1e{letter-spacing:52.479977pt;}
.ls29{letter-spacing:58.235281pt;}
.ls20{letter-spacing:63.978634pt;}
.ls26{letter-spacing:67.178667pt;}
.ls28{letter-spacing:68.458656pt;}
.ls19{letter-spacing:69.738644pt;}
.ls17{letter-spacing:81.898638pt;}
.ls22{letter-spacing:98.560015pt;}
.ls25{letter-spacing:99.840044pt;}
.ls23{letter-spacing:101.760047pt;}
.ls24{letter-spacing:103.040036pt;}
.ls1b{letter-spacing:103.680050pt;}
.ls1c{letter-spacing:104.320024pt;}
.ls21{letter-spacing:110.720049pt;}
.ls27{letter-spacing:113.920041pt;}
.ls2b{letter-spacing:746.826771pt;}
.ls4{letter-spacing:753.418713pt;}
.ws0{word-spacing:-42.378025pt;}
.ws12{word-spacing:-24.088960pt;}
.wsd{word-spacing:-16.704000pt;}
.ws13{word-spacing:-16.668155pt;}
.ws10{word-spacing:-16.663040pt;}
.wsc{word-spacing:-16.640000pt;}
.wsf{word-spacing:-15.743893pt;}
.ws5{word-spacing:-15.715627pt;}
.wsb{word-spacing:-15.564693pt;}
.ws3{word-spacing:-15.557227pt;}
.ws11{word-spacing:-15.547093pt;}
.ws15{word-spacing:-15.498027pt;}
.wsa{word-spacing:-15.431675pt;}
.ws4{word-spacing:-15.426560pt;}
.ws1{word-spacing:-15.390720pt;}
.ws6{word-spacing:-15.352427pt;}
.ws7{word-spacing:-15.306027pt;}
.wse{word-spacing:-15.291093pt;}
.ws9{word-spacing:-15.275627pt;}
.ws14{word-spacing:-15.262827pt;}
.ws8{word-spacing:-15.190827pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-14.581310pt;}
._18{margin-left:-12.721441pt;}
._e{margin-left:-11.501624pt;}
._17{margin-left:-10.169620pt;}
._c{margin-left:-9.109744pt;}
._1c{margin-left:-7.965808pt;}
._d{margin-left:-6.994713pt;}
._b{margin-left:-5.628105pt;}
._14{margin-left:-3.796607pt;}
._6{margin-left:-2.677760pt;}
._0{margin-left:-1.457920pt;}
._1{width:0.947340pt;}
._7{width:1.969758pt;}
._13{width:11.834880pt;}
._16{width:13.110900pt;}
._1d{width:14.131200pt;}
._19{width:15.223871pt;}
._1f{width:22.433280pt;}
._1e{width:23.728640pt;}
._5{width:30.055631pt;}
._4{width:31.820800pt;}
._3{width:32.778240pt;}
._2{width:44.430080pt;}
._10{width:59.630533pt;}
._1a{width:71.199163pt;}
._8{width:75.642802pt;}
._15{width:87.527027pt;}
._1b{width:124.074968pt;}
._11{width:131.314386pt;}
._12{width:132.524800pt;}
._a{width:208.552960pt;}
._9{width:267.138560pt;}
.fs4{font-size:38.400000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:149.119995pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.519999pt;}
.y32{bottom:3.680002pt;}
.y3f{bottom:3.680013pt;}
.y61{bottom:3.840007pt;}
.y5d{bottom:4.000000pt;}
.y4e{bottom:4.159993pt;}
.y64{bottom:4.160034pt;}
.y52{bottom:4.319987pt;}
.y68{bottom:4.320028pt;}
.y54{bottom:4.359945pt;}
.y5c{bottom:4.479980pt;}
.y27{bottom:4.480000pt;}
.y5f{bottom:4.480021pt;}
.y4c{bottom:4.959961pt;}
.y26{bottom:5.119995pt;}
.y1b{bottom:5.439982pt;}
.y21{bottom:5.440002pt;}
.y35{bottom:5.440004pt;}
.y24{bottom:5.600016pt;}
.y1a{bottom:6.079997pt;}
.y34{bottom:6.079998pt;}
.y20{bottom:6.080017pt;}
.y23{bottom:6.240010pt;}
.y5a{bottom:7.199951pt;}
.y66{bottom:7.520020pt;}
.y42{bottom:8.000000pt;}
.yc{bottom:11.680013pt;}
.y57{bottom:12.639974pt;}
.y2c{bottom:20.639994pt;}
.y58{bottom:21.439941pt;}
.y31{bottom:21.440002pt;}
.y4a{bottom:21.440023pt;}
.y3e{bottom:21.600016pt;}
.y30{bottom:22.079997pt;}
.y1e{bottom:25.119995pt;}
.y1d{bottom:25.760010pt;}
.y46{bottom:25.920003pt;}
.y41{bottom:25.959961pt;}
.y2e{bottom:37.119994pt;}
.yb{bottom:37.440023pt;}
.y2b{bottom:37.759989pt;}
.y44{bottom:39.360026pt;}
.y7{bottom:49.919998pt;}
.y6{bottom:62.911997pt;}
.ya{bottom:69.120036pt;}
.y5{bottom:75.871999pt;}
.y4{bottom:89.792002pt;}
.y8b{bottom:116.832000pt;}
.y36{bottom:124.352000pt;}
.y8a{bottom:136.026662pt;}
.y33{bottom:139.386667pt;}
.y2f{bottom:159.706665pt;}
.y89{bottom:162.106669pt;}
.y88{bottom:188.026672pt;}
.y2a{bottom:196.026672pt;}
.y87{bottom:213.946676pt;}
.y86{bottom:239.866659pt;}
.y29{bottom:247.866659pt;}
.y85{bottom:259.226664pt;}
.y28{bottom:268.346659pt;}
.y84{bottom:285.146667pt;}
.y25{bottom:288.666667pt;}
.y22{bottom:307.906657pt;}
.y83{bottom:311.266663pt;}
.y1f{bottom:328.386658pt;}
.y82{bottom:330.466675pt;}
.y1c{bottom:348.706665pt;}
.y81{bottom:356.386678pt;}
.y80{bottom:382.466675pt;}
.y19{bottom:388.706665pt;}
.y7f{bottom:408.386678pt;}
.y18{bottom:424.706665pt;}
.y7e{bottom:427.746663pt;}
.y9f{bottom:443.266683pt;}
.y7d{bottom:453.666667pt;}
.y17{bottom:454.786662pt;}
.y7c{bottom:472.866659pt;}
.y9e{bottom:473.186686pt;}
.y16{bottom:484.706665pt;}
.y7b{bottom:498.946655pt;}
.y9d{bottom:499.106649pt;}
.y15{bottom:514.626668pt;}
.y7a{bottom:518.146647pt;}
.y9c{bottom:525.026652pt;}
.ya5{bottom:529.186686pt;}
.y69{bottom:533.826660pt;}
.y79{bottom:544.093343pt;}
.y14{bottom:544.573324pt;}
.y67{bottom:548.733317pt;}
.y9b{bottom:551.133341pt;}
.y78{bottom:563.453328pt;}
.y65{bottom:568.413330pt;}
.y13{bottom:574.653320pt;}
.y9a{bottom:577.053345pt;}
.y77{bottom:589.373332pt;}
.y63{bottom:594.813314pt;}
.y99{bottom:602.973348pt;}
.y12{bottom:604.573324pt;}
.y76{bottom:608.733317pt;}
.y62{bottom:614.493327pt;}
.y48{bottom:623.613322pt;}
.y98{bottom:628.893351pt;}
.y60{bottom:633.053345pt;}
.y11{bottom:634.493327pt;}
.y75{bottom:634.653320pt;}
.y5e{bottom:651.773315pt;}
.y47{bottom:653.533325pt;}
.y74{bottom:654.013346pt;}
.y97{bottom:654.973348pt;}
.y10{bottom:664.413330pt;}
.y45{bottom:668.413330pt;}
.y5b{bottom:671.933350pt;}
.y96{bottom:674.173340pt;}
.y73{bottom:679.933350pt;}
.yf{bottom:688.093343pt;}
.y59{bottom:692.093343pt;}
.y72{bottom:699.293294pt;}
.y95{bottom:700.253337pt;}
.y43{bottom:709.213298pt;}
.y56{bottom:717.693359pt;}
.y94{bottom:719.453369pt;}
.y71{bottom:725.213298pt;}
.ye{bottom:733.533366pt;}
.y93{bottom:745.373372pt;}
.y70{bottom:751.133301pt;}
.y55{bottom:754.013346pt;}
.y40{bottom:763.453369pt;}
.yab{bottom:770.013346pt;}
.y92{bottom:771.453369pt;}
.y53{bottom:773.693359pt;}
.y6f{bottom:777.093343pt;}
.yd{bottom:779.173340pt;}
.y51{bottom:793.413330pt;}
.y91{bottom:797.413330pt;}
.y6e{bottom:803.173340pt;}
.y3d{bottom:804.293294pt;}
.y50{bottom:813.093343pt;}
.y9{bottom:815.973307pt;}
.ya4{bottom:821.253337pt;}
.y90{bottom:823.333333pt;}
.y6d{bottom:829.093343pt;}
.y4f{bottom:831.813314pt;}
.ya3{bottom:840.613363pt;}
.yaa{bottom:847.973307pt;}
.y8f{bottom:849.253337pt;}
.y4d{bottom:851.493327pt;}
.y6c{bottom:855.013346pt;}
.y3c{bottom:858.693359pt;}
.ya2{bottom:859.813314pt;}
.ya9{bottom:867.173340pt;}
.y4b{bottom:871.173340pt;}
.y8e{bottom:875.333333pt;}
.y6b{bottom:880.933350pt;}
.ya1{bottom:881.413330pt;}
.ya8{bottom:886.533366pt;}
.y49{bottom:892.293294pt;}
.y3b{bottom:895.173340pt;}
.y8d{bottom:901.253337pt;}
.y6a{bottom:903.013346pt;}
.ya7{bottom:905.733317pt;}
.y3a{bottom:914.373372pt;}
.ya0{bottom:923.173340pt;}
.ya6{bottom:925.093343pt;}
.y8c{bottom:927.173340pt;}
.y8{bottom:931.173340pt;}
.y39{bottom:946.693359pt;}
.y38{bottom:953.093343pt;}
.y3{bottom:983.173340pt;}
.y2{bottom:1006.693359pt;}
.y1{bottom:1043.040039pt;}
.y37{bottom:1066.932533pt;}
.h1b{height:17.919999pt;}
.h18{height:18.080000pt;}
.hc{height:18.592000pt;}
.h16{height:18.880000pt;}
.h17{height:19.040000pt;}
.h19{height:19.072000pt;}
.hb{height:19.520000pt;}
.h8{height:19.680000pt;}
.h14{height:20.480000pt;}
.h1a{height:24.959999pt;}
.h1c{height:25.760000pt;}
.he{height:35.680000pt;}
.hf{height:37.631250pt;}
.ha{height:39.360000pt;}
.h13{height:40.160000pt;}
.h11{height:40.191999pt;}
.h5{height:42.794240pt;}
.hd{height:51.200002pt;}
.h9{height:52.433920pt;}
.h12{height:53.600000pt;}
.h1e{height:54.817280pt;}
.h3{height:58.762240pt;}
.h15{height:63.872000pt;}
.h10{height:79.246720pt;}
.h1d{height:84.662813pt;}
.h7{height:105.279999pt;}
.h4{height:110.647036pt;}
.h6{height:138.830715pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:40.160000pt;}
.w6{width:46.399999pt;}
.wd{width:73.120000pt;}
.w7{width:76.511998pt;}
.w8{width:121.599996pt;}
.w9{width:122.272003pt;}
.w4{width:167.226664pt;}
.wa{width:196.986674pt;}
.w5{width:426.626668pt;}
.wc{width:503.933350pt;}
.w3{width:565.693319pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.359996pt;}
.x18{left:10.880005pt;}
.x1b{left:25.920003pt;}
.x1a{left:27.039998pt;}
.x1c{left:30.079997pt;}
.x19{left:32.479980pt;}
.x15{left:87.711995pt;}
.x8{left:91.194661pt;}
.x3{left:113.471983pt;}
.x16{left:128.512004pt;}
.x5{left:129.631987pt;}
.x10{left:133.151998pt;}
.xa{left:136.026650pt;}
.x1d{left:142.746652pt;}
.x6{left:156.026650pt;}
.x9{left:169.634664pt;}
.x7{left:178.754659pt;}
.x11{left:180.186666pt;}
.x1{left:196.666655pt;}
.x12{left:257.346659pt;}
.xd{left:281.986674pt;}
.xb{left:325.826648pt;}
.x13{left:379.586670pt;}
.x2{left:396.866647pt;}
.x14{left:502.493327pt;}
.xe{left:600.316813pt;}
.x17{left:633.093343pt;}
.x22{left:661.093331pt;}
.x20{left:662.373320pt;}
.x21{left:663.813302pt;}
.x1e{left:665.413318pt;}
.x1f{left:666.853341pt;}
.xf{left:670.693307pt;}
.x4{left:672.133330pt;}
.x24{left:680.453317pt;}
.x23{left:709.253325pt;}
}




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