
    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_9686d3cb98fb2bc623c6f71b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_b2734d356ff4356488e12c53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_120f8c3f9f6d9b45a30f3e32.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_db4086023d8a0eaa200ba334.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.757812;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_f1b1d59572cc919750b5a126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_334894e6c6c2a340962e4b8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935059;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_9b138ce1e7d4bfff71727e7d.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_7dc5e55b414245233ba93a45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_a5b7d0b03e55f0611f293002.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b41e1717a864853a7543be4a.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_0bea826e50d1aa2e85165773.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fb6b4adb669340e316e12595.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ad4cc9cfb1bafdbc28dea9db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.754883;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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.417312px;}
.ls20{letter-spacing:-0.338688px;}
.ls7{letter-spacing:-0.320544px;}
.ls25{letter-spacing:-0.302400px;}
.ls26{letter-spacing:-0.260064px;}
.ls21{letter-spacing:-0.241920px;}
.ls23{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.198720px;}
.ls24{letter-spacing:-0.175392px;}
.lsc{letter-spacing:-0.158976px;}
.ls1e{letter-spacing:-0.157248px;}
.ls22{letter-spacing:-0.145152px;}
.ls8{letter-spacing:-0.120960px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.ls6{letter-spacing:0.073872px;}
.ls5{letter-spacing:0.097200px;}
.lsb{letter-spacing:0.123552px;}
.ls12{letter-spacing:0.125280px;}
.ls11{letter-spacing:0.125424px;}
.ls13{letter-spacing:0.159840px;}
.lse{letter-spacing:0.160128px;}
.ls3{letter-spacing:0.160272px;}
.ls17{letter-spacing:0.200160px;}
.ls15{letter-spacing:0.223344px;}
.ls14{letter-spacing:0.261360px;}
.lsf{letter-spacing:0.275616px;}
.ls19{letter-spacing:0.294624px;}
.lsd{letter-spacing:0.318384px;}
.ls16{letter-spacing:0.342720px;}
.lsa{letter-spacing:0.356400px;}
.ls1c{letter-spacing:0.365904px;}
.ls9{letter-spacing:0.389664px;}
.ls1a{letter-spacing:0.399168px;}
.ls1b{letter-spacing:0.470448px;}
.ls2{letter-spacing:1.814400px;}
.ls27{letter-spacing:100.919088px;}
.ls18{letter-spacing:130.919184px;}
.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;}
}
.wsa{word-spacing:-18.255744px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.wsf{word-spacing:-14.896224px;}
.wse{word-spacing:-14.878080px;}
.ws7{word-spacing:-14.353920px;}
.ws8{word-spacing:-13.576464px;}
.ws6{word-spacing:-13.566960px;}
.ws4{word-spacing:-13.486176px;}
.ws2{word-spacing:-13.471920px;}
.ws5{word-spacing:-13.433904px;}
.ws3{word-spacing:-13.210560px;}
.ws9{word-spacing:-0.365904px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._3{width:2.733120px;}
._8{width:4.178880px;}
._7{width:5.868000px;}
._b{width:6.998400px;}
._a{width:8.280000px;}
._12{width:9.331200px;}
._5{width:10.526400px;}
._6{width:11.664000px;}
._10{width:13.464000px;}
._f{width:14.630400px;}
._4{width:16.070400px;}
._16{width:17.145216px;}
._c{width:19.022400px;}
._17{width:20.839104px;}
._11{width:23.040000px;}
._d{width:28.856880px;}
._e{width:29.949408px;}
._2{width:31.455648px;}
._9{width:33.501600px;}
._13{width:34.855200px;}
._15{width:44.349120px;}
._18{width:47.917440px;}
._14{width:846.000144px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:2.700000px;}
.y58{bottom:3.360000px;}
.y5e{bottom:3.420000px;}
.y52{bottom:4.080000px;}
.y57{bottom:17.760000px;}
.y5d{bottom:18.180000px;}
.y60{bottom:28.800000px;}
.y56{bottom:32.160000px;}
.y5c{bottom:32.940000px;}
.y55{bottom:46.560000px;}
.y5b{bottom:46.980000px;}
.y54{bottom:60.960000px;}
.y5a{bottom:61.740000px;}
.y29{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y4d{bottom:131.040000px;}
.y28{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y27{bottom:151.920000px;}
.y7e{bottom:154.080000px;}
.y7d{bottom:171.360000px;}
.y24{bottom:179.280000px;}
.y7c{bottom:188.640000px;}
.y23{bottom:200.160000px;}
.y7b{bottom:205.920000px;}
.y22{bottom:220.680000px;}
.y7a{bottom:222.840000px;}
.y79{bottom:240.120000px;}
.y21{bottom:241.560000px;}
.y78{bottom:257.400000px;}
.y20{bottom:262.080000px;}
.y4c{bottom:268.920000px;}
.y77{bottom:274.680000px;}
.y1f{bottom:282.960000px;}
.y4b{bottom:289.800000px;}
.y76{bottom:291.960000px;}
.y1e{bottom:303.480000px;}
.y75{bottom:309.240000px;}
.y4a{bottom:310.320000px;}
.y1d{bottom:324.360000px;}
.y74{bottom:326.520000px;}
.y49{bottom:331.200000px;}
.y73{bottom:343.800000px;}
.y1c{bottom:348.840000px;}
.y48{bottom:351.720000px;}
.y72{bottom:361.080000px;}
.y47{bottom:372.600000px;}
.y71{bottom:378.360000px;}
.y1b{bottom:384.840000px;}
.y46{bottom:393.120000px;}
.y70{bottom:395.640000px;}
.y1a{bottom:396.720000px;}
.y6f{bottom:412.560000px;}
.y45{bottom:414.000000px;}
.y6e{bottom:429.840000px;}
.y44{bottom:434.520000px;}
.y6d{bottom:447.120000px;}
.y43{bottom:455.400000px;}
.y6c{bottom:464.400000px;}
.y42{bottom:475.920000px;}
.y6b{bottom:481.680000px;}
.y41{bottom:496.800000px;}
.y6a{bottom:503.640000px;}
.y40{bottom:517.320000px;}
.y3f{bottom:538.200000px;}
.y3e{bottom:558.720000px;}
.y69{bottom:559.080000px;}
.y3d{bottom:579.600000px;}
.y3c{bottom:600.120000px;}
.y68{bottom:600.480000px;}
.y3b{bottom:621.000000px;}
.y3a{bottom:641.520000px;}
.y67{bottom:645.840000px;}
.y39{bottom:662.400000px;}
.y19{bottom:679.680000px;}
.y38{bottom:682.920000px;}
.y66{bottom:683.280000px;}
.y18{bottom:700.560000px;}
.y37{bottom:703.800000px;}
.y65{bottom:707.760000px;}
.y17{bottom:721.080000px;}
.y36{bottom:724.320000px;}
.y16{bottom:741.960000px;}
.y35{bottom:745.200000px;}
.y64{bottom:745.560000px;}
.y15{bottom:762.480000px;}
.y34{bottom:765.720000px;}
.y63{bottom:766.080000px;}
.y14{bottom:783.360000px;}
.y33{bottom:786.600000px;}
.y62{bottom:786.960000px;}
.y13{bottom:803.880000px;}
.y32{bottom:805.680000px;}
.y61{bottom:807.480000px;}
.y31{bottom:820.080000px;}
.y12{bottom:824.760000px;}
.y30{bottom:831.960000px;}
.y11{bottom:845.280000px;}
.y5f{bottom:864.000000px;}
.y10{bottom:866.160000px;}
.yf{bottom:886.680000px;}
.ye{bottom:907.560000px;}
.y59{bottom:913.500000px;}
.yd{bottom:928.080000px;}
.yc{bottom:948.960000px;}
.y88{bottom:956.880000px;}
.yb{bottom:969.480000px;}
.y87{bottom:974.160000px;}
.y53{bottom:987.000000px;}
.ya{bottom:990.360000px;}
.y86{bottom:991.440000px;}
.y2f{bottom:1005.840000px;}
.y85{bottom:1008.720000px;}
.y9{bottom:1014.840000px;}
.y84{bottom:1025.640000px;}
.y2e{bottom:1026.720000px;}
.y83{bottom:1042.920000px;}
.y2d{bottom:1047.240000px;}
.y8{bottom:1050.840000px;}
.y51{bottom:1059.000000px;}
.y82{bottom:1060.200000px;}
.y7{bottom:1064.520000px;}
.y2c{bottom:1068.120000px;}
.y4f{bottom:1075.500000px;}
.y81{bottom:1077.480000px;}
.y6{bottom:1080.000000px;}
.y2b{bottom:1088.640000px;}
.y4e{bottom:1093.320000px;}
.y80{bottom:1094.760000px;}
.y2a{bottom:1109.520000px;}
.y7f{bottom:1112.040000px;}
.y5{bottom:1116.720000px;}
.y26{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y25{bottom:1143.360000px;}
.hc{height:15.000000px;}
.hd{height:16.500000px;}
.h3{height:28.704375px;}
.h7{height:32.994844px;}
.hb{height:35.013516px;}
.h6{height:35.175938px;}
.hf{height:36.692578px;}
.ha{height:40.310156px;}
.h11{height:42.022969px;}
.h5{height:44.562656px;}
.h8{height:48.224531px;}
.h9{height:49.992188px;}
.h2{height:50.027344px;}
.h10{height:51.000000px;}
.h4{height:52.136719px;}
.he{height:73.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:232.500000px;}
.w3{width:259.500000px;}
.w4{width:490.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:8.879892px;}
.x1{left:80.640000px;}
.x2{left:101.939940px;}
.x9{left:201.000000px;}
.x4{left:295.909776px;}
.x8{left:354.116844px;}
.xb{left:432.000000px;}
.x7{left:446.114880px;}
.x3{left:655.274880px;}
.x6{left:658.514880px;}
.x5{left:811.590120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.370944pt;}
.ls20{letter-spacing:-0.301056pt;}
.ls7{letter-spacing:-0.284928pt;}
.ls25{letter-spacing:-0.268800pt;}
.ls26{letter-spacing:-0.231168pt;}
.ls21{letter-spacing:-0.215040pt;}
.ls23{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.176640pt;}
.ls24{letter-spacing:-0.155904pt;}
.lsc{letter-spacing:-0.141312pt;}
.ls1e{letter-spacing:-0.139776pt;}
.ls22{letter-spacing:-0.129024pt;}
.ls8{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.ls6{letter-spacing:0.065664pt;}
.ls5{letter-spacing:0.086400pt;}
.lsb{letter-spacing:0.109824pt;}
.ls12{letter-spacing:0.111360pt;}
.ls11{letter-spacing:0.111488pt;}
.ls13{letter-spacing:0.142080pt;}
.lse{letter-spacing:0.142336pt;}
.ls3{letter-spacing:0.142464pt;}
.ls17{letter-spacing:0.177920pt;}
.ls15{letter-spacing:0.198528pt;}
.ls14{letter-spacing:0.232320pt;}
.lsf{letter-spacing:0.244992pt;}
.ls19{letter-spacing:0.261888pt;}
.lsd{letter-spacing:0.283008pt;}
.ls16{letter-spacing:0.304640pt;}
.lsa{letter-spacing:0.316800pt;}
.ls1c{letter-spacing:0.325248pt;}
.ls9{letter-spacing:0.346368pt;}
.ls1a{letter-spacing:0.354816pt;}
.ls1b{letter-spacing:0.418176pt;}
.ls2{letter-spacing:1.612800pt;}
.ls27{letter-spacing:89.705856pt;}
.ls18{letter-spacing:116.372608pt;}
.wsa{word-spacing:-16.227328pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.wsf{word-spacing:-13.241088pt;}
.wse{word-spacing:-13.224960pt;}
.ws7{word-spacing:-12.759040pt;}
.ws8{word-spacing:-12.067968pt;}
.ws6{word-spacing:-12.059520pt;}
.ws4{word-spacing:-11.987712pt;}
.ws2{word-spacing:-11.975040pt;}
.ws5{word-spacing:-11.941248pt;}
.ws3{word-spacing:-11.742720pt;}
.ws9{word-spacing:-0.325248pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._3{width:2.429440pt;}
._8{width:3.714560pt;}
._7{width:5.216000pt;}
._b{width:6.220800pt;}
._a{width:7.360000pt;}
._12{width:8.294400pt;}
._5{width:9.356800pt;}
._6{width:10.368000pt;}
._10{width:11.968000pt;}
._f{width:13.004800pt;}
._4{width:14.284800pt;}
._16{width:15.240192pt;}
._c{width:16.908800pt;}
._17{width:18.523648pt;}
._11{width:20.480000pt;}
._d{width:25.650560pt;}
._e{width:26.621696pt;}
._2{width:27.960576pt;}
._9{width:29.779200pt;}
._13{width:30.982400pt;}
._15{width:39.421440pt;}
._18{width:42.593280pt;}
._14{width:752.000128pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.400000pt;}
.y58{bottom:2.986667pt;}
.y5e{bottom:3.040000pt;}
.y52{bottom:3.626667pt;}
.y57{bottom:15.786667pt;}
.y5d{bottom:16.160000pt;}
.y60{bottom:25.600000pt;}
.y56{bottom:28.586667pt;}
.y5c{bottom:29.280000pt;}
.y55{bottom:41.386667pt;}
.y5b{bottom:41.760000pt;}
.y54{bottom:54.186667pt;}
.y5a{bottom:54.880000pt;}
.y29{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y4d{bottom:116.480000pt;}
.y28{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y27{bottom:135.040000pt;}
.y7e{bottom:136.960000pt;}
.y7d{bottom:152.320000pt;}
.y24{bottom:159.360000pt;}
.y7c{bottom:167.680000pt;}
.y23{bottom:177.920000pt;}
.y7b{bottom:183.040000pt;}
.y22{bottom:196.160000pt;}
.y7a{bottom:198.080000pt;}
.y79{bottom:213.440000pt;}
.y21{bottom:214.720000pt;}
.y78{bottom:228.800000pt;}
.y20{bottom:232.960000pt;}
.y4c{bottom:239.040000pt;}
.y77{bottom:244.160000pt;}
.y1f{bottom:251.520000pt;}
.y4b{bottom:257.600000pt;}
.y76{bottom:259.520000pt;}
.y1e{bottom:269.760000pt;}
.y75{bottom:274.880000pt;}
.y4a{bottom:275.840000pt;}
.y1d{bottom:288.320000pt;}
.y74{bottom:290.240000pt;}
.y49{bottom:294.400000pt;}
.y73{bottom:305.600000pt;}
.y1c{bottom:310.080000pt;}
.y48{bottom:312.640000pt;}
.y72{bottom:320.960000pt;}
.y47{bottom:331.200000pt;}
.y71{bottom:336.320000pt;}
.y1b{bottom:342.080000pt;}
.y46{bottom:349.440000pt;}
.y70{bottom:351.680000pt;}
.y1a{bottom:352.640000pt;}
.y6f{bottom:366.720000pt;}
.y45{bottom:368.000000pt;}
.y6e{bottom:382.080000pt;}
.y44{bottom:386.240000pt;}
.y6d{bottom:397.440000pt;}
.y43{bottom:404.800000pt;}
.y6c{bottom:412.800000pt;}
.y42{bottom:423.040000pt;}
.y6b{bottom:428.160000pt;}
.y41{bottom:441.600000pt;}
.y6a{bottom:447.680000pt;}
.y40{bottom:459.840000pt;}
.y3f{bottom:478.400000pt;}
.y3e{bottom:496.640000pt;}
.y69{bottom:496.960000pt;}
.y3d{bottom:515.200000pt;}
.y3c{bottom:533.440000pt;}
.y68{bottom:533.760000pt;}
.y3b{bottom:552.000000pt;}
.y3a{bottom:570.240000pt;}
.y67{bottom:574.080000pt;}
.y39{bottom:588.800000pt;}
.y19{bottom:604.160000pt;}
.y38{bottom:607.040000pt;}
.y66{bottom:607.360000pt;}
.y18{bottom:622.720000pt;}
.y37{bottom:625.600000pt;}
.y65{bottom:629.120000pt;}
.y17{bottom:640.960000pt;}
.y36{bottom:643.840000pt;}
.y16{bottom:659.520000pt;}
.y35{bottom:662.400000pt;}
.y64{bottom:662.720000pt;}
.y15{bottom:677.760000pt;}
.y34{bottom:680.640000pt;}
.y63{bottom:680.960000pt;}
.y14{bottom:696.320000pt;}
.y33{bottom:699.200000pt;}
.y62{bottom:699.520000pt;}
.y13{bottom:714.560000pt;}
.y32{bottom:716.160000pt;}
.y61{bottom:717.760000pt;}
.y31{bottom:728.960000pt;}
.y12{bottom:733.120000pt;}
.y30{bottom:739.520000pt;}
.y11{bottom:751.360000pt;}
.y5f{bottom:768.000000pt;}
.y10{bottom:769.920000pt;}
.yf{bottom:788.160000pt;}
.ye{bottom:806.720000pt;}
.y59{bottom:812.000000pt;}
.yd{bottom:824.960000pt;}
.yc{bottom:843.520000pt;}
.y88{bottom:850.560000pt;}
.yb{bottom:861.760000pt;}
.y87{bottom:865.920000pt;}
.y53{bottom:877.333333pt;}
.ya{bottom:880.320000pt;}
.y86{bottom:881.280000pt;}
.y2f{bottom:894.080000pt;}
.y85{bottom:896.640000pt;}
.y9{bottom:902.080000pt;}
.y84{bottom:911.680000pt;}
.y2e{bottom:912.640000pt;}
.y83{bottom:927.040000pt;}
.y2d{bottom:930.880000pt;}
.y8{bottom:934.080000pt;}
.y51{bottom:941.333333pt;}
.y82{bottom:942.400000pt;}
.y7{bottom:946.240000pt;}
.y2c{bottom:949.440000pt;}
.y4f{bottom:956.000000pt;}
.y81{bottom:957.760000pt;}
.y6{bottom:960.000000pt;}
.y2b{bottom:967.680000pt;}
.y4e{bottom:971.840000pt;}
.y80{bottom:973.120000pt;}
.y2a{bottom:986.240000pt;}
.y7f{bottom:988.480000pt;}
.y5{bottom:992.640000pt;}
.y26{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y25{bottom:1016.320000pt;}
.hc{height:13.333333pt;}
.hd{height:14.666667pt;}
.h3{height:25.515000pt;}
.h7{height:29.328750pt;}
.hb{height:31.123125pt;}
.h6{height:31.267500pt;}
.hf{height:32.615625pt;}
.ha{height:35.831250pt;}
.h11{height:37.353750pt;}
.h5{height:39.611250pt;}
.h8{height:42.866250pt;}
.h9{height:44.437500pt;}
.h2{height:44.468750pt;}
.h10{height:45.333333pt;}
.h4{height:46.343750pt;}
.he{height:65.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:206.666667pt;}
.w3{width:230.666667pt;}
.w4{width:436.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:7.893237pt;}
.x1{left:71.680000pt;}
.x2{left:90.613280pt;}
.x9{left:178.666667pt;}
.x4{left:263.030912pt;}
.x8{left:314.770528pt;}
.xb{left:384.000000pt;}
.x7{left:396.546560pt;}
.x3{left:582.466560pt;}
.x6{left:585.346560pt;}
.x5{left:721.413440pt;}
}




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