
    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_773e726cb538ec9b52ce6e5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ae97729d8da6b506a5da55d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_26d652836340db3a423dbca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_e7efb69a55e933fe79c316d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_eeb6b38665782ed7dc57d3af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_0dfb654d60fd1421680f250f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_c9c788fda0ff5e223b39dda2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946289;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_95800ab934efa971353f85d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_ddef38b0586a57de2d62c1d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4cc1d988d7d80a871998b6e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.935059;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:ffd;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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;}
.ls7{letter-spacing:-0.472200px;}
.ls3{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.452400px;}
.ls13{letter-spacing:-0.178800px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.463680px;}
.ls0{letter-spacing:0.535680px;}
.ls4{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.260000px;}
.lsb{letter-spacing:10.045440px;}
.lsf{letter-spacing:14.221440px;}
.ls10{letter-spacing:18.541440px;}
.ls14{letter-spacing:21.421440px;}
.ls8{letter-spacing:21.565440px;}
.lse{letter-spacing:37.261440px;}
.ls11{letter-spacing:41.581440px;}
.ls12{letter-spacing:55.981440px;}
.ls9{letter-spacing:57.421440px;}
.lsd{letter-spacing:60.301440px;}
.ls15{letter-spacing:60.313440px;}
.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.237000px;}
.ws2{word-spacing:-20.880000px;}
.ws6{word-spacing:-20.701200px;}
.ws7{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.074720px;}
.ws5{word-spacing:0.000000px;}
._29{margin-left:-13.138560px;}
._b{margin-left:-4.332960px;}
._3{margin-left:-3.152160px;}
._2{margin-left:-2.013120px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._6{width:3.200640px;}
._a{width:5.011200px;}
._7{width:6.013440px;}
._10{width:7.162560px;}
._c{width:9.103680px;}
._13{width:10.399680px;}
._14{width:11.442240px;}
._15{width:13.279680px;}
._f{width:14.846400px;}
._9{width:16.453440px;}
._8{width:18.123840px;}
._1b{width:19.627200px;}
._26{width:22.112640px;}
._17{width:23.581440px;}
._16{width:24.868800px;}
._19{width:25.952160px;}
._2b{width:27.020160px;}
._23{width:28.313280px;}
._d{width:29.649600px;}
._e{width:31.176000px;}
._18{width:33.324480px;}
._11{width:34.744320px;}
._12{width:36.615840px;}
._1a{width:39.421440px;}
._22{width:40.794240px;}
._1c{width:41.990400px;}
._1d{width:43.200000px;}
._1f{width:44.766720px;}
._1e{width:45.852480px;}
._20{width:47.689920px;}
._21{width:49.109760px;}
._2e{width:51.065280px;}
._27{width:52.179840px;}
._28{width:53.556480px;}
._2a{width:54.832320px;}
._2f{width:55.935360px;}
._30{width:57.685920px;}
._2c{width:61.888320px;}
._2d{width:63.371520px;}
._25{width:66.608640px;}
._24{width:67.818240px;}
._31{width:78.206400px;}
._32{width:79.212480px;}
._5{width:833.489760px;}
._4{width:1591.325760px;}
.fc4{color:transparent;}
.fc5{color:rgb(13,13,13);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:57.240000px;}
.y64{bottom:109.116000px;}
.y63{bottom:114.516000px;}
.y62{bottom:126.396000px;}
.y76{bottom:131.796000px;}
.ye3{bottom:132.516000px;}
.y23{bottom:135.396000px;}
.y61{bottom:143.676000px;}
.y75{bottom:144.756000px;}
.y60{bottom:149.076000px;}
.ye2{bottom:156.630000px;}
.y5f{bottom:160.950000px;}
.ya6{bottom:162.030000px;}
.y40{bottom:166.710000px;}
.y22{bottom:172.470000px;}
.y5e{bottom:178.230000px;}
.ye1{bottom:180.750000px;}
.y5d{bottom:183.630000px;}
.ya5{bottom:188.670000px;}
.y3f{bottom:192.990000px;}
.y5c{bottom:195.510000px;}
.y5b{bottom:200.955000px;}
.y97{bottom:202.755000px;}
.ye0{bottom:204.915000px;}
.y21{bottom:207.075000px;}
.y5a{bottom:213.915000px;}
.ya4{bottom:214.995000px;}
.y3e{bottom:218.955000px;}
.y96{bottom:229.035000px;}
.ya3{bottom:240.915000px;}
.y3d{bottom:244.875000px;}
.y20{bottom:245.235000px;}
.ydf{bottom:253.155000px;}
.y95{bottom:254.955000px;}
.y74{bottom:257.115000px;}
.ycb{bottom:258.915000px;}
.ya2{bottom:266.835000px;}
.y1f{bottom:271.155000px;}
.yde{bottom:277.275000px;}
.y94{bottom:280.875000px;}
.y3c{bottom:283.035000px;}
.yca{bottom:285.195000px;}
.ya1{bottom:293.115000px;}
.y73{bottom:294.915000px;}
.ydd{bottom:301.395000px;}
.y1e{bottom:309.315000px;}
.yc9{bottom:311.115000px;}
.y93{bottom:319.035000px;}
.y72{bottom:321.195000px;}
.ydc{bottom:325.545000px;}
.y1d{bottom:335.265000px;}
.y59{bottom:342.825000px;}
.y92{bottom:345.345000px;}
.y71{bottom:347.145000px;}
.yc8{bottom:349.305000px;}
.ydb{bottom:350.025000px;}
.y3b{bottom:361.185000px;}
.y1c{bottom:361.545000px;}
.y91{bottom:371.265000px;}
.y70{bottom:373.425000px;}
.yda{bottom:374.145000px;}
.yc6{bottom:375.225000px;}
.yc7{bottom:382.785000px;}
.y1b{bottom:387.465000px;}
.y90{bottom:397.185000px;}
.yd9{bottom:398.265000px;}
.y6f{bottom:399.345000px;}
.yc5{bottom:401.505000px;}
.y1a{bottom:413.385000px;}
.yd8{bottom:422.385000px;}
.ya0{bottom:423.465000px;}
.y6e{bottom:425.265000px;}
.yc4{bottom:427.425000px;}
.yb5{bottom:431.025000px;}
.y8f{bottom:435.345000px;}
.y58{bottom:439.305000px;}
.yd7{bottom:446.505000px;}
.y9f{bottom:449.430000px;}
.y19{bottom:451.590000px;}
.yc3{bottom:453.750000px;}
.y8e{bottom:461.310000px;}
.y6d{bottom:463.470000px;}
.y57{bottom:465.630000px;}
.yd6{bottom:470.670000px;}
.y9e{bottom:475.350000px;}
.y8d{bottom:487.590000px;}
.y18{bottom:489.750000px;}
.yc1{bottom:491.550000px;}
.yd5{bottom:494.790000px;}
.yb4{bottom:499.470000px;}
.y9d{bottom:501.630000px;}
.y55{bottom:503.790000px;}
.y56{bottom:511.350000px;}
.y8c{bottom:513.510000px;}
.y17{bottom:515.670000px;}
.yc0{bottom:517.830000px;}
.yd4{bottom:518.910000px;}
.yb3{bottom:525.750000px;}
.y9c{bottom:527.550000px;}
.y54{bottom:529.710000px;}
.y8b{bottom:539.790000px;}
.y3a{bottom:541.590000px;}
.yd3{bottom:543.030000px;}
.ybf{bottom:543.750000px;}
.y16{bottom:553.830000px;}
.y53{bottom:555.630000px;}
.yb2{bottom:563.550000px;}
.y8a{bottom:565.710000px;}
.yd2{bottom:567.150000px;}
.y39{bottom:567.870000px;}
.ybe{bottom:569.670000px;}
.y15{bottom:579.780000px;}
.y52{bottom:581.940000px;}
.yb1{bottom:589.860000px;}
.yd1{bottom:591.300000px;}
.y6b{bottom:591.660000px;}
.y38{bottom:593.820000px;}
.y6c{bottom:599.220000px;}
.y9b{bottom:605.700000px;}
.y14{bottom:606.060000px;}
.y51{bottom:607.860000px;}
.yd0{bottom:615.420000px;}
.yb0{bottom:615.780000px;}
.y6a{bottom:617.940000px;}
.y37{bottom:619.740000px;}
.yc2{bottom:627.300000px;}
.y89{bottom:629.820000px;}
.y13{bottom:631.980000px;}
.y50{bottom:634.140000px;}
.ycf{bottom:639.540000px;}
.yaf{bottom:641.700000px;}
.y69{bottom:643.860000px;}
.y36{bottom:646.020000px;}
.y88{bottom:655.740000px;}
.y12{bottom:657.900000px;}
.ybd{bottom:660.060000px;}
.yce{bottom:664.020000px;}
.yae{bottom:667.980000px;}
.y68{bottom:670.140000px;}
.y4f{bottom:671.940000px;}
.y87{bottom:682.020000px;}
.y11{bottom:684.180000px;}
.ybc{bottom:685.980000px;}
.ycd{bottom:688.140000px;}
.yad{bottom:693.900000px;}
.y67{bottom:696.060000px;}
.y86{bottom:707.970000px;}
.y35{bottom:710.130000px;}
.ycc{bottom:712.290000px;}
.y4e{bottom:717.690000px;}
.yac{bottom:720.210000px;}
.y66{bottom:722.010000px;}
.y10{bottom:722.370000px;}
.yba{bottom:724.170000px;}
.ybb{bottom:731.730000px;}
.y85{bottom:734.250000px;}
.y4d{bottom:736.050000px;}
.yab{bottom:746.130000px;}
.y34{bottom:748.290000px;}
.yb9{bottom:750.090000px;}
.yf{bottom:759.090000px;}
.y84{bottom:760.170000px;}
.y4c{bottom:762.330000px;}
.yaa{bottom:772.050000px;}
.y33{bottom:774.210000px;}
.yb8{bottom:776.370000px;}
.y83{bottom:786.090000px;}
.y4b{bottom:788.250000px;}
.ye{bottom:793.290000px;}
.ya9{bottom:798.330000px;}
.y32{bottom:800.130000px;}
.y82{bottom:812.370000px;}
.y4a{bottom:814.530000px;}
.ya8{bottom:824.250000px;}
.y31{bottom:826.410000px;}
.yd{bottom:828.975000px;}
.y81{bottom:838.335000px;}
.y49{bottom:840.495000px;}
.ya7{bottom:850.575000px;}
.y30{bottom:852.375000px;}
.y48{bottom:866.415000px;}
.yc{bottom:867.135000px;}
.y80{bottom:876.495000px;}
.y2f{bottom:878.655000px;}
.yb7{bottom:890.535000px;}
.y9a{bottom:892.695000px;}
.yb{bottom:893.055000px;}
.y7f{bottom:902.415000px;}
.y2e{bottom:904.575000px;}
.y65{bottom:912.135000px;}
.yb6{bottom:916.455000px;}
.y9{bottom:916.815000px;}
.y99{bottom:918.615000px;}
.y7e{bottom:928.695000px;}
.y47{bottom:930.495000px;}
.y8{bottom:936.975000px;}
.y2d{bottom:942.735000px;}
.y7{bottom:952.845000px;}
.y7d{bottom:954.645000px;}
.y46{bottom:956.805000px;}
.y2c{bottom:968.685000px;}
.y7c{bottom:980.565000px;}
.y45{bottom:982.725000px;}
.y2b{bottom:994.965000px;}
.y6{bottom:1000.365000px;}
.y7b{bottom:1006.845000px;}
.y44{bottom:1009.005000px;}
.y5{bottom:1017.645000px;}
.y2a{bottom:1020.885000px;}
.y7a{bottom:1032.765000px;}
.y43{bottom:1034.925000px;}
.y4{bottom:1038.165000px;}
.y29{bottom:1046.805000px;}
.y79{bottom:1059.045000px;}
.y3{bottom:1060.125000px;}
.y28{bottom:1073.085000px;}
.y2{bottom:1082.130000px;}
.y78{bottom:1085.010000px;}
.y98{bottom:1092.570000px;}
.y27{bottom:1099.050000px;}
.y1{bottom:1099.770000px;}
.y41{bottom:1110.930000px;}
.y42{bottom:1118.490000px;}
.y26{bottom:1137.210000px;}
.y77{bottom:1144.770000px;}
.y25{bottom:1173.930000px;}
.y24{bottom:1194.090000px;}
.ha{height:28.115859px;}
.h9{height:39.570469px;}
.h5{height:41.547656px;}
.hb{height:43.735781px;}
.h7{height:52.628906px;}
.hd{height:59.703750px;}
.h8{height:60.397031px;}
.hc{height:60.804844px;}
.he{height:61.865156px;}
.h6{height:61.905938px;}
.h4{height:65.884219px;}
.h2{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:106.235987px;}
.x18{left:111.275987px;}
.x27{left:116.315987px;}
.x21{left:133.271987px;}
.xa{left:156.314987px;}
.x19{left:180.794987px;}
.xf{left:202.034987px;}
.xe{left:212.474987px;}
.x10{left:221.864973px;}
.x11{left:228.704987px;}
.x1c{left:239.504987px;}
.x26{left:244.544987px;}
.x15{left:248.504973px;}
.x16{left:255.344987px;}
.x2{left:260.384987px;}
.xb{left:276.224987px;}
.x6{left:281.264987px;}
.x24{left:311.189973px;}
.xc{left:312.269987px;}
.x17{left:322.349987px;}
.x25{left:324.869987px;}
.x14{left:342.509973px;}
.x5{left:348.629987px;}
.x2d{left:360.149987px;}
.xd{left:365.909987px;}
.x2a{left:367.349987px;}
.x28{left:372.389973px;}
.x4{left:383.909987px;}
.x29{left:386.069987px;}
.x3{left:403.019987px;}
.x12{left:425.339973px;}
.x9{left:429.659987px;}
.x13{left:432.179987px;}
.x8{left:446.579987px;}
.x22{left:524.369973px;}
.x23{left:531.209987px;}
.x1d{left:599.654973px;}
.x1e{left:606.494987px;}
.x1f{left:651.494973px;}
.x20{left:658.334987px;}
.x1a{left:679.604973px;}
.x1b{left:686.444987px;}
.x2b{left:721.004973px;}
.x2c{left:734.684987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.419733pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.402133pt;}
.ls13{letter-spacing:-0.158933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.412160pt;}
.ls0{letter-spacing:0.476160pt;}
.ls4{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.120000pt;}
.lsb{letter-spacing:8.929280pt;}
.lsf{letter-spacing:12.641280pt;}
.ls10{letter-spacing:16.481280pt;}
.ls14{letter-spacing:19.041280pt;}
.ls8{letter-spacing:19.169280pt;}
.lse{letter-spacing:33.121280pt;}
.ls11{letter-spacing:36.961280pt;}
.ls12{letter-spacing:49.761280pt;}
.ls9{letter-spacing:51.041280pt;}
.lsd{letter-spacing:53.601280pt;}
.ls15{letter-spacing:53.611947pt;}
.ws3{word-spacing:-18.877333pt;}
.ws2{word-spacing:-18.560000pt;}
.ws6{word-spacing:-18.401067pt;}
.ws7{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-11.621973pt;}
.ws5{word-spacing:0.000000pt;}
._29{margin-left:-11.678720pt;}
._b{margin-left:-3.851520pt;}
._3{margin-left:-2.801920pt;}
._2{margin-left:-1.789440pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._6{width:2.845013pt;}
._a{width:4.454400pt;}
._7{width:5.345280pt;}
._10{width:6.366720pt;}
._c{width:8.092160pt;}
._13{width:9.244160pt;}
._14{width:10.170880pt;}
._15{width:11.804160pt;}
._f{width:13.196800pt;}
._9{width:14.625280pt;}
._8{width:16.110080pt;}
._1b{width:17.446400pt;}
._26{width:19.655680pt;}
._17{width:20.961280pt;}
._16{width:22.105600pt;}
._19{width:23.068587pt;}
._2b{width:24.017920pt;}
._23{width:25.167360pt;}
._d{width:26.355200pt;}
._e{width:27.712000pt;}
._18{width:29.621760pt;}
._11{width:30.883840pt;}
._12{width:32.547413pt;}
._1a{width:35.041280pt;}
._22{width:36.261547pt;}
._1c{width:37.324800pt;}
._1d{width:38.400000pt;}
._1f{width:39.792640pt;}
._1e{width:40.757760pt;}
._20{width:42.391040pt;}
._21{width:43.653120pt;}
._2e{width:45.391360pt;}
._27{width:46.382080pt;}
._28{width:47.605760pt;}
._2a{width:48.739840pt;}
._2f{width:49.720320pt;}
._30{width:51.276373pt;}
._2c{width:55.011840pt;}
._2d{width:56.330240pt;}
._25{width:59.207680pt;}
._24{width:60.282880pt;}
._31{width:69.516800pt;}
._32{width:70.411093pt;}
._5{width:740.879787pt;}
._4{width:1414.511787pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:50.880000pt;}
.y64{bottom:96.992000pt;}
.y63{bottom:101.792000pt;}
.y62{bottom:112.352000pt;}
.y76{bottom:117.152000pt;}
.ye3{bottom:117.792000pt;}
.y23{bottom:120.352000pt;}
.y61{bottom:127.712000pt;}
.y75{bottom:128.672000pt;}
.y60{bottom:132.512000pt;}
.ye2{bottom:139.226667pt;}
.y5f{bottom:143.066667pt;}
.ya6{bottom:144.026667pt;}
.y40{bottom:148.186667pt;}
.y22{bottom:153.306667pt;}
.y5e{bottom:158.426667pt;}
.ye1{bottom:160.666667pt;}
.y5d{bottom:163.226667pt;}
.ya5{bottom:167.706667pt;}
.y3f{bottom:171.546667pt;}
.y5c{bottom:173.786667pt;}
.y5b{bottom:178.626667pt;}
.y97{bottom:180.226667pt;}
.ye0{bottom:182.146667pt;}
.y21{bottom:184.066667pt;}
.y5a{bottom:190.146667pt;}
.ya4{bottom:191.106667pt;}
.y3e{bottom:194.626667pt;}
.y96{bottom:203.586667pt;}
.ya3{bottom:214.146667pt;}
.y3d{bottom:217.666667pt;}
.y20{bottom:217.986667pt;}
.ydf{bottom:225.026667pt;}
.y95{bottom:226.626667pt;}
.y74{bottom:228.546667pt;}
.ycb{bottom:230.146667pt;}
.ya2{bottom:237.186667pt;}
.y1f{bottom:241.026667pt;}
.yde{bottom:246.466667pt;}
.y94{bottom:249.666667pt;}
.y3c{bottom:251.586667pt;}
.yca{bottom:253.506667pt;}
.ya1{bottom:260.546667pt;}
.y73{bottom:262.146667pt;}
.ydd{bottom:267.906667pt;}
.y1e{bottom:274.946667pt;}
.yc9{bottom:276.546667pt;}
.y93{bottom:283.586667pt;}
.y72{bottom:285.506667pt;}
.ydc{bottom:289.373333pt;}
.y1d{bottom:298.013333pt;}
.y59{bottom:304.733333pt;}
.y92{bottom:306.973333pt;}
.y71{bottom:308.573333pt;}
.yc8{bottom:310.493333pt;}
.ydb{bottom:311.133333pt;}
.y3b{bottom:321.053333pt;}
.y1c{bottom:321.373333pt;}
.y91{bottom:330.013333pt;}
.y70{bottom:331.933333pt;}
.yda{bottom:332.573333pt;}
.yc6{bottom:333.533333pt;}
.yc7{bottom:340.253333pt;}
.y1b{bottom:344.413333pt;}
.y90{bottom:353.053333pt;}
.yd9{bottom:354.013333pt;}
.y6f{bottom:354.973333pt;}
.yc5{bottom:356.893333pt;}
.y1a{bottom:367.453333pt;}
.yd8{bottom:375.453333pt;}
.ya0{bottom:376.413333pt;}
.y6e{bottom:378.013333pt;}
.yc4{bottom:379.933333pt;}
.yb5{bottom:383.133333pt;}
.y8f{bottom:386.973333pt;}
.y58{bottom:390.493333pt;}
.yd7{bottom:396.893333pt;}
.y9f{bottom:399.493333pt;}
.y19{bottom:401.413333pt;}
.yc3{bottom:403.333333pt;}
.y8e{bottom:410.053333pt;}
.y6d{bottom:411.973333pt;}
.y57{bottom:413.893333pt;}
.yd6{bottom:418.373333pt;}
.y9e{bottom:422.533333pt;}
.y8d{bottom:433.413333pt;}
.y18{bottom:435.333333pt;}
.yc1{bottom:436.933333pt;}
.yd5{bottom:439.813333pt;}
.yb4{bottom:443.973333pt;}
.y9d{bottom:445.893333pt;}
.y55{bottom:447.813333pt;}
.y56{bottom:454.533333pt;}
.y8c{bottom:456.453333pt;}
.y17{bottom:458.373333pt;}
.yc0{bottom:460.293333pt;}
.yd4{bottom:461.253333pt;}
.yb3{bottom:467.333333pt;}
.y9c{bottom:468.933333pt;}
.y54{bottom:470.853333pt;}
.y8b{bottom:479.813333pt;}
.y3a{bottom:481.413333pt;}
.yd3{bottom:482.693333pt;}
.ybf{bottom:483.333333pt;}
.y16{bottom:492.293333pt;}
.y53{bottom:493.893333pt;}
.yb2{bottom:500.933333pt;}
.y8a{bottom:502.853333pt;}
.yd2{bottom:504.133333pt;}
.y39{bottom:504.773333pt;}
.ybe{bottom:506.373333pt;}
.y15{bottom:515.360000pt;}
.y52{bottom:517.280000pt;}
.yb1{bottom:524.320000pt;}
.yd1{bottom:525.600000pt;}
.y6b{bottom:525.920000pt;}
.y38{bottom:527.840000pt;}
.y6c{bottom:532.640000pt;}
.y9b{bottom:538.400000pt;}
.y14{bottom:538.720000pt;}
.y51{bottom:540.320000pt;}
.yd0{bottom:547.040000pt;}
.yb0{bottom:547.360000pt;}
.y6a{bottom:549.280000pt;}
.y37{bottom:550.880000pt;}
.yc2{bottom:557.600000pt;}
.y89{bottom:559.840000pt;}
.y13{bottom:561.760000pt;}
.y50{bottom:563.680000pt;}
.ycf{bottom:568.480000pt;}
.yaf{bottom:570.400000pt;}
.y69{bottom:572.320000pt;}
.y36{bottom:574.240000pt;}
.y88{bottom:582.880000pt;}
.y12{bottom:584.800000pt;}
.ybd{bottom:586.720000pt;}
.yce{bottom:590.240000pt;}
.yae{bottom:593.760000pt;}
.y68{bottom:595.680000pt;}
.y4f{bottom:597.280000pt;}
.y87{bottom:606.240000pt;}
.y11{bottom:608.160000pt;}
.ybc{bottom:609.760000pt;}
.ycd{bottom:611.680000pt;}
.yad{bottom:616.800000pt;}
.y67{bottom:618.720000pt;}
.y86{bottom:629.306667pt;}
.y35{bottom:631.226667pt;}
.ycc{bottom:633.146667pt;}
.y4e{bottom:637.946667pt;}
.yac{bottom:640.186667pt;}
.y66{bottom:641.786667pt;}
.y10{bottom:642.106667pt;}
.yba{bottom:643.706667pt;}
.ybb{bottom:650.426667pt;}
.y85{bottom:652.666667pt;}
.y4d{bottom:654.266667pt;}
.yab{bottom:663.226667pt;}
.y34{bottom:665.146667pt;}
.yb9{bottom:666.746667pt;}
.yf{bottom:674.746667pt;}
.y84{bottom:675.706667pt;}
.y4c{bottom:677.626667pt;}
.yaa{bottom:686.266667pt;}
.y33{bottom:688.186667pt;}
.yb8{bottom:690.106667pt;}
.y83{bottom:698.746667pt;}
.y4b{bottom:700.666667pt;}
.ye{bottom:705.146667pt;}
.ya9{bottom:709.626667pt;}
.y32{bottom:711.226667pt;}
.y82{bottom:722.106667pt;}
.y4a{bottom:724.026667pt;}
.ya8{bottom:732.666667pt;}
.y31{bottom:734.586667pt;}
.yd{bottom:736.866667pt;}
.y81{bottom:745.186667pt;}
.y49{bottom:747.106667pt;}
.ya7{bottom:756.066667pt;}
.y30{bottom:757.666667pt;}
.y48{bottom:770.146667pt;}
.yc{bottom:770.786667pt;}
.y80{bottom:779.106667pt;}
.y2f{bottom:781.026667pt;}
.yb7{bottom:791.586667pt;}
.y9a{bottom:793.506667pt;}
.yb{bottom:793.826667pt;}
.y7f{bottom:802.146667pt;}
.y2e{bottom:804.066667pt;}
.y65{bottom:810.786667pt;}
.yb6{bottom:814.626667pt;}
.y9{bottom:814.946667pt;}
.y99{bottom:816.546667pt;}
.y7e{bottom:825.506667pt;}
.y47{bottom:827.106667pt;}
.y8{bottom:832.866667pt;}
.y2d{bottom:837.986667pt;}
.y7{bottom:846.973333pt;}
.y7d{bottom:848.573333pt;}
.y46{bottom:850.493333pt;}
.y2c{bottom:861.053333pt;}
.y7c{bottom:871.613333pt;}
.y45{bottom:873.533333pt;}
.y2b{bottom:884.413333pt;}
.y6{bottom:889.213333pt;}
.y7b{bottom:894.973333pt;}
.y44{bottom:896.893333pt;}
.y5{bottom:904.573333pt;}
.y2a{bottom:907.453333pt;}
.y7a{bottom:918.013333pt;}
.y43{bottom:919.933333pt;}
.y4{bottom:922.813333pt;}
.y29{bottom:930.493333pt;}
.y79{bottom:941.373333pt;}
.y3{bottom:942.333333pt;}
.y28{bottom:953.853333pt;}
.y2{bottom:961.893333pt;}
.y78{bottom:964.453333pt;}
.y98{bottom:971.173333pt;}
.y27{bottom:976.933333pt;}
.y1{bottom:977.573333pt;}
.y41{bottom:987.493333pt;}
.y42{bottom:994.213333pt;}
.y26{bottom:1010.853333pt;}
.y77{bottom:1017.573333pt;}
.y25{bottom:1043.493333pt;}
.y24{bottom:1061.413333pt;}
.ha{height:24.991875pt;}
.h9{height:35.173750pt;}
.h5{height:36.931250pt;}
.hb{height:38.876250pt;}
.h7{height:46.781250pt;}
.hd{height:53.070000pt;}
.h8{height:53.686250pt;}
.hc{height:54.048750pt;}
.he{height:54.991250pt;}
.h6{height:55.027500pt;}
.h4{height:58.563750pt;}
.h2{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:94.431988pt;}
.x18{left:98.911988pt;}
.x27{left:103.391988pt;}
.x21{left:118.463988pt;}
.xa{left:138.946655pt;}
.x19{left:160.706655pt;}
.xf{left:179.586655pt;}
.xe{left:188.866655pt;}
.x10{left:197.213310pt;}
.x11{left:203.293322pt;}
.x1c{left:212.893322pt;}
.x26{left:217.373322pt;}
.x15{left:220.893310pt;}
.x16{left:226.973322pt;}
.x2{left:231.453322pt;}
.xb{left:245.533322pt;}
.x6{left:250.013322pt;}
.x24{left:276.613310pt;}
.xc{left:277.573322pt;}
.x17{left:286.533322pt;}
.x25{left:288.773322pt;}
.x14{left:304.453310pt;}
.x5{left:309.893322pt;}
.x2d{left:320.133322pt;}
.xd{left:325.253322pt;}
.x2a{left:326.533322pt;}
.x28{left:331.013310pt;}
.x4{left:341.253322pt;}
.x29{left:343.173322pt;}
.x3{left:358.239988pt;}
.x12{left:378.079976pt;}
.x9{left:381.919988pt;}
.x13{left:384.159988pt;}
.x8{left:396.959988pt;}
.x22{left:466.106643pt;}
.x23{left:472.186655pt;}
.x1d{left:533.026643pt;}
.x1e{left:539.106655pt;}
.x1f{left:579.106643pt;}
.x20{left:585.186655pt;}
.x1a{left:604.093310pt;}
.x1b{left:610.173322pt;}
.x2b{left:640.893310pt;}
.x2c{left:653.053322pt;}
.x1{left:699.493322pt;}
}




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