
    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_44960c25dc1c57cd6d661a12.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_c3ca2825351aaa67dadfe2e2.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_daac5825ef23954c9b161ad8.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_96c071a3e94f5d563e6e4c33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_1d4fb22d30705d1039a99aaa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_319b3e714e6148c6391af217.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);}
.v8{vertical-align:-19.441352px;}
.va{vertical-align:-14.414047px;}
.v7{vertical-align:-6.468721px;}
.vc{vertical-align:-5.062496px;}
.v5{vertical-align:-2.144582px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440036px;}
.vb{vertical-align:2.847640px;}
.v9{vertical-align:5.027305px;}
.v4{vertical-align:8.648385px;}
.v3{vertical-align:16.558521px;}
.v6{vertical-align:22.324076px;}
.v1{vertical-align:41.039978px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.615251px;}
.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;}
}
.ws2{word-spacing:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:159.855003px;}
.ws8{word-spacing:166.323724px;}
.ws4{word-spacing:177.116691px;}
.ws5{word-spacing:177.824256px;}
.wsb{word-spacing:177.839541px;}
.ws6{word-spacing:177.846142px;}
.ws3{word-spacing:177.855047px;}
.wse{word-spacing:178.558140px;}
.ws7{word-spacing:188.648014px;}
.wsa{word-spacing:189.355579px;}
.wsc{word-spacing:201.620572px;}
.wsd{word-spacing:231.116535px;}
.wsf{word-spacing:231.116642px;}
._3e{margin-left:-5.255072px;}
._1a{margin-left:-3.460911px;}
._13{margin-left:-2.068390px;}
._1{margin-left:-1.032177px;}
._0{width:1.223997px;}
._b{width:3.047838px;}
._c{width:4.219202px;}
._a{width:5.350089px;}
._4{width:7.200882px;}
._14{width:8.749356px;}
._19{width:9.765451px;}
._9{width:10.801017px;}
._8{width:11.869428px;}
._6{width:13.488181px;}
._7{width:14.559207px;}
._1c{width:15.685522px;}
._1b{width:16.972999px;}
._40{width:19.287443px;}
._e{width:20.305888px;}
._f{width:21.864634px;}
._24{width:23.233810px;}
._5{width:24.504545px;}
._15{width:25.537053px;}
._16{width:26.769965px;}
._3f{width:27.882815px;}
._1d{width:29.114406px;}
._10{width:30.144431px;}
._d{width:31.681190px;}
._18{width:33.143464px;}
._12{width:34.511564px;}
._11{width:35.763406px;}
._17{width:36.805476px;}
._23{width:38.000967px;}
._22{width:39.062923px;}
._3d{width:40.504053px;}
._1e{width:44.883561px;}
._1f{width:46.064159px;}
._20{width:48.206654px;}
._21{width:49.911093px;}
._2{width:55.569256px;}
._3{width:57.030317px;}
._3b{width:66.242488px;}
._27{width:84.243164px;}
._3a{width:86.403245px;}
._3c{width:93.603516px;}
._26{width:103.683894px;}
._2b{width:120.244517px;}
._25{width:122.404598px;}
._49{width:134.792106px;}
._4a{width:136.156185px;}
._2a{width:139.685247px;}
._29{width:158.405950px;}
._48{width:159.839587px;}
._28{width:187.088389px;}
._43{width:263.653990px;}
._42{width:294.488559px;}
._30{width:312.467415px;}
._34{width:320.470122px;}
._44{width:326.871887px;}
._41{width:341.545673px;}
._47{width:359.293495px;}
._33{width:367.832383px;}
._32{width:379.942619px;}
._45{width:397.454929px;}
._36{width:423.646011px;}
._37{width:431.567996px;}
._46{width:434.176308px;}
._39{width:440.982532px;}
._35{width:443.909892px;}
._2d{width:456.490164px;}
._38{width:459.814994px;}
._2e{width:475.583587px;}
._31{width:479.496484px;}
._2f{width:512.714432px;}
._2c{width:557.913424px;}
._4b{width:849.450273px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.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;}
.y5{bottom:3.240005px;}
.y7b{bottom:3.960004px;}
.y80{bottom:4.319996px;}
.y7d{bottom:4.319997px;}
.y91{bottom:4.320029px;}
.y88{bottom:4.320030px;}
.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;}
.yb6{bottom:108.360077px;}
.ycf{bottom:109.080093px;}
.y3d{bottom:109.440033px;}
.y70{bottom:126.720085px;}
.yb5{bottom:129.060036px;}
.y3c{bottom:130.140060px;}
.y6f{bottom:147.420043px;}
.yb4{bottom:149.760064px;}
.y3b{bottom:150.840088px;}
.y6e{bottom:168.120072px;}
.yb3{bottom:170.460091px;}
.y3a{bottom:171.540047px;}
.y6d{bottom:188.820099px;}
.yb2{bottom:191.160049px;}
.y39{bottom:192.240074px;}
.y6c{bottom:209.520058px;}
.yb1{bottom:211.860077px;}
.y38{bottom:212.940033px;}
.y6b{bottom:230.220085px;}
.yb0{bottom:232.560036px;}
.y37{bottom:233.640060px;}
.y6a{bottom:250.920043px;}
.yaf{bottom:253.260064px;}
.y36{bottom:254.340088px;}
.yce{bottom:254.700096px;}
.y69{bottom:271.620072px;}
.yae{bottom:273.960091px;}
.y35{bottom:275.040047px;}
.ycd{bottom:276.120072px;}
.y68{bottom:292.320099px;}
.yad{bottom:294.660049px;}
.y34{bottom:295.740074px;}
.ycc{bottom:297.540047px;}
.y67{bottom:313.020058px;}
.yac{bottom:315.360077px;}
.y33{bottom:316.440033px;}
.ycb{bottom:319.140060px;}
.y66{bottom:333.720085px;}
.yab{bottom:336.060036px;}
.y32{bottom:337.140060px;}
.yca{bottom:340.560036px;}
.y65{bottom:354.420043px;}
.yaa{bottom:356.760064px;}
.y31{bottom:357.840088px;}
.yc9{bottom:361.980079px;}
.y64{bottom:375.120072px;}
.ya9{bottom:377.460091px;}
.y30{bottom:378.540047px;}
.yc7{bottom:383.400055px;}
.yc6{bottom:393.840088px;}
.y63{bottom:395.820099px;}
.ya8{bottom:398.160049px;}
.y2f{bottom:399.240074px;}
.yc8{bottom:404.100083px;}
.y62{bottom:416.520058px;}
.ya7{bottom:418.860077px;}
.y2e{bottom:419.940033px;}
.yc5{bottom:425.520058px;}
.y61{bottom:437.220085px;}
.ya6{bottom:439.560036px;}
.y2d{bottom:440.640060px;}
.yc4{bottom:446.220085px;}
.y60{bottom:457.920043px;}
.ya5{bottom:460.260064px;}
.y2c{bottom:461.340088px;}
.yc3{bottom:466.920043px;}
.y5f{bottom:478.620072px;}
.ya4{bottom:480.960091px;}
.y2b{bottom:482.040047px;}
.yc2{bottom:487.620072px;}
.y5e{bottom:499.320099px;}
.ya3{bottom:501.660049px;}
.y2a{bottom:502.740074px;}
.yc1{bottom:508.680039px;}
.y5d{bottom:520.020058px;}
.ya2{bottom:522.360077px;}
.y29{bottom:523.440033px;}
.yc0{bottom:529.380066px;}
.y5c{bottom:540.720085px;}
.ya1{bottom:543.060036px;}
.y28{bottom:544.140060px;}
.ybf{bottom:550.080093px;}
.y5b{bottom:561.420043px;}
.ya0{bottom:563.760064px;}
.y27{bottom:564.840088px;}
.ybe{bottom:570.780052px;}
.y5a{bottom:582.120072px;}
.y9f{bottom:584.280052px;}
.y26{bottom:585.540047px;}
.ybd{bottom:591.480079px;}
.y9e{bottom:601.920043px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.ybc{bottom:612.180039px;}
.y58{bottom:623.520058px;}
.y9d{bottom:623.880066px;}
.y24{bottom:626.940033px;}
.y9c{bottom:628.200096px;}
.ybb{bottom:632.880066px;}
.y57{bottom:644.220085px;}
.y9b{bottom:646.020058px;}
.y23{bottom:647.640060px;}
.y9a{bottom:650.340088px;}
.yba{bottom:653.580093px;}
.y56{bottom:664.920043px;}
.y99{bottom:668.160049px;}
.y22{bottom:668.340088px;}
.y98{bottom:672.480079px;}
.yb9{bottom:673.920043px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y97{bottom:690.300076px;}
.y96{bottom:694.620072px;}
.ydd{bottom:705.960056px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y95{bottom:712.440067px;}
.yb8{bottom:715.320065px;}
.y94{bottom:716.760064px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.yb7{bottom:732.060070px;}
.y93{bottom:734.580059px;}
.y92{bottom:738.900055px;}
.y52{bottom:747.720051px;}
.ydc{bottom:750.962420px;}
.y1e{bottom:751.140060px;}
.y90{bottom:756.720051px;}
.y8f{bottom:761.040081px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y8e{bottom:778.860077px;}
.y8d{bottom:783.180073px;}
.ydb{bottom:784.624433px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y8c{bottom:801.000068px;}
.y8b{bottom:805.320065px;}
.yd4{bottom:805.858784px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.880066px;}
.y8a{bottom:823.140060px;}
.y89{bottom:827.460056px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.220051px;}
.yd5{bottom:843.300073px;}
.y87{bottom:845.280052px;}
.yd3{bottom:848.705354px;}
.y86{bottom:849.600083px;}
.y19{bottom:850.500068px;}
.y4d{bottom:851.220051px;}
.y85{bottom:867.420078px;}
.y18{bottom:867.780052px;}
.y84{bottom:871.740074px;}
.y4c{bottom:871.920078px;}
.yd2{bottom:872.462128px;}
.yd6{bottom:880.741388px;}
.y17{bottom:885.420078px;}
.y4b{bottom:892.620072px;}
.y82{bottom:893.520058px;}
.y83{bottom:899.460056px;}
.y16{bottom:906.480079px;}
.y4a{bottom:913.320065px;}
.y81{bottom:914.220051px;}
.yd7{bottom:918.182704px;}
.y15{bottom:926.820065px;}
.y7f{bottom:931.680073px;}
.y49{bottom:934.020058px;}
.y7e{bottom:936.000068px;}
.y14{bottom:947.520058px;}
.y7c{bottom:953.460056px;}
.y48{bottom:954.720051px;}
.yd8{bottom:955.624020px;}
.y13{bottom:968.580059px;}
.y7a{bottom:974.880066px;}
.y47{bottom:975.420061px;}
.y79{bottom:987.840070px;}
.y12{bottom:988.920061px;}
.yd9{bottom:993.056538px;}
.y46{bottom:996.120072px;}
.y77{bottom:1007.280069px;}
.yd1{bottom:1009.078968px;}
.y11{bottom:1009.620072px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.yda{bottom:1030.682416px;}
.yd0{bottom:1034.637484px;}
.y44{bottom:1037.520058px;}
.y78{bottom:1048.320065px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y76{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y75{bottom:1099.260064px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y74{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y73{bottom:1140.660067px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y72{bottom:1161.360068px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.he{height:20.519989px;}
.h10{height:20.519990px;}
.hc{height:20.520006px;}
.h11{height:20.520022px;}
.hd{height:20.520024px;}
.h6{height:33.684460px;}
.hb{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h16{height:52.419938px;}
.ha{height:58.431882px;}
.h9{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h17{height:65.886904px;}
.h15{height:67.288863px;}
.h14{height:84.585634px;}
.hf{height:91.315303px;}
.h12{height:103.304035px;}
.h13{height:104.024192px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:8.279984px;}
.w6{width:8.460022px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:88.742938px;}
.x17{left:93.599997px;}
.xb{left:98.819996px;}
.x1b{left:103.500000px;}
.x1c{left:110.519998px;}
.x2e{left:111.780001px;}
.xd{left:113.760003px;}
.x24{left:128.159998px;}
.x20{left:130.319996px;}
.x13{left:138.060001px;}
.x2a{left:144.535760px;}
.x29{left:162.535710px;}
.x2c{left:200.337380px;}
.x25{left:211.859812px;}
.x2b{left:224.823646px;}
.x27{left:243.175152px;}
.x16{left:253.259994px;}
.x28{left:262.256177px;}
.x1f{left:274.319996px;}
.x26{left:301.138882px;}
.x2d{left:307.439999px;}
.x9{left:314.823424px;}
.xc{left:317.519989px;}
.xe{left:323.819996px;}
.x19{left:325.980011px;}
.x21{left:381.060001px;}
.xf{left:400.319996px;}
.x1d{left:410.399987px;}
.x2{left:432.899987px;}
.x12{left:436.139992px;}
.xa{left:446.399987px;}
.x22{left:508.319996px;}
.x18{left:520.740006px;}
.x10{left:529.199993px;}
.x11{left:539.819996px;}
.x23{left:541.439999px;}
.x15{left:743.940033px;}
.x6{left:746.279983px;}
.x1e{left:747.899987px;}
.x5{left:751.139992px;}
.x1a{left:757.980011px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x14{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v8{vertical-align:-17.281202pt;}
.va{vertical-align:-12.812486pt;}
.v7{vertical-align:-5.749974pt;}
.vc{vertical-align:-4.499996pt;}
.v5{vertical-align:-1.906295pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280032pt;}
.vb{vertical-align:2.531236pt;}
.v9{vertical-align:4.468716pt;}
.v4{vertical-align:7.687454pt;}
.v3{vertical-align:14.718686pt;}
.v6{vertical-align:19.843623pt;}
.v1{vertical-align:36.479980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.991334pt;}
.ws2{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:142.093336pt;}
.ws8{word-spacing:147.843310pt;}
.ws4{word-spacing:157.437058pt;}
.ws5{word-spacing:158.066005pt;}
.wsb{word-spacing:158.079592pt;}
.ws6{word-spacing:158.085460pt;}
.ws3{word-spacing:158.093375pt;}
.wse{word-spacing:158.718346pt;}
.ws7{word-spacing:167.687124pt;}
.wsa{word-spacing:168.316070pt;}
.wsc{word-spacing:179.218286pt;}
.wsd{word-spacing:205.436920pt;}
.wsf{word-spacing:205.437015pt;}
._3e{margin-left:-4.671175pt;}
._1a{margin-left:-3.076366pt;}
._13{margin-left:-1.838569pt;}
._1{margin-left:-0.917491pt;}
._0{width:1.087997pt;}
._b{width:2.709189pt;}
._c{width:3.750402pt;}
._a{width:4.755635pt;}
._4{width:6.400784pt;}
._14{width:7.777205pt;}
._19{width:8.680400pt;}
._9{width:9.600904pt;}
._8{width:10.550603pt;}
._6{width:11.989494pt;}
._7{width:12.941518pt;}
._1c{width:13.942686pt;}
._1b{width:15.087110pt;}
._40{width:17.144394pt;}
._e{width:18.049678pt;}
._f{width:19.435230pt;}
._24{width:20.652276pt;}
._5{width:21.781818pt;}
._15{width:22.699603pt;}
._16{width:23.795525pt;}
._3f{width:24.784725pt;}
._1d{width:25.879472pt;}
._10{width:26.795050pt;}
._d{width:28.161058pt;}
._18{width:29.460857pt;}
._12{width:30.676946pt;}
._11{width:31.789694pt;}
._17{width:32.715979pt;}
._23{width:33.778638pt;}
._22{width:34.722598pt;}
._3d{width:36.003602pt;}
._1e{width:39.896498pt;}
._1f{width:40.945919pt;}
._20{width:42.850359pt;}
._21{width:44.365416pt;}
._2{width:49.394895pt;}
._3{width:50.693615pt;}
._3b{width:58.882212pt;}
._27{width:74.882813pt;}
._3a{width:76.802885pt;}
._3c{width:83.203125pt;}
._26{width:92.163462pt;}
._2b{width:106.884015pt;}
._25{width:108.804087pt;}
._49{width:119.815205pt;}
._4a{width:121.027720pt;}
._2a{width:124.164664pt;}
._29{width:140.805289pt;}
._48{width:142.079633pt;}
._28{width:166.300790pt;}
._43{width:234.359102pt;}
._42{width:261.767608pt;}
._30{width:277.748813pt;}
._34{width:284.862331pt;}
._44{width:290.552788pt;}
._41{width:303.596153pt;}
._47{width:319.371996pt;}
._33{width:326.962118pt;}
._32{width:337.726773pt;}
._45{width:353.293270pt;}
._36{width:376.574232pt;}
._37{width:383.615996pt;}
._46{width:385.934496pt;}
._39{width:391.984473pt;}
._35{width:394.586571pt;}
._2d{width:405.769035pt;}
._38{width:408.724439pt;}
._2e{width:422.740966pt;}
._31{width:426.219097pt;}
._2f{width:455.746162pt;}
._2c{width:495.923044pt;}
._4b{width:755.066910pt;}
.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;}
.y5{bottom:2.880004pt;}
.y7b{bottom:3.520004pt;}
.y80{bottom:3.839996pt;}
.y7d{bottom:3.839997pt;}
.y91{bottom:3.840026pt;}
.y88{bottom:3.840027pt;}
.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;}
.yb6{bottom:96.320069pt;}
.ycf{bottom:96.960083pt;}
.y3d{bottom:97.280030pt;}
.y70{bottom:112.640076pt;}
.yb5{bottom:114.720032pt;}
.y3c{bottom:115.680054pt;}
.y6f{bottom:131.040039pt;}
.yb4{bottom:133.120057pt;}
.y3b{bottom:134.080079pt;}
.y6e{bottom:149.440064pt;}
.yb3{bottom:151.520081pt;}
.y3a{bottom:152.480042pt;}
.y6d{bottom:167.840088pt;}
.yb2{bottom:169.920044pt;}
.y39{bottom:170.880066pt;}
.y6c{bottom:186.240052pt;}
.yb1{bottom:188.320069pt;}
.y38{bottom:189.280030pt;}
.y6b{bottom:204.640076pt;}
.yb0{bottom:206.720032pt;}
.y37{bottom:207.680054pt;}
.y6a{bottom:223.040039pt;}
.yaf{bottom:225.120057pt;}
.y36{bottom:226.080079pt;}
.yce{bottom:226.400086pt;}
.y69{bottom:241.440064pt;}
.yae{bottom:243.520081pt;}
.y35{bottom:244.480042pt;}
.ycd{bottom:245.440064pt;}
.y68{bottom:259.840088pt;}
.yad{bottom:261.920044pt;}
.y34{bottom:262.880066pt;}
.ycc{bottom:264.480042pt;}
.y67{bottom:278.240052pt;}
.yac{bottom:280.320069pt;}
.y33{bottom:281.280030pt;}
.ycb{bottom:283.680054pt;}
.y66{bottom:296.640076pt;}
.yab{bottom:298.720032pt;}
.y32{bottom:299.680054pt;}
.yca{bottom:302.720032pt;}
.y65{bottom:315.040039pt;}
.yaa{bottom:317.120057pt;}
.y31{bottom:318.080079pt;}
.yc9{bottom:321.760071pt;}
.y64{bottom:333.440064pt;}
.ya9{bottom:335.520081pt;}
.y30{bottom:336.480042pt;}
.yc7{bottom:340.800049pt;}
.yc6{bottom:350.080079pt;}
.y63{bottom:351.840088pt;}
.ya8{bottom:353.920044pt;}
.y2f{bottom:354.880066pt;}
.yc8{bottom:359.200074pt;}
.y62{bottom:370.240052pt;}
.ya7{bottom:372.320069pt;}
.y2e{bottom:373.280030pt;}
.yc5{bottom:378.240052pt;}
.y61{bottom:388.640076pt;}
.ya6{bottom:390.720032pt;}
.y2d{bottom:391.680054pt;}
.yc4{bottom:396.640076pt;}
.y60{bottom:407.040039pt;}
.ya5{bottom:409.120057pt;}
.y2c{bottom:410.080079pt;}
.yc3{bottom:415.040039pt;}
.y5f{bottom:425.440064pt;}
.ya4{bottom:427.520081pt;}
.y2b{bottom:428.480042pt;}
.yc2{bottom:433.440064pt;}
.y5e{bottom:443.840088pt;}
.ya3{bottom:445.920044pt;}
.y2a{bottom:446.880066pt;}
.yc1{bottom:452.160035pt;}
.y5d{bottom:462.240052pt;}
.ya2{bottom:464.320069pt;}
.y29{bottom:465.280030pt;}
.yc0{bottom:470.560059pt;}
.y5c{bottom:480.640076pt;}
.ya1{bottom:482.720032pt;}
.y28{bottom:483.680054pt;}
.ybf{bottom:488.960083pt;}
.y5b{bottom:499.040039pt;}
.ya0{bottom:501.120057pt;}
.y27{bottom:502.080079pt;}
.ybe{bottom:507.360047pt;}
.y5a{bottom:517.440064pt;}
.y9f{bottom:519.360047pt;}
.y26{bottom:520.480042pt;}
.ybd{bottom:525.760071pt;}
.y9e{bottom:535.040039pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.ybc{bottom:544.160035pt;}
.y58{bottom:554.240052pt;}
.y9d{bottom:554.560059pt;}
.y24{bottom:557.280030pt;}
.y9c{bottom:558.400086pt;}
.ybb{bottom:562.560059pt;}
.y57{bottom:572.640076pt;}
.y9b{bottom:574.240052pt;}
.y23{bottom:575.680054pt;}
.y9a{bottom:578.080079pt;}
.yba{bottom:580.960083pt;}
.y56{bottom:591.040039pt;}
.y99{bottom:593.920044pt;}
.y22{bottom:594.080079pt;}
.y98{bottom:597.760071pt;}
.yb9{bottom:599.040039pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y97{bottom:613.600068pt;}
.y96{bottom:617.440064pt;}
.ydd{bottom:627.520050pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y95{bottom:633.280060pt;}
.yb8{bottom:635.840058pt;}
.y94{bottom:637.120057pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.yb7{bottom:650.720063pt;}
.y93{bottom:652.960053pt;}
.y92{bottom:656.800049pt;}
.y52{bottom:664.640046pt;}
.ydc{bottom:667.522152pt;}
.y1e{bottom:667.680054pt;}
.y90{bottom:672.640046pt;}
.y8f{bottom:676.480072pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y8e{bottom:692.320069pt;}
.y8d{bottom:696.160065pt;}
.ydb{bottom:697.443940pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y8c{bottom:712.000061pt;}
.y8b{bottom:715.840058pt;}
.yd4{bottom:716.318919pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.560059pt;}
.y8a{bottom:731.680054pt;}
.y89{bottom:735.520050pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.640046pt;}
.yd5{bottom:749.600065pt;}
.y87{bottom:751.360047pt;}
.yd3{bottom:754.404759pt;}
.y86{bottom:755.200074pt;}
.y19{bottom:756.000061pt;}
.y4d{bottom:756.640046pt;}
.y85{bottom:771.040070pt;}
.y18{bottom:771.360047pt;}
.y84{bottom:774.880066pt;}
.y4c{bottom:775.040070pt;}
.yd2{bottom:775.521891pt;}
.yd6{bottom:782.881234pt;}
.y17{bottom:787.040070pt;}
.y4b{bottom:793.440064pt;}
.y82{bottom:794.240052pt;}
.y83{bottom:799.520050pt;}
.y16{bottom:805.760071pt;}
.y4a{bottom:811.840058pt;}
.y81{bottom:812.640046pt;}
.yd7{bottom:816.162404pt;}
.y15{bottom:823.840058pt;}
.y7f{bottom:828.160065pt;}
.y49{bottom:830.240052pt;}
.y7e{bottom:832.000061pt;}
.y14{bottom:842.240052pt;}
.y7c{bottom:847.520050pt;}
.y48{bottom:848.640046pt;}
.yd8{bottom:849.443573pt;}
.y13{bottom:860.960053pt;}
.y7a{bottom:866.560059pt;}
.y47{bottom:867.040055pt;}
.y79{bottom:878.080063pt;}
.y12{bottom:879.040055pt;}
.yd9{bottom:882.716923pt;}
.y46{bottom:885.440064pt;}
.y77{bottom:895.360062pt;}
.yd1{bottom:896.959082pt;}
.y11{bottom:897.440064pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.yda{bottom:916.162148pt;}
.yd0{bottom:919.677764pt;}
.y44{bottom:922.240052pt;}
.y78{bottom:931.840058pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y76{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y75{bottom:977.120057pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y74{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y73{bottom:1013.920060pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y72{bottom:1032.320061pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.he{height:18.239990pt;}
.h10{height:18.239991pt;}
.hc{height:18.240005pt;}
.h11{height:18.240020pt;}
.hd{height:18.240021pt;}
.h6{height:29.941742pt;}
.hb{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h16{height:46.595500pt;}
.ha{height:51.939451pt;}
.h9{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h17{height:58.566137pt;}
.h15{height:59.812323pt;}
.h14{height:75.187230pt;}
.hf{height:81.169159pt;}
.h12{height:91.825809pt;}
.h13{height:92.465949pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:7.359986pt;}
.w6{width:7.520020pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:78.882612pt;}
.x17{left:83.199997pt;}
.xb{left:87.839996pt;}
.x1b{left:92.000000pt;}
.x1c{left:98.239998pt;}
.x2e{left:99.360001pt;}
.xd{left:101.120003pt;}
.x24{left:113.919998pt;}
.x20{left:115.839996pt;}
.x13{left:122.720001pt;}
.x2a{left:128.476231pt;}
.x29{left:144.476187pt;}
.x2c{left:178.077671pt;}
.x25{left:188.319833pt;}
.x2b{left:199.843241pt;}
.x27{left:216.155691pt;}
.x16{left:225.119995pt;}
.x28{left:233.116602pt;}
.x1f{left:243.839996pt;}
.x26{left:267.679006pt;}
.x2d{left:273.279999pt;}
.x9{left:279.843043pt;}
.xc{left:282.239990pt;}
.xe{left:287.839996pt;}
.x19{left:289.760010pt;}
.x21{left:338.720001pt;}
.xf{left:355.839996pt;}
.x1d{left:364.799988pt;}
.x2{left:384.799988pt;}
.x12{left:387.679993pt;}
.xa{left:396.799988pt;}
.x22{left:451.839996pt;}
.x18{left:462.880005pt;}
.x10{left:470.399994pt;}
.x11{left:479.839996pt;}
.x23{left:481.279999pt;}
.x15{left:661.280029pt;}
.x6{left:663.359985pt;}
.x1e{left:664.799988pt;}
.x5{left:667.679993pt;}
.x1a{left:673.760010pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x14{left:718.080017pt;}
.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; }
  