
    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_3661cc5b398a9192a4aaa7e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_37900e418f0a4c39b5354802.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_65b751c6b2ddae4d3e27b8bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c6078478cd8ccdc24ad6d14a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_720f7e92f88a0f16e61d4505.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8c4055612f41be1ed740c061.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cb4c9e035c221e3dfeb5be98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_6fe0ec389b7a244ba30f2435.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_4a2ea2adc5abc0be8a9fce6e.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.094800px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.054720px;}
.ls12{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.245520px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.666720px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.lsc{letter-spacing:8.100000px;}
.lsd{letter-spacing:22.320000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.wsd{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.734480px;}
.ws3{word-spacing:-13.680000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._20{margin-left:-3.067200px;}
._1{margin-left:-1.996800px;}
._6{width:1.254960px;}
._b{width:2.460480px;}
._22{width:4.176000px;}
._0{width:5.587200px;}
._15{width:7.063440px;}
._1f{width:9.048000px;}
._e{width:10.728000px;}
._f{width:12.240000px;}
._17{width:13.485840px;}
._28{width:14.685360px;}
._2e{width:15.712320px;}
._18{width:16.891680px;}
._a{width:19.872000px;}
._19{width:21.024000px;}
._1a{width:22.382160px;}
._1c{width:23.688000px;}
._8{width:25.272000px;}
._9{width:26.309040px;}
._2f{width:27.362640px;}
._23{width:28.368000px;}
._25{width:29.716800px;}
._24{width:30.929040px;}
._2a{width:32.545200px;}
._d{width:34.458480px;}
._c{width:35.529840px;}
._21{width:36.677040px;}
._1b{width:38.664000px;}
._14{width:40.320000px;}
._13{width:41.328000px;}
._32{width:43.272000px;}
._33{width:44.280000px;}
._16{width:45.864000px;}
._2b{width:47.656800px;}
._26{width:50.112000px;}
._27{width:51.161040px;}
._36{width:52.249920px;}
._29{width:53.310960px;}
._38{width:54.597840px;}
._39{width:55.598640px;}
._2d{width:57.096000px;}
._1d{width:61.068000px;}
._1e{width:62.808000px;}
._10{width:64.080000px;}
._12{width:65.284800px;}
._11{width:66.353040px;}
._31{width:68.664000px;}
._37{width:72.336000px;}
._34{width:73.944000px;}
._35{width:75.468000px;}
._2c{width:87.192000px;}
._30{width:88.272000px;}
._7{width:115.314720px;}
._5{width:677.646720px;}
._4{width:1539.582720px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(19,138,196);}
.fc2{color:rgb(54,54,54);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.600000px;}
.yc{bottom:8.040000px;}
.y19{bottom:56.160000px;}
.y4a{bottom:56.700000px;}
.y49{bottom:73.836000px;}
.y18{bottom:88.236000px;}
.y1a{bottom:91.836000px;}
.y13{bottom:99.795000px;}
.y16{bottom:135.750000px;}
.y77{bottom:146.916000px;}
.y9a{bottom:149.616000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y76{bottom:167.610000px;}
.y44{bottom:168.330000px;}
.y99{bottom:170.310000px;}
.ya2{bottom:173.010000px;}
.y75{bottom:188.310000px;}
.y43{bottom:189.030000px;}
.y98{bottom:191.010000px;}
.y74{bottom:209.010000px;}
.y42{bottom:209.730000px;}
.y97{bottom:211.710000px;}
.y73{bottom:229.710000px;}
.y41{bottom:230.430000px;}
.y96{bottom:232.410000px;}
.y72{bottom:250.410000px;}
.y40{bottom:251.130000px;}
.y95{bottom:253.110000px;}
.y9e{bottom:271.110000px;}
.y3f{bottom:271.830000px;}
.y71{bottom:289.110000px;}
.y94{bottom:291.810000px;}
.y3e{bottom:292.530000px;}
.y70{bottom:309.810000px;}
.y93{bottom:312.510000px;}
.y3d{bottom:313.230000px;}
.y6f{bottom:330.555000px;}
.y92{bottom:333.255000px;}
.y3c{bottom:333.975000px;}
.ya{bottom:344.680500px;}
.y6e{bottom:351.255000px;}
.y91{bottom:353.955000px;}
.y6d{bottom:371.955000px;}
.y3b{bottom:372.675000px;}
.y90{bottom:374.655000px;}
.yd{bottom:386.490000px;}
.y6c{bottom:392.655000px;}
.y3a{bottom:393.375000px;}
.y8f{bottom:395.355000px;}
.y9{bottom:395.689500px;}
.y6b{bottom:413.355000px;}
.y39{bottom:414.075000px;}
.y8e{bottom:416.055000px;}
.y6a{bottom:434.055000px;}
.y38{bottom:434.775000px;}
.yb{bottom:434.850000px;}
.y8d{bottom:436.755000px;}
.y8{bottom:446.698500px;}
.y69{bottom:454.755000px;}
.y37{bottom:455.475000px;}
.y8c{bottom:457.455000px;}
.y68{bottom:475.455000px;}
.y36{bottom:476.175000px;}
.y8b{bottom:478.155000px;}
.y10{bottom:488.055000px;}
.y67{bottom:496.155000px;}
.y35{bottom:496.875000px;}
.y7{bottom:497.707500px;}
.y8a{bottom:498.855000px;}
.y66{bottom:516.855000px;}
.y34{bottom:517.575000px;}
.y89{bottom:519.555000px;}
.y65{bottom:537.555000px;}
.y11{bottom:538.230000px;}
.y33{bottom:538.275000px;}
.y88{bottom:540.255000px;}
.y6{bottom:548.716500px;}
.y64{bottom:558.255000px;}
.y87{bottom:560.775000px;}
.yb5{bottom:566.895000px;}
.y32{bottom:576.975000px;}
.y63{bottom:578.775000px;}
.y86{bottom:581.475000px;}
.yb4{bottom:587.595000px;}
.y17{bottom:589.605000px;}
.y31{bottom:597.705000px;}
.y62{bottom:599.505000px;}
.y5{bottom:599.725500px;}
.y85{bottom:602.205000px;}
.ya1{bottom:617.505000px;}
.y30{bottom:618.405000px;}
.y61{bottom:620.205000px;}
.y84{bottom:622.905000px;}
.yb3{bottom:626.325000px;}
.ye{bottom:631.920000px;}
.ya0{bottom:638.205000px;}
.y2f{bottom:639.105000px;}
.y9d{bottom:640.905000px;}
.y83{bottom:643.605000px;}
.yb2{bottom:647.025000px;}
.y60{bottom:658.905000px;}
.y2e{bottom:659.805000px;}
.y9c{bottom:661.605000px;}
.y82{bottom:664.305000px;}
.yb1{bottom:667.725000px;}
.y5f{bottom:679.605000px;}
.y2d{bottom:680.505000px;}
.y9b{bottom:682.305000px;}
.y5e{bottom:700.305000px;}
.y2c{bottom:701.205000px;}
.y81{bottom:703.005000px;}
.yb0{bottom:706.785000px;}
.y5d{bottom:721.005000px;}
.y2b{bottom:721.905000px;}
.y80{bottom:723.705000px;}
.y5c{bottom:741.705000px;}
.y7f{bottom:744.405000px;}
.yaf{bottom:748.725000px;}
.y2a{bottom:761.685000px;}
.y5b{bottom:762.405000px;}
.y7e{bottom:765.105000px;}
.y4{bottom:778.225500px;}
.y5a{bottom:783.105000px;}
.y7d{bottom:785.805000px;}
.yae{bottom:790.485000px;}
.y59{bottom:803.805000px;}
.y7c{bottom:806.505000px;}
.yad{bottom:811.185000px;}
.y29{bottom:813.165000px;}
.y12{bottom:815.670000px;}
.y58{bottom:824.505000px;}
.y57{bottom:845.205000px;}
.yac{bottom:849.885000px;}
.y28{bottom:860.865000px;}
.y56{bottom:865.950000px;}
.yab{bottom:870.630000px;}
.y55{bottom:886.650000px;}
.yaa{bottom:891.330000px;}
.y3{bottom:905.716500px;}
.y54{bottom:907.350000px;}
.ya9{bottom:912.030000px;}
.y27{bottom:919.770000px;}
.y53{bottom:928.050000px;}
.y7b{bottom:948.750000px;}
.ya8{bottom:951.090000px;}
.y2{bottom:964.228500px;}
.y52{bottom:966.750000px;}
.y7a{bottom:969.450000px;}
.y26{bottom:985.650000px;}
.y51{bottom:987.450000px;}
.y1{bottom:989.716500px;}
.y79{bottom:990.150000px;}
.ya7{bottom:992.490000px;}
.y50{bottom:1008.150000px;}
.y78{bottom:1010.850000px;}
.y23{bottom:1018.770000px;}
.y4f{bottom:1028.850000px;}
.ya6{bottom:1031.190000px;}
.y9f{bottom:1031.550000px;}
.y22{bottom:1036.050000px;}
.y25{bottom:1044.150000px;}
.y4e{bottom:1049.550000px;}
.ya5{bottom:1051.890000px;}
.y21{bottom:1053.330000px;}
.y4d{bottom:1070.250000px;}
.y20{bottom:1070.430000px;}
.y24{bottom:1078.710000px;}
.y1f{bottom:1087.710000px;}
.ya4{bottom:1090.590000px;}
.y4c{bottom:1090.950000px;}
.y1e{bottom:1104.990000px;}
.ya3{bottom:1111.290000px;}
.y4b{bottom:1111.650000px;}
.y1d{bottom:1122.090000px;}
.y1c{bottom:1140.120000px;}
.y48{bottom:1141.740000px;}
.y47{bottom:1161.540000px;}
.y46{bottom:1178.820000px;}
.y45{bottom:1196.100000px;}
.h4{height:33.000000px;}
.he{height:43.536094px;}
.hb{height:44.280000px;}
.h14{height:50.273438px;}
.hd{height:52.453125px;}
.h3{height:58.406250px;}
.hc{height:58.651172px;}
.h15{height:61.370156px;}
.ha{height:62.327813px;}
.h10{height:65.566406px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:70.664062px;}
.h12{height:72.562500px;}
.h11{height:78.679688px;}
.h13{height:88.286133px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:15.840000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:108.035987px;}
.xd{left:116.495987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:129.275987px;}
.x10{left:134.855987px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x12{left:443.594987px;}
.xf{left:550.364987px;}
.x11{left:738.329987px;}
.xc{left:742.470000px;}
.x13{left:746.609987px;}
.x14{left:750.749987px;}
.xe{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.084267pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.048640pt;}
.ls12{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.218240pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsc{letter-spacing:7.200000pt;}
.lsd{letter-spacing:19.840000pt;}
.ws0{word-spacing:-16.874667pt;}
.wsd{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws3{word-spacing:-12.160000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._20{margin-left:-2.726400pt;}
._1{margin-left:-1.774933pt;}
._6{width:1.115520pt;}
._b{width:2.187093pt;}
._22{width:3.712000pt;}
._0{width:4.966400pt;}
._15{width:6.278613pt;}
._1f{width:8.042667pt;}
._e{width:9.536000pt;}
._f{width:10.880000pt;}
._17{width:11.987413pt;}
._28{width:13.053653pt;}
._2e{width:13.966507pt;}
._18{width:15.014827pt;}
._a{width:17.664000pt;}
._19{width:18.688000pt;}
._1a{width:19.895253pt;}
._1c{width:21.056000pt;}
._8{width:22.464000pt;}
._9{width:23.385813pt;}
._2f{width:24.322347pt;}
._23{width:25.216000pt;}
._25{width:26.414933pt;}
._24{width:27.492480pt;}
._2a{width:28.929067pt;}
._d{width:30.629760pt;}
._c{width:31.582080pt;}
._21{width:32.601813pt;}
._1b{width:34.368000pt;}
._14{width:35.840000pt;}
._13{width:36.736000pt;}
._32{width:38.464000pt;}
._33{width:39.360000pt;}
._16{width:40.768000pt;}
._2b{width:42.361600pt;}
._26{width:44.544000pt;}
._27{width:45.476480pt;}
._36{width:46.444373pt;}
._29{width:47.387520pt;}
._38{width:48.531413pt;}
._39{width:49.421013pt;}
._2d{width:50.752000pt;}
._1d{width:54.282667pt;}
._1e{width:55.829333pt;}
._10{width:56.960000pt;}
._12{width:58.030933pt;}
._11{width:58.980480pt;}
._31{width:61.034667pt;}
._37{width:64.298667pt;}
._34{width:65.728000pt;}
._35{width:67.082667pt;}
._2c{width:77.504000pt;}
._30{width:78.464000pt;}
._7{width:102.501973pt;}
._5{width:602.352640pt;}
._4{width:1368.517973pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.200000pt;}
.yc{bottom:7.146667pt;}
.y19{bottom:49.920000pt;}
.y4a{bottom:50.400000pt;}
.y49{bottom:65.632000pt;}
.y18{bottom:78.432000pt;}
.y1a{bottom:81.632000pt;}
.y13{bottom:88.706667pt;}
.y16{bottom:120.666667pt;}
.y77{bottom:130.592000pt;}
.y9a{bottom:132.992000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y76{bottom:148.986667pt;}
.y44{bottom:149.626667pt;}
.y99{bottom:151.386667pt;}
.ya2{bottom:153.786667pt;}
.y75{bottom:167.386667pt;}
.y43{bottom:168.026667pt;}
.y98{bottom:169.786667pt;}
.y74{bottom:185.786667pt;}
.y42{bottom:186.426667pt;}
.y97{bottom:188.186667pt;}
.y73{bottom:204.186667pt;}
.y41{bottom:204.826667pt;}
.y96{bottom:206.586667pt;}
.y72{bottom:222.586667pt;}
.y40{bottom:223.226667pt;}
.y95{bottom:224.986667pt;}
.y9e{bottom:240.986667pt;}
.y3f{bottom:241.626667pt;}
.y71{bottom:256.986667pt;}
.y94{bottom:259.386667pt;}
.y3e{bottom:260.026667pt;}
.y70{bottom:275.386667pt;}
.y93{bottom:277.786667pt;}
.y3d{bottom:278.426667pt;}
.y6f{bottom:293.826667pt;}
.y92{bottom:296.226667pt;}
.y3c{bottom:296.866667pt;}
.ya{bottom:306.382667pt;}
.y6e{bottom:312.226667pt;}
.y91{bottom:314.626667pt;}
.y6d{bottom:330.626667pt;}
.y3b{bottom:331.266667pt;}
.y90{bottom:333.026667pt;}
.yd{bottom:343.546667pt;}
.y6c{bottom:349.026667pt;}
.y3a{bottom:349.666667pt;}
.y8f{bottom:351.426667pt;}
.y9{bottom:351.724000pt;}
.y6b{bottom:367.426667pt;}
.y39{bottom:368.066667pt;}
.y8e{bottom:369.826667pt;}
.y6a{bottom:385.826667pt;}
.y38{bottom:386.466667pt;}
.yb{bottom:386.533333pt;}
.y8d{bottom:388.226667pt;}
.y8{bottom:397.065333pt;}
.y69{bottom:404.226667pt;}
.y37{bottom:404.866667pt;}
.y8c{bottom:406.626667pt;}
.y68{bottom:422.626667pt;}
.y36{bottom:423.266667pt;}
.y8b{bottom:425.026667pt;}
.y10{bottom:433.826667pt;}
.y67{bottom:441.026667pt;}
.y35{bottom:441.666667pt;}
.y7{bottom:442.406667pt;}
.y8a{bottom:443.426667pt;}
.y66{bottom:459.426667pt;}
.y34{bottom:460.066667pt;}
.y89{bottom:461.826667pt;}
.y65{bottom:477.826667pt;}
.y11{bottom:478.426667pt;}
.y33{bottom:478.466667pt;}
.y88{bottom:480.226667pt;}
.y6{bottom:487.748000pt;}
.y64{bottom:496.226667pt;}
.y87{bottom:498.466667pt;}
.yb5{bottom:503.906667pt;}
.y32{bottom:512.866667pt;}
.y63{bottom:514.466667pt;}
.y86{bottom:516.866667pt;}
.yb4{bottom:522.306667pt;}
.y17{bottom:524.093333pt;}
.y31{bottom:531.293333pt;}
.y62{bottom:532.893333pt;}
.y5{bottom:533.089333pt;}
.y85{bottom:535.293333pt;}
.ya1{bottom:548.893333pt;}
.y30{bottom:549.693333pt;}
.y61{bottom:551.293333pt;}
.y84{bottom:553.693333pt;}
.yb3{bottom:556.733333pt;}
.ye{bottom:561.706667pt;}
.ya0{bottom:567.293333pt;}
.y2f{bottom:568.093333pt;}
.y9d{bottom:569.693333pt;}
.y83{bottom:572.093333pt;}
.yb2{bottom:575.133333pt;}
.y60{bottom:585.693333pt;}
.y2e{bottom:586.493333pt;}
.y9c{bottom:588.093333pt;}
.y82{bottom:590.493333pt;}
.yb1{bottom:593.533333pt;}
.y5f{bottom:604.093333pt;}
.y2d{bottom:604.893333pt;}
.y9b{bottom:606.493333pt;}
.y5e{bottom:622.493333pt;}
.y2c{bottom:623.293333pt;}
.y81{bottom:624.893333pt;}
.yb0{bottom:628.253333pt;}
.y5d{bottom:640.893333pt;}
.y2b{bottom:641.693333pt;}
.y80{bottom:643.293333pt;}
.y5c{bottom:659.293333pt;}
.y7f{bottom:661.693333pt;}
.yaf{bottom:665.533333pt;}
.y2a{bottom:677.053333pt;}
.y5b{bottom:677.693333pt;}
.y7e{bottom:680.093333pt;}
.y4{bottom:691.756000pt;}
.y5a{bottom:696.093333pt;}
.y7d{bottom:698.493333pt;}
.yae{bottom:702.653333pt;}
.y59{bottom:714.493333pt;}
.y7c{bottom:716.893333pt;}
.yad{bottom:721.053333pt;}
.y29{bottom:722.813333pt;}
.y12{bottom:725.040000pt;}
.y58{bottom:732.893333pt;}
.y57{bottom:751.293333pt;}
.yac{bottom:755.453333pt;}
.y28{bottom:765.213333pt;}
.y56{bottom:769.733333pt;}
.yab{bottom:773.893333pt;}
.y55{bottom:788.133333pt;}
.yaa{bottom:792.293333pt;}
.y3{bottom:805.081333pt;}
.y54{bottom:806.533333pt;}
.ya9{bottom:810.693333pt;}
.y27{bottom:817.573333pt;}
.y53{bottom:824.933333pt;}
.y7b{bottom:843.333333pt;}
.ya8{bottom:845.413333pt;}
.y2{bottom:857.092000pt;}
.y52{bottom:859.333333pt;}
.y7a{bottom:861.733333pt;}
.y26{bottom:876.133333pt;}
.y51{bottom:877.733333pt;}
.y1{bottom:879.748000pt;}
.y79{bottom:880.133333pt;}
.ya7{bottom:882.213333pt;}
.y50{bottom:896.133333pt;}
.y78{bottom:898.533333pt;}
.y23{bottom:905.573333pt;}
.y4f{bottom:914.533333pt;}
.ya6{bottom:916.613333pt;}
.y9f{bottom:916.933333pt;}
.y22{bottom:920.933333pt;}
.y25{bottom:928.133333pt;}
.y4e{bottom:932.933333pt;}
.ya5{bottom:935.013333pt;}
.y21{bottom:936.293333pt;}
.y4d{bottom:951.333333pt;}
.y20{bottom:951.493333pt;}
.y24{bottom:958.853333pt;}
.y1f{bottom:966.853333pt;}
.ya4{bottom:969.413333pt;}
.y4c{bottom:969.733333pt;}
.y1e{bottom:982.213333pt;}
.ya3{bottom:987.813333pt;}
.y4b{bottom:988.133333pt;}
.y1d{bottom:997.413333pt;}
.y1c{bottom:1013.440000pt;}
.y48{bottom:1014.880000pt;}
.y47{bottom:1032.480000pt;}
.y46{bottom:1047.840000pt;}
.y45{bottom:1063.200000pt;}
.h4{height:29.333333pt;}
.he{height:38.698750pt;}
.hb{height:39.360000pt;}
.h14{height:44.687500pt;}
.hd{height:46.625000pt;}
.h3{height:51.916667pt;}
.hc{height:52.134375pt;}
.h15{height:54.551250pt;}
.ha{height:55.402500pt;}
.h10{height:58.281250pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:62.812500pt;}
.h12{height:64.500000pt;}
.h11{height:69.937500pt;}
.h13{height:78.476562pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:14.080000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:96.031988pt;}
.xd{left:103.551988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:114.911988pt;}
.x10{left:119.871988pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x12{left:394.306655pt;}
.xf{left:489.213322pt;}
.x11{left:656.293322pt;}
.xc{left:659.973333pt;}
.x13{left:663.653322pt;}
.x14{left:667.333322pt;}
.xe{left:697.253322pt;}
}




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