
    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_ee9f4be6fc43e387d3b92f4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_965329aa80daaa649e039199.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_41a45e4cf12ed5675e009caa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bb3df61b722ed9444b964fce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_fcc64128dfa246f97718601b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_712120db251d5223ac9579d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_8abb9fe05a4191959c3ef686.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_431d3b80dea5bc7877381393.woff2')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_616cba78708546ddff9e17ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.059000;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_406a566659af67b51d802b2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.059000;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_e264ca4ce439fe89309ab8fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.116000;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_07044e401e5f7697049c0f65.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.920000;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_06849f8b5a98fa304ffbb3cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.059000;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_39ad0cd9852e4fa789a61a0c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.702000;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-2.016000px;}
.ls1d{letter-spacing:-1.987500px;}
.ls22{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.926640px;}
.ls7{letter-spacing:-0.842400px;}
.ls8{letter-spacing:-0.758160px;}
.lsa{letter-spacing:-0.589680px;}
.ls24{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.450000px;}
.lsc{letter-spacing:-0.336960px;}
.lsd{letter-spacing:-0.252720px;}
.lsf{letter-spacing:-0.168480px;}
.lsb{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.084240px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.084240px;}
.ls1{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.168480px;}
.ls1c{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.261144px;}
.ls14{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.336960px;}
.ls19{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.420000px;}
.lse{letter-spacing:0.421200px;}
.ls11{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.900000px;}
.ls21{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.248000px;}
.ls1a{letter-spacing:1.500000px;}
.ls13{letter-spacing:4.687500px;}
.ls15{letter-spacing:5.760000px;}
.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:-84.324240px;}
.ws4{word-spacing:-24.732000px;}
.ws5{word-spacing:-24.408000px;}
.ws6{word-spacing:-24.300000px;}
.ws9{word-spacing:-19.459440px;}
.wsb{word-spacing:-19.122480px;}
.wsa{word-spacing:-18.869760px;}
.ws8{word-spacing:-18.785520px;}
.ws7{word-spacing:-18.701280px;}
.ws3{word-spacing:-18.448560px;}
.ws1{word-spacing:-18.195840px;}
.wsc{word-spacing:-18.111600px;}
.ws18{word-spacing:-14.040000px;}
.ws19{word-spacing:-13.920000px;}
.ws3f{word-spacing:-6.562500px;}
.ws39{word-spacing:-4.320000px;}
.ws3d{word-spacing:-3.840000px;}
.ws1f{word-spacing:-3.420000px;}
.ws27{word-spacing:-3.120000px;}
.ws23{word-spacing:-3.000000px;}
.ws20{word-spacing:-2.760000px;}
.ws1c{word-spacing:-2.640000px;}
.ws44{word-spacing:-1.776000px;}
.ws22{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.560000px;}
.ws42{word-spacing:-1.488000px;}
.ws1e{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.380000px;}
.ws40{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.248000px;}
.ws41{word-spacing:-1.104000px;}
.ws10{word-spacing:-0.972000px;}
.ws1a{word-spacing:-0.937500px;}
.ws3a{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.758160px;}
.ws3b{word-spacing:-0.660000px;}
.ws34{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.168480px;}
.ws33{word-spacing:-0.120000px;}
.ws47{word-spacing:-0.096000px;}
.ws15{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.084240px;}
.ws11{word-spacing:0.108000px;}
.ws26{word-spacing:0.120000px;}
.ws13{word-spacing:0.168480px;}
.ws16{word-spacing:0.252720px;}
.ws45{word-spacing:0.384000px;}
.wse{word-spacing:0.758160px;}
.ws46{word-spacing:1.392000px;}
.ws2b{word-spacing:1.440000px;}
.ws1d{word-spacing:1.800000px;}
.ws2c{word-spacing:2.640000px;}
.ws2f{word-spacing:3.180000px;}
.ws31{word-spacing:3.240000px;}
.ws30{word-spacing:3.360000px;}
.ws21{word-spacing:4.680000px;}
.ws25{word-spacing:5.040000px;}
.ws24{word-spacing:5.100000px;}
.ws32{word-spacing:5.520000px;}
.ws2a{word-spacing:6.000000px;}
.ws36{word-spacing:6.840000px;}
.ws28{word-spacing:7.020000px;}
.ws37{word-spacing:7.860000px;}
.ws35{word-spacing:8.040000px;}
.ws38{word-spacing:9.780000px;}
.ws2e{word-spacing:11.700000px;}
.ws3e{word-spacing:14.760000px;}
.ws17{word-spacing:926.370600px;}
._8{margin-left:-2038.975800px;}
._4{margin-left:-7.315200px;}
._5{margin-left:-5.958504px;}
._6{margin-left:-4.728000px;}
._2{margin-left:-3.337104px;}
._0{margin-left:-1.507896px;}
._1{width:1.280448px;}
._3{width:2.345496px;}
._7{width:3.714504px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fsf{font-size:37.500000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.360000px;}
.fs10{font-size:48.000000px;}
.fse{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fsc{font-size:87.120000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5a{bottom:37.620000px;}
.y59{bottom:37.800000px;}
.y5{bottom:66.525004px;}
.y58{bottom:89.640000px;}
.y4{bottom:97.125005px;}
.y57{bottom:104.388480px;}
.y56{bottom:122.749740px;}
.y24{bottom:139.264499px;}
.y55{bottom:141.111000px;}
.y54{bottom:159.292980px;}
.y53{bottom:177.654240px;}
.y7e{bottom:189.779550px;}
.y52{bottom:196.015500px;}
.y1b{bottom:196.933500px;}
.y7d{bottom:207.779550px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y51{bottom:214.197480px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y7c{bottom:225.779550px;}
.y50{bottom:232.558740px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y7b{bottom:243.779550px;}
.y4f{bottom:250.920000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y7a{bottom:261.779550px;}
.y4e{bottom:271.080000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y79{bottom:279.779550px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y78{bottom:297.779550px;}
.y4d{bottom:298.077840px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y77{bottom:315.779550px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y4c{bottom:323.644680px;}
.y76{bottom:333.779550px;}
.y12{bottom:348.133500px;}
.y4b{bottom:349.380000px;}
.y75{bottom:351.779550px;}
.y74{bottom:369.779550px;}
.y4a{bottom:374.040000px;}
.y11{bottom:386.785499px;}
.y73{bottom:387.779550px;}
.y49{bottom:396.720000px;}
.y10{bottom:408.044999px;}
.y48{bottom:417.589920px;}
.y72{bottom:423.779550px;}
.y71{bottom:441.779550px;}
.yf{bottom:448.864502px;}
.y47{bottom:458.267040px;}
.y70{bottom:459.779550px;}
.ye{bottom:466.864502px;}
.y6f{bottom:477.779550px;}
.y46{bottom:479.331360px;}
.yd{bottom:484.864502px;}
.y6e{bottom:495.779550px;}
.y45{bottom:500.395680px;}
.yc{bottom:502.864502px;}
.y6d{bottom:513.779550px;}
.yb{bottom:520.864502px;}
.y44{bottom:521.460000px;}
.y6c{bottom:531.779550px;}
.ya{bottom:538.864499px;}
.y43{bottom:543.593160px;}
.y6b{bottom:549.779550px;}
.y9{bottom:556.864499px;}
.y6a{bottom:567.779550px;}
.y42{bottom:569.160000px;}
.y69{bottom:585.779550px;}
.y41{bottom:594.711360px;}
.y68{bottom:603.779550px;}
.y40{bottom:620.446680px;}
.y67{bottom:639.779550px;}
.y8{bottom:645.510000px;}
.y3f{bottom:646.013520px;}
.y66{bottom:657.779550px;}
.y7{bottom:666.771000px;}
.y3e{bottom:671.748840px;}
.y65{bottom:675.779550px;}
.y8d{bottom:685.583550px;}
.y64{bottom:693.779550px;}
.y3d{bottom:697.315680px;}
.y8c{bottom:700.211550px;}
.y63{bottom:711.779550px;}
.y8b{bottom:714.839550px;}
.y3c{bottom:723.051000px;}
.y8a{bottom:729.467550px;}
.y62{bottom:729.779550px;}
.y89{bottom:744.095550px;}
.y61{bottom:747.779550px;}
.y3b{bottom:748.617840px;}
.y3{bottom:752.599495px;}
.y88{bottom:758.723550px;}
.y87{bottom:773.351550px;}
.y3a{bottom:774.184680px;}
.y86{bottom:787.979550px;}
.y39{bottom:799.920000px;}
.y85{bottom:802.607550px;}
.y60{bottom:810.761550px;}
.y84{bottom:817.235550px;}
.y38{bottom:825.479850px;}
.y5f{bottom:831.767550px;}
.y83{bottom:831.863550px;}
.y82{bottom:846.491550px;}
.y37{bottom:852.651000px;}
.y5e{bottom:852.773550px;}
.y81{bottom:861.119550px;}
.y5d{bottom:873.779550px;}
.y80{bottom:875.747550px;}
.y2{bottom:879.369000px;}
.y36{bottom:885.591000px;}
.y7f{bottom:890.375550px;}
.y5c{bottom:909.779550px;}
.y35{bottom:918.720000px;}
.y34{bottom:950.040000px;}
.y1{bottom:966.726000px;}
.y33{bottom:972.720000px;}
.y5b{bottom:973.955850px;}
.y32{bottom:988.705800px;}
.y31{bottom:1005.812100px;}
.y30{bottom:1023.097680px;}
.y2f{bottom:1040.383260px;}
.y2e{bottom:1057.668840px;}
.y2d{bottom:1074.954420px;}
.y2c{bottom:1092.240000px;}
.y2b{bottom:1106.280000px;}
.y2a{bottom:1157.040000px;}
.y29{bottom:1173.960000px;}
.y28{bottom:1187.820000px;}
.y27{bottom:1193.760000px;}
.y26{bottom:1199.880000px;}
.y25{bottom:1205.820000px;}
.hb{height:12.919922px;}
.h1b{height:30.337500px;}
.h8{height:32.130000px;}
.h18{height:32.152148px;}
.h16{height:32.558203px;}
.h1f{height:32.976000px;}
.hf{height:34.071680px;}
.hc{height:35.991211px;}
.h21{height:38.832000px;}
.h9{height:39.648000px;}
.hd{height:39.830273px;}
.h20{height:41.664000px;}
.h15{height:42.894141px;}
.h3{height:48.195000px;}
.h1e{height:48.540000px;}
.h17{height:48.960000px;}
.he{height:49.612500px;}
.h1c{height:52.080000px;}
.h7{height:56.640000px;}
.h13{height:57.585938px;}
.h6{height:59.472000px;}
.h12{height:60.465234px;}
.h1d{height:62.496000px;}
.h14{height:62.532422px;}
.h2{height:67.968000px;}
.h10{height:69.473320px;}
.h11{height:73.828125px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h19{height:1020.472500px;}
.h1a{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w4{width:292.860000px;}
.w2{width:637.794021px;}
.w6{width:701.250000px;}
.w5{width:701.575500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:893.340000px;}
.x0{left:0.000000px;}
.x5{left:12.060000px;}
.xa{left:60.840000px;}
.xb{left:63.779550px;}
.xe{left:73.591050px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:107.812080px;}
.x10{left:127.559100px;}
.x4{left:203.484001px;}
.x8{left:205.377120px;}
.x9{left:399.780000px;}
.x6{left:426.060000px;}
.x3{left:454.959000px;}
.xc{left:492.274350px;}
.xd{left:494.008500px;}
.xf{left:628.921800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-1.792000pt;}
.ls1d{letter-spacing:-1.766667pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.823680pt;}
.ls7{letter-spacing:-0.748800pt;}
.ls8{letter-spacing:-0.673920pt;}
.lsa{letter-spacing:-0.524160pt;}
.ls24{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.400000pt;}
.lsc{letter-spacing:-0.299520pt;}
.lsd{letter-spacing:-0.224640pt;}
.lsf{letter-spacing:-0.149760pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.074880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.074880pt;}
.ls1{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.149760pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.232128pt;}
.ls14{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.299520pt;}
.ls19{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.374400pt;}
.ls11{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls21{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls13{letter-spacing:4.166667pt;}
.ls15{letter-spacing:5.120000pt;}
.ws2{word-spacing:-74.954880pt;}
.ws4{word-spacing:-21.984000pt;}
.ws5{word-spacing:-21.696000pt;}
.ws6{word-spacing:-21.600000pt;}
.ws9{word-spacing:-17.297280pt;}
.wsb{word-spacing:-16.997760pt;}
.wsa{word-spacing:-16.773120pt;}
.ws8{word-spacing:-16.698240pt;}
.ws7{word-spacing:-16.623360pt;}
.ws3{word-spacing:-16.398720pt;}
.ws1{word-spacing:-16.174080pt;}
.wsc{word-spacing:-16.099200pt;}
.ws18{word-spacing:-12.480000pt;}
.ws19{word-spacing:-12.373333pt;}
.ws3f{word-spacing:-5.833333pt;}
.ws39{word-spacing:-3.840000pt;}
.ws3d{word-spacing:-3.413333pt;}
.ws1f{word-spacing:-3.040000pt;}
.ws27{word-spacing:-2.773333pt;}
.ws23{word-spacing:-2.666667pt;}
.ws20{word-spacing:-2.453333pt;}
.ws1c{word-spacing:-2.346667pt;}
.ws44{word-spacing:-1.578667pt;}
.ws22{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.386667pt;}
.ws42{word-spacing:-1.322667pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws40{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.120000pt;}
.ws43{word-spacing:-1.109333pt;}
.ws41{word-spacing:-0.981333pt;}
.ws10{word-spacing:-0.864000pt;}
.ws1a{word-spacing:-0.833333pt;}
.ws3a{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.673920pt;}
.ws3b{word-spacing:-0.586667pt;}
.ws34{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.149760pt;}
.ws33{word-spacing:-0.106667pt;}
.ws47{word-spacing:-0.085333pt;}
.ws15{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.074880pt;}
.ws11{word-spacing:0.096000pt;}
.ws26{word-spacing:0.106667pt;}
.ws13{word-spacing:0.149760pt;}
.ws16{word-spacing:0.224640pt;}
.ws45{word-spacing:0.341333pt;}
.wse{word-spacing:0.673920pt;}
.ws46{word-spacing:1.237333pt;}
.ws2b{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.600000pt;}
.ws2c{word-spacing:2.346667pt;}
.ws2f{word-spacing:2.826667pt;}
.ws31{word-spacing:2.880000pt;}
.ws30{word-spacing:2.986667pt;}
.ws21{word-spacing:4.160000pt;}
.ws25{word-spacing:4.480000pt;}
.ws24{word-spacing:4.533333pt;}
.ws32{word-spacing:4.906667pt;}
.ws2a{word-spacing:5.333333pt;}
.ws36{word-spacing:6.080000pt;}
.ws28{word-spacing:6.240000pt;}
.ws37{word-spacing:6.986667pt;}
.ws35{word-spacing:7.146667pt;}
.ws38{word-spacing:8.693333pt;}
.ws2e{word-spacing:10.400000pt;}
.ws3e{word-spacing:13.120000pt;}
.ws17{word-spacing:823.440533pt;}
._8{margin-left:-1812.422933pt;}
._4{margin-left:-6.502400pt;}
._5{margin-left:-5.296448pt;}
._6{margin-left:-4.202667pt;}
._2{margin-left:-2.966315pt;}
._0{margin-left:-1.340352pt;}
._1{width:1.138176pt;}
._3{width:2.084885pt;}
._7{width:3.301781pt;}
.fs5{font-size:16.000000pt;}
.fsf{font-size:33.333333pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.320000pt;}
.fs10{font-size:42.666667pt;}
.fse{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fsc{font-size:77.440000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5a{bottom:33.440000pt;}
.y59{bottom:33.600000pt;}
.y5{bottom:59.133337pt;}
.y58{bottom:79.680000pt;}
.y4{bottom:86.333337pt;}
.y57{bottom:92.789760pt;}
.y56{bottom:109.110880pt;}
.y24{bottom:123.790666pt;}
.y55{bottom:125.432000pt;}
.y54{bottom:141.593760pt;}
.y53{bottom:157.914880pt;}
.y7e{bottom:168.692933pt;}
.y52{bottom:174.236000pt;}
.y1b{bottom:175.052000pt;}
.y7d{bottom:184.692933pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y51{bottom:190.397760pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y7c{bottom:200.692933pt;}
.y50{bottom:206.718880pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y7b{bottom:216.692933pt;}
.y4f{bottom:223.040000pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y7a{bottom:232.692933pt;}
.y4e{bottom:240.960000pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y79{bottom:248.692933pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y78{bottom:264.692933pt;}
.y4d{bottom:264.958080pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y77{bottom:280.692933pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y4c{bottom:287.684160pt;}
.y76{bottom:296.692933pt;}
.y12{bottom:309.452000pt;}
.y4b{bottom:310.560000pt;}
.y75{bottom:312.692933pt;}
.y74{bottom:328.692933pt;}
.y4a{bottom:332.480000pt;}
.y11{bottom:343.809333pt;}
.y73{bottom:344.692933pt;}
.y49{bottom:352.640000pt;}
.y10{bottom:362.706666pt;}
.y48{bottom:371.191040pt;}
.y72{bottom:376.692933pt;}
.y71{bottom:392.692933pt;}
.yf{bottom:398.990669pt;}
.y47{bottom:407.348480pt;}
.y70{bottom:408.692933pt;}
.ye{bottom:414.990669pt;}
.y6f{bottom:424.692933pt;}
.y46{bottom:426.072320pt;}
.yd{bottom:430.990669pt;}
.y6e{bottom:440.692933pt;}
.y45{bottom:444.796160pt;}
.yc{bottom:446.990669pt;}
.y6d{bottom:456.692933pt;}
.yb{bottom:462.990669pt;}
.y44{bottom:463.520000pt;}
.y6c{bottom:472.692933pt;}
.ya{bottom:478.990666pt;}
.y43{bottom:483.193920pt;}
.y6b{bottom:488.692933pt;}
.y9{bottom:494.990666pt;}
.y6a{bottom:504.692933pt;}
.y42{bottom:505.920000pt;}
.y69{bottom:520.692933pt;}
.y41{bottom:528.632320pt;}
.y68{bottom:536.692933pt;}
.y40{bottom:551.508160pt;}
.y67{bottom:568.692933pt;}
.y8{bottom:573.786667pt;}
.y3f{bottom:574.234240pt;}
.y66{bottom:584.692933pt;}
.y7{bottom:592.685334pt;}
.y3e{bottom:597.110080pt;}
.y65{bottom:600.692933pt;}
.y8d{bottom:609.407600pt;}
.y64{bottom:616.692933pt;}
.y3d{bottom:619.836160pt;}
.y8c{bottom:622.410267pt;}
.y63{bottom:632.692933pt;}
.y8b{bottom:635.412933pt;}
.y3c{bottom:642.712000pt;}
.y8a{bottom:648.415600pt;}
.y62{bottom:648.692933pt;}
.y89{bottom:661.418267pt;}
.y61{bottom:664.692933pt;}
.y3b{bottom:665.438080pt;}
.y3{bottom:668.977329pt;}
.y88{bottom:674.420933pt;}
.y87{bottom:687.423600pt;}
.y3a{bottom:688.164160pt;}
.y86{bottom:700.426267pt;}
.y39{bottom:711.040000pt;}
.y85{bottom:713.428933pt;}
.y60{bottom:720.676933pt;}
.y84{bottom:726.431600pt;}
.y38{bottom:733.759867pt;}
.y5f{bottom:739.348933pt;}
.y83{bottom:739.434267pt;}
.y82{bottom:752.436933pt;}
.y37{bottom:757.912000pt;}
.y5e{bottom:758.020933pt;}
.y81{bottom:765.439600pt;}
.y5d{bottom:776.692933pt;}
.y80{bottom:778.442267pt;}
.y2{bottom:781.661334pt;}
.y36{bottom:787.192000pt;}
.y7f{bottom:791.444933pt;}
.y5c{bottom:808.692933pt;}
.y35{bottom:816.640000pt;}
.y34{bottom:844.480000pt;}
.y1{bottom:859.312000pt;}
.y33{bottom:864.640000pt;}
.y5b{bottom:865.738533pt;}
.y32{bottom:878.849600pt;}
.y31{bottom:894.055200pt;}
.y30{bottom:909.420160pt;}
.y2f{bottom:924.785120pt;}
.y2e{bottom:940.150080pt;}
.y2d{bottom:955.515040pt;}
.y2c{bottom:970.880000pt;}
.y2b{bottom:983.360000pt;}
.y2a{bottom:1028.480000pt;}
.y29{bottom:1043.520000pt;}
.y28{bottom:1055.840000pt;}
.y27{bottom:1061.120000pt;}
.y26{bottom:1066.560000pt;}
.y25{bottom:1071.840000pt;}
.hb{height:11.484375pt;}
.h1b{height:26.966667pt;}
.h8{height:28.560000pt;}
.h18{height:28.579687pt;}
.h16{height:28.940625pt;}
.h1f{height:29.312000pt;}
.hf{height:30.285937pt;}
.hc{height:31.992188pt;}
.h21{height:34.517333pt;}
.h9{height:35.242667pt;}
.hd{height:35.404688pt;}
.h20{height:37.034667pt;}
.h15{height:38.128125pt;}
.h3{height:42.840000pt;}
.h1e{height:43.146667pt;}
.h17{height:43.520000pt;}
.he{height:44.100000pt;}
.h1c{height:46.293333pt;}
.h7{height:50.346667pt;}
.h13{height:51.187500pt;}
.h6{height:52.864000pt;}
.h12{height:53.746875pt;}
.h1d{height:55.552000pt;}
.h14{height:55.584375pt;}
.h2{height:60.416000pt;}
.h10{height:61.754062pt;}
.h11{height:65.625000pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h19{height:907.086667pt;}
.h1a{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w4{width:260.320000pt;}
.w2{width:566.928019pt;}
.w6{width:623.333333pt;}
.w5{width:623.622667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:794.080000pt;}
.x0{left:0.000000pt;}
.x5{left:10.720000pt;}
.xa{left:54.080000pt;}
.xb{left:56.692933pt;}
.xe{left:65.414267pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:95.832960pt;}
.x10{left:113.385867pt;}
.x4{left:180.874667pt;}
.x8{left:182.557440pt;}
.x9{left:355.360000pt;}
.x6{left:378.720000pt;}
.x3{left:404.408000pt;}
.xc{left:437.577200pt;}
.xd{left:439.118667pt;}
.xf{left:559.041600pt;}
}




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