
    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_fe2346a478a950932a5fbbc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_2e4bfe1e1b28497c6cf4ad9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.451000;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_bad7bd86791109113cb20591.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.672000;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_1f14cf730a23bd908653b367.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_d55d69212600e0d0818271ec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8042d10009ec03fb05b248fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_67f81356c61374d055f54a02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.674000;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_c7e34b8a5577415053578d18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.755000;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_5dfe119370025bbe23f8ae80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.711000;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_6a89fb86ce018b631f7ac1b5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e7d3a611eb664e2c9292b4e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.655000;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:-12.912000px;}
.v1{vertical-align:-10.758000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.007562px;}
.lsc{letter-spacing:16.557841px;}
.ls1{letter-spacing:16.617617px;}
.ls11{letter-spacing:18.231558px;}
.lsb{letter-spacing:18.291334px;}
.ls4{letter-spacing:18.889090px;}
.ls8{letter-spacing:21.399665px;}
.lsf{letter-spacing:24.507996px;}
.ls6{letter-spacing:24.926425px;}
.lsa{letter-spacing:25.464406px;}
.ls0{letter-spacing:25.823059px;}
.ls7{letter-spacing:27.377225px;}
.ls12{letter-spacing:28.154308px;}
.ls5{letter-spacing:28.512961px;}
.ls3{letter-spacing:29.768249px;}
.lse{letter-spacing:30.126902px;}
.ls2{letter-spacing:31.382190px;}
.ls9{letter-spacing:35.207828px;}
.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:-38.937826px;}
.ws2a{word-spacing:-28.955301px;}
.ws3d{word-spacing:-22.320209px;}
.ws30{word-spacing:-15.278643px;}
.ws54{word-spacing:-3.275703px;}
.ws3b{word-spacing:-3.215927px;}
.ws4f{word-spacing:-2.498620px;}
.ws69{word-spacing:-2.199742px;}
.ws13{word-spacing:-2.139966px;}
.ws52{word-spacing:-1.960640px;}
.ws53{word-spacing:-1.542210px;}
.ws1b{word-spacing:-1.422659px;}
.ws1e{word-spacing:-1.362884px;}
.ws67{word-spacing:-1.123781px;}
.ws6a{word-spacing:-1.064006px;}
.ws6c{word-spacing:-0.645576px;}
.ws61{word-spacing:-0.086077px;}
.ws1{word-spacing:-0.071731px;}
.ws46{word-spacing:0.000000px;}
.ws12{word-spacing:0.549936px;}
.ws38{word-spacing:0.561891px;}
.wsf{word-spacing:0.669487px;}
.ws57{word-spacing:0.789038px;}
.ws56{word-spacing:0.848814px;}
.ws6f{word-spacing:1.028140px;}
.ws3e{word-spacing:1.147692px;}
.ws50{word-spacing:1.327018px;}
.ws55{word-spacing:1.566121px;}
.ws5f{word-spacing:1.625896px;}
.ws17{word-spacing:1.745448px;}
.ws58{word-spacing:1.864999px;}
.ws51{word-spacing:1.924774px;}
.ws45{word-spacing:1.984550px;}
.ws28{word-spacing:2.008460px;}
.ws34{word-spacing:2.116056px;}
.ws3f{word-spacing:2.223652px;}
.ws9{word-spacing:2.522530px;}
.ws19{word-spacing:2.582306px;}
.ws68{word-spacing:2.701857px;}
.wsc{word-spacing:2.940960px;}
.ws60{word-spacing:3.120286px;}
.ws14{word-spacing:3.299613px;}
.ws40{word-spacing:3.359389px;}
.ws48{word-spacing:3.478940px;}
.ws65{word-spacing:3.658267px;}
.ws1d{word-spacing:3.718042px;}
.ws5a{word-spacing:3.897369px;}
.ws21{word-spacing:4.256023px;}
.ws25{word-spacing:4.435350px;}
.ws75{word-spacing:4.554901px;}
.ws7a{word-spacing:4.626631px;}
.ws29{word-spacing:4.686407px;}
.wsd{word-spacing:4.734228px;}
.ws6b{word-spacing:4.973330px;}
.ws5b{word-spacing:5.212432px;}
.ws27{word-spacing:5.272208px;}
.ws18{word-spacing:5.331984px;}
.ws59{word-spacing:5.391759px;}
.ws36{word-spacing:5.732592px;}
.ws6{word-spacing:6.049291px;}
.ws4a{word-spacing:6.109066px;}
.ws2f{word-spacing:6.121021px;}
.ws70{word-spacing:6.587271px;}
.ws37{word-spacing:6.957880px;}
.ws4b{word-spacing:7.065476px;}
.ws22{word-spacing:7.185027px;}
.ws3a{word-spacing:7.244803px;}
.ws76{word-spacing:7.256758px;}
.wsb{word-spacing:7.304578px;}
.ws43{word-spacing:7.424130px;}
.ws24{word-spacing:7.483905px;}
.ws2e{word-spacing:7.555636px;}
.ws4{word-spacing:7.842559px;}
.wse{word-spacing:7.902334px;}
.ws62{word-spacing:7.962110px;}
.ws44{word-spacing:8.320764px;}
.ws74{word-spacing:8.380539px;}
.ws73{word-spacing:8.500090px;}
.ws5{word-spacing:8.559866px;}
.ws8{word-spacing:8.619642px;}
.ws2d{word-spacing:9.038071px;}
.ws72{word-spacing:9.097846px;}
.ws4d{word-spacing:9.157622px;}
.ws5c{word-spacing:9.277173px;}
.ws1f{word-spacing:9.336949px;}
.ws66{word-spacing:9.516276px;}
.ws2b{word-spacing:9.647782px;}
.ws39{word-spacing:10.125987px;}
.ws77{word-spacing:10.173807px;}
.ws5e{word-spacing:10.293358px;}
.ws49{word-spacing:10.412910px;}
.ws79{word-spacing:10.472685px;}
.ws2c{word-spacing:11.142172px;}
.ws16{word-spacing:11.189992px;}
.ws41{word-spacing:11.249768px;}
.ws4c{word-spacing:11.429095px;}
.ws7{word-spacing:11.488870px;}
.wsa{word-spacing:11.847524px;}
.ws20{word-spacing:11.907300px;}
.ws32{word-spacing:12.206178px;}
.ws6d{word-spacing:12.325729px;}
.ws4e{word-spacing:12.385504px;}
.ws78{word-spacing:12.457235px;}
.ws42{word-spacing:12.505056px;}
.ws71{word-spacing:12.803934px;}
.ws6e{word-spacing:13.939670px;}
.ws31{word-spacing:14.023356px;}
.ws33{word-spacing:14.250503px;}
.ws35{word-spacing:14.908035px;}
.ws64{word-spacing:15.434060px;}
.ws63{word-spacing:16.211143px;}
.ws1a{word-spacing:16.629572px;}
.ws7b{word-spacing:17.239283px;}
.ws1c{word-spacing:17.705533px;}
.ws7c{word-spacing:18.422840px;}
.ws11{word-spacing:19.549921px;}
.ws3c{word-spacing:22.334592px;}
.ws3{word-spacing:23.312640px;}
.ws47{word-spacing:24.460339px;}
.ws23{word-spacing:26.719921px;}
.ws0{word-spacing:26.827469px;}
.ws5d{word-spacing:28.819921px;}
.ws2{word-spacing:29.841461px;}
.ws26{word-spacing:32.192873px;}
.ws15{word-spacing:96.750773px;}
._2{margin-left:-6.761489px;}
._5{margin-left:-4.471200px;}
._7{margin-left:-3.287658px;}
._0{margin-left:-2.223667px;}
._3{margin-left:-1.063991px;}
._4{width:1.123766px;}
._1{width:2.223667px;}
._a{width:3.287658px;}
._9{width:15.732953px;}
._e{width:17.215373px;}
._14{width:18.231558px;}
._17{width:20.574776px;}
._11{width:21.889840px;}
._1b{width:23.922210px;}
._1f{width:25.105752px;}
._15{width:26.420815px;}
._12{width:27.855430px;}
._19{width:29.062912px;}
._b{width:30.731505px;}
._1c{width:32.159273px;}
._1a{width:34.299224px;}
._1e{width:35.925136px;}
._d{width:37.013066px;}
._8{width:39.356285px;}
._20{width:44.592598px;}
._1d{width:47.402051px;}
._6{width:51.048362px;}
._f{width:52.303650px;}
._13{width:53.845354px;}
._c{width:66.410692px;}
._16{width:80.697600px;}
._10{width:96.836850px;}
._18{width:313.283920px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y47{bottom:40.207500px;}
.y2b{bottom:85.039500px;}
.y2a{bottom:102.972000px;}
.y29{bottom:120.904500px;}
.y28{bottom:138.837000px;}
.y27{bottom:156.769500px;}
.y26{bottom:174.703500px;}
.y6f{bottom:190.606500px;}
.y25{bottom:192.636000px;}
.y46{bottom:193.645500px;}
.y24{bottom:210.568500px;}
.y23{bottom:228.501000px;}
.y45{bottom:230.520000px;}
.y6e{bottom:243.177000px;}
.y44{bottom:248.452500px;}
.y22{bottom:252.754500px;}
.y6d{bottom:261.109500px;}
.y43{bottom:266.386500px;}
.y21{bottom:270.688500px;}
.y6c{bottom:279.043500px;}
.y20{bottom:288.621000px;}
.y6b{bottom:296.976000px;}
.y8f{bottom:297.606000px;}
.y42{bottom:297.690000px;}
.y1f{bottom:306.553500px;}
.y6a{bottom:314.908500px;}
.y8e{bottom:315.538500px;}
.y1e{bottom:324.486000px;}
.y69{bottom:332.841000px;}
.y41{bottom:337.131000px;}
.y1d{bottom:342.418500px;}
.y8d{bottom:345.426000px;}
.y68{bottom:350.773500px;}
.y1c{bottom:360.352500px;}
.y67{bottom:368.706000px;}
.y8c{bottom:375.313500px;}
.y1b{bottom:378.285000px;}
.y66{bottom:386.640000px;}
.y8b{bottom:393.247500px;}
.y1a{bottom:396.217500px;}
.y40{bottom:397.158000px;}
.y65{bottom:404.572500px;}
.y3f{bottom:415.090500px;}
.y64{bottom:422.505000px;}
.y8a{bottom:423.135000px;}
.y3e{bottom:433.023000px;}
.y19{bottom:440.713500px;}
.y89{bottom:441.067500px;}
.y3d{bottom:450.955500px;}
.y63{bottom:456.342000px;}
.y3c{bottom:468.888000px;}
.y88{bottom:470.955000px;}
.y87{bottom:500.844000px;}
.y3b{bottom:504.774000px;}
.y62{bottom:508.912500px;}
.y86{bottom:518.776500px;}
.y3a{bottom:522.706500px;}
.y18{bottom:523.669500px;}
.y61{bottom:526.845000px;}
.y39{bottom:540.639000px;}
.y17{bottom:541.602000px;}
.y60{bottom:544.777500px;}
.y85{bottom:551.508000px;}
.y38{bottom:558.573000px;}
.y16{bottom:559.536000px;}
.y5f{bottom:562.710000px;}
.y37{bottom:576.505500px;}
.y15{bottom:577.468500px;}
.y5e{bottom:580.644000px;}
.y36{bottom:594.438000px;}
.y14{bottom:595.401000px;}
.y5d{bottom:598.576500px;}
.y84{bottom:600.925500px;}
.y35{bottom:612.370500px;}
.y13{bottom:613.333500px;}
.y5c{bottom:616.509000px;}
.y83{bottom:618.859500px;}
.y12{bottom:631.266000px;}
.y5b{bottom:634.441500px;}
.y82{bottom:636.792000px;}
.y34{bottom:648.256500px;}
.y11{bottom:649.198500px;}
.y5a{bottom:652.374000px;}
.y81{bottom:654.724500px;}
.y33{bottom:666.189000px;}
.y10{bottom:667.132500px;}
.y59{bottom:670.306500px;}
.y80{bottom:672.657000px;}
.y32{bottom:684.121500px;}
.yf{bottom:685.065000px;}
.y58{bottom:698.997000px;}
.y31{bottom:702.054000px;}
.ye{bottom:702.997500px;}
.y7f{bottom:705.388500px;}
.y30{bottom:719.988000px;}
.yd{bottom:720.930000px;}
.yc{bottom:738.862500px;}
.y57{bottom:743.980500px;}
.y7e{bottom:754.807500px;}
.y2f{bottom:755.872500px;}
.yb{bottom:756.796500px;}
.y56{bottom:761.914500px;}
.y7d{bottom:772.740000px;}
.y2e{bottom:773.805000px;}
.ya{bottom:774.729000px;}
.y55{bottom:779.847000px;}
.y7c{bottom:790.672500px;}
.y2d{bottom:791.739000px;}
.y9{bottom:792.661500px;}
.y54{bottom:797.779500px;}
.y7b{bottom:808.606500px;}
.y8{bottom:810.594000px;}
.y53{bottom:815.712000px;}
.y7a{bottom:826.539000px;}
.y2c{bottom:828.190500px;}
.y52{bottom:833.644500px;}
.y79{bottom:844.471500px;}
.y7{bottom:855.090000px;}
.y51{bottom:862.335000px;}
.y78{bottom:862.404000px;}
.y77{bottom:880.336500px;}
.y76{bottom:898.269000px;}
.y50{bottom:899.160000px;}
.y6{bottom:910.881000px;}
.y75{bottom:916.203000px;}
.y74{bottom:934.135500px;}
.y5{bottom:946.048500px;}
.y4f{bottom:951.730500px;}
.y73{bottom:966.867000px;}
.y4{bottom:966.970500px;}
.y4e{bottom:969.663000px;}
.y4d{bottom:987.595500px;}
.y3{bottom:987.892500px;}
.y4c{bottom:1005.529500px;}
.y72{bottom:1016.284500px;}
.y4b{bottom:1023.462000px;}
.y2{bottom:1031.229000px;}
.y71{bottom:1034.218500px;}
.y4a{bottom:1041.394500px;}
.y1{bottom:1052.151000px;}
.y49{bottom:1059.327000px;}
.y70{bottom:1070.083500px;}
.y48{bottom:1088.016000px;}
.h4{height:44.831700px;}
.h1{height:50.211840px;}
.h2{height:50.498765px;}
.h3{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x8{left:99.984000px;}
.x2{left:186.234000px;}
.x1{left:215.503500px;}
.x5{left:342.867000px;}
.x4{left:367.137000px;}
.x6{left:386.449500px;}
.x3{left:401.704500px;}
.xd{left:455.263500px;}
.x9{left:466.471500px;}
.xe{left:473.944500px;}
.xb{left:481.416000px;}
.xf{left:497.190000px;}
.xa{left:502.786500px;}
.xc{left:563.845500px;}
@media print{
.v3{vertical-align:-11.477333pt;}
.v1{vertical-align:-9.562667pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.006722pt;}
.lsc{letter-spacing:14.718081pt;}
.ls1{letter-spacing:14.771215pt;}
.ls11{letter-spacing:16.205829pt;}
.lsb{letter-spacing:16.258963pt;}
.ls4{letter-spacing:16.790302pt;}
.ls8{letter-spacing:19.021924pt;}
.lsf{letter-spacing:21.784885pt;}
.ls6{letter-spacing:22.156822pt;}
.lsa{letter-spacing:22.635027pt;}
.ls0{letter-spacing:22.953830pt;}
.ls7{letter-spacing:24.335311pt;}
.ls12{letter-spacing:25.026051pt;}
.ls5{letter-spacing:25.344854pt;}
.ls3{letter-spacing:26.460666pt;}
.lse{letter-spacing:26.779469pt;}
.ls2{letter-spacing:27.895280pt;}
.ls9{letter-spacing:31.295847pt;}
.ws10{word-spacing:-34.611401pt;}
.ws2a{word-spacing:-25.738045pt;}
.ws3d{word-spacing:-19.840186pt;}
.ws30{word-spacing:-13.581016pt;}
.ws54{word-spacing:-2.911736pt;}
.ws3b{word-spacing:-2.858602pt;}
.ws4f{word-spacing:-2.220996pt;}
.ws69{word-spacing:-1.955326pt;}
.ws13{word-spacing:-1.902192pt;}
.ws52{word-spacing:-1.742791pt;}
.ws53{word-spacing:-1.370854pt;}
.ws1b{word-spacing:-1.264586pt;}
.ws1e{word-spacing:-1.211452pt;}
.ws67{word-spacing:-0.998917pt;}
.ws6a{word-spacing:-0.945783pt;}
.ws6c{word-spacing:-0.573846pt;}
.ws61{word-spacing:-0.076513pt;}
.ws1{word-spacing:-0.063761pt;}
.ws46{word-spacing:0.000000pt;}
.ws12{word-spacing:0.488832pt;}
.ws38{word-spacing:0.499458pt;}
.wsf{word-spacing:0.595099pt;}
.ws57{word-spacing:0.701367pt;}
.ws56{word-spacing:0.754501pt;}
.ws6f{word-spacing:0.913903pt;}
.ws3e{word-spacing:1.020170pt;}
.ws50{word-spacing:1.179572pt;}
.ws55{word-spacing:1.392107pt;}
.ws5f{word-spacing:1.445241pt;}
.ws17{word-spacing:1.551509pt;}
.ws58{word-spacing:1.657777pt;}
.ws51{word-spacing:1.710911pt;}
.ws45{word-spacing:1.764044pt;}
.ws28{word-spacing:1.785298pt;}
.ws34{word-spacing:1.880939pt;}
.ws3f{word-spacing:1.976580pt;}
.ws9{word-spacing:2.242249pt;}
.ws19{word-spacing:2.295383pt;}
.ws68{word-spacing:2.401651pt;}
.wsc{word-spacing:2.614186pt;}
.ws60{word-spacing:2.773588pt;}
.ws14{word-spacing:2.932989pt;}
.ws40{word-spacing:2.986123pt;}
.ws48{word-spacing:3.092391pt;}
.ws65{word-spacing:3.251793pt;}
.ws1d{word-spacing:3.304927pt;}
.ws5a{word-spacing:3.464328pt;}
.ws21{word-spacing:3.783131pt;}
.ws25{word-spacing:3.942533pt;}
.ws75{word-spacing:4.048801pt;}
.ws7a{word-spacing:4.112561pt;}
.ws29{word-spacing:4.165695pt;}
.wsd{word-spacing:4.208202pt;}
.ws6b{word-spacing:4.420738pt;}
.ws5b{word-spacing:4.633273pt;}
.ws27{word-spacing:4.686407pt;}
.ws18{word-spacing:4.739541pt;}
.ws59{word-spacing:4.792675pt;}
.ws36{word-spacing:5.095638pt;}
.ws6{word-spacing:5.377147pt;}
.ws4a{word-spacing:5.430281pt;}
.ws2f{word-spacing:5.440908pt;}
.ws70{word-spacing:5.855352pt;}
.ws37{word-spacing:6.184782pt;}
.ws4b{word-spacing:6.280423pt;}
.ws22{word-spacing:6.386691pt;}
.ws3a{word-spacing:6.439825pt;}
.ws76{word-spacing:6.450451pt;}
.wsb{word-spacing:6.492959pt;}
.ws43{word-spacing:6.599226pt;}
.ws24{word-spacing:6.652360pt;}
.ws2e{word-spacing:6.716121pt;}
.ws4{word-spacing:6.971163pt;}
.wse{word-spacing:7.024297pt;}
.ws62{word-spacing:7.077431pt;}
.ws44{word-spacing:7.396234pt;}
.ws74{word-spacing:7.449368pt;}
.ws73{word-spacing:7.555636pt;}
.ws5{word-spacing:7.608770pt;}
.ws8{word-spacing:7.661904pt;}
.ws2d{word-spacing:8.033841pt;}
.ws72{word-spacing:8.086975pt;}
.ws4d{word-spacing:8.140108pt;}
.ws5c{word-spacing:8.246376pt;}
.ws1f{word-spacing:8.299510pt;}
.ws66{word-spacing:8.458912pt;}
.ws2b{word-spacing:8.575806pt;}
.ws39{word-spacing:9.000877pt;}
.ws77{word-spacing:9.043384pt;}
.ws5e{word-spacing:9.149652pt;}
.ws49{word-spacing:9.255920pt;}
.ws79{word-spacing:9.309053pt;}
.ws2c{word-spacing:9.904153pt;}
.ws16{word-spacing:9.946660pt;}
.ws41{word-spacing:9.999794pt;}
.ws4c{word-spacing:10.159195pt;}
.ws7{word-spacing:10.212329pt;}
.wsa{word-spacing:10.531132pt;}
.ws20{word-spacing:10.584266pt;}
.ws32{word-spacing:10.849936pt;}
.ws6d{word-spacing:10.956203pt;}
.ws4e{word-spacing:11.009337pt;}
.ws78{word-spacing:11.073098pt;}
.ws42{word-spacing:11.115605pt;}
.ws71{word-spacing:11.381274pt;}
.ws6e{word-spacing:12.390818pt;}
.ws31{word-spacing:12.465205pt;}
.ws33{word-spacing:12.667114pt;}
.ws35{word-spacing:13.251586pt;}
.ws64{word-spacing:13.719164pt;}
.ws63{word-spacing:14.409905pt;}
.ws1a{word-spacing:14.781842pt;}
.ws7b{word-spacing:15.323807pt;}
.ws1c{word-spacing:15.738251pt;}
.ws7c{word-spacing:16.375858pt;}
.ws11{word-spacing:17.377708pt;}
.ws3c{word-spacing:19.852971pt;}
.ws3{word-spacing:20.722347pt;}
.ws47{word-spacing:21.742524pt;}
.ws23{word-spacing:23.751041pt;}
.ws0{word-spacing:23.846639pt;}
.ws5d{word-spacing:25.617708pt;}
.ws2{word-spacing:26.525743pt;}
.ws26{word-spacing:28.615887pt;}
.ws15{word-spacing:86.000687pt;}
._2{margin-left:-6.010213pt;}
._5{margin-left:-3.974400pt;}
._7{margin-left:-2.922363pt;}
._0{margin-left:-1.976593pt;}
._3{margin-left:-0.945770pt;}
._4{width:0.998903pt;}
._1{width:1.976593pt;}
._a{width:2.922363pt;}
._9{width:13.984847pt;}
._e{width:15.302554pt;}
._14{width:16.205829pt;}
._17{width:18.288690pt;}
._11{width:19.457635pt;}
._1b{width:21.264187pt;}
._1f{width:22.316224pt;}
._15{width:23.485169pt;}
._12{width:24.760382pt;}
._19{width:25.833699pt;}
._b{width:27.316893pt;}
._1c{width:28.586020pt;}
._1a{width:30.488199pt;}
._1e{width:31.933454pt;}
._d{width:32.900503pt;}
._8{width:34.983364pt;}
._20{width:39.637865pt;}
._1d{width:42.135156pt;}
._6{width:45.376322pt;}
._f{width:46.492133pt;}
._13{width:47.862537pt;}
._c{width:59.031726pt;}
._16{width:71.731200pt;}
._10{width:86.077200pt;}
._18{width:278.474595pt;}
.fs4{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:35.740000pt;}
.y2b{bottom:75.590667pt;}
.y2a{bottom:91.530667pt;}
.y29{bottom:107.470667pt;}
.y28{bottom:123.410667pt;}
.y27{bottom:139.350667pt;}
.y26{bottom:155.292000pt;}
.y6f{bottom:169.428000pt;}
.y25{bottom:171.232000pt;}
.y46{bottom:172.129333pt;}
.y24{bottom:187.172000pt;}
.y23{bottom:203.112000pt;}
.y45{bottom:204.906667pt;}
.y6e{bottom:216.157333pt;}
.y44{bottom:220.846667pt;}
.y22{bottom:224.670667pt;}
.y6d{bottom:232.097333pt;}
.y43{bottom:236.788000pt;}
.y21{bottom:240.612000pt;}
.y6c{bottom:248.038667pt;}
.y20{bottom:256.552000pt;}
.y6b{bottom:263.978667pt;}
.y8f{bottom:264.538667pt;}
.y42{bottom:264.613333pt;}
.y1f{bottom:272.492000pt;}
.y6a{bottom:279.918667pt;}
.y8e{bottom:280.478667pt;}
.y1e{bottom:288.432000pt;}
.y69{bottom:295.858667pt;}
.y41{bottom:299.672000pt;}
.y1d{bottom:304.372000pt;}
.y8d{bottom:307.045333pt;}
.y68{bottom:311.798667pt;}
.y1c{bottom:320.313333pt;}
.y67{bottom:327.738667pt;}
.y8c{bottom:333.612000pt;}
.y1b{bottom:336.253333pt;}
.y66{bottom:343.680000pt;}
.y8b{bottom:349.553333pt;}
.y1a{bottom:352.193333pt;}
.y40{bottom:353.029333pt;}
.y65{bottom:359.620000pt;}
.y3f{bottom:368.969333pt;}
.y64{bottom:375.560000pt;}
.y8a{bottom:376.120000pt;}
.y3e{bottom:384.909333pt;}
.y19{bottom:391.745333pt;}
.y89{bottom:392.060000pt;}
.y3d{bottom:400.849333pt;}
.y63{bottom:405.637333pt;}
.y3c{bottom:416.789333pt;}
.y88{bottom:418.626667pt;}
.y87{bottom:445.194667pt;}
.y3b{bottom:448.688000pt;}
.y62{bottom:452.366667pt;}
.y86{bottom:461.134667pt;}
.y3a{bottom:464.628000pt;}
.y18{bottom:465.484000pt;}
.y61{bottom:468.306667pt;}
.y39{bottom:480.568000pt;}
.y17{bottom:481.424000pt;}
.y60{bottom:484.246667pt;}
.y85{bottom:490.229333pt;}
.y38{bottom:496.509333pt;}
.y16{bottom:497.365333pt;}
.y5f{bottom:500.186667pt;}
.y37{bottom:512.449333pt;}
.y15{bottom:513.305333pt;}
.y5e{bottom:516.128000pt;}
.y36{bottom:528.389333pt;}
.y14{bottom:529.245333pt;}
.y5d{bottom:532.068000pt;}
.y84{bottom:534.156000pt;}
.y35{bottom:544.329333pt;}
.y13{bottom:545.185333pt;}
.y5c{bottom:548.008000pt;}
.y83{bottom:550.097333pt;}
.y12{bottom:561.125333pt;}
.y5b{bottom:563.948000pt;}
.y82{bottom:566.037333pt;}
.y34{bottom:576.228000pt;}
.y11{bottom:577.065333pt;}
.y5a{bottom:579.888000pt;}
.y81{bottom:581.977333pt;}
.y33{bottom:592.168000pt;}
.y10{bottom:593.006667pt;}
.y59{bottom:595.828000pt;}
.y80{bottom:597.917333pt;}
.y32{bottom:608.108000pt;}
.yf{bottom:608.946667pt;}
.y58{bottom:621.330667pt;}
.y31{bottom:624.048000pt;}
.ye{bottom:624.886667pt;}
.y7f{bottom:627.012000pt;}
.y30{bottom:639.989333pt;}
.yd{bottom:640.826667pt;}
.yc{bottom:656.766667pt;}
.y57{bottom:661.316000pt;}
.y7e{bottom:670.940000pt;}
.y2f{bottom:671.886667pt;}
.yb{bottom:672.708000pt;}
.y56{bottom:677.257333pt;}
.y7d{bottom:686.880000pt;}
.y2e{bottom:687.826667pt;}
.ya{bottom:688.648000pt;}
.y55{bottom:693.197333pt;}
.y7c{bottom:702.820000pt;}
.y2d{bottom:703.768000pt;}
.y9{bottom:704.588000pt;}
.y54{bottom:709.137333pt;}
.y7b{bottom:718.761333pt;}
.y8{bottom:720.528000pt;}
.y53{bottom:725.077333pt;}
.y7a{bottom:734.701333pt;}
.y2c{bottom:736.169333pt;}
.y52{bottom:741.017333pt;}
.y79{bottom:750.641333pt;}
.y7{bottom:760.080000pt;}
.y51{bottom:766.520000pt;}
.y78{bottom:766.581333pt;}
.y77{bottom:782.521333pt;}
.y76{bottom:798.461333pt;}
.y50{bottom:799.253333pt;}
.y6{bottom:809.672000pt;}
.y75{bottom:814.402667pt;}
.y74{bottom:830.342667pt;}
.y5{bottom:840.932000pt;}
.y4f{bottom:845.982667pt;}
.y73{bottom:859.437333pt;}
.y4{bottom:859.529333pt;}
.y4e{bottom:861.922667pt;}
.y4d{bottom:877.862667pt;}
.y3{bottom:878.126667pt;}
.y4c{bottom:893.804000pt;}
.y72{bottom:903.364000pt;}
.y4b{bottom:909.744000pt;}
.y2{bottom:916.648000pt;}
.y71{bottom:919.305333pt;}
.y4a{bottom:925.684000pt;}
.y1{bottom:935.245333pt;}
.y49{bottom:941.624000pt;}
.y70{bottom:951.185333pt;}
.y48{bottom:967.125333pt;}
.h4{height:39.850400pt;}
.h1{height:44.632747pt;}
.h2{height:44.887791pt;}
.h3{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x8{left:88.874667pt;}
.x2{left:165.541333pt;}
.x1{left:191.558667pt;}
.x5{left:304.770667pt;}
.x4{left:326.344000pt;}
.x6{left:343.510667pt;}
.x3{left:357.070667pt;}
.xd{left:404.678667pt;}
.x9{left:414.641333pt;}
.xe{left:421.284000pt;}
.xb{left:427.925333pt;}
.xf{left:441.946667pt;}
.xa{left:446.921333pt;}
.xc{left:501.196000pt;}
}




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