
    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_2421c036f03b14fda8c41178.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_043980cfbc7560b63f3ceb95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_1abc8cd5d11e6efbbf321a93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_9b8542a899f245bc70b11990.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_00a1690efb4daadf2dd45732.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6d269b848c928656dfd09613.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c2370819ec5e93ce698ad79e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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:11.558110px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005475px;}
.ls5{letter-spacing:0.006069px;}
.ls6{letter-spacing:0.184602px;}
.ls8{letter-spacing:0.184674px;}
.lsb{letter-spacing:0.199030px;}
.lse{letter-spacing:82.507086px;}
.lsd{letter-spacing:83.257985px;}
.lsa{letter-spacing:116.949118px;}
.lsc{letter-spacing:117.156820px;}
.ls9{letter-spacing:161.589109px;}
.ls7{letter-spacing:161.589181px;}
.ls2{letter-spacing:182.825422px;}
.ls0{letter-spacing:460.225588px;}
.ls1{letter-spacing:789.397229px;}
.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;}
}
.ws0{word-spacing:-62.258871px;}
.ws4{word-spacing:-62.147700px;}
.ws1{word-spacing:-37.355323px;}
.ws5{word-spacing:-37.294689px;}
.ws6{word-spacing:-37.288620px;}
.ws2{word-spacing:-33.701363px;}
.ws7{word-spacing:-33.640920px;}
.ws3{word-spacing:0.000000px;}
._32{margin-left:-10.500572px;}
._2e{margin-left:-9.356346px;}
._5c{margin-left:-7.832927px;}
._8{margin-left:-6.159032px;}
._28{margin-left:-4.357525px;}
._5{margin-left:-3.112944px;}
._1{margin-left:-1.245177px;}
._0{width:1.123379px;}
._14{width:3.137730px;}
._15{width:4.344270px;}
._2f{width:5.656207px;}
._3e{width:6.824109px;}
._3{width:8.093653px;}
._4{width:9.338831px;}
._34{width:10.595454px;}
._35{width:11.795925px;}
._17{width:13.711132px;}
._18{width:14.895017px;}
._2{width:16.187306px;}
._e{width:18.676879px;}
._48{width:19.917609px;}
._58{width:21.085715px;}
._f{width:23.027218px;}
._56{width:24.154690px;}
._60{width:25.238044px;}
._b{width:26.699235px;}
._27{width:28.035865px;}
._10{width:30.440235px;}
._3a{width:31.864056px;}
._39{width:32.950419px;}
._5e{width:39.904614px;}
._40{width:41.005344px;}
._33{width:42.118623px;}
._25{width:43.548097px;}
._21{width:45.398166px;}
._20{width:47.017609px;}
._4b{width:48.200211px;}
._3f{width:50.985390px;}
._4c{width:53.246349px;}
._9{width:54.720321px;}
._a{width:55.951137px;}
._46{width:57.226660px;}
._41{width:59.046384px;}
._31{width:60.295407px;}
._4d{width:62.642733px;}
._1c{width:64.599417px;}
._2d{width:65.870493px;}
._24{width:67.149861px;}
._22{width:69.002154px;}
._23{width:70.239039px;}
._49{width:75.237355px;}
._63{width:78.534731px;}
._2b{width:79.587694px;}
._30{width:80.775425px;}
._64{width:81.846622px;}
._1d{width:83.290056px;}
._43{width:84.553441px;}
._54{width:86.352518px;}
._53{width:87.442476px;}
._55{width:91.310778px;}
._16{width:92.630418px;}
._66{width:93.658905px;}
._59{width:96.335216px;}
._52{width:97.566158px;}
._51{width:98.656116px;}
._19{width:101.934366px;}
._1a{width:103.191682px;}
._d{width:105.041751px;}
._44{width:106.242222px;}
._5d{width:109.529430px;}
._50{width:112.691607px;}
._4f{width:113.858350px;}
._c{width:117.447015px;}
._1e{width:120.542262px;}
._45{width:129.864417px;}
._4a{width:131.091387px;}
._12{width:138.565095px;}
._13{width:139.826256px;}
._47{width:149.199187px;}
._2c{width:157.209405px;}
._42{width:158.509204px;}
._36{width:166.531560px;}
._37{width:167.792721px;}
._1f{width:175.853715px;}
._57{width:192.097769px;}
._3c{width:195.809962px;}
._62{width:197.152974px;}
._61{width:198.276352px;}
._11{width:205.046708px;}
._5a{width:216.281137px;}
._5b{width:217.373791px;}
._4e{width:230.649404px;}
._26{width:232.444536px;}
._3b{width:242.347908px;}
._1b{width:279.002913px;}
._67{width:289.503750px;}
._65{width:294.325237px;}
._7{width:299.071334px;}
._38{width:316.991908px;}
._29{width:354.207699px;}
._5f{width:395.715657px;}
._3d{width:428.791008px;}
._6{width:486.144503px;}
._2a{width:502.746771px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:56.068200px;}
.fs0{font-size:56.168938px;}
.fs4{font-size:59.551579px;}
.fs6{font-size:62.147700px;}
.fs1{font-size:62.258871px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.844813px;}
.y3f{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.y3e{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y3d{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y3c{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y87{bottom:178.559967px;}
.y38{bottom:183.237788px;}
.yce{bottom:183.598768px;}
.y67{bottom:188.820030px;}
.y86{bottom:194.399986px;}
.y37{bottom:200.879214px;}
.y85{bottom:210.600013px;}
.y66{bottom:211.320030px;}
.ycd{bottom:215.637349px;}
.y36{bottom:218.520640px;}
.y84{bottom:226.440033px;}
.ybd{bottom:228.231587px;}
.y65{bottom:234.000000px;}
.y35{bottom:235.981529px;}
.y83{bottom:242.460022px;}
.ybc{bottom:244.070224px;}
.ycc{bottom:248.402714px;}
.y34{bottom:253.442419px;}
.y64{bottom:256.500000px;}
.y82{bottom:258.480011px;}
.ybb{bottom:260.273116px;}
.ycb{bottom:268.737338px;}
.y33{bottom:271.079113px;}
.y81{bottom:274.320030px;}
.yba{bottom:276.111836px;}
.y63{bottom:279.000000px;}
.y32{bottom:288.720446px;}
.yca{bottom:289.086250px;}
.y80{bottom:290.340019px;}
.yb9{bottom:291.950473px;}
.y62{bottom:301.679970px;}
.y7f{bottom:306.360008px;}
.yb8{bottom:308.153365px;}
.yc9{bottom:309.420874px;}
.y7e{bottom:322.379998px;}
.yb7{bottom:323.992002px;}
.y61{bottom:324.179970px;}
.y30{bottom:329.218807px;}
.y31{bottom:329.229049px;}
.yc8{bottom:329.760230px;}
.y7d{bottom:338.220017px;}
.yb6{bottom:340.006405px;}
.y60{bottom:346.679970px;}
.y2f{bottom:346.860140px;}
.yc7{bottom:350.094947px;}
.y7c{bottom:354.240006px;}
.yb5{bottom:356.033614px;}
.y2e{bottom:364.496834px;}
.y5f{bottom:369.360008px;}
.y7b{bottom:370.259994px;}
.yc6{bottom:370.624302px;}
.yb4{bottom:371.872251px;}
.y2d{bottom:381.962455px;}
.y7a{bottom:386.100013px;}
.yb3{bottom:387.895191px;}
.yc5{bottom:390.778483px;}
.y5e{bottom:391.860008px;}
.y2c{bottom:399.418613px;}
.y79{bottom:402.299973px;}
.yb2{bottom:403.909510px;}
.yc4{bottom:411.117839px;}
.y5d{bottom:414.360008px;}
.y2b{bottom:417.060039px;}
.y78{bottom:418.139992px;}
.yb1{bottom:419.936719px;}
.yc3{bottom:431.461973px;}
.y77{bottom:433.980011px;}
.y2a{bottom:434.335495px;}
.yb0{bottom:435.775356px;}
.y5c{bottom:437.039977px;}
.y76{bottom:450.179970px;}
.y29{bottom:450.718390px;}
.yaf{bottom:451.789760px;}
.yc2{bottom:451.981865px;}
.y5b{bottom:459.539977px;}
.y75{bottom:466.019989px;}
.yae{bottom:467.812616px;}
.y28{bottom:468.179279px;}
.yc1{bottom:472.135999px;}
.y5a{bottom:482.039977px;}
.yad{bottom:483.651337px;}
.y27{bottom:485.815927px;}
.yc0{bottom:492.480179px;}
.y74{bottom:498.059967px;}
.yac{bottom:499.854228px;}
.y26{bottom:503.281595px;}
.y59{bottom:504.720017px;}
.ybf{bottom:513.000071px;}
.y73{bottom:513.899986px;}
.yab{bottom:515.692865px;}
.y25{bottom:520.923020px;}
.y58{bottom:527.220017px;}
.y72{bottom:529.919975px;}
.ybe{bottom:530.641451px;}
.yaa{bottom:531.531502px;}
.y24{bottom:538.559668px;}
.y71{bottom:545.940033px;}
.ya9{bottom:547.734436px;}
.y57{bottom:549.720017px;}
.y23{bottom:556.201094px;}
.y70{bottom:561.960022px;}
.ya8{bottom:563.573072px;}
.y56{bottom:572.399986px;}
.y22{bottom:573.481494px;}
.y6f{bottom:577.799973px;}
.ya7{bottom:579.596013px;}
.y21{bottom:591.122873px;}
.y6e{bottom:593.820030px;}
.y55{bottom:594.899986px;}
.ya6{bottom:595.614643px;}
.y20{bottom:608.759567px;}
.y6d{bottom:609.840019px;}
.ya5{bottom:611.453280px;}
.y54{bottom:617.399986px;}
.y6c{bottom:625.680004px;}
.y1f{bottom:626.400947px;}
.ya4{bottom:627.476220px;}
.y53{bottom:640.079990px;}
.y6b{bottom:641.879998px;}
.ya3{bottom:643.494850px;}
.y1e{bottom:643.857105px;}
.y6a{bottom:657.720017px;}
.ya2{bottom:659.517790px;}
.y1d{bottom:661.498530px;}
.y52{bottom:662.579990px;}
.y69{bottom:673.560001px;}
.ya1{bottom:675.356427px;}
.y1c{bottom:678.964198px;}
.y51{bottom:685.079990px;}
.y68{bottom:690.120002px;}
.ya0{bottom:691.370788px;}
.y1b{bottom:696.600846px;}
.y9f{bottom:707.397997px;}
.y50{bottom:707.759994px;}
.y1a{bottom:714.241297px;}
.y9e{bottom:723.236634px;}
.y4f{bottom:730.259994px;}
.y19{bottom:731.698383px;}
.y9d{bottom:739.435257px;}
.y18{bottom:749.337907px;}
.y4e{bottom:752.759994px;}
.y9c{bottom:755.273936px;}
.y17{bottom:766.977431px;}
.y9b{bottom:771.114289px;}
.y4d{bottom:775.439999px;}
.y16{bottom:784.442124px;}
.y9a{bottom:787.316343px;}
.y4c{bottom:797.939999px;}
.y15{bottom:801.899233px;}
.y99{bottom:803.154980px;}
.y98{bottom:819.178799px;}
.y14{bottom:819.538734px;}
.y4b{bottom:820.439999px;}
.y97{bottom:835.195714px;}
.y13{bottom:837.178258px;}
.y4a{bottom:843.120002px;}
.y96{bottom:851.034350px;}
.y12{bottom:854.817758px;}
.y49{bottom:865.620002px;}
.y95{bottom:867.058149px;}
.y11{bottom:874.446557px;}
.y94{bottom:883.075063px;}
.y48{bottom:888.120002px;}
.y93{bottom:899.098840px;}
.y10{bottom:900.001958px;}
.y47{bottom:910.800007px;}
.y92{bottom:914.937498px;}
.yf{bottom:926.285457px;}
.y91{bottom:930.954412px;}
.y46{bottom:933.300007px;}
.y90{bottom:946.978210px;}
.y45{bottom:955.800007px;}
.ye{bottom:960.836102px;}
.yd{bottom:960.837200px;}
.y8f{bottom:962.816847px;}
.y8{bottom:965.340697px;}
.y44{bottom:978.479994px;}
.y8e{bottom:978.840646px;}
.y8d{bottom:994.857560px;}
.yc{bottom:995.577063px;}
.y43{bottom:1000.979994px;}
.y8c{bottom:1010.696217px;}
.y42{bottom:1023.479994px;}
.y8b{bottom:1026.719995px;}
.yb{bottom:1038.785172px;}
.y8a{bottom:1042.736919px;}
.y41{bottom:1046.159998px;}
.y89{bottom:1058.760697px;}
.y40{bottom:1068.659998px;}
.ya{bottom:1073.521799px;}
.y88{bottom:1074.599355px;}
.y3{bottom:1091.700908px;}
.y3b{bottom:1091.879998px;}
.y2{bottom:1109.340414px;}
.y3a{bottom:1109.519998px;}
.y1{bottom:1126.441805px;}
.y39{bottom:1126.619999px;}
.h5{height:25.742175px;}
.h12{height:37.369674px;}
.h15{height:37.436817px;}
.h11{height:38.026724px;}
.h14{height:38.095047px;}
.hb{height:39.587215px;}
.h1{height:39.658342px;}
.h10{height:40.819183px;}
.h13{height:40.892523px;}
.hf{height:42.149978px;}
.h9{height:42.225377px;}
.ha{height:43.355178px;}
.hc{height:43.879675px;}
.h2{height:43.958168px;}
.he{height:45.245225px;}
.h4{height:45.326160px;}
.hd{height:61.813899px;}
.h3{height:61.924473px;}
.h6{height:63.547881px;}
.h7{height:71.670699px;}
.h8{height:75.105991px;}
.h0{height:1188.000000px;}
.w1{width:7.556910px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:140.401689px;}
.xc{left:147.244595px;}
.x3{left:199.798909px;}
.x1{left:210.063225px;}
.x2{left:246.419904px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.x9{left:323.098669px;}
.xb{left:344.337560px;}
.x4{left:368.818084px;}
.xf{left:483.480011px;}
.xd{left:540.537769px;}
.xe{left:544.681535px;}
.xa{left:631.084316px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.273876pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004867pt;}
.ls5{letter-spacing:0.005395pt;}
.ls6{letter-spacing:0.164090pt;}
.ls8{letter-spacing:0.164154pt;}
.lsb{letter-spacing:0.176916pt;}
.lse{letter-spacing:73.339632pt;}
.lsd{letter-spacing:74.007098pt;}
.lsa{letter-spacing:103.954771pt;}
.lsc{letter-spacing:104.139395pt;}
.ls9{letter-spacing:143.634763pt;}
.ls7{letter-spacing:143.634827pt;}
.ls2{letter-spacing:162.511486pt;}
.ls0{letter-spacing:409.089411pt;}
.ls1{letter-spacing:701.686426pt;}
.ws0{word-spacing:-55.341219pt;}
.ws4{word-spacing:-55.242400pt;}
.ws1{word-spacing:-33.204731pt;}
.ws5{word-spacing:-33.150835pt;}
.ws6{word-spacing:-33.145440pt;}
.ws2{word-spacing:-29.956767pt;}
.ws7{word-spacing:-29.903040pt;}
.ws3{word-spacing:0.000000pt;}
._32{margin-left:-9.333842pt;}
._2e{margin-left:-8.316752pt;}
._5c{margin-left:-6.962602pt;}
._8{margin-left:-5.474695pt;}
._28{margin-left:-3.873355pt;}
._5{margin-left:-2.767061pt;}
._1{margin-left:-1.106824pt;}
._0{width:0.998559pt;}
._14{width:2.789094pt;}
._15{width:3.861573pt;}
._2f{width:5.027740pt;}
._3e{width:6.065874pt;}
._3{width:7.194358pt;}
._4{width:8.301183pt;}
._34{width:9.418182pt;}
._35{width:10.485266pt;}
._17{width:12.187673pt;}
._18{width:13.240015pt;}
._2{width:14.388717pt;}
._e{width:16.601670pt;}
._48{width:17.704542pt;}
._58{width:18.742858pt;}
._f{width:20.468638pt;}
._56{width:21.470836pt;}
._60{width:22.433817pt;}
._b{width:23.732653pt;}
._27{width:24.920769pt;}
._10{width:27.057986pt;}
._3a{width:28.323605pt;}
._39{width:29.289262pt;}
._5e{width:35.470768pt;}
._40{width:36.449194pt;}
._33{width:37.438776pt;}
._25{width:38.709420pt;}
._21{width:40.353926pt;}
._20{width:41.793430pt;}
._4b{width:42.844632pt;}
._3f{width:45.320347pt;}
._4c{width:47.330088pt;}
._9{width:48.640286pt;}
._a{width:49.734344pt;}
._46{width:50.868142pt;}
._41{width:52.485675pt;}
._31{width:53.595918pt;}
._4d{width:55.682429pt;}
._1c{width:57.421704pt;}
._2d{width:58.551549pt;}
._24{width:59.688766pt;}
._22{width:61.335248pt;}
._23{width:62.434702pt;}
._49{width:66.877649pt;}
._63{width:69.808650pt;}
._2b{width:70.744617pt;}
._30{width:71.800378pt;}
._64{width:72.752553pt;}
._1d{width:74.035606pt;}
._43{width:75.158614pt;}
._54{width:76.757794pt;}
._53{width:77.726645pt;}
._55{width:81.165136pt;}
._16{width:82.338150pt;}
._66{width:83.252360pt;}
._59{width:85.631303pt;}
._52{width:86.725474pt;}
._51{width:87.694325pt;}
._19{width:90.608326pt;}
._1a{width:91.725939pt;}
._d{width:93.370446pt;}
._44{width:94.437530pt;}
._5d{width:97.359493pt;}
._50{width:100.170317pt;}
._4f{width:101.207422pt;}
._c{width:104.397346pt;}
._1e{width:107.148677pt;}
._45{width:115.435037pt;}
._4a{width:116.525677pt;}
._12{width:123.168973pt;}
._13{width:124.290005pt;}
._47{width:132.621500pt;}
._2c{width:139.741693pt;}
._42{width:140.897070pt;}
._36{width:148.028053pt;}
._37{width:149.149085pt;}
._1f{width:156.314413pt;}
._57{width:170.753572pt;}
._3c{width:174.053300pt;}
._62{width:175.247088pt;}
._61{width:176.245646pt;}
._11{width:182.263740pt;}
._5a{width:192.249900pt;}
._5b{width:193.221148pt;}
._4e{width:205.021692pt;}
._26{width:206.617366pt;}
._3b{width:215.420363pt;}
._1b{width:248.002589pt;}
._67{width:257.336667pt;}
._65{width:261.622433pt;}
._7{width:265.841185pt;}
._38{width:281.770585pt;}
._29{width:314.851288pt;}
._5f{width:351.747251pt;}
._3d{width:381.147563pt;}
._6{width:432.128447pt;}
._2a{width:446.886019pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:49.927945pt;}
.fs4{font-size:52.934737pt;}
.fs6{font-size:55.242400pt;}
.fs1{font-size:55.341219pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.084279pt;}
.y3f{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.y3e{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y3d{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y3c{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y87{bottom:158.719971pt;}
.y38{bottom:162.878034pt;}
.yce{bottom:163.198905pt;}
.y67{bottom:167.840027pt;}
.y86{bottom:172.799988pt;}
.y37{bottom:178.559301pt;}
.y85{bottom:187.200012pt;}
.y66{bottom:187.840027pt;}
.ycd{bottom:191.677644pt;}
.y36{bottom:194.240569pt;}
.y84{bottom:201.280029pt;}
.ybd{bottom:202.872522pt;}
.y65{bottom:208.000000pt;}
.y35{bottom:209.761359pt;}
.y83{bottom:215.520020pt;}
.ybc{bottom:216.951310pt;}
.ycc{bottom:220.802412pt;}
.y34{bottom:225.282150pt;}
.y64{bottom:228.000000pt;}
.y82{bottom:229.760010pt;}
.ybb{bottom:231.353881pt;}
.ycb{bottom:238.877634pt;}
.y33{bottom:240.959212pt;}
.y81{bottom:243.840027pt;}
.yba{bottom:245.432743pt;}
.y63{bottom:248.000000pt;}
.y32{bottom:256.640396pt;}
.yca{bottom:256.965555pt;}
.y80{bottom:258.080017pt;}
.yb9{bottom:259.511532pt;}
.y62{bottom:268.159973pt;}
.y7f{bottom:272.320007pt;}
.yb8{bottom:273.914102pt;}
.yc9{bottom:275.040777pt;}
.y7e{bottom:286.559998pt;}
.yb7{bottom:287.992890pt;}
.y61{bottom:288.159973pt;}
.y30{bottom:292.638940pt;}
.y31{bottom:292.648044pt;}
.yc8{bottom:293.120204pt;}
.y7d{bottom:300.640015pt;}
.yb6{bottom:302.227915pt;}
.y60{bottom:308.159973pt;}
.y2f{bottom:308.320124pt;}
.yc7{bottom:311.195509pt;}
.y7c{bottom:314.880005pt;}
.yb5{bottom:316.474323pt;}
.y2e{bottom:323.997186pt;}
.y5f{bottom:328.320007pt;}
.y7b{bottom:329.119995pt;}
.yc6{bottom:329.443824pt;}
.yb4{bottom:330.553112pt;}
.y2d{bottom:339.522182pt;}
.y7a{bottom:343.200012pt;}
.yb3{bottom:344.795725pt;}
.yc5{bottom:347.358652pt;}
.y5e{bottom:348.320007pt;}
.y2c{bottom:355.038767pt;}
.y79{bottom:357.599976pt;}
.yb2{bottom:359.030676pt;}
.yc4{bottom:365.438079pt;}
.y5d{bottom:368.320007pt;}
.y2b{bottom:370.720035pt;}
.y78{bottom:371.679993pt;}
.yb1{bottom:373.277084pt;}
.yc3{bottom:383.521753pt;}
.y77{bottom:385.760010pt;}
.y2a{bottom:386.075996pt;}
.yb0{bottom:387.355872pt;}
.y5c{bottom:388.479980pt;}
.y76{bottom:400.159973pt;}
.y29{bottom:400.638569pt;}
.yaf{bottom:401.590897pt;}
.yc2{bottom:401.761657pt;}
.y5b{bottom:408.479980pt;}
.y75{bottom:414.239990pt;}
.yae{bottom:415.833437pt;}
.y28{bottom:416.159359pt;}
.yc1{bottom:419.676444pt;}
.y5a{bottom:428.479980pt;}
.yad{bottom:429.912299pt;}
.y27{bottom:431.836380pt;}
.yc0{bottom:437.760159pt;}
.y74{bottom:442.719971pt;}
.yac{bottom:444.314870pt;}
.y26{bottom:447.361417pt;}
.y59{bottom:448.640015pt;}
.ybf{bottom:456.000063pt;}
.y73{bottom:456.799988pt;}
.yab{bottom:458.393658pt;}
.y25{bottom:463.042685pt;}
.y58{bottom:468.640015pt;}
.y72{bottom:471.039978pt;}
.ybe{bottom:471.681289pt;}
.yaa{bottom:472.472446pt;}
.y24{bottom:478.719705pt;}
.y71{bottom:485.280029pt;}
.ya9{bottom:486.875054pt;}
.y57{bottom:488.640015pt;}
.y23{bottom:494.400972pt;}
.y70{bottom:499.520020pt;}
.ya8{bottom:500.953842pt;}
.y56{bottom:508.799988pt;}
.y22{bottom:509.761328pt;}
.y6f{bottom:513.599976pt;}
.ya7{bottom:515.196456pt;}
.y21{bottom:525.442554pt;}
.y6e{bottom:527.840027pt;}
.y55{bottom:528.799988pt;}
.ya6{bottom:529.435238pt;}
.y20{bottom:541.119615pt;}
.y6d{bottom:542.080017pt;}
.ya5{bottom:543.514026pt;}
.y54{bottom:548.799988pt;}
.y6c{bottom:556.160004pt;}
.y1f{bottom:556.800841pt;}
.ya4{bottom:557.756640pt;}
.y53{bottom:568.959991pt;}
.y6b{bottom:570.559998pt;}
.ya3{bottom:571.995422pt;}
.y1e{bottom:572.317426pt;}
.y6a{bottom:584.640015pt;}
.ya2{bottom:586.238036pt;}
.y1d{bottom:587.998694pt;}
.y52{bottom:588.959991pt;}
.y69{bottom:598.720001pt;}
.ya1{bottom:600.316824pt;}
.y1c{bottom:603.523731pt;}
.y51{bottom:608.959991pt;}
.y68{bottom:613.440002pt;}
.ya0{bottom:614.551812pt;}
.y1b{bottom:619.200752pt;}
.y9f{bottom:628.798220pt;}
.y50{bottom:629.119995pt;}
.y1a{bottom:634.881153pt;}
.y9e{bottom:642.877008pt;}
.y4f{bottom:649.119995pt;}
.y19{bottom:650.398563pt;}
.y9d{bottom:657.275784pt;}
.y18{bottom:666.078139pt;}
.y4e{bottom:669.119995pt;}
.y9c{bottom:671.354610pt;}
.y17{bottom:681.757716pt;}
.y9b{bottom:685.434923pt;}
.y4d{bottom:689.279999pt;}
.y16{bottom:697.281888pt;}
.y9a{bottom:699.836750pt;}
.y4c{bottom:709.279999pt;}
.y15{bottom:712.799318pt;}
.y99{bottom:713.915538pt;}
.y98{bottom:728.158933pt;}
.y14{bottom:728.478874pt;}
.y4b{bottom:729.279999pt;}
.y97{bottom:742.396190pt;}
.y13{bottom:744.158451pt;}
.y4a{bottom:749.440002pt;}
.y96{bottom:756.474978pt;}
.y12{bottom:759.838007pt;}
.y49{bottom:769.440002pt;}
.y95{bottom:770.718354pt;}
.y11{bottom:777.285829pt;}
.y94{bottom:784.955611pt;}
.y48{bottom:789.440002pt;}
.y93{bottom:799.198969pt;}
.y10{bottom:800.001740pt;}
.y47{bottom:809.600006pt;}
.y92{bottom:813.277776pt;}
.yf{bottom:823.364850pt;}
.y91{bottom:827.515033pt;}
.y46{bottom:829.600006pt;}
.y90{bottom:841.758409pt;}
.y45{bottom:849.600006pt;}
.ye{bottom:854.076535pt;}
.yd{bottom:854.077511pt;}
.y8f{bottom:855.837198pt;}
.y8{bottom:858.080619pt;}
.y44{bottom:869.759995pt;}
.y8e{bottom:870.080574pt;}
.y8d{bottom:884.317831pt;}
.yc{bottom:884.957390pt;}
.y43{bottom:889.759995pt;}
.y8c{bottom:898.396638pt;}
.y42{bottom:909.759995pt;}
.y8b{bottom:912.639995pt;}
.yb{bottom:923.364597pt;}
.y8a{bottom:926.877262pt;}
.y41{bottom:929.919998pt;}
.y89{bottom:941.120619pt;}
.y40{bottom:949.919998pt;}
.ya{bottom:954.241599pt;}
.y88{bottom:955.199426pt;}
.y3{bottom:970.400807pt;}
.y3b{bottom:970.559998pt;}
.y2{bottom:986.080368pt;}
.y3a{bottom:986.239998pt;}
.y1{bottom:1001.281605pt;}
.y39{bottom:1001.439999pt;}
.h5{height:22.881933pt;}
.h12{height:33.217488pt;}
.h15{height:33.277170pt;}
.h11{height:33.801532pt;}
.h14{height:33.862264pt;}
.hb{height:35.188636pt;}
.h1{height:35.251860pt;}
.h10{height:36.283718pt;}
.h13{height:36.348909pt;}
.hf{height:37.466647pt;}
.h9{height:37.533668pt;}
.ha{height:38.537936pt;}
.hc{height:39.004155pt;}
.h2{height:39.073927pt;}
.he{height:40.217978pt;}
.h4{height:40.289920pt;}
.hd{height:54.945688pt;}
.h3{height:55.043976pt;}
.h6{height:56.487006pt;}
.h7{height:63.707288pt;}
.h8{height:66.760881pt;}
.h0{height:1056.000000pt;}
.w1{width:6.717253pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:124.801501pt;}
.xc{left:130.884084pt;}
.x3{left:177.599031pt;}
.x1{left:186.722867pt;}
.x2{left:219.039915pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.x9{left:287.198817pt;}
.xb{left:306.077831pt;}
.x4{left:327.838297pt;}
.xf{left:429.760010pt;}
.xd{left:480.478017pt;}
.xe{left:484.161365pt;}
.xa{left:560.963836pt;}
}




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