
    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_8e5444937c1a5b01d709c3d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_18b1922493ec020a0ca2d4ce.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_c806e2b755153058ac26fb5b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_5cf94b98a390568d7689a942.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_cf58cef63b078b7685ada84b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104980;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_3caa54af06bb3cd21d566367.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.063085px;}
.ls4{letter-spacing:0.161314px;}
.ls1{letter-spacing:0.376462px;}
.ls3{letter-spacing:0.424662px;}
.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;}
}
.ws3{word-spacing:-23.335351px;}
.ws4{word-spacing:-18.349228px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws6{word-spacing:-14.958623px;}
.ws5{word-spacing:-10.770171px;}
.ws7{word-spacing:-9.972386px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-3.839018px;}
._5{margin-left:-2.737661px;}
._2{margin-left:-1.718704px;}
._0{width:1.304731px;}
._1{width:3.200598px;}
._4{width:4.839108px;}
._6{width:6.371844px;}
._7{width:7.422989px;}
._8{width:8.514695px;}
._9{width:25.056200px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.001395px;}
.fs6{font-size:38.881485px;}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y93{bottom:109.620072px;}
.y6d{bottom:115.920043px;}
.y38{bottom:119.700096px;}
.yad{bottom:121.860077px;}
.y92{bottom:132.120072px;}
.y6c{bottom:133.920043px;}
.y37{bottom:137.700096px;}
.yac{bottom:139.860077px;}
.y6b{bottom:151.920043px;}
.y36{bottom:155.700096px;}
.yab{bottom:157.860077px;}
.yd0{bottom:160.920043px;}
.y6a{bottom:169.920043px;}
.y35{bottom:173.700096px;}
.yaa{bottom:175.860077px;}
.ydd{bottom:178.920043px;}
.y101{bottom:181.980079px;}
.y69{bottom:187.920043px;}
.y34{bottom:191.700096px;}
.ya9{bottom:193.860077px;}
.ydc{bottom:196.920043px;}
.y68{bottom:205.920043px;}
.y100{bottom:208.620072px;}
.y33{bottom:209.700096px;}
.ya8{bottom:211.860077px;}
.ydb{bottom:214.920043px;}
.y91{bottom:216.180039px;}
.y67{bottom:223.920043px;}
.y32{bottom:227.700096px;}
.yff{bottom:231.120072px;}
.yda{bottom:232.920043px;}
.ya7{bottom:238.860077px;}
.y66{bottom:241.920043px;}
.y31{bottom:245.700096px;}
.yfe{bottom:247.500068px;}
.ycf{bottom:250.920043px;}
.y90{bottom:256.860077px;}
.y65{bottom:259.920043px;}
.y30{bottom:263.700096px;}
.yce{bottom:268.920043px;}
.yfd{bottom:270.000068px;}
.ya6{bottom:274.860077px;}
.y64{bottom:277.920043px;}
.y2f{bottom:281.700096px;}
.y8f{bottom:283.860077px;}
.yfc{bottom:286.560036px;}
.ycd{bottom:286.920043px;}
.ya5{bottom:292.860077px;}
.y63{bottom:295.920043px;}
.y8e{bottom:301.860077px;}
.ycc{bottom:304.920043px;}
.y2e{bottom:308.700096px;}
.yfb{bottom:309.060036px;}
.ya4{bottom:310.860077px;}
.y62{bottom:313.920043px;}
.y8d{bottom:319.860077px;}
.ycb{bottom:322.920043px;}
.ya3{bottom:328.860077px;}
.yfa{bottom:331.560036px;}
.y61{bottom:331.920043px;}
.y2d{bottom:335.340088px;}
.y8c{bottom:337.860077px;}
.yca{bottom:340.920043px;}
.yf9{bottom:348.120072px;}
.y60{bottom:349.920043px;}
.y8b{bottom:355.860077px;}
.y2c{bottom:357.840088px;}
.y5f{bottom:367.920043px;}
.yf8{bottom:370.620072px;}
.y2b{bottom:380.340088px;}
.y8a{bottom:382.860077px;}
.y5e{bottom:385.920043px;}
.yf7{bottom:393.120072px;}
.y89{bottom:400.860077px;}
.y2a{bottom:402.840088px;}
.yc9{bottom:403.920043px;}
.y5d{bottom:412.920043px;}
.yf6{bottom:415.620072px;}
.y88{bottom:418.860077px;}
.yc8{bottom:421.920043px;}
.y29{bottom:425.340088px;}
.y5c{bottom:430.920043px;}
.ya2{bottom:436.860077px;}
.yf5{bottom:438.120072px;}
.yc7{bottom:439.920043px;}
.y28{bottom:441.720085px;}
.y87{bottom:445.860077px;}
.y5b{bottom:448.920043px;}
.ya1{bottom:454.860077px;}
.yc6{bottom:457.920043px;}
.y27{bottom:458.280052px;}
.yf4{bottom:460.620072px;}
.y86{bottom:463.860077px;}
.y5a{bottom:466.920043px;}
.ya0{bottom:472.860077px;}
.y26{bottom:474.840088px;}
.y85{bottom:481.860077px;}
.yf3{bottom:483.120072px;}
.y59{bottom:484.920043px;}
.y9f{bottom:490.860077px;}
.y25{bottom:491.220085px;}
.y58{bottom:502.920043px;}
.yf2{bottom:505.620072px;}
.y24{bottom:507.780052px;}
.y84{bottom:508.860077px;}
.y57{bottom:520.920043px;}
.y23{bottom:524.340088px;}
.y83{bottom:526.860077px;}
.yf1{bottom:528.120072px;}
.y56{bottom:538.920043px;}
.y22{bottom:540.720085px;}
.y9e{bottom:544.860077px;}
.yd9{bottom:547.920043px;}
.yf0{bottom:550.620072px;}
.y82{bottom:553.860077px;}
.y55{bottom:556.920043px;}
.y21{bottom:557.280052px;}
.y9d{bottom:562.860077px;}
.yd8{bottom:565.920043px;}
.y81{bottom:571.860077px;}
.yef{bottom:573.120072px;}
.y20{bottom:573.840088px;}
.y54{bottom:574.920043px;}
.yd7{bottom:583.920043px;}
.yee{bottom:589.500068px;}
.y80{bottom:589.860077px;}
.y1f{bottom:590.220085px;}
.y53{bottom:592.920043px;}
.yd6{bottom:601.920043px;}
.y7f{bottom:607.860077px;}
.y52{bottom:610.920043px;}
.yed{bottom:612.000068px;}
.y1e{bottom:612.720085px;}
.yd5{bottom:619.920043px;}
.y7e{bottom:625.860077px;}
.yec{bottom:628.560036px;}
.y51{bottom:628.920043px;}
.y1d{bottom:635.220085px;}
.yd4{bottom:637.920043px;}
.y9c{bottom:643.860077px;}
.y50{bottom:646.920043px;}
.yeb{bottom:651.060036px;}
.y1c{bottom:651.780052px;}
.y7d{bottom:652.860077px;}
.yc5{bottom:655.920043px;}
.y1b{bottom:668.340088px;}
.y7c{bottom:670.860077px;}
.yea{bottom:673.560036px;}
.yc4{bottom:673.920043px;}
.y4f{bottom:675.180039px;}
.y1a{bottom:684.720085px;}
.y7b{bottom:688.860077px;}
.yc3{bottom:691.920078px;}
.ye9{bottom:696.060070px;}
.y19{bottom:701.280052px;}
.y9b{bottom:706.860077px;}
.yc2{bottom:709.920078px;}
.y4e{bottom:715.860077px;}
.y18{bottom:717.840054px;}
.ye8{bottom:718.920078px;}
.y9a{bottom:724.860077px;}
.yc1{bottom:727.920078px;}
.y7a{bottom:733.860077px;}
.y17{bottom:734.220051px;}
.yd3{bottom:736.920078px;}
.y4d{bottom:742.860077px;}
.ye7{bottom:745.920078px;}
.y16{bottom:750.780052px;}
.y79{bottom:751.860077px;}
.yc0{bottom:754.920078px;}
.y4c{bottom:760.860077px;}
.ye6{bottom:763.920078px;}
.y15{bottom:767.340054px;}
.y78{bottom:769.860077px;}
.ybf{bottom:772.920078px;}
.y4b{bottom:778.860077px;}
.ye5{bottom:781.920078px;}
.y14{bottom:783.720051px;}
.y99{bottom:787.860077px;}
.ybe{bottom:790.920078px;}
.y4a{bottom:796.860077px;}
.ye4{bottom:799.920078px;}
.y13{bottom:800.280052px;}
.y98{bottom:805.860077px;}
.ybd{bottom:808.920078px;}
.y49{bottom:814.860077px;}
.y12{bottom:822.780052px;}
.y97{bottom:823.860077px;}
.ybc{bottom:826.920078px;}
.y48{bottom:832.860077px;}
.yd2{bottom:835.920078px;}
.y96{bottom:841.860077px;}
.ye3{bottom:844.920078px;}
.y11{bottom:846.000068px;}
.y77{bottom:850.860077px;}
.ybb{bottom:853.920078px;}
.y47{bottom:859.860077px;}
.ye2{bottom:862.920078px;}
.y76{bottom:868.860077px;}
.yba{bottom:871.920078px;}
.y10{bottom:874.620072px;}
.y46{bottom:877.860077px;}
.ye1{bottom:880.920078px;}
.y75{bottom:886.860077px;}
.yb9{bottom:889.920078px;}
.y45{bottom:895.860077px;}
.ye0{bottom:898.920078px;}
.yf{bottom:903.060070px;}
.y74{bottom:904.860077px;}
.y44{bottom:913.860077px;}
.yb8{bottom:916.920078px;}
.y73{bottom:922.860077px;}
.ye{bottom:931.500068px;}
.y43{bottom:931.860077px;}
.yb7{bottom:934.920078px;}
.y72{bottom:940.860077px;}
.y42{bottom:949.860077px;}
.yb6{bottom:952.920078px;}
.y71{bottom:958.860077px;}
.y41{bottom:967.860077px;}
.yb5{bottom:970.920078px;}
.y95{bottom:976.860060px;}
.ydf{bottom:979.920061px;}
.y40{bottom:985.860060px;}
.yb4{bottom:988.920061px;}
.y94{bottom:994.860060px;}
.yde{bottom:997.920061px;}
.yd{bottom:998.820065px;}
.y3f{bottom:1003.860060px;}
.yd1{bottom:1006.920061px;}
.yb3{bottom:1015.920061px;}
.y3e{bottom:1021.860060px;}
.yb2{bottom:1033.920061px;}
.y70{bottom:1039.860060px;}
.yc{bottom:1040.940067px;}
.y3d{bottom:1048.860060px;}
.yb1{bottom:1051.920061px;}
.y6f{bottom:1057.860060px;}
.y3c{bottom:1066.860060px;}
.yb0{bottom:1069.920061px;}
.y6e{bottom:1075.860060px;}
.y3b{bottom:1084.860060px;}
.yaf{bottom:1087.920061px;}
.y9{bottom:1098.720068px;}
.y3a{bottom:1102.860060px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.yae{bottom:1116.180073px;}
.y39{bottom:1120.860068px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.h5{height:48.412173px;}
.h9{height:48.860434px;}
.hc{height:50.274688px;}
.hb{height:53.459200px;}
.h2{height:53.575923px;}
.h3{height:54.071997px;}
.h8{height:60.963227px;}
.h7{height:63.213312px;}
.ha{height:76.221948px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.xb{left:279.900003px;}
.x1{left:318.060001px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.x2{left:570.240006px;}
.x3{left:619.379998px;}
.x5{left:622.799973px;}
.x7{left:825.659981px;}
.xc{left:829.259994px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.056076pt;}
.ls4{letter-spacing:0.143390pt;}
.ls1{letter-spacing:0.334633pt;}
.ls3{letter-spacing:0.377478pt;}
.ws3{word-spacing:-20.742534pt;}
.ws4{word-spacing:-16.310425pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws6{word-spacing:-13.296554pt;}
.ws5{word-spacing:-9.573486pt;}
.ws7{word-spacing:-8.864343pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-3.412461pt;}
._5{margin-left:-2.433476pt;}
._2{margin-left:-1.527737pt;}
._0{width:1.159761pt;}
._1{width:2.844976pt;}
._4{width:4.301429pt;}
._6{width:5.663861pt;}
._7{width:6.598212pt;}
._8{width:7.568618pt;}
._9{width:22.272178pt;}
.fs7{font-size:32.001240pt;}
.fs6{font-size:34.561320pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y93{bottom:97.440064pt;}
.y6d{bottom:103.040039pt;}
.y38{bottom:106.400086pt;}
.yad{bottom:108.320069pt;}
.y92{bottom:117.440064pt;}
.y6c{bottom:119.040039pt;}
.y37{bottom:122.400086pt;}
.yac{bottom:124.320069pt;}
.y6b{bottom:135.040039pt;}
.y36{bottom:138.400086pt;}
.yab{bottom:140.320069pt;}
.yd0{bottom:143.040039pt;}
.y6a{bottom:151.040039pt;}
.y35{bottom:154.400086pt;}
.yaa{bottom:156.320069pt;}
.ydd{bottom:159.040039pt;}
.y101{bottom:161.760071pt;}
.y69{bottom:167.040039pt;}
.y34{bottom:170.400086pt;}
.ya9{bottom:172.320069pt;}
.ydc{bottom:175.040039pt;}
.y68{bottom:183.040039pt;}
.y100{bottom:185.440064pt;}
.y33{bottom:186.400086pt;}
.ya8{bottom:188.320069pt;}
.ydb{bottom:191.040039pt;}
.y91{bottom:192.160035pt;}
.y67{bottom:199.040039pt;}
.y32{bottom:202.400086pt;}
.yff{bottom:205.440064pt;}
.yda{bottom:207.040039pt;}
.ya7{bottom:212.320069pt;}
.y66{bottom:215.040039pt;}
.y31{bottom:218.400086pt;}
.yfe{bottom:220.000061pt;}
.ycf{bottom:223.040039pt;}
.y90{bottom:228.320069pt;}
.y65{bottom:231.040039pt;}
.y30{bottom:234.400086pt;}
.yce{bottom:239.040039pt;}
.yfd{bottom:240.000061pt;}
.ya6{bottom:244.320069pt;}
.y64{bottom:247.040039pt;}
.y2f{bottom:250.400086pt;}
.y8f{bottom:252.320069pt;}
.yfc{bottom:254.720032pt;}
.ycd{bottom:255.040039pt;}
.ya5{bottom:260.320069pt;}
.y63{bottom:263.040039pt;}
.y8e{bottom:268.320069pt;}
.ycc{bottom:271.040039pt;}
.y2e{bottom:274.400086pt;}
.yfb{bottom:274.720032pt;}
.ya4{bottom:276.320069pt;}
.y62{bottom:279.040039pt;}
.y8d{bottom:284.320069pt;}
.ycb{bottom:287.040039pt;}
.ya3{bottom:292.320069pt;}
.yfa{bottom:294.720032pt;}
.y61{bottom:295.040039pt;}
.y2d{bottom:298.080079pt;}
.y8c{bottom:300.320069pt;}
.yca{bottom:303.040039pt;}
.yf9{bottom:309.440064pt;}
.y60{bottom:311.040039pt;}
.y8b{bottom:316.320069pt;}
.y2c{bottom:318.080079pt;}
.y5f{bottom:327.040039pt;}
.yf8{bottom:329.440064pt;}
.y2b{bottom:338.080079pt;}
.y8a{bottom:340.320069pt;}
.y5e{bottom:343.040039pt;}
.yf7{bottom:349.440064pt;}
.y89{bottom:356.320069pt;}
.y2a{bottom:358.080079pt;}
.yc9{bottom:359.040039pt;}
.y5d{bottom:367.040039pt;}
.yf6{bottom:369.440064pt;}
.y88{bottom:372.320069pt;}
.yc8{bottom:375.040039pt;}
.y29{bottom:378.080079pt;}
.y5c{bottom:383.040039pt;}
.ya2{bottom:388.320069pt;}
.yf5{bottom:389.440064pt;}
.yc7{bottom:391.040039pt;}
.y28{bottom:392.640076pt;}
.y87{bottom:396.320069pt;}
.y5b{bottom:399.040039pt;}
.ya1{bottom:404.320069pt;}
.yc6{bottom:407.040039pt;}
.y27{bottom:407.360047pt;}
.yf4{bottom:409.440064pt;}
.y86{bottom:412.320069pt;}
.y5a{bottom:415.040039pt;}
.ya0{bottom:420.320069pt;}
.y26{bottom:422.080079pt;}
.y85{bottom:428.320069pt;}
.yf3{bottom:429.440064pt;}
.y59{bottom:431.040039pt;}
.y9f{bottom:436.320069pt;}
.y25{bottom:436.640076pt;}
.y58{bottom:447.040039pt;}
.yf2{bottom:449.440064pt;}
.y24{bottom:451.360047pt;}
.y84{bottom:452.320069pt;}
.y57{bottom:463.040039pt;}
.y23{bottom:466.080079pt;}
.y83{bottom:468.320069pt;}
.yf1{bottom:469.440064pt;}
.y56{bottom:479.040039pt;}
.y22{bottom:480.640076pt;}
.y9e{bottom:484.320069pt;}
.yd9{bottom:487.040039pt;}
.yf0{bottom:489.440064pt;}
.y82{bottom:492.320069pt;}
.y55{bottom:495.040039pt;}
.y21{bottom:495.360047pt;}
.y9d{bottom:500.320069pt;}
.yd8{bottom:503.040039pt;}
.y81{bottom:508.320069pt;}
.yef{bottom:509.440064pt;}
.y20{bottom:510.080079pt;}
.y54{bottom:511.040039pt;}
.yd7{bottom:519.040039pt;}
.yee{bottom:524.000061pt;}
.y80{bottom:524.320069pt;}
.y1f{bottom:524.640076pt;}
.y53{bottom:527.040039pt;}
.yd6{bottom:535.040039pt;}
.y7f{bottom:540.320069pt;}
.y52{bottom:543.040039pt;}
.yed{bottom:544.000061pt;}
.y1e{bottom:544.640076pt;}
.yd5{bottom:551.040039pt;}
.y7e{bottom:556.320069pt;}
.yec{bottom:558.720032pt;}
.y51{bottom:559.040039pt;}
.y1d{bottom:564.640076pt;}
.yd4{bottom:567.040039pt;}
.y9c{bottom:572.320069pt;}
.y50{bottom:575.040039pt;}
.yeb{bottom:578.720032pt;}
.y1c{bottom:579.360047pt;}
.y7d{bottom:580.320069pt;}
.yc5{bottom:583.040039pt;}
.y1b{bottom:594.080079pt;}
.y7c{bottom:596.320069pt;}
.yea{bottom:598.720032pt;}
.yc4{bottom:599.040039pt;}
.y4f{bottom:600.160035pt;}
.y1a{bottom:608.640076pt;}
.y7b{bottom:612.320069pt;}
.yc3{bottom:615.040070pt;}
.ye9{bottom:618.720063pt;}
.y19{bottom:623.360047pt;}
.y9b{bottom:628.320069pt;}
.yc2{bottom:631.040070pt;}
.y4e{bottom:636.320069pt;}
.y18{bottom:638.080048pt;}
.ye8{bottom:639.040070pt;}
.y9a{bottom:644.320069pt;}
.yc1{bottom:647.040070pt;}
.y7a{bottom:652.320069pt;}
.y17{bottom:652.640046pt;}
.yd3{bottom:655.040070pt;}
.y4d{bottom:660.320069pt;}
.ye7{bottom:663.040070pt;}
.y16{bottom:667.360047pt;}
.y79{bottom:668.320069pt;}
.yc0{bottom:671.040070pt;}
.y4c{bottom:676.320069pt;}
.ye6{bottom:679.040070pt;}
.y15{bottom:682.080048pt;}
.y78{bottom:684.320069pt;}
.ybf{bottom:687.040070pt;}
.y4b{bottom:692.320069pt;}
.ye5{bottom:695.040070pt;}
.y14{bottom:696.640046pt;}
.y99{bottom:700.320069pt;}
.ybe{bottom:703.040070pt;}
.y4a{bottom:708.320069pt;}
.ye4{bottom:711.040070pt;}
.y13{bottom:711.360047pt;}
.y98{bottom:716.320069pt;}
.ybd{bottom:719.040070pt;}
.y49{bottom:724.320069pt;}
.y12{bottom:731.360047pt;}
.y97{bottom:732.320069pt;}
.ybc{bottom:735.040070pt;}
.y48{bottom:740.320069pt;}
.yd2{bottom:743.040070pt;}
.y96{bottom:748.320069pt;}
.ye3{bottom:751.040070pt;}
.y11{bottom:752.000061pt;}
.y77{bottom:756.320069pt;}
.ybb{bottom:759.040070pt;}
.y47{bottom:764.320069pt;}
.ye2{bottom:767.040070pt;}
.y76{bottom:772.320069pt;}
.yba{bottom:775.040070pt;}
.y10{bottom:777.440064pt;}
.y46{bottom:780.320069pt;}
.ye1{bottom:783.040070pt;}
.y75{bottom:788.320069pt;}
.yb9{bottom:791.040070pt;}
.y45{bottom:796.320069pt;}
.ye0{bottom:799.040070pt;}
.yf{bottom:802.720063pt;}
.y74{bottom:804.320069pt;}
.y44{bottom:812.320069pt;}
.yb8{bottom:815.040070pt;}
.y73{bottom:820.320069pt;}
.ye{bottom:828.000061pt;}
.y43{bottom:828.320069pt;}
.yb7{bottom:831.040070pt;}
.y72{bottom:836.320069pt;}
.y42{bottom:844.320069pt;}
.yb6{bottom:847.040070pt;}
.y71{bottom:852.320069pt;}
.y41{bottom:860.320069pt;}
.yb5{bottom:863.040070pt;}
.y95{bottom:868.320054pt;}
.ydf{bottom:871.040055pt;}
.y40{bottom:876.320054pt;}
.yb4{bottom:879.040055pt;}
.y94{bottom:884.320054pt;}
.yde{bottom:887.040055pt;}
.yd{bottom:887.840058pt;}
.y3f{bottom:892.320054pt;}
.yd1{bottom:895.040055pt;}
.yb3{bottom:903.040055pt;}
.y3e{bottom:908.320054pt;}
.yb2{bottom:919.040055pt;}
.y70{bottom:924.320054pt;}
.yc{bottom:925.280060pt;}
.y3d{bottom:932.320054pt;}
.yb1{bottom:935.040055pt;}
.y6f{bottom:940.320054pt;}
.y3c{bottom:948.320054pt;}
.yb0{bottom:951.040055pt;}
.y6e{bottom:956.320054pt;}
.y3b{bottom:964.320054pt;}
.yaf{bottom:967.040055pt;}
.y9{bottom:976.640061pt;}
.y3a{bottom:980.320054pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.yae{bottom:992.160065pt;}
.y39{bottom:996.320061pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.h5{height:43.033043pt;}
.h9{height:43.431497pt;}
.hc{height:44.688612pt;}
.hb{height:47.519289pt;}
.h2{height:47.623043pt;}
.h3{height:48.063997pt;}
.h8{height:54.189535pt;}
.h7{height:56.189611pt;}
.ha{height:67.752842pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.xb{left:248.800003pt;}
.x1{left:282.720001pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.x2{left:506.880005pt;}
.x3{left:550.559998pt;}
.x5{left:553.599976pt;}
.x7{left:733.919983pt;}
.xc{left:737.119995pt;}
}




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