
    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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_59f8c8936276df3e2cf0d4a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_1a620e9e7733dd366c21e3d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_500ac787d709d114229a4df7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_8bc49d4adaa5c1c542ab3e90.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_e166ca83b8e4e1f89f98516e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_c79dd912c0ffba32834771b1.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_29bb92bd22e1748145119257.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_13924b31e4a2c9fdf5d944b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_c0397d20c0aacc91b2f21eb8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1ef2eb1cf8ef2dc546410ad5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_f5c4f317df8fb91c6547cb10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.320031px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009104px;}
.ls2{letter-spacing:0.020978px;}
.ls5{letter-spacing:0.142337px;}
.ls3{letter-spacing:0.142409px;}
.ls4{letter-spacing:798.114602px;}
.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;}
}
.ws6{word-spacing:-62.147700px;}
.ws2{word-spacing:-18.706458px;}
.ws7{word-spacing:-13.713005px;}
.ws5{word-spacing:-12.615983px;}
.ws3{word-spacing:-11.381845px;}
.ws1{word-spacing:-10.293835px;}
.ws0{word-spacing:-10.284731px;}
.ws8{word-spacing:-7.405032px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-3.552985px;}
._3{margin-left:-2.296667px;}
._2{margin-left:-1.031570px;}
._1{width:1.616003px;}
._7{width:2.765573px;}
._5{width:4.521731px;}
._4{width:5.981716px;}
._d{width:7.084675px;}
._e{width:8.240882px;}
._f{width:9.304648px;}
._10{width:10.511229px;}
._20{width:11.558981px;}
._17{width:14.128987px;}
._16{width:15.435449px;}
._1b{width:16.724985px;}
._1a{width:17.778047px;}
._8{width:19.444363px;}
._c{width:20.602205px;}
._14{width:22.434058px;}
._13{width:23.651908px;}
._26{width:24.691476px;}
._25{width:26.080281px;}
._22{width:27.553395px;}
._21{width:28.892126px;}
._1d{width:31.384588px;}
._1c{width:32.496402px;}
._b{width:34.094083px;}
._19{width:35.099856px;}
._18{width:36.496237px;}
._23{width:38.447335px;}
._24{width:39.551555px;}
._15{width:42.444874px;}
._a{width:43.876276px;}
._9{width:45.839998px;}
._11{width:47.594246px;}
._12{width:48.882111px;}
._1f{width:50.215342px;}
._1e{width:51.402945px;}
._0{width:956.080217px;}
.fc3{color:rgb(34,161,202);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(22,41,118);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.477990px;}
.fs1{font-size:50.663700px;}
.fs5{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.fs6{font-size:65.682142px;}
.fs3{font-size:67.551750px;}
.fs2{font-size:79.035746px;}
.fs4{font-size:101.327850px;}
.y0{bottom:0.000000px;}
.yc{bottom:1.980002px;}
.y35{bottom:3.779984px;}
.y1f{bottom:4.319996px;}
.ya{bottom:53.820030px;}
.y3c{bottom:55.259994px;}
.y9{bottom:69.299973px;}
.y3b{bottom:72.720017px;}
.y8{bottom:84.600013px;}
.y7e{bottom:89.100013px;}
.y5f{bottom:93.600013px;}
.y7{bottom:100.259994px;}
.ye2{bottom:107.460022px;}
.y6{bottom:115.559967px;}
.y8b{bottom:116.820030px;}
.y7d{bottom:117.539977px;}
.y5e{bottom:122.039977px;}
.yb5{bottom:127.259994px;}
.ye1{bottom:127.980011px;}
.y5{bottom:131.220017px;}
.y8a{bottom:145.259994px;}
.y7c{bottom:145.980011px;}
.y4{bottom:146.519989px;}
.yb4{bottom:147.600013px;}
.ye0{bottom:148.500000px;}
.y5d{bottom:150.480011px;}
.y3{bottom:162.179970px;}
.yb3{bottom:168.120002px;}
.ydf{bottom:168.659981px;}
.y89{bottom:173.519989px;}
.y7b{bottom:174.240006px;}
.y2{bottom:176.940033px;}
.y5c{bottom:178.919975px;}
.yb2{bottom:188.460022px;}
.yde{bottom:189.179970px;}
.y88{bottom:201.960022px;}
.y7a{bottom:202.679970px;}
.y1d{bottom:202.860008px;}
.y5b{bottom:207.360008px;}
.yb1{bottom:208.980011px;}
.ydd{bottom:209.700027px;}
.yb0{bottom:229.320030px;}
.ydc{bottom:230.220017px;}
.y79{bottom:231.120002px;}
.y1c{bottom:231.299973px;}
.y87{bottom:231.480011px;}
.y5a{bottom:235.620002px;}
.yaf{bottom:249.840019px;}
.ydb{bottom:250.379998px;}
.y78{bottom:259.379998px;}
.y1b{bottom:259.740006px;}
.y59{bottom:264.059967px;}
.y86{bottom:264.600013px;}
.yae{bottom:270.179970px;}
.yda{bottom:270.899986px;}
.y77{bottom:287.820030px;}
.y1a{bottom:288.000000px;}
.yad{bottom:290.700027px;}
.yd9{bottom:291.419975px;}
.y58{bottom:292.500000px;}
.y85{bottom:293.039977px;}
.yac{bottom:311.039977px;}
.yd8{bottom:311.940033px;}
.y76{bottom:316.259994px;}
.y19{bottom:316.440033px;}
.y57{bottom:320.759994px;}
.y84{bottom:321.480011px;}
.yab{bottom:331.559967px;}
.yd7{bottom:332.100013px;}
.y75{bottom:344.700027px;}
.y18{bottom:344.879998px;}
.y56{bottom:349.200027px;}
.y83{bottom:349.740006px;}
.yaa{bottom:351.899986px;}
.yd6{bottom:352.620002px;}
.ya9{bottom:372.419975px;}
.y74{bottom:373.139992px;}
.y17{bottom:374.399986px;}
.y55{bottom:377.639992px;}
.y82{bottom:378.179970px;}
.ya8{bottom:392.759994px;}
.yd5{bottom:393.659981px;}
.y73{bottom:401.580025px;}
.y16{bottom:403.919975px;}
.y54{bottom:405.899986px;}
.y81{bottom:406.620002px;}
.ya7{bottom:413.279983px;}
.yd4{bottom:413.820030px;}
.y72{bottom:429.840019px;}
.y33{bottom:430.019989px;}
.y38{bottom:430.200027px;}
.ya6{bottom:433.799973px;}
.y65{bottom:434.340019px;}
.y80{bottom:435.059967px;}
.y53{bottom:435.779983px;}
.y37{bottom:448.740006px;}
.y32{bottom:448.919975px;}
.ya5{bottom:454.320030px;}
.yd3{bottom:454.860008px;}
.y71{bottom:458.279983px;}
.y64{bottom:462.779983px;}
.y7f{bottom:463.500000px;}
.y52{bottom:463.860008px;}
.y36{bottom:467.460022px;}
.y31{bottom:467.820030px;}
.ya4{bottom:474.840019px;}
.yd2{bottom:475.379998px;}
.y34{bottom:480.779983px;}
.y70{bottom:486.720017px;}
.y30{bottom:486.899986px;}
.y63{bottom:491.220017px;}
.y51{bottom:491.940033px;}
.ya3{bottom:495.179970px;}
.yd1{bottom:495.539977px;}
.y2f{bottom:505.620002px;}
.ya2{bottom:515.519989px;}
.yd0{bottom:516.059967px;}
.y6f{bottom:516.240006px;}
.y62{bottom:519.659981px;}
.y50{bottom:520.200027px;}
.y67{bottom:520.919975px;}
.y2e{bottom:524.519989px;}
.ya1{bottom:536.039977px;}
.ycf{bottom:536.580025px;}
.y2d{bottom:543.600013px;}
.y6e{bottom:547.200027px;}
.y6d{bottom:548.100013px;}
.y4f{bottom:548.639992px;}
.y66{bottom:549.000000px;}
.y61{bottom:549.179970px;}
.ya0{bottom:556.559967px;}
.yce{bottom:557.100013px;}
.y2c{bottom:562.500000px;}
.y6c{bottom:576.539977px;}
.y9f{bottom:576.899986px;}
.y4e{bottom:577.080025px;}
.y60{bottom:577.440033px;}
.y2b{bottom:581.399986px;}
.y9e{bottom:597.240006px;}
.ycd{bottom:597.779983px;}
.y2a{bottom:600.299973px;}
.y6b{bottom:604.799973px;}
.y4d{bottom:605.519989px;}
.y8d{bottom:607.320030px;}
.y9d{bottom:617.759994px;}
.ycc{bottom:618.300007px;}
.y29{bottom:619.379998px;}
.y6a{bottom:633.240006px;}
.y4c{bottom:633.779983px;}
.y8c{bottom:634.139992px;}
.y28{bottom:638.279983px;}
.ycb{bottom:638.819995px;}
.y27{bottom:657.180004px;}
.yca{bottom:659.160015px;}
.y4b{bottom:662.220017px;}
.y69{bottom:662.759994px;}
.y9c{bottom:667.800007px;}
.y26{bottom:676.079990px;}
.yc9{bottom:679.500000px;}
.y4a{bottom:690.660015px;}
.y68{bottom:691.019989px;}
.y25{bottom:694.980011px;}
.y9b{bottom:697.680004px;}
.yc8{bottom:700.019989px;}
.y24{bottom:713.879998px;}
.y49{bottom:718.920010px;}
.yc7{bottom:720.540012px;}
.y9a{bottom:725.939999px;}
.y23{bottom:732.779983px;}
.yc6{bottom:740.879998px;}
.y48{bottom:747.360008px;}
.y22{bottom:751.860008px;}
.y99{bottom:754.379998px;}
.yc5{bottom:761.220017px;}
.y21{bottom:770.759994px;}
.y47{bottom:775.800007px;}
.y98{bottom:781.199993px;}
.yc4{bottom:781.740006px;}
.y20{bottom:789.660015px;}
.yc3{bottom:802.259994px;}
.y1e{bottom:804.240006px;}
.y97{bottom:808.379998px;}
.yc2{bottom:822.779983px;}
.y46{bottom:832.680004px;}
.y96{bottom:836.819995px;}
.y15{bottom:838.079990px;}
.yc1{bottom:842.939999px;}
.y14{bottom:858.240006px;}
.y45{bottom:861.120002px;}
.yc0{bottom:863.459988px;}
.y95{bottom:865.079990px;}
.y13{bottom:877.139992px;}
.ybf{bottom:883.980011px;}
.y44{bottom:889.379998px;}
.y94{bottom:892.079990px;}
.y12{bottom:896.040012px;}
.ybe{bottom:904.500000px;}
.y11{bottom:914.219999px;}
.y43{bottom:917.819996px;}
.y93{bottom:919.080008px;}
.ybd{bottom:924.659998px;}
.y10{bottom:940.319996px;}
.ybc{bottom:945.180004px;}
.y42{bottom:946.259994px;}
.y92{bottom:947.520006px;}
.ybb{bottom:965.699993px;}
.y41{bottom:974.699993px;}
.yf{bottom:975.960004px;}
.yba{bottom:986.219999px;}
.y40{bottom:1003.139992px;}
.y91{bottom:1004.400003px;}
.yb9{bottom:1006.379998px;}
.ye{bottom:1015.020006px;}
.yb8{bottom:1026.900003px;}
.y3f{bottom:1031.400003px;}
.y90{bottom:1032.840002px;}
.yd{bottom:1046.700002px;}
.yb7{bottom:1047.420001px;}
.y3e{bottom:1059.840002px;}
.y8f{bottom:1061.280001px;}
.y1{bottom:1065.239997px;}
.yb6{bottom:1067.939999px;}
.yb{bottom:1069.379998px;}
.y8e{bottom:1087.920001px;}
.y3d{bottom:1088.099997px;}
.y3a{bottom:1106.280001px;}
.y39{bottom:1124.640000px;}
.h5{height:16.740004px;}
.h10{height:17.100015px;}
.he{height:18.899987px;}
.h4{height:37.354583px;}
.h2{height:38.566752px;}
.h3{height:43.910189px;}
.hb{height:45.749159px;}
.h13{height:45.821791px;}
.hc{height:46.903608px;}
.h14{height:46.974922px;}
.h6{height:47.308723px;}
.h11{height:47.389675px;}
.h12{height:48.594265px;}
.hf{height:52.528159px;}
.h15{height:53.711635px;}
.ha{height:53.863363px;}
.h17{height:53.935477px;}
.h16{height:55.355165px;}
.hd{height:57.095742px;}
.h8{height:58.547049px;}
.h7{height:60.164418px;}
.h1{height:61.813899px;}
.h9{height:85.643803px;}
.h0{height:1188.000000px;}
.w4{width:8.280053px;}
.w2{width:8.460022px;}
.w8{width:8.819962px;}
.w6{width:9.719999px;}
.w3{width:38.879997px;}
.w1{width:56.160049px;}
.w7{width:63.179971px;}
.w5{width:63.719999px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:140.400003px;}
.x7{left:150.479994px;}
.x6{left:170.460005px;}
.xd{left:191.159998px;}
.x8{left:214.199993px;}
.xb{left:403.740006px;}
.xe{left:523.439999px;}
.xf{left:528.480011px;}
.x9{left:646.200027px;}
.x2{left:675.539978px;}
.xa{left:709.200027px;}
.x3{left:731.519989px;}
.x4{left:739.799973px;}
.xc{left:756.720017px;}
.x5{left:778.679970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.840028pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008092pt;}
.ls2{letter-spacing:0.018647pt;}
.ls5{letter-spacing:0.126522pt;}
.ls3{letter-spacing:0.126586pt;}
.ls4{letter-spacing:709.435202pt;}
.ws6{word-spacing:-55.242400pt;}
.ws2{word-spacing:-16.627962pt;}
.ws7{word-spacing:-12.189338pt;}
.ws5{word-spacing:-11.214207pt;}
.ws3{word-spacing:-10.117195pt;}
.ws1{word-spacing:-9.150075pt;}
.ws0{word-spacing:-9.141983pt;}
.ws8{word-spacing:-6.582251pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-3.158209pt;}
._3{margin-left:-2.041482pt;}
._2{margin-left:-0.916951pt;}
._1{width:1.436447pt;}
._7{width:2.458287pt;}
._5{width:4.019316pt;}
._4{width:5.317081pt;}
._d{width:6.297489pt;}
._e{width:7.325229pt;}
._f{width:8.270798pt;}
._10{width:9.343315pt;}
._20{width:10.274649pt;}
._17{width:12.559100pt;}
._16{width:13.720400pt;}
._1b{width:14.866654pt;}
._1a{width:15.802708pt;}
._8{width:17.283878pt;}
._c{width:18.313071pt;}
._14{width:19.941385pt;}
._13{width:21.023919pt;}
._26{width:21.947979pt;}
._25{width:23.182472pt;}
._22{width:24.491907pt;}
._21{width:25.681890pt;}
._1d{width:27.897412pt;}
._1c{width:28.885691pt;}
._b{width:30.305851pt;}
._19{width:31.199872pt;}
._18{width:32.441099pt;}
._23{width:34.175409pt;}
._24{width:35.156938pt;}
._15{width:37.728777pt;}
._a{width:39.001134pt;}
._9{width:40.746665pt;}
._11{width:42.305996pt;}
._12{width:43.450766pt;}
._1f{width:44.635859pt;}
._1e{width:45.691507pt;}
._0{width:849.849082pt;}
.fs7{font-size:32.424880pt;}
.fs1{font-size:45.034400pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.fs6{font-size:58.384126pt;}
.fs3{font-size:60.046000pt;}
.fs2{font-size:70.253996pt;}
.fs4{font-size:90.069200pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:1.760002pt;}
.y35{bottom:3.359986pt;}
.y1f{bottom:3.839996pt;}
.ya{bottom:47.840027pt;}
.y3c{bottom:49.119995pt;}
.y9{bottom:61.599976pt;}
.y3b{bottom:64.640015pt;}
.y8{bottom:75.200012pt;}
.y7e{bottom:79.200012pt;}
.y5f{bottom:83.200012pt;}
.y7{bottom:89.119995pt;}
.ye2{bottom:95.520020pt;}
.y6{bottom:102.719971pt;}
.y8b{bottom:103.840027pt;}
.y7d{bottom:104.479980pt;}
.y5e{bottom:108.479980pt;}
.yb5{bottom:113.119995pt;}
.ye1{bottom:113.760010pt;}
.y5{bottom:116.640015pt;}
.y8a{bottom:129.119995pt;}
.y7c{bottom:129.760010pt;}
.y4{bottom:130.239990pt;}
.yb4{bottom:131.200012pt;}
.ye0{bottom:132.000000pt;}
.y5d{bottom:133.760010pt;}
.y3{bottom:144.159973pt;}
.yb3{bottom:149.440002pt;}
.ydf{bottom:149.919983pt;}
.y89{bottom:154.239990pt;}
.y7b{bottom:154.880005pt;}
.y2{bottom:157.280029pt;}
.y5c{bottom:159.039978pt;}
.yb2{bottom:167.520020pt;}
.yde{bottom:168.159973pt;}
.y88{bottom:179.520020pt;}
.y7a{bottom:180.159973pt;}
.y1d{bottom:180.320007pt;}
.y5b{bottom:184.320007pt;}
.yb1{bottom:185.760010pt;}
.ydd{bottom:186.400024pt;}
.yb0{bottom:203.840027pt;}
.ydc{bottom:204.640015pt;}
.y79{bottom:205.440002pt;}
.y1c{bottom:205.599976pt;}
.y87{bottom:205.760010pt;}
.y5a{bottom:209.440002pt;}
.yaf{bottom:222.080017pt;}
.ydb{bottom:222.559998pt;}
.y78{bottom:230.559998pt;}
.y1b{bottom:230.880005pt;}
.y59{bottom:234.719971pt;}
.y86{bottom:235.200012pt;}
.yae{bottom:240.159973pt;}
.yda{bottom:240.799988pt;}
.y77{bottom:255.840027pt;}
.y1a{bottom:256.000000pt;}
.yad{bottom:258.400024pt;}
.yd9{bottom:259.039978pt;}
.y58{bottom:260.000000pt;}
.y85{bottom:260.479980pt;}
.yac{bottom:276.479980pt;}
.yd8{bottom:277.280029pt;}
.y76{bottom:281.119995pt;}
.y19{bottom:281.280029pt;}
.y57{bottom:285.119995pt;}
.y84{bottom:285.760010pt;}
.yab{bottom:294.719971pt;}
.yd7{bottom:295.200012pt;}
.y75{bottom:306.400024pt;}
.y18{bottom:306.559998pt;}
.y56{bottom:310.400024pt;}
.y83{bottom:310.880005pt;}
.yaa{bottom:312.799988pt;}
.yd6{bottom:313.440002pt;}
.ya9{bottom:331.039978pt;}
.y74{bottom:331.679993pt;}
.y17{bottom:332.799988pt;}
.y55{bottom:335.679993pt;}
.y82{bottom:336.159973pt;}
.ya8{bottom:349.119995pt;}
.yd5{bottom:349.919983pt;}
.y73{bottom:356.960022pt;}
.y16{bottom:359.039978pt;}
.y54{bottom:360.799988pt;}
.y81{bottom:361.440002pt;}
.ya7{bottom:367.359985pt;}
.yd4{bottom:367.840027pt;}
.y72{bottom:382.080017pt;}
.y33{bottom:382.239990pt;}
.y38{bottom:382.400024pt;}
.ya6{bottom:385.599976pt;}
.y65{bottom:386.080017pt;}
.y80{bottom:386.719971pt;}
.y53{bottom:387.359985pt;}
.y37{bottom:398.880005pt;}
.y32{bottom:399.039978pt;}
.ya5{bottom:403.840027pt;}
.yd3{bottom:404.320007pt;}
.y71{bottom:407.359985pt;}
.y64{bottom:411.359985pt;}
.y7f{bottom:412.000000pt;}
.y52{bottom:412.320007pt;}
.y36{bottom:415.520020pt;}
.y31{bottom:415.840027pt;}
.ya4{bottom:422.080017pt;}
.yd2{bottom:422.559998pt;}
.y34{bottom:427.359985pt;}
.y70{bottom:432.640015pt;}
.y30{bottom:432.799988pt;}
.y63{bottom:436.640015pt;}
.y51{bottom:437.280029pt;}
.ya3{bottom:440.159973pt;}
.yd1{bottom:440.479980pt;}
.y2f{bottom:449.440002pt;}
.ya2{bottom:458.239990pt;}
.yd0{bottom:458.719971pt;}
.y6f{bottom:458.880005pt;}
.y62{bottom:461.919983pt;}
.y50{bottom:462.400024pt;}
.y67{bottom:463.039978pt;}
.y2e{bottom:466.239990pt;}
.ya1{bottom:476.479980pt;}
.ycf{bottom:476.960022pt;}
.y2d{bottom:483.200012pt;}
.y6e{bottom:486.400024pt;}
.y6d{bottom:487.200012pt;}
.y4f{bottom:487.679993pt;}
.y66{bottom:488.000000pt;}
.y61{bottom:488.159973pt;}
.ya0{bottom:494.719971pt;}
.yce{bottom:495.200012pt;}
.y2c{bottom:500.000000pt;}
.y6c{bottom:512.479980pt;}
.y9f{bottom:512.799988pt;}
.y4e{bottom:512.960022pt;}
.y60{bottom:513.280029pt;}
.y2b{bottom:516.799988pt;}
.y9e{bottom:530.880005pt;}
.ycd{bottom:531.359985pt;}
.y2a{bottom:533.599976pt;}
.y6b{bottom:537.599976pt;}
.y4d{bottom:538.239990pt;}
.y8d{bottom:539.840027pt;}
.y9d{bottom:549.119995pt;}
.ycc{bottom:549.600006pt;}
.y29{bottom:550.559998pt;}
.y6a{bottom:562.880005pt;}
.y4c{bottom:563.359985pt;}
.y8c{bottom:563.679993pt;}
.y28{bottom:567.359985pt;}
.ycb{bottom:567.839996pt;}
.y27{bottom:584.160004pt;}
.yca{bottom:585.920013pt;}
.y4b{bottom:588.640015pt;}
.y69{bottom:589.119995pt;}
.y9c{bottom:593.600006pt;}
.y26{bottom:600.959991pt;}
.yc9{bottom:604.000000pt;}
.y4a{bottom:613.920013pt;}
.y68{bottom:614.239990pt;}
.y25{bottom:617.760010pt;}
.y9b{bottom:620.160004pt;}
.yc8{bottom:622.239990pt;}
.y24{bottom:634.559998pt;}
.y49{bottom:639.040009pt;}
.yc7{bottom:640.480011pt;}
.y9a{bottom:645.279999pt;}
.y23{bottom:651.359985pt;}
.yc6{bottom:658.559998pt;}
.y48{bottom:664.320007pt;}
.y22{bottom:668.320007pt;}
.y99{bottom:670.559998pt;}
.yc5{bottom:676.640015pt;}
.y21{bottom:685.119995pt;}
.y47{bottom:689.600006pt;}
.y98{bottom:694.399994pt;}
.yc4{bottom:694.880005pt;}
.y20{bottom:701.920013pt;}
.yc3{bottom:713.119995pt;}
.y1e{bottom:714.880005pt;}
.y97{bottom:718.559998pt;}
.yc2{bottom:731.359985pt;}
.y46{bottom:740.160004pt;}
.y96{bottom:743.839996pt;}
.y15{bottom:744.959991pt;}
.yc1{bottom:749.279999pt;}
.y14{bottom:762.880005pt;}
.y45{bottom:765.440002pt;}
.yc0{bottom:767.519989pt;}
.y95{bottom:768.959991pt;}
.y13{bottom:779.679993pt;}
.ybf{bottom:785.760010pt;}
.y44{bottom:790.559998pt;}
.y94{bottom:792.959991pt;}
.y12{bottom:796.480011pt;}
.ybe{bottom:804.000000pt;}
.y11{bottom:812.639999pt;}
.y43{bottom:815.839996pt;}
.y93{bottom:816.960007pt;}
.ybd{bottom:821.919998pt;}
.y10{bottom:835.839996pt;}
.ybc{bottom:840.160004pt;}
.y42{bottom:841.119995pt;}
.y92{bottom:842.240005pt;}
.ybb{bottom:858.399994pt;}
.y41{bottom:866.399994pt;}
.yf{bottom:867.520004pt;}
.yba{bottom:876.639999pt;}
.y40{bottom:891.679993pt;}
.y91{bottom:892.800003pt;}
.yb9{bottom:894.559998pt;}
.ye{bottom:902.240005pt;}
.yb8{bottom:912.800003pt;}
.y3f{bottom:916.800003pt;}
.y90{bottom:918.080002pt;}
.yd{bottom:930.400002pt;}
.yb7{bottom:931.040001pt;}
.y3e{bottom:942.080002pt;}
.y8f{bottom:943.360001pt;}
.y1{bottom:946.879997pt;}
.yb6{bottom:949.279999pt;}
.yb{bottom:950.559998pt;}
.y8e{bottom:967.040001pt;}
.y3d{bottom:967.199997pt;}
.y3a{bottom:983.360001pt;}
.y39{bottom:999.680000pt;}
.h5{height:14.880004pt;}
.h10{height:15.200013pt;}
.he{height:16.799988pt;}
.h4{height:33.204074pt;}
.h2{height:34.281557pt;}
.h3{height:39.031279pt;}
.hb{height:40.665919pt;}
.h13{height:40.730480pt;}
.hc{height:41.692096pt;}
.h14{height:41.755486pt;}
.h6{height:42.052198pt;}
.h11{height:42.124155pt;}
.h12{height:43.194902pt;}
.hf{height:46.691696pt;}
.h15{height:47.743676pt;}
.ha{height:47.878545pt;}
.h17{height:47.942646pt;}
.h16{height:49.204591pt;}
.hd{height:50.751771pt;}
.h8{height:52.041821pt;}
.h7{height:53.479482pt;}
.h1{height:54.945688pt;}
.h9{height:76.127825pt;}
.h0{height:1056.000000pt;}
.w4{width:7.360047pt;}
.w2{width:7.520020pt;}
.w8{width:7.839966pt;}
.w6{width:8.639999pt;}
.w3{width:34.559997pt;}
.w1{width:49.920044pt;}
.w7{width:56.159974pt;}
.w5{width:56.639999pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:124.800003pt;}
.x7{left:133.759995pt;}
.x6{left:151.520004pt;}
.xd{left:169.919998pt;}
.x8{left:190.399994pt;}
.xb{left:358.880005pt;}
.xe{left:465.279999pt;}
.xf{left:469.760010pt;}
.x9{left:574.400024pt;}
.x2{left:600.479980pt;}
.xa{left:630.400024pt;}
.x3{left:650.239990pt;}
.x4{left:657.599976pt;}
.xc{left:672.640015pt;}
.x5{left:692.159973pt;}
}




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