
    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_435b7e9ee51b6eedee612a63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a2c9ec365648ca3ca6713a86.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_25363a09562ef8938e7db006.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a00908c8e62a3ae98c0c889e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_c3ec70f5d61ae16de752dd7e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.720000px;}
.ls8{letter-spacing:4.311360px;}
.lse{letter-spacing:10.800000px;}
.lsd{letter-spacing:12.240000px;}
.ls1{letter-spacing:20.160000px;}
.ls6{letter-spacing:21.221280px;}
.ls3{letter-spacing:24.480000px;}
.ls16{letter-spacing:91.440000px;}
.ls14{letter-spacing:92.160000px;}
.ls13{letter-spacing:92.880000px;}
.ls15{letter-spacing:93.600000px;}
.ls12{letter-spacing:94.500000px;}
.ls11{letter-spacing:95.760000px;}
.ls17{letter-spacing:100.080000px;}
.ls1b{letter-spacing:121.277280px;}
.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;}
}
.ws3{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-9.728640px;}
.ws4{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-23.796000px;}
._d{margin-left:-10.264320px;}
._9{margin-left:-9.198720px;}
._1c{margin-left:-7.365360px;}
._17{margin-left:-6.268560px;}
._2{margin-left:-5.075280px;}
._3{margin-left:-3.316560px;}
._0{margin-left:-1.457280px;}
._1{width:1.305600px;}
._10{width:2.448000px;}
._15{width:3.456000px;}
._13{width:4.968000px;}
._14{width:6.840000px;}
._a{width:8.028000px;}
._12{width:10.080000px;}
._1a{width:11.088000px;}
._1b{width:12.168000px;}
._b{width:13.684560px;}
._c{width:15.178320px;}
._16{width:16.501680px;}
._4{width:19.692000px;}
._5{width:21.067680px;}
._1d{width:22.188960px;}
._e{width:23.764560px;}
._11{width:25.168320px;}
._1e{width:26.919360px;}
._25{width:27.987840px;}
._18{width:29.016000px;}
._19{width:30.024000px;}
._24{width:31.104000px;}
._1f{width:32.184000px;}
._20{width:33.192000px;}
._26{width:34.800000px;}
._27{width:35.880000px;}
._6{width:36.903120px;}
._23{width:38.480880px;}
._28{width:40.516560px;}
._2a{width:44.400000px;}
._21{width:45.864000px;}
._22{width:47.088000px;}
._2d{width:64.440000px;}
._2e{width:65.668560px;}
._7{width:73.728000px;}
._8{width:74.952000px;}
._29{width:82.008000px;}
._30{width:110.940480px;}
._2f{width:112.012560px;}
._31{width:113.376000px;}
._2b{width:160.344000px;}
._2c{width:161.940000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:59.436000px;}
.y4{bottom:81.216000px;}
.y3{bottom:100.476000px;}
.y2{bottom:119.556000px;}
.y1{bottom:138.456000px;}
.y71{bottom:156.630000px;}
.ybc{bottom:159.690000px;}
.y91{bottom:163.650000px;}
.ydb{bottom:169.590000px;}
.yfe{bottom:173.550000px;}
.y70{bottom:177.870000px;}
.y2e{bottom:178.230000px;}
.yc0{bottom:182.550000px;}
.ya7{bottom:183.090000px;}
.ybb{bottom:190.650000px;}
.y90{bottom:193.530000px;}
.yfd{bottom:195.870000px;}
.y2d{bottom:200.910000px;}
.yda{bottom:201.090000px;}
.y6b{bottom:202.530000px;}
.y6f{bottom:210.450000px;}
.ybf{bottom:213.510000px;}
.ya6{bottom:214.230000px;}
.y6e{bottom:217.290000px;}
.yfc{bottom:218.010000px;}
.y6a{bottom:219.270000px;}
.y4c{bottom:219.810000px;}
.yba{bottom:221.790000px;}
.y8f{bottom:224.670000px;}
.y2c{bottom:225.930000px;}
.yd9{bottom:230.790000px;}
.y69{bottom:236.190000px;}
.yfb{bottom:240.330000px;}
.y4b{bottom:243.030000px;}
.ybe{bottom:244.470000px;}
.ya5{bottom:245.190000px;}
.y2b{bottom:248.250000px;}
.y6d{bottom:250.410000px;}
.yb9{bottom:252.750000px;}
.y68{bottom:252.930000px;}
.yd8{bottom:253.470000px;}
.y8e{bottom:255.630000px;}
.y4a{bottom:259.950000px;}
.y2a{bottom:270.570000px;}
.yfa{bottom:271.650000px;}
.y67{bottom:272.190000px;}
.ybd{bottom:275.610000px;}
.yd7{bottom:276.150000px;}
.ya4{bottom:276.330000px;}
.y49{bottom:279.255000px;}
.yb8{bottom:283.935000px;}
.y8d{bottom:286.815000px;}
.y29{bottom:292.935000px;}
.yf9{bottom:301.575000px;}
.y66{bottom:306.615000px;}
.ya3{bottom:307.335000px;}
.yd6{bottom:307.695000px;}
.y48{bottom:313.635000px;}
.yb7{bottom:314.895000px;}
.y28{bottom:315.255000px;}
.y8c{bottom:317.775000px;}
.yf8{bottom:324.255000px;}
.yd5{bottom:337.395000px;}
.y27{bottom:337.755000px;}
.ya2{bottom:338.475000px;}
.y47{bottom:344.775000px;}
.yb6{bottom:346.035000px;}
.yf7{bottom:346.935000px;}
.y8b{bottom:348.915000px;}
.y26{bottom:360.075000px;}
.y65{bottom:368.715000px;}
.ya1{bottom:369.435000px;}
.y46{bottom:375.735000px;}
.yb5{bottom:376.995000px;}
.yf6{bottom:378.255000px;}
.y8a{bottom:379.875000px;}
.y25{bottom:382.395000px;}
.yd4{bottom:382.755000px;}
.y64{bottom:399.855000px;}
.ya0{bottom:400.755000px;}
.y24{bottom:404.715000px;}
.y45{bottom:406.875000px;}
.yb4{bottom:407.955000px;}
.y89{bottom:411.015000px;}
.yd3{bottom:411.195000px;}
.y23{bottom:427.035000px;}
.yf5{bottom:430.095000px;}
.y63{bottom:430.815000px;}
.y44{bottom:437.835000px;}
.yb3{bottom:439.095000px;}
.y9f{bottom:439.815000px;}
.y88{bottom:441.975000px;}
.yd2{bottom:443.415000px;}
.y22{bottom:449.355000px;}
.yf4{bottom:452.235000px;}
.y62{bottom:461.955000px;}
.y43{bottom:468.975000px;}
.yb2{bottom:470.055000px;}
.y21{bottom:471.675000px;}
.y87{bottom:473.115000px;}
.yd1{bottom:480.855000px;}
.yf3{bottom:483.735000px;}
.y9e{bottom:485.535000px;}
.y61{bottom:492.915000px;}
.y20{bottom:495.615000px;}
.y42{bottom:499.935000px;}
.yb1{bottom:501.195000px;}
.y86{bottom:504.075000px;}
.yd0{bottom:510.735000px;}
.yf2{bottom:513.435000px;}
.y9d{bottom:515.595000px;}
.y1f{bottom:517.215000px;}
.y60{bottom:524.055000px;}
.y41{bottom:531.075000px;}
.yb0{bottom:532.155000px;}
.y85{bottom:535.215000px;}
.yf1{bottom:536.115000px;}
.y1e{bottom:540.075000px;}
.ycf{bottom:541.875000px;}
.y9c{bottom:546.555000px;}
.y5f{bottom:555.015000px;}
.yf0{bottom:558.795000px;}
.y40{bottom:562.035000px;}
.y1d{bottom:562.395000px;}
.yaf{bottom:563.325000px;}
.y84{bottom:566.205000px;}
.yce{bottom:572.865000px;}
.y9b{bottom:577.725000px;}
.yef{bottom:581.505000px;}
.y1c{bottom:584.745000px;}
.y5e{bottom:586.185000px;}
.y3f{bottom:593.205000px;}
.yae{bottom:594.285000px;}
.y83{bottom:597.165000px;}
.ycd{bottom:604.005000px;}
.yee{bottom:604.365000px;}
.y1b{bottom:607.245000px;}
.y9a{bottom:608.685000px;}
.y5d{bottom:617.145000px;}
.y3e{bottom:624.165000px;}
.yad{bottom:625.425000px;}
.y82{bottom:628.305000px;}
.y1a{bottom:629.565000px;}
.yed{bottom:634.065000px;}
.ycc{bottom:634.965000px;}
.y99{bottom:639.825000px;}
.y5c{bottom:648.285000px;}
.y19{bottom:651.885000px;}
.y3d{bottom:655.305000px;}
.yac{bottom:656.385000px;}
.yec{bottom:656.745000px;}
.y81{bottom:659.265000px;}
.ycb{bottom:666.105000px;}
.y98{bottom:670.785000px;}
.y18{bottom:674.205000px;}
.y5b{bottom:679.245000px;}
.yeb{bottom:679.425000px;}
.y3c{bottom:686.265000px;}
.yab{bottom:687.525000px;}
.y80{bottom:690.405000px;}
.y17{bottom:696.525000px;}
.yca{bottom:697.065000px;}
.y97{bottom:701.925000px;}
.y5a{bottom:710.385000px;}
.yea{bottom:710.925000px;}
.y3b{bottom:717.405000px;}
.yaa{bottom:718.485000px;}
.y16{bottom:718.845000px;}
.y7f{bottom:721.365000px;}
.yc9{bottom:728.205000px;}
.y96{bottom:732.885000px;}
.ye9{bottom:740.625000px;}
.y15{bottom:741.165000px;}
.y59{bottom:741.345000px;}
.y3a{bottom:748.365000px;}
.ya9{bottom:749.625000px;}
.y7e{bottom:752.505000px;}
.yc8{bottom:759.165000px;}
.ye8{bottom:763.305000px;}
.y14{bottom:763.485000px;}
.y95{bottom:764.025000px;}
.y58{bottom:772.485000px;}
.ya8{bottom:776.445000px;}
.y39{bottom:779.505000px;}
.y7d{bottom:783.465000px;}
.y13{bottom:785.805000px;}
.ye7{bottom:785.985000px;}
.yc7{bottom:790.305000px;}
.y94{bottom:794.985000px;}
.y57{bottom:803.445000px;}
.y12{bottom:808.125000px;}
.y6c{bottom:810.285000px;}
.y38{bottom:810.465000px;}
.y7c{bottom:814.605000px;}
.ye6{bottom:817.485000px;}
.yc6{bottom:821.265000px;}
.y93{bottom:823.605000px;}
.y11{bottom:830.985000px;}
.y56{bottom:834.585000px;}
.y37{bottom:841.605000px;}
.y7b{bottom:845.565000px;}
.ye5{bottom:847.230000px;}
.y92{bottom:847.770000px;}
.y10{bottom:852.270000px;}
.yc5{bottom:852.450000px;}
.y109{bottom:856.590000px;}
.y55{bottom:865.590000px;}
.ye4{bottom:869.910000px;}
.y36{bottom:872.610000px;}
.yf{bottom:874.590000px;}
.y7a{bottom:876.750000px;}
.yc4{bottom:883.410000px;}
.y108{bottom:886.290000px;}
.ye3{bottom:892.590000px;}
.y54{bottom:896.730000px;}
.ye{bottom:897.450000px;}
.y35{bottom:903.570000px;}
.y79{bottom:907.710000px;}
.y107{bottom:908.970000px;}
.yc3{bottom:914.730000px;}
.yd{bottom:918.690000px;}
.ye2{bottom:924.090000px;}
.y53{bottom:927.690000px;}
.y106{bottom:931.650000px;}
.y34{bottom:934.710000px;}
.y78{bottom:938.850000px;}
.yc{bottom:941.010000px;}
.yc2{bottom:946.950000px;}
.ye1{bottom:953.970000px;}
.y105{bottom:954.330000px;}
.y52{bottom:958.830000px;}
.yb{bottom:963.870000px;}
.y33{bottom:965.670000px;}
.y77{bottom:969.810000px;}
.ye0{bottom:976.650000px;}
.y104{bottom:985.830000px;}
.ya{bottom:987.090000px;}
.y51{bottom:989.790000px;}
.yc1{bottom:990.870000px;}
.y32{bottom:996.810000px;}
.ydf{bottom:999.330000px;}
.y76{bottom:1001.130000px;}
.y103{bottom:1015.530000px;}
.y9{bottom:1017.330000px;}
.y50{bottom:1020.930000px;}
.y31{bottom:1027.770000px;}
.yde{bottom:1030.650000px;}
.y102{bottom:1038.210000px;}
.y75{bottom:1043.250000px;}
.y8{bottom:1048.290000px;}
.y4f{bottom:1051.890000px;}
.y30{bottom:1058.910000px;}
.ydd{bottom:1060.530000px;}
.y101{bottom:1060.890000px;}
.y74{bottom:1077.630000px;}
.y7{bottom:1078.710000px;}
.y4e{bottom:1083.030000px;}
.ydc{bottom:1083.210000px;}
.y100{bottom:1083.570000px;}
.y73{bottom:1100.850000px;}
.y6{bottom:1108.410000px;}
.y2f{bottom:1111.110000px;}
.y4d{bottom:1113.990000px;}
.yff{bottom:1115.070000px;}
.y72{bottom:1119.390000px;}
.hc{height:34.855313px;}
.hd{height:43.246406px;}
.he{height:53.573906px;}
.h2{height:59.383125px;}
.h9{height:62.824219px;}
.h8{height:63.949219px;}
.h7{height:64.546875px;}
.h3{height:65.884219px;}
.hb{height:70.606406px;}
.ha{height:74.820586px;}
.h6{height:75.519844px;}
.h4{height:85.052461px;}
.h5{height:95.245664px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:893.250000px;}
.w3{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x18{left:125.495987px;}
.x1{left:126.575987px;}
.x3{left:127.655987px;}
.xf{left:133.775987px;}
.xc{left:135.215987px;}
.x4{left:152.849987px;}
.xa{left:154.469987px;}
.x10{left:162.929987px;}
.x7{left:169.049987px;}
.x8{left:170.129987px;}
.x11{left:179.489987px;}
.x2{left:181.109987px;}
.x9{left:197.129987px;}
.x14{left:217.829987px;}
.x17{left:229.709987px;}
.x5{left:304.274987px;}
.xb{left:343.694987px;}
.x16{left:368.714987px;}
.x13{left:374.294987px;}
.xd{left:392.294973px;}
.xe{left:398.414987px;}
.x6{left:470.264987px;}
.x12{left:660.929987px;}
.x15{left:781.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls8{letter-spacing:3.832320pt;}
.lse{letter-spacing:9.600000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls1{letter-spacing:17.920000pt;}
.ls6{letter-spacing:18.863360pt;}
.ls3{letter-spacing:21.760000pt;}
.ls16{letter-spacing:81.280000pt;}
.ls14{letter-spacing:81.920000pt;}
.ls13{letter-spacing:82.560000pt;}
.ls15{letter-spacing:83.200000pt;}
.ls12{letter-spacing:84.000000pt;}
.ls11{letter-spacing:85.120000pt;}
.ls17{letter-spacing:88.960000pt;}
.ls1b{letter-spacing:107.802027pt;}
.ws3{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-8.647680pt;}
.ws4{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-21.152000pt;}
._d{margin-left:-9.123840pt;}
._9{margin-left:-8.176640pt;}
._1c{margin-left:-6.546987pt;}
._17{margin-left:-5.572053pt;}
._2{margin-left:-4.511360pt;}
._3{margin-left:-2.948053pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.160533pt;}
._10{width:2.176000pt;}
._15{width:3.072000pt;}
._13{width:4.416000pt;}
._14{width:6.080000pt;}
._a{width:7.136000pt;}
._12{width:8.960000pt;}
._1a{width:9.856000pt;}
._1b{width:10.816000pt;}
._b{width:12.164053pt;}
._c{width:13.491840pt;}
._16{width:14.668160pt;}
._4{width:17.504000pt;}
._5{width:18.726827pt;}
._1d{width:19.723520pt;}
._e{width:21.124053pt;}
._11{width:22.371840pt;}
._1e{width:23.928320pt;}
._25{width:24.878080pt;}
._18{width:25.792000pt;}
._19{width:26.688000pt;}
._24{width:27.648000pt;}
._1f{width:28.608000pt;}
._20{width:29.504000pt;}
._26{width:30.933333pt;}
._27{width:31.893333pt;}
._6{width:32.802773pt;}
._23{width:34.205227pt;}
._28{width:36.014720pt;}
._2a{width:39.466667pt;}
._21{width:40.768000pt;}
._22{width:41.856000pt;}
._2d{width:57.280000pt;}
._2e{width:58.372053pt;}
._7{width:65.536000pt;}
._8{width:66.624000pt;}
._29{width:72.896000pt;}
._30{width:98.613760pt;}
._2f{width:99.566720pt;}
._31{width:100.778667pt;}
._2b{width:142.528000pt;}
._2c{width:143.946667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:52.832000pt;}
.y4{bottom:72.192000pt;}
.y3{bottom:89.312000pt;}
.y2{bottom:106.272000pt;}
.y1{bottom:123.072000pt;}
.y71{bottom:139.226667pt;}
.ybc{bottom:141.946667pt;}
.y91{bottom:145.466667pt;}
.ydb{bottom:150.746667pt;}
.yfe{bottom:154.266667pt;}
.y70{bottom:158.106667pt;}
.y2e{bottom:158.426667pt;}
.yc0{bottom:162.266667pt;}
.ya7{bottom:162.746667pt;}
.ybb{bottom:169.466667pt;}
.y90{bottom:172.026667pt;}
.yfd{bottom:174.106667pt;}
.y2d{bottom:178.586667pt;}
.yda{bottom:178.746667pt;}
.y6b{bottom:180.026667pt;}
.y6f{bottom:187.066667pt;}
.ybf{bottom:189.786667pt;}
.ya6{bottom:190.426667pt;}
.y6e{bottom:193.146667pt;}
.yfc{bottom:193.786667pt;}
.y6a{bottom:194.906667pt;}
.y4c{bottom:195.386667pt;}
.yba{bottom:197.146667pt;}
.y8f{bottom:199.706667pt;}
.y2c{bottom:200.826667pt;}
.yd9{bottom:205.146667pt;}
.y69{bottom:209.946667pt;}
.yfb{bottom:213.626667pt;}
.y4b{bottom:216.026667pt;}
.ybe{bottom:217.306667pt;}
.ya5{bottom:217.946667pt;}
.y2b{bottom:220.666667pt;}
.y6d{bottom:222.586667pt;}
.yb9{bottom:224.666667pt;}
.y68{bottom:224.826667pt;}
.yd8{bottom:225.306667pt;}
.y8e{bottom:227.226667pt;}
.y4a{bottom:231.066667pt;}
.y2a{bottom:240.506667pt;}
.yfa{bottom:241.466667pt;}
.y67{bottom:241.946667pt;}
.ybd{bottom:244.986667pt;}
.yd7{bottom:245.466667pt;}
.ya4{bottom:245.626667pt;}
.y49{bottom:248.226667pt;}
.yb8{bottom:252.386667pt;}
.y8d{bottom:254.946667pt;}
.y29{bottom:260.386667pt;}
.yf9{bottom:268.066667pt;}
.y66{bottom:272.546667pt;}
.ya3{bottom:273.186667pt;}
.yd6{bottom:273.506667pt;}
.y48{bottom:278.786667pt;}
.yb7{bottom:279.906667pt;}
.y28{bottom:280.226667pt;}
.y8c{bottom:282.466667pt;}
.yf8{bottom:288.226667pt;}
.yd5{bottom:299.906667pt;}
.y27{bottom:300.226667pt;}
.ya2{bottom:300.866667pt;}
.y47{bottom:306.466667pt;}
.yb6{bottom:307.586667pt;}
.yf7{bottom:308.386667pt;}
.y8b{bottom:310.146667pt;}
.y26{bottom:320.066667pt;}
.y65{bottom:327.746667pt;}
.ya1{bottom:328.386667pt;}
.y46{bottom:333.986667pt;}
.yb5{bottom:335.106667pt;}
.yf6{bottom:336.226667pt;}
.y8a{bottom:337.666667pt;}
.y25{bottom:339.906667pt;}
.yd4{bottom:340.226667pt;}
.y64{bottom:355.426667pt;}
.ya0{bottom:356.226667pt;}
.y24{bottom:359.746667pt;}
.y45{bottom:361.666667pt;}
.yb4{bottom:362.626667pt;}
.y89{bottom:365.346667pt;}
.yd3{bottom:365.506667pt;}
.y23{bottom:379.586667pt;}
.yf5{bottom:382.306667pt;}
.y63{bottom:382.946667pt;}
.y44{bottom:389.186667pt;}
.yb3{bottom:390.306667pt;}
.y9f{bottom:390.946667pt;}
.y88{bottom:392.866667pt;}
.yd2{bottom:394.146667pt;}
.y22{bottom:399.426667pt;}
.yf4{bottom:401.986667pt;}
.y62{bottom:410.626667pt;}
.y43{bottom:416.866667pt;}
.yb2{bottom:417.826667pt;}
.y21{bottom:419.266667pt;}
.y87{bottom:420.546667pt;}
.yd1{bottom:427.426667pt;}
.yf3{bottom:429.986667pt;}
.y9e{bottom:431.586667pt;}
.y61{bottom:438.146667pt;}
.y20{bottom:440.546667pt;}
.y42{bottom:444.386667pt;}
.yb1{bottom:445.506667pt;}
.y86{bottom:448.066667pt;}
.yd0{bottom:453.986667pt;}
.yf2{bottom:456.386667pt;}
.y9d{bottom:458.306667pt;}
.y1f{bottom:459.746667pt;}
.y60{bottom:465.826667pt;}
.y41{bottom:472.066667pt;}
.yb0{bottom:473.026667pt;}
.y85{bottom:475.746667pt;}
.yf1{bottom:476.546667pt;}
.y1e{bottom:480.066667pt;}
.ycf{bottom:481.666667pt;}
.y9c{bottom:485.826667pt;}
.y5f{bottom:493.346667pt;}
.yf0{bottom:496.706667pt;}
.y40{bottom:499.586667pt;}
.y1d{bottom:499.906667pt;}
.yaf{bottom:500.733333pt;}
.y84{bottom:503.293333pt;}
.yce{bottom:509.213333pt;}
.y9b{bottom:513.533333pt;}
.yef{bottom:516.893333pt;}
.y1c{bottom:519.773333pt;}
.y5e{bottom:521.053333pt;}
.y3f{bottom:527.293333pt;}
.yae{bottom:528.253333pt;}
.y83{bottom:530.813333pt;}
.ycd{bottom:536.893333pt;}
.yee{bottom:537.213333pt;}
.y1b{bottom:539.773333pt;}
.y9a{bottom:541.053333pt;}
.y5d{bottom:548.573333pt;}
.y3e{bottom:554.813333pt;}
.yad{bottom:555.933333pt;}
.y82{bottom:558.493333pt;}
.y1a{bottom:559.613333pt;}
.yed{bottom:563.613333pt;}
.ycc{bottom:564.413333pt;}
.y99{bottom:568.733333pt;}
.y5c{bottom:576.253333pt;}
.y19{bottom:579.453333pt;}
.y3d{bottom:582.493333pt;}
.yac{bottom:583.453333pt;}
.yec{bottom:583.773333pt;}
.y81{bottom:586.013333pt;}
.ycb{bottom:592.093333pt;}
.y98{bottom:596.253333pt;}
.y18{bottom:599.293333pt;}
.y5b{bottom:603.773333pt;}
.yeb{bottom:603.933333pt;}
.y3c{bottom:610.013333pt;}
.yab{bottom:611.133333pt;}
.y80{bottom:613.693333pt;}
.y17{bottom:619.133333pt;}
.yca{bottom:619.613333pt;}
.y97{bottom:623.933333pt;}
.y5a{bottom:631.453333pt;}
.yea{bottom:631.933333pt;}
.y3b{bottom:637.693333pt;}
.yaa{bottom:638.653333pt;}
.y16{bottom:638.973333pt;}
.y7f{bottom:641.213333pt;}
.yc9{bottom:647.293333pt;}
.y96{bottom:651.453333pt;}
.ye9{bottom:658.333333pt;}
.y15{bottom:658.813333pt;}
.y59{bottom:658.973333pt;}
.y3a{bottom:665.213333pt;}
.ya9{bottom:666.333333pt;}
.y7e{bottom:668.893333pt;}
.yc8{bottom:674.813333pt;}
.ye8{bottom:678.493333pt;}
.y14{bottom:678.653333pt;}
.y95{bottom:679.133333pt;}
.y58{bottom:686.653333pt;}
.ya8{bottom:690.173333pt;}
.y39{bottom:692.893333pt;}
.y7d{bottom:696.413333pt;}
.y13{bottom:698.493333pt;}
.ye7{bottom:698.653333pt;}
.yc7{bottom:702.493333pt;}
.y94{bottom:706.653333pt;}
.y57{bottom:714.173333pt;}
.y12{bottom:718.333333pt;}
.y6c{bottom:720.253333pt;}
.y38{bottom:720.413333pt;}
.y7c{bottom:724.093333pt;}
.ye6{bottom:726.653333pt;}
.yc6{bottom:730.013333pt;}
.y93{bottom:732.093333pt;}
.y11{bottom:738.653333pt;}
.y56{bottom:741.853333pt;}
.y37{bottom:748.093333pt;}
.y7b{bottom:751.613333pt;}
.ye5{bottom:753.093333pt;}
.y92{bottom:753.573333pt;}
.y10{bottom:757.573333pt;}
.yc5{bottom:757.733333pt;}
.y109{bottom:761.413333pt;}
.y55{bottom:769.413333pt;}
.ye4{bottom:773.253333pt;}
.y36{bottom:775.653333pt;}
.yf{bottom:777.413333pt;}
.y7a{bottom:779.333333pt;}
.yc4{bottom:785.253333pt;}
.y108{bottom:787.813333pt;}
.ye3{bottom:793.413333pt;}
.y54{bottom:797.093333pt;}
.ye{bottom:797.733333pt;}
.y35{bottom:803.173333pt;}
.y79{bottom:806.853333pt;}
.y107{bottom:807.973333pt;}
.yc3{bottom:813.093333pt;}
.yd{bottom:816.613333pt;}
.ye2{bottom:821.413333pt;}
.y53{bottom:824.613333pt;}
.y106{bottom:828.133333pt;}
.y34{bottom:830.853333pt;}
.y78{bottom:834.533333pt;}
.yc{bottom:836.453333pt;}
.yc2{bottom:841.733333pt;}
.ye1{bottom:847.973333pt;}
.y105{bottom:848.293333pt;}
.y52{bottom:852.293333pt;}
.yb{bottom:856.773333pt;}
.y33{bottom:858.373333pt;}
.y77{bottom:862.053333pt;}
.ye0{bottom:868.133333pt;}
.y104{bottom:876.293333pt;}
.ya{bottom:877.413333pt;}
.y51{bottom:879.813333pt;}
.yc1{bottom:880.773333pt;}
.y32{bottom:886.053333pt;}
.ydf{bottom:888.293333pt;}
.y76{bottom:889.893333pt;}
.y103{bottom:902.693333pt;}
.y9{bottom:904.293333pt;}
.y50{bottom:907.493333pt;}
.y31{bottom:913.573333pt;}
.yde{bottom:916.133333pt;}
.y102{bottom:922.853333pt;}
.y75{bottom:927.333333pt;}
.y8{bottom:931.813333pt;}
.y4f{bottom:935.013333pt;}
.y30{bottom:941.253333pt;}
.ydd{bottom:942.693333pt;}
.y101{bottom:943.013333pt;}
.y74{bottom:957.893333pt;}
.y7{bottom:958.853333pt;}
.y4e{bottom:962.693333pt;}
.ydc{bottom:962.853333pt;}
.y100{bottom:963.173333pt;}
.y73{bottom:978.533333pt;}
.y6{bottom:985.253333pt;}
.y2f{bottom:987.653333pt;}
.y4d{bottom:990.213333pt;}
.yff{bottom:991.173333pt;}
.y72{bottom:995.013333pt;}
.hc{height:30.982500pt;}
.hd{height:38.441250pt;}
.he{height:47.621250pt;}
.h2{height:52.785000pt;}
.h9{height:55.843750pt;}
.h8{height:56.843750pt;}
.h7{height:57.375000pt;}
.h3{height:58.563750pt;}
.hb{height:62.761250pt;}
.ha{height:66.507188pt;}
.h6{height:67.128750pt;}
.h4{height:75.602187pt;}
.h5{height:84.662813pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x18{left:111.551988pt;}
.x1{left:112.511988pt;}
.x3{left:113.471988pt;}
.xf{left:118.911988pt;}
.xc{left:120.191988pt;}
.x4{left:135.866655pt;}
.xa{left:137.306655pt;}
.x10{left:144.826655pt;}
.x7{left:150.266655pt;}
.x8{left:151.226655pt;}
.x11{left:159.546655pt;}
.x2{left:160.986655pt;}
.x9{left:175.226655pt;}
.x14{left:193.626655pt;}
.x17{left:204.186655pt;}
.x5{left:270.466655pt;}
.xb{left:305.506655pt;}
.x16{left:327.746655pt;}
.x13{left:332.706655pt;}
.xd{left:348.706643pt;}
.xe{left:354.146655pt;}
.x6{left:418.013321pt;}
.x12{left:587.493322pt;}
.x15{left:694.239988pt;}
}




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