
    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_c2390557901b656d6cd05622.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_08514f88dce01425e396f290.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_6e269eb9dc2f31e617433be7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_eb337df35860c7cdb5f5d201.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_0e5a3885ae9a925d0b809dca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_d5d059ca8242090e453dc18a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.579000;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_118782928e65e1c12fabb889.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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);}
.v3{vertical-align:-34.620000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:46.674000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:21.793638px;}
.ls7{letter-spacing:21.796366px;}
.ls6{letter-spacing:21.797460px;}
.ls5{letter-spacing:21.799638px;}
.ls3{letter-spacing:24.023460px;}
.ls2{letter-spacing:28.060800px;}
.ls9{letter-spacing:29.059638px;}
.ls4{letter-spacing:29.065638px;}
.ls1{letter-spacing:32.729459px;}
.lsa{letter-spacing:1967.185638px;}
.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;}
}
.ws10{word-spacing:-86.077200px;}
.ws2e{word-spacing:-65.454540px;}
.ws4{word-spacing:-58.102110px;}
.ws1{word-spacing:-58.016033px;}
.ws41{word-spacing:-48.418439px;}
.ws5{word-spacing:-48.346707px;}
.ws4b{word-spacing:-44.529244px;}
.ws4d{word-spacing:-44.528695px;}
.ws46{word-spacing:-44.163218px;}
.ws3a{word-spacing:-43.905251px;}
.ws5e{word-spacing:-43.863781px;}
.ws60{word-spacing:-43.820132px;}
.ws6c{word-spacing:-43.805977px;}
.ws6e{word-spacing:-43.805976px;}
.ws6f{word-spacing:-43.799957px;}
.ws4f{word-spacing:-43.663611px;}
.ws39{word-spacing:-43.663066px;}
.ws84{word-spacing:-43.663063px;}
.ws5d{word-spacing:-43.663062px;}
.ws17{word-spacing:-43.663053px;}
.ws86{word-spacing:-43.662527px;}
.ws7c{word-spacing:-43.662513px;}
.ws58{word-spacing:-43.661980px;}
.ws13{word-spacing:-43.661977px;}
.ws1b{word-spacing:-43.661964px;}
.ws6b{word-spacing:-43.661957px;}
.ws26{word-spacing:-43.661946px;}
.wsf{word-spacing:-43.661440px;}
.ws43{word-spacing:-43.661433px;}
.ws2b{word-spacing:-43.661431px;}
.ws35{word-spacing:-43.661423px;}
.ws83{word-spacing:-43.660882px;}
.ws62{word-spacing:-43.660880px;}
.ws49{word-spacing:-43.660865px;}
.ws73{word-spacing:-43.660864px;}
.ws37{word-spacing:-43.660347px;}
.ws64{word-spacing:-43.660342px;}
.ws6{word-spacing:-43.660332px;}
.ws1d{word-spacing:-43.660328px;}
.ws24{word-spacing:-43.660307px;}
.ws7f{word-spacing:-43.659801px;}
.ws8{word-spacing:-43.659796px;}
.ws81{word-spacing:-43.659795px;}
.ws3f{word-spacing:-43.659791px;}
.ws48{word-spacing:-43.659789px;}
.ws29{word-spacing:-43.659785px;}
.ws5a{word-spacing:-43.659781px;}
.ws61{word-spacing:-43.659765px;}
.ws3d{word-spacing:-43.659251px;}
.ws42{word-spacing:-43.659248px;}
.ws88{word-spacing:-43.659247px;}
.ws5c{word-spacing:-43.659215px;}
.ws70{word-spacing:-43.658711px;}
.ws20{word-spacing:-43.658702px;}
.ws7a{word-spacing:-43.658698px;}
.ws12{word-spacing:-43.658695px;}
.ws23{word-spacing:-43.658688px;}
.ws25{word-spacing:-43.658686px;}
.ws2f{word-spacing:-43.658178px;}
.ws72{word-spacing:-43.658158px;}
.wsc{word-spacing:-43.658155px;}
.ws51{word-spacing:-43.658153px;}
.ws18{word-spacing:-43.658147px;}
.ws87{word-spacing:-43.658145px;}
.ws55{word-spacing:-43.658139px;}
.ws65{word-spacing:-43.658126px;}
.wse{word-spacing:-43.657618px;}
.ws66{word-spacing:-43.657614px;}
.ws1f{word-spacing:-43.657611px;}
.ws54{word-spacing:-43.657610px;}
.ws85{word-spacing:-43.657594px;}
.ws77{word-spacing:-43.657574px;}
.ws76{word-spacing:-43.657059px;}
.ws79{word-spacing:-43.657057px;}
.ws4a{word-spacing:-43.657014px;}
.ws50{word-spacing:-43.657009px;}
.ws34{word-spacing:-43.656531px;}
.ws7{word-spacing:-43.655988px;}
.ws57{word-spacing:-43.655980px;}
.ws38{word-spacing:-43.655972px;}
.ws47{word-spacing:-43.655967px;}
.ws68{word-spacing:-43.655961px;}
.ws3e{word-spacing:-43.655957px;}
.ws15{word-spacing:-43.655432px;}
.ws52{word-spacing:-43.655394px;}
.ws21{word-spacing:-43.654867px;}
.ws56{word-spacing:-43.654865px;}
.ws6a{word-spacing:-43.654851px;}
.ws67{word-spacing:-43.654317px;}
.ws2d{word-spacing:-43.653248px;}
.ws44{word-spacing:-43.653197px;}
.ws3c{word-spacing:-41.694542px;}
.ws9{word-spacing:-41.432724px;}
.ws1a{word-spacing:-36.981815px;}
.ws16{word-spacing:-36.393799px;}
.ws28{word-spacing:-36.392143px;}
.ws11{word-spacing:-36.388881px;}
.ws2c{word-spacing:-36.387800px;}
.ws1c{word-spacing:-32.727270px;}
.ws3{word-spacing:-30.892146px;}
.ws0{word-spacing:-23.169100px;}
.wsb{word-spacing:-18.936973px;}
.ws2a{word-spacing:-12.894544px;}
.ws19{word-spacing:-12.109090px;}
.ws4c{word-spacing:-11.847272px;}
.ws45{word-spacing:-11.454545px;}
.ws3b{word-spacing:-11.192726px;}
.ws5f{word-spacing:-11.127272px;}
.ws6d{word-spacing:-11.073261px;}
.ws30{word-spacing:-10.935242px;}
.ws32{word-spacing:-10.934687px;}
.ws80{word-spacing:-10.934172px;}
.wsd{word-spacing:-10.934161px;}
.ws59{word-spacing:-10.933622px;}
.ws63{word-spacing:-10.933608px;}
.ws31{word-spacing:-10.933601px;}
.ws7e{word-spacing:-10.933068px;}
.ws7b{word-spacing:-10.933063px;}
.ws89{word-spacing:-10.933053px;}
.ws5b{word-spacing:-10.932524px;}
.ws71{word-spacing:-10.932522px;}
.ws36{word-spacing:-10.932517px;}
.ws33{word-spacing:-10.932513px;}
.ws2{word-spacing:-10.930908px;}
.ws53{word-spacing:-10.930898px;}
.ws82{word-spacing:-10.930895px;}
.ws14{word-spacing:-10.930355px;}
.ws1e{word-spacing:-10.930344px;}
.ws7d{word-spacing:-10.929261px;}
.ws40{word-spacing:-10.928172px;}
.ws74{word-spacing:-10.927629px;}
.ws69{word-spacing:-10.925993px;}
.ws78{word-spacing:-3.667612px;}
.ws27{word-spacing:-3.662708px;}
.ws4e{word-spacing:-3.659966px;}
.wsa{word-spacing:0.000000px;}
.ws22{word-spacing:0.001098px;}
.ws75{word-spacing:1800.666027px;}
._14{margin-left:-9.098181px;}
._5{margin-left:-7.438507px;}
._e{margin-left:-6.012895px;}
._c{margin-left:-4.794321px;}
._2{margin-left:-3.192028px;}
._9{margin-left:-2.151930px;}
._1{margin-left:-1.075964px;}
._4{width:1.081223px;}
._12{width:2.094545px;}
._a{width:3.105951px;}
._d{width:12.696380px;}
._0{width:16.928507px;}
._11{width:21.302049px;}
._10{width:22.377191px;}
._f{width:24.338888px;}
._6{width:29.061816px;}
._13{width:30.511693px;}
._b{width:32.252949px;}
._8{width:37.443582px;}
._7{width:108.237683px;}
._3{width:114.356757px;}
.fc7{color:transparent;}
.fc5{color:rgb(20,200,255);}
.fc4{color:rgb(0,128,64);}
.fc3{color:rgb(0,40,100);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(128,147,177);}
.fs0{font-size:35.865480px;}
.fs3{font-size:47.820660px;}
.fs2{font-size:65.454540px;}
.fs4{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.ya4{bottom:-3.706500px;}
.y0{bottom:0.000000px;}
.y7{bottom:7.962000px;}
.ya3{bottom:16.617000px;}
.y4f{bottom:32.457000px;}
.yb3{bottom:36.940500px;}
.ya2{bottom:38.809500px;}
.y25{bottom:48.232500px;}
.y59{bottom:48.531000px;}
.y87{bottom:50.995500px;}
.y4e{bottom:54.649500px;}
.yb2{bottom:59.133000px;}
.ya1{bottom:61.747500px;}
.y58{bottom:68.854500px;}
.y86{bottom:73.933500px;}
.y24{bottom:74.157000px;}
.y10{bottom:74.209500px;}
.y14{bottom:74.308500px;}
.y44{bottom:78.073500px;}
.y64{bottom:78.895500px;}
.y4d{bottom:79.456500px;}
.yb1{bottom:82.071000px;}
.ya0{bottom:83.940000px;}
.yac{bottom:84.883500px;}
.y2c{bottom:88.929000px;}
.yb8{bottom:92.116500px;}
.y57{bottom:93.661500px;}
.y6b{bottom:95.802000px;}
.y85{bottom:96.126000px;}
.y79{bottom:97.071000px;}
.y72{bottom:97.078500px;}
.y6{bottom:97.221000px;}
.yf{bottom:99.016500px;}
.y13{bottom:99.115500px;}
.y63{bottom:99.219000px;}
.y4c{bottom:102.396000px;}
.y43{bottom:102.880500px;}
.yb0{bottom:104.263500px;}
.yab{bottom:105.207000px;}
.y9f{bottom:106.878000px;}
.y9a{bottom:107.547000px;}
.y32{bottom:109.272000px;}
.y8d{bottom:109.560000px;}
.y56{bottom:113.985000px;}
.y2b{bottom:115.605000px;}
.y6a{bottom:116.125500px;}
.y1c{bottom:117.058500px;}
.y78{bottom:117.394500px;}
.y71{bottom:117.402000px;}
.y37{bottom:118.168500px;}
.y84{bottom:119.064000px;}
.y23{bottom:120.675000px;}
.y62{bottom:121.411500px;}
.y3c{bottom:121.755000px;}
.ye{bottom:123.823500px;}
.y12{bottom:123.922500px;}
.y4b{bottom:124.587000px;}
.yaa{bottom:125.532000px;}
.yaf{bottom:127.203000px;}
.y42{bottom:127.687500px;}
.y31{bottom:129.595500px;}
.y8c{bottom:129.883500px;}
.y99{bottom:130.486500px;}
.y9e{bottom:131.685000px;}
.y7d{bottom:133.131000px;}
.y91{bottom:133.948500px;}
.y5{bottom:134.101500px;}
.y55{bottom:136.177500px;}
.y69{bottom:136.449000px;}
.y77{bottom:137.719500px;}
.y70{bottom:137.725500px;}
.y2a{bottom:140.412000px;}
.y1b{bottom:141.865500px;}
.y3b{bottom:142.078500px;}
.y22{bottom:142.867500px;}
.y36{bottom:142.975500px;}
.y83{bottom:143.871000px;}
.y61{bottom:144.349500px;}
.ya9{bottom:145.855500px;}
.yd{bottom:146.763000px;}
.y11{bottom:146.862000px;}
.y94{bottom:147.502500px;}
.y4a{bottom:147.526500px;}
.y17{bottom:148.707000px;}
.y5c{bottom:148.995000px;}
.y30{bottom:149.920500px;}
.y8b{bottom:150.208500px;}
.yae{bottom:152.010000px;}
.y41{bottom:152.494500px;}
.y98{bottom:152.677500px;}
.y7c{bottom:153.454500px;}
.y9d{bottom:153.877500px;}
.y90{bottom:154.272000px;}
.y68{bottom:156.772500px;}
.y76{bottom:158.043000px;}
.y6f{bottom:158.049000px;}
.y54{bottom:159.117000px;}
.y3a{bottom:162.402000px;}
.y29{bottom:163.350000px;}
.y21{bottom:165.805500px;}
.y82{bottom:166.063500px;}
.ya8{bottom:166.179000px;}
.y1a{bottom:166.672500px;}
.yb7{bottom:167.722500px;}
.y35{bottom:167.782500px;}
.y93{bottom:167.826000px;}
.y16{bottom:169.030500px;}
.y60{bottom:169.156500px;}
.y5b{bottom:169.318500px;}
.y2f{bottom:170.244000px;}
.y8a{bottom:170.532000px;}
.y4{bottom:171.174000px;}
.y49{bottom:172.333500px;}
.yc{bottom:173.179500px;}
.y7b{bottom:173.778000px;}
.yad{bottom:174.201000px;}
.y8f{bottom:174.597000px;}
.y40{bottom:175.434000px;}
.y97{bottom:175.617000px;}
.y9c{bottom:176.817000px;}
.y67{bottom:177.097500px;}
.y75{bottom:178.366500px;}
.y6e{bottom:178.372500px;}
.y39{bottom:182.725500px;}
.y28{bottom:183.675000px;}
.y53{bottom:183.924000px;}
.ya7{bottom:186.502500px;}
.y20{bottom:187.998000px;}
.yb6{bottom:188.046000px;}
.y34{bottom:188.106000px;}
.y81{bottom:189.003000px;}
.y19{bottom:189.610500px;}
.y2e{bottom:190.567500px;}
.y89{bottom:190.855500px;}
.y5f{bottom:191.349000px;}
.yb{bottom:193.503000px;}
.y92{bottom:193.750500px;}
.y48{bottom:194.524500px;}
.y15{bottom:194.955000px;}
.y5a{bottom:195.243000px;}
.y3f{bottom:195.757500px;}
.y96{bottom:195.940500px;}
.y9b{bottom:197.140500px;}
.y66{bottom:197.421000px;}
.y74{bottom:198.690000px;}
.y6d{bottom:198.697500px;}
.y7a{bottom:203.827500px;}
.y27{bottom:203.998500px;}
.y8e{bottom:204.645000px;}
.y52{bottom:206.115000px;}
.ya6{bottom:206.826000px;}
.yb5{bottom:208.369500px;}
.y1f{bottom:210.937500px;}
.y80{bottom:211.194000px;}
.y38{bottom:212.775000px;}
.ya{bottom:213.826500px;}
.y5e{bottom:214.287000px;}
.y3e{bottom:216.081000px;}
.y33{bottom:218.155500px;}
.y47{bottom:219.331500px;}
.y18{bottom:219.660000px;}
.y2d{bottom:220.617000px;}
.y88{bottom:220.905000px;}
.y95{bottom:225.990000px;}
.y65{bottom:227.470500px;}
.y3{bottom:228.030000px;}
.y73{bottom:228.739500px;}
.y6c{bottom:228.747000px;}
.y51{bottom:229.054500px;}
.y1e{bottom:231.261000px;}
.y26{bottom:234.048000px;}
.yb4{bottom:234.115500px;}
.y7f{bottom:234.133500px;}
.ya5{bottom:236.875500px;}
.y9{bottom:239.554500px;}
.y46{bottom:242.271000px;}
.y5d{bottom:244.336500px;}
.y3d{bottom:246.130500px;}
.y2{bottom:253.732500px;}
.y50{bottom:259.104000px;}
.y1d{bottom:261.310500px;}
.y7e{bottom:264.183000px;}
.y45{bottom:272.320500px;}
.y8{bottom:314.053500px;}
.y1{bottom:369.228000px;}
.h2{height:26.899110px;}
.h5{height:35.865495px;}
.h8{height:41.614905px;}
.h7{height:41.620905px;}
.h4{height:49.090905px;}
.h6{height:53.798265px;}
.h3{height:64.557900px;}
.h9{height:73.573110px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:12.756000px;}
.x8{left:28.347000px;}
.x9{left:40.164000px;}
.x7{left:42.519000px;}
.xc{left:54.337500px;}
.xd{left:75.247500px;}
.x2{left:169.155000px;}
.x3{left:187.852500px;}
.x5{left:270.514500px;}
.xf{left:299.248500px;}
.x4{left:302.559000px;}
.xa{left:354.330000px;}
.xb{left:366.148500px;}
.xe{left:606.594000px;}
.x6{left:611.355000px;}
@media print{
.v3{vertical-align:-30.773333pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:41.488000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:19.372123pt;}
.ls7{letter-spacing:19.374548pt;}
.ls6{letter-spacing:19.375520pt;}
.ls5{letter-spacing:19.377456pt;}
.ls3{letter-spacing:21.354187pt;}
.ls2{letter-spacing:24.942933pt;}
.ls9{letter-spacing:25.830789pt;}
.ls4{letter-spacing:25.836123pt;}
.ls1{letter-spacing:29.092852pt;}
.lsa{letter-spacing:1748.609456pt;}
.ws10{word-spacing:-76.513067pt;}
.ws2e{word-spacing:-58.181813pt;}
.ws4{word-spacing:-51.646320pt;}
.ws1{word-spacing:-51.569807pt;}
.ws41{word-spacing:-43.038612pt;}
.ws5{word-spacing:-42.974851pt;}
.ws4b{word-spacing:-39.581550pt;}
.ws4d{word-spacing:-39.581062pt;}
.ws46{word-spacing:-39.256194pt;}
.ws3a{word-spacing:-39.026890pt;}
.ws5e{word-spacing:-38.990028pt;}
.ws60{word-spacing:-38.951229pt;}
.ws6c{word-spacing:-38.938646pt;}
.ws6e{word-spacing:-38.938645pt;}
.ws6f{word-spacing:-38.933295pt;}
.ws4f{word-spacing:-38.812099pt;}
.ws39{word-spacing:-38.811615pt;}
.ws84{word-spacing:-38.811612pt;}
.ws5d{word-spacing:-38.811611pt;}
.ws17{word-spacing:-38.811602pt;}
.ws86{word-spacing:-38.811135pt;}
.ws7c{word-spacing:-38.811123pt;}
.ws58{word-spacing:-38.810649pt;}
.ws13{word-spacing:-38.810646pt;}
.ws1b{word-spacing:-38.810635pt;}
.ws6b{word-spacing:-38.810628pt;}
.ws26{word-spacing:-38.810619pt;}
.wsf{word-spacing:-38.810169pt;}
.ws43{word-spacing:-38.810163pt;}
.ws2b{word-spacing:-38.810161pt;}
.ws35{word-spacing:-38.810154pt;}
.ws83{word-spacing:-38.809673pt;}
.ws62{word-spacing:-38.809672pt;}
.ws49{word-spacing:-38.809658pt;}
.ws73{word-spacing:-38.809657pt;}
.ws37{word-spacing:-38.809198pt;}
.ws64{word-spacing:-38.809193pt;}
.ws6{word-spacing:-38.809184pt;}
.ws1d{word-spacing:-38.809181pt;}
.ws24{word-spacing:-38.809161pt;}
.ws7f{word-spacing:-38.808712pt;}
.ws8{word-spacing:-38.808708pt;}
.ws81{word-spacing:-38.808707pt;}
.ws3f{word-spacing:-38.808703pt;}
.ws48{word-spacing:-38.808701pt;}
.ws29{word-spacing:-38.808698pt;}
.ws5a{word-spacing:-38.808695pt;}
.ws61{word-spacing:-38.808680pt;}
.ws3d{word-spacing:-38.808223pt;}
.ws42{word-spacing:-38.808221pt;}
.ws88{word-spacing:-38.808220pt;}
.ws5c{word-spacing:-38.808191pt;}
.ws70{word-spacing:-38.807743pt;}
.ws20{word-spacing:-38.807735pt;}
.ws7a{word-spacing:-38.807732pt;}
.ws12{word-spacing:-38.807729pt;}
.ws23{word-spacing:-38.807722pt;}
.ws25{word-spacing:-38.807721pt;}
.ws2f{word-spacing:-38.807269pt;}
.ws72{word-spacing:-38.807251pt;}
.wsc{word-spacing:-38.807249pt;}
.ws51{word-spacing:-38.807247pt;}
.ws18{word-spacing:-38.807242pt;}
.ws87{word-spacing:-38.807240pt;}
.ws55{word-spacing:-38.807234pt;}
.ws65{word-spacing:-38.807223pt;}
.wse{word-spacing:-38.806772pt;}
.ws66{word-spacing:-38.806768pt;}
.ws1f{word-spacing:-38.806766pt;}
.ws54{word-spacing:-38.806765pt;}
.ws85{word-spacing:-38.806750pt;}
.ws77{word-spacing:-38.806732pt;}
.ws76{word-spacing:-38.806275pt;}
.ws79{word-spacing:-38.806273pt;}
.ws4a{word-spacing:-38.806235pt;}
.ws50{word-spacing:-38.806230pt;}
.ws34{word-spacing:-38.805805pt;}
.ws7{word-spacing:-38.805323pt;}
.ws57{word-spacing:-38.805315pt;}
.ws38{word-spacing:-38.805309pt;}
.ws47{word-spacing:-38.805304pt;}
.ws68{word-spacing:-38.805299pt;}
.ws3e{word-spacing:-38.805295pt;}
.ws15{word-spacing:-38.804828pt;}
.ws52{word-spacing:-38.804794pt;}
.ws21{word-spacing:-38.804326pt;}
.ws56{word-spacing:-38.804325pt;}
.ws6a{word-spacing:-38.804312pt;}
.ws67{word-spacing:-38.803838pt;}
.ws2d{word-spacing:-38.802887pt;}
.ws44{word-spacing:-38.802842pt;}
.ws3c{word-spacing:-37.061815pt;}
.ws9{word-spacing:-36.829088pt;}
.ws1a{word-spacing:-32.872725pt;}
.ws16{word-spacing:-32.350044pt;}
.ws28{word-spacing:-32.348572pt;}
.ws11{word-spacing:-32.345672pt;}
.ws2c{word-spacing:-32.344711pt;}
.ws1c{word-spacing:-29.090907pt;}
.ws3{word-spacing:-27.459686pt;}
.ws0{word-spacing:-20.594756pt;}
.wsb{word-spacing:-16.832865pt;}
.ws2a{word-spacing:-11.461817pt;}
.ws19{word-spacing:-10.763635pt;}
.ws4c{word-spacing:-10.530908pt;}
.ws45{word-spacing:-10.181817pt;}
.ws3b{word-spacing:-9.949090pt;}
.ws5f{word-spacing:-9.890908pt;}
.ws6d{word-spacing:-9.842899pt;}
.ws30{word-spacing:-9.720215pt;}
.ws32{word-spacing:-9.719722pt;}
.ws80{word-spacing:-9.719264pt;}
.wsd{word-spacing:-9.719255pt;}
.ws59{word-spacing:-9.718775pt;}
.ws63{word-spacing:-9.718763pt;}
.ws31{word-spacing:-9.718757pt;}
.ws7e{word-spacing:-9.718283pt;}
.ws7b{word-spacing:-9.718278pt;}
.ws89{word-spacing:-9.718269pt;}
.ws5b{word-spacing:-9.717799pt;}
.ws71{word-spacing:-9.717797pt;}
.ws36{word-spacing:-9.717793pt;}
.ws33{word-spacing:-9.717789pt;}
.ws2{word-spacing:-9.716363pt;}
.ws53{word-spacing:-9.716354pt;}
.ws82{word-spacing:-9.716351pt;}
.ws14{word-spacing:-9.715871pt;}
.ws1e{word-spacing:-9.715861pt;}
.ws7d{word-spacing:-9.714899pt;}
.ws40{word-spacing:-9.713931pt;}
.ws74{word-spacing:-9.713448pt;}
.ws69{word-spacing:-9.711993pt;}
.ws78{word-spacing:-3.260100pt;}
.ws27{word-spacing:-3.255740pt;}
.ws4e{word-spacing:-3.253303pt;}
.wsa{word-spacing:0.000000pt;}
.ws22{word-spacing:0.000976pt;}
.ws75{word-spacing:1600.592024pt;}
._14{margin-left:-8.087272pt;}
._5{margin-left:-6.612006pt;}
._e{margin-left:-5.344795pt;}
._c{margin-left:-4.261619pt;}
._2{margin-left:-2.837358pt;}
._9{margin-left:-1.912827pt;}
._1{margin-left:-0.956413pt;}
._4{width:0.961087pt;}
._12{width:1.861818pt;}
._a{width:2.760845pt;}
._d{width:11.285671pt;}
._0{width:15.047561pt;}
._11{width:18.935155pt;}
._10{width:19.890836pt;}
._f{width:21.634567pt;}
._6{width:25.832725pt;}
._13{width:27.121505pt;}
._b{width:28.669288pt;}
._8{width:33.283184pt;}
._7{width:96.211274pt;}
._3{width:101.650450pt;}
.fs0{font-size:31.880427pt;}
.fs3{font-size:42.507253pt;}
.fs2{font-size:58.181813pt;}
.fs4{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.ya4{bottom:-3.294667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:7.077333pt;}
.ya3{bottom:14.770667pt;}
.y4f{bottom:28.850667pt;}
.yb3{bottom:32.836000pt;}
.ya2{bottom:34.497333pt;}
.y25{bottom:42.873333pt;}
.y59{bottom:43.138667pt;}
.y87{bottom:45.329333pt;}
.y4e{bottom:48.577333pt;}
.yb2{bottom:52.562667pt;}
.ya1{bottom:54.886667pt;}
.y58{bottom:61.204000pt;}
.y86{bottom:65.718667pt;}
.y24{bottom:65.917333pt;}
.y10{bottom:65.964000pt;}
.y14{bottom:66.052000pt;}
.y44{bottom:69.398667pt;}
.y64{bottom:70.129333pt;}
.y4d{bottom:70.628000pt;}
.yb1{bottom:72.952000pt;}
.ya0{bottom:74.613333pt;}
.yac{bottom:75.452000pt;}
.y2c{bottom:79.048000pt;}
.yb8{bottom:81.881333pt;}
.y57{bottom:83.254667pt;}
.y6b{bottom:85.157333pt;}
.y85{bottom:85.445333pt;}
.y79{bottom:86.285333pt;}
.y72{bottom:86.292000pt;}
.y6{bottom:86.418667pt;}
.yf{bottom:88.014667pt;}
.y13{bottom:88.102667pt;}
.y63{bottom:88.194667pt;}
.y4c{bottom:91.018667pt;}
.y43{bottom:91.449333pt;}
.yb0{bottom:92.678667pt;}
.yab{bottom:93.517333pt;}
.y9f{bottom:95.002667pt;}
.y9a{bottom:95.597333pt;}
.y32{bottom:97.130667pt;}
.y8d{bottom:97.386667pt;}
.y56{bottom:101.320000pt;}
.y2b{bottom:102.760000pt;}
.y6a{bottom:103.222667pt;}
.y1c{bottom:104.052000pt;}
.y78{bottom:104.350667pt;}
.y71{bottom:104.357333pt;}
.y37{bottom:105.038667pt;}
.y84{bottom:105.834667pt;}
.y23{bottom:107.266667pt;}
.y62{bottom:107.921333pt;}
.y3c{bottom:108.226667pt;}
.ye{bottom:110.065333pt;}
.y12{bottom:110.153333pt;}
.y4b{bottom:110.744000pt;}
.yaa{bottom:111.584000pt;}
.yaf{bottom:113.069333pt;}
.y42{bottom:113.500000pt;}
.y31{bottom:115.196000pt;}
.y8c{bottom:115.452000pt;}
.y99{bottom:115.988000pt;}
.y9e{bottom:117.053333pt;}
.y7d{bottom:118.338667pt;}
.y91{bottom:119.065333pt;}
.y5{bottom:119.201333pt;}
.y55{bottom:121.046667pt;}
.y69{bottom:121.288000pt;}
.y77{bottom:122.417333pt;}
.y70{bottom:122.422667pt;}
.y2a{bottom:124.810667pt;}
.y1b{bottom:126.102667pt;}
.y3b{bottom:126.292000pt;}
.y22{bottom:126.993333pt;}
.y36{bottom:127.089333pt;}
.y83{bottom:127.885333pt;}
.y61{bottom:128.310667pt;}
.ya9{bottom:129.649333pt;}
.yd{bottom:130.456000pt;}
.y11{bottom:130.544000pt;}
.y94{bottom:131.113333pt;}
.y4a{bottom:131.134667pt;}
.y17{bottom:132.184000pt;}
.y5c{bottom:132.440000pt;}
.y30{bottom:133.262667pt;}
.y8b{bottom:133.518667pt;}
.yae{bottom:135.120000pt;}
.y41{bottom:135.550667pt;}
.y98{bottom:135.713333pt;}
.y7c{bottom:136.404000pt;}
.y9d{bottom:136.780000pt;}
.y90{bottom:137.130667pt;}
.y68{bottom:139.353333pt;}
.y76{bottom:140.482667pt;}
.y6f{bottom:140.488000pt;}
.y54{bottom:141.437333pt;}
.y3a{bottom:144.357333pt;}
.y29{bottom:145.200000pt;}
.y21{bottom:147.382667pt;}
.y82{bottom:147.612000pt;}
.ya8{bottom:147.714667pt;}
.y1a{bottom:148.153333pt;}
.yb7{bottom:149.086667pt;}
.y35{bottom:149.140000pt;}
.y93{bottom:149.178667pt;}
.y16{bottom:150.249333pt;}
.y60{bottom:150.361333pt;}
.y5b{bottom:150.505333pt;}
.y2f{bottom:151.328000pt;}
.y8a{bottom:151.584000pt;}
.y4{bottom:152.154667pt;}
.y49{bottom:153.185333pt;}
.yc{bottom:153.937333pt;}
.y7b{bottom:154.469333pt;}
.yad{bottom:154.845333pt;}
.y8f{bottom:155.197333pt;}
.y40{bottom:155.941333pt;}
.y97{bottom:156.104000pt;}
.y9c{bottom:157.170667pt;}
.y67{bottom:157.420000pt;}
.y75{bottom:158.548000pt;}
.y6e{bottom:158.553333pt;}
.y39{bottom:162.422667pt;}
.y28{bottom:163.266667pt;}
.y53{bottom:163.488000pt;}
.ya7{bottom:165.780000pt;}
.y20{bottom:167.109333pt;}
.yb6{bottom:167.152000pt;}
.y34{bottom:167.205333pt;}
.y81{bottom:168.002667pt;}
.y19{bottom:168.542667pt;}
.y2e{bottom:169.393333pt;}
.y89{bottom:169.649333pt;}
.y5f{bottom:170.088000pt;}
.yb{bottom:172.002667pt;}
.y92{bottom:172.222667pt;}
.y48{bottom:172.910667pt;}
.y15{bottom:173.293333pt;}
.y5a{bottom:173.549333pt;}
.y3f{bottom:174.006667pt;}
.y96{bottom:174.169333pt;}
.y9b{bottom:175.236000pt;}
.y66{bottom:175.485333pt;}
.y74{bottom:176.613333pt;}
.y6d{bottom:176.620000pt;}
.y7a{bottom:181.180000pt;}
.y27{bottom:181.332000pt;}
.y8e{bottom:181.906667pt;}
.y52{bottom:183.213333pt;}
.ya6{bottom:183.845333pt;}
.yb5{bottom:185.217333pt;}
.y1f{bottom:187.500000pt;}
.y80{bottom:187.728000pt;}
.y38{bottom:189.133333pt;}
.ya{bottom:190.068000pt;}
.y5e{bottom:190.477333pt;}
.y3e{bottom:192.072000pt;}
.y33{bottom:193.916000pt;}
.y47{bottom:194.961333pt;}
.y18{bottom:195.253333pt;}
.y2d{bottom:196.104000pt;}
.y88{bottom:196.360000pt;}
.y95{bottom:200.880000pt;}
.y65{bottom:202.196000pt;}
.y3{bottom:202.693333pt;}
.y73{bottom:203.324000pt;}
.y6c{bottom:203.330667pt;}
.y51{bottom:203.604000pt;}
.y1e{bottom:205.565333pt;}
.y26{bottom:208.042667pt;}
.yb4{bottom:208.102667pt;}
.y7f{bottom:208.118667pt;}
.ya5{bottom:210.556000pt;}
.y9{bottom:212.937333pt;}
.y46{bottom:215.352000pt;}
.y5d{bottom:217.188000pt;}
.y3d{bottom:218.782667pt;}
.y2{bottom:225.540000pt;}
.y50{bottom:230.314667pt;}
.y1d{bottom:232.276000pt;}
.y7e{bottom:234.829333pt;}
.y45{bottom:242.062667pt;}
.y8{bottom:279.158667pt;}
.y1{bottom:328.202667pt;}
.h2{height:23.910320pt;}
.h5{height:31.880440pt;}
.h8{height:36.991027pt;}
.h7{height:36.996360pt;}
.h4{height:43.636360pt;}
.h6{height:47.820680pt;}
.h3{height:57.384800pt;}
.h9{height:65.398320pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:11.338667pt;}
.x8{left:25.197333pt;}
.x9{left:35.701333pt;}
.x7{left:37.794667pt;}
.xc{left:48.300000pt;}
.xd{left:66.886667pt;}
.x2{left:150.360000pt;}
.x3{left:166.980000pt;}
.x5{left:240.457333pt;}
.xf{left:265.998667pt;}
.x4{left:268.941333pt;}
.xa{left:314.960000pt;}
.xb{left:325.465333pt;}
.xe{left:539.194667pt;}
.x6{left:543.426667pt;}
}




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