
    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_6fa9bdcd0ad2b2fd95ba6233.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_3f93b282777ca68e4f3b058b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_f9f41631ae0645b66fc3f2a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_87f9c69b90d9c8f574a17a3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a9d74ab076ae3822cfd3c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5e3d52618fca117b12c93c97.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.842285;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_fd160e85830946d4b9c3548e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_13f4be1f58dacef953bbc2af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b43d46a794f7237de06c15f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5701f1ea5553c57b2971c41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_22943180696beca472c50d80.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_86fc73cc09193e9fde8b1ab8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.459648px;}
.ls23{letter-spacing:-0.348480px;}
.lsb{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.320544px;}
.ls10{letter-spacing:-0.260064px;}
.ls21{letter-spacing:-0.247104px;}
.ls22{letter-spacing:-0.240768px;}
.ls15{letter-spacing:-0.238464px;}
.ls1d{letter-spacing:-0.228096px;}
.lsd{letter-spacing:-0.223776px;}
.ls1b{letter-spacing:-0.205344px;}
.ls12{letter-spacing:-0.198720px;}
.ls20{letter-spacing:-0.190080px;}
.ls1c{letter-spacing:-0.177408px;}
.ls25{letter-spacing:-0.171072px;}
.ls5{letter-spacing:-0.158976px;}
.lsf{letter-spacing:-0.157248px;}
.ls19{letter-spacing:-0.139104px;}
.ls27{letter-spacing:-0.133056px;}
.ls9{letter-spacing:-0.125856px;}
.lsc{letter-spacing:-0.120960px;}
.ls1e{letter-spacing:-0.120384px;}
.ls14{letter-spacing:-0.119232px;}
.ls26{letter-spacing:-0.107712px;}
.ls1f{letter-spacing:-0.088704px;}
.ls16{letter-spacing:-0.086112px;}
.ls13{letter-spacing:-0.079488px;}
.ls7{letter-spacing:-0.059616px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.058320px;}
.ls8{letter-spacing:0.058464px;}
.ls3{letter-spacing:0.060048px;}
.ls0{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.119952px;}
.ls1{letter-spacing:0.120960px;}
.ls6{letter-spacing:0.121104px;}
.ls24{letter-spacing:10.736640px;}
.ls17{letter-spacing:40.085280px;}
.ls1a{letter-spacing:42.236640px;}
.ls18{letter-spacing:49.721040px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.480512px;}
.ws5{word-spacing:-16.440768px;}
.ws2{word-spacing:-16.434144px;}
.ws6{word-spacing:-16.401024px;}
.ws9{word-spacing:-16.361280px;}
.wsa{word-spacing:-16.321536px;}
.wsc{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.668928px;}
.wsb{word-spacing:-15.662592px;}
.wsd{word-spacing:-15.611904px;}
.wse{word-spacing:-15.599232px;}
.ws0{word-spacing:-0.162864px;}
.ws3{word-spacing:-0.161712px;}
.ws1{word-spacing:-0.100224px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1.010304px;}
._0{width:1.013616px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.100000px;}
.y56{bottom:6.420000px;}
.y66{bottom:6.720000px;}
.y4c{bottom:6.960000px;}
.y55{bottom:28.380000px;}
.y4b{bottom:28.560000px;}
.y65{bottom:28.680000px;}
.y54{bottom:49.980000px;}
.y64{bottom:50.640000px;}
.y2{bottom:52.500000px;}
.y1{bottom:57.600000px;}
.y53{bottom:71.940000px;}
.y63{bottom:72.240000px;}
.y52{bottom:93.900000px;}
.y62{bottom:94.200000px;}
.y51{bottom:115.500000px;}
.y61{bottom:115.800000px;}
.y8a{bottom:117.000000px;}
.y6f{bottom:119.880000px;}
.y4a{bottom:123.000000px;}
.ya8{bottom:124.200000px;}
.y50{bottom:137.460000px;}
.y60{bottom:137.760000px;}
.y89{bottom:138.960000px;}
.y6e{bottom:141.840000px;}
.ya7{bottom:145.080000px;}
.y4f{bottom:159.060000px;}
.y5f{bottom:159.720000px;}
.ya6{bottom:165.960000px;}
.y27{bottom:172.800000px;}
.y88{bottom:178.560000px;}
.y4e{bottom:181.020000px;}
.y5e{bottom:181.320000px;}
.ya5{bottom:186.840000px;}
.y6d{bottom:194.400000px;}
.y49{bottom:200.520000px;}
.y5d{bottom:203.280000px;}
.ya4{bottom:207.360000px;}
.y26{bottom:212.400000px;}
.y87{bottom:218.520000px;}
.y5c{bottom:224.880000px;}
.ya3{bottom:228.240000px;}
.y25{bottom:234.360000px;}
.y48{bottom:240.120000px;}
.y5b{bottom:246.840000px;}
.ya2{bottom:249.120000px;}
.y6c{bottom:255.960000px;}
.y24{bottom:256.320000px;}
.y47{bottom:262.080000px;}
.y5a{bottom:268.800000px;}
.ya1{bottom:270.000000px;}
.y23{bottom:277.920000px;}
.y86{bottom:284.040000px;}
.y59{bottom:290.400000px;}
.ya0{bottom:290.880000px;}
.y22{bottom:299.880000px;}
.y46{bottom:302.040000px;}
.y9f{bottom:311.760000px;}
.y58{bottom:312.360000px;}
.y6b{bottom:317.520000px;}
.y21{bottom:321.480000px;}
.y45{bottom:323.640000px;}
.y9e{bottom:338.760000px;}
.y44{bottom:345.600000px;}
.y6a{bottom:360.720000px;}
.y20{bottom:361.440000px;}
.y85{bottom:367.560000px;}
.y43{bottom:376.560000px;}
.y9d{bottom:381.600000px;}
.y69{bottom:382.320000px;}
.y1f{bottom:383.400000px;}
.y84{bottom:389.160000px;}
.y42{bottom:398.160000px;}
.y9c{bottom:403.560000px;}
.y68{bottom:404.280000px;}
.y1e{bottom:405.000000px;}
.y83{bottom:411.120000px;}
.y41{bottom:420.120000px;}
.y9b{bottom:425.160000px;}
.y67{bottom:426.240000px;}
.y1d{bottom:426.960000px;}
.yc6{bottom:442.440000px;}
.y9a{bottom:447.120000px;}
.y1c{bottom:448.560000px;}
.y40{bottom:450.720000px;}
.y99{bottom:468.720000px;}
.y1b{bottom:470.520000px;}
.y57{bottom:471.000000px;}
.y3f{bottom:472.680000px;}
.yc5{bottom:482.040000px;}
.y98{bottom:490.680000px;}
.y1a{bottom:492.480000px;}
.y82{bottom:494.640000px;}
.yc4{bottom:502.920000px;}
.y3e{bottom:503.640000px;}
.y97{bottom:512.640000px;}
.y19{bottom:514.080000px;}
.y81{bottom:516.240000px;}
.yc3{bottom:523.800000px;}
.y3d{bottom:525.240000px;}
.y80{bottom:538.200000px;}
.yc2{bottom:544.680000px;}
.y3c{bottom:547.200000px;}
.y96{bottom:552.240000px;}
.y18{bottom:554.040000px;}
.y7f{bottom:559.800000px;}
.yc1{bottom:565.200000px;}
.y3b{bottom:577.800000px;}
.y7e{bottom:581.760000px;}
.yc0{bottom:586.080000px;}
.y95{bottom:592.200000px;}
.y17{bottom:593.640000px;}
.y3a{bottom:599.760000px;}
.y7d{bottom:603.720000px;}
.ybf{bottom:606.960000px;}
.y94{bottom:613.800000px;}
.y16{bottom:615.600000px;}
.y39{bottom:621.720000px;}
.ybe{bottom:627.840000px;}
.y93{bottom:635.760000px;}
.y15{bottom:637.560000px;}
.y7c{bottom:643.320000px;}
.ybd{bottom:648.720000px;}
.y38{bottom:652.320000px;}
.y92{bottom:657.720000px;}
.y14{bottom:659.160000px;}
.ybc{bottom:669.600000px;}
.y37{bottom:674.280000px;}
.y91{bottom:679.320000px;}
.y13{bottom:681.120000px;}
.y7b{bottom:683.280000px;}
.ybb{bottom:690.480000px;}
.y36{bottom:695.880000px;}
.y90{bottom:701.280000px;}
.y12{bottom:703.080000px;}
.y7a{bottom:704.880000px;}
.yba{bottom:711.000000px;}
.y8f{bottom:722.880000px;}
.y35{bottom:726.840000px;}
.yb9{bottom:731.880000px;}
.y11{bottom:742.320000px;}
.y8e{bottom:744.840000px;}
.y34{bottom:748.800000px;}
.yb8{bottom:752.760000px;}
.y8d{bottom:766.800000px;}
.y10{bottom:767.520000px;}
.y79{bottom:770.400000px;}
.yb7{bottom:773.640000px;}
.yf{bottom:787.320000px;}
.y33{bottom:788.400000px;}
.y78{bottom:792.360000px;}
.yb6{bottom:794.520000px;}
.ye{bottom:807.120000px;}
.y32{bottom:810.360000px;}
.y77{bottom:814.320000px;}
.yb5{bottom:815.400000px;}
.yd{bottom:826.920000px;}
.y31{bottom:832.320000px;}
.y76{bottom:835.920000px;}
.yb4{bottom:836.280000px;}
.yc{bottom:846.720000px;}
.y30{bottom:853.920000px;}
.yb3{bottom:856.800000px;}
.y75{bottom:857.880000px;}
.yb{bottom:861.120000px;}
.y8c{bottom:871.920000px;}
.y4d{bottom:874.500000px;}
.yb2{bottom:877.680000px;}
.ya{bottom:886.320000px;}
.y2f{bottom:893.880000px;}
.y74{bottom:897.480000px;}
.yb1{bottom:898.560000px;}
.y9{bottom:906.120000px;}
.y8b{bottom:911.880000px;}
.yb0{bottom:919.440000px;}
.y8{bottom:926.280000px;}
.y2e{bottom:933.480000px;}
.y73{bottom:937.440000px;}
.yaf{bottom:940.320000px;}
.y2d{bottom:955.440000px;}
.y7{bottom:959.040000px;}
.y72{bottom:959.400000px;}
.yae{bottom:961.200000px;}
.y2c{bottom:977.400000px;}
.y6{bottom:981.000000px;}
.yad{bottom:982.080000px;}
.y71{bottom:990.000000px;}
.y2b{bottom:999.000000px;}
.yac{bottom:1002.600000px;}
.y70{bottom:1011.960000px;}
.y2a{bottom:1020.960000px;}
.y5{bottom:1021.320000px;}
.yab{bottom:1023.480000px;}
.y29{bottom:1042.560000px;}
.yaa{bottom:1044.360000px;}
.y4{bottom:1045.080000px;}
.y28{bottom:1064.520000px;}
.ya9{bottom:1065.240000px;}
.h2{height:21.000000px;}
.h5{height:26.274375px;}
.h6{height:41.993438px;}
.hc{height:44.024063px;}
.h7{height:44.893125px;}
.h9{height:45.000000px;}
.h8{height:46.025156px;}
.h1{height:47.610000px;}
.h3{height:49.992188px;}
.h4{height:55.580625px;}
.ha{height:196.500000px;}
.hb{height:328.500000px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w2{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.140000px;}
.x7{left:6.780036px;}
.x1{left:108.000000px;}
.x6{left:109.500000px;}
.x8{left:129.299904px;}
.x4{left:135.000000px;}
.x9{left:156.075084px;}
.x5{left:162.000000px;}
.x2{left:799.500000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.408576pt;}
.ls23{letter-spacing:-0.309760pt;}
.lsb{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.284928pt;}
.ls10{letter-spacing:-0.231168pt;}
.ls21{letter-spacing:-0.219648pt;}
.ls22{letter-spacing:-0.214016pt;}
.ls15{letter-spacing:-0.211968pt;}
.ls1d{letter-spacing:-0.202752pt;}
.lsd{letter-spacing:-0.198912pt;}
.ls1b{letter-spacing:-0.182528pt;}
.ls12{letter-spacing:-0.176640pt;}
.ls20{letter-spacing:-0.168960pt;}
.ls1c{letter-spacing:-0.157696pt;}
.ls25{letter-spacing:-0.152064pt;}
.ls5{letter-spacing:-0.141312pt;}
.lsf{letter-spacing:-0.139776pt;}
.ls19{letter-spacing:-0.123648pt;}
.ls27{letter-spacing:-0.118272pt;}
.ls9{letter-spacing:-0.111872pt;}
.lsc{letter-spacing:-0.107520pt;}
.ls1e{letter-spacing:-0.107008pt;}
.ls14{letter-spacing:-0.105984pt;}
.ls26{letter-spacing:-0.095744pt;}
.ls1f{letter-spacing:-0.078848pt;}
.ls16{letter-spacing:-0.076544pt;}
.ls13{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.051840pt;}
.ls8{letter-spacing:0.051968pt;}
.ls3{letter-spacing:0.053376pt;}
.ls0{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.106624pt;}
.ls1{letter-spacing:0.107520pt;}
.ls6{letter-spacing:0.107648pt;}
.ls24{letter-spacing:9.543680pt;}
.ls17{letter-spacing:35.631360pt;}
.ls1a{letter-spacing:37.543680pt;}
.ls18{letter-spacing:44.196480pt;}
.ws4{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.649344pt;}
.ws5{word-spacing:-14.614016pt;}
.ws2{word-spacing:-14.608128pt;}
.ws6{word-spacing:-14.578688pt;}
.ws9{word-spacing:-14.543360pt;}
.wsa{word-spacing:-14.508032pt;}
.wsc{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.927936pt;}
.wsb{word-spacing:-13.922304pt;}
.wsd{word-spacing:-13.877248pt;}
.wse{word-spacing:-13.865984pt;}
.ws0{word-spacing:-0.144768pt;}
.ws3{word-spacing:-0.143744pt;}
.ws1{word-spacing:-0.089088pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-0.898048pt;}
._0{width:0.900992pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.533333pt;}
.y56{bottom:5.706667pt;}
.y66{bottom:5.973333pt;}
.y4c{bottom:6.186667pt;}
.y55{bottom:25.226667pt;}
.y4b{bottom:25.386667pt;}
.y65{bottom:25.493333pt;}
.y54{bottom:44.426667pt;}
.y64{bottom:45.013333pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:51.200000pt;}
.y53{bottom:63.946667pt;}
.y63{bottom:64.213333pt;}
.y52{bottom:83.466667pt;}
.y62{bottom:83.733333pt;}
.y51{bottom:102.666667pt;}
.y61{bottom:102.933333pt;}
.y8a{bottom:104.000000pt;}
.y6f{bottom:106.560000pt;}
.y4a{bottom:109.333333pt;}
.ya8{bottom:110.400000pt;}
.y50{bottom:122.186667pt;}
.y60{bottom:122.453333pt;}
.y89{bottom:123.520000pt;}
.y6e{bottom:126.080000pt;}
.ya7{bottom:128.960000pt;}
.y4f{bottom:141.386667pt;}
.y5f{bottom:141.973333pt;}
.ya6{bottom:147.520000pt;}
.y27{bottom:153.600000pt;}
.y88{bottom:158.720000pt;}
.y4e{bottom:160.906667pt;}
.y5e{bottom:161.173333pt;}
.ya5{bottom:166.080000pt;}
.y6d{bottom:172.800000pt;}
.y49{bottom:178.240000pt;}
.y5d{bottom:180.693333pt;}
.ya4{bottom:184.320000pt;}
.y26{bottom:188.800000pt;}
.y87{bottom:194.240000pt;}
.y5c{bottom:199.893333pt;}
.ya3{bottom:202.880000pt;}
.y25{bottom:208.320000pt;}
.y48{bottom:213.440000pt;}
.y5b{bottom:219.413333pt;}
.ya2{bottom:221.440000pt;}
.y6c{bottom:227.520000pt;}
.y24{bottom:227.840000pt;}
.y47{bottom:232.960000pt;}
.y5a{bottom:238.933333pt;}
.ya1{bottom:240.000000pt;}
.y23{bottom:247.040000pt;}
.y86{bottom:252.480000pt;}
.y59{bottom:258.133333pt;}
.ya0{bottom:258.560000pt;}
.y22{bottom:266.560000pt;}
.y46{bottom:268.480000pt;}
.y9f{bottom:277.120000pt;}
.y58{bottom:277.653333pt;}
.y6b{bottom:282.240000pt;}
.y21{bottom:285.760000pt;}
.y45{bottom:287.680000pt;}
.y9e{bottom:301.120000pt;}
.y44{bottom:307.200000pt;}
.y6a{bottom:320.640000pt;}
.y20{bottom:321.280000pt;}
.y85{bottom:326.720000pt;}
.y43{bottom:334.720000pt;}
.y9d{bottom:339.200000pt;}
.y69{bottom:339.840000pt;}
.y1f{bottom:340.800000pt;}
.y84{bottom:345.920000pt;}
.y42{bottom:353.920000pt;}
.y9c{bottom:358.720000pt;}
.y68{bottom:359.360000pt;}
.y1e{bottom:360.000000pt;}
.y83{bottom:365.440000pt;}
.y41{bottom:373.440000pt;}
.y9b{bottom:377.920000pt;}
.y67{bottom:378.880000pt;}
.y1d{bottom:379.520000pt;}
.yc6{bottom:393.280000pt;}
.y9a{bottom:397.440000pt;}
.y1c{bottom:398.720000pt;}
.y40{bottom:400.640000pt;}
.y99{bottom:416.640000pt;}
.y1b{bottom:418.240000pt;}
.y57{bottom:418.666667pt;}
.y3f{bottom:420.160000pt;}
.yc5{bottom:428.480000pt;}
.y98{bottom:436.160000pt;}
.y1a{bottom:437.760000pt;}
.y82{bottom:439.680000pt;}
.yc4{bottom:447.040000pt;}
.y3e{bottom:447.680000pt;}
.y97{bottom:455.680000pt;}
.y19{bottom:456.960000pt;}
.y81{bottom:458.880000pt;}
.yc3{bottom:465.600000pt;}
.y3d{bottom:466.880000pt;}
.y80{bottom:478.400000pt;}
.yc2{bottom:484.160000pt;}
.y3c{bottom:486.400000pt;}
.y96{bottom:490.880000pt;}
.y18{bottom:492.480000pt;}
.y7f{bottom:497.600000pt;}
.yc1{bottom:502.400000pt;}
.y3b{bottom:513.600000pt;}
.y7e{bottom:517.120000pt;}
.yc0{bottom:520.960000pt;}
.y95{bottom:526.400000pt;}
.y17{bottom:527.680000pt;}
.y3a{bottom:533.120000pt;}
.y7d{bottom:536.640000pt;}
.ybf{bottom:539.520000pt;}
.y94{bottom:545.600000pt;}
.y16{bottom:547.200000pt;}
.y39{bottom:552.640000pt;}
.ybe{bottom:558.080000pt;}
.y93{bottom:565.120000pt;}
.y15{bottom:566.720000pt;}
.y7c{bottom:571.840000pt;}
.ybd{bottom:576.640000pt;}
.y38{bottom:579.840000pt;}
.y92{bottom:584.640000pt;}
.y14{bottom:585.920000pt;}
.ybc{bottom:595.200000pt;}
.y37{bottom:599.360000pt;}
.y91{bottom:603.840000pt;}
.y13{bottom:605.440000pt;}
.y7b{bottom:607.360000pt;}
.ybb{bottom:613.760000pt;}
.y36{bottom:618.560000pt;}
.y90{bottom:623.360000pt;}
.y12{bottom:624.960000pt;}
.y7a{bottom:626.560000pt;}
.yba{bottom:632.000000pt;}
.y8f{bottom:642.560000pt;}
.y35{bottom:646.080000pt;}
.yb9{bottom:650.560000pt;}
.y11{bottom:659.840000pt;}
.y8e{bottom:662.080000pt;}
.y34{bottom:665.600000pt;}
.yb8{bottom:669.120000pt;}
.y8d{bottom:681.600000pt;}
.y10{bottom:682.240000pt;}
.y79{bottom:684.800000pt;}
.yb7{bottom:687.680000pt;}
.yf{bottom:699.840000pt;}
.y33{bottom:700.800000pt;}
.y78{bottom:704.320000pt;}
.yb6{bottom:706.240000pt;}
.ye{bottom:717.440000pt;}
.y32{bottom:720.320000pt;}
.y77{bottom:723.840000pt;}
.yb5{bottom:724.800000pt;}
.yd{bottom:735.040000pt;}
.y31{bottom:739.840000pt;}
.y76{bottom:743.040000pt;}
.yb4{bottom:743.360000pt;}
.yc{bottom:752.640000pt;}
.y30{bottom:759.040000pt;}
.yb3{bottom:761.600000pt;}
.y75{bottom:762.560000pt;}
.yb{bottom:765.440000pt;}
.y8c{bottom:775.040000pt;}
.y4d{bottom:777.333333pt;}
.yb2{bottom:780.160000pt;}
.ya{bottom:787.840000pt;}
.y2f{bottom:794.560000pt;}
.y74{bottom:797.760000pt;}
.yb1{bottom:798.720000pt;}
.y9{bottom:805.440000pt;}
.y8b{bottom:810.560000pt;}
.yb0{bottom:817.280000pt;}
.y8{bottom:823.360000pt;}
.y2e{bottom:829.760000pt;}
.y73{bottom:833.280000pt;}
.yaf{bottom:835.840000pt;}
.y2d{bottom:849.280000pt;}
.y7{bottom:852.480000pt;}
.y72{bottom:852.800000pt;}
.yae{bottom:854.400000pt;}
.y2c{bottom:868.800000pt;}
.y6{bottom:872.000000pt;}
.yad{bottom:872.960000pt;}
.y71{bottom:880.000000pt;}
.y2b{bottom:888.000000pt;}
.yac{bottom:891.200000pt;}
.y70{bottom:899.520000pt;}
.y2a{bottom:907.520000pt;}
.y5{bottom:907.840000pt;}
.yab{bottom:909.760000pt;}
.y29{bottom:926.720000pt;}
.yaa{bottom:928.320000pt;}
.y4{bottom:928.960000pt;}
.y28{bottom:946.240000pt;}
.ya9{bottom:946.880000pt;}
.h2{height:18.666667pt;}
.h5{height:23.355000pt;}
.h6{height:37.327500pt;}
.hc{height:39.132500pt;}
.h7{height:39.905000pt;}
.h9{height:40.000000pt;}
.h8{height:40.911250pt;}
.h1{height:42.320000pt;}
.h3{height:44.437500pt;}
.h4{height:49.405000pt;}
.ha{height:174.666667pt;}
.hb{height:292.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w2{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.013333pt;}
.x7{left:6.026699pt;}
.x1{left:96.000000pt;}
.x6{left:97.333333pt;}
.x8{left:114.933248pt;}
.x4{left:120.000000pt;}
.x9{left:138.733408pt;}
.x5{left:144.000000pt;}
.x2{left:710.666667pt;}
}




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