
    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_00779bc0f6559c1c3dd89fbb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_675a8c08ada521f452128ef3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_e3b0fef084faf68a8345c9ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_c294f6611acc0d8ca63202fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls3{letter-spacing:0.412414px;}
.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:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws4{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws6{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-11.247600px;}
._6{margin-left:-8.405700px;}
._22{margin-left:-7.133700px;}
._5{margin-left:-6.096300px;}
._17{margin-left:-5.078400px;}
._1{margin-left:-4.063500px;}
._0{margin-left:-3.040200px;}
._2{margin-left:-1.820700px;}
._3{width:1.005900px;}
._a{width:2.405400px;}
._7{width:3.433200px;}
._8{width:4.473600px;}
._9{width:6.102600px;}
._b{width:7.127100px;}
._12{width:8.158500px;}
._11{width:9.174000px;}
._10{width:10.183800px;}
._f{width:11.865900px;}
._e{width:13.338600px;}
._15{width:15.654300px;}
._c{width:16.698000px;}
._d{width:18.176400px;}
._13{width:19.819800px;}
._18{width:21.522600px;}
._19{width:22.743600px;}
._1a{width:23.971200px;}
._14{width:25.311000px;}
._1d{width:27.489000px;}
._1e{width:29.109900px;}
._21{width:31.317000px;}
._16{width:35.494800px;}
._23{width:37.659600px;}
._1b{width:39.850800px;}
._1c{width:40.911300px;}
._1f{width:45.738000px;}
._20{width:47.051400px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y156{bottom:123.402900px;}
.y77{bottom:123.419400px;}
.y26{bottom:128.960400px;}
.yf0{bottom:129.636900px;}
.y117{bottom:132.636900px;}
.yfc{bottom:134.136900px;}
.y4f{bottom:139.053900px;}
.y8b{bottom:139.619400px;}
.y155{bottom:142.152900px;}
.y76{bottom:144.114900px;}
.y25{bottom:145.160400px;}
.yef{bottom:148.386900px;}
.y116{bottom:151.386900px;}
.yfb{bottom:152.886900px;}
.y4e{bottom:155.253900px;}
.y75{bottom:155.819400px;}
.y8a{bottom:160.314900px;}
.y154{bottom:160.902900px;}
.y24{bottom:165.855900px;}
.yee{bottom:167.136900px;}
.yfa{bottom:171.636900px;}
.y74{bottom:172.019400px;}
.y115{bottom:174.636900px;}
.y4d{bottom:175.949400px;}
.yac{bottom:176.514900px;}
.y153{bottom:181.152900px;}
.y23{bottom:182.055900px;}
.yed{bottom:185.886900px;}
.y89{bottom:188.219400px;}
.yf9{bottom:190.386900px;}
.y4c{bottom:192.149400px;}
.y73{bottom:192.714900px;}
.y114{bottom:193.386900px;}
.y152{bottom:199.752900px;}
.y48{bottom:203.519400px;}
.y88{bottom:204.419400px;}
.yab{bottom:206.136900px;}
.yf8{bottom:209.136900px;}
.y113{bottom:212.136900px;}
.y22{bottom:217.902900px;}
.y151{bottom:218.352900px;}
.y47{bottom:219.719400px;}
.yb4{bottom:220.619400px;}
.yc8{bottom:223.386900px;}
.yaa{bottom:224.886900px;}
.y87{bottom:225.114900px;}
.y72{bottom:226.386900px;}
.yf7{bottom:227.886900px;}
.y112{bottom:235.386900px;}
.y46{bottom:235.919400px;}
.y21{bottom:236.652900px;}
.y86{bottom:236.819400px;}
.y150{bottom:236.952900px;}
.yc7{bottom:242.136900px;}
.ya9{bottom:243.636900px;}
.y71{bottom:245.136900px;}
.yf6{bottom:246.636900px;}
.y45{bottom:252.119400px;}
.yb3{bottom:253.019400px;}
.y111{bottom:254.136900px;}
.y20{bottom:255.402900px;}
.y14f{bottom:255.552900px;}
.y134{bottom:257.136900px;}
.y85{bottom:257.514900px;}
.yc6{bottom:260.886900px;}
.ya8{bottom:262.386900px;}
.y70{bottom:263.886900px;}
.yf5{bottom:265.386900px;}
.yb2{bottom:269.219400px;}
.y44{bottom:272.814900px;}
.yd2{bottom:272.886900px;}
.y1f{bottom:274.152900px;}
.y133{bottom:275.886900px;}
.y110{bottom:277.386900px;}
.yc5{bottom:279.636900px;}
.ya7{bottom:281.136900px;}
.y6f{bottom:284.136900px;}
.yb1{bottom:285.419400px;}
.y49{bottom:289.014900px;}
.y84{bottom:291.636900px;}
.y14e{bottom:292.752900px;}
.y132{bottom:294.636900px;}
.y10f{bottom:296.136900px;}
.yc4{bottom:298.386900px;}
.ya6{bottom:299.886900px;}
.y4b{bottom:300.719400px;}
.yb0{bottom:301.619400px;}
.y1e{bottom:301.902900px;}
.y6e{bottom:302.886900px;}
.y83{bottom:310.386900px;}
.y14d{bottom:311.352900px;}
.y131{bottom:313.386900px;}
.y10e{bottom:314.886900px;}
.yc3{bottom:317.136900px;}
.ydf{bottom:317.819400px;}
.ya5{bottom:318.636900px;}
.yec{bottom:320.136900px;}
.y4a{bottom:321.414900px;}
.y6d{bottom:321.636900px;}
.yaf{bottom:322.314900px;}
.y82{bottom:329.136900px;}
.y1d{bottom:329.652900px;}
.y14c{bottom:329.952900px;}
.y130{bottom:332.136900px;}
.y10d{bottom:333.636900px;}
.yae{bottom:334.019400px;}
.yc2{bottom:335.886900px;}
.ya4{bottom:337.386900px;}
.yeb{bottom:338.886900px;}
.y6c{bottom:340.386900px;}
.y81{bottom:347.886900px;}
.y1c{bottom:348.402900px;}
.y14b{bottom:348.552900px;}
.ye5{bottom:350.219400px;}
.y12f{bottom:350.886900px;}
.yc1{bottom:354.636900px;}
.yad{bottom:354.714900px;}
.ya3{bottom:356.136900px;}
.y10c{bottom:356.886900px;}
.yea{bottom:357.636900px;}
.y6b{bottom:359.136900px;}
.y43{bottom:361.686900px;}
.yde{bottom:366.419400px;}
.yd1{bottom:366.636900px;}
.y1b{bottom:367.152900px;}
.y12e{bottom:369.636900px;}
.yc0{bottom:373.386900px;}
.ya2{bottom:374.886900px;}
.y80{bottom:375.636900px;}
.ye9{bottom:376.386900px;}
.y6a{bottom:377.886900px;}
.y42{bottom:381.036900px;}
.ydd{bottom:382.619400px;}
.yd0{bottom:385.386900px;}
.y14a{bottom:385.752900px;}
.y12d{bottom:388.386900px;}
.ybf{bottom:392.136900px;}
.ya1{bottom:393.636900px;}
.y7f{bottom:394.386900px;}
.y1a{bottom:394.902900px;}
.ye8{bottom:395.136900px;}
.y69{bottom:396.636900px;}
.ydc{bottom:398.819400px;}
.y10b{bottom:398.886900px;}
.y41{bottom:400.386900px;}
.ycf{bottom:404.136900px;}
.y149{bottom:404.352900px;}
.y12c{bottom:407.136900px;}
.ya0{bottom:412.386900px;}
.y19{bottom:413.652900px;}
.ye7{bottom:413.886900px;}
.ydb{bottom:415.019400px;}
.y68{bottom:415.386900px;}
.y10a{bottom:417.636900px;}
.y40{bottom:419.736900px;}
.yce{bottom:422.886900px;}
.y148{bottom:422.952900px;}
.y12b{bottom:425.886900px;}
.y9f{bottom:431.136900px;}
.yda{bottom:431.219400px;}
.y18{bottom:432.402900px;}
.y7e{bottom:432.636900px;}
.y67{bottom:434.136900px;}
.y109{bottom:436.386900px;}
.y3f{bottom:439.086900px;}
.y147{bottom:441.552900px;}
.ycd{bottom:441.636900px;}
.y12a{bottom:444.636900px;}
.yd9{bottom:447.419400px;}
.y9e{bottom:449.886900px;}
.y17{bottom:451.152900px;}
.y7d{bottom:451.386900px;}
.y66{bottom:452.886900px;}
.y3e{bottom:458.436900px;}
.y108{bottom:459.636900px;}
.y146{bottom:460.152900px;}
.ycc{bottom:460.386900px;}
.y129{bottom:463.386900px;}
.yd8{bottom:463.619400px;}
.y9d{bottom:468.636900px;}
.y16{bottom:469.902900px;}
.y7c{bottom:470.136900px;}
.y65{bottom:471.636900px;}
.y3d{bottom:477.786900px;}
.y107{bottom:478.386900px;}
.y145{bottom:478.752900px;}
.ycb{bottom:479.136900px;}
.yd7{bottom:479.819400px;}
.y128{bottom:482.136900px;}
.ybe{bottom:487.386900px;}
.y15{bottom:488.652900px;}
.y7b{bottom:488.886900px;}
.y64{bottom:490.386900px;}
.yd6{bottom:496.019400px;}
.y3c{bottom:497.136900px;}
.y144{bottom:497.352900px;}
.y127{bottom:500.886900px;}
.ybd{bottom:506.136900px;}
.yca{bottom:506.886900px;}
.y14{bottom:507.402900px;}
.y7a{bottom:507.636900px;}
.y63{bottom:509.136900px;}
.yf4{bottom:510.636900px;}
.yd5{bottom:512.219400px;}
.y143{bottom:515.952900px;}
.y3b{bottom:516.486900px;}
.y126{bottom:519.636900px;}
.y106{bottom:520.386900px;}
.ybc{bottom:524.886900px;}
.yc9{bottom:525.636900px;}
.y13{bottom:526.152900px;}
.y9c{bottom:526.386900px;}
.y62{bottom:527.886900px;}
.yd4{bottom:528.419400px;}
.yf3{bottom:529.386900px;}
.y142{bottom:534.552900px;}
.y3a{bottom:535.836900px;}
.y125{bottom:538.386900px;}
.y105{bottom:539.136900px;}
.ybb{bottom:543.636900px;}
.y12{bottom:544.902900px;}
.y9b{bottom:545.136900px;}
.y61{bottom:546.636900px;}
.yf2{bottom:548.136900px;}
.yd3{bottom:549.114900px;}
.y141{bottom:553.152900px;}
.y39{bottom:555.186900px;}
.y124{bottom:557.136900px;}
.yba{bottom:562.386900px;}
.y11{bottom:563.652900px;}
.y9a{bottom:563.886900px;}
.y60{bottom:565.386900px;}
.yf1{bottom:566.886900px;}
.y140{bottom:571.752900px;}
.y38{bottom:574.536900px;}
.y123{bottom:575.886900px;}
.yb9{bottom:581.136900px;}
.y10{bottom:582.402900px;}
.y99{bottom:582.636900px;}
.y5f{bottom:584.136900px;}
.ye4{bottom:585.636900px;}
.y13f{bottom:590.352900px;}
.y37{bottom:593.886900px;}
.y122{bottom:594.636900px;}
.yb8{bottom:599.886900px;}
.yf{bottom:601.152900px;}
.y98{bottom:601.386900px;}
.y5e{bottom:602.886900px;}
.ye3{bottom:604.386900px;}
.y13e{bottom:608.952900px;}
.y121{bottom:613.386900px;}
.y36{bottom:614.736900px;}
.yb7{bottom:618.636900px;}
.ye{bottom:619.902900px;}
.y97{bottom:620.136900px;}
.y5d{bottom:621.636900px;}
.ye2{bottom:623.136900px;}
.y13d{bottom:627.552900px;}
.y120{bottom:632.136900px;}
.y35{bottom:634.086900px;}
.yb6{bottom:637.386900px;}
.yd{bottom:638.652900px;}
.y96{bottom:638.886900px;}
.y5c{bottom:640.386900px;}
.ye1{bottom:641.886900px;}
.y13c{bottom:646.152900px;}
.y11f{bottom:650.886900px;}
.y34{bottom:653.436900px;}
.y95{bottom:657.636900px;}
.y5b{bottom:659.136900px;}
.ye0{bottom:660.636900px;}
.y13b{bottom:664.752900px;}
.y104{bottom:665.136900px;}
.y33{bottom:672.786900px;}
.y94{bottom:676.386900px;}
.y79{bottom:677.886900px;}
.y11e{bottom:678.636900px;}
.y5a{bottom:679.386900px;}
.y13a{bottom:683.352900px;}
.y103{bottom:683.886900px;}
.y32{bottom:692.136900px;}
.yc{bottom:694.902900px;}
.yb5{bottom:695.136900px;}
.y78{bottom:696.636900px;}
.y59{bottom:698.136900px;}
.y139{bottom:701.952900px;}
.y102{bottom:702.636900px;}
.y11d{bottom:710.886900px;}
.y31{bottom:711.486900px;}
.ye6{bottom:713.886900px;}
.y93{bottom:715.386900px;}
.y58{bottom:716.886900px;}
.yb{bottom:717.402900px;}
.y101{bottom:725.886900px;}
.y138{bottom:729.552900px;}
.y11c{bottom:729.636900px;}
.y30{bottom:730.836900px;}
.y92{bottom:734.136900px;}
.y57{bottom:735.636900px;}
.ya{bottom:739.902900px;}
.y100{bottom:744.636900px;}
.y11b{bottom:748.386900px;}
.y2f{bottom:750.186900px;}
.y91{bottom:752.886900px;}
.y56{bottom:754.386900px;}
.y137{bottom:755.652900px;}
.yff{bottom:763.386900px;}
.y2e{bottom:769.536900px;}
.y90{bottom:771.636900px;}
.y55{bottom:773.136900px;}
.y136{bottom:774.402900px;}
.yfe{bottom:782.136900px;}
.y2d{bottom:788.886900px;}
.y8f{bottom:790.386900px;}
.y54{bottom:791.886900px;}
.y135{bottom:793.152900px;}
.y11a{bottom:801.636900px;}
.y2c{bottom:808.236900px;}
.y8e{bottom:809.136900px;}
.yfd{bottom:809.886900px;}
.y53{bottom:810.636900px;}
.y119{bottom:820.386900px;}
.y5{bottom:823.998900px;}
.y2b{bottom:827.586900px;}
.y8d{bottom:827.886900px;}
.y52{bottom:829.386900px;}
.y9{bottom:829.902900px;}
.y118{bottom:843.636900px;}
.y8c{bottom:846.636900px;}
.y2a{bottom:846.936900px;}
.y51{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y4{bottom:855.338400px;}
.y29{bottom:866.286900px;}
.y50{bottom:866.886900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y28{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y27{bottom:922.796400px;}
.hb{height:29.004328px;}
.hd{height:41.765625px;}
.h3{height:44.586914px;}
.h9{height:46.792969px;}
.hc{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.ha{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.x8{left:92.787600px;}
.x10{left:96.543600px;}
.xb{left:108.425100px;}
.xf{left:116.951100px;}
.xa{left:133.937100px;}
.x9{left:141.897600px;}
.x7{left:145.088100px;}
.xd{left:282.333600px;}
.x11{left:289.451100px;}
.xe{left:320.328600px;}
.x12{left:322.938600px;}
.x5{left:443.360100px;}
.x3{left:462.462600px;}
.x4{left:477.570600px;}
.x2{left:479.417100px;}
.xc{left:497.346600px;}
.x1{left:596.750100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls3{letter-spacing:0.366590pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws6{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-9.997867pt;}
._6{margin-left:-7.471733pt;}
._22{margin-left:-6.341067pt;}
._5{margin-left:-5.418933pt;}
._17{margin-left:-4.514133pt;}
._1{margin-left:-3.612000pt;}
._0{margin-left:-2.702400pt;}
._2{margin-left:-1.618400pt;}
._3{width:0.894133pt;}
._a{width:2.138133pt;}
._7{width:3.051733pt;}
._8{width:3.976533pt;}
._9{width:5.424533pt;}
._b{width:6.335200pt;}
._12{width:7.252000pt;}
._11{width:8.154667pt;}
._10{width:9.052267pt;}
._f{width:10.547467pt;}
._e{width:11.856533pt;}
._15{width:13.914933pt;}
._c{width:14.842667pt;}
._d{width:16.156800pt;}
._13{width:17.617600pt;}
._18{width:19.131200pt;}
._19{width:20.216533pt;}
._1a{width:21.307733pt;}
._14{width:22.498667pt;}
._1d{width:24.434667pt;}
._1e{width:25.875467pt;}
._21{width:27.837333pt;}
._16{width:31.550933pt;}
._23{width:33.475200pt;}
._1b{width:35.422933pt;}
._1c{width:36.365600pt;}
._1f{width:40.656000pt;}
._20{width:41.823467pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y156{bottom:109.691467pt;}
.y77{bottom:109.706133pt;}
.y26{bottom:114.631467pt;}
.yf0{bottom:115.232800pt;}
.y117{bottom:117.899467pt;}
.yfc{bottom:119.232800pt;}
.y4f{bottom:123.603467pt;}
.y8b{bottom:124.106133pt;}
.y155{bottom:126.358133pt;}
.y76{bottom:128.102133pt;}
.y25{bottom:129.031467pt;}
.yef{bottom:131.899467pt;}
.y116{bottom:134.566133pt;}
.yfb{bottom:135.899467pt;}
.y4e{bottom:138.003467pt;}
.y75{bottom:138.506133pt;}
.y8a{bottom:142.502133pt;}
.y154{bottom:143.024800pt;}
.y24{bottom:147.427467pt;}
.yee{bottom:148.566133pt;}
.yfa{bottom:152.566133pt;}
.y74{bottom:152.906133pt;}
.y115{bottom:155.232800pt;}
.y4d{bottom:156.399467pt;}
.yac{bottom:156.902133pt;}
.y153{bottom:161.024800pt;}
.y23{bottom:161.827467pt;}
.yed{bottom:165.232800pt;}
.y89{bottom:167.306133pt;}
.yf9{bottom:169.232800pt;}
.y4c{bottom:170.799467pt;}
.y73{bottom:171.302133pt;}
.y114{bottom:171.899467pt;}
.y152{bottom:177.558133pt;}
.y48{bottom:180.906133pt;}
.y88{bottom:181.706133pt;}
.yab{bottom:183.232800pt;}
.yf8{bottom:185.899467pt;}
.y113{bottom:188.566133pt;}
.y22{bottom:193.691467pt;}
.y151{bottom:194.091467pt;}
.y47{bottom:195.306133pt;}
.yb4{bottom:196.106133pt;}
.yc8{bottom:198.566133pt;}
.yaa{bottom:199.899467pt;}
.y87{bottom:200.102133pt;}
.y72{bottom:201.232800pt;}
.yf7{bottom:202.566133pt;}
.y112{bottom:209.232800pt;}
.y46{bottom:209.706133pt;}
.y21{bottom:210.358133pt;}
.y86{bottom:210.506133pt;}
.y150{bottom:210.624800pt;}
.yc7{bottom:215.232800pt;}
.ya9{bottom:216.566133pt;}
.y71{bottom:217.899467pt;}
.yf6{bottom:219.232800pt;}
.y45{bottom:224.106133pt;}
.yb3{bottom:224.906133pt;}
.y111{bottom:225.899467pt;}
.y20{bottom:227.024800pt;}
.y14f{bottom:227.158133pt;}
.y134{bottom:228.566133pt;}
.y85{bottom:228.902133pt;}
.yc6{bottom:231.899467pt;}
.ya8{bottom:233.232800pt;}
.y70{bottom:234.566133pt;}
.yf5{bottom:235.899467pt;}
.yb2{bottom:239.306133pt;}
.y44{bottom:242.502133pt;}
.yd2{bottom:242.566133pt;}
.y1f{bottom:243.691467pt;}
.y133{bottom:245.232800pt;}
.y110{bottom:246.566133pt;}
.yc5{bottom:248.566133pt;}
.ya7{bottom:249.899467pt;}
.y6f{bottom:252.566133pt;}
.yb1{bottom:253.706133pt;}
.y49{bottom:256.902133pt;}
.y84{bottom:259.232800pt;}
.y14e{bottom:260.224800pt;}
.y132{bottom:261.899467pt;}
.y10f{bottom:263.232800pt;}
.yc4{bottom:265.232800pt;}
.ya6{bottom:266.566133pt;}
.y4b{bottom:267.306133pt;}
.yb0{bottom:268.106133pt;}
.y1e{bottom:268.358133pt;}
.y6e{bottom:269.232800pt;}
.y83{bottom:275.899467pt;}
.y14d{bottom:276.758133pt;}
.y131{bottom:278.566133pt;}
.y10e{bottom:279.899467pt;}
.yc3{bottom:281.899467pt;}
.ydf{bottom:282.506133pt;}
.ya5{bottom:283.232800pt;}
.yec{bottom:284.566133pt;}
.y4a{bottom:285.702133pt;}
.y6d{bottom:285.899467pt;}
.yaf{bottom:286.502133pt;}
.y82{bottom:292.566133pt;}
.y1d{bottom:293.024800pt;}
.y14c{bottom:293.291467pt;}
.y130{bottom:295.232800pt;}
.y10d{bottom:296.566133pt;}
.yae{bottom:296.906133pt;}
.yc2{bottom:298.566133pt;}
.ya4{bottom:299.899467pt;}
.yeb{bottom:301.232800pt;}
.y6c{bottom:302.566133pt;}
.y81{bottom:309.232800pt;}
.y1c{bottom:309.691467pt;}
.y14b{bottom:309.824800pt;}
.ye5{bottom:311.306133pt;}
.y12f{bottom:311.899467pt;}
.yc1{bottom:315.232800pt;}
.yad{bottom:315.302133pt;}
.ya3{bottom:316.566133pt;}
.y10c{bottom:317.232800pt;}
.yea{bottom:317.899467pt;}
.y6b{bottom:319.232800pt;}
.y43{bottom:321.499467pt;}
.yde{bottom:325.706133pt;}
.yd1{bottom:325.899467pt;}
.y1b{bottom:326.358133pt;}
.y12e{bottom:328.566133pt;}
.yc0{bottom:331.899467pt;}
.ya2{bottom:333.232800pt;}
.y80{bottom:333.899467pt;}
.ye9{bottom:334.566133pt;}
.y6a{bottom:335.899467pt;}
.y42{bottom:338.699467pt;}
.ydd{bottom:340.106133pt;}
.yd0{bottom:342.566133pt;}
.y14a{bottom:342.891467pt;}
.y12d{bottom:345.232800pt;}
.ybf{bottom:348.566133pt;}
.ya1{bottom:349.899467pt;}
.y7f{bottom:350.566133pt;}
.y1a{bottom:351.024800pt;}
.ye8{bottom:351.232800pt;}
.y69{bottom:352.566133pt;}
.ydc{bottom:354.506133pt;}
.y10b{bottom:354.566133pt;}
.y41{bottom:355.899467pt;}
.ycf{bottom:359.232800pt;}
.y149{bottom:359.424800pt;}
.y12c{bottom:361.899467pt;}
.ya0{bottom:366.566133pt;}
.y19{bottom:367.691467pt;}
.ye7{bottom:367.899467pt;}
.ydb{bottom:368.906133pt;}
.y68{bottom:369.232800pt;}
.y10a{bottom:371.232800pt;}
.y40{bottom:373.099467pt;}
.yce{bottom:375.899467pt;}
.y148{bottom:375.958133pt;}
.y12b{bottom:378.566133pt;}
.y9f{bottom:383.232800pt;}
.yda{bottom:383.306133pt;}
.y18{bottom:384.358133pt;}
.y7e{bottom:384.566133pt;}
.y67{bottom:385.899467pt;}
.y109{bottom:387.899467pt;}
.y3f{bottom:390.299467pt;}
.y147{bottom:392.491467pt;}
.ycd{bottom:392.566133pt;}
.y12a{bottom:395.232800pt;}
.yd9{bottom:397.706133pt;}
.y9e{bottom:399.899467pt;}
.y17{bottom:401.024800pt;}
.y7d{bottom:401.232800pt;}
.y66{bottom:402.566133pt;}
.y3e{bottom:407.499467pt;}
.y108{bottom:408.566133pt;}
.y146{bottom:409.024800pt;}
.ycc{bottom:409.232800pt;}
.y129{bottom:411.899467pt;}
.yd8{bottom:412.106133pt;}
.y9d{bottom:416.566133pt;}
.y16{bottom:417.691467pt;}
.y7c{bottom:417.899467pt;}
.y65{bottom:419.232800pt;}
.y3d{bottom:424.699467pt;}
.y107{bottom:425.232800pt;}
.y145{bottom:425.558133pt;}
.ycb{bottom:425.899467pt;}
.yd7{bottom:426.506133pt;}
.y128{bottom:428.566133pt;}
.ybe{bottom:433.232800pt;}
.y15{bottom:434.358133pt;}
.y7b{bottom:434.566133pt;}
.y64{bottom:435.899467pt;}
.yd6{bottom:440.906133pt;}
.y3c{bottom:441.899467pt;}
.y144{bottom:442.091467pt;}
.y127{bottom:445.232800pt;}
.ybd{bottom:449.899467pt;}
.yca{bottom:450.566133pt;}
.y14{bottom:451.024800pt;}
.y7a{bottom:451.232800pt;}
.y63{bottom:452.566133pt;}
.yf4{bottom:453.899467pt;}
.yd5{bottom:455.306133pt;}
.y143{bottom:458.624800pt;}
.y3b{bottom:459.099467pt;}
.y126{bottom:461.899467pt;}
.y106{bottom:462.566133pt;}
.ybc{bottom:466.566133pt;}
.yc9{bottom:467.232800pt;}
.y13{bottom:467.691467pt;}
.y9c{bottom:467.899467pt;}
.y62{bottom:469.232800pt;}
.yd4{bottom:469.706133pt;}
.yf3{bottom:470.566133pt;}
.y142{bottom:475.158133pt;}
.y3a{bottom:476.299467pt;}
.y125{bottom:478.566133pt;}
.y105{bottom:479.232800pt;}
.ybb{bottom:483.232800pt;}
.y12{bottom:484.358133pt;}
.y9b{bottom:484.566133pt;}
.y61{bottom:485.899467pt;}
.yf2{bottom:487.232800pt;}
.yd3{bottom:488.102133pt;}
.y141{bottom:491.691467pt;}
.y39{bottom:493.499467pt;}
.y124{bottom:495.232800pt;}
.yba{bottom:499.899467pt;}
.y11{bottom:501.024800pt;}
.y9a{bottom:501.232800pt;}
.y60{bottom:502.566133pt;}
.yf1{bottom:503.899467pt;}
.y140{bottom:508.224800pt;}
.y38{bottom:510.699467pt;}
.y123{bottom:511.899467pt;}
.yb9{bottom:516.566133pt;}
.y10{bottom:517.691467pt;}
.y99{bottom:517.899467pt;}
.y5f{bottom:519.232800pt;}
.ye4{bottom:520.566133pt;}
.y13f{bottom:524.758133pt;}
.y37{bottom:527.899467pt;}
.y122{bottom:528.566133pt;}
.yb8{bottom:533.232800pt;}
.yf{bottom:534.358133pt;}
.y98{bottom:534.566133pt;}
.y5e{bottom:535.899467pt;}
.ye3{bottom:537.232800pt;}
.y13e{bottom:541.291467pt;}
.y121{bottom:545.232800pt;}
.y36{bottom:546.432800pt;}
.yb7{bottom:549.899467pt;}
.ye{bottom:551.024800pt;}
.y97{bottom:551.232800pt;}
.y5d{bottom:552.566133pt;}
.ye2{bottom:553.899467pt;}
.y13d{bottom:557.824800pt;}
.y120{bottom:561.899467pt;}
.y35{bottom:563.632800pt;}
.yb6{bottom:566.566133pt;}
.yd{bottom:567.691467pt;}
.y96{bottom:567.899467pt;}
.y5c{bottom:569.232800pt;}
.ye1{bottom:570.566133pt;}
.y13c{bottom:574.358133pt;}
.y11f{bottom:578.566133pt;}
.y34{bottom:580.832800pt;}
.y95{bottom:584.566133pt;}
.y5b{bottom:585.899467pt;}
.ye0{bottom:587.232800pt;}
.y13b{bottom:590.891467pt;}
.y104{bottom:591.232800pt;}
.y33{bottom:598.032800pt;}
.y94{bottom:601.232800pt;}
.y79{bottom:602.566133pt;}
.y11e{bottom:603.232800pt;}
.y5a{bottom:603.899467pt;}
.y13a{bottom:607.424800pt;}
.y103{bottom:607.899467pt;}
.y32{bottom:615.232800pt;}
.yc{bottom:617.691467pt;}
.yb5{bottom:617.899467pt;}
.y78{bottom:619.232800pt;}
.y59{bottom:620.566133pt;}
.y139{bottom:623.958133pt;}
.y102{bottom:624.566133pt;}
.y11d{bottom:631.899467pt;}
.y31{bottom:632.432800pt;}
.ye6{bottom:634.566133pt;}
.y93{bottom:635.899467pt;}
.y58{bottom:637.232800pt;}
.yb{bottom:637.691467pt;}
.y101{bottom:645.232800pt;}
.y138{bottom:648.491467pt;}
.y11c{bottom:648.566133pt;}
.y30{bottom:649.632800pt;}
.y92{bottom:652.566133pt;}
.y57{bottom:653.899467pt;}
.ya{bottom:657.691467pt;}
.y100{bottom:661.899467pt;}
.y11b{bottom:665.232800pt;}
.y2f{bottom:666.832800pt;}
.y91{bottom:669.232800pt;}
.y56{bottom:670.566133pt;}
.y137{bottom:671.691467pt;}
.yff{bottom:678.566133pt;}
.y2e{bottom:684.032800pt;}
.y90{bottom:685.899467pt;}
.y55{bottom:687.232800pt;}
.y136{bottom:688.358133pt;}
.yfe{bottom:695.232800pt;}
.y2d{bottom:701.232800pt;}
.y8f{bottom:702.566133pt;}
.y54{bottom:703.899467pt;}
.y135{bottom:705.024800pt;}
.y11a{bottom:712.566133pt;}
.y2c{bottom:718.432800pt;}
.y8e{bottom:719.232800pt;}
.yfd{bottom:719.899467pt;}
.y53{bottom:720.566133pt;}
.y119{bottom:729.232800pt;}
.y5{bottom:732.443467pt;}
.y2b{bottom:735.632800pt;}
.y8d{bottom:735.899467pt;}
.y52{bottom:737.232800pt;}
.y9{bottom:737.691467pt;}
.y118{bottom:749.899467pt;}
.y8c{bottom:752.566133pt;}
.y2a{bottom:752.832800pt;}
.y51{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y4{bottom:760.300800pt;}
.y29{bottom:770.032800pt;}
.y50{bottom:770.566133pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y28{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y27{bottom:820.263467pt;}
.hb{height:25.781625pt;}
.hd{height:37.125000pt;}
.h3{height:39.632812pt;}
.h9{height:41.593750pt;}
.hc{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.ha{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.x8{left:82.477867pt;}
.x10{left:85.816533pt;}
.xb{left:96.377867pt;}
.xf{left:103.956533pt;}
.xa{left:119.055200pt;}
.x9{left:126.131200pt;}
.x7{left:128.967200pt;}
.xd{left:250.963200pt;}
.x11{left:257.289867pt;}
.xe{left:284.736533pt;}
.x12{left:287.056533pt;}
.x5{left:394.097867pt;}
.x3{left:411.077867pt;}
.x4{left:424.507200pt;}
.x2{left:426.148533pt;}
.xc{left:442.085867pt;}
.x1{left:530.444533pt;}
}




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