
    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_7b432ebe1b6f77fd78b360c9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6b858a826e14a78433cbc172.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bc5e337a4ca9bad020e100d9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_82c47b954122e3a65b239da2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_413c74c77708315653d14dc0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_406aff8cc3d7ff3f196f32f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.834961;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_a094fa703472ae914e681164.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_87a46bf24841d4e32f2d8788.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_e8a54296f5cd349a2627f4dc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.825195;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_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad2850dd190279ef32b45d10.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8ca3a7c9357c2d619cdffeff.woff')format("woff");}.ffc{font-family:ffc;line-height:0.731445;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_6cdd1725ba508910167a2bf0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.715820;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_7bfb70041343061c88928a4d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e27868835c263c207fae18d2.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2225cf1ce7f9d4412ddd6b55.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b21b574028c346d87c7a9b82.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_892fe5b59c5afcd8cb83b0fe.woff')format("woff");}.ff13{font-family:ff13;line-height:0.905762;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_606e13ca494fac8eec94ad67.woff')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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:ff15;src:url('chunks/assets/font_e41360febc2e7e20b005fdd8.woff')format("woff");}.ff15{font-family:ff15;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;}
.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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.003906px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:22.500000px;}
.ls5{letter-spacing:1460.918521px;}
.ls3{letter-spacing:1762.634971px;}
.ls4{letter-spacing:2084.822164px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.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;}
}
.ws2{word-spacing:-47.250000px;}
.ws7{word-spacing:-29.999999px;}
.ws0{word-spacing:-14.414062px;}
.ws4{word-spacing:-13.599610px;}
.ws3{word-spacing:-13.212891px;}
.ws6{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.648438px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-7.910162px;}
._2{margin-left:-4.921875px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.002557px;}
._4{width:4.500001px;}
._8{width:9.000001px;}
._7{width:13.289046px;}
._5{width:17.648441px;}
._e{width:18.703122px;}
._c{width:22.500006px;}
._b{width:27.000001px;}
._d{width:31.500004px;}
._a{width:35.999970px;}
._9{width:40.500002px;}
._10{width:44.507812px;}
._f{width:49.798827px;}
._3{width:2229.138593px;}
.fc7{color:rgb(3,29,57);}
.fc8{color:rgb(25,96,150);}
.fc6{color:rgb(255,153,0);}
.fc4{color:rgb(17,85,204);}
.fc1{color:rgb(244,125,32);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.028320px;}
.y1f{bottom:9.921295px;}
.y2e{bottom:9.921303px;}
.y1b{bottom:9.921340px;}
.y12{bottom:9.921387px;}
.y2b{bottom:9.921390px;}
.y26{bottom:9.921401px;}
.yb{bottom:9.921432px;}
.y10{bottom:9.921438px;}
.y58{bottom:11.768547px;}
.y54{bottom:12.708978px;}
.y49{bottom:12.708981px;}
.y43{bottom:12.708985px;}
.y61{bottom:12.708993px;}
.y46{bottom:12.708996px;}
.y6e{bottom:13.514649px;}
.y4c{bottom:16.004887px;}
.y3f{bottom:18.565258px;}
.y41{bottom:18.565430px;}
.y3b{bottom:18.565433px;}
.y2a{bottom:29.696685px;}
.yf{bottom:29.696778px;}
.y31{bottom:31.458988px;}
.y25{bottom:32.696876px;}
.y6c{bottom:33.093750px;}
.y57{bottom:33.407223px;}
.y53{bottom:34.681638px;}
.y45{bottom:34.681641px;}
.y60{bottom:34.681653px;}
.y33{bottom:39.149963px;}
.y2{bottom:39.150008px;}
.y71{bottom:39.150146px;}
.y3e{bottom:40.537903px;}
.y4b{bottom:41.273437px;}
.y3a{bottom:43.537913px;}
.y56{bottom:55.379883px;}
.y24{bottom:55.472261px;}
.y52{bottom:56.654298px;}
.y3d{bottom:62.510743px;}
.y30{bottom:62.840332px;}
.y39{bottom:65.510558px;}
.y23{bottom:78.247571px;}
.y2f{bottom:83.538577px;}
.y38{bottom:87.483398px;}
.y22{bottom:101.023046px;}
.yb5{bottom:109.820430px;}
.y21{bottom:123.798340px;}
.y69{bottom:159.595091px;}
.y2d{bottom:182.390073px;}
.y68{bottom:183.307063px;}
.ya0{bottom:190.513918px;}
.y2c{bottom:202.165464px;}
.y9f{bottom:212.486578px;}
.y67{bottom:223.279723px;}
.y29{bottom:229.065861px;}
.y9e{bottom:234.459234px;}
.y66{bottom:241.543398px;}
.y28{bottom:248.841251px;}
.y9d{bottom:256.431890px;}
.y27{bottom:275.741634px;}
.y9c{bottom:278.404546px;}
.y65{bottom:280.391058px;}
.y9b{bottom:300.377203px;}
.y20{bottom:302.641931px;}
.y64{bottom:319.238708px;}
.y9a{bottom:322.349848px;}
.y63{bottom:341.211363px;}
.y99{bottom:344.322508px;}
.y98{bottom:366.295168px;}
.y5f{bottom:380.059015px;}
.y97{bottom:388.267828px;}
.yb4{bottom:389.900390px;}
.y62{bottom:402.031673px;}
.y96{bottom:410.240473px;}
.yb3{bottom:411.873046px;}
.y1e{bottom:416.518976px;}
.y5e{bottom:424.004328px;}
.y95{bottom:432.213133px;}
.yb2{bottom:433.845703px;}
.y1d{bottom:443.419374px;}
.y94{bottom:454.185796px;}
.yb1{bottom:455.818363px;}
.y5d{bottom:462.851993px;}
.y1c{bottom:470.319759px;}
.y93{bottom:476.158453px;}
.yb0{bottom:477.791008px;}
.y5c{bottom:484.824648px;}
.y92{bottom:497.728631px;}
.yaf{bottom:499.763668px;}
.y1a{bottom:500.694761px;}
.y91{bottom:519.884032px;}
.yae{bottom:521.736328px;}
.y5b{bottom:523.672296px;}
.y5a{bottom:530.264093px;}
.yad{bottom:543.708988px;}
.y19{bottom:549.040463px;}
.y59{bottom:552.236748px;}
.y90{bottom:565.569580px;}
.yac{bottom:565.681633px;}
.y8f{bottom:587.542237px;}
.yab{bottom:587.654293px;}
.y51{bottom:591.084416px;}
.y55{bottom:592.358831px;}
.y18{bottom:596.337337px;}
.yaa{bottom:609.223391px;}
.y8e{bottom:609.514893px;}
.y50{bottom:613.057073px;}
.ya9{bottom:629.364986px;}
.y8d{bottom:631.487549px;}
.y4f{bottom:635.029728px;}
.y17{bottom:641.620016px;}
.ya8{bottom:649.507331px;}
.y8c{bottom:653.460205px;}
.y15{bottom:667.455453px;}
.ya7{bottom:669.648191px;}
.y4e{bottom:673.877378px;}
.y8b{bottom:675.432864px;}
.y16{bottom:687.230844px;}
.ya6{bottom:689.789801px;}
.y4d{bottom:695.850033px;}
.y8a{bottom:697.405520px;}
.ya5{bottom:710.334226px;}
.y14{bottom:714.131244px;}
.y89{bottom:719.378176px;}
.ya4{bottom:732.306883px;}
.y4a{bottom:734.697696px;}
.y13{bottom:741.031629px;}
.y48{bottom:741.289493px;}
.y88{bottom:741.350833px;}
.ya3{bottom:754.279543px;}
.y47{bottom:763.262148px;}
.y87{bottom:763.323489px;}
.ye{bottom:767.932023px;}
.ya2{bottom:776.252203px;}
.y86{bottom:785.296145px;}
.y11{bottom:787.707414px;}
.y7a{bottom:792.310176px;}
.ya1{bottom:798.224856px;}
.y44{bottom:802.109798px;}
.y85{bottom:807.268801px;}
.ya{bottom:814.607799px;}
.yc{bottom:822.072688px;}
.y42{bottom:824.082453px;}
.y84{bottom:829.241458px;}
.y79{bottom:841.926262px;}
.y9{bottom:846.342223px;}
.y83{bottom:851.214118px;}
.y37{bottom:862.930110px;}
.y8{bottom:868.314853px;}
.y82{bottom:873.186767px;}
.y78{bottom:887.208986px;}
.y3c{bottom:887.902765px;}
.y7{bottom:891.898823px;}
.y6f{bottom:893.174568px;}
.y81{bottom:895.159423px;}
.y77{bottom:911.850956px;}
.y80{bottom:917.132080px;}
.y40{bottom:931.848078px;}
.y6b{bottom:932.294674px;}
.y76{bottom:936.492191px;}
.y7f{bottom:939.104736px;}
.y6{bottom:939.195698px;}
.y75{bottom:960.199213px;}
.y7e{bottom:961.077392px;}
.y6d{bottom:964.651974px;}
.y36{bottom:981.529723px;}
.y7d{bottom:983.050048px;}
.y5{bottom:984.075578px;}
.y74{bottom:984.607181px;}
.y7c{bottom:1005.022705px;}
.y35{bottom:1005.113709px;}
.y4{bottom:1006.414467px;}
.y73{bottom:1009.249145px;}
.y7b{bottom:1026.592895px;}
.y6a{bottom:1028.204040px;}
.y3{bottom:1043.035537px;}
.y72{bottom:1048.748290px;}
.y34{bottom:1051.604919px;}
.y70{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y32{bottom:1071.600036px;}
.h9{height:18.310547px;}
.h2b{height:24.328125px;}
.h10{height:25.775300px;}
.hf{height:25.775344px;}
.hb{height:25.775391px;}
.h7{height:25.775436px;}
.h13{height:35.991211px;}
.hd{height:36.228516px;}
.h1b{height:37.722657px;}
.h8{height:38.179688px;}
.hc{height:38.838867px;}
.h23{height:41.384766px;}
.h18{height:42.421874px;}
.h4{height:43.154296px;}
.h1a{height:43.722657px;}
.h29{height:43.989259px;}
.h12{height:45.550689px;}
.ha{height:45.550782px;}
.h26{height:46.664064px;}
.h25{height:47.437501px;}
.he{height:47.469728px;}
.h2{height:48.656250px;}
.h20{height:51.750000px;}
.h6{height:51.785156px;}
.h16{height:55.986326px;}
.h1c{height:59.695312px;}
.h2a{height:60.075001px;}
.h21{height:60.416013px;}
.h27{height:63.984377px;}
.h1d{height:66.287109px;}
.h28{height:67.875002px;}
.h5{height:69.046877px;}
.h22{height:73.742066px;}
.h1f{height:80.393555px;}
.h1e{height:81.667970px;}
.h3{height:86.308592px;}
.h19{height:87.667970px;}
.h14{height:100.343265px;}
.h17{height:112.640625px;}
.h11{height:139.652345px;}
.h15{height:191.399964px;}
.h1{height:191.400009px;}
.h24{height:191.400147px;}
.h0{height:1263.000000px;}
.w9{width:94.500000px;}
.w6{width:111.375000px;}
.w4{width:122.625000px;}
.wb{width:124.875000px;}
.w8{width:132.750000px;}
.wa{width:147.375000px;}
.w5{width:167.625000px;}
.w2{width:174.375000px;}
.wd{width:182.250000px;}
.wc{width:212.625000px;}
.w7{width:261.000000px;}
.we{width:490.500000px;}
.w3{width:493.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:6.750000px;}
.x8{left:7.875000px;}
.xf{left:15.750000px;}
.x6{left:16.875000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.xe{left:111.375000px;}
.x18{left:135.000000px;}
.x2{left:216.815100px;}
.x9{left:232.875000px;}
.x1{left:244.125000px;}
.x10{left:245.250000px;}
.x15{left:282.375000px;}
.x7{left:284.625000px;}
.x17{left:292.500000px;}
.x1a{left:327.622230px;}
.x11{left:340.875000px;}
.x3{left:358.241659px;}
.xa{left:401.625000px;}
.xc{left:446.456700px;}
.x12{left:489.375000px;}
.xb{left:514.125000px;}
.x13{left:615.375000px;}
.x19{left:624.206700px;}
.x16{left:775.720046px;}
.xd{left:776.845046px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.781250pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:20.000000pt;}
.ls5{letter-spacing:1298.594241pt;}
.ls3{letter-spacing:1566.786641pt;}
.ls4{letter-spacing:1853.175257pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ws2{word-spacing:-42.000000pt;}
.ws7{word-spacing:-26.666666pt;}
.ws0{word-spacing:-12.812500pt;}
.ws4{word-spacing:-12.088542pt;}
.ws3{word-spacing:-11.744792pt;}
.ws6{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.687500pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-7.031255pt;}
._2{margin-left:-4.375000pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-0.891161pt;}
._4{width:4.000001pt;}
._8{width:8.000000pt;}
._7{width:11.812485pt;}
._5{width:15.687503pt;}
._e{width:16.624997pt;}
._c{width:20.000006pt;}
._b{width:24.000001pt;}
._d{width:28.000003pt;}
._a{width:31.999974pt;}
._9{width:36.000002pt;}
._10{width:39.562500pt;}
._f{width:44.265624pt;}
._3{width:1981.456527pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.580729pt;}
.y1f{bottom:8.818929pt;}
.y2e{bottom:8.818936pt;}
.y1b{bottom:8.818969pt;}
.y12{bottom:8.819010pt;}
.y2b{bottom:8.819013pt;}
.y26{bottom:8.819023pt;}
.yb{bottom:8.819050pt;}
.y10{bottom:8.819056pt;}
.y58{bottom:10.460931pt;}
.y54{bottom:11.296869pt;}
.y49{bottom:11.296872pt;}
.y43{bottom:11.296876pt;}
.y61{bottom:11.296882pt;}
.y46{bottom:11.296885pt;}
.y6e{bottom:12.013021pt;}
.y4c{bottom:14.226566pt;}
.y3f{bottom:16.502452pt;}
.y41{bottom:16.502605pt;}
.y3b{bottom:16.502608pt;}
.y2a{bottom:26.397053pt;}
.yf{bottom:26.397136pt;}
.y31{bottom:27.963545pt;}
.y25{bottom:29.063889pt;}
.y6c{bottom:29.416667pt;}
.y57{bottom:29.695309pt;}
.y53{bottom:30.828122pt;}
.y45{bottom:30.828125pt;}
.y60{bottom:30.828136pt;}
.y33{bottom:34.799967pt;}
.y2{bottom:34.800007pt;}
.y71{bottom:34.800130pt;}
.y3e{bottom:36.033692pt;}
.y4b{bottom:36.687500pt;}
.y3a{bottom:38.700368pt;}
.y56{bottom:49.226562pt;}
.y24{bottom:49.308676pt;}
.y52{bottom:50.359376pt;}
.y3d{bottom:55.565105pt;}
.y30{bottom:55.858073pt;}
.y39{bottom:58.231607pt;}
.y23{bottom:69.553396pt;}
.y2f{bottom:74.256513pt;}
.y38{bottom:77.763020pt;}
.y22{bottom:89.798263pt;}
.yb5{bottom:97.618160pt;}
.y21{bottom:110.042969pt;}
.y69{bottom:141.862303pt;}
.y2d{bottom:162.124509pt;}
.y68{bottom:162.939612pt;}
.ya0{bottom:169.345705pt;}
.y2c{bottom:179.702635pt;}
.y9f{bottom:188.876958pt;}
.y67{bottom:198.470865pt;}
.y29{bottom:203.614099pt;}
.y9e{bottom:208.408208pt;}
.y66{bottom:214.705243pt;}
.y28{bottom:221.192223pt;}
.y9d{bottom:227.939458pt;}
.y27{bottom:245.103675pt;}
.y9c{bottom:247.470708pt;}
.y65{bottom:249.236496pt;}
.y9b{bottom:267.001958pt;}
.y20{bottom:269.015049pt;}
.y64{bottom:283.767740pt;}
.y9a{bottom:286.533198pt;}
.y63{bottom:303.298989pt;}
.y99{bottom:306.064452pt;}
.y98{bottom:325.595705pt;}
.y5f{bottom:337.830236pt;}
.y97{bottom:345.126958pt;}
.yb4{bottom:346.578124pt;}
.y62{bottom:357.361487pt;}
.y96{bottom:364.658198pt;}
.yb3{bottom:366.109374pt;}
.y1e{bottom:370.239089pt;}
.y5e{bottom:376.892736pt;}
.y95{bottom:384.189452pt;}
.yb2{bottom:385.640625pt;}
.y1d{bottom:394.150555pt;}
.y94{bottom:403.720708pt;}
.yb1{bottom:405.171878pt;}
.y5d{bottom:411.423993pt;}
.y1c{bottom:418.062008pt;}
.y93{bottom:423.251958pt;}
.yb0{bottom:424.703118pt;}
.y5c{bottom:430.955243pt;}
.y92{bottom:442.425450pt;}
.yaf{bottom:444.234372pt;}
.y1a{bottom:445.062009pt;}
.y91{bottom:462.119140pt;}
.yae{bottom:463.765625pt;}
.y5b{bottom:465.486485pt;}
.y5a{bottom:471.345860pt;}
.yad{bottom:483.296878pt;}
.y19{bottom:488.035967pt;}
.y59{bottom:490.877109pt;}
.y90{bottom:502.728516pt;}
.yac{bottom:502.828118pt;}
.y8f{bottom:522.259766pt;}
.yab{bottom:522.359372pt;}
.y51{bottom:525.408369pt;}
.y55{bottom:526.541183pt;}
.y18{bottom:530.077633pt;}
.yaa{bottom:541.531903pt;}
.y8e{bottom:541.791016pt;}
.y50{bottom:544.939620pt;}
.ya9{bottom:559.435543pt;}
.y8d{bottom:561.322266pt;}
.y4f{bottom:564.470869pt;}
.y17{bottom:570.328903pt;}
.ya8{bottom:577.339850pt;}
.y8c{bottom:580.853516pt;}
.y15{bottom:593.293736pt;}
.ya7{bottom:595.242836pt;}
.y4e{bottom:599.002113pt;}
.y8b{bottom:600.384768pt;}
.y16{bottom:610.871861pt;}
.ya6{bottom:613.146490pt;}
.y4d{bottom:618.533363pt;}
.y8a{bottom:619.916018pt;}
.ya5{bottom:631.408201pt;}
.y14{bottom:634.783328pt;}
.y89{bottom:639.447268pt;}
.ya4{bottom:650.939452pt;}
.y4a{bottom:653.064619pt;}
.y13{bottom:658.694781pt;}
.y48{bottom:658.923993pt;}
.y88{bottom:658.978518pt;}
.ya3{bottom:670.470705pt;}
.y47{bottom:678.455243pt;}
.y87{bottom:678.509768pt;}
.ye{bottom:682.606243pt;}
.ya2{bottom:690.001958pt;}
.y86{bottom:698.041018pt;}
.y11{bottom:700.184368pt;}
.y7a{bottom:704.275712pt;}
.ya1{bottom:709.533205pt;}
.y44{bottom:712.986487pt;}
.y85{bottom:717.572268pt;}
.ya{bottom:724.095821pt;}
.yc{bottom:730.731278pt;}
.y42{bottom:732.517736pt;}
.y84{bottom:737.103518pt;}
.y79{bottom:748.378900pt;}
.y9{bottom:752.304198pt;}
.y83{bottom:756.634772pt;}
.y37{bottom:767.048987pt;}
.y8{bottom:771.835425pt;}
.y82{bottom:776.166015pt;}
.y78{bottom:788.630210pt;}
.y3c{bottom:789.246903pt;}
.y7{bottom:792.798953pt;}
.y6f{bottom:793.932949pt;}
.y81{bottom:795.697265pt;}
.y77{bottom:810.534183pt;}
.y80{bottom:815.228515pt;}
.y40{bottom:828.309403pt;}
.y6b{bottom:828.706377pt;}
.y76{bottom:832.437503pt;}
.y7f{bottom:834.759765pt;}
.y6{bottom:834.840620pt;}
.y75{bottom:853.510411pt;}
.y7e{bottom:854.291015pt;}
.y6d{bottom:857.468421pt;}
.y36{bottom:872.470865pt;}
.y7d{bottom:873.822265pt;}
.y5{bottom:874.733847pt;}
.y74{bottom:875.206383pt;}
.y7c{bottom:893.353516pt;}
.y35{bottom:893.434408pt;}
.y4{bottom:894.590637pt;}
.y73{bottom:897.110351pt;}
.y7b{bottom:912.527018pt;}
.y6a{bottom:913.959147pt;}
.y3{bottom:927.142700pt;}
.y72{bottom:932.220703pt;}
.y34{bottom:934.759928pt;}
.y70{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y32{bottom:952.533365pt;}
.h9{height:16.276042pt;}
.h2b{height:21.625000pt;}
.h10{height:22.911377pt;}
.hf{height:22.911417pt;}
.hb{height:22.911459pt;}
.h7{height:22.911499pt;}
.h13{height:31.992188pt;}
.hd{height:32.203125pt;}
.h1b{height:33.531251pt;}
.h8{height:33.937500pt;}
.hc{height:34.523438pt;}
.h23{height:36.786459pt;}
.h18{height:37.708332pt;}
.h4{height:38.359374pt;}
.h1a{height:38.864584pt;}
.h29{height:39.101563pt;}
.h12{height:40.489501pt;}
.ha{height:40.489584pt;}
.h26{height:41.479168pt;}
.h25{height:42.166668pt;}
.he{height:42.195313pt;}
.h2{height:43.250000pt;}
.h20{height:46.000000pt;}
.h6{height:46.031250pt;}
.h16{height:49.765623pt;}
.h1c{height:53.062500pt;}
.h2a{height:53.400001pt;}
.h21{height:53.703123pt;}
.h27{height:56.875002pt;}
.h1d{height:58.921875pt;}
.h28{height:60.333335pt;}
.h5{height:61.375002pt;}
.h22{height:65.548503pt;}
.h1f{height:71.460937pt;}
.h1e{height:72.593751pt;}
.h3{height:76.718748pt;}
.h19{height:77.927084pt;}
.h14{height:89.194013pt;}
.h17{height:100.125000pt;}
.h11{height:124.135417pt;}
.h15{height:170.133301pt;}
.h1{height:170.133341pt;}
.h24{height:170.133464pt;}
.h0{height:1122.666667pt;}
.w9{width:84.000000pt;}
.w6{width:99.000000pt;}
.w4{width:109.000000pt;}
.wb{width:111.000000pt;}
.w8{width:118.000000pt;}
.wa{width:131.000000pt;}
.w5{width:149.000000pt;}
.w2{width:155.000000pt;}
.wd{width:162.000000pt;}
.wc{width:189.000000pt;}
.w7{width:232.000000pt;}
.we{width:436.000000pt;}
.w3{width:439.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:6.000000pt;}
.x8{left:7.000000pt;}
.xf{left:14.000000pt;}
.x6{left:15.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.xe{left:99.000000pt;}
.x18{left:120.000000pt;}
.x2{left:192.724533pt;}
.x9{left:207.000000pt;}
.x1{left:217.000000pt;}
.x10{left:218.000000pt;}
.x15{left:251.000000pt;}
.x7{left:253.000000pt;}
.x17{left:260.000000pt;}
.x1a{left:291.219760pt;}
.x11{left:303.000000pt;}
.x3{left:318.437030pt;}
.xa{left:357.000000pt;}
.xc{left:396.850400pt;}
.x12{left:435.000000pt;}
.xb{left:457.000000pt;}
.x13{left:547.000000pt;}
.x19{left:554.850400pt;}
.x16{left:689.528930pt;}
.xd{left:690.528930pt;}
}




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