
    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_68c5bca5484233b67de8c743.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_9c1077a594f319ce2205196a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_689196621927fa4d2cf3546f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740000;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_b08c72e6849c8ab16d3a7d13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_de238cb0f331a716ad32fad1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.010600px;}
.v2{vertical-align:21.978000px;}
.lsb{letter-spacing:-3.510000px;}
.ls1{letter-spacing:-2.293920px;}
.lsc{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.858000px;}
.ls2{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.528000px;}
.ls4{letter-spacing:-0.390000px;}
.ls7{letter-spacing:-0.330000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.330000px;}
.lsd{letter-spacing:1.518000px;}
.ls3{letter-spacing:1.617000px;}
.lsa{letter-spacing:2.240400px;}
.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;}
}
.ws1{word-spacing:-30.624000px;}
.ws7{word-spacing:-20.748000px;}
.ws2{word-spacing:-17.556000px;}
.ws3{word-spacing:-16.500000px;}
.ws4{word-spacing:-16.170000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.619500px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-15.915600px;}
._13{margin-left:-12.511800px;}
._15{margin-left:-11.435400px;}
._a{margin-left:-9.768000px;}
._10{margin-left:-8.095200px;}
._9{margin-left:-6.575904px;}
._8{margin-left:-4.624896px;}
._b{margin-left:-3.289200px;}
._1{margin-left:-2.046000px;}
._f{margin-left:-1.022400px;}
._3{width:1.352400px;}
._4{width:2.475600px;}
._e{width:3.560400px;}
._5{width:5.412000px;}
._6{width:7.194000px;}
._7{width:8.580000px;}
._c{width:9.954000px;}
._2{width:11.209200px;}
._0{width:12.738000px;}
._14{width:13.802304px;}
._12{width:14.905200px;}
._11{width:1598.796000px;}
.fc3{color:rgb(101,98,99);}
.fc1{color:rgb(79,76,77);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:38.478000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:70.800000px;}
.fs7{font-size:78.000000px;}
.fs3{font-size:92.040000px;}
.fs5{font-size:132.000000px;}
.fs6{font-size:140.400000px;}
.fs2{font-size:152.928000px;}
.fs1{font-size:165.342600px;}
.y0{bottom:0.000000px;}
.yb{bottom:17.341200px;}
.y86{bottom:83.110950px;}
.yc8{bottom:85.371450px;}
.yae{bottom:87.171450px;}
.yeb{bottom:87.424500px;}
.yca{bottom:87.471450px;}
.ya8{bottom:88.071450px;}
.y35{bottom:90.696450px;}
.y81{bottom:98.224500px;}
.y59{bottom:98.271450px;}
.y85{bottom:99.310950px;}
.yc7{bottom:106.071450px;}
.yaf{bottom:108.069600px;}
.yad{bottom:108.171450px;}
.yea{bottom:108.424500px;}
.yc9{bottom:108.471450px;}
.ya7{bottom:108.771450px;}
.y34{bottom:111.696450px;}
.y80{bottom:119.224500px;}
.y58{bottom:119.271450px;}
.yc6{bottom:126.771450px;}
.ye9{bottom:129.124500px;}
.yac{bottom:129.171450px;}
.ya6{bottom:129.471450px;}
.y33{bottom:132.696450px;}
.y7f{bottom:140.224500px;}
.y57{bottom:140.271450px;}
.yc5{bottom:147.471450px;}
.ye8{bottom:149.824500px;}
.ya5{bottom:150.171450px;}
.y18{bottom:153.476250px;}
.y32{bottom:153.696450px;}
.y7e{bottom:161.224500px;}
.y56{bottom:161.271450px;}
.yc4{bottom:168.171450px;}
.ye7{bottom:170.524500px;}
.ya4{bottom:170.871450px;}
.y17{bottom:174.476250px;}
.y31{bottom:174.696450px;}
.y7d{bottom:182.224500px;}
.y55{bottom:182.271450px;}
.yc3{bottom:188.871450px;}
.ye6{bottom:191.224500px;}
.ya3{bottom:191.571450px;}
.y16{bottom:195.476250px;}
.y30{bottom:195.696450px;}
.y7c{bottom:203.224500px;}
.y54{bottom:203.271450px;}
.yc2{bottom:209.571450px;}
.ye5{bottom:211.924500px;}
.ya2{bottom:212.271450px;}
.y2f{bottom:216.696450px;}
.y7b{bottom:224.224500px;}
.y53{bottom:224.271450px;}
.yc1{bottom:230.271450px;}
.ye4{bottom:232.624500px;}
.ya1{bottom:232.971450px;}
.y2e{bottom:237.696450px;}
.y12{bottom:242.469900px;}
.y7a{bottom:245.224500px;}
.y52{bottom:245.271450px;}
.yc0{bottom:250.971450px;}
.ye3{bottom:253.324500px;}
.ya0{bottom:253.671450px;}
.y79{bottom:266.224500px;}
.y51{bottom:266.271450px;}
.y11{bottom:267.249900px;}
.y9{bottom:269.394750px;}
.ybf{bottom:271.671450px;}
.y9f{bottom:274.371450px;}
.y2d{bottom:279.696450px;}
.y78{bottom:287.224500px;}
.y50{bottom:287.271450px;}
.y8{bottom:290.394750px;}
.y10{bottom:292.029900px;}
.ybe{bottom:292.371450px;}
.ye2{bottom:294.724500px;}
.y9e{bottom:295.071450px;}
.y2c{bottom:300.696450px;}
.y77{bottom:308.224500px;}
.y87{bottom:308.271450px;}
.y7{bottom:311.394750px;}
.ybd{bottom:313.071450px;}
.y9d{bottom:315.771450px;}
.y2b{bottom:321.696450px;}
.y76{bottom:329.224500px;}
.y4f{bottom:329.271450px;}
.y6{bottom:332.394750px;}
.ybc{bottom:333.771450px;}
.ye1{bottom:336.124500px;}
.y9c{bottom:336.471450px;}
.yf{bottom:341.589900px;}
.y2a{bottom:342.696450px;}
.y75{bottom:350.224500px;}
.y4e{bottom:350.271450px;}
.y5{bottom:353.394750px;}
.ybb{bottom:354.471450px;}
.ye0{bottom:357.124500px;}
.y9b{bottom:357.171450px;}
.y29{bottom:363.696450px;}
.y74{bottom:371.224500px;}
.y5c{bottom:371.271450px;}
.y4{bottom:374.394750px;}
.ydf{bottom:377.824500px;}
.y9a{bottom:377.871450px;}
.ye{bottom:379.089900px;}
.y28{bottom:384.696450px;}
.y73{bottom:392.224500px;}
.y4d{bottom:392.271450px;}
.y3{bottom:395.394750px;}
.yba{bottom:395.871450px;}
.yde{bottom:398.524500px;}
.y99{bottom:398.571450px;}
.y27{bottom:405.696450px;}
.y72{bottom:413.224500px;}
.y4c{bottom:413.271450px;}
.y2{bottom:416.394750px;}
.yb9{bottom:416.571450px;}
.yd{bottom:416.589900px;}
.ydd{bottom:419.224500px;}
.y98{bottom:419.271450px;}
.y26{bottom:426.696450px;}
.y71{bottom:434.224500px;}
.y4b{bottom:434.271450px;}
.yb8{bottom:437.271450px;}
.y1{bottom:437.394750px;}
.ydc{bottom:439.924500px;}
.y97{bottom:439.971450px;}
.y25{bottom:447.696450px;}
.yc{bottom:454.089900px;}
.y70{bottom:455.224500px;}
.y4a{bottom:455.271450px;}
.yb7{bottom:457.971450px;}
.y96{bottom:460.671450px;}
.y24{bottom:468.696450px;}
.y6f{bottom:476.224500px;}
.y49{bottom:476.271450px;}
.yb6{bottom:478.671450px;}
.ydb{bottom:481.324500px;}
.y95{bottom:481.371450px;}
.y23{bottom:489.696450px;}
.y84{bottom:497.224500px;}
.y48{bottom:497.271450px;}
.yb5{bottom:499.371450px;}
.yda{bottom:502.024500px;}
.y94{bottom:502.071450px;}
.y22{bottom:510.696450px;}
.y6e{bottom:518.224500px;}
.y47{bottom:518.271450px;}
.yb4{bottom:520.071450px;}
.yd9{bottom:522.724500px;}
.y93{bottom:522.771450px;}
.y21{bottom:531.696450px;}
.y6d{bottom:539.224500px;}
.y46{bottom:539.271450px;}
.yb3{bottom:540.771450px;}
.yd8{bottom:543.424500px;}
.y92{bottom:543.471450px;}
.y20{bottom:552.696450px;}
.y6c{bottom:560.224500px;}
.y45{bottom:560.271450px;}
.yb2{bottom:561.471450px;}
.yd7{bottom:564.124500px;}
.y91{bottom:564.171450px;}
.y1f{bottom:573.696450px;}
.ya{bottom:577.865250px;}
.y6b{bottom:581.224500px;}
.y44{bottom:581.271450px;}
.yb1{bottom:582.171450px;}
.yd6{bottom:584.824500px;}
.yab{bottom:584.871450px;}
.y1e{bottom:594.696450px;}
.y6a{bottom:602.224500px;}
.y43{bottom:602.271450px;}
.yb0{bottom:602.871450px;}
.yd5{bottom:605.524500px;}
.y90{bottom:605.571450px;}
.y1d{bottom:615.696450px;}
.y69{bottom:623.224500px;}
.y42{bottom:623.271450px;}
.yd4{bottom:626.224500px;}
.y8f{bottom:626.271450px;}
.y68{bottom:644.224500px;}
.y5b{bottom:644.271450px;}
.yd3{bottom:646.924500px;}
.y8e{bottom:646.971450px;}
.y15{bottom:650.322450px;}
.y1c{bottom:657.696450px;}
.y67{bottom:665.224500px;}
.y41{bottom:665.271450px;}
.yd2{bottom:667.624500px;}
.yaa{bottom:667.671450px;}
.y66{bottom:686.224500px;}
.y40{bottom:686.271450px;}
.y14{bottom:686.322450px;}
.yd1{bottom:688.324500px;}
.y8d{bottom:688.371450px;}
.y65{bottom:707.224500px;}
.y3f{bottom:707.271450px;}
.yd0{bottom:709.024500px;}
.y8c{bottom:709.071450px;}
.y13{bottom:722.322450px;}
.y64{bottom:728.224500px;}
.y3e{bottom:728.271450px;}
.ycf{bottom:729.724500px;}
.y8b{bottom:729.771450px;}
.y1b{bottom:741.696450px;}
.y83{bottom:749.224650px;}
.y3d{bottom:749.271450px;}
.yce{bottom:750.424500px;}
.y8a{bottom:750.471450px;}
.y63{bottom:770.224650px;}
.y3c{bottom:770.271450px;}
.ycd{bottom:771.124500px;}
.ya9{bottom:771.171450px;}
.y1a{bottom:773.196450px;}
.y62{bottom:791.224650px;}
.y3b{bottom:791.271450px;}
.ycc{bottom:791.824500px;}
.y89{bottom:791.871450px;}
.y19{bottom:804.696450px;}
.y61{bottom:812.224650px;}
.y3a{bottom:812.271450px;}
.ycb{bottom:812.524500px;}
.y88{bottom:812.571450px;}
.y60{bottom:833.224650px;}
.y39{bottom:833.271450px;}
.y5e{bottom:916.004250px;}
.y37{bottom:916.051200px;}
.y5f{bottom:916.647750px;}
.y38{bottom:916.694700px;}
.y82{bottom:916.783050px;}
.y5a{bottom:916.829850px;}
.y5d{bottom:931.004250px;}
.y36{bottom:931.051200px;}
.hb{height:37.800000px;}
.hd{height:46.200000px;}
.hc{height:46.818000px;}
.hf{height:48.828000px;}
.he{height:48.828600px;}
.ha{height:54.600000px;}
.h2{height:57.222000px;}
.h7{height:61.383600px;}
.h6{height:64.428000px;}
.h8{height:95.832000px;}
.h9{height:98.280000px;}
.h5{height:107.049600px;}
.h4{height:120.038728px;}
.h3{height:424.819500px;}
.h0{height:1002.684750px;}
.h1{height:1002.750000px;}
.w2{width:214.374000px;}
.w3{width:720.319500px;}
.w0{width:722.055750px;}
.w1{width:722.250000px;}
.x0{left:0.000000px;}
.x14{left:1.736250px;}
.x3{left:13.241400px;}
.x13{left:65.515800px;}
.x15{left:105.023550px;}
.x1{left:108.035400px;}
.x6{left:112.389150px;}
.xf{left:117.922650px;}
.xe{left:128.687850px;}
.x16{left:135.673200px;}
.x4{left:137.206950px;}
.x17{left:150.555150px;}
.x10{left:152.780250px;}
.x5{left:155.685750px;}
.x9{left:163.607100px;}
.x7{left:176.266500px;}
.x11{left:220.183350px;}
.x8{left:244.102050px;}
.xa{left:250.052400px;}
.x2{left:255.078750px;}
.xb{left:289.338450px;}
.xc{left:316.348650px;}
.xd{left:321.116850px;}
.x12{left:382.286100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.787200pt;}
.v2{vertical-align:19.536000pt;}
.lsb{letter-spacing:-3.120000pt;}
.ls1{letter-spacing:-2.039040pt;}
.lsc{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.762667pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.469333pt;}
.ls4{letter-spacing:-0.346667pt;}
.ls7{letter-spacing:-0.293333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.293333pt;}
.lsd{letter-spacing:1.349333pt;}
.ls3{letter-spacing:1.437333pt;}
.lsa{letter-spacing:1.991467pt;}
.ws1{word-spacing:-27.221333pt;}
.ws7{word-spacing:-18.442667pt;}
.ws2{word-spacing:-15.605333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws4{word-spacing:-14.373333pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.550667pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-14.147200pt;}
._13{margin-left:-11.121600pt;}
._15{margin-left:-10.164800pt;}
._a{margin-left:-8.682667pt;}
._10{margin-left:-7.195733pt;}
._9{margin-left:-5.845248pt;}
._8{margin-left:-4.111019pt;}
._b{margin-left:-2.923733pt;}
._1{margin-left:-1.818667pt;}
._f{margin-left:-0.908800pt;}
._3{width:1.202133pt;}
._4{width:2.200533pt;}
._e{width:3.164800pt;}
._5{width:4.810667pt;}
._6{width:6.394667pt;}
._7{width:7.626667pt;}
._c{width:8.848000pt;}
._2{width:9.963733pt;}
._0{width:11.322667pt;}
._14{width:12.268715pt;}
._12{width:13.249067pt;}
._11{width:1421.152000pt;}
.fs9{font-size:34.202667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:62.933333pt;}
.fs7{font-size:69.333333pt;}
.fs3{font-size:81.813333pt;}
.fs5{font-size:117.333333pt;}
.fs6{font-size:124.800000pt;}
.fs2{font-size:135.936000pt;}
.fs1{font-size:146.971200pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:15.414400pt;}
.y86{bottom:73.876400pt;}
.yc8{bottom:75.885733pt;}
.yae{bottom:77.485733pt;}
.yeb{bottom:77.710667pt;}
.yca{bottom:77.752400pt;}
.ya8{bottom:78.285733pt;}
.y35{bottom:80.619067pt;}
.y81{bottom:87.310667pt;}
.y59{bottom:87.352400pt;}
.y85{bottom:88.276400pt;}
.yc7{bottom:94.285733pt;}
.yaf{bottom:96.061867pt;}
.yad{bottom:96.152400pt;}
.yea{bottom:96.377333pt;}
.yc9{bottom:96.419067pt;}
.ya7{bottom:96.685733pt;}
.y34{bottom:99.285733pt;}
.y80{bottom:105.977333pt;}
.y58{bottom:106.019067pt;}
.yc6{bottom:112.685733pt;}
.ye9{bottom:114.777333pt;}
.yac{bottom:114.819067pt;}
.ya6{bottom:115.085733pt;}
.y33{bottom:117.952400pt;}
.y7f{bottom:124.644000pt;}
.y57{bottom:124.685733pt;}
.yc5{bottom:131.085733pt;}
.ye8{bottom:133.177333pt;}
.ya5{bottom:133.485733pt;}
.y18{bottom:136.423333pt;}
.y32{bottom:136.619067pt;}
.y7e{bottom:143.310667pt;}
.y56{bottom:143.352400pt;}
.yc4{bottom:149.485733pt;}
.ye7{bottom:151.577333pt;}
.ya4{bottom:151.885733pt;}
.y17{bottom:155.090000pt;}
.y31{bottom:155.285733pt;}
.y7d{bottom:161.977333pt;}
.y55{bottom:162.019067pt;}
.yc3{bottom:167.885733pt;}
.ye6{bottom:169.977333pt;}
.ya3{bottom:170.285733pt;}
.y16{bottom:173.756667pt;}
.y30{bottom:173.952400pt;}
.y7c{bottom:180.644000pt;}
.y54{bottom:180.685733pt;}
.yc2{bottom:186.285733pt;}
.ye5{bottom:188.377333pt;}
.ya2{bottom:188.685733pt;}
.y2f{bottom:192.619067pt;}
.y7b{bottom:199.310667pt;}
.y53{bottom:199.352400pt;}
.yc1{bottom:204.685733pt;}
.ye4{bottom:206.777333pt;}
.ya1{bottom:207.085733pt;}
.y2e{bottom:211.285733pt;}
.y12{bottom:215.528800pt;}
.y7a{bottom:217.977333pt;}
.y52{bottom:218.019067pt;}
.yc0{bottom:223.085733pt;}
.ye3{bottom:225.177333pt;}
.ya0{bottom:225.485733pt;}
.y79{bottom:236.644000pt;}
.y51{bottom:236.685733pt;}
.y11{bottom:237.555467pt;}
.y9{bottom:239.462000pt;}
.ybf{bottom:241.485733pt;}
.y9f{bottom:243.885733pt;}
.y2d{bottom:248.619067pt;}
.y78{bottom:255.310667pt;}
.y50{bottom:255.352400pt;}
.y8{bottom:258.128667pt;}
.y10{bottom:259.582133pt;}
.ybe{bottom:259.885733pt;}
.ye2{bottom:261.977333pt;}
.y9e{bottom:262.285733pt;}
.y2c{bottom:267.285733pt;}
.y77{bottom:273.977333pt;}
.y87{bottom:274.019067pt;}
.y7{bottom:276.795333pt;}
.ybd{bottom:278.285733pt;}
.y9d{bottom:280.685733pt;}
.y2b{bottom:285.952400pt;}
.y76{bottom:292.644000pt;}
.y4f{bottom:292.685733pt;}
.y6{bottom:295.462000pt;}
.ybc{bottom:296.685733pt;}
.ye1{bottom:298.777333pt;}
.y9c{bottom:299.085733pt;}
.yf{bottom:303.635467pt;}
.y2a{bottom:304.619067pt;}
.y75{bottom:311.310667pt;}
.y4e{bottom:311.352400pt;}
.y5{bottom:314.128667pt;}
.ybb{bottom:315.085733pt;}
.ye0{bottom:317.444000pt;}
.y9b{bottom:317.485733pt;}
.y29{bottom:323.285733pt;}
.y74{bottom:329.977333pt;}
.y5c{bottom:330.019067pt;}
.y4{bottom:332.795333pt;}
.ydf{bottom:335.844000pt;}
.y9a{bottom:335.885733pt;}
.ye{bottom:336.968800pt;}
.y28{bottom:341.952400pt;}
.y73{bottom:348.644000pt;}
.y4d{bottom:348.685733pt;}
.y3{bottom:351.462000pt;}
.yba{bottom:351.885733pt;}
.yde{bottom:354.244000pt;}
.y99{bottom:354.285733pt;}
.y27{bottom:360.619067pt;}
.y72{bottom:367.310667pt;}
.y4c{bottom:367.352400pt;}
.y2{bottom:370.128667pt;}
.yb9{bottom:370.285733pt;}
.yd{bottom:370.302133pt;}
.ydd{bottom:372.644000pt;}
.y98{bottom:372.685733pt;}
.y26{bottom:379.285733pt;}
.y71{bottom:385.977333pt;}
.y4b{bottom:386.019067pt;}
.yb8{bottom:388.685733pt;}
.y1{bottom:388.795333pt;}
.ydc{bottom:391.044000pt;}
.y97{bottom:391.085733pt;}
.y25{bottom:397.952400pt;}
.yc{bottom:403.635467pt;}
.y70{bottom:404.644000pt;}
.y4a{bottom:404.685733pt;}
.yb7{bottom:407.085733pt;}
.y96{bottom:409.485733pt;}
.y24{bottom:416.619067pt;}
.y6f{bottom:423.310667pt;}
.y49{bottom:423.352400pt;}
.yb6{bottom:425.485733pt;}
.ydb{bottom:427.844000pt;}
.y95{bottom:427.885733pt;}
.y23{bottom:435.285733pt;}
.y84{bottom:441.977333pt;}
.y48{bottom:442.019067pt;}
.yb5{bottom:443.885733pt;}
.yda{bottom:446.244000pt;}
.y94{bottom:446.285733pt;}
.y22{bottom:453.952400pt;}
.y6e{bottom:460.644000pt;}
.y47{bottom:460.685733pt;}
.yb4{bottom:462.285733pt;}
.yd9{bottom:464.644000pt;}
.y93{bottom:464.685733pt;}
.y21{bottom:472.619067pt;}
.y6d{bottom:479.310667pt;}
.y46{bottom:479.352400pt;}
.yb3{bottom:480.685733pt;}
.yd8{bottom:483.044000pt;}
.y92{bottom:483.085733pt;}
.y20{bottom:491.285733pt;}
.y6c{bottom:497.977333pt;}
.y45{bottom:498.019067pt;}
.yb2{bottom:499.085733pt;}
.yd7{bottom:501.444000pt;}
.y91{bottom:501.485733pt;}
.y1f{bottom:509.952400pt;}
.ya{bottom:513.658000pt;}
.y6b{bottom:516.644000pt;}
.y44{bottom:516.685733pt;}
.yb1{bottom:517.485733pt;}
.yd6{bottom:519.844000pt;}
.yab{bottom:519.885733pt;}
.y1e{bottom:528.619067pt;}
.y6a{bottom:535.310667pt;}
.y43{bottom:535.352400pt;}
.yb0{bottom:535.885733pt;}
.yd5{bottom:538.244000pt;}
.y90{bottom:538.285733pt;}
.y1d{bottom:547.285733pt;}
.y69{bottom:553.977333pt;}
.y42{bottom:554.019067pt;}
.yd4{bottom:556.644000pt;}
.y8f{bottom:556.685733pt;}
.y68{bottom:572.644000pt;}
.y5b{bottom:572.685733pt;}
.yd3{bottom:575.044000pt;}
.y8e{bottom:575.085733pt;}
.y15{bottom:578.064400pt;}
.y1c{bottom:584.619067pt;}
.y67{bottom:591.310667pt;}
.y41{bottom:591.352400pt;}
.yd2{bottom:593.444000pt;}
.yaa{bottom:593.485733pt;}
.y66{bottom:609.977333pt;}
.y40{bottom:610.019067pt;}
.y14{bottom:610.064400pt;}
.yd1{bottom:611.844000pt;}
.y8d{bottom:611.885733pt;}
.y65{bottom:628.644000pt;}
.y3f{bottom:628.685733pt;}
.yd0{bottom:630.244000pt;}
.y8c{bottom:630.285733pt;}
.y13{bottom:642.064400pt;}
.y64{bottom:647.310667pt;}
.y3e{bottom:647.352400pt;}
.ycf{bottom:648.644000pt;}
.y8b{bottom:648.685733pt;}
.y1b{bottom:659.285733pt;}
.y83{bottom:665.977467pt;}
.y3d{bottom:666.019067pt;}
.yce{bottom:667.044000pt;}
.y8a{bottom:667.085733pt;}
.y63{bottom:684.644133pt;}
.y3c{bottom:684.685733pt;}
.ycd{bottom:685.444000pt;}
.ya9{bottom:685.485733pt;}
.y1a{bottom:687.285733pt;}
.y62{bottom:703.310800pt;}
.y3b{bottom:703.352400pt;}
.ycc{bottom:703.844000pt;}
.y89{bottom:703.885733pt;}
.y19{bottom:715.285733pt;}
.y61{bottom:721.977467pt;}
.y3a{bottom:722.019067pt;}
.ycb{bottom:722.244000pt;}
.y88{bottom:722.285733pt;}
.y60{bottom:740.644133pt;}
.y39{bottom:740.685733pt;}
.y5e{bottom:814.226000pt;}
.y37{bottom:814.267733pt;}
.y5f{bottom:814.798000pt;}
.y38{bottom:814.839733pt;}
.y82{bottom:814.918267pt;}
.y5a{bottom:814.959867pt;}
.y5d{bottom:827.559333pt;}
.y36{bottom:827.601067pt;}
.hb{height:33.600000pt;}
.hd{height:41.066667pt;}
.hc{height:41.616000pt;}
.hf{height:43.402667pt;}
.he{height:43.403200pt;}
.ha{height:48.533333pt;}
.h2{height:50.864000pt;}
.h7{height:54.563200pt;}
.h6{height:57.269333pt;}
.h8{height:85.184000pt;}
.h9{height:87.360000pt;}
.h5{height:95.155200pt;}
.h4{height:106.701091pt;}
.h3{height:377.617333pt;}
.h0{height:891.275333pt;}
.h1{height:891.333333pt;}
.w2{width:190.554667pt;}
.w3{width:640.284000pt;}
.w0{width:641.827333pt;}
.w1{width:642.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.543333pt;}
.x3{left:11.770133pt;}
.x13{left:58.236267pt;}
.x15{left:93.354267pt;}
.x1{left:96.031467pt;}
.x6{left:99.901467pt;}
.xf{left:104.820133pt;}
.xe{left:114.389200pt;}
.x16{left:120.598400pt;}
.x4{left:121.961733pt;}
.x17{left:133.826800pt;}
.x10{left:135.804667pt;}
.x5{left:138.387333pt;}
.x9{left:145.428533pt;}
.x7{left:156.681333pt;}
.x11{left:195.718533pt;}
.x8{left:216.979600pt;}
.xa{left:222.268800pt;}
.x2{left:226.736667pt;}
.xb{left:257.189733pt;}
.xc{left:281.198800pt;}
.xd{left:285.437200pt;}
.x12{left:339.809867pt;}
}




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