
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cccb70e31bb4b1574b299992.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_979aca37c54841c01942e9ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd681f885f85a4d4c26650b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5c160076d766e17f1ea78f9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d5a787869028ae6c4176f380.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_fd65c6b57e75b2ef2438e5e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a821bb5583c289abef506e4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.370200px;}
.lsc{letter-spacing:-0.326400px;}
.lsd{letter-spacing:-0.094800px;}
.ls12{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.010800px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.024960px;}
.ls13{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.107280px;}
.ls9{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.211680px;}
.ls15{letter-spacing:0.244080px;}
.ls3{letter-spacing:0.351360px;}
.ls7{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.385800px;}
.ls11{letter-spacing:0.666720px;}
.ls16{letter-spacing:0.704880px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.732960px;}
.ls17{letter-spacing:0.738000px;}
.ls2{letter-spacing:0.804960px;}
.ls1a{letter-spacing:1.080000px;}
.ls19{letter-spacing:47.466720px;}
.ls18{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsc{word-spacing:-13.885200px;}
.wsd{word-spacing:-13.186080px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.111200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.092400px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._8{margin-left:-3.955933px;}
._7{margin-left:-2.450399px;}
._0{margin-left:-1.159200px;}
._2{width:1.154760px;}
._4{width:2.218076px;}
._3{width:3.589315px;}
._1{width:5.054400px;}
._5{width:6.182998px;}
._a{width:7.290600px;}
._b{width:8.324646px;}
._d{width:9.382320px;}
._e{width:10.936080px;}
._c{width:12.075960px;}
._6{width:15.238800px;}
._9{width:17.212439px;}
._f{width:20.378160px;}
._10{width:21.713999px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.740000px;}
.y66{bottom:7.920000px;}
.y6f{bottom:7.950000px;}
.y2{bottom:73.296000px;}
.y27{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y114{bottom:115.596000px;}
.y83{bottom:122.796000px;}
.y3f{bottom:126.036000px;}
.y113{bottom:133.236000px;}
.yc5{bottom:133.416000px;}
.y6d{bottom:135.396000px;}
.yf0{bottom:136.656000px;}
.yc4{bottom:151.050000px;}
.yef{bottom:154.290000px;}
.y82{bottom:158.250000px;}
.y112{bottom:159.870000px;}
.y3e{bottom:161.670000px;}
.y6c{bottom:162.750000px;}
.yc3{bottom:168.690000px;}
.yee{bottom:171.750000px;}
.y111{bottom:177.510000px;}
.y3d{bottom:179.310000px;}
.y6a{bottom:190.110000px;}
.y81{bottom:193.890000px;}
.yed{bottom:198.390000px;}
.y110{bottom:203.970000px;}
.yc2{bottom:204.150000px;}
.ya6{bottom:206.670000px;}
.y3c{bottom:211.350000px;}
.y25{bottom:211.890000px;}
.yec{bottom:216.030000px;}
.y69{bottom:217.290000px;}
.y10f{bottom:221.610000px;}
.yc1{bottom:221.790000px;}
.y24{bottom:229.530000px;}
.yeb{bottom:233.670000px;}
.y95{bottom:233.850000px;}
.y10e{bottom:239.250000px;}
.yc0{bottom:239.430000px;}
.ya5{bottom:242.310000px;}
.y9b{bottom:243.570000px;}
.y68{bottom:244.650000px;}
.y23{bottom:247.170000px;}
.ybf{bottom:257.070000px;}
.yea{bottom:260.130000px;}
.y80{bottom:261.750000px;}
.y22{bottom:264.630000px;}
.ya4{bottom:265.530000px;}
.y10d{bottom:265.710000px;}
.y94{bottom:269.490000px;}
.y67{bottom:272.010000px;}
.ye9{bottom:277.770000px;}
.y9a{bottom:279.210000px;}
.y21{bottom:282.270000px;}
.y10c{bottom:283.350000px;}
.ybe{bottom:292.530000px;}
.ye8{bottom:295.410000px;}
.y65{bottom:299.370000px;}
.y20{bottom:299.910000px;}
.y93{bottom:301.710000px;}
.y10b{bottom:310.035000px;}
.ybd{bottom:310.215000px;}
.y99{bottom:311.475000px;}
.y1f{bottom:317.415000px;}
.ye7{bottom:322.095000px;}
.ybc{bottom:327.855000px;}
.y1e{bottom:335.055000px;}
.y10a{bottom:336.495000px;}
.ybb{bottom:345.315000px;}
.y64{bottom:348.195000px;}
.y1d{bottom:352.695000px;}
.y109{bottom:354.135000px;}
.yba{bottom:362.955000px;}
.y1c{bottom:370.335000px;}
.ye6{bottom:370.515000px;}
.yb9{bottom:380.595000px;}
.y108{bottom:380.775000px;}
.y63{bottom:383.655000px;}
.y1b{bottom:387.795000px;}
.ye5{bottom:397.335000px;}
.y107{bottom:398.415000px;}
.y62{bottom:401.295000px;}
.y1a{bottom:405.435000px;}
.yb8{bottom:416.055000px;}
.y61{bottom:418.935000px;}
.y19{bottom:423.075000px;}
.y106{bottom:424.875000px;}
.yb7{bottom:433.695000px;}
.ye4{bottom:434.595000px;}
.y60{bottom:436.575000px;}
.y105{bottom:442.515000px;}
.y18{bottom:449.715000px;}
.yb6{bottom:451.335000px;}
.yb5{bottom:468.795000px;}
.y104{bottom:468.975000px;}
.y5f{bottom:472.035000px;}
.ye3{bottom:483.015000px;}
.yb4{bottom:486.435000px;}
.y5e{bottom:489.675000px;}
.y103{bottom:495.615000px;}
.y17{bottom:498.495000px;}
.ye2{bottom:500.655000px;}
.y5d{bottom:507.315000px;}
.yb3{bottom:513.255000px;}
.ye1{bottom:518.295000px;}
.y102{bottom:530.895000px;}
.y5c{bottom:533.775000px;}
.y16{bottom:535.395000px;}
.ye0{bottom:535.935000px;}
.y15{bottom:553.035000px;}
.ydf{bottom:553.395000px;}
.y101{bottom:557.355000px;}
.yb2{bottom:561.675000px;}
.y5b{bottom:569.415000px;}
.y14{bottom:570.675000px;}
.y100{bottom:574.995000px;}
.yb1{bottom:579.315000px;}
.yde{bottom:580.215000px;}
.y5a{bottom:587.085000px;}
.y13{bottom:588.345000px;}
.yb0{bottom:596.805000px;}
.yff{bottom:601.665000px;}
.y59{bottom:604.725000px;}
.y12{bottom:605.985000px;}
.yaf{bottom:614.445000px;}
.yfe{bottom:619.305000px;}
.y58{bottom:622.185000px;}
.y11{bottom:623.445000px;}
.ya3{bottom:625.245000px;}
.ydd{bottom:628.665000px;}
.yae{bottom:632.085000px;}
.yfd{bottom:636.765000px;}
.y57{bottom:639.825000px;}
.y10{bottom:641.085000px;}
.ya2{bottom:642.885000px;}
.ydc{bottom:646.305000px;}
.yad{bottom:649.545000px;}
.yf{bottom:658.725000px;}
.ya1{bottom:660.525000px;}
.yfc{bottom:663.405000px;}
.ydb{bottom:663.765000px;}
.yac{bottom:667.185000px;}
.y56{bottom:675.285000px;}
.ya0{bottom:677.985000px;}
.yfb{bottom:681.045000px;}
.yda{bottom:681.405000px;}
.yab{bottom:684.825000px;}
.ye{bottom:685.365000px;}
.y55{bottom:692.925000px;}
.y3b{bottom:694.005000px;}
.y9f{bottom:695.625000px;}
.yd9{bottom:699.045000px;}
.yaa{bottom:702.285000px;}
.y98{bottom:704.085000px;}
.y7f{bottom:704.805000px;}
.y92{bottom:705.705000px;}
.yfa{bottom:707.505000px;}
.y54{bottom:710.565000px;}
.y3a{bottom:711.645000px;}
.yd8{bottom:716.505000px;}
.y9e{bottom:722.085000px;}
.y91{bottom:723.345000px;}
.y53{bottom:728.205000px;}
.ya9{bottom:728.925000px;}
.y39{bottom:729.285000px;}
.yd{bottom:733.785000px;}
.yd7{bottom:734.145000px;}
.y97{bottom:739.725000px;}
.y7e{bottom:740.445000px;}
.y90{bottom:740.985000px;}
.y38{bottom:746.925000px;}
.yf9{bottom:751.785000px;}
.y52{bottom:754.665000px;}
.y9d{bottom:757.725000px;}
.y7d{bottom:758.085000px;}
.ya8{bottom:764.385000px;}
.yf8{bottom:769.245000px;}
.yc{bottom:769.605000px;}
.y96{bottom:771.945000px;}
.y7c{bottom:775.725000px;}
.y8f{bottom:776.445000px;}
.y37{bottom:782.385000px;}
.yd6{bottom:787.245000px;}
.y9c{bottom:789.945000px;}
.y51{bottom:790.305000px;}
.y8e{bottom:794.085000px;}
.yf7{bottom:795.885000px;}
.ya7{bottom:796.605000px;}
.y36{bottom:800.025000px;}
.yd5{bottom:804.885000px;}
.yb{bottom:805.605000px;}
.y50{bottom:807.945000px;}
.y7b{bottom:811.185000px;}
.y8d{bottom:811.725000px;}
.yf6{bottom:813.525000px;}
.yd4{bottom:822.525000px;}
.y8c{bottom:829.185000px;}
.yf5{bottom:831.165000px;}
.y4f{bottom:834.585000px;}
.y35{bottom:835.665000px;}
.yd3{bottom:840.165000px;}
.ya{bottom:845.385000px;}
.y7a{bottom:846.825000px;}
.y34{bottom:853.305000px;}
.y8b{bottom:855.825000px;}
.yd2{bottom:857.625000px;}
.y9{bottom:863.430000px;}
.y79{bottom:864.510000px;}
.y11c{bottom:866.670000px;}
.y4e{bottom:867.030000px;}
.y33{bottom:870.810000px;}
.yd1{bottom:875.310000px;}
.y8{bottom:877.650000px;}
.y11b{bottom:884.310000px;}
.y78{bottom:890.970000px;}
.y8a{bottom:891.330000px;}
.y7{bottom:899.430000px;}
.yf4{bottom:901.770000px;}
.y4d{bottom:902.670000px;}
.y32{bottom:906.450000px;}
.y89{bottom:908.970000px;}
.yd0{bottom:910.770000px;}
.yf3{bottom:919.410000px;}
.y4c{bottom:920.310000px;}
.y31{bottom:924.090000px;}
.y77{bottom:926.610000px;}
.ycf{bottom:928.410000px;}
.y6{bottom:931.470000px;}
.y4b{bottom:937.950000px;}
.y30{bottom:941.550000px;}
.y76{bottom:944.250000px;}
.yce{bottom:946.050000px;}
.y5{bottom:950.010000px;}
.y11a{bottom:955.050000px;}
.y4a{bottom:955.410000px;}
.y2f{bottom:959.190000px;}
.y88{bottom:961.890000px;}
.ycd{bottom:963.690000px;}
.y75{bottom:970.710000px;}
.y119{bottom:972.690000px;}
.y49{bottom:973.050000px;}
.ycc{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.yf2{bottom:990.150000px;}
.y48{bottom:990.690000px;}
.y2e{bottom:994.830000px;}
.y87{bottom:997.350000px;}
.ycb{bottom:998.790000px;}
.y74{bottom:1005.810000px;}
.yf1{bottom:1007.790000px;}
.y47{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y2d{bottom:1012.470000px;}
.y86{bottom:1014.990000px;}
.y118{bottom:1016.790000px;}
.y73{bottom:1017.870000px;}
.y46{bottom:1025.790000px;}
.y2c{bottom:1029.930000px;}
.y85{bottom:1032.630000px;}
.yca{bottom:1034.430000px;}
.y45{bottom:1043.430000px;}
.y72{bottom:1045.230000px;}
.y2b{bottom:1047.570000px;}
.yc9{bottom:1052.070000px;}
.y84{bottom:1059.090000px;}
.y117{bottom:1060.890000px;}
.y44{bottom:1061.070000px;}
.y2a{bottom:1065.210000px;}
.yc8{bottom:1069.530000px;}
.y71{bottom:1072.410000px;}
.y43{bottom:1078.530000px;}
.yc7{bottom:1087.170000px;}
.y29{bottom:1091.670000px;}
.y42{bottom:1096.170000px;}
.y70{bottom:1099.770000px;}
.y116{bottom:1105.170000px;}
.y41{bottom:1113.810000px;}
.yc6{bottom:1122.630000px;}
.y115{bottom:1122.810000px;}
.y6e{bottom:1127.130000px;}
.y28{bottom:1127.490000px;}
.y40{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h10{height:26.460000px;}
.hf{height:26.640000px;}
.hd{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h11{height:41.974453px;}
.he{height:50.597578px;}
.h7{height:51.998203px;}
.h5{height:55.130625px;}
.h8{height:56.084062px;}
.h14{height:57.636562px;}
.h13{height:59.439023px;}
.hc{height:59.614102px;}
.h9{height:60.960938px;}
.h15{height:61.423863px;}
.hb{height:62.211094px;}
.h12{height:62.648438px;}
.ha{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:70.200000px;}
.w3{width:221.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:72.359987px;}
.x1b{left:111.275987px;}
.x18{left:198.029987px;}
.x2{left:201.449987px;}
.x10{left:227.009987px;}
.x14{left:233.669987px;}
.x12{left:239.609987px;}
.x1a{left:241.769987px;}
.xd{left:256.349987px;}
.x16{left:257.789987px;}
.x7{left:300.495000px;}
.xb{left:398.774987px;}
.xa{left:410.834987px;}
.x6{left:427.214987px;}
.xe{left:446.684987px;}
.x9{left:522.645000px;}
.x17{left:611.924987px;}
.x19{left:617.684987px;}
.x11{left:622.229987px;}
.x15{left:624.389987px;}
.xf{left:626.729987px;}
.x13{left:632.309987px;}
.x4{left:773.969987px;}
.x3{left:791.969987px;}
.xc{left:799.169987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.329067pt;}
.lsc{letter-spacing:-0.290133pt;}
.lsd{letter-spacing:-0.084267pt;}
.ls12{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.022187pt;}
.ls13{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.095360pt;}
.ls9{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.188160pt;}
.ls15{letter-spacing:0.216960pt;}
.ls3{letter-spacing:0.312320pt;}
.ls7{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.342933pt;}
.ls11{letter-spacing:0.592640pt;}
.ls16{letter-spacing:0.626560pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.651520pt;}
.ls17{letter-spacing:0.656000pt;}
.ls2{letter-spacing:0.715520pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls19{letter-spacing:42.192640pt;}
.ls18{letter-spacing:72.272640pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.342400pt;}
.wsd{word-spacing:-11.720960pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.654400pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.082133pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._8{margin-left:-3.516385pt;}
._7{margin-left:-2.178132pt;}
._0{margin-left:-1.030400pt;}
._2{width:1.026454pt;}
._4{width:1.971623pt;}
._3{width:3.190502pt;}
._1{width:4.492800pt;}
._5{width:5.495998pt;}
._a{width:6.480534pt;}
._b{width:7.399685pt;}
._d{width:8.339840pt;}
._e{width:9.720960pt;}
._c{width:10.734186pt;}
._6{width:13.545600pt;}
._9{width:15.299945pt;}
._f{width:18.113920pt;}
._10{width:19.301332pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.880000pt;}
.y66{bottom:7.040000pt;}
.y6f{bottom:7.066667pt;}
.y2{bottom:65.152000pt;}
.y27{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y114{bottom:102.752000pt;}
.y83{bottom:109.152000pt;}
.y3f{bottom:112.032000pt;}
.y113{bottom:118.432000pt;}
.yc5{bottom:118.592000pt;}
.y6d{bottom:120.352000pt;}
.yf0{bottom:121.472000pt;}
.yc4{bottom:134.266667pt;}
.yef{bottom:137.146667pt;}
.y82{bottom:140.666667pt;}
.y112{bottom:142.106667pt;}
.y3e{bottom:143.706667pt;}
.y6c{bottom:144.666667pt;}
.yc3{bottom:149.946667pt;}
.yee{bottom:152.666667pt;}
.y111{bottom:157.786667pt;}
.y3d{bottom:159.386667pt;}
.y6a{bottom:168.986667pt;}
.y81{bottom:172.346667pt;}
.yed{bottom:176.346667pt;}
.y110{bottom:181.306667pt;}
.yc2{bottom:181.466667pt;}
.ya6{bottom:183.706667pt;}
.y3c{bottom:187.866667pt;}
.y25{bottom:188.346667pt;}
.yec{bottom:192.026667pt;}
.y69{bottom:193.146667pt;}
.y10f{bottom:196.986667pt;}
.yc1{bottom:197.146667pt;}
.y24{bottom:204.026667pt;}
.yeb{bottom:207.706667pt;}
.y95{bottom:207.866667pt;}
.y10e{bottom:212.666667pt;}
.yc0{bottom:212.826667pt;}
.ya5{bottom:215.386667pt;}
.y9b{bottom:216.506667pt;}
.y68{bottom:217.466667pt;}
.y23{bottom:219.706667pt;}
.ybf{bottom:228.506667pt;}
.yea{bottom:231.226667pt;}
.y80{bottom:232.666667pt;}
.y22{bottom:235.226667pt;}
.ya4{bottom:236.026667pt;}
.y10d{bottom:236.186667pt;}
.y94{bottom:239.546667pt;}
.y67{bottom:241.786667pt;}
.ye9{bottom:246.906667pt;}
.y9a{bottom:248.186667pt;}
.y21{bottom:250.906667pt;}
.y10c{bottom:251.866667pt;}
.ybe{bottom:260.026667pt;}
.ye8{bottom:262.586667pt;}
.y65{bottom:266.106667pt;}
.y20{bottom:266.586667pt;}
.y93{bottom:268.186667pt;}
.y10b{bottom:275.586667pt;}
.ybd{bottom:275.746667pt;}
.y99{bottom:276.866667pt;}
.y1f{bottom:282.146667pt;}
.ye7{bottom:286.306667pt;}
.ybc{bottom:291.426667pt;}
.y1e{bottom:297.826667pt;}
.y10a{bottom:299.106667pt;}
.ybb{bottom:306.946667pt;}
.y64{bottom:309.506667pt;}
.y1d{bottom:313.506667pt;}
.y109{bottom:314.786667pt;}
.yba{bottom:322.626667pt;}
.y1c{bottom:329.186667pt;}
.ye6{bottom:329.346667pt;}
.yb9{bottom:338.306667pt;}
.y108{bottom:338.466667pt;}
.y63{bottom:341.026667pt;}
.y1b{bottom:344.706667pt;}
.ye5{bottom:353.186667pt;}
.y107{bottom:354.146667pt;}
.y62{bottom:356.706667pt;}
.y1a{bottom:360.386667pt;}
.yb8{bottom:369.826667pt;}
.y61{bottom:372.386667pt;}
.y19{bottom:376.066667pt;}
.y106{bottom:377.666667pt;}
.yb7{bottom:385.506667pt;}
.ye4{bottom:386.306667pt;}
.y60{bottom:388.066667pt;}
.y105{bottom:393.346667pt;}
.y18{bottom:399.746667pt;}
.yb6{bottom:401.186667pt;}
.yb5{bottom:416.706667pt;}
.y104{bottom:416.866667pt;}
.y5f{bottom:419.586667pt;}
.ye3{bottom:429.346667pt;}
.yb4{bottom:432.386667pt;}
.y5e{bottom:435.266667pt;}
.y103{bottom:440.546667pt;}
.y17{bottom:443.106667pt;}
.ye2{bottom:445.026667pt;}
.y5d{bottom:450.946667pt;}
.yb3{bottom:456.226667pt;}
.ye1{bottom:460.706667pt;}
.y102{bottom:471.906667pt;}
.y5c{bottom:474.466667pt;}
.y16{bottom:475.906667pt;}
.ye0{bottom:476.386667pt;}
.y15{bottom:491.586667pt;}
.ydf{bottom:491.906667pt;}
.y101{bottom:495.426667pt;}
.yb2{bottom:499.266667pt;}
.y5b{bottom:506.146667pt;}
.y14{bottom:507.266667pt;}
.y100{bottom:511.106667pt;}
.yb1{bottom:514.946667pt;}
.yde{bottom:515.746667pt;}
.y5a{bottom:521.853333pt;}
.y13{bottom:522.973333pt;}
.yb0{bottom:530.493333pt;}
.yff{bottom:534.813333pt;}
.y59{bottom:537.533333pt;}
.y12{bottom:538.653333pt;}
.yaf{bottom:546.173333pt;}
.yfe{bottom:550.493333pt;}
.y58{bottom:553.053333pt;}
.y11{bottom:554.173333pt;}
.ya3{bottom:555.773333pt;}
.ydd{bottom:558.813333pt;}
.yae{bottom:561.853333pt;}
.yfd{bottom:566.013333pt;}
.y57{bottom:568.733333pt;}
.y10{bottom:569.853333pt;}
.ya2{bottom:571.453333pt;}
.ydc{bottom:574.493333pt;}
.yad{bottom:577.373333pt;}
.yf{bottom:585.533333pt;}
.ya1{bottom:587.133333pt;}
.yfc{bottom:589.693333pt;}
.ydb{bottom:590.013333pt;}
.yac{bottom:593.053333pt;}
.y56{bottom:600.253333pt;}
.ya0{bottom:602.653333pt;}
.yfb{bottom:605.373333pt;}
.yda{bottom:605.693333pt;}
.yab{bottom:608.733333pt;}
.ye{bottom:609.213333pt;}
.y55{bottom:615.933333pt;}
.y3b{bottom:616.893333pt;}
.y9f{bottom:618.333333pt;}
.yd9{bottom:621.373333pt;}
.yaa{bottom:624.253333pt;}
.y98{bottom:625.853333pt;}
.y7f{bottom:626.493333pt;}
.y92{bottom:627.293333pt;}
.yfa{bottom:628.893333pt;}
.y54{bottom:631.613333pt;}
.y3a{bottom:632.573333pt;}
.yd8{bottom:636.893333pt;}
.y9e{bottom:641.853333pt;}
.y91{bottom:642.973333pt;}
.y53{bottom:647.293333pt;}
.ya9{bottom:647.933333pt;}
.y39{bottom:648.253333pt;}
.yd{bottom:652.253333pt;}
.yd7{bottom:652.573333pt;}
.y97{bottom:657.533333pt;}
.y7e{bottom:658.173333pt;}
.y90{bottom:658.653333pt;}
.y38{bottom:663.933333pt;}
.yf9{bottom:668.253333pt;}
.y52{bottom:670.813333pt;}
.y9d{bottom:673.533333pt;}
.y7d{bottom:673.853333pt;}
.ya8{bottom:679.453333pt;}
.yf8{bottom:683.773333pt;}
.yc{bottom:684.093333pt;}
.y96{bottom:686.173333pt;}
.y7c{bottom:689.533333pt;}
.y8f{bottom:690.173333pt;}
.y37{bottom:695.453333pt;}
.yd6{bottom:699.773333pt;}
.y9c{bottom:702.173333pt;}
.y51{bottom:702.493333pt;}
.y8e{bottom:705.853333pt;}
.yf7{bottom:707.453333pt;}
.ya7{bottom:708.093333pt;}
.y36{bottom:711.133333pt;}
.yd5{bottom:715.453333pt;}
.yb{bottom:716.093333pt;}
.y50{bottom:718.173333pt;}
.y7b{bottom:721.053333pt;}
.y8d{bottom:721.533333pt;}
.yf6{bottom:723.133333pt;}
.yd4{bottom:731.133333pt;}
.y8c{bottom:737.053333pt;}
.yf5{bottom:738.813333pt;}
.y4f{bottom:741.853333pt;}
.y35{bottom:742.813333pt;}
.yd3{bottom:746.813333pt;}
.ya{bottom:751.453333pt;}
.y7a{bottom:752.733333pt;}
.y34{bottom:758.493333pt;}
.y8b{bottom:760.733333pt;}
.yd2{bottom:762.333333pt;}
.y9{bottom:767.493333pt;}
.y79{bottom:768.453333pt;}
.y11c{bottom:770.373333pt;}
.y4e{bottom:770.693333pt;}
.y33{bottom:774.053333pt;}
.yd1{bottom:778.053333pt;}
.y8{bottom:780.133333pt;}
.y11b{bottom:786.053333pt;}
.y78{bottom:791.973333pt;}
.y8a{bottom:792.293333pt;}
.y7{bottom:799.493333pt;}
.yf4{bottom:801.573333pt;}
.y4d{bottom:802.373333pt;}
.y32{bottom:805.733333pt;}
.y89{bottom:807.973333pt;}
.yd0{bottom:809.573333pt;}
.yf3{bottom:817.253333pt;}
.y4c{bottom:818.053333pt;}
.y31{bottom:821.413333pt;}
.y77{bottom:823.653333pt;}
.ycf{bottom:825.253333pt;}
.y6{bottom:827.973333pt;}
.y4b{bottom:833.733333pt;}
.y30{bottom:836.933333pt;}
.y76{bottom:839.333333pt;}
.yce{bottom:840.933333pt;}
.y5{bottom:844.453333pt;}
.y11a{bottom:848.933333pt;}
.y4a{bottom:849.253333pt;}
.y2f{bottom:852.613333pt;}
.y88{bottom:855.013333pt;}
.ycd{bottom:856.613333pt;}
.y75{bottom:862.853333pt;}
.y119{bottom:864.613333pt;}
.y49{bottom:864.933333pt;}
.ycc{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.yf2{bottom:880.133333pt;}
.y48{bottom:880.613333pt;}
.y2e{bottom:884.293333pt;}
.y87{bottom:886.533333pt;}
.ycb{bottom:887.813333pt;}
.y74{bottom:894.053333pt;}
.yf1{bottom:895.813333pt;}
.y47{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y2d{bottom:899.973333pt;}
.y86{bottom:902.213333pt;}
.y118{bottom:903.813333pt;}
.y73{bottom:904.773333pt;}
.y46{bottom:911.813333pt;}
.y2c{bottom:915.493333pt;}
.y85{bottom:917.893333pt;}
.yca{bottom:919.493333pt;}
.y45{bottom:927.493333pt;}
.y72{bottom:929.093333pt;}
.y2b{bottom:931.173333pt;}
.yc9{bottom:935.173333pt;}
.y84{bottom:941.413333pt;}
.y117{bottom:943.013333pt;}
.y44{bottom:943.173333pt;}
.y2a{bottom:946.853333pt;}
.yc8{bottom:950.693333pt;}
.y71{bottom:953.253333pt;}
.y43{bottom:958.693333pt;}
.yc7{bottom:966.373333pt;}
.y29{bottom:970.373333pt;}
.y42{bottom:974.373333pt;}
.y70{bottom:977.573333pt;}
.y116{bottom:982.373333pt;}
.y41{bottom:990.053333pt;}
.yc6{bottom:997.893333pt;}
.y115{bottom:998.053333pt;}
.y6e{bottom:1001.893333pt;}
.y28{bottom:1002.213333pt;}
.y40{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h10{height:23.520000pt;}
.hf{height:23.680000pt;}
.hd{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h11{height:37.310625pt;}
.he{height:44.975625pt;}
.h7{height:46.220625pt;}
.h5{height:49.005000pt;}
.h8{height:49.852500pt;}
.h14{height:51.232500pt;}
.h13{height:52.834688pt;}
.hc{height:52.990313pt;}
.h9{height:54.187500pt;}
.h15{height:54.598989pt;}
.hb{height:55.298750pt;}
.h12{height:55.687500pt;}
.ha{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:62.400000pt;}
.w3{width:196.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:64.319988pt;}
.x1b{left:98.911988pt;}
.x18{left:176.026655pt;}
.x2{left:179.066655pt;}
.x10{left:201.786655pt;}
.x14{left:207.706655pt;}
.x12{left:212.986655pt;}
.x1a{left:214.906655pt;}
.xd{left:227.866655pt;}
.x16{left:229.146655pt;}
.x7{left:267.106667pt;}
.xb{left:354.466655pt;}
.xa{left:365.186655pt;}
.x6{left:379.746655pt;}
.xe{left:397.053322pt;}
.x9{left:464.573333pt;}
.x17{left:543.933322pt;}
.x19{left:549.053322pt;}
.x11{left:553.093322pt;}
.x15{left:555.013322pt;}
.xf{left:557.093322pt;}
.x13{left:562.053322pt;}
.x4{left:687.973322pt;}
.x3{left:703.973322pt;}
.xc{left:710.373322pt;}
}




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