
    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_149b0887cafcde631aa3f039.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_27a660842407ade6925100b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002000;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_6a8b5363d5516c1522976cb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677000;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_c9dff1f3fac470daea65357a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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_8d89f40214714e674881f483.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_13b1a8fe4c54a5024ffdad07.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_b6dd3804dbd629b8a8a35038.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_8d14aa3a357bb3b354e59256.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e87f28062d50d4b2dcd81835.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.550000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_19b1e3ce3e7f7b6c2cdb5fd7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.v3{vertical-align:57.318000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988893px;}
.ls3{letter-spacing:21.677400px;}
.ls2{letter-spacing:21.680682px;}
.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;}
}
.ws7{word-spacing:-35.112422px;}
.wsc{word-spacing:-32.517845px;}
.wse{word-spacing:-21.652382px;}
.wsa{word-spacing:-21.053107px;}
.wsb{word-spacing:-13.720706px;}
.ws0{word-spacing:-13.634628px;}
.ws6{word-spacing:-11.728051px;}
.ws2{word-spacing:-10.852373px;}
.ws1{word-spacing:-10.786918px;}
.ws8{word-spacing:-7.029658px;}
.ws4{word-spacing:-6.993792px;}
.ws15{word-spacing:-0.065455px;}
.ws3{word-spacing:-0.053798px;}
.ws9{word-spacing:-0.035866px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:19.008768px;}
.ws11{word-spacing:19.044634px;}
.ws10{word-spacing:33.774574px;}
.wsd{word-spacing:39.220396px;}
.ws14{word-spacing:71.687462px;}
.ws1c{word-spacing:87.512064px;}
.ws13{word-spacing:90.735683px;}
.ws1d{word-spacing:108.063053px;}
.ws12{word-spacing:149.129165px;}
.ws1a{word-spacing:157.916237px;}
.ws18{word-spacing:168.066202px;}
.ws1b{word-spacing:174.019891px;}
.ws19{word-spacing:181.264742px;}
.ws17{word-spacing:186.106598px;}
.ws16{word-spacing:215.301197px;}
._5{margin-left:-44.541892px;}
._2d{margin-left:-6.886176px;}
._8{margin-left:-5.810227px;}
._32{margin-left:-3.514829px;}
._0{margin-left:-2.324084px;}
._2{margin-left:-1.183565px;}
._4{width:1.147699px;}
._1{width:2.238007px;}
._7{width:7.029658px;}
._30{width:17.567102px;}
._9{width:18.757709px;}
._17{width:22.042968px;}
._12{width:28.865479px;}
._2c{width:31.203072px;}
._2b{width:36.410656px;}
._26{width:38.160998px;}
._c{width:71.738242px;}
._31{width:75.138432px;}
._29{width:76.214400px;}
._23{width:95.259034px;}
._1c{width:114.339533px;}
._33{width:125.637197px;}
._16{width:129.475008px;}
._21{width:133.384166px;}
._2a{width:138.943334px;}
._3{width:149.099846px;}
._6{width:159.996442px;}
._18{width:171.437568px;}
._10{width:175.549237px;}
._24{width:190.518067px;}
._34{width:192.634138px;}
._14{width:195.447436px;}
._20{width:228.607334px;}
._b{width:233.542013px;}
._25{width:247.651968px;}
._1e{width:285.777101px;}
._11{width:307.571165px;}
._d{width:318.781843px;}
._13{width:328.385728px;}
._15{width:333.753005px;}
._f{width:338.038038px;}
._e{width:346.778471px;}
._28{width:361.919770px;}
._1d{width:381.000269px;}
._1b{width:476.295168px;}
._a{width:490.124045px;}
._27{width:514.348570px;}
._1f{width:571.482470px;}
._22{width:609.571738px;}
._2f{width:614.736384px;}
._1a{width:647.661005px;}
._2e{width:769.317120px;}
._19{width:895.312973px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y3c{bottom:-7.024500px;}
.y4c{bottom:-2.193000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.987000px;}
.yc6{bottom:16.641000px;}
.y4b{bottom:18.130500px;}
.y4{bottom:24.651000px;}
.yc5{bottom:27.102000px;}
.y63{bottom:32.283000px;}
.yc4{bottom:37.563000px;}
.y4a{bottom:38.454000px;}
.y7e{bottom:43.456500px;}
.yc3{bottom:48.024000px;}
.y62{bottom:52.606500px;}
.y7d{bottom:53.917500px;}
.yc2{bottom:58.485000px;}
.yde{bottom:62.673000px;}
.y49{bottom:63.261000px;}
.y7c{bottom:64.377000px;}
.yc1{bottom:68.946000px;}
.y87{bottom:70.390500px;}
.y61{bottom:72.930000px;}
.y7b{bottom:74.838000px;}
.ydd{bottom:77.617500px;}
.yc0{bottom:79.405500px;}
.y48{bottom:83.586000px;}
.y7a{bottom:85.299000px;}
.y9a{bottom:86.095500px;}
.ybf{bottom:90.465000px;}
.ydc{bottom:92.560500px;}
.y79{bottom:95.760000px;}
.y99{bottom:96.556500px;}
.ya2{bottom:96.705000px;}
.y10{bottom:102.267000px;}
.y47{bottom:103.909500px;}
.y3b{bottom:105.162000px;}
.ya9{bottom:105.192000px;}
.y78{bottom:106.221000px;}
.y98{bottom:107.017500px;}
.y33{bottom:109.840500px;}
.yf{bottom:112.728000px;}
.y60{bottom:115.095000px;}
.ybe{bottom:115.720500px;}
.y77{bottom:116.682000px;}
.ya1{bottom:117.028500px;}
.y97{bottom:117.478500px;}
.y23{bottom:121.204500px;}
.ye{bottom:123.189000px;}
.y2b{bottom:123.828000px;}
.y46{bottom:124.233000px;}
.y3a{bottom:125.485500px;}
.y1a{bottom:125.515500px;}
.y5f{bottom:125.554500px;}
.ybd{bottom:126.180000px;}
.y76{bottom:127.143000px;}
.y96{bottom:127.939500px;}
.y32{bottom:130.164000px;}
.y22{bottom:131.665500px;}
.y19{bottom:135.976500px;}
.y5e{bottom:136.015500px;}
.ybc{bottom:136.641000px;}
.ydb{bottom:137.353500px;}
.y75{bottom:137.602500px;}
.y95{bottom:138.400500px;}
.ya0{bottom:141.835500px;}
.y21{bottom:142.126500px;}
.y39{bottom:145.809000px;}
.y5d{bottom:146.476500px;}
.ybb{bottom:147.102000px;}
.yda{bottom:147.814500px;}
.y74{bottom:148.063500px;}
.y2a{bottom:148.635000px;}
.y94{bottom:148.861500px;}
.y45{bottom:149.040000px;}
.ya8{bottom:150.322500px;}
.y86{bottom:152.856000px;}
.y31{bottom:154.971000px;}
.y5c{bottom:156.937500px;}
.yba{bottom:157.563000px;}
.yd9{bottom:158.275500px;}
.y73{bottom:158.524500px;}
.y93{bottom:159.321000px;}
.y38{bottom:166.132500px;}
.y5b{bottom:167.398500px;}
.yb9{bottom:168.024000px;}
.yd8{bottom:168.736500px;}
.y72{bottom:168.985500px;}
.y44{bottom:169.363500px;}
.y92{bottom:169.782000px;}
.ye2{bottom:171.171000px;}
.yca{bottom:171.534000px;}
.y29{bottom:173.442000px;}
.ya7{bottom:175.129500px;}
.y5a{bottom:177.859500px;}
.yb8{bottom:178.485000px;}
.yd7{bottom:179.196000px;}
.y71{bottom:179.446500px;}
.y30{bottom:179.778000px;}
.y91{bottom:180.243000px;}
.y37{bottom:186.456000px;}
.y59{bottom:188.320500px;}
.y9f{bottom:188.841000px;}
.yb7{bottom:188.946000px;}
.yd6{bottom:189.657000px;}
.y70{bottom:189.907500px;}
.y90{bottom:190.704000px;}
.y43{bottom:194.170500px;}
.y85{bottom:194.989500px;}
.ye1{bottom:195.978000px;}
.y3{bottom:196.305000px;}
.yc9{bottom:196.341000px;}
.y28{bottom:198.249000px;}
.y58{bottom:198.780000px;}
.yb6{bottom:199.405500px;}
.ya6{bottom:199.936500px;}
.yd5{bottom:200.118000px;}
.y6f{bottom:200.368500px;}
.y8f{bottom:201.165000px;}
.y2f{bottom:204.585000px;}
.y84{bottom:205.450500px;}
.y36{bottom:206.779500px;}
.y9e{bottom:209.164500px;}
.y57{bottom:209.241000px;}
.yd4{bottom:210.579000px;}
.y6e{bottom:210.828000px;}
.y8e{bottom:211.626000px;}
.y42{bottom:214.494000px;}
.y18{bottom:215.751000px;}
.y83{bottom:215.911500px;}
.ye0{bottom:216.301500px;}
.y56{bottom:219.702000px;}
.ya5{bottom:220.260000px;}
.yb5{bottom:220.327500px;}
.yd3{bottom:221.040000px;}
.yc8{bottom:221.148000px;}
.y6d{bottom:221.289000px;}
.y8d{bottom:222.087000px;}
.y27{bottom:223.056000px;}
.y82{bottom:226.372500px;}
.y35{bottom:227.104500px;}
.y2e{bottom:229.392000px;}
.y55{bottom:230.163000px;}
.y17{bottom:230.695500px;}
.yb4{bottom:230.788500px;}
.yd2{bottom:231.501000px;}
.y6c{bottom:231.750000px;}
.y8c{bottom:232.546500px;}
.y41{bottom:234.819000px;}
.y81{bottom:236.833500px;}
.y54{bottom:240.624000px;}
.ydf{bottom:241.108500px;}
.yb3{bottom:241.249500px;}
.y6b{bottom:242.211000px;}
.yd1{bottom:242.559000px;}
.y9d{bottom:242.937000px;}
.y8b{bottom:243.007500px;}
.yd{bottom:243.232500px;}
.ya4{bottom:245.067000px;}
.y20{bottom:245.217000px;}
.y16{bottom:245.638500px;}
.yc7{bottom:245.955000px;}
.y80{bottom:247.294500px;}
.y26{bottom:247.863000px;}
.y53{bottom:251.085000px;}
.yb2{bottom:251.710500px;}
.y6a{bottom:252.672000px;}
.y8a{bottom:253.468500px;}
.y2d{bottom:254.199000px;}
.y7f{bottom:257.754000px;}
.yc{bottom:258.177000px;}
.y2{bottom:259.056000px;}
.y40{bottom:259.626000px;}
.y1f{bottom:260.161500px;}
.y15{bottom:260.583000px;}
.yb1{bottom:262.171500px;}
.y69{bottom:263.133000px;}
.y9c{bottom:263.262000px;}
.ya3{bottom:265.390500px;}
.yd0{bottom:265.572000px;}
.y34{bottom:268.350000px;}
.y14{bottom:271.044000px;}
.yb0{bottom:272.631000px;}
.y25{bottom:272.670000px;}
.yb{bottom:273.120000px;}
.y68{bottom:273.594000px;}
.y52{bottom:274.995000px;}
.y1e{bottom:275.104500px;}
.ycf{bottom:276.033000px;}
.y89{bottom:277.378500px;}
.y2c{bottom:279.006000px;}
.y3f{bottom:279.949500px;}
.y13{bottom:281.505000px;}
.yaf{bottom:283.092000px;}
.ya{bottom:283.581000px;}
.y67{bottom:284.053500px;}
.y51{bottom:285.456000px;}
.y1d{bottom:285.565500px;}
.yce{bottom:286.494000px;}
.y9b{bottom:288.403500px;}
.yae{bottom:293.553000px;}
.y66{bottom:294.514500px;}
.y50{bottom:295.917000px;}
.y88{bottom:296.803500px;}
.ycd{bottom:296.955000px;}
.y12{bottom:303.708000px;}
.yad{bottom:304.014000px;}
.y3e{bottom:304.756500px;}
.y65{bottom:304.975500px;}
.y9{bottom:305.784000px;}
.y4f{bottom:306.376500px;}
.ycc{bottom:307.416000px;}
.y1c{bottom:307.770000px;}
.yac{bottom:314.475000px;}
.y3d{bottom:316.564500px;}
.y4e{bottom:316.837500px;}
.ycb{bottom:317.877000px;}
.y64{bottom:324.400500px;}
.y11{bottom:324.630000px;}
.yab{bottom:324.936000px;}
.y1{bottom:326.593500px;}
.y8{bottom:326.706000px;}
.y1b{bottom:328.690500px;}
.yaa{bottom:335.395500px;}
.y4d{bottom:335.515500px;}
.y7{bottom:347.628000px;}
.y24{bottom:377.860500px;}
.y6{bottom:389.116500px;}
.h7{height:24.962458px;}
.h5{height:26.970931px;}
.h9{height:45.490947px;}
.h4{height:49.221859px;}
.h6{height:53.870131px;}
.h3{height:56.176367px;}
.h2{height:64.557900px;}
.h8{height:111.188131px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xd{left:12.756000px;}
.x11{left:14.248500px;}
.x6{left:16.258500px;}
.x7{left:20.922000px;}
.xf{left:25.225500px;}
.x4{left:35.124000px;}
.x5{left:37.273500px;}
.x1{left:42.978000px;}
.x15{left:44.832000px;}
.xe{left:48.987000px;}
.x8{left:53.649000px;}
.x16{left:59.119500px;}
.x13{left:101.979000px;}
.x17{left:126.841500px;}
.x2{left:186.252000px;}
.x9{left:195.364500px;}
.x3{left:221.026500px;}
.xa{left:228.093000px;}
.x12{left:311.977500px;}
.x14{left:313.686000px;}
.x10{left:354.178500px;}
.xb{left:369.808500px;}
.xc{left:402.535500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.v3{vertical-align:50.949333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656794pt;}
.ls3{letter-spacing:19.268800pt;}
.ls2{letter-spacing:19.271717pt;}
.ws7{word-spacing:-31.211042pt;}
.wsc{word-spacing:-28.904751pt;}
.wse{word-spacing:-19.246561pt;}
.wsa{word-spacing:-18.713873pt;}
.wsb{word-spacing:-12.196183pt;}
.ws0{word-spacing:-12.119670pt;}
.ws6{word-spacing:-10.424934pt;}
.ws2{word-spacing:-9.646553pt;}
.ws1{word-spacing:-9.588372pt;}
.ws8{word-spacing:-6.248585pt;}
.ws4{word-spacing:-6.216704pt;}
.ws15{word-spacing:-0.058182pt;}
.ws3{word-spacing:-0.047821pt;}
.ws9{word-spacing:-0.031881pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:16.896683pt;}
.ws11{word-spacing:16.928563pt;}
.ws10{word-spacing:30.021843pt;}
.wsd{word-spacing:34.862575pt;}
.ws14{word-spacing:63.722189pt;}
.ws1c{word-spacing:77.788501pt;}
.ws13{word-spacing:80.653940pt;}
.ws1d{word-spacing:96.056047pt;}
.ws12{word-spacing:132.559258pt;}
.ws1a{word-spacing:140.369988pt;}
.ws18{word-spacing:149.392179pt;}
.ws1b{word-spacing:154.684348pt;}
.ws19{word-spacing:161.124215pt;}
.ws17{word-spacing:165.428087pt;}
.ws16{word-spacing:191.378842pt;}
._5{margin-left:-39.592793pt;}
._2d{margin-left:-6.121045pt;}
._8{margin-left:-5.164646pt;}
._32{margin-left:-3.124292pt;}
._0{margin-left:-2.065853pt;}
._2{margin-left:-1.052058pt;}
._4{width:1.020177pt;}
._1{width:1.989340pt;}
._7{width:6.248585pt;}
._30{width:15.615202pt;}
._9{width:16.673519pt;}
._17{width:19.593749pt;}
._12{width:25.658203pt;}
._2c{width:27.736064pt;}
._2b{width:32.365027pt;}
._26{width:33.920887pt;}
._c{width:63.767326pt;}
._31{width:66.789717pt;}
._29{width:67.746133pt;}
._23{width:84.674697pt;}
._1c{width:101.635140pt;}
._33{width:111.677508pt;}
._16{width:115.088896pt;}
._21{width:118.563703pt;}
._2a{width:123.505186pt;}
._3{width:132.533197pt;}
._6{width:142.219059pt;}
._18{width:152.388949pt;}
._10{width:156.043766pt;}
._24{width:169.349393pt;}
._34{width:171.230345pt;}
._14{width:173.731054pt;}
._20{width:203.206519pt;}
._b{width:207.592900pt;}
._25{width:220.135083pt;}
._1e{width:254.024090pt;}
._11{width:273.396591pt;}
._d{width:283.361638pt;}
._13{width:291.898425pt;}
._15{width:296.669338pt;}
._f{width:300.478256pt;}
._e{width:308.247530pt;}
._28{width:321.706462pt;}
._1d{width:338.666906pt;}
._1b{width:423.373483pt;}
._a{width:435.665818pt;}
._27{width:457.198729pt;}
._1f{width:507.984418pt;}
._22{width:541.841545pt;}
._2f{width:546.432341pt;}
._1a{width:575.698671pt;}
._2e{width:683.837440pt;}
._19{width:795.833754pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y3c{bottom:-6.244000pt;}
.y4c{bottom:-1.949333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.544000pt;}
.yc6{bottom:14.792000pt;}
.y4b{bottom:16.116000pt;}
.y4{bottom:21.912000pt;}
.yc5{bottom:24.090667pt;}
.y63{bottom:28.696000pt;}
.yc4{bottom:33.389333pt;}
.y4a{bottom:34.181333pt;}
.y7e{bottom:38.628000pt;}
.yc3{bottom:42.688000pt;}
.y62{bottom:46.761333pt;}
.y7d{bottom:47.926667pt;}
.yc2{bottom:51.986667pt;}
.yde{bottom:55.709333pt;}
.y49{bottom:56.232000pt;}
.y7c{bottom:57.224000pt;}
.yc1{bottom:61.285333pt;}
.y87{bottom:62.569333pt;}
.y61{bottom:64.826667pt;}
.y7b{bottom:66.522667pt;}
.ydd{bottom:68.993333pt;}
.yc0{bottom:70.582667pt;}
.y48{bottom:74.298667pt;}
.y7a{bottom:75.821333pt;}
.y9a{bottom:76.529333pt;}
.ybf{bottom:80.413333pt;}
.ydc{bottom:82.276000pt;}
.y79{bottom:85.120000pt;}
.y99{bottom:85.828000pt;}
.ya2{bottom:85.960000pt;}
.y10{bottom:90.904000pt;}
.y47{bottom:92.364000pt;}
.y3b{bottom:93.477333pt;}
.ya9{bottom:93.504000pt;}
.y78{bottom:94.418667pt;}
.y98{bottom:95.126667pt;}
.y33{bottom:97.636000pt;}
.yf{bottom:100.202667pt;}
.y60{bottom:102.306667pt;}
.ybe{bottom:102.862667pt;}
.y77{bottom:103.717333pt;}
.ya1{bottom:104.025333pt;}
.y97{bottom:104.425333pt;}
.y23{bottom:107.737333pt;}
.ye{bottom:109.501333pt;}
.y2b{bottom:110.069333pt;}
.y46{bottom:110.429333pt;}
.y3a{bottom:111.542667pt;}
.y1a{bottom:111.569333pt;}
.y5f{bottom:111.604000pt;}
.ybd{bottom:112.160000pt;}
.y76{bottom:113.016000pt;}
.y96{bottom:113.724000pt;}
.y32{bottom:115.701333pt;}
.y22{bottom:117.036000pt;}
.y19{bottom:120.868000pt;}
.y5e{bottom:120.902667pt;}
.ybc{bottom:121.458667pt;}
.ydb{bottom:122.092000pt;}
.y75{bottom:122.313333pt;}
.y95{bottom:123.022667pt;}
.ya0{bottom:126.076000pt;}
.y21{bottom:126.334667pt;}
.y39{bottom:129.608000pt;}
.y5d{bottom:130.201333pt;}
.ybb{bottom:130.757333pt;}
.yda{bottom:131.390667pt;}
.y74{bottom:131.612000pt;}
.y2a{bottom:132.120000pt;}
.y94{bottom:132.321333pt;}
.y45{bottom:132.480000pt;}
.ya8{bottom:133.620000pt;}
.y86{bottom:135.872000pt;}
.y31{bottom:137.752000pt;}
.y5c{bottom:139.500000pt;}
.yba{bottom:140.056000pt;}
.yd9{bottom:140.689333pt;}
.y73{bottom:140.910667pt;}
.y93{bottom:141.618667pt;}
.y38{bottom:147.673333pt;}
.y5b{bottom:148.798667pt;}
.yb9{bottom:149.354667pt;}
.yd8{bottom:149.988000pt;}
.y72{bottom:150.209333pt;}
.y44{bottom:150.545333pt;}
.y92{bottom:150.917333pt;}
.ye2{bottom:152.152000pt;}
.yca{bottom:152.474667pt;}
.y29{bottom:154.170667pt;}
.ya7{bottom:155.670667pt;}
.y5a{bottom:158.097333pt;}
.yb8{bottom:158.653333pt;}
.yd7{bottom:159.285333pt;}
.y71{bottom:159.508000pt;}
.y30{bottom:159.802667pt;}
.y91{bottom:160.216000pt;}
.y37{bottom:165.738667pt;}
.y59{bottom:167.396000pt;}
.y9f{bottom:167.858667pt;}
.yb7{bottom:167.952000pt;}
.yd6{bottom:168.584000pt;}
.y70{bottom:168.806667pt;}
.y90{bottom:169.514667pt;}
.y43{bottom:172.596000pt;}
.y85{bottom:173.324000pt;}
.ye1{bottom:174.202667pt;}
.y3{bottom:174.493333pt;}
.yc9{bottom:174.525333pt;}
.y28{bottom:176.221333pt;}
.y58{bottom:176.693333pt;}
.yb6{bottom:177.249333pt;}
.ya6{bottom:177.721333pt;}
.yd5{bottom:177.882667pt;}
.y6f{bottom:178.105333pt;}
.y8f{bottom:178.813333pt;}
.y2f{bottom:181.853333pt;}
.y84{bottom:182.622667pt;}
.y36{bottom:183.804000pt;}
.y9e{bottom:185.924000pt;}
.y57{bottom:185.992000pt;}
.yd4{bottom:187.181333pt;}
.y6e{bottom:187.402667pt;}
.y8e{bottom:188.112000pt;}
.y42{bottom:190.661333pt;}
.y18{bottom:191.778667pt;}
.y83{bottom:191.921333pt;}
.ye0{bottom:192.268000pt;}
.y56{bottom:195.290667pt;}
.ya5{bottom:195.786667pt;}
.yb5{bottom:195.846667pt;}
.yd3{bottom:196.480000pt;}
.yc8{bottom:196.576000pt;}
.y6d{bottom:196.701333pt;}
.y8d{bottom:197.410667pt;}
.y27{bottom:198.272000pt;}
.y82{bottom:201.220000pt;}
.y35{bottom:201.870667pt;}
.y2e{bottom:203.904000pt;}
.y55{bottom:204.589333pt;}
.y17{bottom:205.062667pt;}
.yb4{bottom:205.145333pt;}
.yd2{bottom:205.778667pt;}
.y6c{bottom:206.000000pt;}
.y8c{bottom:206.708000pt;}
.y41{bottom:208.728000pt;}
.y81{bottom:210.518667pt;}
.y54{bottom:213.888000pt;}
.ydf{bottom:214.318667pt;}
.yb3{bottom:214.444000pt;}
.y6b{bottom:215.298667pt;}
.yd1{bottom:215.608000pt;}
.y9d{bottom:215.944000pt;}
.y8b{bottom:216.006667pt;}
.yd{bottom:216.206667pt;}
.ya4{bottom:217.837333pt;}
.y20{bottom:217.970667pt;}
.y16{bottom:218.345333pt;}
.yc7{bottom:218.626667pt;}
.y80{bottom:219.817333pt;}
.y26{bottom:220.322667pt;}
.y53{bottom:223.186667pt;}
.yb2{bottom:223.742667pt;}
.y6a{bottom:224.597333pt;}
.y8a{bottom:225.305333pt;}
.y2d{bottom:225.954667pt;}
.y7f{bottom:229.114667pt;}
.yc{bottom:229.490667pt;}
.y2{bottom:230.272000pt;}
.y40{bottom:230.778667pt;}
.y1f{bottom:231.254667pt;}
.y15{bottom:231.629333pt;}
.yb1{bottom:233.041333pt;}
.y69{bottom:233.896000pt;}
.y9c{bottom:234.010667pt;}
.ya3{bottom:235.902667pt;}
.yd0{bottom:236.064000pt;}
.y34{bottom:238.533333pt;}
.y14{bottom:240.928000pt;}
.yb0{bottom:242.338667pt;}
.y25{bottom:242.373333pt;}
.yb{bottom:242.773333pt;}
.y68{bottom:243.194667pt;}
.y52{bottom:244.440000pt;}
.y1e{bottom:244.537333pt;}
.ycf{bottom:245.362667pt;}
.y89{bottom:246.558667pt;}
.y2c{bottom:248.005333pt;}
.y3f{bottom:248.844000pt;}
.y13{bottom:250.226667pt;}
.yaf{bottom:251.637333pt;}
.ya{bottom:252.072000pt;}
.y67{bottom:252.492000pt;}
.y51{bottom:253.738667pt;}
.y1d{bottom:253.836000pt;}
.yce{bottom:254.661333pt;}
.y9b{bottom:256.358667pt;}
.yae{bottom:260.936000pt;}
.y66{bottom:261.790667pt;}
.y50{bottom:263.037333pt;}
.y88{bottom:263.825333pt;}
.ycd{bottom:263.960000pt;}
.y12{bottom:269.962667pt;}
.yad{bottom:270.234667pt;}
.y3e{bottom:270.894667pt;}
.y65{bottom:271.089333pt;}
.y9{bottom:271.808000pt;}
.y4f{bottom:272.334667pt;}
.ycc{bottom:273.258667pt;}
.y1c{bottom:273.573333pt;}
.yac{bottom:279.533333pt;}
.y3d{bottom:281.390667pt;}
.y4e{bottom:281.633333pt;}
.ycb{bottom:282.557333pt;}
.y64{bottom:288.356000pt;}
.y11{bottom:288.560000pt;}
.yab{bottom:288.832000pt;}
.y1{bottom:290.305333pt;}
.y8{bottom:290.405333pt;}
.y1b{bottom:292.169333pt;}
.yaa{bottom:298.129333pt;}
.y4d{bottom:298.236000pt;}
.y7{bottom:309.002667pt;}
.y24{bottom:335.876000pt;}
.y6{bottom:345.881333pt;}
.h7{height:22.188851pt;}
.h5{height:23.974161pt;}
.h9{height:40.436397pt;}
.h4{height:43.752764pt;}
.h6{height:47.884561pt;}
.h3{height:49.934548pt;}
.h2{height:57.384800pt;}
.h8{height:98.833894pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xd{left:11.338667pt;}
.x11{left:12.665333pt;}
.x6{left:14.452000pt;}
.x7{left:18.597333pt;}
.xf{left:22.422667pt;}
.x4{left:31.221333pt;}
.x5{left:33.132000pt;}
.x1{left:38.202667pt;}
.x15{left:39.850667pt;}
.xe{left:43.544000pt;}
.x8{left:47.688000pt;}
.x16{left:52.550667pt;}
.x13{left:90.648000pt;}
.x17{left:112.748000pt;}
.x2{left:165.557333pt;}
.x9{left:173.657333pt;}
.x3{left:196.468000pt;}
.xa{left:202.749333pt;}
.x12{left:277.313333pt;}
.x14{left:278.832000pt;}
.x10{left:314.825333pt;}
.xb{left:328.718667pt;}
.xc{left:357.809333pt;}
}




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