
    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_e2c0d82207593c0ea0ccebfe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_96d0a9d11467ba6490a8daa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_413b1ffcf1a4558f72fab288.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8387372142c0c13a86cb241e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_4e227e28da566aab22d08579.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677734;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_1b11c940aec604df09b6a218.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_e2ec6dccc88c163048c48a6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6a2fc1d5ce501ed6918678af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_b869dd377f61318ba17aa3ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_a85cb519b5737db6afa12c2a.woff2')format("woff");}.ffc{font-family:ffc;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.019831px;}
.ls1{letter-spacing:0.021106px;}
.ls5{letter-spacing:0.233352px;}
.ls2{letter-spacing:0.297773px;}
.ls8{letter-spacing:0.378602px;}
.ls4{letter-spacing:65.136005px;}
.ls3{letter-spacing:93.952995px;}
.ls0{letter-spacing:1400.516365px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.418587px;}
.ws0{word-spacing:-18.021099px;}
.ws5{word-spacing:-16.613273px;}
.ws9{word-spacing:-16.579825px;}
.ws8{word-spacing:-16.559993px;}
.ws2{word-spacing:-16.271993px;}
.ws7{word-spacing:-15.318596px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-9.333160px;}
._1{margin-left:-4.242803px;}
._8{margin-left:-2.230470px;}
._3{margin-left:-1.118470px;}
._0{width:1.003097px;}
._9{width:2.602990px;}
._d{width:4.607949px;}
._c{width:5.757385px;}
._11{width:7.653208px;}
._7{width:8.733418px;}
._4{width:10.636273px;}
._5{width:12.353445px;}
._10{width:13.775309px;}
._12{width:15.057597px;}
._b{width:16.573661px;}
._a{width:17.991520px;}
._6{width:19.048767px;}
._18{width:20.357276px;}
._f{width:21.714675px;}
._16{width:22.837451px;}
._13{width:23.931333px;}
._1b{width:25.200634px;}
._e{width:26.259035px;}
._14{width:33.631078px;}
._15{width:35.339585px;}
._17{width:36.728040px;}
._1a{width:38.783709px;}
._19{width:39.912788px;}
._1c{width:48.516226px;}
._1d{width:49.664566px;}
._20{width:53.335024px;}
._1f{width:54.820682px;}
._1e{width:58.356591px;}
.fcc{color:rgb(0,101,204);}
.fc8{color:rgb(227,108,10);}
.fc9{color:rgb(0,32,96);}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fca{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fcb{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs6{font-size:77.759969px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-10.979990px;}
.y46{bottom:-2.700776px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y23{bottom:2.699061px;}
.y1b{bottom:2.878988px;}
.y6a{bottom:3.238967px;}
.y6c{bottom:3.238974px;}
.y6e{bottom:3.238981px;}
.y70{bottom:3.238988px;}
.y72{bottom:3.238995px;}
.yb{bottom:4.320038px;}
.yc{bottom:32.880287px;}
.ya{bottom:49.980240px;}
.y8{bottom:54.300278px;}
.y9{bottom:56.460277px;}
.y92{bottom:190.559924px;}
.y19{bottom:193.439923px;}
.yaf{bottom:201.539919px;}
.yd4{bottom:204.059918px;}
.y66{bottom:206.039918px;}
.y91{bottom:211.259915px;}
.y18{bottom:214.139914px;}
.yae{bottom:222.239911px;}
.yd3{bottom:223.139911px;}
.y65{bottom:226.739909px;}
.y90{bottom:231.959907px;}
.y17{bottom:234.839906px;}
.yad{bottom:242.939903px;}
.y64{bottom:247.439901px;}
.yd2{bottom:255.359898px;}
.y16{bottom:255.539898px;}
.yac{bottom:263.639895px;}
.y63{bottom:268.139893px;}
.yd1{bottom:274.619890px;}
.y15{bottom:276.239890px;}
.y8f{bottom:281.999887px;}
.yab{bottom:284.339886px;}
.y62{bottom:288.839884px;}
.y14{bottom:296.939881px;}
.yaa{bottom:305.039878px;}
.yd0{bottom:306.839877px;}
.y61{bottom:309.539876px;}
.y13{bottom:317.639873px;}
.y60{bottom:330.239868px;}
.y8e{bottom:331.319867px;}
.ycf{bottom:339.419864px;}
.y5f{bottom:350.939860px;}
.y8d{bottom:352.019859px;}
.ya9{bottom:355.079858px;}
.yce{bottom:358.499857px;}
.y12{bottom:367.499853px;}
.y8c{bottom:372.719851px;}
.ycd{bottom:390.899844px;}
.y8b{bottom:393.419843px;}
.y5e{bottom:395.579842px;}
.ya8{bottom:404.399838px;}
.ycc{bottom:409.979836px;}
.y8a{bottom:414.119834px;}
.y40{bottom:417.359833px;}
.ya7{bottom:425.099830px;}
.y2d{bottom:433.559827px;}
.y89{bottom:434.819826px;}
.y45{bottom:441.480600px;}
.ycb{bottom:442.199823px;}
.y5d{bottom:445.619822px;}
.ya6{bottom:445.799822px;}
.y88{bottom:455.519818px;}
.y44{bottom:456.059818px;}
.yca{bottom:461.459815px;}
.ya5{bottom:466.499813px;}
.y43{bottom:473.339811px;}
.y87{bottom:476.219810px;}
.ya4{bottom:487.199805px;}
.y42{bottom:490.619804px;}
.yc9{bottom:493.679803px;}
.y5c{bottom:494.939802px;}
.y86{bottom:496.919801px;}
.y41{bottom:507.899797px;}
.yc8{bottom:512.939795px;}
.y5b{bottom:515.639794px;}
.y85{bottom:517.619793px;}
.ya3{bottom:531.659787px;}
.yc7{bottom:531.839787px;}
.y5a{bottom:536.339785px;}
.y3f{bottom:536.879785px;}
.y84{bottom:538.319785px;}
.y59{bottom:557.039777px;}
.y3e{bottom:557.759777px;}
.y83{bottom:559.019776px;}
.yc6{bottom:564.059774px;}
.ya2{bottom:570.359772px;}
.y2c{bottom:573.059771px;}
.y58{bottom:577.739769px;}
.y82{bottom:579.719768px;}
.yc5{bottom:583.319767px;}
.y3d{bottom:584.039766px;}
.ya1{bottom:591.059764px;}
.y57{bottom:598.439761px;}
.y81{bottom:600.419760px;}
.y3c{bottom:601.319759px;}
.ya0{bottom:611.759755px;}
.yc4{bottom:615.539754px;}
.y80{bottom:621.119752px;}
.y9f{bottom:632.459747px;}
.y3b{bottom:636.599745px;}
.y7f{bottom:641.819743px;}
.yc3{bottom:648.119741px;}
.y56{bottom:648.299741px;}
.y9e{bottom:653.159739px;}
.y3a{bottom:653.879738px;}
.y2b{bottom:659.999736px;}
.y7e{bottom:662.519735px;}
.yc2{bottom:667.199733px;}
.y39{bottom:671.159732px;}
.y9d{bottom:673.859730px;}
.y7d{bottom:683.219727px;}
.y38{bottom:688.259725px;}
.y9c{bottom:694.559722px;}
.y2a{bottom:694.739722px;}
.y55{bottom:697.619721px;}
.yc1{bottom:704.459718px;}
.y37{bottom:705.539718px;}
.y29{bottom:710.039716px;}
.y54{bottom:718.319713px;}
.y36{bottom:722.819711px;}
.y28{bottom:725.159710px;}
.y7c{bottom:733.079707px;}
.y53{bottom:739.019704px;}
.y27{bottom:739.379704px;}
.y35{bottom:740.099704px;}
.yc0{bottom:745.859702px;}
.y34{bottom:757.379697px;}
.y52{bottom:759.719696px;}
.ybf{bottom:766.559693px;}
.y26{bottom:772.859691px;}
.y33{bottom:774.479690px;}
.y9b{bottom:777.719689px;}
.y51{bottom:780.419688px;}
.y7b{bottom:782.399687px;}
.ybe{bottom:787.259685px;}
.y32{bottom:791.759683px;}
.y9a{bottom:798.419681px;}
.y50{bottom:801.119680px;}
.y7a{bottom:803.099679px;}
.y25{bottom:806.339677px;}
.ybd{bottom:807.959677px;}
.y31{bottom:809.039676px;}
.y99{bottom:819.119672px;}
.y24{bottom:821.819671px;}
.y79{bottom:823.799670px;}
.y30{bottom:826.319669px;}
.ybc{bottom:828.659669px;}
.y98{bottom:839.819664px;}
.y2e{bottom:840.539664px;}
.y2f{bottom:843.599663px;}
.y22{bottom:843.600600px;}
.y78{bottom:844.499662px;}
.ybb{bottom:849.359660px;}
.y97{bottom:860.519656px;}
.y77{bottom:865.199654px;}
.yba{bottom:870.059652px;}
.y21{bottom:870.959652px;}
.y4f{bottom:871.859651px;}
.y96{bottom:881.219648px;}
.y76{bottom:885.899646px;}
.yb9{bottom:890.759644px;}
.y75{bottom:906.599637px;}
.y11{bottom:907.859637px;}
.yb8{bottom:911.459635px;}
.y4e{bottom:921.179632px;}
.y10{bottom:925.139630px;}
.y95{bottom:925.859630px;}
.yb7{bottom:932.159627px;}
.y4d{bottom:941.879623px;}
.yf{bottom:942.959623px;}
.y74{bottom:951.239620px;}
.yb6{bottom:952.859619px;}
.y4c{bottom:962.579615px;}
.ye{bottom:971.759611px;}
.yb5{bottom:973.559611px;}
.y94{bottom:975.899610px;}
.y73{bottom:988.859604px;}
.yb4{bottom:994.259602px;}
.yd{bottom:995.879602px;}
.y4b{bottom:1007.219597px;}
.y71{bottom:1010.460600px;}
.yb3{bottom:1014.959594px;}
.y93{bottom:1025.219590px;}
.y1a{bottom:1026.840600px;}
.y6f{bottom:1027.740600px;}
.y1f{bottom:1034.939586px;}
.yb2{bottom:1035.659586px;}
.y6d{bottom:1045.020600px;}
.y4a{bottom:1045.919582px;}
.y1e{bottom:1052.219579px;}
.yb1{bottom:1056.359577px;}
.y6b{bottom:1062.300600px;}
.y49{bottom:1066.619573px;}
.y69{bottom:1079.400600px;}
.y1d{bottom:1079.759568px;}
.y68{bottom:1082.639567px;}
.y48{bottom:1087.319565px;}
.y1c{bottom:1103.879558px;}
.yb0{bottom:1106.399557px;}
.y20{bottom:1106.759557px;}
.y47{bottom:1108.019557px;}
.y67{bottom:1109.279556px;}
.y4{bottom:1128.719549px;}
.y7{bottom:1157.519537px;}
.y3{bottom:1161.299535px;}
.y2{bottom:1178.579529px;}
.y1{bottom:1195.859522px;}
.h3{height:5.220000px;}
.h14{height:10.620000px;}
.he{height:14.040000px;}
.h17{height:16.560000px;}
.h18{height:17.100000px;}
.h16{height:17.280000px;}
.hc{height:19.080000px;}
.h6{height:20.520000px;}
.hf{height:33.706744px;}
.h5{height:34.625377px;}
.h12{height:35.991197px;}
.h4{height:36.597642px;}
.h11{height:36.624009px;}
.h19{height:37.494126px;}
.h10{height:39.339828px;}
.h7{height:39.830258px;}
.ha{height:40.501390px;}
.h1{height:42.894123px;}
.h13{height:43.536076px;}
.h9{height:44.893107px;}
.h1a{height:47.545293px;}
.hd{height:47.988262px;}
.h15{height:48.796855px;}
.h2{height:51.679667px;}
.hb{height:52.700604px;}
.h8{height:57.092321px;}
.h0{height:1263.000000px;}
.w3{width:3.420000px;}
.w7{width:6.840000px;}
.w6{width:7.020000px;}
.w15{width:7.560000px;}
.w2{width:8.100000px;}
.w4{width:9.000000px;}
.w17{width:25.020000px;}
.w8{width:28.260000px;}
.wb{width:31.320000px;}
.w9{width:33.480000px;}
.w12{width:36.180000px;}
.w16{width:40.860000px;}
.w11{width:50.760000px;}
.wd{width:59.220000px;}
.we{width:74.160000px;}
.w5{width:113.580000px;}
.w10{width:123.300000px;}
.wc{width:123.660000px;}
.w13{width:151.740000px;}
.w18{width:158.400000px;}
.w19{width:166.860000px;}
.wa{width:181.260000px;}
.wf{width:216.180000px;}
.w14{width:232.740000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1c{left:64.259974px;}
.x1a{left:66.239974px;}
.x16{left:74.699970px;}
.x17{left:80.280000px;}
.x19{left:83.159954px;}
.x1{left:107.999957px;}
.x8{left:112.139955px;}
.x1b{left:122.939951px;}
.x5{left:132.659947px;}
.x29{left:136.980000px;}
.x37{left:149.580000px;}
.x32{left:159.480000px;}
.x3c{left:163.079935px;}
.x2e{left:167.940000px;}
.x23{left:171.180000px;}
.x24{left:181.079928px;}
.x18{left:193.860000px;}
.x1d{left:206.819927px;}
.x1e{left:207.899917px;}
.x2a{left:214.560000px;}
.x33{left:217.260000px;}
.x1f{left:227.159939px;}
.xe{left:240.840000px;}
.x20{left:247.499901px;}
.x9{left:252.180372px;}
.x21{left:253.979898px;}
.x2f{left:255.240000px;}
.x25{left:266.579893px;}
.x12{left:268.200179px;}
.x40{left:284.039886px;}
.xb{left:295.732382px;}
.xf{left:299.339880px;}
.x2{left:302.579879px;}
.x3e{left:352.799859px;}
.xc{left:354.772385px;}
.x13{left:366.299853px;}
.x10{left:375.119836px;}
.xa{left:392.752343px;}
.x26{left:397.440000px;}
.x6{left:399.779840px;}
.x34{left:418.320000px;}
.x38{left:424.800000px;}
.x3{left:446.400000px;}
.x2b{left:447.840000px;}
.x30{left:482.760000px;}
.x22{left:484.379806px;}
.x27{left:512.459795px;}
.x3a{left:520.559792px;}
.xd{left:538.199785px;}
.x2c{left:543.780000px;}
.x11{left:551.879779px;}
.x41{left:574.559770px;}
.x14{left:582.839767px;}
.x3b{left:586.079766px;}
.x28{left:600.300000px;}
.x31{left:635.760000px;}
.x4{left:659.339736px;}
.x3d{left:664.919734px;}
.x2d{left:667.440000px;}
.x39{left:679.140000px;}
.x15{left:734.580126px;}
.x35{left:745.200000px;}
.x36{left:752.760000px;}
.x3f{left:764.819694px;}
.x7{left:781.200000px;}
@media print{
.v1{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.017628pt;}
.ls1{letter-spacing:0.018761pt;}
.ls5{letter-spacing:0.207424pt;}
.ls2{letter-spacing:0.264687pt;}
.ls8{letter-spacing:0.336535pt;}
.ls4{letter-spacing:57.898671pt;}
.ls3{letter-spacing:83.513774pt;}
.ls0{letter-spacing:1244.903435pt;}
.ws4{word-spacing:-28.816521pt;}
.ws0{word-spacing:-16.018755pt;}
.ws5{word-spacing:-14.767354pt;}
.ws9{word-spacing:-14.737622pt;}
.ws8{word-spacing:-14.719994pt;}
.ws2{word-spacing:-14.463994pt;}
.ws7{word-spacing:-13.616529pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-8.296142pt;}
._1{margin-left:-3.771380pt;}
._8{margin-left:-1.982640pt;}
._3{margin-left:-0.994195pt;}
._0{width:0.891642pt;}
._9{width:2.313769pt;}
._d{width:4.095955pt;}
._c{width:5.117676pt;}
._11{width:6.802852pt;}
._7{width:7.763038pt;}
._4{width:9.454465pt;}
._5{width:10.980840pt;}
._10{width:12.244719pt;}
._12{width:13.384530pt;}
._b{width:14.732143pt;}
._a{width:15.992462pt;}
._6{width:16.932237pt;}
._18{width:18.095357pt;}
._f{width:19.301933pt;}
._16{width:20.299957pt;}
._13{width:21.272296pt;}
._1b{width:22.400563pt;}
._e{width:23.341364pt;}
._14{width:29.894292pt;}
._15{width:31.412964pt;}
._17{width:32.647147pt;}
._1a{width:34.474408pt;}
._19{width:35.478034pt;}
._1c{width:43.125534pt;}
._1d{width:44.146280pt;}
._20{width:47.408910pt;}
._1f{width:48.729495pt;}
._1e{width:51.872525pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs6{font-size:69.119972pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-9.759991pt;}
.y46{bottom:-2.400689pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y23{bottom:2.399166pt;}
.y1b{bottom:2.559101pt;}
.y6a{bottom:2.879082pt;}
.y6c{bottom:2.879088pt;}
.y6e{bottom:2.879094pt;}
.y70{bottom:2.879100pt;}
.y72{bottom:2.879106pt;}
.yb{bottom:3.840034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:44.426880pt;}
.y8{bottom:48.266914pt;}
.y9{bottom:50.186913pt;}
.y92{bottom:169.386599pt;}
.y19{bottom:171.946598pt;}
.yaf{bottom:179.146595pt;}
.yd4{bottom:181.386594pt;}
.y66{bottom:183.146593pt;}
.y91{bottom:187.786592pt;}
.y18{bottom:190.346591pt;}
.yae{bottom:197.546588pt;}
.yd3{bottom:198.346587pt;}
.y65{bottom:201.546586pt;}
.y90{bottom:206.186584pt;}
.y17{bottom:208.746583pt;}
.yad{bottom:215.946580pt;}
.y64{bottom:219.946579pt;}
.yd2{bottom:226.986576pt;}
.y16{bottom:227.146576pt;}
.yac{bottom:234.346573pt;}
.y63{bottom:238.346571pt;}
.yd1{bottom:244.106569pt;}
.y15{bottom:245.546568pt;}
.y8f{bottom:250.666566pt;}
.yab{bottom:252.746566pt;}
.y62{bottom:256.746564pt;}
.y14{bottom:263.946561pt;}
.yaa{bottom:271.146558pt;}
.yd0{bottom:272.746558pt;}
.y61{bottom:275.146557pt;}
.y13{bottom:282.346554pt;}
.y60{bottom:293.546549pt;}
.y8e{bottom:294.506549pt;}
.ycf{bottom:301.706546pt;}
.y5f{bottom:311.946542pt;}
.y8d{bottom:312.906542pt;}
.ya9{bottom:315.626540pt;}
.yce{bottom:318.666539pt;}
.y12{bottom:326.666536pt;}
.y8c{bottom:331.306534pt;}
.ycd{bottom:347.466528pt;}
.y8b{bottom:349.706527pt;}
.y5e{bottom:351.626526pt;}
.ya8{bottom:359.466523pt;}
.ycc{bottom:364.426521pt;}
.y8a{bottom:368.106519pt;}
.y40{bottom:370.986518pt;}
.ya7{bottom:377.866516pt;}
.y2d{bottom:385.386513pt;}
.y89{bottom:386.506512pt;}
.y45{bottom:392.427200pt;}
.ycb{bottom:393.066509pt;}
.y5d{bottom:396.106508pt;}
.ya6{bottom:396.266508pt;}
.y88{bottom:404.906505pt;}
.y44{bottom:405.386505pt;}
.yca{bottom:410.186503pt;}
.ya5{bottom:414.666501pt;}
.y43{bottom:420.746498pt;}
.y87{bottom:423.306497pt;}
.ya4{bottom:433.066493pt;}
.y42{bottom:436.106492pt;}
.yc9{bottom:438.826491pt;}
.y5c{bottom:439.946491pt;}
.y86{bottom:441.706490pt;}
.y41{bottom:451.466486pt;}
.yc8{bottom:455.946484pt;}
.y5b{bottom:458.346483pt;}
.y85{bottom:460.106483pt;}
.ya3{bottom:472.586478pt;}
.yc7{bottom:472.746478pt;}
.y5a{bottom:476.746476pt;}
.y3f{bottom:477.226476pt;}
.y84{bottom:478.506475pt;}
.y59{bottom:495.146469pt;}
.y3e{bottom:495.786468pt;}
.y83{bottom:496.906468pt;}
.yc6{bottom:501.386466pt;}
.ya2{bottom:506.986464pt;}
.y2c{bottom:509.386463pt;}
.y58{bottom:513.546461pt;}
.y82{bottom:515.306461pt;}
.yc5{bottom:518.506459pt;}
.y3d{bottom:519.146459pt;}
.ya1{bottom:525.386457pt;}
.y57{bottom:531.946454pt;}
.y81{bottom:533.706453pt;}
.y3c{bottom:534.506453pt;}
.ya0{bottom:543.786449pt;}
.yc4{bottom:547.146448pt;}
.y80{bottom:552.106446pt;}
.y9f{bottom:562.186442pt;}
.y3b{bottom:565.866440pt;}
.y7f{bottom:570.506438pt;}
.yc3{bottom:576.106436pt;}
.y56{bottom:576.266436pt;}
.y9e{bottom:580.586434pt;}
.y3a{bottom:581.226434pt;}
.y2b{bottom:586.666432pt;}
.y7e{bottom:588.906431pt;}
.yc2{bottom:593.066429pt;}
.y39{bottom:596.586428pt;}
.y9d{bottom:598.986427pt;}
.y7d{bottom:607.306424pt;}
.y38{bottom:611.786422pt;}
.y9c{bottom:617.386420pt;}
.y2a{bottom:617.546420pt;}
.y55{bottom:620.106419pt;}
.yc1{bottom:626.186416pt;}
.y37{bottom:627.146416pt;}
.y29{bottom:631.146414pt;}
.y54{bottom:638.506411pt;}
.y36{bottom:642.506410pt;}
.y28{bottom:644.586409pt;}
.y7c{bottom:651.626406pt;}
.y53{bottom:656.906404pt;}
.y27{bottom:657.226404pt;}
.y35{bottom:657.866404pt;}
.yc0{bottom:662.986401pt;}
.y34{bottom:673.226397pt;}
.y52{bottom:675.306397pt;}
.ybf{bottom:681.386394pt;}
.y26{bottom:686.986392pt;}
.y33{bottom:688.426391pt;}
.y9b{bottom:691.306390pt;}
.y51{bottom:693.706389pt;}
.y7b{bottom:695.466388pt;}
.ybe{bottom:699.786387pt;}
.y32{bottom:703.786385pt;}
.y9a{bottom:709.706383pt;}
.y50{bottom:712.106382pt;}
.y7a{bottom:713.866381pt;}
.y25{bottom:716.746380pt;}
.ybd{bottom:718.186379pt;}
.y31{bottom:719.146379pt;}
.y99{bottom:728.106375pt;}
.y24{bottom:730.506374pt;}
.y79{bottom:732.266374pt;}
.y30{bottom:734.506373pt;}
.ybc{bottom:736.586372pt;}
.y98{bottom:746.506368pt;}
.y2e{bottom:747.146368pt;}
.y2f{bottom:749.866367pt;}
.y22{bottom:749.867200pt;}
.y78{bottom:750.666366pt;}
.ybb{bottom:754.986365pt;}
.y97{bottom:764.906361pt;}
.y77{bottom:769.066359pt;}
.yba{bottom:773.386357pt;}
.y21{bottom:774.186357pt;}
.y4f{bottom:774.986357pt;}
.y96{bottom:783.306353pt;}
.y76{bottom:787.466352pt;}
.yb9{bottom:791.786350pt;}
.y75{bottom:805.866344pt;}
.y11{bottom:806.986344pt;}
.yb8{bottom:810.186343pt;}
.y4e{bottom:818.826339pt;}
.y10{bottom:822.346338pt;}
.y95{bottom:822.986337pt;}
.yb7{bottom:828.586335pt;}
.y4d{bottom:837.226332pt;}
.yf{bottom:838.186331pt;}
.y74{bottom:845.546328pt;}
.yb6{bottom:846.986328pt;}
.y4c{bottom:855.626324pt;}
.ye{bottom:863.786321pt;}
.yb5{bottom:865.386321pt;}
.y94{bottom:867.466320pt;}
.y73{bottom:878.986315pt;}
.yb4{bottom:883.786313pt;}
.yd{bottom:885.226313pt;}
.y4b{bottom:895.306309pt;}
.y71{bottom:898.187200pt;}
.yb3{bottom:902.186306pt;}
.y93{bottom:911.306302pt;}
.y1a{bottom:912.747200pt;}
.y6f{bottom:913.547200pt;}
.y1f{bottom:919.946299pt;}
.yb2{bottom:920.586298pt;}
.y6d{bottom:928.907200pt;}
.y4a{bottom:929.706295pt;}
.y1e{bottom:935.306293pt;}
.yb1{bottom:938.986291pt;}
.y6b{bottom:944.267200pt;}
.y49{bottom:948.106287pt;}
.y69{bottom:959.467200pt;}
.y1d{bottom:959.786283pt;}
.y68{bottom:962.346282pt;}
.y48{bottom:966.506280pt;}
.y1c{bottom:981.226274pt;}
.yb0{bottom:983.466273pt;}
.y20{bottom:983.786273pt;}
.y47{bottom:984.906273pt;}
.y67{bottom:986.026272pt;}
.y4{bottom:1003.306265pt;}
.y7{bottom:1028.906255pt;}
.y3{bottom:1032.266254pt;}
.y2{bottom:1047.626248pt;}
.y1{bottom:1062.986241pt;}
.h3{height:4.640000pt;}
.h14{height:9.440000pt;}
.he{height:12.480000pt;}
.h17{height:14.720000pt;}
.h18{height:15.200000pt;}
.h16{height:15.360000pt;}
.hc{height:16.960000pt;}
.h6{height:18.240000pt;}
.hf{height:29.961551pt;}
.h5{height:30.778113pt;}
.h12{height:31.992175pt;}
.h4{height:32.531237pt;}
.h11{height:32.554674pt;}
.h19{height:33.328112pt;}
.h10{height:34.968736pt;}
.h7{height:35.404673pt;}
.ha{height:36.001236pt;}
.h1{height:38.128110pt;}
.h13{height:38.698735pt;}
.h9{height:39.904984pt;}
.h1a{height:42.262483pt;}
.hd{height:42.656233pt;}
.h15{height:43.374983pt;}
.h2{height:45.937482pt;}
.hb{height:46.844981pt;}
.h8{height:50.748730pt;}
.h0{height:1122.666667pt;}
.w3{width:3.040000pt;}
.w7{width:6.080000pt;}
.w6{width:6.240000pt;}
.w15{width:6.720000pt;}
.w2{width:7.200000pt;}
.w4{width:8.000000pt;}
.w17{width:22.240000pt;}
.w8{width:25.120000pt;}
.wb{width:27.840000pt;}
.w9{width:29.760000pt;}
.w12{width:32.160000pt;}
.w16{width:36.320000pt;}
.w11{width:45.120000pt;}
.wd{width:52.640000pt;}
.we{width:65.920000pt;}
.w5{width:100.960000pt;}
.w10{width:109.600000pt;}
.wc{width:109.920000pt;}
.w13{width:134.880000pt;}
.w18{width:140.800000pt;}
.w19{width:148.320000pt;}
.wa{width:161.120000pt;}
.wf{width:192.160000pt;}
.w14{width:206.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1c{left:57.119977pt;}
.x1a{left:58.879976pt;}
.x16{left:66.399973pt;}
.x17{left:71.360000pt;}
.x19{left:73.919959pt;}
.x1{left:95.999962pt;}
.x8{left:99.679960pt;}
.x1b{left:109.279956pt;}
.x5{left:117.919953pt;}
.x29{left:121.760000pt;}
.x37{left:132.960000pt;}
.x32{left:141.760000pt;}
.x3c{left:144.959942pt;}
.x2e{left:149.280000pt;}
.x23{left:152.160000pt;}
.x24{left:160.959936pt;}
.x18{left:172.320000pt;}
.x1d{left:183.839935pt;}
.x1e{left:184.799926pt;}
.x2a{left:190.720000pt;}
.x33{left:193.120000pt;}
.x1f{left:201.919946pt;}
.xe{left:214.080000pt;}
.x20{left:219.999912pt;}
.x9{left:224.160330pt;}
.x21{left:225.759910pt;}
.x2f{left:226.880000pt;}
.x25{left:236.959905pt;}
.x12{left:238.400159pt;}
.x40{left:252.479899pt;}
.xb{left:262.873228pt;}
.xf{left:266.079894pt;}
.x2{left:268.959892pt;}
.x3e{left:313.599875pt;}
.xc{left:315.353231pt;}
.x13{left:325.599870pt;}
.x10{left:333.439854pt;}
.xa{left:349.113194pt;}
.x26{left:353.280000pt;}
.x6{left:355.359858pt;}
.x34{left:371.840000pt;}
.x38{left:377.600000pt;}
.x3{left:396.800000pt;}
.x2b{left:398.080000pt;}
.x30{left:429.120000pt;}
.x22{left:430.559828pt;}
.x27{left:455.519818pt;}
.x3a{left:462.719815pt;}
.xd{left:478.399809pt;}
.x2c{left:483.360000pt;}
.x11{left:490.559804pt;}
.x41{left:510.719796pt;}
.x14{left:518.079793pt;}
.x3b{left:520.959792pt;}
.x28{left:533.600000pt;}
.x31{left:565.120000pt;}
.x4{left:586.079766pt;}
.x3d{left:591.039764pt;}
.x2d{left:593.280000pt;}
.x39{left:603.680000pt;}
.x15{left:652.960112pt;}
.x35{left:662.400000pt;}
.x36{left:669.120000pt;}
.x3f{left:679.839728pt;}
.x7{left:694.400000pt;}
}




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