
    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_b27a621342b6b894907213d5.woff')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_4d3f29143e35872badfb3589.woff')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_60dc37a025b9b8c9bdb969e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_ef2093d248d1633a5e82d7fa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_11192acb79bf6025f3445be7.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1459b094a89c350b79186ebc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f2d4a98f86a54135a48eecbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_4f475bbfa475131c807cae32.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_081ea354c7bfe96177daaaf9.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4d29c288e1f989986f11708b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_405bd80d3eb3bc6aaea389ca.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_3a08d09ad460e58b20c1ce86.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_bd1966e164f576e37ca069e4.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_3c9e09ef3a672db0c26c60d1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_5d0136fd8993360155793a96.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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:ff12;src:url('chunks/assets/font_7811c0fe63245198c6b7c6d8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.906250;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:ff13;src:url('chunks/assets/font_0e64b426c563217e7342009a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.929688;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls12{letter-spacing:-2.724000px;}
.ls16{letter-spacing:-2.250000px;}
.ls17{letter-spacing:-1.740000px;}
.ls13{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.378000px;}
.ls10{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.099000px;}
.lsf{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.219000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls8{letter-spacing:1.842000px;}
.ls3{letter-spacing:1.906500px;}
.ls4{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls15{letter-spacing:2.164500px;}
.lsa{letter-spacing:2.250000px;}
.lse{letter-spacing:2.370000px;}
.ls1a{letter-spacing:2.400000px;}
.lsc{letter-spacing:2.430000px;}
.ls18{letter-spacing:4.500000px;}
.ls1b{letter-spacing:4.620000px;}
.ls19{letter-spacing:4.680000px;}
.ls9{letter-spacing:4.779000px;}
.ls1d{letter-spacing:15.387000px;}
.ls1c{letter-spacing:46.887000px;}
.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;}
}
.ws8{word-spacing:-58.500000px;}
.ws9{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-15.063000px;}
.ws7{word-spacing:-14.625000px;}
.ws5{word-spacing:-13.221000px;}
.wsd{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wsb{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._9{margin-left:-11.040150px;}
._d{margin-left:-9.827400px;}
._e{margin-left:-8.131500px;}
._c{margin-left:-6.384150px;}
._b{margin-left:-5.310300px;}
._a{margin-left:-4.245150px;}
._2{margin-left:-2.592000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._7{width:3.600000px;}
._4{width:4.890000px;}
._3{width:6.360000px;}
._6{width:8.028000px;}
._f{width:9.729000px;}
._8{width:10.878000px;}
._18{width:12.654000px;}
._10{width:14.491500px;}
._5{width:16.452000px;}
._12{width:18.234000px;}
._17{width:20.632500px;}
._13{width:22.365000px;}
._16{width:23.620500px;}
._1a{width:25.323150px;}
._14{width:26.649000px;}
._11{width:31.488150px;}
._15{width:35.750850px;}
._19{width:39.757500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y39{bottom:3.390000px;}
.y1a{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.yc{bottom:13.545000px;}
.y4{bottom:16.875000px;}
.y2{bottom:20.250000px;}
.y38{bottom:22.500000px;}
.y3b{bottom:25.875000px;}
.y19{bottom:28.170000px;}
.yb{bottom:30.420000px;}
.y37{bottom:40.545000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.200000px;}
.y5{bottom:57.412500px;}
.y36{bottom:58.545000px;}
.y17{bottom:61.920000px;}
.y9{bottom:73.200000px;}
.y29{bottom:76.590000px;}
.y16{bottom:77.715000px;}
.y1{bottom:79.950000px;}
.y28{bottom:91.215000px;}
.y8{bottom:93.480000px;}
.y15{bottom:94.590000px;}
.y35{bottom:95.700000px;}
.y14{bottom:104.715000px;}
.y27{bottom:110.340000px;}
.y7{bottom:110.355000px;}
.y34{bottom:113.715000px;}
.y13{bottom:122.745000px;}
.y26{bottom:128.370000px;}
.y33{bottom:131.745000px;}
.ya5{bottom:135.112500px;}
.y72{bottom:136.237500px;}
.y4b{bottom:137.362500px;}
.y12{bottom:141.870000px;}
.y25{bottom:146.370000px;}
.y32{bottom:149.745000px;}
.y71{bottom:153.105000px;}
.y4a{bottom:155.370000px;}
.y24{bottom:165.540000px;}
.y11{bottom:167.790000px;}
.y31{bottom:168.915000px;}
.ya4{bottom:170.025000px;}
.y70{bottom:171.150000px;}
.y49{bottom:174.525000px;}
.y23{bottom:182.415000px;}
.ya3{bottom:186.900000px;}
.y30{bottom:186.915000px;}
.y6f{bottom:188.025000px;}
.y10{bottom:192.540000px;}
.y48{bottom:194.775000px;}
.y22{bottom:200.415000px;}
.y2f{bottom:204.945000px;}
.y47{bottom:212.820000px;}
.y21{bottom:217.320000px;}
.ya2{bottom:221.820000px;}
.y6e{bottom:222.945000px;}
.y2e{bottom:224.070000px;}
.y46{bottom:229.695000px;}
.y20{bottom:235.320000px;}
.y6d{bottom:236.445000px;}
.ya1{bottom:238.695000px;}
.y2d{bottom:242.070000px;}
.y45{bottom:247.725000px;}
.y1f{bottom:254.475000px;}
.ya0{bottom:256.725000px;}
.y2c{bottom:260.115000px;}
.y44{bottom:265.725000px;}
.y9f{bottom:273.600000px;}
.y2b{bottom:278.100000px;}
.y1e{bottom:282.600000px;}
.y43{bottom:283.725000px;}
.y9e{bottom:290.505000px;}
.y2a{bottom:297.270000px;}
.y1d{bottom:300.645000px;}
.y42{bottom:301.770000px;}
.y9d{bottom:308.520000px;}
.y41{bottom:322.020000px;}
.y9c{bottom:325.395000px;}
.y40{bottom:340.050000px;}
.y9b{bottom:342.300000px;}
.y3f{bottom:356.925000px;}
.y9a{bottom:360.300000px;}
.y3e{bottom:374.955000px;}
.y99{bottom:377.205000px;}
.y3d{bottom:391.830000px;}
.y98{bottom:394.080000px;}
.y3c{bottom:408.705000px;}
.y97{bottom:412.125000px;}
.y3a{bottom:422.250000px;}
.y96{bottom:429.000000px;}
.y95{bottom:445.875000px;}
.y1c{bottom:459.405000px;}
.y94{bottom:463.920000px;}
.y93{bottom:480.795000px;}
.y92{bottom:497.700000px;}
.y91{bottom:515.700000px;}
.y90{bottom:532.575000px;}
.y8f{bottom:549.495000px;}
.y6c{bottom:557.370000px;}
.y8e{bottom:568.605000px;}
.y6b{bottom:571.980000px;}
.y8d{bottom:586.650000px;}
.y6a{bottom:590.025000px;}
.y8c{bottom:603.525000px;}
.y69{bottom:608.025000px;}
.y8b{bottom:621.570000px;}
.y68{bottom:626.070000px;}
.y8a{bottom:638.445000px;}
.y67{bottom:644.070000px;}
.y89{bottom:656.445000px;}
.y66{bottom:662.100000px;}
.y88{bottom:676.725000px;}
.y65{bottom:680.100000px;}
.y87{bottom:694.725000px;}
.y64{bottom:701.475000px;}
.y86{bottom:711.630000px;}
.y63{bottom:718.380000px;}
.y85{bottom:730.755000px;}
.y62{bottom:736.395000px;}
.y84{bottom:748.800000px;}
.y61{bottom:753.300000px;}
.y83{bottom:765.675000px;}
.y60{bottom:770.175000px;}
.y1b{bottom:771.300000px;}
.y82{bottom:783.675000px;}
.y5f{bottom:788.205000px;}
.yf{bottom:800.580000px;}
.y81{bottom:801.705000px;}
.y5e{bottom:805.080000px;}
.y80{bottom:819.705000px;}
.y5d{bottom:821.955000px;}
.y7f{bottom:837.750000px;}
.y5c{bottom:840.000000px;}
.y7e{bottom:854.625000px;}
.y5b{bottom:856.875000px;}
.y7d{bottom:872.670000px;}
.y5a{bottom:873.795000px;}
.y59{bottom:891.795000px;}
.yb1{bottom:899.670000px;}
.y58{bottom:908.670000px;}
.yb0{bottom:917.700000px;}
.y57{bottom:925.575000px;}
.yaf{bottom:934.575000px;}
.y56{bottom:943.575000px;}
.yae{bottom:951.450000px;}
.y55{bottom:960.495000px;}
.y7c{bottom:963.870000px;}
.yad{bottom:969.495000px;}
.y54{bottom:977.370000px;}
.y7b{bottom:981.870000px;}
.yac{bottom:986.370000px;}
.y53{bottom:995.400000px;}
.y7a{bottom:998.775000px;}
.yab{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.y52{bottom:1015.650000px;}
.y79{bottom:1016.775000px;}
.yaa{bottom:1021.275000px;}
.y6{bottom:1033.650000px;}
.y78{bottom:1034.775000px;}
.ya9{bottom:1038.195000px;}
.y51{bottom:1050.570000px;}
.y77{bottom:1052.820000px;}
.ya8{bottom:1055.070000px;}
.y50{bottom:1068.570000px;}
.y76{bottom:1070.820000px;}
.ya7{bottom:1073.070000px;}
.y4f{bottom:1086.600000px;}
.y75{bottom:1088.850000px;}
.ya6{bottom:1089.975000px;}
.y4e{bottom:1104.600000px;}
.y74{bottom:1106.850000px;}
.y4d{bottom:1123.755000px;}
.y73{bottom:1124.880000px;}
.y4c{bottom:1141.755000px;}
.h1e{height:16.875000px;}
.h1f{height:16.912500px;}
.hb{height:25.875000px;}
.h14{height:29.287500px;}
.h2{height:32.625000px;}
.h13{height:33.543633px;}
.h12{height:33.723633px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1a{height:37.162500px;}
.h1b{height:40.847168px;}
.h1c{height:41.275635px;}
.h21{height:42.589600px;}
.hd{height:43.075195px;}
.h19{height:43.288330px;}
.ha{height:43.875000px;}
.h1d{height:47.531250px;}
.h20{height:48.216797px;}
.h17{height:49.234131px;}
.h18{height:51.158936px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:207.180000px;}
.h16{height:311.895000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w4{width:152.055000px;}
.w9{width:181.350000px;}
.wa{width:182.475000px;}
.wb{width:182.520000px;}
.w7{width:224.145000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.xd{left:11.250000px;}
.x15{left:12.405000px;}
.x10{left:45.037500px;}
.x12{left:61.950000px;}
.x11{left:68.700000px;}
.x1{left:81.112500px;}
.x16{left:82.237500px;}
.xf{left:93.487500px;}
.x5{left:97.987500px;}
.x1d{left:108.149987px;}
.xe{left:117.157500px;}
.x13{left:214.012500px;}
.x6{left:233.175000px;}
.x17{left:264.720000px;}
.x9{left:273.705000px;}
.x1b{left:283.874987px;}
.x14{left:305.250000px;}
.x7{left:332.295000px;}
.xb{left:348.075000px;}
.x8{left:351.450000px;}
.xc{left:364.957500px;}
.x1c{left:397.649987px;}
.xa{left:437.055000px;}
.x18{left:447.195000px;}
.x19{left:629.655000px;}
.x1a{left:709.649987px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls12{letter-spacing:-2.421333pt;}
.ls16{letter-spacing:-2.000000pt;}
.ls17{letter-spacing:-1.546667pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.088000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.194667pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls8{letter-spacing:1.637333pt;}
.ls3{letter-spacing:1.694667pt;}
.ls4{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls15{letter-spacing:1.924000pt;}
.lsa{letter-spacing:2.000000pt;}
.lse{letter-spacing:2.106667pt;}
.ls1a{letter-spacing:2.133333pt;}
.lsc{letter-spacing:2.160000pt;}
.ls18{letter-spacing:4.000000pt;}
.ls1b{letter-spacing:4.106667pt;}
.ls19{letter-spacing:4.160000pt;}
.ls9{letter-spacing:4.248000pt;}
.ls1d{letter-spacing:13.677333pt;}
.ls1c{letter-spacing:41.677333pt;}
.ws8{word-spacing:-52.000000pt;}
.ws9{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.389333pt;}
.ws7{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsd{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wsb{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._9{margin-left:-9.813467pt;}
._d{margin-left:-8.735467pt;}
._e{margin-left:-7.228000pt;}
._c{margin-left:-5.674800pt;}
._b{margin-left:-4.720267pt;}
._a{margin-left:-3.773467pt;}
._2{margin-left:-2.304000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._7{width:3.200000pt;}
._4{width:4.346667pt;}
._3{width:5.653333pt;}
._6{width:7.136000pt;}
._f{width:8.648000pt;}
._8{width:9.669333pt;}
._18{width:11.248000pt;}
._10{width:12.881333pt;}
._5{width:14.624000pt;}
._12{width:16.208000pt;}
._17{width:18.340000pt;}
._13{width:19.880000pt;}
._16{width:20.996000pt;}
._1a{width:22.509467pt;}
._14{width:23.688000pt;}
._11{width:27.989467pt;}
._15{width:31.778533pt;}
._19{width:35.340000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y39{bottom:3.013333pt;}
.y1a{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.yc{bottom:12.040000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:18.000000pt;}
.y38{bottom:20.000000pt;}
.y3b{bottom:23.000000pt;}
.y19{bottom:25.040000pt;}
.yb{bottom:27.040000pt;}
.y37{bottom:36.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.066667pt;}
.y5{bottom:51.033333pt;}
.y36{bottom:52.040000pt;}
.y17{bottom:55.040000pt;}
.y9{bottom:65.066667pt;}
.y29{bottom:68.080000pt;}
.y16{bottom:69.080000pt;}
.y1{bottom:71.066667pt;}
.y28{bottom:81.080000pt;}
.y8{bottom:83.093333pt;}
.y15{bottom:84.080000pt;}
.y35{bottom:85.066667pt;}
.y14{bottom:93.080000pt;}
.y27{bottom:98.080000pt;}
.y7{bottom:98.093333pt;}
.y34{bottom:101.080000pt;}
.y13{bottom:109.106667pt;}
.y26{bottom:114.106667pt;}
.y33{bottom:117.106667pt;}
.ya5{bottom:120.100000pt;}
.y72{bottom:121.100000pt;}
.y4b{bottom:122.100000pt;}
.y12{bottom:126.106667pt;}
.y25{bottom:130.106667pt;}
.y32{bottom:133.106667pt;}
.y71{bottom:136.093333pt;}
.y4a{bottom:138.106667pt;}
.y24{bottom:147.146667pt;}
.y11{bottom:149.146667pt;}
.y31{bottom:150.146667pt;}
.ya4{bottom:151.133333pt;}
.y70{bottom:152.133333pt;}
.y49{bottom:155.133333pt;}
.y23{bottom:162.146667pt;}
.ya3{bottom:166.133333pt;}
.y30{bottom:166.146667pt;}
.y6f{bottom:167.133333pt;}
.y10{bottom:171.146667pt;}
.y48{bottom:173.133333pt;}
.y22{bottom:178.146667pt;}
.y2f{bottom:182.173333pt;}
.y47{bottom:189.173333pt;}
.y21{bottom:193.173333pt;}
.ya2{bottom:197.173333pt;}
.y6e{bottom:198.173333pt;}
.y2e{bottom:199.173333pt;}
.y46{bottom:204.173333pt;}
.y20{bottom:209.173333pt;}
.y6d{bottom:210.173333pt;}
.ya1{bottom:212.173333pt;}
.y2d{bottom:215.173333pt;}
.y45{bottom:220.200000pt;}
.y1f{bottom:226.200000pt;}
.ya0{bottom:228.200000pt;}
.y2c{bottom:231.213333pt;}
.y44{bottom:236.200000pt;}
.y9f{bottom:243.200000pt;}
.y2b{bottom:247.200000pt;}
.y1e{bottom:251.200000pt;}
.y43{bottom:252.200000pt;}
.y9e{bottom:258.226667pt;}
.y2a{bottom:264.240000pt;}
.y1d{bottom:267.240000pt;}
.y42{bottom:268.240000pt;}
.y9d{bottom:274.240000pt;}
.y41{bottom:286.240000pt;}
.y9c{bottom:289.240000pt;}
.y40{bottom:302.266667pt;}
.y9b{bottom:304.266667pt;}
.y3f{bottom:317.266667pt;}
.y9a{bottom:320.266667pt;}
.y3e{bottom:333.293333pt;}
.y99{bottom:335.293333pt;}
.y3d{bottom:348.293333pt;}
.y98{bottom:350.293333pt;}
.y3c{bottom:363.293333pt;}
.y97{bottom:366.333333pt;}
.y3a{bottom:375.333333pt;}
.y96{bottom:381.333333pt;}
.y95{bottom:396.333333pt;}
.y1c{bottom:408.360000pt;}
.y94{bottom:412.373333pt;}
.y93{bottom:427.373333pt;}
.y92{bottom:442.400000pt;}
.y91{bottom:458.400000pt;}
.y90{bottom:473.400000pt;}
.y8f{bottom:488.440000pt;}
.y6c{bottom:495.440000pt;}
.y8e{bottom:505.426667pt;}
.y6b{bottom:508.426667pt;}
.y8d{bottom:521.466667pt;}
.y6a{bottom:524.466667pt;}
.y8c{bottom:536.466667pt;}
.y69{bottom:540.466667pt;}
.y8b{bottom:552.506667pt;}
.y68{bottom:556.506667pt;}
.y8a{bottom:567.506667pt;}
.y67{bottom:572.506667pt;}
.y89{bottom:583.506667pt;}
.y66{bottom:588.533333pt;}
.y88{bottom:601.533333pt;}
.y65{bottom:604.533333pt;}
.y87{bottom:617.533333pt;}
.y64{bottom:623.533333pt;}
.y86{bottom:632.560000pt;}
.y63{bottom:638.560000pt;}
.y85{bottom:649.560000pt;}
.y62{bottom:654.573333pt;}
.y84{bottom:665.600000pt;}
.y61{bottom:669.600000pt;}
.y83{bottom:680.600000pt;}
.y60{bottom:684.600000pt;}
.y1b{bottom:685.600000pt;}
.y82{bottom:696.600000pt;}
.y5f{bottom:700.626667pt;}
.yf{bottom:711.626667pt;}
.y81{bottom:712.626667pt;}
.y5e{bottom:715.626667pt;}
.y80{bottom:728.626667pt;}
.y5d{bottom:730.626667pt;}
.y7f{bottom:744.666667pt;}
.y5c{bottom:746.666667pt;}
.y7e{bottom:759.666667pt;}
.y5b{bottom:761.666667pt;}
.y7d{bottom:775.706667pt;}
.y5a{bottom:776.706667pt;}
.y59{bottom:792.706667pt;}
.yb1{bottom:799.706667pt;}
.y58{bottom:807.706667pt;}
.yb0{bottom:815.733333pt;}
.y57{bottom:822.733333pt;}
.yaf{bottom:830.733333pt;}
.y56{bottom:838.733333pt;}
.yae{bottom:845.733333pt;}
.y55{bottom:853.773333pt;}
.y7c{bottom:856.773333pt;}
.yad{bottom:861.773333pt;}
.y54{bottom:868.773333pt;}
.y7b{bottom:872.773333pt;}
.yac{bottom:876.773333pt;}
.y53{bottom:884.800000pt;}
.y7a{bottom:887.800000pt;}
.yab{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.y52{bottom:902.800000pt;}
.y79{bottom:903.800000pt;}
.yaa{bottom:907.800000pt;}
.y6{bottom:918.800000pt;}
.y78{bottom:919.800000pt;}
.ya9{bottom:922.840000pt;}
.y51{bottom:933.840000pt;}
.y77{bottom:935.840000pt;}
.ya8{bottom:937.840000pt;}
.y50{bottom:949.840000pt;}
.y76{bottom:951.840000pt;}
.ya7{bottom:953.840000pt;}
.y4f{bottom:965.866667pt;}
.y75{bottom:967.866667pt;}
.ya6{bottom:968.866667pt;}
.y4e{bottom:981.866667pt;}
.y74{bottom:983.866667pt;}
.y4d{bottom:998.893333pt;}
.y73{bottom:999.893333pt;}
.y4c{bottom:1014.893333pt;}
.h1e{height:15.000000pt;}
.h1f{height:15.033333pt;}
.hb{height:23.000000pt;}
.h14{height:26.033333pt;}
.h2{height:29.000000pt;}
.h13{height:29.816563pt;}
.h12{height:29.976563pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1a{height:33.033333pt;}
.h1b{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h21{height:37.857422pt;}
.hd{height:38.289062pt;}
.h19{height:38.478516pt;}
.ha{height:39.000000pt;}
.h1d{height:42.250000pt;}
.h20{height:42.859375pt;}
.h17{height:43.763672pt;}
.h18{height:45.474609pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:184.160000pt;}
.h16{height:277.240000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w4{width:135.160000pt;}
.w9{width:161.200000pt;}
.wa{width:162.200000pt;}
.wb{width:162.240000pt;}
.w7{width:199.240000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.xd{left:10.000000pt;}
.x15{left:11.026667pt;}
.x10{left:40.033333pt;}
.x12{left:55.066667pt;}
.x11{left:61.066667pt;}
.x1{left:72.100000pt;}
.x16{left:73.100000pt;}
.xf{left:83.100000pt;}
.x5{left:87.100000pt;}
.x1d{left:96.133322pt;}
.xe{left:104.140000pt;}
.x13{left:190.233333pt;}
.x6{left:207.266667pt;}
.x17{left:235.306667pt;}
.x9{left:243.293333pt;}
.x1b{left:252.333322pt;}
.x14{left:271.333333pt;}
.x7{left:295.373333pt;}
.xb{left:309.400000pt;}
.x8{left:312.400000pt;}
.xc{left:324.406667pt;}
.x1c{left:353.466655pt;}
.xa{left:388.493333pt;}
.x18{left:397.506667pt;}
.x19{left:559.693333pt;}
.x1a{left:630.799988pt;}
.x3{left:657.840000pt;}
}




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