
    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_490a0c0e81c7429f5c594359.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f1503fdb9298f0a87278ee57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48473b11d1d48caa0cbcdad1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_aee0d0593beed2092e6bc65f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_1a9f7e6ba45b44ba05e3c783.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_4466ba890116d6e625b156de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_04c364d19a1aa1a31e8c889a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.250560px;}
.ls1{letter-spacing:0.289438px;}
.ls5{letter-spacing:0.397461px;}
.ls2{letter-spacing:0.707048px;}
.ls6{letter-spacing:30.353778px;}
.ls4{letter-spacing:33.232051px;}
.ls7{letter-spacing:43.630294px;}
.ls0{letter-spacing:251.096942px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws6{word-spacing:-60.480000px;}
.ws0{word-spacing:-60.120000px;}
.ws1{word-spacing:-20.880000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.559850px;}
.ws2{word-spacing:-13.679850px;}
.ws3{word-spacing:0.000000px;}
._49{margin-left:-8.408335px;}
._19{margin-left:-7.174346px;}
._34{margin-left:-6.164530px;}
._13{margin-left:-5.156234px;}
._d{margin-left:-3.820233px;}
._7{margin-left:-2.395516px;}
._3{margin-left:-1.033573px;}
._5{width:1.158057px;}
._6{width:2.299287px;}
._16{width:3.535239px;}
._8{width:4.961423px;}
._1a{width:6.119098px;}
._9{width:7.153703px;}
._a{width:8.295861px;}
._b{width:9.489021px;}
._c{width:10.676161px;}
._1d{width:11.763660px;}
._1c{width:13.262374px;}
._15{width:14.759137px;}
._14{width:15.884498px;}
._21{width:16.912961px;}
._10{width:19.352788px;}
._4b{width:20.369371px;}
._1b{width:21.462895px;}
._27{width:23.447856px;}
._11{width:24.600816px;}
._12{width:25.824154px;}
._20{width:26.989224px;}
._1e{width:28.143657px;}
._1f{width:30.170278px;}
._e{width:31.261283px;}
._f{width:33.053230px;}
._48{width:34.118713px;}
._17{width:35.274449px;}
._18{width:36.719414px;}
._4a{width:47.014565px;}
._29{width:102.473135px;}
._2{width:107.870478px;}
._4{width:111.135519px;}
._2a{width:120.188509px;}
._0{width:137.260955px;}
._28{width:145.264640px;}
._2f{width:156.974452px;}
._1{width:161.870478px;}
._33{width:165.702594px;}
._3b{width:170.079038px;}
._37{width:172.431733px;}
._3f{width:182.951490px;}
._2d{width:188.441135px;}
._44{width:190.167315px;}
._43{width:193.045588px;}
._30{width:204.365459px;}
._36{width:210.235522px;}
._40{width:212.905856px;}
._2e{width:213.940203px;}
._47{width:215.784130px;}
._45{width:217.437576px;}
._3e{width:220.701096px;}
._41{width:237.658820px;}
._39{width:243.084549px;}
._3c{width:254.583733px;}
._38{width:261.061465px;}
._35{width:281.210274px;}
._31{width:290.141769px;}
._3d{width:297.069790px;}
._46{width:322.105449px;}
._42{width:324.007011px;}
._2b{width:329.102715px;}
._25{width:339.644292px;}
._24{width:349.219035px;}
._3a{width:375.506696px;}
._32{width:387.328419px;}
._2c{width:410.066960px;}
._26{width:425.420602px;}
._23{width:464.381547px;}
._22{width:630.522947px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.719400px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.400000px;}
.y2{bottom:35.640000px;}
.y22{bottom:50.040000px;}
.y20{bottom:93.960000px;}
.yda{bottom:95.040000px;}
.y8a{bottom:96.120000px;}
.yb3{bottom:99.720000px;}
.y6f{bottom:102.240000px;}
.y55{bottom:102.960000px;}
.y1f{bottom:117.720000px;}
.yf8{bottom:118.080000px;}
.yc4{bottom:119.520000px;}
.y89{bottom:120.960000px;}
.yb2{bottom:124.200000px;}
.y54{bottom:126.720000px;}
.yd9{bottom:133.560000px;}
.y3d{bottom:139.320000px;}
.y6e{bottom:141.120000px;}
.y1e{bottom:141.479850px;}
.yf7{bottom:141.840000px;}
.y9a{bottom:144.720000px;}
.y88{bottom:145.439850px;}
.yb1{bottom:147.960000px;}
.yd8{bottom:156.960000px;}
.yc3{bottom:158.400000px;}
.y3c{bottom:162.720000px;}
.y6d{bottom:164.520000px;}
.y53{bottom:165.600000px;}
.y99{bottom:168.480000px;}
.y87{bottom:169.920000px;}
.yb0{bottom:172.800000px;}
.y1d{bottom:180.720000px;}
.yd7{bottom:181.080000px;}
.y3b{bottom:186.480000px;}
.y6c{bottom:188.280000px;}
.yf6{bottom:189.360000px;}
.y86{bottom:194.400000px;}
.yaf{bottom:196.560000px;}
.yc2{bottom:197.640000px;}
.y1c{bottom:204.120000px;}
.yd6{bottom:204.840000px;}
.y52{bottom:205.200000px;}
.y98{bottom:207.720000px;}
.y3a{bottom:210.600000px;}
.y6b{bottom:212.040000px;}
.yf5{bottom:213.120000px;}
.y85{bottom:218.879850px;}
.yae{bottom:221.040000px;}
.y1b{bottom:227.879850px;}
.y97{bottom:231.120000px;}
.y6a{bottom:235.800000px;}
.yf4{bottom:236.879850px;}
.yd5{bottom:243.720000px;}
.yad{bottom:244.800000px;}
.y51{bottom:247.320000px;}
.y39{bottom:250.200000px;}
.y1a{bottom:252.000000px;}
.y96{bottom:254.879850px;}
.y84{bottom:258.840000px;}
.y69{bottom:259.920000px;}
.yf3{bottom:260.640000px;}
.yd4{bottom:267.480000px;}
.yc1{bottom:268.560000px;}
.yac{bottom:269.280000px;}
.y19{bottom:275.760000px;}
.y83{bottom:282.600000px;}
.yf2{bottom:284.400000px;}
.y50{bottom:286.200000px;}
.yd3{bottom:291.240000px;}
.y38{bottom:292.320000px;}
.yab{bottom:293.040000px;}
.y95{bottom:294.120000px;}
.y68{bottom:298.440000px;}
.y18{bottom:299.520000px;}
.y82{bottom:306.360000px;}
.yc0{bottom:307.440000px;}
.yf1{bottom:308.520000px;}
.y4f{bottom:309.600000px;}
.yd2{bottom:315.000000px;}
.y37{bottom:315.720000px;}
.y94{bottom:317.520000px;}
.y17{bottom:323.280000px;}
.yf0{bottom:332.280000px;}
.y67{bottom:337.680000px;}
.y36{bottom:339.480000px;}
.y93{bottom:341.280000px;}
.y81{bottom:344.520000px;}
.ybf{bottom:346.680000px;}
.y16{bottom:347.040000px;}
.y4e{bottom:348.840000px;}
.yd1{bottom:354.240000px;}
.yef{bottom:356.040000px;}
.y66{bottom:361.080000px;}
.y35{bottom:363.240000px;}
.yaa{bottom:365.040000px;}
.y80{bottom:367.560000px;}
.ybe{bottom:370.080000px;}
.y4d{bottom:372.240000px;}
.yd0{bottom:377.640000px;}
.yee{bottom:379.800000px;}
.y92{bottom:380.520000px;}
.y65{bottom:384.840000px;}
.y15{bottom:386.280000px;}
.y7f{bottom:392.040000px;}
.ybd{bottom:393.840000px;}
.ycf{bottom:401.400000px;}
.y34{bottom:402.480000px;}
.ya9{bottom:402.840000px;}
.yed{bottom:403.560000px;}
.y91{bottom:403.919850px;}
.y64{bottom:408.960000px;}
.y14{bottom:409.680000px;}
.y4c{bottom:411.480000px;}
.y7e{bottom:416.880000px;}
.yce{bottom:425.160000px;}
.y33{bottom:425.880000px;}
.yec{bottom:427.320000px;}
.y90{bottom:427.680000px;}
.ybc{bottom:432.720000px;}
.y13{bottom:433.440000px;}
.y4b{bottom:434.880000px;}
.y7d{bottom:441.360000px;}
.ya8{bottom:442.080000px;}
.y63{bottom:447.840000px;}
.ycd{bottom:448.919850px;}
.y32{bottom:450.000000px;}
.yeb{bottom:451.080000px;}
.y12{bottom:457.200000px;}
.y4a{bottom:458.640000px;}
.y7c{bottom:465.480000px;}
.y8f{bottom:466.560000px;}
.y62{bottom:471.240000px;}
.ybb{bottom:471.600000px;}
.y31{bottom:473.759850px;}
.yea{bottom:474.840000px;}
.y11{bottom:480.960000px;}
.ycc{bottom:488.160000px;}
.ya7{bottom:489.240000px;}
.y61{bottom:495.360000px;}
.y30{bottom:497.520000px;}
.y49{bottom:498.600000px;}
.ye9{bottom:498.960000px;}
.y10{bottom:504.720000px;}
.y7b{bottom:505.800000px;}
.ycb{bottom:511.560000px;}
.ya6{bottom:513.000000px;}
.y60{bottom:519.120000px;}
.y2f{bottom:521.280000px;}
.ye8{bottom:522.720000px;}
.yf{bottom:528.840000px;}
.y7a{bottom:529.200000px;}
.yca{bottom:535.320000px;}
.ya5{bottom:537.840000px;}
.y48{bottom:540.720000px;}
.y101{bottom:541.440000px;}
.y5f{bottom:542.880000px;}
.ye7{bottom:546.480000px;}
.ye{bottom:552.600000px;}
.y79{bottom:552.960000px;}
.yba{bottom:557.640000px;}
.yc9{bottom:559.080000px;}
.y2e{bottom:560.520000px;}
.ya4{bottom:562.320000px;}
.y47{bottom:564.120000px;}
.y100{bottom:565.200000px;}
.ye6{bottom:570.240000px;}
.yd{bottom:576.360000px;}
.y5e{bottom:581.759850px;}
.yc8{bottom:582.840000px;}
.y2d{bottom:583.919850px;}
.ya3{bottom:586.800000px;}
.y46{bottom:587.880000px;}
.yff{bottom:589.320000px;}
.y78{bottom:591.840000px;}
.y8e{bottom:592.200000px;}
.ye5{bottom:594.000000px;}
.yb9{bottom:596.880000px;}
.yc{bottom:600.120000px;}
.y2c{bottom:607.680000px;}
.ya2{bottom:610.560000px;}
.yfe{bottom:613.080000px;}
.y8d{bottom:615.600000px;}
.ye4{bottom:617.759850px;}
.yb8{bottom:620.280000px;}
.y5d{bottom:621.360000px;}
.yc7{bottom:622.080000px;}
.y45{bottom:627.840000px;}
.y77{bottom:631.080000px;}
.y2b{bottom:631.440000px;}
.ya1{bottom:635.040000px;}
.yfd{bottom:636.840000px;}
.y8c{bottom:639.360000px;}
.yb{bottom:640.080000px;}
.ye3{bottom:641.520000px;}
.yb7{bottom:644.040000px;}
.yc6{bottom:645.480000px;}
.y76{bottom:654.480000px;}
.y2a{bottom:655.200000px;}
.ya0{bottom:659.520000px;}
.yfc{bottom:660.600000px;}
.y5c{bottom:663.120000px;}
.ye2{bottom:665.280000px;}
.yc5{bottom:669.240000px;}
.y44{bottom:669.600000px;}
.y75{bottom:678.240000px;}
.yb6{bottom:682.920000px;}
.y9f{bottom:684.000000px;}
.yfb{bottom:684.360000px;}
.y8b{bottom:686.880000px;}
.ya{bottom:688.680000px;}
.ye1{bottom:689.040000px;}
.y43{bottom:693.000000px;}
.y29{bottom:695.160000px;}
.y74{bottom:702.000000px;}
.y5b{bottom:702.360000px;}
.y9e{bottom:707.760000px;}
.yfa{bottom:708.120000px;}
.y9{bottom:710.640000px;}
.ye0{bottom:713.160000px;}
.y42{bottom:717.120000px;}
.yb5{bottom:722.880000px;}
.y5a{bottom:725.760000px;}
.y8{bottom:726.120000px;}
.y9d{bottom:731.880000px;}
.ydf{bottom:736.920000px;}
.y28{bottom:737.280000px;}
.y73{bottom:741.240000px;}
.y59{bottom:749.520000px;}
.yf9{bottom:755.640000px;}
.y41{bottom:756.000000px;}
.y27{bottom:760.680000px;}
.y72{bottom:764.640000px;}
.yb4{bottom:765.000000px;}
.y9c{bottom:769.320000px;}
.y7{bottom:770.400000px;}
.y58{bottom:773.280000px;}
.y40{bottom:779.760000px;}
.yde{bottom:784.440000px;}
.y26{bottom:785.160000px;}
.y71{bottom:788.400000px;}
.y6{bottom:801.720000px;}
.y3f{bottom:803.519850px;}
.ydd{bottom:808.200000px;}
.y9b{bottom:809.280000px;}
.y57{bottom:812.160000px;}
.y3e{bottom:827.280000px;}
.y25{bottom:827.640000px;}
.y4{bottom:828.000000px;}
.ydc{bottom:831.960000px;}
.y3{bottom:833.400000px;}
.y70{bottom:835.920000px;}
.y24{bottom:851.040000px;}
.y56{bottom:851.400000px;}
.ydb{bottom:871.920000px;}
.y23{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y21{bottom:923.040000px;}
.h4{height:27.359850px;}
.h6{height:28.995469px;}
.h2{height:34.157813px;}
.hf{height:47.544882px;}
.h9{height:47.988281px;}
.he{height:48.796875px;}
.hc{height:49.042969px;}
.h8{height:49.992188px;}
.hb{height:51.679688px;}
.hd{height:52.031250px;}
.h7{height:56.604375px;}
.ha{height:57.990937px;}
.h3{height:65.387406px;}
.h5{height:75.965218px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w1{width:149.040000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.xc{left:108.000000px;}
.xb{left:113.400000px;}
.x3{left:154.800000px;}
.x12{left:162.360000px;}
.x5{left:163.440000px;}
.xd{left:166.680000px;}
.x9{left:176.400000px;}
.x6{left:191.520000px;}
.x13{left:196.200000px;}
.x11{left:209.879850px;}
.x8{left:219.600000px;}
.x7{left:257.760000px;}
.x14{left:285.480000px;}
.xe{left:337.680000px;}
.xa{left:338.760000px;}
.x15{left:386.640000px;}
.xf{left:452.520000px;}
.x16{left:509.400000px;}
.x10{left:591.480000px;}
.x17{left:599.400000px;}
.x4{left:606.960000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.222720pt;}
.ls1{letter-spacing:0.257278pt;}
.ls5{letter-spacing:0.353298pt;}
.ls2{letter-spacing:0.628487pt;}
.ls6{letter-spacing:26.981136pt;}
.ls4{letter-spacing:29.539601pt;}
.ls7{letter-spacing:38.782483pt;}
.ls0{letter-spacing:223.197282pt;}
.ws5{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.760000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.719867pt;}
.ws2{word-spacing:-12.159867pt;}
.ws3{word-spacing:0.000000pt;}
._49{margin-left:-7.474076pt;}
._19{margin-left:-6.377196pt;}
._34{margin-left:-5.479582pt;}
._13{margin-left:-4.583319pt;}
._d{margin-left:-3.395762pt;}
._7{margin-left:-2.129348pt;}
._3{margin-left:-0.918732pt;}
._5{width:1.029384pt;}
._6{width:2.043811pt;}
._16{width:3.142435pt;}
._8{width:4.410154pt;}
._1a{width:5.439198pt;}
._9{width:6.358847pt;}
._a{width:7.374098pt;}
._b{width:8.434686pt;}
._c{width:9.489921pt;}
._1d{width:10.456587pt;}
._1c{width:11.788777pt;}
._15{width:13.119232pt;}
._14{width:14.119554pt;}
._21{width:15.033743pt;}
._10{width:17.202479pt;}
._4b{width:18.106108pt;}
._1b{width:19.078129pt;}
._27{width:20.842538pt;}
._11{width:21.867392pt;}
._12{width:22.954803pt;}
._20{width:23.990421pt;}
._1e{width:25.016584pt;}
._1f{width:26.818025pt;}
._e{width:27.787807pt;}
._f{width:29.380649pt;}
._48{width:30.327745pt;}
._17{width:31.355066pt;}
._18{width:32.639479pt;}
._4a{width:41.790725pt;}
._29{width:91.087231pt;}
._2{width:95.884869pt;}
._4{width:98.787128pt;}
._2a{width:106.834230pt;}
._0{width:122.009738pt;}
._28{width:129.124125pt;}
._2f{width:139.532846pt;}
._1{width:143.884869pt;}
._33{width:147.291195pt;}
._3b{width:151.181368pt;}
._37{width:153.272651pt;}
._3f{width:162.623547pt;}
._2d{width:167.503231pt;}
._44{width:169.037614pt;}
._43{width:171.596079pt;}
._30{width:181.658186pt;}
._36{width:186.876020pt;}
._40{width:189.249650pt;}
._2e{width:190.169069pt;}
._47{width:191.808115pt;}
._45{width:193.277845pt;}
._3e{width:196.178752pt;}
._41{width:211.252285pt;}
._39{width:216.075155pt;}
._3c{width:226.296651pt;}
._38{width:232.054636pt;}
._35{width:249.964688pt;}
._31{width:257.903795pt;}
._3d{width:264.062036pt;}
._46{width:286.315955pt;}
._42{width:288.006232pt;}
._2b{width:292.535746pt;}
._25{width:301.906037pt;}
._24{width:310.416920pt;}
._3a{width:333.783730pt;}
._32{width:344.291928pt;}
._2c{width:364.503964pt;}
._26{width:378.151646pt;}
._23{width:412.783598pt;}
._22{width:560.464842pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.639467pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.800000pt;}
.y2{bottom:31.680000pt;}
.y22{bottom:44.480000pt;}
.y20{bottom:83.520000pt;}
.yda{bottom:84.480000pt;}
.y8a{bottom:85.440000pt;}
.yb3{bottom:88.640000pt;}
.y6f{bottom:90.880000pt;}
.y55{bottom:91.520000pt;}
.y1f{bottom:104.640000pt;}
.yf8{bottom:104.960000pt;}
.yc4{bottom:106.240000pt;}
.y89{bottom:107.520000pt;}
.yb2{bottom:110.400000pt;}
.y54{bottom:112.640000pt;}
.yd9{bottom:118.720000pt;}
.y3d{bottom:123.840000pt;}
.y6e{bottom:125.440000pt;}
.y1e{bottom:125.759867pt;}
.yf7{bottom:126.080000pt;}
.y9a{bottom:128.640000pt;}
.y88{bottom:129.279867pt;}
.yb1{bottom:131.520000pt;}
.yd8{bottom:139.520000pt;}
.yc3{bottom:140.800000pt;}
.y3c{bottom:144.640000pt;}
.y6d{bottom:146.240000pt;}
.y53{bottom:147.200000pt;}
.y99{bottom:149.760000pt;}
.y87{bottom:151.040000pt;}
.yb0{bottom:153.600000pt;}
.y1d{bottom:160.640000pt;}
.yd7{bottom:160.960000pt;}
.y3b{bottom:165.760000pt;}
.y6c{bottom:167.360000pt;}
.yf6{bottom:168.320000pt;}
.y86{bottom:172.800000pt;}
.yaf{bottom:174.720000pt;}
.yc2{bottom:175.680000pt;}
.y1c{bottom:181.440000pt;}
.yd6{bottom:182.080000pt;}
.y52{bottom:182.400000pt;}
.y98{bottom:184.640000pt;}
.y3a{bottom:187.200000pt;}
.y6b{bottom:188.480000pt;}
.yf5{bottom:189.440000pt;}
.y85{bottom:194.559867pt;}
.yae{bottom:196.480000pt;}
.y1b{bottom:202.559867pt;}
.y97{bottom:205.440000pt;}
.y6a{bottom:209.600000pt;}
.yf4{bottom:210.559867pt;}
.yd5{bottom:216.640000pt;}
.yad{bottom:217.600000pt;}
.y51{bottom:219.840000pt;}
.y39{bottom:222.400000pt;}
.y1a{bottom:224.000000pt;}
.y96{bottom:226.559867pt;}
.y84{bottom:230.080000pt;}
.y69{bottom:231.040000pt;}
.yf3{bottom:231.680000pt;}
.yd4{bottom:237.760000pt;}
.yc1{bottom:238.720000pt;}
.yac{bottom:239.360000pt;}
.y19{bottom:245.120000pt;}
.y83{bottom:251.200000pt;}
.yf2{bottom:252.800000pt;}
.y50{bottom:254.400000pt;}
.yd3{bottom:258.880000pt;}
.y38{bottom:259.840000pt;}
.yab{bottom:260.480000pt;}
.y95{bottom:261.440000pt;}
.y68{bottom:265.280000pt;}
.y18{bottom:266.240000pt;}
.y82{bottom:272.320000pt;}
.yc0{bottom:273.280000pt;}
.yf1{bottom:274.240000pt;}
.y4f{bottom:275.200000pt;}
.yd2{bottom:280.000000pt;}
.y37{bottom:280.640000pt;}
.y94{bottom:282.240000pt;}
.y17{bottom:287.360000pt;}
.yf0{bottom:295.360000pt;}
.y67{bottom:300.160000pt;}
.y36{bottom:301.760000pt;}
.y93{bottom:303.360000pt;}
.y81{bottom:306.240000pt;}
.ybf{bottom:308.160000pt;}
.y16{bottom:308.480000pt;}
.y4e{bottom:310.080000pt;}
.yd1{bottom:314.880000pt;}
.yef{bottom:316.480000pt;}
.y66{bottom:320.960000pt;}
.y35{bottom:322.880000pt;}
.yaa{bottom:324.480000pt;}
.y80{bottom:326.720000pt;}
.ybe{bottom:328.960000pt;}
.y4d{bottom:330.880000pt;}
.yd0{bottom:335.680000pt;}
.yee{bottom:337.600000pt;}
.y92{bottom:338.240000pt;}
.y65{bottom:342.080000pt;}
.y15{bottom:343.360000pt;}
.y7f{bottom:348.480000pt;}
.ybd{bottom:350.080000pt;}
.ycf{bottom:356.800000pt;}
.y34{bottom:357.760000pt;}
.ya9{bottom:358.080000pt;}
.yed{bottom:358.720000pt;}
.y91{bottom:359.039867pt;}
.y64{bottom:363.520000pt;}
.y14{bottom:364.160000pt;}
.y4c{bottom:365.760000pt;}
.y7e{bottom:370.560000pt;}
.yce{bottom:377.920000pt;}
.y33{bottom:378.560000pt;}
.yec{bottom:379.840000pt;}
.y90{bottom:380.160000pt;}
.ybc{bottom:384.640000pt;}
.y13{bottom:385.280000pt;}
.y4b{bottom:386.560000pt;}
.y7d{bottom:392.320000pt;}
.ya8{bottom:392.960000pt;}
.y63{bottom:398.080000pt;}
.ycd{bottom:399.039867pt;}
.y32{bottom:400.000000pt;}
.yeb{bottom:400.960000pt;}
.y12{bottom:406.400000pt;}
.y4a{bottom:407.680000pt;}
.y7c{bottom:413.760000pt;}
.y8f{bottom:414.720000pt;}
.y62{bottom:418.880000pt;}
.ybb{bottom:419.200000pt;}
.y31{bottom:421.119867pt;}
.yea{bottom:422.080000pt;}
.y11{bottom:427.520000pt;}
.ycc{bottom:433.920000pt;}
.ya7{bottom:434.880000pt;}
.y61{bottom:440.320000pt;}
.y30{bottom:442.240000pt;}
.y49{bottom:443.200000pt;}
.ye9{bottom:443.520000pt;}
.y10{bottom:448.640000pt;}
.y7b{bottom:449.600000pt;}
.ycb{bottom:454.720000pt;}
.ya6{bottom:456.000000pt;}
.y60{bottom:461.440000pt;}
.y2f{bottom:463.360000pt;}
.ye8{bottom:464.640000pt;}
.yf{bottom:470.080000pt;}
.y7a{bottom:470.400000pt;}
.yca{bottom:475.840000pt;}
.ya5{bottom:478.080000pt;}
.y48{bottom:480.640000pt;}
.y101{bottom:481.280000pt;}
.y5f{bottom:482.560000pt;}
.ye7{bottom:485.760000pt;}
.ye{bottom:491.200000pt;}
.y79{bottom:491.520000pt;}
.yba{bottom:495.680000pt;}
.yc9{bottom:496.960000pt;}
.y2e{bottom:498.240000pt;}
.ya4{bottom:499.840000pt;}
.y47{bottom:501.440000pt;}
.y100{bottom:502.400000pt;}
.ye6{bottom:506.880000pt;}
.yd{bottom:512.320000pt;}
.y5e{bottom:517.119867pt;}
.yc8{bottom:518.080000pt;}
.y2d{bottom:519.039867pt;}
.ya3{bottom:521.600000pt;}
.y46{bottom:522.560000pt;}
.yff{bottom:523.840000pt;}
.y78{bottom:526.080000pt;}
.y8e{bottom:526.400000pt;}
.ye5{bottom:528.000000pt;}
.yb9{bottom:530.560000pt;}
.yc{bottom:533.440000pt;}
.y2c{bottom:540.160000pt;}
.ya2{bottom:542.720000pt;}
.yfe{bottom:544.960000pt;}
.y8d{bottom:547.200000pt;}
.ye4{bottom:549.119867pt;}
.yb8{bottom:551.360000pt;}
.y5d{bottom:552.320000pt;}
.yc7{bottom:552.960000pt;}
.y45{bottom:558.080000pt;}
.y77{bottom:560.960000pt;}
.y2b{bottom:561.280000pt;}
.ya1{bottom:564.480000pt;}
.yfd{bottom:566.080000pt;}
.y8c{bottom:568.320000pt;}
.yb{bottom:568.960000pt;}
.ye3{bottom:570.240000pt;}
.yb7{bottom:572.480000pt;}
.yc6{bottom:573.760000pt;}
.y76{bottom:581.760000pt;}
.y2a{bottom:582.400000pt;}
.ya0{bottom:586.240000pt;}
.yfc{bottom:587.200000pt;}
.y5c{bottom:589.440000pt;}
.ye2{bottom:591.360000pt;}
.yc5{bottom:594.880000pt;}
.y44{bottom:595.200000pt;}
.y75{bottom:602.880000pt;}
.yb6{bottom:607.040000pt;}
.y9f{bottom:608.000000pt;}
.yfb{bottom:608.320000pt;}
.y8b{bottom:610.560000pt;}
.ya{bottom:612.160000pt;}
.ye1{bottom:612.480000pt;}
.y43{bottom:616.000000pt;}
.y29{bottom:617.920000pt;}
.y74{bottom:624.000000pt;}
.y5b{bottom:624.320000pt;}
.y9e{bottom:629.120000pt;}
.yfa{bottom:629.440000pt;}
.y9{bottom:631.680000pt;}
.ye0{bottom:633.920000pt;}
.y42{bottom:637.440000pt;}
.yb5{bottom:642.560000pt;}
.y5a{bottom:645.120000pt;}
.y8{bottom:645.440000pt;}
.y9d{bottom:650.560000pt;}
.ydf{bottom:655.040000pt;}
.y28{bottom:655.360000pt;}
.y73{bottom:658.880000pt;}
.y59{bottom:666.240000pt;}
.yf9{bottom:671.680000pt;}
.y41{bottom:672.000000pt;}
.y27{bottom:676.160000pt;}
.y72{bottom:679.680000pt;}
.yb4{bottom:680.000000pt;}
.y9c{bottom:683.840000pt;}
.y7{bottom:684.800000pt;}
.y58{bottom:687.360000pt;}
.y40{bottom:693.120000pt;}
.yde{bottom:697.280000pt;}
.y26{bottom:697.920000pt;}
.y71{bottom:700.800000pt;}
.y6{bottom:712.640000pt;}
.y3f{bottom:714.239867pt;}
.ydd{bottom:718.400000pt;}
.y9b{bottom:719.360000pt;}
.y57{bottom:721.920000pt;}
.y3e{bottom:735.360000pt;}
.y25{bottom:735.680000pt;}
.y4{bottom:736.000000pt;}
.ydc{bottom:739.520000pt;}
.y3{bottom:740.800000pt;}
.y70{bottom:743.040000pt;}
.y24{bottom:756.480000pt;}
.y56{bottom:756.800000pt;}
.ydb{bottom:775.040000pt;}
.y23{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y21{bottom:820.480000pt;}
.h4{height:24.319867pt;}
.h6{height:25.773750pt;}
.h2{height:30.362500pt;}
.hf{height:42.262117pt;}
.h9{height:42.656250pt;}
.he{height:43.375000pt;}
.hc{height:43.593750pt;}
.h8{height:44.437500pt;}
.hb{height:45.937500pt;}
.hd{height:46.250000pt;}
.h7{height:50.315000pt;}
.ha{height:51.547500pt;}
.h3{height:58.122139pt;}
.h5{height:67.524639pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w1{width:132.480000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.xc{left:96.000000pt;}
.xb{left:100.800000pt;}
.x3{left:137.600000pt;}
.x12{left:144.320000pt;}
.x5{left:145.280000pt;}
.xd{left:148.160000pt;}
.x9{left:156.800000pt;}
.x6{left:170.240000pt;}
.x13{left:174.400000pt;}
.x11{left:186.559867pt;}
.x8{left:195.200000pt;}
.x7{left:229.120000pt;}
.x14{left:253.760000pt;}
.xe{left:300.160000pt;}
.xa{left:301.120000pt;}
.x15{left:343.680000pt;}
.xf{left:402.240000pt;}
.x16{left:452.800000pt;}
.x10{left:525.760000pt;}
.x17{left:532.800000pt;}
.x4{left:539.520000pt;}
}




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