
    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_becf6ca00549912937526274.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76e42c99f77326b52cbe8daf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964844;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_470739d1b7a0e56f63511b18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038574;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_84d2ccbe9aea3c0ef3c9bc47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_22231eea83903f5599e78180.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_601697395d506c9a06421c34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_229141d7f320d595aa912a39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.771973;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_f578d287eb332348404075a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_2e9b930023562f4e221da7a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_85e48dcdf519ddf726186365.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_1cb5a105baeb7cbf2eb1eed4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.842000;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_e5e4ab8125c5ba829652bf77.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.066000;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_8e95437efb24d64cc699c11c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962000;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_709c546e0901f282c9ceac8c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.972000;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_83418f73696e9c4207d2e299.woff2')format("woff");}.fff{font-family:fff;line-height:0.890625;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_ba626acb22071427f050114e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.829000;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_e80bb05d97555fad8283c7cd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.707520;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:-23.053140px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.050800px;}
.ls2{letter-spacing:-0.623028px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000017px;}
.ls9{letter-spacing:0.001090px;}
.ls6{letter-spacing:0.001442px;}
.ls8{letter-spacing:0.002357px;}
.lsa{letter-spacing:0.007620px;}
.ls7{letter-spacing:0.009574px;}
.ls4{letter-spacing:0.011914px;}
.ls5{letter-spacing:0.017971px;}
.ls3{letter-spacing:2.976702px;}
.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;}
}
.ws4{word-spacing:-34.197446px;}
.ws8{word-spacing:-17.929430px;}
.ws3{word-spacing:-16.683370px;}
.ws7{word-spacing:-16.060342px;}
.ws5{word-spacing:-15.805358px;}
.ws6{word-spacing:-10.452872px;}
.ws0{word-spacing:-0.065975px;}
.ws1{word-spacing:-0.049478px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-9.957128px;}
._2{margin-left:-8.723296px;}
._8{margin-left:-6.977384px;}
._1{margin-left:-5.393105px;}
._5{margin-left:-4.200784px;}
._3{margin-left:-2.768844px;}
._0{margin-left:-1.214051px;}
._7{width:1.100353px;}
._6{width:2.145301px;}
._b{width:3.400697px;}
._4{width:4.430930px;}
._9{width:5.815830px;}
._c{width:7.649983px;}
._d{width:9.090225px;}
._a{width:10.105830px;}
._16{width:11.126948px;}
._14{width:12.152907px;}
._12{width:13.290208px;}
._13{width:14.296457px;}
._15{width:15.748409px;}
._17{width:17.880543px;}
._11{width:19.105227px;}
._10{width:24.853029px;}
._f{width:35.479160px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:40.358580px;}
.fs7{font-size:49.478028px;}
.fsa{font-size:51.008400px;}
.fs9{font-size:58.295280px;}
.fs3{font-size:58.478028px;}
.fs0{font-size:59.976564px;}
.fs8{font-size:65.582400px;}
.fs6{font-size:65.975100px;}
.fs2{font-size:67.447266px;}
.fs4{font-size:67.473630px;}
.fsc{font-size:69.225600px;}
.fs1{font-size:80.969238px;}
.fs5{font-size:101.957520px;}
.fsb{font-size:218.607600px;}
.y0{bottom:0.000000px;}
.y1f{bottom:13.500000px;}
.y1d{bottom:16.184250px;}
.y1e{bottom:65.029650px;}
.y9c{bottom:105.390300px;}
.ya4{bottom:105.390600px;}
.y83{bottom:105.390750px;}
.yb1{bottom:105.821100px;}
.y3f{bottom:105.821550px;}
.yb8{bottom:105.821700px;}
.yba{bottom:108.529050px;}
.y91{bottom:118.872900px;}
.y9b{bottom:125.429400px;}
.ya3{bottom:125.429700px;}
.y82{bottom:125.429850px;}
.yb0{bottom:125.859600px;}
.yb7{bottom:125.860200px;}
.y90{bottom:138.912000px;}
.ydd{bottom:138.940500px;}
.y9a{bottom:145.468500px;}
.ya2{bottom:145.468800px;}
.yaf{bottom:145.899300px;}
.yb6{bottom:145.899900px;}
.ya1{bottom:165.507900px;}
.yae{bottom:165.938400px;}
.yb5{bottom:165.939000px;}
.y9f{bottom:170.856450px;}
.ycf{bottom:170.856600px;}
.y67{bottom:170.857500px;}
.ya0{bottom:185.547000px;}
.yad{bottom:185.977500px;}
.yce{bottom:192.717300px;}
.yb3{bottom:214.578000px;}
.y3e{bottom:214.579200px;}
.ycd{bottom:236.438700px;}
.y81{bottom:236.439300px;}
.y65{bottom:236.439750px;}
.y3d{bottom:236.439900px;}
.ycc{bottom:258.299400px;}
.y80{bottom:258.300000px;}
.y64{bottom:258.300450px;}
.y3c{bottom:258.300600px;}
.y9e{bottom:258.835500px;}
.ycb{bottom:280.160100px;}
.y7f{bottom:280.160700px;}
.y63{bottom:280.161150px;}
.y3b{bottom:280.161300px;}
.yca{bottom:302.020800px;}
.y62{bottom:302.021850px;}
.y3a{bottom:302.022000px;}
.yc9{bottom:323.881500px;}
.y7e{bottom:323.882250px;}
.y61{bottom:323.882550px;}
.y39{bottom:323.882700px;}
.yc8{bottom:345.742200px;}
.y7d{bottom:345.742950px;}
.y60{bottom:345.743250px;}
.y38{bottom:345.743400px;}
.yc7{bottom:367.602900px;}
.y7c{bottom:367.603650px;}
.y5f{bottom:367.603950px;}
.yc6{bottom:389.463600px;}
.y7b{bottom:389.464350px;}
.y5e{bottom:389.464650px;}
.y37{bottom:389.464950px;}
.yc5{bottom:411.324300px;}
.y7a{bottom:411.325050px;}
.ydc{bottom:411.325200px;}
.y5d{bottom:411.325350px;}
.y36{bottom:411.325650px;}
.y1c{bottom:415.669935px;}
.y1b{bottom:430.511736px;}
.yc4{bottom:433.185000px;}
.y79{bottom:433.185750px;}
.ydb{bottom:433.185900px;}
.y5c{bottom:433.186050px;}
.y35{bottom:433.186350px;}
.yc3{bottom:455.045700px;}
.y78{bottom:455.046450px;}
.yda{bottom:455.046600px;}
.y5b{bottom:455.046750px;}
.y34{bottom:455.047050px;}
.yc2{bottom:476.906400px;}
.yac{bottom:476.906850px;}
.y99{bottom:476.907000px;}
.y77{bottom:476.907150px;}
.yd9{bottom:476.907300px;}
.y5a{bottom:476.907450px;}
.y33{bottom:476.907750px;}
.y1a{bottom:493.253920px;}
.yc1{bottom:498.767100px;}
.yab{bottom:498.767550px;}
.y98{bottom:498.767700px;}
.yd8{bottom:498.768000px;}
.y59{bottom:498.768150px;}
.y32{bottom:498.768450px;}
.y19{bottom:508.095720px;}
.yc0{bottom:520.627800px;}
.yaa{bottom:520.628250px;}
.y97{bottom:520.628400px;}
.y76{bottom:520.628700px;}
.y58{bottom:520.628850px;}
.y31{bottom:520.629150px;}
.y18{bottom:522.943372px;}
.y17{bottom:537.785172px;}
.yb4{bottom:542.488500px;}
.ya9{bottom:542.488950px;}
.y96{bottom:542.489100px;}
.y75{bottom:542.489400px;}
.y57{bottom:542.489550px;}
.y30{bottom:542.489850px;}
.y16{bottom:552.562515px;}
.ybf{bottom:564.349200px;}
.ya8{bottom:564.349650px;}
.y95{bottom:564.349800px;}
.y74{bottom:564.350100px;}
.y56{bottom:564.350250px;}
.y2f{bottom:564.350550px;}
.y15{bottom:580.230480px;}
.ybe{bottom:586.209900px;}
.ya7{bottom:586.210350px;}
.y94{bottom:586.210500px;}
.y73{bottom:586.210800px;}
.y55{bottom:586.210950px;}
.y2e{bottom:586.211250px;}
.y14{bottom:595.072280px;}
.ybd{bottom:608.070600px;}
.y93{bottom:608.071200px;}
.y72{bottom:608.071500px;}
.y54{bottom:608.071650px;}
.y2d{bottom:608.071950px;}
.y13{bottom:609.919931px;}
.y12{bottom:624.761732px;}
.ya6{bottom:629.931900px;}
.y2c{bottom:629.932050px;}
.y71{bottom:629.932200px;}
.y53{bottom:629.932350px;}
.y11{bottom:639.603532px;}
.ybc{bottom:651.792150px;}
.yb9{bottom:651.792600px;}
.yd7{bottom:651.792900px;}
.y52{bottom:651.793050px;}
.y10{bottom:654.380875px;}
.y66{bottom:654.625500px;}
.y92{bottom:655.047000px;}
.yb2{bottom:673.653000px;}
.y2b{bottom:673.653600px;}
.y51{bottom:673.653750px;}
.yf{bottom:682.048840px;}
.y9d{bottom:684.675000px;}
.y8f{bottom:695.514150px;}
.yd6{bottom:695.514300px;}
.y50{bottom:695.514450px;}
.ye{bottom:696.826182px;}
.ya5{bottom:701.718000px;}
.ybb{bottom:704.161500px;}
.y8e{bottom:717.374850px;}
.yd5{bottom:717.375000px;}
.y4f{bottom:717.375150px;}
.y70{bottom:717.375300px;}
.yd{bottom:724.494147px;}
.y8d{bottom:739.235550px;}
.yd4{bottom:739.235700px;}
.y4e{bottom:739.235850px;}
.y6f{bottom:739.236000px;}
.yc{bottom:739.335948px;}
.yb{bottom:754.183599px;}
.y2a{bottom:757.739700px;}
.y8c{bottom:761.096250px;}
.yd3{bottom:761.096400px;}
.y4d{bottom:761.096550px;}
.y6e{bottom:761.096700px;}
.ya{bottom:768.955078px;}
.y29{bottom:778.507050px;}
.y8b{bottom:782.956950px;}
.yd2{bottom:782.957100px;}
.y4c{bottom:782.957250px;}
.y6d{bottom:782.957400px;}
.y8a{bottom:804.817650px;}
.yd1{bottom:804.817800px;}
.y4b{bottom:804.817950px;}
.y6c{bottom:804.818100px;}
.y28{bottom:820.042950px;}
.yd0{bottom:826.678500px;}
.y4a{bottom:826.678650px;}
.y6b{bottom:826.678800px;}
.y27{bottom:840.810300px;}
.y89{bottom:848.539200px;}
.y49{bottom:848.539350px;}
.y6a{bottom:848.539500px;}
.y48{bottom:870.400050px;}
.y69{bottom:870.400200px;}
.y26{bottom:882.345600px;}
.y88{bottom:892.260750px;}
.y68{bottom:892.260900px;}
.y9{bottom:901.218750px;}
.y87{bottom:914.121450px;}
.y47{bottom:914.121600px;}
.y25{bottom:923.152650px;}
.y86{bottom:935.982150px;}
.y46{bottom:935.982300px;}
.y8{bottom:943.892584px;}
.y85{bottom:957.842850px;}
.y45{bottom:957.843000px;}
.y7{bottom:971.853516px;}
.y84{bottom:979.703550px;}
.y44{bottom:979.703700px;}
.y24{bottom:981.447600px;}
.y43{bottom:1001.564400px;}
.y42{bottom:1023.425100px;}
.y23{bottom:1039.742550px;}
.y41{bottom:1045.285800px;}
.y6{bottom:1047.656250px;}
.y5{bottom:1064.255859px;}
.y40{bottom:1067.146500px;}
.y4{bottom:1095.410151px;}
.y22{bottom:1098.037500px;}
.y1{bottom:1100.390625px;}
.y3{bottom:1117.042968px;}
.y20{bottom:1135.642500px;}
.y2{bottom:1137.287109px;}
.y21{bottom:1151.895750px;}
.h10{height:36.317981px;}
.h8{height:38.195685px;}
.h1{height:39.974614px;}
.h9{height:40.200898px;}
.h15{height:41.316804px;}
.hf{height:41.506239px;}
.h4{height:44.543810px;}
.hd{height:46.235592px;}
.h14{height:49.288627px;}
.h7{height:50.930973px;}
.h5{height:52.087797px;}
.h12{height:53.121744px;}
.h3{height:54.800904px;}
.h13{height:56.072736px;}
.h2{height:61.675787px;}
.h6{height:79.654312px;}
.h11{height:155.648611px;}
.hc{height:1233.150000px;}
.he{height:1235.835000px;}
.h0{height:1261.500000px;}
.ha{height:1262.835000px;}
.hb{height:1263.000000px;}
.w3{width:826.020000px;}
.w4{width:829.500000px;}
.w0{width:892.500000px;}
.w1{width:892.935000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:31.500000px;}
.x9{left:75.525900px;}
.x10{left:77.247945px;}
.xa{left:103.067550px;}
.x3{left:127.558593px;}
.xf{left:128.887500px;}
.xc{left:154.707000px;}
.x8{left:180.526500px;}
.x7{left:208.740000px;}
.x16{left:210.724500px;}
.x12{left:218.472000px;}
.x11{left:222.570000px;}
.x15{left:236.544000px;}
.x14{left:240.643500px;}
.x1{left:244.488282px;}
.x13{left:248.389500px;}
.x2{left:265.746093px;}
.xe{left:276.444000px;}
.xd{left:284.191500px;}
.x5{left:293.505000px;}
.xb{left:296.976000px;}
.x6{left:699.729000px;}
@media print{
.v2{vertical-align:-20.491680pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.489600pt;}
.ls2{letter-spacing:-0.553803pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000015pt;}
.ls9{letter-spacing:0.000969pt;}
.ls6{letter-spacing:0.001282pt;}
.ls8{letter-spacing:0.002095pt;}
.lsa{letter-spacing:0.006773pt;}
.ls7{letter-spacing:0.008510pt;}
.ls4{letter-spacing:0.010590pt;}
.ls5{letter-spacing:0.015974pt;}
.ls3{letter-spacing:2.645957pt;}
.ws4{word-spacing:-30.397730pt;}
.ws8{word-spacing:-15.937271pt;}
.ws3{word-spacing:-14.829662pt;}
.ws7{word-spacing:-14.275859pt;}
.ws5{word-spacing:-14.049207pt;}
.ws6{word-spacing:-9.291442pt;}
.ws0{word-spacing:-0.058645pt;}
.ws1{word-spacing:-0.043980pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-8.850780pt;}
._2{margin-left:-7.754041pt;}
._8{margin-left:-6.202119pt;}
._1{margin-left:-4.793871pt;}
._5{margin-left:-3.734030pt;}
._3{margin-left:-2.461195pt;}
._0{margin-left:-1.079156pt;}
._7{width:0.978092pt;}
._6{width:1.906935pt;}
._b{width:3.022841pt;}
._4{width:3.938604pt;}
._9{width:5.169626pt;}
._c{width:6.799985pt;}
._d{width:8.080200pt;}
._a{width:8.982960pt;}
._16{width:9.890621pt;}
._14{width:10.802584pt;}
._12{width:11.813518pt;}
._13{width:12.707962pt;}
._15{width:13.998585pt;}
._17{width:15.893816pt;}
._11{width:16.982424pt;}
._10{width:22.091581pt;}
._f{width:31.537031pt;}
.fsd{font-size:35.874293pt;}
.fs7{font-size:43.980469pt;}
.fsa{font-size:45.340800pt;}
.fs9{font-size:51.818027pt;}
.fs3{font-size:51.980469pt;}
.fs0{font-size:53.312501pt;}
.fs8{font-size:58.295467pt;}
.fs6{font-size:58.644533pt;}
.fs2{font-size:59.953125pt;}
.fs4{font-size:59.976560pt;}
.fsc{font-size:61.533867pt;}
.fs1{font-size:71.972656pt;}
.fs5{font-size:90.628907pt;}
.fsb{font-size:194.317867pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:12.000000pt;}
.y1d{bottom:14.386000pt;}
.y1e{bottom:57.804133pt;}
.y9c{bottom:93.680267pt;}
.ya4{bottom:93.680533pt;}
.y83{bottom:93.680667pt;}
.yb1{bottom:94.063200pt;}
.y3f{bottom:94.063600pt;}
.yb8{bottom:94.063733pt;}
.yba{bottom:96.470267pt;}
.y91{bottom:105.664800pt;}
.y9b{bottom:111.492800pt;}
.ya3{bottom:111.493067pt;}
.y82{bottom:111.493200pt;}
.yb0{bottom:111.875200pt;}
.yb7{bottom:111.875733pt;}
.y90{bottom:123.477333pt;}
.ydd{bottom:123.502667pt;}
.y9a{bottom:129.305333pt;}
.ya2{bottom:129.305600pt;}
.yaf{bottom:129.688267pt;}
.yb6{bottom:129.688800pt;}
.ya1{bottom:147.118133pt;}
.yae{bottom:147.500800pt;}
.yb5{bottom:147.501333pt;}
.y9f{bottom:151.872400pt;}
.ycf{bottom:151.872533pt;}
.y67{bottom:151.873333pt;}
.ya0{bottom:164.930667pt;}
.yad{bottom:165.313333pt;}
.yce{bottom:171.304267pt;}
.yb3{bottom:190.736000pt;}
.y3e{bottom:190.737067pt;}
.ycd{bottom:210.167733pt;}
.y81{bottom:210.168267pt;}
.y65{bottom:210.168667pt;}
.y3d{bottom:210.168800pt;}
.ycc{bottom:229.599467pt;}
.y80{bottom:229.600000pt;}
.y64{bottom:229.600400pt;}
.y3c{bottom:229.600533pt;}
.y9e{bottom:230.076000pt;}
.ycb{bottom:249.031200pt;}
.y7f{bottom:249.031733pt;}
.y63{bottom:249.032133pt;}
.y3b{bottom:249.032267pt;}
.yca{bottom:268.462933pt;}
.y62{bottom:268.463867pt;}
.y3a{bottom:268.464000pt;}
.yc9{bottom:287.894667pt;}
.y7e{bottom:287.895333pt;}
.y61{bottom:287.895600pt;}
.y39{bottom:287.895733pt;}
.yc8{bottom:307.326400pt;}
.y7d{bottom:307.327067pt;}
.y60{bottom:307.327333pt;}
.y38{bottom:307.327467pt;}
.yc7{bottom:326.758133pt;}
.y7c{bottom:326.758800pt;}
.y5f{bottom:326.759067pt;}
.yc6{bottom:346.189867pt;}
.y7b{bottom:346.190533pt;}
.y5e{bottom:346.190800pt;}
.y37{bottom:346.191067pt;}
.yc5{bottom:365.621600pt;}
.y7a{bottom:365.622267pt;}
.ydc{bottom:365.622400pt;}
.y5d{bottom:365.622533pt;}
.y36{bottom:365.622800pt;}
.y1c{bottom:369.484387pt;}
.y1b{bottom:382.677098pt;}
.yc4{bottom:385.053333pt;}
.y79{bottom:385.054000pt;}
.ydb{bottom:385.054133pt;}
.y5c{bottom:385.054267pt;}
.y35{bottom:385.054533pt;}
.yc3{bottom:404.485067pt;}
.y78{bottom:404.485733pt;}
.yda{bottom:404.485867pt;}
.y5b{bottom:404.486000pt;}
.y34{bottom:404.486267pt;}
.yc2{bottom:423.916800pt;}
.yac{bottom:423.917200pt;}
.y99{bottom:423.917333pt;}
.y77{bottom:423.917467pt;}
.yd9{bottom:423.917600pt;}
.y5a{bottom:423.917733pt;}
.y33{bottom:423.918000pt;}
.y1a{bottom:438.447929pt;}
.yc1{bottom:443.348533pt;}
.yab{bottom:443.348933pt;}
.y98{bottom:443.349067pt;}
.yd8{bottom:443.349333pt;}
.y59{bottom:443.349467pt;}
.y32{bottom:443.349733pt;}
.y19{bottom:451.640640pt;}
.yc0{bottom:462.780267pt;}
.yaa{bottom:462.780667pt;}
.y97{bottom:462.780800pt;}
.y76{bottom:462.781067pt;}
.y58{bottom:462.781200pt;}
.y31{bottom:462.781467pt;}
.y18{bottom:464.838553pt;}
.y17{bottom:478.031264pt;}
.yb4{bottom:482.212000pt;}
.ya9{bottom:482.212400pt;}
.y96{bottom:482.212533pt;}
.y75{bottom:482.212800pt;}
.y57{bottom:482.212933pt;}
.y30{bottom:482.213200pt;}
.y16{bottom:491.166680pt;}
.ybf{bottom:501.643733pt;}
.ya8{bottom:501.644133pt;}
.y95{bottom:501.644267pt;}
.y74{bottom:501.644533pt;}
.y56{bottom:501.644667pt;}
.y2f{bottom:501.644933pt;}
.y15{bottom:515.760426pt;}
.ybe{bottom:521.075467pt;}
.ya7{bottom:521.075867pt;}
.y94{bottom:521.076000pt;}
.y73{bottom:521.076267pt;}
.y55{bottom:521.076400pt;}
.y2e{bottom:521.076667pt;}
.y14{bottom:528.953138pt;}
.ybd{bottom:540.507200pt;}
.y93{bottom:540.507733pt;}
.y72{bottom:540.508000pt;}
.y54{bottom:540.508133pt;}
.y2d{bottom:540.508400pt;}
.y13{bottom:542.151050pt;}
.y12{bottom:555.343761pt;}
.ya6{bottom:559.939467pt;}
.y2c{bottom:559.939600pt;}
.y71{bottom:559.939733pt;}
.y53{bottom:559.939867pt;}
.y11{bottom:568.536473pt;}
.ybc{bottom:579.370800pt;}
.yb9{bottom:579.371200pt;}
.yd7{bottom:579.371467pt;}
.y52{bottom:579.371600pt;}
.y10{bottom:581.671889pt;}
.y66{bottom:581.889333pt;}
.y92{bottom:582.264000pt;}
.yb2{bottom:598.802667pt;}
.y2b{bottom:598.803200pt;}
.y51{bottom:598.803333pt;}
.yf{bottom:606.265635pt;}
.y9d{bottom:608.600000pt;}
.y8f{bottom:618.234800pt;}
.yd6{bottom:618.234933pt;}
.y50{bottom:618.235067pt;}
.ye{bottom:619.401051pt;}
.ya5{bottom:623.749333pt;}
.ybb{bottom:625.921333pt;}
.y8e{bottom:637.666533pt;}
.yd5{bottom:637.666667pt;}
.y4f{bottom:637.666800pt;}
.y70{bottom:637.666933pt;}
.yd{bottom:643.994798pt;}
.y8d{bottom:657.098267pt;}
.yd4{bottom:657.098400pt;}
.y4e{bottom:657.098533pt;}
.y6f{bottom:657.098667pt;}
.yc{bottom:657.187509pt;}
.yb{bottom:670.385421pt;}
.y2a{bottom:673.546400pt;}
.y8c{bottom:676.530000pt;}
.yd3{bottom:676.530133pt;}
.y4d{bottom:676.530267pt;}
.y6e{bottom:676.530400pt;}
.ya{bottom:683.515625pt;}
.y29{bottom:692.006267pt;}
.y8b{bottom:695.961733pt;}
.yd2{bottom:695.961867pt;}
.y4c{bottom:695.962000pt;}
.y6d{bottom:695.962133pt;}
.y8a{bottom:715.393467pt;}
.yd1{bottom:715.393600pt;}
.y4b{bottom:715.393733pt;}
.y6c{bottom:715.393867pt;}
.y28{bottom:728.927067pt;}
.yd0{bottom:734.825333pt;}
.y4a{bottom:734.825467pt;}
.y6b{bottom:734.825600pt;}
.y27{bottom:747.386933pt;}
.y89{bottom:754.257067pt;}
.y49{bottom:754.257200pt;}
.y6a{bottom:754.257333pt;}
.y48{bottom:773.688933pt;}
.y69{bottom:773.689067pt;}
.y26{bottom:784.307200pt;}
.y88{bottom:793.120667pt;}
.y68{bottom:793.120800pt;}
.y9{bottom:801.083333pt;}
.y87{bottom:812.552400pt;}
.y47{bottom:812.552533pt;}
.y25{bottom:820.580133pt;}
.y86{bottom:831.984133pt;}
.y46{bottom:831.984267pt;}
.y8{bottom:839.015630pt;}
.y85{bottom:851.415867pt;}
.y45{bottom:851.416000pt;}
.y7{bottom:863.869792pt;}
.y84{bottom:870.847600pt;}
.y44{bottom:870.847733pt;}
.y24{bottom:872.397867pt;}
.y43{bottom:890.279467pt;}
.y42{bottom:909.711200pt;}
.y23{bottom:924.215600pt;}
.y41{bottom:929.142933pt;}
.y6{bottom:931.250000pt;}
.y5{bottom:946.005208pt;}
.y40{bottom:948.574667pt;}
.y4{bottom:973.697912pt;}
.y22{bottom:976.033333pt;}
.y1{bottom:978.125000pt;}
.y3{bottom:992.927083pt;}
.y20{bottom:1009.460000pt;}
.y2{bottom:1010.921875pt;}
.y21{bottom:1023.907333pt;}
.h10{height:32.282650pt;}
.h8{height:33.951720pt;}
.h1{height:35.532990pt;}
.h9{height:35.734131pt;}
.h15{height:36.726048pt;}
.hf{height:36.894435pt;}
.h4{height:39.594498pt;}
.hd{height:41.098304pt;}
.h14{height:43.812113pt;}
.h7{height:45.271976pt;}
.h5{height:46.300264pt;}
.h12{height:47.219328pt;}
.h3{height:48.711914pt;}
.h13{height:49.842432pt;}
.h2{height:54.822922pt;}
.h6{height:70.803833pt;}
.h11{height:138.354321pt;}
.hc{height:1096.133333pt;}
.he{height:1098.520000pt;}
.h0{height:1121.333333pt;}
.ha{height:1122.520000pt;}
.hb{height:1122.666667pt;}
.w3{width:734.240000pt;}
.w4{width:737.333333pt;}
.w0{width:793.333333pt;}
.w1{width:793.720000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:28.000000pt;}
.x9{left:67.134133pt;}
.x10{left:68.664840pt;}
.xa{left:91.615600pt;}
.x3{left:113.385416pt;}
.xf{left:114.566667pt;}
.xc{left:137.517333pt;}
.x8{left:160.468000pt;}
.x7{left:185.546667pt;}
.x16{left:187.310667pt;}
.x12{left:194.197333pt;}
.x11{left:197.840000pt;}
.x15{left:210.261333pt;}
.x14{left:213.905333pt;}
.x1{left:217.322917pt;}
.x13{left:220.790667pt;}
.x2{left:236.218749pt;}
.xe{left:245.728000pt;}
.xd{left:252.614667pt;}
.x5{left:260.893333pt;}
.xb{left:263.978667pt;}
.x6{left:621.981333pt;}
}




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