
    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_e4845720dfee4fa1e720a94a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_8652cd6c9f4b36e64672c60a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965332;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_04f8c9f0fcbf98ad17ab3fcb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_5fe19467f2ee3332b615dd39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.824707;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_97beb63711636449b0d09bd5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_d524dd4604fa3c19df8c123d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-26.640000px;}
.v2{vertical-align:-4.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.ls6{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.009000px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:4.200000px;}
.ls9{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.lsa{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.lsb{letter-spacing:19.800000px;}
.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:-43.200000px;}
.ws8{word-spacing:-22.860000px;}
.ws6{word-spacing:-20.232000px;}
.ws4{word-spacing:-19.512000px;}
.ws2{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.424000px;}
.ws5{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.860000px;}
.ws9{word-spacing:-16.302000px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-20.688000px;}
._15{margin-left:-19.436000px;}
._14{margin-left:-14.616000px;}
._17{margin-left:-13.480000px;}
._16{margin-left:-11.880000px;}
._4{margin-left:-10.608000px;}
._5{margin-left:-9.486000px;}
._f{margin-left:-7.776000px;}
._3{margin-left:-6.594000px;}
._1{margin-left:-5.456000px;}
._0{margin-left:-3.570000px;}
._2{margin-left:-1.872000px;}
._7{width:1.368000px;}
._a{width:3.096000px;}
._d{width:4.218000px;}
._9{width:5.256000px;}
._b{width:6.840000px;}
._c{width:8.640000px;}
._8{width:10.496000px;}
._6{width:12.456000px;}
._10{width:13.680000px;}
._18{width:15.264000px;}
._11{width:17.280000px;}
._e{width:19.008000px;}
._19{width:21.240000px;}
._12{width:37.277400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:76.339050px;}
.y1{bottom:76.339350px;}
.y69{bottom:76.339800px;}
.yfa{bottom:144.930000px;}
.y45{bottom:145.135800px;}
.yd6{bottom:145.164000px;}
.y68{bottom:145.254000px;}
.y11c{bottom:145.272600px;}
.y1f{bottom:147.300600px;}
.y8e{bottom:150.114600px;}
.yb1{bottom:150.924600px;}
.yd5{bottom:166.314000px;}
.yf9{bottom:166.674000px;}
.y67{bottom:167.610000px;}
.y11b{bottom:167.628600px;}
.y44{bottom:168.297300px;}
.y1e{bottom:169.206600px;}
.y8d{bottom:171.714600px;}
.yb0{bottom:173.118600px;}
.yd4{bottom:187.464000px;}
.yf8{bottom:188.418000px;}
.y66{bottom:189.966000px;}
.y11a{bottom:189.984600px;}
.y1d{bottom:191.112600px;}
.y8c{bottom:193.314600px;}
.yaf{bottom:195.312600px;}
.y43{bottom:203.718000px;}
.yd3{bottom:208.614000px;}
.yf7{bottom:210.162000px;}
.y65{bottom:212.322000px;}
.y119{bottom:212.340600px;}
.y1c{bottom:213.018600px;}
.y8b{bottom:214.914600px;}
.yae{bottom:217.506600px;}
.y13a{bottom:217.901850px;}
.y42{bottom:225.012000px;}
.yd2{bottom:229.764000px;}
.yf6{bottom:231.906000px;}
.y64{bottom:234.678000px;}
.y118{bottom:234.696600px;}
.y1b{bottom:234.924600px;}
.y139{bottom:235.901850px;}
.y8a{bottom:236.514600px;}
.yad{bottom:239.700600px;}
.y41{bottom:246.306000px;}
.yd1{bottom:250.914000px;}
.yf5{bottom:253.650000px;}
.y138{bottom:253.901850px;}
.y1a{bottom:256.830600px;}
.y63{bottom:257.034000px;}
.y117{bottom:257.052600px;}
.y89{bottom:258.114600px;}
.yac{bottom:261.894600px;}
.y40{bottom:267.600000px;}
.y137{bottom:271.901850px;}
.yd0{bottom:272.064000px;}
.yf4{bottom:275.394000px;}
.y19{bottom:278.736600px;}
.y62{bottom:279.390000px;}
.y116{bottom:279.408600px;}
.y88{bottom:279.714600px;}
.yab{bottom:284.088600px;}
.y3f{bottom:288.894000px;}
.ycf{bottom:293.214000px;}
.yf3{bottom:297.138000px;}
.y18{bottom:300.642600px;}
.y87{bottom:301.314600px;}
.y61{bottom:301.746000px;}
.y115{bottom:301.764600px;}
.yaa{bottom:306.282600px;}
.y3e{bottom:310.188000px;}
.yce{bottom:314.364000px;}
.yf2{bottom:318.882000px;}
.y17{bottom:322.548600px;}
.y86{bottom:322.914600px;}
.y60{bottom:324.102000px;}
.y114{bottom:324.120600px;}
.ya9{bottom:328.476600px;}
.y136{bottom:328.601850px;}
.y3d{bottom:331.482000px;}
.ycd{bottom:335.514000px;}
.yf1{bottom:340.626000px;}
.y16{bottom:344.454600px;}
.y85{bottom:344.514600px;}
.y5f{bottom:346.458000px;}
.y113{bottom:346.476600px;}
.y135{bottom:348.401850px;}
.ya8{bottom:350.670600px;}
.y3c{bottom:352.776000px;}
.ycc{bottom:356.664000px;}
.yf0{bottom:362.370000px;}
.y84{bottom:366.114600px;}
.y15{bottom:366.360600px;}
.y134{bottom:368.201850px;}
.y5e{bottom:368.814000px;}
.y112{bottom:368.832600px;}
.ya7{bottom:372.864600px;}
.y3b{bottom:374.070000px;}
.ycb{bottom:377.814000px;}
.yef{bottom:384.114000px;}
.y83{bottom:387.714600px;}
.y133{bottom:388.001850px;}
.y14{bottom:388.266600px;}
.y5d{bottom:391.170000px;}
.y111{bottom:391.188600px;}
.ya6{bottom:395.058600px;}
.y3a{bottom:395.364000px;}
.yca{bottom:398.964000px;}
.yee{bottom:405.858000px;}
.y132{bottom:407.801850px;}
.y82{bottom:409.314600px;}
.y13{bottom:410.172600px;}
.y5c{bottom:413.526000px;}
.y110{bottom:413.544600px;}
.y39{bottom:416.658000px;}
.ya5{bottom:417.252600px;}
.yc9{bottom:420.114000px;}
.y131{bottom:427.601850px;}
.yed{bottom:427.602000px;}
.y81{bottom:430.914600px;}
.y12{bottom:432.078600px;}
.y5b{bottom:435.882000px;}
.y10f{bottom:435.900600px;}
.y38{bottom:437.952000px;}
.ya4{bottom:439.446600px;}
.yc8{bottom:441.264000px;}
.y130{bottom:447.401850px;}
.yec{bottom:449.346000px;}
.y80{bottom:452.514600px;}
.y11{bottom:453.984600px;}
.y5a{bottom:458.238000px;}
.y10e{bottom:458.256600px;}
.y37{bottom:459.246000px;}
.ya3{bottom:461.640600px;}
.yc7{bottom:462.414000px;}
.y12f{bottom:467.201850px;}
.yeb{bottom:471.090000px;}
.y7f{bottom:474.114600px;}
.y10{bottom:475.890600px;}
.y36{bottom:480.540000px;}
.y59{bottom:480.594000px;}
.yc6{bottom:483.564000px;}
.ya2{bottom:483.834600px;}
.y12e{bottom:487.001850px;}
.yea{bottom:492.834000px;}
.y7e{bottom:495.714600px;}
.yf{bottom:497.796600px;}
.y35{bottom:501.834000px;}
.y58{bottom:502.950000px;}
.y10d{bottom:502.950600px;}
.yc5{bottom:504.714000px;}
.ya1{bottom:506.028600px;}
.y12d{bottom:506.801850px;}
.ye9{bottom:514.578000px;}
.y7d{bottom:517.314600px;}
.ye{bottom:519.702600px;}
.y34{bottom:523.128000px;}
.y57{bottom:525.306000px;}
.y10c{bottom:525.306600px;}
.yc4{bottom:525.864000px;}
.y12c{bottom:526.601850px;}
.ya0{bottom:528.222600px;}
.ye8{bottom:536.322000px;}
.y7c{bottom:538.914600px;}
.yd{bottom:541.608600px;}
.y33{bottom:544.422000px;}
.y12b{bottom:546.401850px;}
.yc3{bottom:547.014000px;}
.y56{bottom:547.662000px;}
.y10b{bottom:547.662600px;}
.y9f{bottom:550.416600px;}
.ye7{bottom:558.066000px;}
.y7b{bottom:560.514600px;}
.yc{bottom:563.514600px;}
.y32{bottom:565.716000px;}
.y12a{bottom:566.201850px;}
.yc2{bottom:568.164000px;}
.y55{bottom:570.018000px;}
.y10a{bottom:570.018600px;}
.y9e{bottom:572.610600px;}
.ye6{bottom:579.810000px;}
.y7a{bottom:582.114600px;}
.yb{bottom:585.420600px;}
.y129{bottom:586.001850px;}
.y31{bottom:587.010000px;}
.yc1{bottom:589.314000px;}
.y54{bottom:592.374000px;}
.y109{bottom:592.374600px;}
.y9d{bottom:594.804600px;}
.ye5{bottom:601.554000px;}
.y79{bottom:603.714600px;}
.y128{bottom:605.801850px;}
.ya{bottom:607.326600px;}
.y30{bottom:608.304000px;}
.yc0{bottom:610.464000px;}
.y53{bottom:614.730000px;}
.y108{bottom:614.730600px;}
.y9c{bottom:616.998600px;}
.ye4{bottom:623.298000px;}
.y78{bottom:625.314600px;}
.y9{bottom:629.232600px;}
.y2f{bottom:629.598000px;}
.ybf{bottom:631.614000px;}
.y52{bottom:637.086000px;}
.y107{bottom:637.086600px;}
.y9b{bottom:639.192600px;}
.ye3{bottom:645.042000px;}
.y127{bottom:645.401850px;}
.y77{bottom:646.914600px;}
.y2e{bottom:650.892000px;}
.y8{bottom:651.138600px;}
.ybe{bottom:652.764000px;}
.y51{bottom:659.442000px;}
.y106{bottom:659.442600px;}
.y9a{bottom:661.386600px;}
.ye2{bottom:666.786000px;}
.y76{bottom:668.514600px;}
.y2d{bottom:672.186000px;}
.y7{bottom:673.044600px;}
.y126{bottom:673.705800px;}
.ybd{bottom:673.914000px;}
.y50{bottom:681.798000px;}
.y105{bottom:681.798600px;}
.y99{bottom:683.580600px;}
.ye1{bottom:688.530000px;}
.y75{bottom:690.114600px;}
.y2c{bottom:693.480000px;}
.y6{bottom:694.950600px;}
.ybc{bottom:695.064000px;}
.y125{bottom:695.305800px;}
.y4f{bottom:704.154000px;}
.y104{bottom:704.154600px;}
.y98{bottom:705.774600px;}
.ye0{bottom:710.274000px;}
.y74{bottom:711.714600px;}
.y2b{bottom:714.774000px;}
.ybb{bottom:716.214000px;}
.y4e{bottom:726.510000px;}
.y103{bottom:726.510600px;}
.y97{bottom:727.968600px;}
.ydf{bottom:732.018000px;}
.y73{bottom:733.314600px;}
.y2a{bottom:736.068000px;}
.yba{bottom:737.364000px;}
.y4d{bottom:748.866000px;}
.y102{bottom:748.866600px;}
.y96{bottom:750.162600px;}
.yde{bottom:753.762000px;}
.y72{bottom:754.914600px;}
.y29{bottom:757.362000px;}
.yb9{bottom:758.514000px;}
.y124{bottom:768.205800px;}
.y4c{bottom:771.222000px;}
.y101{bottom:771.222600px;}
.y95{bottom:772.356600px;}
.ydd{bottom:775.506000px;}
.y71{bottom:776.514600px;}
.y28{bottom:778.656000px;}
.yb8{bottom:779.664000px;}
.y4b{bottom:793.578000px;}
.y100{bottom:793.578600px;}
.y94{bottom:794.550600px;}
.ydc{bottom:797.250000px;}
.y70{bottom:798.114600px;}
.y27{bottom:799.950000px;}
.yb7{bottom:800.814000px;}
.y123{bottom:802.405950px;}
.y4a{bottom:815.934000px;}
.yff{bottom:815.934600px;}
.y93{bottom:816.744600px;}
.ydb{bottom:818.994000px;}
.y6f{bottom:819.714600px;}
.y26{bottom:821.244000px;}
.yb6{bottom:821.964000px;}
.y122{bottom:822.205950px;}
.y5{bottom:824.850450px;}
.y49{bottom:838.290000px;}
.yfe{bottom:838.290600px;}
.y92{bottom:838.938600px;}
.yda{bottom:840.738000px;}
.y6e{bottom:841.314600px;}
.y121{bottom:842.005950px;}
.y25{bottom:842.538000px;}
.yb5{bottom:843.114000px;}
.y4{bottom:855.450450px;}
.y48{bottom:860.646000px;}
.yfd{bottom:860.646600px;}
.y91{bottom:861.132600px;}
.y120{bottom:861.805950px;}
.yd9{bottom:862.482000px;}
.y6d{bottom:862.914600px;}
.y24{bottom:863.832000px;}
.yb4{bottom:864.264000px;}
.y11f{bottom:881.605950px;}
.y47{bottom:883.002000px;}
.yfc{bottom:883.002600px;}
.y90{bottom:883.326600px;}
.yd8{bottom:884.226000px;}
.y6c{bottom:884.514600px;}
.y23{bottom:885.126000px;}
.yb3{bottom:885.414000px;}
.y11e{bottom:901.405950px;}
.y46{bottom:905.358000px;}
.yfb{bottom:905.358600px;}
.y8f{bottom:905.520600px;}
.yd7{bottom:905.970000px;}
.y6b{bottom:906.114600px;}
.y22{bottom:906.420000px;}
.yb2{bottom:906.564000px;}
.y3{bottom:910.711800px;}
.y21{bottom:927.714000px;}
.y6a{bottom:927.714600px;}
.y2{bottom:928.711800px;}
.y11d{bottom:929.709750px;}
.ha{height:27.993164px;}
.hb{height:28.792969px;}
.h9{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.h11{height:43.447266px;}
.h10{height:47.791992px;}
.he{height:47.988281px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.hf{height:52.136719px;}
.h4{height:53.367188px;}
.hd{height:56.041992px;}
.h8{height:61.136719px;}
.h7{height:73.860352px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.775400px;}
.x7{left:119.053350px;}
.x5{left:143.170350px;}
.x6{left:263.077950px;}
.x8{left:317.073300px;}
.x1{left:324.573300px;}
.xa{left:521.949450px;}
.x9{left:579.664350px;}
.x2{left:587.164350px;}
@media print{
.v3{vertical-align:-23.680000pt;}
.v2{vertical-align:-3.946667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls9{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.lsa{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.lsb{letter-spacing:17.600000pt;}
.ws3{word-spacing:-38.400000pt;}
.ws8{word-spacing:-20.320000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.344000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws9{word-spacing:-14.490667pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-18.389333pt;}
._15{margin-left:-17.276444pt;}
._14{margin-left:-12.992000pt;}
._17{margin-left:-11.982222pt;}
._16{margin-left:-10.560000pt;}
._4{margin-left:-9.429333pt;}
._5{margin-left:-8.432000pt;}
._f{margin-left:-6.912000pt;}
._3{margin-left:-5.861333pt;}
._1{margin-left:-4.849778pt;}
._0{margin-left:-3.173333pt;}
._2{margin-left:-1.664000pt;}
._7{width:1.216000pt;}
._a{width:2.752000pt;}
._d{width:3.749333pt;}
._9{width:4.672000pt;}
._b{width:6.080000pt;}
._c{width:7.680000pt;}
._8{width:9.329778pt;}
._6{width:11.072000pt;}
._10{width:12.160000pt;}
._18{width:13.568000pt;}
._11{width:15.360000pt;}
._e{width:16.896000pt;}
._19{width:18.880000pt;}
._12{width:33.135467pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:67.856933pt;}
.y1{bottom:67.857200pt;}
.y69{bottom:67.857600pt;}
.yfa{bottom:128.826667pt;}
.y45{bottom:129.009600pt;}
.yd6{bottom:129.034667pt;}
.y68{bottom:129.114667pt;}
.y11c{bottom:129.131200pt;}
.y1f{bottom:130.933867pt;}
.y8e{bottom:133.435200pt;}
.yb1{bottom:134.155200pt;}
.yd5{bottom:147.834667pt;}
.yf9{bottom:148.154667pt;}
.y67{bottom:148.986667pt;}
.y11b{bottom:149.003200pt;}
.y44{bottom:149.597600pt;}
.y1e{bottom:150.405867pt;}
.y8d{bottom:152.635200pt;}
.yb0{bottom:153.883200pt;}
.yd4{bottom:166.634667pt;}
.yf8{bottom:167.482667pt;}
.y66{bottom:168.858667pt;}
.y11a{bottom:168.875200pt;}
.y1d{bottom:169.877867pt;}
.y8c{bottom:171.835200pt;}
.yaf{bottom:173.611200pt;}
.y43{bottom:181.082667pt;}
.yd3{bottom:185.434667pt;}
.yf7{bottom:186.810667pt;}
.y65{bottom:188.730667pt;}
.y119{bottom:188.747200pt;}
.y1c{bottom:189.349867pt;}
.y8b{bottom:191.035200pt;}
.yae{bottom:193.339200pt;}
.y13a{bottom:193.690533pt;}
.y42{bottom:200.010667pt;}
.yd2{bottom:204.234667pt;}
.yf6{bottom:206.138667pt;}
.y64{bottom:208.602667pt;}
.y118{bottom:208.619200pt;}
.y1b{bottom:208.821867pt;}
.y139{bottom:209.690533pt;}
.y8a{bottom:210.235200pt;}
.yad{bottom:213.067200pt;}
.y41{bottom:218.938667pt;}
.yd1{bottom:223.034667pt;}
.yf5{bottom:225.466667pt;}
.y138{bottom:225.690533pt;}
.y1a{bottom:228.293867pt;}
.y63{bottom:228.474667pt;}
.y117{bottom:228.491200pt;}
.y89{bottom:229.435200pt;}
.yac{bottom:232.795200pt;}
.y40{bottom:237.866667pt;}
.y137{bottom:241.690533pt;}
.yd0{bottom:241.834667pt;}
.yf4{bottom:244.794667pt;}
.y19{bottom:247.765867pt;}
.y62{bottom:248.346667pt;}
.y116{bottom:248.363200pt;}
.y88{bottom:248.635200pt;}
.yab{bottom:252.523200pt;}
.y3f{bottom:256.794667pt;}
.ycf{bottom:260.634667pt;}
.yf3{bottom:264.122667pt;}
.y18{bottom:267.237867pt;}
.y87{bottom:267.835200pt;}
.y61{bottom:268.218667pt;}
.y115{bottom:268.235200pt;}
.yaa{bottom:272.251200pt;}
.y3e{bottom:275.722667pt;}
.yce{bottom:279.434667pt;}
.yf2{bottom:283.450667pt;}
.y17{bottom:286.709867pt;}
.y86{bottom:287.035200pt;}
.y60{bottom:288.090667pt;}
.y114{bottom:288.107200pt;}
.ya9{bottom:291.979200pt;}
.y136{bottom:292.090533pt;}
.y3d{bottom:294.650667pt;}
.ycd{bottom:298.234667pt;}
.yf1{bottom:302.778667pt;}
.y16{bottom:306.181867pt;}
.y85{bottom:306.235200pt;}
.y5f{bottom:307.962667pt;}
.y113{bottom:307.979200pt;}
.y135{bottom:309.690533pt;}
.ya8{bottom:311.707200pt;}
.y3c{bottom:313.578667pt;}
.ycc{bottom:317.034667pt;}
.yf0{bottom:322.106667pt;}
.y84{bottom:325.435200pt;}
.y15{bottom:325.653867pt;}
.y134{bottom:327.290533pt;}
.y5e{bottom:327.834667pt;}
.y112{bottom:327.851200pt;}
.ya7{bottom:331.435200pt;}
.y3b{bottom:332.506667pt;}
.ycb{bottom:335.834667pt;}
.yef{bottom:341.434667pt;}
.y83{bottom:344.635200pt;}
.y133{bottom:344.890533pt;}
.y14{bottom:345.125867pt;}
.y5d{bottom:347.706667pt;}
.y111{bottom:347.723200pt;}
.ya6{bottom:351.163200pt;}
.y3a{bottom:351.434667pt;}
.yca{bottom:354.634667pt;}
.yee{bottom:360.762667pt;}
.y132{bottom:362.490533pt;}
.y82{bottom:363.835200pt;}
.y13{bottom:364.597867pt;}
.y5c{bottom:367.578667pt;}
.y110{bottom:367.595200pt;}
.y39{bottom:370.362667pt;}
.ya5{bottom:370.891200pt;}
.yc9{bottom:373.434667pt;}
.y131{bottom:380.090533pt;}
.yed{bottom:380.090667pt;}
.y81{bottom:383.035200pt;}
.y12{bottom:384.069867pt;}
.y5b{bottom:387.450667pt;}
.y10f{bottom:387.467200pt;}
.y38{bottom:389.290667pt;}
.ya4{bottom:390.619200pt;}
.yc8{bottom:392.234667pt;}
.y130{bottom:397.690533pt;}
.yec{bottom:399.418667pt;}
.y80{bottom:402.235200pt;}
.y11{bottom:403.541867pt;}
.y5a{bottom:407.322667pt;}
.y10e{bottom:407.339200pt;}
.y37{bottom:408.218667pt;}
.ya3{bottom:410.347200pt;}
.yc7{bottom:411.034667pt;}
.y12f{bottom:415.290533pt;}
.yeb{bottom:418.746667pt;}
.y7f{bottom:421.435200pt;}
.y10{bottom:423.013867pt;}
.y36{bottom:427.146667pt;}
.y59{bottom:427.194667pt;}
.yc6{bottom:429.834667pt;}
.ya2{bottom:430.075200pt;}
.y12e{bottom:432.890533pt;}
.yea{bottom:438.074667pt;}
.y7e{bottom:440.635200pt;}
.yf{bottom:442.485867pt;}
.y35{bottom:446.074667pt;}
.y58{bottom:447.066667pt;}
.y10d{bottom:447.067200pt;}
.yc5{bottom:448.634667pt;}
.ya1{bottom:449.803200pt;}
.y12d{bottom:450.490533pt;}
.ye9{bottom:457.402667pt;}
.y7d{bottom:459.835200pt;}
.ye{bottom:461.957867pt;}
.y34{bottom:465.002667pt;}
.y57{bottom:466.938667pt;}
.y10c{bottom:466.939200pt;}
.yc4{bottom:467.434667pt;}
.y12c{bottom:468.090533pt;}
.ya0{bottom:469.531200pt;}
.ye8{bottom:476.730667pt;}
.y7c{bottom:479.035200pt;}
.yd{bottom:481.429867pt;}
.y33{bottom:483.930667pt;}
.y12b{bottom:485.690533pt;}
.yc3{bottom:486.234667pt;}
.y56{bottom:486.810667pt;}
.y10b{bottom:486.811200pt;}
.y9f{bottom:489.259200pt;}
.ye7{bottom:496.058667pt;}
.y7b{bottom:498.235200pt;}
.yc{bottom:500.901867pt;}
.y32{bottom:502.858667pt;}
.y12a{bottom:503.290533pt;}
.yc2{bottom:505.034667pt;}
.y55{bottom:506.682667pt;}
.y10a{bottom:506.683200pt;}
.y9e{bottom:508.987200pt;}
.ye6{bottom:515.386667pt;}
.y7a{bottom:517.435200pt;}
.yb{bottom:520.373867pt;}
.y129{bottom:520.890533pt;}
.y31{bottom:521.786667pt;}
.yc1{bottom:523.834667pt;}
.y54{bottom:526.554667pt;}
.y109{bottom:526.555200pt;}
.y9d{bottom:528.715200pt;}
.ye5{bottom:534.714667pt;}
.y79{bottom:536.635200pt;}
.y128{bottom:538.490533pt;}
.ya{bottom:539.845867pt;}
.y30{bottom:540.714667pt;}
.yc0{bottom:542.634667pt;}
.y53{bottom:546.426667pt;}
.y108{bottom:546.427200pt;}
.y9c{bottom:548.443200pt;}
.ye4{bottom:554.042667pt;}
.y78{bottom:555.835200pt;}
.y9{bottom:559.317867pt;}
.y2f{bottom:559.642667pt;}
.ybf{bottom:561.434667pt;}
.y52{bottom:566.298667pt;}
.y107{bottom:566.299200pt;}
.y9b{bottom:568.171200pt;}
.ye3{bottom:573.370667pt;}
.y127{bottom:573.690533pt;}
.y77{bottom:575.035200pt;}
.y2e{bottom:578.570667pt;}
.y8{bottom:578.789867pt;}
.ybe{bottom:580.234667pt;}
.y51{bottom:586.170667pt;}
.y106{bottom:586.171200pt;}
.y9a{bottom:587.899200pt;}
.ye2{bottom:592.698667pt;}
.y76{bottom:594.235200pt;}
.y2d{bottom:597.498667pt;}
.y7{bottom:598.261867pt;}
.y126{bottom:598.849600pt;}
.ybd{bottom:599.034667pt;}
.y50{bottom:606.042667pt;}
.y105{bottom:606.043200pt;}
.y99{bottom:607.627200pt;}
.ye1{bottom:612.026667pt;}
.y75{bottom:613.435200pt;}
.y2c{bottom:616.426667pt;}
.y6{bottom:617.733867pt;}
.ybc{bottom:617.834667pt;}
.y125{bottom:618.049600pt;}
.y4f{bottom:625.914667pt;}
.y104{bottom:625.915200pt;}
.y98{bottom:627.355200pt;}
.ye0{bottom:631.354667pt;}
.y74{bottom:632.635200pt;}
.y2b{bottom:635.354667pt;}
.ybb{bottom:636.634667pt;}
.y4e{bottom:645.786667pt;}
.y103{bottom:645.787200pt;}
.y97{bottom:647.083200pt;}
.ydf{bottom:650.682667pt;}
.y73{bottom:651.835200pt;}
.y2a{bottom:654.282667pt;}
.yba{bottom:655.434667pt;}
.y4d{bottom:665.658667pt;}
.y102{bottom:665.659200pt;}
.y96{bottom:666.811200pt;}
.yde{bottom:670.010667pt;}
.y72{bottom:671.035200pt;}
.y29{bottom:673.210667pt;}
.yb9{bottom:674.234667pt;}
.y124{bottom:682.849600pt;}
.y4c{bottom:685.530667pt;}
.y101{bottom:685.531200pt;}
.y95{bottom:686.539200pt;}
.ydd{bottom:689.338667pt;}
.y71{bottom:690.235200pt;}
.y28{bottom:692.138667pt;}
.yb8{bottom:693.034667pt;}
.y4b{bottom:705.402667pt;}
.y100{bottom:705.403200pt;}
.y94{bottom:706.267200pt;}
.ydc{bottom:708.666667pt;}
.y70{bottom:709.435200pt;}
.y27{bottom:711.066667pt;}
.yb7{bottom:711.834667pt;}
.y123{bottom:713.249733pt;}
.y4a{bottom:725.274667pt;}
.yff{bottom:725.275200pt;}
.y93{bottom:725.995200pt;}
.ydb{bottom:727.994667pt;}
.y6f{bottom:728.635200pt;}
.y26{bottom:729.994667pt;}
.yb6{bottom:730.634667pt;}
.y122{bottom:730.849733pt;}
.y5{bottom:733.200400pt;}
.y49{bottom:745.146667pt;}
.yfe{bottom:745.147200pt;}
.y92{bottom:745.723200pt;}
.yda{bottom:747.322667pt;}
.y6e{bottom:747.835200pt;}
.y121{bottom:748.449733pt;}
.y25{bottom:748.922667pt;}
.yb5{bottom:749.434667pt;}
.y4{bottom:760.400400pt;}
.y48{bottom:765.018667pt;}
.yfd{bottom:765.019200pt;}
.y91{bottom:765.451200pt;}
.y120{bottom:766.049733pt;}
.yd9{bottom:766.650667pt;}
.y6d{bottom:767.035200pt;}
.y24{bottom:767.850667pt;}
.yb4{bottom:768.234667pt;}
.y11f{bottom:783.649733pt;}
.y47{bottom:784.890667pt;}
.yfc{bottom:784.891200pt;}
.y90{bottom:785.179200pt;}
.yd8{bottom:785.978667pt;}
.y6c{bottom:786.235200pt;}
.y23{bottom:786.778667pt;}
.yb3{bottom:787.034667pt;}
.y11e{bottom:801.249733pt;}
.y46{bottom:804.762667pt;}
.yfb{bottom:804.763200pt;}
.y8f{bottom:804.907200pt;}
.yd7{bottom:805.306667pt;}
.y6b{bottom:805.435200pt;}
.y22{bottom:805.706667pt;}
.yb2{bottom:805.834667pt;}
.y3{bottom:809.521600pt;}
.y21{bottom:824.634667pt;}
.y6a{bottom:824.635200pt;}
.y2{bottom:825.521600pt;}
.y11d{bottom:826.408667pt;}
.ha{height:24.882812pt;}
.hb{height:25.593750pt;}
.h9{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.h11{height:38.619792pt;}
.h10{height:42.481771pt;}
.he{height:42.656250pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.hf{height:46.343750pt;}
.h4{height:47.437500pt;}
.hd{height:49.815104pt;}
.h8{height:54.343750pt;}
.h7{height:65.653646pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.911467pt;}
.x7{left:105.825200pt;}
.x5{left:127.262533pt;}
.x6{left:233.847067pt;}
.x8{left:281.842933pt;}
.x1{left:288.509600pt;}
.xa{left:463.955067pt;}
.x9{left:515.257200pt;}
.x2{left:521.923867pt;}
}




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