
    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_9c3f9fd6f1344572921e03fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_4eb58755cf3991127dba16a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_6254f3fa5beecbaa8a0bb55e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_f795e0d9912c9a0e883bc67d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_4a4e577884706fa5d5d9c459.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_56e76b12e517b92b0b63fe50.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-5.760130px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360077px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls4{letter-spacing:0.719342px;}
.ls3{letter-spacing:34.055251px;}
.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;}
}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-5.232317px;}
._14{margin-left:-3.974154px;}
._16{margin-left:-2.759215px;}
._1{margin-left:-1.223997px;}
._0{width:1.007997px;}
._5{width:2.329440px;}
._1a{width:3.477407px;}
._2{width:4.513669px;}
._13{width:5.528407px;}
._12{width:6.686407px;}
._11{width:7.823544px;}
._18{width:9.601111px;}
._17{width:10.680589px;}
._7{width:11.974090px;}
._6{width:13.874021px;}
._b{width:15.940442px;}
._1c{width:19.705115px;}
._a{width:20.910035px;}
._3{width:23.535040px;}
._4{width:24.619943px;}
._1d{width:25.960631px;}
._15{width:31.257321px;}
._d{width:32.474345px;}
._e{width:33.666327px;}
._19{width:38.017990px;}
._c{width:39.718211px;}
._f{width:45.261294px;}
._10{width:46.829965px;}
._8{width:114.181622px;}
._9{width:115.220964px;}
._1f{width:236.891710px;}
._1e{width:243.910568px;}
._27{width:276.881337px;}
._2c{width:289.908764px;}
._21{width:329.016639px;}
._2b{width:342.491592px;}
._2d{width:397.144980px;}
._20{width:399.481130px;}
._26{width:415.145656px;}
._22{width:433.710259px;}
._28{width:451.147008px;}
._30{width:459.787333px;}
._32{width:478.146326px;}
._2e{width:543.620419px;}
._24{width:561.057168px;}
._23{width:573.861555px;}
._25{width:579.057844px;}
._2a{width:597.622447px;}
._29{width:609.862907px;}
._31{width:624.983475px;}
._2f{width:636.503908px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y7c{bottom:2.879997px;}
.y79{bottom:2.879998px;}
.yb5{bottom:2.880014px;}
.ybc{bottom:2.880015px;}
.y8c{bottom:2.880031px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y71{bottom:106.020127px;}
.yae{bottom:107.280121px;}
.y3d{bottom:109.440033px;}
.yea{bottom:115.920043px;}
.y70{bottom:126.720085px;}
.yad{bottom:128.700096px;}
.y3c{bottom:130.140060px;}
.ye9{bottom:136.620072px;}
.y6f{bottom:147.420043px;}
.yab{bottom:150.120072px;}
.y3b{bottom:150.840088px;}
.yac{bottom:154.080093px;}
.ye8{bottom:157.680039px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.ye7{bottom:178.380066px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.yaa{bottom:192.960091px;}
.ye6{bottom:199.080093px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.580093px;}
.ya9{bottom:214.380066px;}
.ye5{bottom:219.780052px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.ya8{bottom:235.620072px;}
.ye4{bottom:240.480079px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.ya7{bottom:256.320099px;}
.ye3{bottom:261.180039px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.ya6{bottom:277.020058px;}
.ye2{bottom:281.880066px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.ya5{bottom:298.080093px;}
.ye1{bottom:302.220085px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.ya4{bottom:318.780052px;}
.ye0{bottom:323.280052px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.ya3{bottom:339.480079px;}
.ydf{bottom:343.980079px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.ya2{bottom:360.180039px;}
.yde{bottom:364.680039px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.ya1{bottom:380.880066px;}
.ydd{bottom:385.380066px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.ya0{bottom:401.580093px;}
.ydc{bottom:406.080093px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.580093px;}
.y9f{bottom:422.280052px;}
.ydb{bottom:426.780052px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.y9e{bottom:442.800041px;}
.yda{bottom:447.300041px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.y9d{bottom:463.500068px;}
.yd9{bottom:468.000068px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.y9c{bottom:484.200096px;}
.yd8{bottom:488.700096px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.y9b{bottom:504.900055px;}
.yd7{bottom:509.400055px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.y9a{bottom:525.600083px;}
.yd6{bottom:530.100083px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y99{bottom:546.300041px;}
.yd5{bottom:550.800041px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y98{bottom:567.000068px;}
.yd4{bottom:571.500068px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.y97{bottom:587.700096px;}
.yd3{bottom:592.200096px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y96{bottom:608.400055px;}
.yd2{bottom:612.900055px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y95{bottom:630.000068px;}
.yd1{bottom:633.600083px;}
.y101{bottom:640.800041px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y93{bottom:651.420043px;}
.yd0{bottom:654.300041px;}
.y94{bottom:655.380066px;}
.y100{bottom:664.740074px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y92{bottom:672.840088px;}
.ycf{bottom:675.000068px;}
.y55{bottom:685.620072px;}
.yff{bottom:688.500068px;}
.y21{bottom:689.040081px;}
.y90{bottom:694.260064px;}
.yce{bottom:695.700061px;}
.y91{bottom:698.220051px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.yfe{bottom:712.260064px;}
.y8e{bottom:715.680073px;}
.ycd{bottom:716.400055px;}
.y8f{bottom:719.640060px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.yfd{bottom:736.020058px;}
.y8d{bottom:737.100083px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.ycc{bottom:757.800076px;}
.y8a{bottom:758.700061px;}
.yfc{bottom:759.960056px;}
.y8b{bottom:762.660049px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.ycb{bottom:778.500068px;}
.y89{bottom:780.120072px;}
.yfb{bottom:783.720051px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.yca{bottom:799.200061px;}
.y87{bottom:801.540081px;}
.y88{bottom:805.500068px;}
.yfa{bottom:807.480079px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:813.240074px;}
.yc9{bottom:819.900055px;}
.y85{bottom:822.960056px;}
.y86{bottom:826.920078px;}
.y4e{bottom:830.520058px;}
.yf9{bottom:831.240074px;}
.y1a{bottom:833.580059px;}
.yc8{bottom:840.600083px;}
.y83{bottom:844.380066px;}
.y84{bottom:848.340054px;}
.y4d{bottom:851.220051px;}
.y19{bottom:853.920078px;}
.yf8{bottom:855.180073px;}
.yc7{bottom:861.300076px;}
.y82{bottom:865.800076px;}
.y18{bottom:871.200061px;}
.y4c{bottom:871.920078px;}
.yf7{bottom:878.940067px;}
.yc6{bottom:882.000068px;}
.y80{bottom:887.220051px;}
.y17{bottom:888.480079px;}
.y81{bottom:891.180073px;}
.y4b{bottom:892.620072px;}
.yf6{bottom:902.700061px;}
.yc4{bottom:903.420078px;}
.y16{bottom:906.120072px;}
.yc5{bottom:907.380066px;}
.y7e{bottom:908.820065px;}
.y7f{bottom:912.780052px;}
.y4a{bottom:913.320065px;}
.yc3{bottom:925.020058px;}
.yf5{bottom:926.460056px;}
.y15{bottom:927.180073px;}
.y7d{bottom:930.240074px;}
.y49{bottom:934.020058px;}
.yc2{bottom:946.440067px;}
.y14{bottom:947.880066px;}
.yf4{bottom:950.400055px;}
.y7a{bottom:951.660049px;}
.y48{bottom:954.720051px;}
.y7b{bottom:955.620072px;}
.yc0{bottom:967.860077px;}
.y13{bottom:968.220051px;}
.yc1{bottom:971.820065px;}
.y77{bottom:973.080059px;}
.yf3{bottom:974.160049px;}
.y47{bottom:975.420061px;}
.y78{bottom:977.040064px;}
.y12{bottom:988.920061px;}
.ybe{bottom:989.280069px;}
.ybf{bottom:993.240074px;}
.y76{bottom:994.500068px;}
.y46{bottom:996.120072px;}
.yf2{bottom:997.920061px;}
.y11{bottom:1009.620072px;}
.ybd{bottom:1010.700061px;}
.y75{bottom:1015.920061px;}
.y45{bottom:1016.820065px;}
.yf1{bottom:1021.680073px;}
.y10{bottom:1030.320065px;}
.yba{bottom:1032.120072px;}
.ybb{bottom:1036.080059px;}
.y74{bottom:1037.160067px;}
.y44{bottom:1037.520058px;}
.yf0{bottom:1045.620072px;}
.yf{bottom:1051.020058px;}
.yb8{bottom:1053.720068px;}
.yb9{bottom:1057.680073px;}
.y73{bottom:1057.860060px;}
.y43{bottom:1058.220068px;}
.yef{bottom:1069.380066px;}
.ye{bottom:1071.720068px;}
.yb6{bottom:1075.140060px;}
.y72{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yb7{bottom:1079.100065px;}
.yd{bottom:1092.240074px;}
.yee{bottom:1093.140060px;}
.yb3{bottom:1096.560070px;}
.y41{bottom:1099.620072px;}
.yb4{bottom:1100.520058px;}
.yc{bottom:1112.940067px;}
.yed{bottom:1116.900072px;}
.yb2{bottom:1117.980063px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.yb1{bottom:1139.400064px;}
.yec{bottom:1140.840063px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.yaf{bottom:1160.820065px;}
.yeb{bottom:1161.360068px;}
.y3e{bottom:1161.720068px;}
.yb0{bottom:1164.780069px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.hd{height:12.239971px;}
.h11{height:12.239989px;}
.h10{height:12.239997px;}
.he{height:12.240004px;}
.hc{height:12.240006px;}
.h3{height:14.579955px;}
.h6{height:33.684460px;}
.hb{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h9{height:52.173835px;}
.h12{height:52.419938px;}
.ha{height:52.630883px;}
.hf{height:61.044536px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h13{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w8{width:5.939964px;}
.w5{width:5.939965px;}
.w6{width:6.120002px;}
.w3{width:7.019989px;}
.w7{width:9.000000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:103.860084px;}
.xe{left:110.340002px;}
.x1e{left:112.140000px;}
.x1b{left:120.420001px;}
.x20{left:123.659998px;}
.xb{left:125.099997px;}
.x16{left:133.739997px;}
.xc{left:137.700002px;}
.x13{left:138.959997px;}
.x14{left:160.740006px;}
.x9{left:220.323648px;}
.x1f{left:221.939999px;}
.xf{left:227.699993px;}
.x1a{left:298.980011px;}
.x17{left:303.480011px;}
.x15{left:371.519989px;}
.x23{left:430.920010px;}
.x2{left:432.899987px;}
.xd{left:446.399987px;}
.xa{left:473.399987px;}
.x11{left:523.439999px;}
.x12{left:564.480011px;}
.x10{left:594.899987px;}
.x22{left:714.960023px;}
.x1c{left:721.620002px;}
.x18{left:726.120002px;}
.x1d{left:727.559967px;}
.x21{left:730.620002px;}
.x19{left:732.059967px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v1{vertical-align:-5.120116pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320068pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls4{letter-spacing:0.639415pt;}
.ls3{letter-spacing:30.271334pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-4.650949pt;}
._14{margin-left:-3.532581pt;}
._16{margin-left:-2.452636pt;}
._1{margin-left:-1.087997pt;}
._0{width:0.895998pt;}
._5{width:2.070614pt;}
._1a{width:3.091029pt;}
._2{width:4.012151pt;}
._13{width:4.914139pt;}
._12{width:5.943473pt;}
._11{width:6.954261pt;}
._18{width:8.534320pt;}
._17{width:9.493857pt;}
._7{width:10.643635pt;}
._6{width:12.332463pt;}
._b{width:14.169282pt;}
._1c{width:17.515658pt;}
._a{width:18.586698pt;}
._3{width:20.920036pt;}
._4{width:21.884394pt;}
._1d{width:23.076117pt;}
._15{width:27.784286pt;}
._d{width:28.866084pt;}
._e{width:29.925624pt;}
._19{width:33.793769pt;}
._c{width:35.305076pt;}
._f{width:40.232261pt;}
._10{width:41.626635pt;}
._8{width:101.494775pt;}
._9{width:102.418634pt;}
._1f{width:210.570409pt;}
._1e{width:216.809394pt;}
._27{width:246.116744pt;}
._2c{width:257.696679pt;}
._21{width:292.459235pt;}
._2b{width:304.436971pt;}
._2d{width:353.017760pt;}
._20{width:355.094338pt;}
._26{width:369.018361pt;}
._22{width:385.520231pt;}
._28{width:401.019563pt;}
._30{width:408.699851pt;}
._32{width:425.018956pt;}
._2e{width:483.218150pt;}
._24{width:498.717482pt;}
._23{width:510.099160pt;}
._25{width:514.718083pt;}
._2a{width:531.219953pt;}
._29{width:542.100362pt;}
._31{width:555.540867pt;}
._2f{width:565.781251pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y7c{bottom:2.559997pt;}
.y79{bottom:2.559998pt;}
.yb5{bottom:2.560012pt;}
.ybc{bottom:2.560013pt;}
.y8c{bottom:2.560028pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y71{bottom:94.240113pt;}
.yae{bottom:95.360108pt;}
.y3d{bottom:97.280030pt;}
.yea{bottom:103.040039pt;}
.y70{bottom:112.640076pt;}
.yad{bottom:114.400086pt;}
.y3c{bottom:115.680054pt;}
.ye9{bottom:121.440064pt;}
.y6f{bottom:131.040039pt;}
.yab{bottom:133.440064pt;}
.y3b{bottom:134.080079pt;}
.yac{bottom:136.960083pt;}
.ye8{bottom:140.160035pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.ye7{bottom:158.560059pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.yaa{bottom:171.520081pt;}
.ye6{bottom:176.960083pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:188.960083pt;}
.ya9{bottom:190.560059pt;}
.ye5{bottom:195.360047pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.ya8{bottom:209.440064pt;}
.ye4{bottom:213.760071pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.ya7{bottom:227.840088pt;}
.ye3{bottom:232.160035pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.ya6{bottom:246.240052pt;}
.ye2{bottom:250.560059pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.ya5{bottom:264.960083pt;}
.ye1{bottom:268.640076pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.ya4{bottom:283.360047pt;}
.ye0{bottom:287.360047pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.ya3{bottom:301.760071pt;}
.ydf{bottom:305.760071pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.ya2{bottom:320.160035pt;}
.yde{bottom:324.160035pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.ya1{bottom:338.560059pt;}
.ydd{bottom:342.560059pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.ya0{bottom:356.960083pt;}
.ydc{bottom:360.960083pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:372.960083pt;}
.y9f{bottom:375.360047pt;}
.ydb{bottom:379.360047pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.y9e{bottom:393.600037pt;}
.yda{bottom:397.600037pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.y9d{bottom:412.000061pt;}
.yd9{bottom:416.000061pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.y9c{bottom:430.400086pt;}
.yd8{bottom:434.400086pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.y9b{bottom:448.800049pt;}
.yd7{bottom:452.800049pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.y9a{bottom:467.200074pt;}
.yd6{bottom:471.200074pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y99{bottom:485.600037pt;}
.yd5{bottom:489.600037pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y98{bottom:504.000061pt;}
.yd4{bottom:508.000061pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.y97{bottom:522.400086pt;}
.yd3{bottom:526.400086pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y96{bottom:540.800049pt;}
.yd2{bottom:544.800049pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y95{bottom:560.000061pt;}
.yd1{bottom:563.200074pt;}
.y101{bottom:569.600037pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y93{bottom:579.040039pt;}
.yd0{bottom:581.600037pt;}
.y94{bottom:582.560059pt;}
.y100{bottom:590.880066pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y92{bottom:598.080079pt;}
.ycf{bottom:600.000061pt;}
.y55{bottom:609.440064pt;}
.yff{bottom:612.000061pt;}
.y21{bottom:612.480072pt;}
.y90{bottom:617.120057pt;}
.yce{bottom:618.400055pt;}
.y91{bottom:620.640046pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.yfe{bottom:633.120057pt;}
.y8e{bottom:636.160065pt;}
.ycd{bottom:636.800049pt;}
.y8f{bottom:639.680054pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.yfd{bottom:654.240052pt;}
.y8d{bottom:655.200074pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.ycc{bottom:673.600068pt;}
.y8a{bottom:674.400055pt;}
.yfc{bottom:675.520050pt;}
.y8b{bottom:677.920044pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.ycb{bottom:692.000061pt;}
.y89{bottom:693.440064pt;}
.yfb{bottom:696.640046pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.yca{bottom:710.400055pt;}
.y87{bottom:712.480072pt;}
.y88{bottom:716.000061pt;}
.yfa{bottom:717.760071pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.880066pt;}
.yc9{bottom:728.800049pt;}
.y85{bottom:731.520050pt;}
.y86{bottom:735.040070pt;}
.y4e{bottom:738.240052pt;}
.yf9{bottom:738.880066pt;}
.y1a{bottom:740.960053pt;}
.yc8{bottom:747.200074pt;}
.y83{bottom:750.560059pt;}
.y84{bottom:754.080048pt;}
.y4d{bottom:756.640046pt;}
.y19{bottom:759.040070pt;}
.yf8{bottom:760.160065pt;}
.yc7{bottom:765.600068pt;}
.y82{bottom:769.600068pt;}
.y18{bottom:774.400055pt;}
.y4c{bottom:775.040070pt;}
.yf7{bottom:781.280060pt;}
.yc6{bottom:784.000061pt;}
.y80{bottom:788.640046pt;}
.y17{bottom:789.760071pt;}
.y81{bottom:792.160065pt;}
.y4b{bottom:793.440064pt;}
.yf6{bottom:802.400055pt;}
.yc4{bottom:803.040070pt;}
.y16{bottom:805.440064pt;}
.yc5{bottom:806.560059pt;}
.y7e{bottom:807.840058pt;}
.y7f{bottom:811.360047pt;}
.y4a{bottom:811.840058pt;}
.yc3{bottom:822.240052pt;}
.yf5{bottom:823.520050pt;}
.y15{bottom:824.160065pt;}
.y7d{bottom:826.880066pt;}
.y49{bottom:830.240052pt;}
.yc2{bottom:841.280060pt;}
.y14{bottom:842.560059pt;}
.yf4{bottom:844.800049pt;}
.y7a{bottom:845.920044pt;}
.y48{bottom:848.640046pt;}
.y7b{bottom:849.440064pt;}
.yc0{bottom:860.320069pt;}
.y13{bottom:860.640046pt;}
.yc1{bottom:863.840058pt;}
.y77{bottom:864.960053pt;}
.yf3{bottom:865.920044pt;}
.y47{bottom:867.040055pt;}
.y78{bottom:868.480057pt;}
.y12{bottom:879.040055pt;}
.ybe{bottom:879.360062pt;}
.ybf{bottom:882.880066pt;}
.y76{bottom:884.000061pt;}
.y46{bottom:885.440064pt;}
.yf2{bottom:887.040055pt;}
.y11{bottom:897.440064pt;}
.ybd{bottom:898.400055pt;}
.y75{bottom:903.040055pt;}
.y45{bottom:903.840058pt;}
.yf1{bottom:908.160065pt;}
.y10{bottom:915.840058pt;}
.yba{bottom:917.440064pt;}
.ybb{bottom:920.960053pt;}
.y74{bottom:921.920060pt;}
.y44{bottom:922.240052pt;}
.yf0{bottom:929.440064pt;}
.yf{bottom:934.240052pt;}
.yb8{bottom:936.640061pt;}
.yb9{bottom:940.160065pt;}
.y73{bottom:940.320054pt;}
.y43{bottom:940.640061pt;}
.yef{bottom:950.560059pt;}
.ye{bottom:952.640061pt;}
.yb6{bottom:955.680054pt;}
.y72{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yb7{bottom:959.200058pt;}
.yd{bottom:970.880066pt;}
.yee{bottom:971.680054pt;}
.yb3{bottom:974.720063pt;}
.y41{bottom:977.440064pt;}
.yb4{bottom:978.240052pt;}
.yc{bottom:989.280060pt;}
.yed{bottom:992.800064pt;}
.yb2{bottom:993.760056pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.yb1{bottom:1012.800057pt;}
.yec{bottom:1014.080056pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.yaf{bottom:1031.840058pt;}
.yeb{bottom:1032.320061pt;}
.y3e{bottom:1032.640061pt;}
.yb0{bottom:1035.360062pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.hd{height:10.879974pt;}
.h11{height:10.879990pt;}
.h10{height:10.879997pt;}
.he{height:10.880004pt;}
.hc{height:10.880005pt;}
.h3{height:12.959960pt;}
.h6{height:29.941742pt;}
.hb{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h9{height:46.376742pt;}
.h12{height:46.595500pt;}
.ha{height:46.783007pt;}
.hf{height:54.261810pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h13{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w8{width:5.279968pt;}
.w5{width:5.279969pt;}
.w6{width:5.440002pt;}
.w3{width:6.239990pt;}
.w7{width:8.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:92.320075pt;}
.xe{left:98.080002pt;}
.x1e{left:99.680000pt;}
.x1b{left:107.040001pt;}
.x20{left:109.919998pt;}
.xb{left:111.199997pt;}
.x16{left:118.879997pt;}
.xc{left:122.400002pt;}
.x13{left:123.519997pt;}
.x14{left:142.880005pt;}
.x9{left:195.843243pt;}
.x1f{left:197.279999pt;}
.xf{left:202.399994pt;}
.x1a{left:265.760010pt;}
.x17{left:269.760010pt;}
.x15{left:330.239990pt;}
.x23{left:383.040009pt;}
.x2{left:384.799988pt;}
.xd{left:396.799988pt;}
.xa{left:420.799988pt;}
.x11{left:465.279999pt;}
.x12{left:501.760010pt;}
.x10{left:528.799988pt;}
.x22{left:635.520020pt;}
.x1c{left:641.440002pt;}
.x18{left:645.440002pt;}
.x1d{left:646.719971pt;}
.x21{left:649.440002pt;}
.x19{left:650.719971pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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