
    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_2d4c5ea2ac9c031db42831d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_204ea6846bd1301640be220d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_1121048ddb1026c2f7d589c1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bdda4ca25986f0b42d340f8c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf1ec58676e8990a8c59269e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_7195fd5c50a8488111c1245a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_4e790cd8453be76325a3a693.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.259800px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:11.466720px;}
.ls8{letter-spacing:41.682720px;}
.ls3{letter-spacing:636.840000px;}
.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:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._9{margin-left:-5.734080px;}
._a{margin-left:-4.726080px;}
._13{margin-left:-3.525360px;}
._8{margin-left:-2.520000px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._10{width:6.114240px;}
._f{width:7.204800px;}
._12{width:8.366400px;}
._14{width:9.860400px;}
._11{width:11.557680px;}
._e{width:13.398480px;}
._d{width:16.159200px;}
._c{width:17.175120px;}
._b{width:18.645120px;}
._15{width:20.318400px;}
._16{width:21.896160px;}
._19{width:23.390160px;}
._1c{width:24.776400px;}
._17{width:26.676960px;}
._18{width:27.728640px;}
._1a{width:28.852320px;}
._23{width:29.856000px;}
._1f{width:30.889200px;}
._1d{width:32.031360px;}
._1e{width:33.226560px;}
._1b{width:36.558000px;}
._30{width:39.421440px;}
._2f{width:40.475760px;}
._3a{width:42.960000px;}
._3b{width:48.541440px;}
._3c{width:49.765440px;}
._40{width:53.800800px;}
._3f{width:54.957120px;}
._3e{width:56.735760px;}
._3d{width:57.871680px;}
._39{width:63.479520px;}
._38{width:66.393360px;}
._37{width:68.843520px;}
._20{width:70.636320px;}
._2a{width:80.004720px;}
._28{width:81.127680px;}
._29{width:82.136640px;}
._22{width:88.803360px;}
._21{width:89.879040px;}
._24{width:92.926800px;}
._26{width:104.317680px;}
._25{width:109.599840px;}
._27{width:113.193360px;}
._2d{width:127.707120px;}
._2e{width:128.782800px;}
._6{width:136.122000px;}
._35{width:142.749840px;}
._34{width:147.093360px;}
._36{width:148.324320px;}
._32{width:274.609440px;}
._2c{width:277.332240px;}
._31{width:279.248880px;}
._33{width:280.757520px;}
._2b{width:282.765600px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.yb8{bottom:20.520000px;}
.yb{bottom:37.080000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.576000px;}
.y77{bottom:115.956000px;}
.yd0{bottom:119.376000px;}
.y40{bottom:123.516000px;}
.y83{bottom:128.016000px;}
.y76{bottom:133.236000px;}
.ycf{bottom:136.656000px;}
.y3f{bottom:140.796000px;}
.y82{bottom:142.776000px;}
.y7b{bottom:144.396000px;}
.yb5{bottom:145.296000px;}
.y75{bottom:150.510000px;}
.yce{bottom:153.930000px;}
.y3e{bottom:158.070000px;}
.y81{bottom:160.770000px;}
.y7a{bottom:161.670000px;}
.yb4{bottom:162.570000px;}
.y74{bottom:167.790000px;}
.ycd{bottom:171.210000px;}
.y3d{bottom:175.350000px;}
.y80{bottom:178.770000px;}
.y79{bottom:178.950000px;}
.yb3{bottom:179.670000px;}
.y73{bottom:185.070000px;}
.ycc{bottom:188.490000px;}
.y3c{bottom:192.630000px;}
.y78{bottom:196.230000px;}
.y7f{bottom:196.770000px;}
.yb2{bottom:196.950000px;}
.y72{bottom:202.170000px;}
.ycb{bottom:205.590000px;}
.y3b{bottom:209.910000px;}
.yb1{bottom:214.230000px;}
.y7e{bottom:214.770000px;}
.y71{bottom:219.450000px;}
.yca{bottom:222.870000px;}
.y3a{bottom:227.010000px;}
.yb0{bottom:231.510000px;}
.y7c{bottom:232.770000px;}
.y70{bottom:236.730000px;}
.yc9{bottom:240.150000px;}
.y39{bottom:244.290000px;}
.yaf{bottom:248.790000px;}
.y6f{bottom:254.010000px;}
.yc8{bottom:257.430000px;}
.y38{bottom:261.570000px;}
.yae{bottom:266.070000px;}
.y6e{bottom:271.290000px;}
.yc7{bottom:274.710000px;}
.y37{bottom:278.850000px;}
.yad{bottom:283.170000px;}
.y6d{bottom:288.570000px;}
.yc6{bottom:291.810000px;}
.y36{bottom:296.130000px;}
.yac{bottom:300.450000px;}
.y6c{bottom:305.670000px;}
.yc5{bottom:309.090000px;}
.y35{bottom:313.230000px;}
.yab{bottom:317.730000px;}
.y6b{bottom:322.950000px;}
.yc4{bottom:326.370000px;}
.y34{bottom:330.510000px;}
.yaa{bottom:335.010000px;}
.y6a{bottom:340.275000px;}
.yc3{bottom:343.695000px;}
.y33{bottom:347.835000px;}
.ya9{bottom:352.335000px;}
.y69{bottom:357.555000px;}
.yc2{bottom:360.975000px;}
.y32{bottom:365.115000px;}
.ya8{bottom:369.615000px;}
.y68{bottom:374.835000px;}
.yc1{bottom:378.255000px;}
.y31{bottom:382.395000px;}
.ya7{bottom:386.715000px;}
.y67{bottom:392.115000px;}
.yc0{bottom:395.355000px;}
.y30{bottom:399.675000px;}
.ya6{bottom:403.995000px;}
.y66{bottom:409.215000px;}
.ybf{bottom:412.635000px;}
.y2f{bottom:416.775000px;}
.ya5{bottom:421.275000px;}
.y65{bottom:426.495000px;}
.ybe{bottom:429.915000px;}
.y2e{bottom:436.395000px;}
.ya4{bottom:438.555000px;}
.y64{bottom:443.775000px;}
.ybd{bottom:447.195000px;}
.y2d{bottom:453.675000px;}
.ya3{bottom:455.835000px;}
.y63{bottom:461.055000px;}
.y2c{bottom:470.775000px;}
.ya2{bottom:473.115000px;}
.y62{bottom:478.335000px;}
.y2b{bottom:488.055000px;}
.ya1{bottom:490.215000px;}
.y61{bottom:495.435000px;}
.y2a{bottom:505.335000px;}
.ya0{bottom:507.495000px;}
.y60{bottom:512.715000px;}
.y29{bottom:522.615000px;}
.y9f{bottom:524.775000px;}
.y5f{bottom:529.995000px;}
.y28{bottom:539.895000px;}
.y9e{bottom:542.055000px;}
.y5e{bottom:547.275000px;}
.y27{bottom:557.175000px;}
.y9d{bottom:559.335000px;}
.y5d{bottom:564.555000px;}
.y26{bottom:574.275000px;}
.y9c{bottom:576.435000px;}
.y5c{bottom:581.835000px;}
.y25{bottom:591.555000px;}
.y9b{bottom:593.715000px;}
.y5b{bottom:598.935000px;}
.y24{bottom:608.865000px;}
.y9a{bottom:611.025000px;}
.y5a{bottom:616.245000px;}
.y23{bottom:626.145000px;}
.y99{bottom:628.305000px;}
.y59{bottom:633.525000px;}
.y22{bottom:643.425000px;}
.y98{bottom:645.585000px;}
.y58{bottom:650.805000px;}
.y21{bottom:660.705000px;}
.y97{bottom:662.865000px;}
.y57{bottom:668.085000px;}
.y20{bottom:677.805000px;}
.y96{bottom:679.965000px;}
.y56{bottom:685.365000px;}
.ybc{bottom:694.725000px;}
.y1f{bottom:695.085000px;}
.y95{bottom:697.245000px;}
.y55{bottom:702.465000px;}
.y1e{bottom:712.365000px;}
.y94{bottom:714.525000px;}
.y54{bottom:719.745000px;}
.y1d{bottom:729.645000px;}
.ybb{bottom:730.005000px;}
.y93{bottom:731.805000px;}
.y53{bottom:737.025000px;}
.y1c{bottom:746.925000px;}
.y92{bottom:749.085000px;}
.y52{bottom:754.305000px;}
.y1b{bottom:764.025000px;}
.yba{bottom:765.285000px;}
.y91{bottom:766.365000px;}
.y51{bottom:771.585000px;}
.y1a{bottom:781.305000px;}
.y90{bottom:783.465000px;}
.y50{bottom:788.865000px;}
.y19{bottom:798.585000px;}
.yb9{bottom:800.565000px;}
.y8f{bottom:800.745000px;}
.y4f{bottom:805.965000px;}
.y18{bottom:815.865000px;}
.y8e{bottom:818.025000px;}
.yb7{bottom:818.565000px;}
.y4e{bottom:823.245000px;}
.y17{bottom:835.305000px;}
.y4d{bottom:840.525000px;}
.y8d{bottom:852.585000px;}
.y16{bottom:852.945000px;}
.yb6{bottom:853.845000px;}
.y4c{bottom:857.805000px;}
.y8c{bottom:869.685000px;}
.y4b{bottom:875.130000px;}
.y15{bottom:878.010000px;}
.y8b{bottom:887.010000px;}
.y14{bottom:890.970000px;}
.y4a{bottom:892.230000px;}
.y8a{bottom:904.290000px;}
.y49{bottom:909.510000px;}
.y13{bottom:910.050000px;}
.y89{bottom:919.050000px;}
.y48{bottom:926.790000px;}
.y12{bottom:928.950000px;}
.y88{bottom:937.050000px;}
.y47{bottom:944.070000px;}
.y11{bottom:953.970000px;}
.y87{bottom:955.050000px;}
.y46{bottom:961.350000px;}
.y10{bottom:966.930000px;}
.y86{bottom:973.050000px;}
.y45{bottom:978.630000px;}
.yf{bottom:985.470000px;}
.y85{bottom:991.050000px;}
.y44{bottom:995.730000px;}
.ye{bottom:1003.470000px;}
.y84{bottom:1009.050000px;}
.y43{bottom:1013.010000px;}
.yd{bottom:1024.170000px;}
.y42{bottom:1030.290000px;}
.yc{bottom:1044.870000px;}
.y41{bottom:1047.570000px;}
.y8{bottom:1066.470000px;}
.y7{bottom:1086.450000px;}
.y6{bottom:1102.290000px;}
.y5{bottom:1120.290000px;}
.y4{bottom:1137.030000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hf{height:17.136000px;}
.he{height:17.280000px;}
.h9{height:29.158594px;}
.h10{height:34.380000px;}
.h11{height:34.560000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.hb{height:43.506914px;}
.hd{height:43.681992px;}
.ha{height:46.251562px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h7{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:16.020000px;}
.w8{width:164.880000px;}
.w3{width:170.850000px;}
.w5{width:222.150000px;}
.w9{width:224.175000px;}
.w7{width:285.015000px;}
.wa{width:285.150000px;}
.w4{width:325.875000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x1{left:108.035987px;}
.x25{left:114.155987px;}
.x2{left:123.155987px;}
.x16{left:127.475987px;}
.x7{left:131.435987px;}
.x11{left:135.035987px;}
.x26{left:138.635987px;}
.x8{left:145.835987px;}
.x17{left:149.615987px;}
.x14{left:156.089987px;}
.x4{left:158.429987px;}
.x12{left:162.029987px;}
.x9{left:171.209987px;}
.x1b{left:175.890000px;}
.x24{left:196.229987px;}
.x15{left:197.849987px;}
.x20{left:206.309987px;}
.x1a{left:210.089987px;}
.xb{left:231.509987px;}
.x23{left:243.569987px;}
.x21{left:274.350000px;}
.x18{left:275.609987px;}
.xe{left:278.534987px;}
.x27{left:316.874987px;}
.xf{left:326.954987px;}
.xc{left:348.014987px;}
.x13{left:356.294987px;}
.xd{left:369.794987px;}
.x10{left:378.974987px;}
.x28{left:388.154987px;}
.x1f{left:393.194987px;}
.x6{left:396.434987px;}
.x1c{left:398.775000px;}
.x5{left:412.274987px;}
.x1d{left:415.515000px;}
.xa{left:446.474987px;}
.x22{left:499.245000px;}
.x3{left:518.504987px;}
.x1e{left:701.250000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:10.192640pt;}
.ls8{letter-spacing:37.051307pt;}
.ls3{letter-spacing:566.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._9{margin-left:-5.096960pt;}
._a{margin-left:-4.200960pt;}
._13{margin-left:-3.133653pt;}
._8{margin-left:-2.240000pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._10{width:5.434880pt;}
._f{width:6.404267pt;}
._12{width:7.436800pt;}
._14{width:8.764800pt;}
._11{width:10.273493pt;}
._e{width:11.909760pt;}
._d{width:14.363733pt;}
._c{width:15.266773pt;}
._b{width:16.573440pt;}
._15{width:18.060800pt;}
._16{width:19.463253pt;}
._19{width:20.791253pt;}
._1c{width:22.023467pt;}
._17{width:23.712853pt;}
._18{width:24.647680pt;}
._1a{width:25.646507pt;}
._23{width:26.538667pt;}
._1f{width:27.457067pt;}
._1d{width:28.472320pt;}
._1e{width:29.534720pt;}
._1b{width:32.496000pt;}
._30{width:35.041280pt;}
._2f{width:35.978453pt;}
._3a{width:38.186667pt;}
._3b{width:43.147947pt;}
._3c{width:44.235947pt;}
._40{width:47.822933pt;}
._3f{width:48.850773pt;}
._3e{width:50.431787pt;}
._3d{width:51.441493pt;}
._39{width:56.426240pt;}
._38{width:59.016320pt;}
._37{width:61.194240pt;}
._20{width:62.787840pt;}
._2a{width:71.115307pt;}
._28{width:72.113493pt;}
._29{width:73.010347pt;}
._22{width:78.936320pt;}
._21{width:79.892480pt;}
._24{width:82.601600pt;}
._26{width:92.726827pt;}
._25{width:97.422080pt;}
._27{width:100.616320pt;}
._2d{width:113.517440pt;}
._2e{width:114.473600pt;}
._6{width:120.997333pt;}
._35{width:126.888747pt;}
._34{width:130.749653pt;}
._36{width:131.843840pt;}
._32{width:244.097280pt;}
._2c{width:246.517547pt;}
._31{width:248.221227pt;}
._33{width:249.562240pt;}
._2b{width:251.347200pt;}
._4{width:663.818667pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.yb8{bottom:18.240000pt;}
.yb{bottom:32.960000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.512000pt;}
.y77{bottom:103.072000pt;}
.yd0{bottom:106.112000pt;}
.y40{bottom:109.792000pt;}
.y83{bottom:113.792000pt;}
.y76{bottom:118.432000pt;}
.ycf{bottom:121.472000pt;}
.y3f{bottom:125.152000pt;}
.y82{bottom:126.912000pt;}
.y7b{bottom:128.352000pt;}
.yb5{bottom:129.152000pt;}
.y75{bottom:133.786667pt;}
.yce{bottom:136.826667pt;}
.y3e{bottom:140.506667pt;}
.y81{bottom:142.906667pt;}
.y7a{bottom:143.706667pt;}
.yb4{bottom:144.506667pt;}
.y74{bottom:149.146667pt;}
.ycd{bottom:152.186667pt;}
.y3d{bottom:155.866667pt;}
.y80{bottom:158.906667pt;}
.y79{bottom:159.066667pt;}
.yb3{bottom:159.706667pt;}
.y73{bottom:164.506667pt;}
.ycc{bottom:167.546667pt;}
.y3c{bottom:171.226667pt;}
.y78{bottom:174.426667pt;}
.y7f{bottom:174.906667pt;}
.yb2{bottom:175.066667pt;}
.y72{bottom:179.706667pt;}
.ycb{bottom:182.746667pt;}
.y3b{bottom:186.586667pt;}
.yb1{bottom:190.426667pt;}
.y7e{bottom:190.906667pt;}
.y71{bottom:195.066667pt;}
.yca{bottom:198.106667pt;}
.y3a{bottom:201.786667pt;}
.yb0{bottom:205.786667pt;}
.y7c{bottom:206.906667pt;}
.y70{bottom:210.426667pt;}
.yc9{bottom:213.466667pt;}
.y39{bottom:217.146667pt;}
.yaf{bottom:221.146667pt;}
.y6f{bottom:225.786667pt;}
.yc8{bottom:228.826667pt;}
.y38{bottom:232.506667pt;}
.yae{bottom:236.506667pt;}
.y6e{bottom:241.146667pt;}
.yc7{bottom:244.186667pt;}
.y37{bottom:247.866667pt;}
.yad{bottom:251.706667pt;}
.y6d{bottom:256.506667pt;}
.yc6{bottom:259.386667pt;}
.y36{bottom:263.226667pt;}
.yac{bottom:267.066667pt;}
.y6c{bottom:271.706667pt;}
.yc5{bottom:274.746667pt;}
.y35{bottom:278.426667pt;}
.yab{bottom:282.426667pt;}
.y6b{bottom:287.066667pt;}
.yc4{bottom:290.106667pt;}
.y34{bottom:293.786667pt;}
.yaa{bottom:297.786667pt;}
.y6a{bottom:302.466667pt;}
.yc3{bottom:305.506667pt;}
.y33{bottom:309.186667pt;}
.ya9{bottom:313.186667pt;}
.y69{bottom:317.826667pt;}
.yc2{bottom:320.866667pt;}
.y32{bottom:324.546667pt;}
.ya8{bottom:328.546667pt;}
.y68{bottom:333.186667pt;}
.yc1{bottom:336.226667pt;}
.y31{bottom:339.906667pt;}
.ya7{bottom:343.746667pt;}
.y67{bottom:348.546667pt;}
.yc0{bottom:351.426667pt;}
.y30{bottom:355.266667pt;}
.ya6{bottom:359.106667pt;}
.y66{bottom:363.746667pt;}
.ybf{bottom:366.786667pt;}
.y2f{bottom:370.466667pt;}
.ya5{bottom:374.466667pt;}
.y65{bottom:379.106667pt;}
.ybe{bottom:382.146667pt;}
.y2e{bottom:387.906667pt;}
.ya4{bottom:389.826667pt;}
.y64{bottom:394.466667pt;}
.ybd{bottom:397.506667pt;}
.y2d{bottom:403.266667pt;}
.ya3{bottom:405.186667pt;}
.y63{bottom:409.826667pt;}
.y2c{bottom:418.466667pt;}
.ya2{bottom:420.546667pt;}
.y62{bottom:425.186667pt;}
.y2b{bottom:433.826667pt;}
.ya1{bottom:435.746667pt;}
.y61{bottom:440.386667pt;}
.y2a{bottom:449.186667pt;}
.ya0{bottom:451.106667pt;}
.y60{bottom:455.746667pt;}
.y29{bottom:464.546667pt;}
.y9f{bottom:466.466667pt;}
.y5f{bottom:471.106667pt;}
.y28{bottom:479.906667pt;}
.y9e{bottom:481.826667pt;}
.y5e{bottom:486.466667pt;}
.y27{bottom:495.266667pt;}
.y9d{bottom:497.186667pt;}
.y5d{bottom:501.826667pt;}
.y26{bottom:510.466667pt;}
.y9c{bottom:512.386667pt;}
.y5c{bottom:517.186667pt;}
.y25{bottom:525.826667pt;}
.y9b{bottom:527.746667pt;}
.y5b{bottom:532.386667pt;}
.y24{bottom:541.213333pt;}
.y9a{bottom:543.133333pt;}
.y5a{bottom:547.773333pt;}
.y23{bottom:556.573333pt;}
.y99{bottom:558.493333pt;}
.y59{bottom:563.133333pt;}
.y22{bottom:571.933333pt;}
.y98{bottom:573.853333pt;}
.y58{bottom:578.493333pt;}
.y21{bottom:587.293333pt;}
.y97{bottom:589.213333pt;}
.y57{bottom:593.853333pt;}
.y20{bottom:602.493333pt;}
.y96{bottom:604.413333pt;}
.y56{bottom:609.213333pt;}
.ybc{bottom:617.533333pt;}
.y1f{bottom:617.853333pt;}
.y95{bottom:619.773333pt;}
.y55{bottom:624.413333pt;}
.y1e{bottom:633.213333pt;}
.y94{bottom:635.133333pt;}
.y54{bottom:639.773333pt;}
.y1d{bottom:648.573333pt;}
.ybb{bottom:648.893333pt;}
.y93{bottom:650.493333pt;}
.y53{bottom:655.133333pt;}
.y1c{bottom:663.933333pt;}
.y92{bottom:665.853333pt;}
.y52{bottom:670.493333pt;}
.y1b{bottom:679.133333pt;}
.yba{bottom:680.253333pt;}
.y91{bottom:681.213333pt;}
.y51{bottom:685.853333pt;}
.y1a{bottom:694.493333pt;}
.y90{bottom:696.413333pt;}
.y50{bottom:701.213333pt;}
.y19{bottom:709.853333pt;}
.yb9{bottom:711.613333pt;}
.y8f{bottom:711.773333pt;}
.y4f{bottom:716.413333pt;}
.y18{bottom:725.213333pt;}
.y8e{bottom:727.133333pt;}
.yb7{bottom:727.613333pt;}
.y4e{bottom:731.773333pt;}
.y17{bottom:742.493333pt;}
.y4d{bottom:747.133333pt;}
.y8d{bottom:757.853333pt;}
.y16{bottom:758.173333pt;}
.yb6{bottom:758.973333pt;}
.y4c{bottom:762.493333pt;}
.y8c{bottom:773.053333pt;}
.y4b{bottom:777.893333pt;}
.y15{bottom:780.453333pt;}
.y8b{bottom:788.453333pt;}
.y14{bottom:791.973333pt;}
.y4a{bottom:793.093333pt;}
.y8a{bottom:803.813333pt;}
.y49{bottom:808.453333pt;}
.y13{bottom:808.933333pt;}
.y89{bottom:816.933333pt;}
.y48{bottom:823.813333pt;}
.y12{bottom:825.733333pt;}
.y88{bottom:832.933333pt;}
.y47{bottom:839.173333pt;}
.y11{bottom:847.973333pt;}
.y87{bottom:848.933333pt;}
.y46{bottom:854.533333pt;}
.y10{bottom:859.493333pt;}
.y86{bottom:864.933333pt;}
.y45{bottom:869.893333pt;}
.yf{bottom:875.973333pt;}
.y85{bottom:880.933333pt;}
.y44{bottom:885.093333pt;}
.ye{bottom:891.973333pt;}
.y84{bottom:896.933333pt;}
.y43{bottom:900.453333pt;}
.yd{bottom:910.373333pt;}
.y42{bottom:915.813333pt;}
.yc{bottom:928.773333pt;}
.y41{bottom:931.173333pt;}
.y8{bottom:947.973333pt;}
.y7{bottom:965.733333pt;}
.y6{bottom:979.813333pt;}
.y5{bottom:995.813333pt;}
.y4{bottom:1010.693333pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hf{height:15.232000pt;}
.he{height:15.360000pt;}
.h9{height:25.918750pt;}
.h10{height:30.560000pt;}
.h11{height:30.720000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.hb{height:38.672812pt;}
.hd{height:38.828437pt;}
.ha{height:41.112500pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h7{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:14.240000pt;}
.w8{width:146.560000pt;}
.w3{width:151.866667pt;}
.w5{width:197.466667pt;}
.w9{width:199.266667pt;}
.w7{width:253.346667pt;}
.wa{width:253.466667pt;}
.w4{width:289.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x1{left:96.031988pt;}
.x25{left:101.471988pt;}
.x2{left:109.471988pt;}
.x16{left:113.311988pt;}
.x7{left:116.831988pt;}
.x11{left:120.031988pt;}
.x26{left:123.231988pt;}
.x8{left:129.631988pt;}
.x17{left:132.991988pt;}
.x14{left:138.746655pt;}
.x4{left:140.826655pt;}
.x12{left:144.026655pt;}
.x9{left:152.186655pt;}
.x1b{left:156.346667pt;}
.x24{left:174.426655pt;}
.x15{left:175.866655pt;}
.x20{left:183.386655pt;}
.x1a{left:186.746655pt;}
.xb{left:205.786655pt;}
.x23{left:216.506655pt;}
.x21{left:243.866667pt;}
.x18{left:244.986655pt;}
.xe{left:247.586655pt;}
.x27{left:281.666655pt;}
.xf{left:290.626655pt;}
.xc{left:309.346655pt;}
.x13{left:316.706655pt;}
.xd{left:328.706655pt;}
.x10{left:336.866655pt;}
.x28{left:345.026655pt;}
.x1f{left:349.506655pt;}
.x6{left:352.386655pt;}
.x1c{left:354.466667pt;}
.x5{left:366.466655pt;}
.x1d{left:369.346667pt;}
.xa{left:396.866655pt;}
.x22{left:443.773333pt;}
.x3{left:460.893322pt;}
.x1e{left:623.333333pt;}
}




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