
    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_7ab8e5a089870bc1c4364900.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_1677d617a37c6c9e358edb9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2823337356a8900785944229.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9af12ef5e385462df7b3bac3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_de4265eb81f1942522b9ea94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls22{letter-spacing:-4.680000px;}
.ls18{letter-spacing:-1.332000px;}
.ls15{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.208200px;}
.ls1e{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.033840px;}
.lsc{letter-spacing:0.037440px;}
.ls20{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.306600px;}
.lse{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls4{letter-spacing:1.745280px;}
.ls5{letter-spacing:1.822080px;}
.ls3{letter-spacing:2.050560px;}
.ls1f{letter-spacing:11.466720px;}
.ls1a{letter-spacing:38.106720px;}
.ls1d{letter-spacing:41.850720px;}
.ls14{letter-spacing:48.186720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.wse{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.260000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-2598.654000px;}
._8{margin-left:-1590.192000px;}
._5{margin-left:-1366.159680px;}
._7{margin-left:-989.210880px;}
._9{margin-left:-575.933760px;}
._6{margin-left:-8.213760px;}
._c{margin-left:-6.990480px;}
._a{margin-left:-5.333280px;}
._b{margin-left:-3.643200px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._f{width:3.751440px;}
._11{width:4.913280px;}
._e{width:6.444000px;}
._d{width:8.031120px;}
._17{width:9.051360px;}
._10{width:10.596240px;}
._15{width:11.659680px;}
._13{width:12.687840px;}
._12{width:13.873680px;}
._14{width:16.411680px;}
._16{width:17.569440px;}
._18{width:20.120640px;}
._1b{width:21.544320px;}
._1a{width:22.809600px;}
._20{width:24.686640px;}
._21{width:28.967760px;}
._1e{width:30.078000px;}
._1f{width:31.140480px;}
._19{width:32.348880px;}
._22{width:45.440880px;}
._1c{width:48.028320px;}
._1d{width:49.201200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:5.760000px;}
.ya1{bottom:5.790000px;}
.y6{bottom:60.336000px;}
.y35{bottom:85.896000px;}
.yd9{bottom:86.616000px;}
.y9d{bottom:91.116000px;}
.y96{bottom:95.616000px;}
.y80{bottom:97.416000px;}
.y9c{bottom:104.436000px;}
.y34{bottom:105.696000px;}
.yd8{bottom:106.416000px;}
.y5b{bottom:114.336000px;}
.y95{bottom:115.416000px;}
.y7f{bottom:117.216000px;}
.y33{bottom:125.496000px;}
.y9b{bottom:126.216000px;}
.y5a{bottom:134.136000px;}
.y94{bottom:135.216000px;}
.y7e{bottom:137.016000px;}
.yd2{bottom:141.516000px;}
.y32{bottom:145.296000px;}
.y9a{bottom:146.016000px;}
.y59{bottom:154.110000px;}
.y93{bottom:155.010000px;}
.y7d{bottom:156.990000px;}
.yd1{bottom:161.490000px;}
.y31{bottom:165.090000px;}
.y99{bottom:165.990000px;}
.y58{bottom:170.670000px;}
.y92{bottom:174.990000px;}
.y7c{bottom:176.790000px;}
.yd0{bottom:181.290000px;}
.y30{bottom:185.070000px;}
.y98{bottom:185.790000px;}
.y91{bottom:194.790000px;}
.ycf{bottom:201.090000px;}
.y2f{bottom:204.870000px;}
.y7b{bottom:205.590000px;}
.y90{bottom:214.590000px;}
.yce{bottom:220.890000px;}
.y2e{bottom:224.670000px;}
.y7a{bottom:225.390000px;}
.y8f{bottom:234.390000px;}
.ycd{bottom:240.690000px;}
.y2d{bottom:244.470000px;}
.y79{bottom:245.190000px;}
.y8e{bottom:254.190000px;}
.ycc{bottom:260.670000px;}
.y2c{bottom:264.270000px;}
.y78{bottom:265.170000px;}
.y8d{bottom:274.215000px;}
.ycb{bottom:280.515000px;}
.y2b{bottom:284.295000px;}
.y77{bottom:285.015000px;}
.y8c{bottom:294.015000px;}
.yca{bottom:300.315000px;}
.y2a{bottom:304.095000px;}
.y76{bottom:304.815000px;}
.y8b{bottom:313.815000px;}
.yc9{bottom:320.115000px;}
.y29{bottom:323.895000px;}
.y75{bottom:324.615000px;}
.y8a{bottom:333.615000px;}
.yc8{bottom:339.915000px;}
.y28{bottom:343.695000px;}
.y74{bottom:344.415000px;}
.y89{bottom:353.415000px;}
.y27{bottom:363.495000px;}
.y73{bottom:364.395000px;}
.yc7{bottom:368.895000px;}
.y88{bottom:373.395000px;}
.y26{bottom:383.475000px;}
.y72{bottom:384.195000px;}
.yc6{bottom:388.695000px;}
.y87{bottom:393.195000px;}
.y25{bottom:403.275000px;}
.y71{bottom:403.995000px;}
.yc5{bottom:408.495000px;}
.y86{bottom:412.995000px;}
.y24{bottom:423.075000px;}
.y70{bottom:423.795000px;}
.yc4{bottom:428.295000px;}
.y85{bottom:432.795000px;}
.y23{bottom:442.875000px;}
.y6f{bottom:443.595000px;}
.yc3{bottom:448.095000px;}
.y84{bottom:452.595000px;}
.y22{bottom:462.675000px;}
.y6e{bottom:463.575000px;}
.yc2{bottom:468.075000px;}
.y83{bottom:472.575000px;}
.y21{bottom:482.655000px;}
.y6d{bottom:483.375000px;}
.yc1{bottom:487.875000px;}
.y82{bottom:492.375000px;}
.y20{bottom:502.455000px;}
.y6c{bottom:503.175000px;}
.yc0{bottom:507.675000px;}
.y81{bottom:512.175000px;}
.y1f{bottom:522.255000px;}
.y6b{bottom:522.975000px;}
.ybf{bottom:527.475000px;}
.y57{bottom:531.975000px;}
.y1e{bottom:542.055000px;}
.y6a{bottom:542.775000px;}
.ybe{bottom:547.275000px;}
.y56{bottom:551.775000px;}
.y1d{bottom:561.885000px;}
.y69{bottom:562.785000px;}
.ybd{bottom:567.285000px;}
.y55{bottom:571.785000px;}
.y1c{bottom:581.865000px;}
.y68{bottom:582.585000px;}
.ybc{bottom:587.085000px;}
.y54{bottom:591.585000px;}
.y1b{bottom:601.665000px;}
.y67{bottom:602.385000px;}
.ybb{bottom:606.885000px;}
.y53{bottom:611.385000px;}
.y1a{bottom:621.465000px;}
.y66{bottom:622.185000px;}
.yba{bottom:626.685000px;}
.y52{bottom:631.185000px;}
.y19{bottom:641.265000px;}
.y65{bottom:641.985000px;}
.yb9{bottom:646.485000px;}
.y51{bottom:650.985000px;}
.y64{bottom:661.965000px;}
.y18{bottom:663.405000px;}
.yb8{bottom:666.465000px;}
.y50{bottom:670.965000px;}
.y63{bottom:681.765000px;}
.yb7{bottom:686.265000px;}
.y4f{bottom:690.765000px;}
.y17{bottom:692.205000px;}
.y62{bottom:701.565000px;}
.yb6{bottom:706.065000px;}
.y4e{bottom:710.565000px;}
.y16{bottom:712.005000px;}
.y61{bottom:721.365000px;}
.yb5{bottom:725.865000px;}
.y4d{bottom:730.365000px;}
.y15{bottom:731.985000px;}
.y60{bottom:741.165000px;}
.yb4{bottom:745.665000px;}
.y4c{bottom:750.165000px;}
.y14{bottom:751.785000px;}
.y5f{bottom:761.145000px;}
.yb3{bottom:765.645000px;}
.y4b{bottom:770.145000px;}
.y13{bottom:771.585000px;}
.y5e{bottom:780.945000px;}
.yb2{bottom:785.445000px;}
.y4a{bottom:789.945000px;}
.y12{bottom:791.385000px;}
.y5d{bottom:800.745000px;}
.yb1{bottom:805.245000px;}
.y49{bottom:809.745000px;}
.y11{bottom:811.185000px;}
.y5c{bottom:820.545000px;}
.yb0{bottom:825.045000px;}
.y48{bottom:829.545000px;}
.y10{bottom:831.165000px;}
.yd7{bottom:840.390000px;}
.yaf{bottom:844.890000px;}
.y47{bottom:849.390000px;}
.yf{bottom:851.010000px;}
.yd6{bottom:860.370000px;}
.yae{bottom:864.870000px;}
.y46{bottom:869.370000px;}
.ye{bottom:870.810000px;}
.yd5{bottom:880.170000px;}
.yad{bottom:884.670000px;}
.y45{bottom:889.170000px;}
.yd{bottom:892.950000px;}
.yd4{bottom:899.970000px;}
.yac{bottom:904.470000px;}
.y44{bottom:908.970000px;}
.yc{bottom:917.970000px;}
.yd3{bottom:919.770000px;}
.yab{bottom:924.270000px;}
.y43{bottom:928.770000px;}
.yb{bottom:937.770000px;}
.yaa{bottom:944.070000px;}
.y42{bottom:948.570000px;}
.ya{bottom:952.890000px;}
.ya9{bottom:964.050000px;}
.y41{bottom:968.550000px;}
.y97{bottom:973.770000px;}
.y9{bottom:974.130000px;}
.ya8{bottom:983.850000px;}
.y40{bottom:988.350000px;}
.y8{bottom:997.710000px;}
.ya7{bottom:1003.650000px;}
.y3f{bottom:1008.150000px;}
.ya6{bottom:1023.450000px;}
.y3e{bottom:1027.950000px;}
.y7{bottom:1029.390000px;}
.ya5{bottom:1043.250000px;}
.y3d{bottom:1047.750000px;}
.ya4{bottom:1058.190000px;}
.y5{bottom:1066.470000px;}
.y3c{bottom:1067.730000px;}
.ya3{bottom:1078.710000px;}
.y3b{bottom:1087.530000px;}
.y4{bottom:1095.990000px;}
.ya2{bottom:1099.230000px;}
.y3a{bottom:1107.330000px;}
.ya0{bottom:1119.930000px;}
.y3{bottom:1125.360000px;}
.y39{bottom:1127.160000px;}
.y9e{bottom:1140.480000px;}
.y38{bottom:1146.960000px;}
.y2{bottom:1154.880000px;}
.y37{bottom:1166.940000px;}
.y1{bottom:1184.400000px;}
.y36{bottom:1193.400000px;}
.hb{height:19.800000px;}
.hc{height:19.836000px;}
.h7{height:34.114922px;}
.h5{height:42.164648px;}
.h9{height:44.265586px;}
.h2{height:46.736719px;}
.h8{height:52.435898px;}
.h6{height:53.224453px;}
.h3{height:58.121719px;}
.ha{height:65.884219px;}
.h4{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:151.230000px;}
.w4{width:385.095000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x6{left:32.759987px;}
.x1{left:54.179987px;}
.xa{left:58.859987px;}
.x5{left:75.239987px;}
.xe{left:80.999987px;}
.xf{left:108.035987px;}
.xb{left:178.050000px;}
.x3{left:242.849987px;}
.x9{left:270.029987px;}
.x4{left:331.094987px;}
.xd{left:563.865000px;}
.x7{left:575.204973px;}
.x8{left:580.064987px;}
.x2{left:749.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls22{letter-spacing:-4.160000pt;}
.ls18{letter-spacing:-1.184000pt;}
.ls15{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.185067pt;}
.ls1e{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.030080pt;}
.lsc{letter-spacing:0.033280pt;}
.ls20{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.272533pt;}
.lse{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.551360pt;}
.ls5{letter-spacing:1.619627pt;}
.ls3{letter-spacing:1.822720pt;}
.ls1f{letter-spacing:10.192640pt;}
.ls1a{letter-spacing:33.872640pt;}
.ls1d{letter-spacing:37.200640pt;}
.ls14{letter-spacing:42.832640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws10{word-spacing:-9.120000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-2309.914667pt;}
._8{margin-left:-1413.504000pt;}
._5{margin-left:-1214.364160pt;}
._7{margin-left:-879.298560pt;}
._9{margin-left:-511.941120pt;}
._6{margin-left:-7.301120pt;}
._c{margin-left:-6.213760pt;}
._a{margin-left:-4.740693pt;}
._b{margin-left:-3.238400pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._f{width:3.334613pt;}
._11{width:4.367360pt;}
._e{width:5.728000pt;}
._d{width:7.138773pt;}
._17{width:8.045653pt;}
._10{width:9.418880pt;}
._15{width:10.364160pt;}
._13{width:11.278080pt;}
._12{width:12.332160pt;}
._14{width:14.588160pt;}
._16{width:15.617280pt;}
._18{width:17.885013pt;}
._1b{width:19.150507pt;}
._1a{width:20.275200pt;}
._20{width:21.943680pt;}
._21{width:25.749120pt;}
._1e{width:26.736000pt;}
._1f{width:27.680427pt;}
._19{width:28.754560pt;}
._22{width:40.391893pt;}
._1c{width:42.691840pt;}
._1d{width:43.734400pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:5.120000pt;}
.ya1{bottom:5.146667pt;}
.y6{bottom:53.632000pt;}
.y35{bottom:76.352000pt;}
.yd9{bottom:76.992000pt;}
.y9d{bottom:80.992000pt;}
.y96{bottom:84.992000pt;}
.y80{bottom:86.592000pt;}
.y9c{bottom:92.832000pt;}
.y34{bottom:93.952000pt;}
.yd8{bottom:94.592000pt;}
.y5b{bottom:101.632000pt;}
.y95{bottom:102.592000pt;}
.y7f{bottom:104.192000pt;}
.y33{bottom:111.552000pt;}
.y9b{bottom:112.192000pt;}
.y5a{bottom:119.232000pt;}
.y94{bottom:120.192000pt;}
.y7e{bottom:121.792000pt;}
.yd2{bottom:125.792000pt;}
.y32{bottom:129.152000pt;}
.y9a{bottom:129.792000pt;}
.y59{bottom:136.986667pt;}
.y93{bottom:137.786667pt;}
.y7d{bottom:139.546667pt;}
.yd1{bottom:143.546667pt;}
.y31{bottom:146.746667pt;}
.y99{bottom:147.546667pt;}
.y58{bottom:151.706667pt;}
.y92{bottom:155.546667pt;}
.y7c{bottom:157.146667pt;}
.yd0{bottom:161.146667pt;}
.y30{bottom:164.506667pt;}
.y98{bottom:165.146667pt;}
.y91{bottom:173.146667pt;}
.ycf{bottom:178.746667pt;}
.y2f{bottom:182.106667pt;}
.y7b{bottom:182.746667pt;}
.y90{bottom:190.746667pt;}
.yce{bottom:196.346667pt;}
.y2e{bottom:199.706667pt;}
.y7a{bottom:200.346667pt;}
.y8f{bottom:208.346667pt;}
.ycd{bottom:213.946667pt;}
.y2d{bottom:217.306667pt;}
.y79{bottom:217.946667pt;}
.y8e{bottom:225.946667pt;}
.ycc{bottom:231.706667pt;}
.y2c{bottom:234.906667pt;}
.y78{bottom:235.706667pt;}
.y8d{bottom:243.746667pt;}
.ycb{bottom:249.346667pt;}
.y2b{bottom:252.706667pt;}
.y77{bottom:253.346667pt;}
.y8c{bottom:261.346667pt;}
.yca{bottom:266.946667pt;}
.y2a{bottom:270.306667pt;}
.y76{bottom:270.946667pt;}
.y8b{bottom:278.946667pt;}
.yc9{bottom:284.546667pt;}
.y29{bottom:287.906667pt;}
.y75{bottom:288.546667pt;}
.y8a{bottom:296.546667pt;}
.yc8{bottom:302.146667pt;}
.y28{bottom:305.506667pt;}
.y74{bottom:306.146667pt;}
.y89{bottom:314.146667pt;}
.y27{bottom:323.106667pt;}
.y73{bottom:323.906667pt;}
.yc7{bottom:327.906667pt;}
.y88{bottom:331.906667pt;}
.y26{bottom:340.866667pt;}
.y72{bottom:341.506667pt;}
.yc6{bottom:345.506667pt;}
.y87{bottom:349.506667pt;}
.y25{bottom:358.466667pt;}
.y71{bottom:359.106667pt;}
.yc5{bottom:363.106667pt;}
.y86{bottom:367.106667pt;}
.y24{bottom:376.066667pt;}
.y70{bottom:376.706667pt;}
.yc4{bottom:380.706667pt;}
.y85{bottom:384.706667pt;}
.y23{bottom:393.666667pt;}
.y6f{bottom:394.306667pt;}
.yc3{bottom:398.306667pt;}
.y84{bottom:402.306667pt;}
.y22{bottom:411.266667pt;}
.y6e{bottom:412.066667pt;}
.yc2{bottom:416.066667pt;}
.y83{bottom:420.066667pt;}
.y21{bottom:429.026667pt;}
.y6d{bottom:429.666667pt;}
.yc1{bottom:433.666667pt;}
.y82{bottom:437.666667pt;}
.y20{bottom:446.626667pt;}
.y6c{bottom:447.266667pt;}
.yc0{bottom:451.266667pt;}
.y81{bottom:455.266667pt;}
.y1f{bottom:464.226667pt;}
.y6b{bottom:464.866667pt;}
.ybf{bottom:468.866667pt;}
.y57{bottom:472.866667pt;}
.y1e{bottom:481.826667pt;}
.y6a{bottom:482.466667pt;}
.ybe{bottom:486.466667pt;}
.y56{bottom:490.466667pt;}
.y1d{bottom:499.453333pt;}
.y69{bottom:500.253333pt;}
.ybd{bottom:504.253333pt;}
.y55{bottom:508.253333pt;}
.y1c{bottom:517.213333pt;}
.y68{bottom:517.853333pt;}
.ybc{bottom:521.853333pt;}
.y54{bottom:525.853333pt;}
.y1b{bottom:534.813333pt;}
.y67{bottom:535.453333pt;}
.ybb{bottom:539.453333pt;}
.y53{bottom:543.453333pt;}
.y1a{bottom:552.413333pt;}
.y66{bottom:553.053333pt;}
.yba{bottom:557.053333pt;}
.y52{bottom:561.053333pt;}
.y19{bottom:570.013333pt;}
.y65{bottom:570.653333pt;}
.yb9{bottom:574.653333pt;}
.y51{bottom:578.653333pt;}
.y64{bottom:588.413333pt;}
.y18{bottom:589.693333pt;}
.yb8{bottom:592.413333pt;}
.y50{bottom:596.413333pt;}
.y63{bottom:606.013333pt;}
.yb7{bottom:610.013333pt;}
.y4f{bottom:614.013333pt;}
.y17{bottom:615.293333pt;}
.y62{bottom:623.613333pt;}
.yb6{bottom:627.613333pt;}
.y4e{bottom:631.613333pt;}
.y16{bottom:632.893333pt;}
.y61{bottom:641.213333pt;}
.yb5{bottom:645.213333pt;}
.y4d{bottom:649.213333pt;}
.y15{bottom:650.653333pt;}
.y60{bottom:658.813333pt;}
.yb4{bottom:662.813333pt;}
.y4c{bottom:666.813333pt;}
.y14{bottom:668.253333pt;}
.y5f{bottom:676.573333pt;}
.yb3{bottom:680.573333pt;}
.y4b{bottom:684.573333pt;}
.y13{bottom:685.853333pt;}
.y5e{bottom:694.173333pt;}
.yb2{bottom:698.173333pt;}
.y4a{bottom:702.173333pt;}
.y12{bottom:703.453333pt;}
.y5d{bottom:711.773333pt;}
.yb1{bottom:715.773333pt;}
.y49{bottom:719.773333pt;}
.y11{bottom:721.053333pt;}
.y5c{bottom:729.373333pt;}
.yb0{bottom:733.373333pt;}
.y48{bottom:737.373333pt;}
.y10{bottom:738.813333pt;}
.yd7{bottom:747.013333pt;}
.yaf{bottom:751.013333pt;}
.y47{bottom:755.013333pt;}
.yf{bottom:756.453333pt;}
.yd6{bottom:764.773333pt;}
.yae{bottom:768.773333pt;}
.y46{bottom:772.773333pt;}
.ye{bottom:774.053333pt;}
.yd5{bottom:782.373333pt;}
.yad{bottom:786.373333pt;}
.y45{bottom:790.373333pt;}
.yd{bottom:793.733333pt;}
.yd4{bottom:799.973333pt;}
.yac{bottom:803.973333pt;}
.y44{bottom:807.973333pt;}
.yc{bottom:815.973333pt;}
.yd3{bottom:817.573333pt;}
.yab{bottom:821.573333pt;}
.y43{bottom:825.573333pt;}
.yb{bottom:833.573333pt;}
.yaa{bottom:839.173333pt;}
.y42{bottom:843.173333pt;}
.ya{bottom:847.013333pt;}
.ya9{bottom:856.933333pt;}
.y41{bottom:860.933333pt;}
.y97{bottom:865.573333pt;}
.y9{bottom:865.893333pt;}
.ya8{bottom:874.533333pt;}
.y40{bottom:878.533333pt;}
.y8{bottom:886.853333pt;}
.ya7{bottom:892.133333pt;}
.y3f{bottom:896.133333pt;}
.ya6{bottom:909.733333pt;}
.y3e{bottom:913.733333pt;}
.y7{bottom:915.013333pt;}
.ya5{bottom:927.333333pt;}
.y3d{bottom:931.333333pt;}
.ya4{bottom:940.613333pt;}
.y5{bottom:947.973333pt;}
.y3c{bottom:949.093333pt;}
.ya3{bottom:958.853333pt;}
.y3b{bottom:966.693333pt;}
.y4{bottom:974.213333pt;}
.ya2{bottom:977.093333pt;}
.y3a{bottom:984.293333pt;}
.ya0{bottom:995.493333pt;}
.y3{bottom:1000.320000pt;}
.y39{bottom:1001.920000pt;}
.y9e{bottom:1013.760000pt;}
.y38{bottom:1019.520000pt;}
.y2{bottom:1026.560000pt;}
.y37{bottom:1037.280000pt;}
.y1{bottom:1052.800000pt;}
.y36{bottom:1060.800000pt;}
.hb{height:17.600000pt;}
.hc{height:17.632000pt;}
.h7{height:30.324375pt;}
.h5{height:37.479688pt;}
.h9{height:39.347188pt;}
.h2{height:41.543750pt;}
.h8{height:46.609688pt;}
.h6{height:47.310625pt;}
.h3{height:51.663750pt;}
.ha{height:58.563750pt;}
.h4{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:134.426667pt;}
.w4{width:342.306667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x6{left:29.119988pt;}
.x1{left:48.159988pt;}
.xa{left:52.319988pt;}
.x5{left:66.879988pt;}
.xe{left:71.999988pt;}
.xf{left:96.031988pt;}
.xb{left:158.266667pt;}
.x3{left:215.866655pt;}
.x9{left:240.026655pt;}
.x4{left:294.306655pt;}
.xd{left:501.213333pt;}
.x7{left:511.293310pt;}
.x8{left:515.613322pt;}
.x2{left:665.893322pt;}
}




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