
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_2fac4feb453d6a55f9c2e263.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3cf5e6b82566d08da6585d7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_b7e8e2a1d8e98262a6acf5c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_99870a1650d0a483356b08da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fe87724ba5fe7d99a872d7b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_67c83ff98e5f0ff18f193eba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7508dfc8bb8869f9d057030f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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;}
.ls4{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.272400px;}
.ls13{letter-spacing:-0.226800px;}
.ls15{letter-spacing:-0.115800px;}
.ls7{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.097200px;}
.ls16{letter-spacing:0.117600px;}
.lsd{letter-spacing:0.150240px;}
.ls1a{letter-spacing:0.175200px;}
.lsb{letter-spacing:0.177840px;}
.ls9{letter-spacing:0.393600px;}
.ls8{letter-spacing:0.479400px;}
.ls19{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls10{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.lsf{letter-spacing:5.214240px;}
.ls11{letter-spacing:13.134240px;}
.lsc{letter-spacing:38.106720px;}
.ls1b{letter-spacing:42.426720px;}
.lse{letter-spacing:43.146720px;}
.ls17{letter-spacing:45.306720px;}
.ls14{letter-spacing:46.026720px;}
.ls18{letter-spacing:64.026720px;}
.lsa{letter-spacing:64.170720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.623360px;}
.ws5{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.278960px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.774400px;}
._f{margin-left:-3.568560px;}
._b{margin-left:-2.428800px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.405040px;}
._8{width:4.031520px;}
._12{width:5.065680px;}
._a{width:6.177360px;}
._e{width:8.127360px;}
._d{width:9.497520px;}
._c{width:10.756800px;}
._13{width:11.872320px;}
._16{width:14.605200px;}
._14{width:15.623280px;}
._11{width:17.632800px;}
._10{width:18.645120px;}
._15{width:20.617200px;}
._17{width:22.298160px;}
._7{width:36.047760px;}
._6{width:37.154880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:6.660000px;}
.y6{bottom:60.516000px;}
.yef{bottom:86.436000px;}
.yb4{bottom:90.756000px;}
.y31{bottom:104.256000px;}
.y65{bottom:105.696000px;}
.ydd{bottom:106.236000px;}
.y89{bottom:108.036000px;}
.yb3{bottom:111.816000px;}
.y30{bottom:125.316000px;}
.y64{bottom:126.756000px;}
.ydc{bottom:128.016000px;}
.y88{bottom:129.096000px;}
.yb2{bottom:132.876000px;}
.y2f{bottom:146.376000px;}
.y63{bottom:147.816000px;}
.ydb{bottom:149.796000px;}
.y87{bottom:150.150000px;}
.yb1{bottom:152.130000px;}
.y2e{bottom:167.430000px;}
.y62{bottom:168.870000px;}
.yda{bottom:170.850000px;}
.y86{bottom:171.210000px;}
.yb0{bottom:179.130000px;}
.y2d{bottom:188.490000px;}
.y61{bottom:189.930000px;}
.yd9{bottom:191.910000px;}
.y85{bottom:192.270000px;}
.yaf{bottom:206.310000px;}
.y2c{bottom:209.550000px;}
.y60{bottom:210.990000px;}
.y84{bottom:213.330000px;}
.yd8{bottom:213.870000px;}
.y2b{bottom:230.610000px;}
.y5f{bottom:232.050000px;}
.yae{bottom:233.310000px;}
.y83{bottom:234.390000px;}
.yd7{bottom:235.650000px;}
.y2a{bottom:251.670000px;}
.y5e{bottom:253.110000px;}
.y82{bottom:255.450000px;}
.yd6{bottom:256.710000px;}
.yad{bottom:265.890000px;}
.y29{bottom:272.730000px;}
.y5d{bottom:274.170000px;}
.y81{bottom:276.510000px;}
.yd5{bottom:278.670000px;}
.yac{bottom:286.995000px;}
.y28{bottom:293.835000px;}
.y5c{bottom:295.275000px;}
.y80{bottom:297.615000px;}
.yd4{bottom:300.495000px;}
.yab{bottom:308.055000px;}
.y27{bottom:314.895000px;}
.y5b{bottom:316.335000px;}
.y7f{bottom:318.675000px;}
.yd3{bottom:322.275000px;}
.yaa{bottom:329.115000px;}
.y26{bottom:335.955000px;}
.y5a{bottom:337.395000px;}
.y7e{bottom:339.735000px;}
.yd2{bottom:343.515000px;}
.ya9{bottom:350.175000px;}
.y25{bottom:357.015000px;}
.y59{bottom:358.455000px;}
.y7d{bottom:360.795000px;}
.yd1{bottom:365.295000px;}
.ya8{bottom:371.235000px;}
.y24{bottom:378.075000px;}
.y58{bottom:379.515000px;}
.y7c{bottom:381.855000px;}
.yd0{bottom:387.075000px;}
.ya7{bottom:392.295000px;}
.y23{bottom:398.955000px;}
.y57{bottom:400.575000px;}
.y7b{bottom:402.915000px;}
.ycf{bottom:408.135000px;}
.ya6{bottom:413.355000px;}
.y22{bottom:420.015000px;}
.y56{bottom:421.635000px;}
.y7a{bottom:423.975000px;}
.yce{bottom:429.915000px;}
.ya5{bottom:434.415000px;}
.y21{bottom:441.075000px;}
.y55{bottom:442.695000px;}
.y79{bottom:445.035000px;}
.ycd{bottom:451.155000px;}
.ya4{bottom:455.475000px;}
.y20{bottom:462.135000px;}
.y54{bottom:463.755000px;}
.y78{bottom:466.095000px;}
.ycc{bottom:472.935000px;}
.ya3{bottom:476.535000px;}
.y1f{bottom:483.195000px;}
.y53{bottom:484.815000px;}
.y77{bottom:487.155000px;}
.ycb{bottom:494.715000px;}
.ya2{bottom:497.595000px;}
.y1e{bottom:504.255000px;}
.y52{bottom:505.875000px;}
.y76{bottom:508.215000px;}
.yca{bottom:515.955000px;}
.ya1{bottom:516.855000px;}
.y1d{bottom:525.315000px;}
.y51{bottom:526.935000px;}
.y75{bottom:529.275000px;}
.yc9{bottom:537.735000px;}
.ya0{bottom:543.855000px;}
.y1c{bottom:546.375000px;}
.y50{bottom:547.995000px;}
.y74{bottom:550.335000px;}
.yc8{bottom:558.795000px;}
.y1b{bottom:567.465000px;}
.y4f{bottom:569.085000px;}
.y9f{bottom:570.885000px;}
.y73{bottom:571.425000px;}
.yc7{bottom:579.885000px;}
.y1a{bottom:588.525000px;}
.y4e{bottom:590.145000px;}
.y72{bottom:592.485000px;}
.y9d{bottom:598.065000px;}
.yc6{bottom:600.945000px;}
.y4d{bottom:611.205000px;}
.y19{bottom:612.105000px;}
.y71{bottom:613.545000px;}
.yc5{bottom:622.005000px;}
.y9c{bottom:630.645000px;}
.y4c{bottom:632.265000px;}
.y70{bottom:634.605000px;}
.y18{bottom:641.985000px;}
.yc4{bottom:642.885000px;}
.y9b{bottom:651.705000px;}
.y4b{bottom:653.325000px;}
.y6f{bottom:655.665000px;}
.y17{bottom:663.045000px;}
.yc3{bottom:663.945000px;}
.y9a{bottom:672.765000px;}
.y4a{bottom:674.385000px;}
.y6e{bottom:676.725000px;}
.y16{bottom:684.105000px;}
.yc2{bottom:685.005000px;}
.y99{bottom:693.825000px;}
.y49{bottom:695.445000px;}
.y6d{bottom:697.785000px;}
.y15{bottom:705.165000px;}
.yc1{bottom:706.065000px;}
.y98{bottom:714.885000px;}
.y48{bottom:716.505000px;}
.y6c{bottom:718.845000px;}
.y14{bottom:726.225000px;}
.yc0{bottom:727.125000px;}
.y97{bottom:735.945000px;}
.y47{bottom:737.565000px;}
.y6b{bottom:739.905000px;}
.y13{bottom:747.285000px;}
.ybf{bottom:748.185000px;}
.y96{bottom:757.005000px;}
.y46{bottom:758.625000px;}
.y6a{bottom:760.965000px;}
.y12{bottom:768.345000px;}
.ybe{bottom:769.245000px;}
.y95{bottom:778.065000px;}
.yee{bottom:779.685000px;}
.y45{bottom:780.405000px;}
.y69{bottom:782.025000px;}
.y11{bottom:789.405000px;}
.ybd{bottom:790.305000px;}
.y94{bottom:799.125000px;}
.yed{bottom:800.745000px;}
.y44{bottom:801.465000px;}
.y68{bottom:803.085000px;}
.y10{bottom:810.465000px;}
.ybc{bottom:811.365000px;}
.y93{bottom:820.185000px;}
.yec{bottom:821.805000px;}
.y43{bottom:823.245000px;}
.y67{bottom:824.145000px;}
.yf{bottom:831.525000px;}
.ybb{bottom:832.425000px;}
.y92{bottom:841.245000px;}
.yeb{bottom:842.865000px;}
.y42{bottom:844.485000px;}
.y66{bottom:845.205000px;}
.ye{bottom:852.630000px;}
.yba{bottom:853.530000px;}
.y91{bottom:862.350000px;}
.yea{bottom:863.970000px;}
.y41{bottom:866.310000px;}
.yb9{bottom:872.790000px;}
.yd{bottom:875.850000px;}
.y90{bottom:883.410000px;}
.ye9{bottom:885.030000px;}
.y40{bottom:887.370000px;}
.yb8{bottom:899.970000px;}
.yc{bottom:902.130000px;}
.y8f{bottom:904.470000px;}
.ye8{bottom:906.090000px;}
.y3f{bottom:908.430000px;}
.yb{bottom:923.190000px;}
.y8e{bottom:925.530000px;}
.yb7{bottom:926.970000px;}
.y3e{bottom:929.490000px;}
.ya{bottom:939.930000px;}
.y8d{bottom:947.310000px;}
.ye7{bottom:948.030000px;}
.y3d{bottom:950.550000px;}
.yb6{bottom:953.970000px;}
.y9{bottom:962.250000px;}
.ye6{bottom:969.090000px;}
.y8c{bottom:969.270000px;}
.y3c{bottom:971.610000px;}
.yb5{bottom:981.150000px;}
.y8{bottom:987.450000px;}
.ye5{bottom:990.150000px;}
.y8b{bottom:991.050000px;}
.y3b{bottom:992.670000px;}
.ye4{bottom:1011.210000px;}
.y8a{bottom:1013.010000px;}
.y3a{bottom:1013.730000px;}
.y7{bottom:1021.110000px;}
.ye3{bottom:1032.270000px;}
.y39{bottom:1034.790000px;}
.ye2{bottom:1053.510000px;}
.y38{bottom:1055.850000px;}
.y5{bottom:1061.250000px;}
.ye1{bottom:1075.290000px;}
.y37{bottom:1076.910000px;}
.y4{bottom:1093.470000px;}
.ye0{bottom:1096.350000px;}
.y36{bottom:1097.970000px;}
.ydf{bottom:1118.130000px;}
.y35{bottom:1119.030000px;}
.y3{bottom:1125.510000px;}
.yde{bottom:1139.400000px;}
.y34{bottom:1140.120000px;}
.y2{bottom:1157.760000px;}
.y33{bottom:1170.900000px;}
.y1{bottom:1192.320000px;}
.y32{bottom:1194.120000px;}
.ha{height:21.060000px;}
.hb{height:21.096000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.hc{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:49.356000px;}
.wf{width:50.400000px;}
.wc{width:60.480000px;}
.wa{width:60.516000px;}
.wb{width:60.660000px;}
.w9{width:62.640000px;}
.w3{width:86.580000px;}
.w8{width:86.616000px;}
.wd{width:112.860000px;}
.w4{width:116.316000px;}
.w6{width:117.540000px;}
.w7{width:138.996000px;}
.w5{width:141.696000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.080000px;}
.x14{left:3.240000px;}
.x17{left:5.760000px;}
.x1d{left:8.100000px;}
.xb{left:10.440000px;}
.x15{left:13.140000px;}
.x10{left:14.574000px;}
.x1c{left:16.560000px;}
.xf{left:19.074000px;}
.xc{left:21.240000px;}
.x19{left:30.420000px;}
.xd{left:41.580000px;}
.xe{left:44.145000px;}
.x1{left:53.999987px;}
.x2{left:80.999987px;}
.x4{left:93.095987px;}
.x3{left:108.035987px;}
.x1e{left:134.315987px;}
.x5{left:138.456000px;}
.x7{left:228.810000px;}
.x11{left:273.450000px;}
.x18{left:336.495000px;}
.x8{left:348.915000px;}
.x12{left:363.855000px;}
.x13{left:430.275000px;}
.x1a{left:453.135000px;}
.x1f{left:473.504987px;}
.x9{left:494.385000px;}
.x1b{left:506.265000px;}
.x16{left:559.005000px;}
.xa{left:615.705000px;}
.x20{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.242133pt;}
.ls13{letter-spacing:-0.201600pt;}
.ls15{letter-spacing:-0.102933pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.086400pt;}
.ls16{letter-spacing:0.104533pt;}
.lsd{letter-spacing:0.133547pt;}
.ls1a{letter-spacing:0.155733pt;}
.lsb{letter-spacing:0.158080pt;}
.ls9{letter-spacing:0.349867pt;}
.ls8{letter-spacing:0.426133pt;}
.ls19{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls10{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.lsf{letter-spacing:4.634880pt;}
.ls11{letter-spacing:11.674880pt;}
.lsc{letter-spacing:33.872640pt;}
.ls1b{letter-spacing:37.712640pt;}
.lse{letter-spacing:38.352640pt;}
.ls17{letter-spacing:40.272640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls18{letter-spacing:56.912640pt;}
.lsa{letter-spacing:57.040640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.109653pt;}
.ws5{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.803520pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.132800pt;}
._f{margin-left:-3.172053pt;}
._b{margin-left:-2.158933pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.137813pt;}
._8{width:3.583573pt;}
._12{width:4.502827pt;}
._a{width:5.490987pt;}
._e{width:7.224320pt;}
._d{width:8.442240pt;}
._c{width:9.561600pt;}
._13{width:10.553173pt;}
._16{width:12.982400pt;}
._14{width:13.887360pt;}
._11{width:15.673600pt;}
._10{width:16.573440pt;}
._15{width:18.326400pt;}
._17{width:19.820587pt;}
._7{width:32.042453pt;}
._6{width:33.026560pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:5.920000pt;}
.y6{bottom:53.792000pt;}
.yef{bottom:76.832000pt;}
.yb4{bottom:80.672000pt;}
.y31{bottom:92.672000pt;}
.y65{bottom:93.952000pt;}
.ydd{bottom:94.432000pt;}
.y89{bottom:96.032000pt;}
.yb3{bottom:99.392000pt;}
.y30{bottom:111.392000pt;}
.y64{bottom:112.672000pt;}
.ydc{bottom:113.792000pt;}
.y88{bottom:114.752000pt;}
.yb2{bottom:118.112000pt;}
.y2f{bottom:130.112000pt;}
.y63{bottom:131.392000pt;}
.ydb{bottom:133.152000pt;}
.y87{bottom:133.466667pt;}
.yb1{bottom:135.226667pt;}
.y2e{bottom:148.826667pt;}
.y62{bottom:150.106667pt;}
.yda{bottom:151.866667pt;}
.y86{bottom:152.186667pt;}
.yb0{bottom:159.226667pt;}
.y2d{bottom:167.546667pt;}
.y61{bottom:168.826667pt;}
.yd9{bottom:170.586667pt;}
.y85{bottom:170.906667pt;}
.yaf{bottom:183.386667pt;}
.y2c{bottom:186.266667pt;}
.y60{bottom:187.546667pt;}
.y84{bottom:189.626667pt;}
.yd8{bottom:190.106667pt;}
.y2b{bottom:204.986667pt;}
.y5f{bottom:206.266667pt;}
.yae{bottom:207.386667pt;}
.y83{bottom:208.346667pt;}
.yd7{bottom:209.466667pt;}
.y2a{bottom:223.706667pt;}
.y5e{bottom:224.986667pt;}
.y82{bottom:227.066667pt;}
.yd6{bottom:228.186667pt;}
.yad{bottom:236.346667pt;}
.y29{bottom:242.426667pt;}
.y5d{bottom:243.706667pt;}
.y81{bottom:245.786667pt;}
.yd5{bottom:247.706667pt;}
.yac{bottom:255.106667pt;}
.y28{bottom:261.186667pt;}
.y5c{bottom:262.466667pt;}
.y80{bottom:264.546667pt;}
.yd4{bottom:267.106667pt;}
.yab{bottom:273.826667pt;}
.y27{bottom:279.906667pt;}
.y5b{bottom:281.186667pt;}
.y7f{bottom:283.266667pt;}
.yd3{bottom:286.466667pt;}
.yaa{bottom:292.546667pt;}
.y26{bottom:298.626667pt;}
.y5a{bottom:299.906667pt;}
.y7e{bottom:301.986667pt;}
.yd2{bottom:305.346667pt;}
.ya9{bottom:311.266667pt;}
.y25{bottom:317.346667pt;}
.y59{bottom:318.626667pt;}
.y7d{bottom:320.706667pt;}
.yd1{bottom:324.706667pt;}
.ya8{bottom:329.986667pt;}
.y24{bottom:336.066667pt;}
.y58{bottom:337.346667pt;}
.y7c{bottom:339.426667pt;}
.yd0{bottom:344.066667pt;}
.ya7{bottom:348.706667pt;}
.y23{bottom:354.626667pt;}
.y57{bottom:356.066667pt;}
.y7b{bottom:358.146667pt;}
.ycf{bottom:362.786667pt;}
.ya6{bottom:367.426667pt;}
.y22{bottom:373.346667pt;}
.y56{bottom:374.786667pt;}
.y7a{bottom:376.866667pt;}
.yce{bottom:382.146667pt;}
.ya5{bottom:386.146667pt;}
.y21{bottom:392.066667pt;}
.y55{bottom:393.506667pt;}
.y79{bottom:395.586667pt;}
.ycd{bottom:401.026667pt;}
.ya4{bottom:404.866667pt;}
.y20{bottom:410.786667pt;}
.y54{bottom:412.226667pt;}
.y78{bottom:414.306667pt;}
.ycc{bottom:420.386667pt;}
.ya3{bottom:423.586667pt;}
.y1f{bottom:429.506667pt;}
.y53{bottom:430.946667pt;}
.y77{bottom:433.026667pt;}
.ycb{bottom:439.746667pt;}
.ya2{bottom:442.306667pt;}
.y1e{bottom:448.226667pt;}
.y52{bottom:449.666667pt;}
.y76{bottom:451.746667pt;}
.yca{bottom:458.626667pt;}
.ya1{bottom:459.426667pt;}
.y1d{bottom:466.946667pt;}
.y51{bottom:468.386667pt;}
.y75{bottom:470.466667pt;}
.yc9{bottom:477.986667pt;}
.ya0{bottom:483.426667pt;}
.y1c{bottom:485.666667pt;}
.y50{bottom:487.106667pt;}
.y74{bottom:489.186667pt;}
.yc8{bottom:496.706667pt;}
.y1b{bottom:504.413333pt;}
.y4f{bottom:505.853333pt;}
.y9f{bottom:507.453333pt;}
.y73{bottom:507.933333pt;}
.yc7{bottom:515.453333pt;}
.y1a{bottom:523.133333pt;}
.y4e{bottom:524.573333pt;}
.y72{bottom:526.653333pt;}
.y9d{bottom:531.613333pt;}
.yc6{bottom:534.173333pt;}
.y4d{bottom:543.293333pt;}
.y19{bottom:544.093333pt;}
.y71{bottom:545.373333pt;}
.yc5{bottom:552.893333pt;}
.y9c{bottom:560.573333pt;}
.y4c{bottom:562.013333pt;}
.y70{bottom:564.093333pt;}
.y18{bottom:570.653333pt;}
.yc4{bottom:571.453333pt;}
.y9b{bottom:579.293333pt;}
.y4b{bottom:580.733333pt;}
.y6f{bottom:582.813333pt;}
.y17{bottom:589.373333pt;}
.yc3{bottom:590.173333pt;}
.y9a{bottom:598.013333pt;}
.y4a{bottom:599.453333pt;}
.y6e{bottom:601.533333pt;}
.y16{bottom:608.093333pt;}
.yc2{bottom:608.893333pt;}
.y99{bottom:616.733333pt;}
.y49{bottom:618.173333pt;}
.y6d{bottom:620.253333pt;}
.y15{bottom:626.813333pt;}
.yc1{bottom:627.613333pt;}
.y98{bottom:635.453333pt;}
.y48{bottom:636.893333pt;}
.y6c{bottom:638.973333pt;}
.y14{bottom:645.533333pt;}
.yc0{bottom:646.333333pt;}
.y97{bottom:654.173333pt;}
.y47{bottom:655.613333pt;}
.y6b{bottom:657.693333pt;}
.y13{bottom:664.253333pt;}
.ybf{bottom:665.053333pt;}
.y96{bottom:672.893333pt;}
.y46{bottom:674.333333pt;}
.y6a{bottom:676.413333pt;}
.y12{bottom:682.973333pt;}
.ybe{bottom:683.773333pt;}
.y95{bottom:691.613333pt;}
.yee{bottom:693.053333pt;}
.y45{bottom:693.693333pt;}
.y69{bottom:695.133333pt;}
.y11{bottom:701.693333pt;}
.ybd{bottom:702.493333pt;}
.y94{bottom:710.333333pt;}
.yed{bottom:711.773333pt;}
.y44{bottom:712.413333pt;}
.y68{bottom:713.853333pt;}
.y10{bottom:720.413333pt;}
.ybc{bottom:721.213333pt;}
.y93{bottom:729.053333pt;}
.yec{bottom:730.493333pt;}
.y43{bottom:731.773333pt;}
.y67{bottom:732.573333pt;}
.yf{bottom:739.133333pt;}
.ybb{bottom:739.933333pt;}
.y92{bottom:747.773333pt;}
.yeb{bottom:749.213333pt;}
.y42{bottom:750.653333pt;}
.y66{bottom:751.293333pt;}
.ye{bottom:757.893333pt;}
.yba{bottom:758.693333pt;}
.y91{bottom:766.533333pt;}
.yea{bottom:767.973333pt;}
.y41{bottom:770.053333pt;}
.yb9{bottom:775.813333pt;}
.yd{bottom:778.533333pt;}
.y90{bottom:785.253333pt;}
.ye9{bottom:786.693333pt;}
.y40{bottom:788.773333pt;}
.yb8{bottom:799.973333pt;}
.yc{bottom:801.893333pt;}
.y8f{bottom:803.973333pt;}
.ye8{bottom:805.413333pt;}
.y3f{bottom:807.493333pt;}
.yb{bottom:820.613333pt;}
.y8e{bottom:822.693333pt;}
.yb7{bottom:823.973333pt;}
.y3e{bottom:826.213333pt;}
.ya{bottom:835.493333pt;}
.y8d{bottom:842.053333pt;}
.ye7{bottom:842.693333pt;}
.y3d{bottom:844.933333pt;}
.yb6{bottom:847.973333pt;}
.y9{bottom:855.333333pt;}
.ye6{bottom:861.413333pt;}
.y8c{bottom:861.573333pt;}
.y3c{bottom:863.653333pt;}
.yb5{bottom:872.133333pt;}
.y8{bottom:877.733333pt;}
.ye5{bottom:880.133333pt;}
.y8b{bottom:880.933333pt;}
.y3b{bottom:882.373333pt;}
.ye4{bottom:898.853333pt;}
.y8a{bottom:900.453333pt;}
.y3a{bottom:901.093333pt;}
.y7{bottom:907.653333pt;}
.ye3{bottom:917.573333pt;}
.y39{bottom:919.813333pt;}
.ye2{bottom:936.453333pt;}
.y38{bottom:938.533333pt;}
.y5{bottom:943.333333pt;}
.ye1{bottom:955.813333pt;}
.y37{bottom:957.253333pt;}
.y4{bottom:971.973333pt;}
.ye0{bottom:974.533333pt;}
.y36{bottom:975.973333pt;}
.ydf{bottom:993.893333pt;}
.y35{bottom:994.693333pt;}
.y3{bottom:1000.453333pt;}
.yde{bottom:1012.800000pt;}
.y34{bottom:1013.440000pt;}
.y2{bottom:1029.120000pt;}
.y33{bottom:1040.800000pt;}
.y1{bottom:1059.840000pt;}
.y32{bottom:1061.440000pt;}
.ha{height:18.720000pt;}
.hb{height:18.752000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.hc{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:43.872000pt;}
.wf{width:44.800000pt;}
.wc{width:53.760000pt;}
.wa{width:53.792000pt;}
.wb{width:53.920000pt;}
.w9{width:55.680000pt;}
.w3{width:76.960000pt;}
.w8{width:76.992000pt;}
.wd{width:100.320000pt;}
.w4{width:103.392000pt;}
.w6{width:104.480000pt;}
.w7{width:123.552000pt;}
.w5{width:125.952000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.960000pt;}
.x14{left:2.880000pt;}
.x17{left:5.120000pt;}
.x1d{left:7.200000pt;}
.xb{left:9.280000pt;}
.x15{left:11.680000pt;}
.x10{left:12.954667pt;}
.x1c{left:14.720000pt;}
.xf{left:16.954667pt;}
.xc{left:18.880000pt;}
.x19{left:27.040000pt;}
.xd{left:36.960000pt;}
.xe{left:39.240000pt;}
.x1{left:47.999988pt;}
.x2{left:71.999988pt;}
.x4{left:82.751988pt;}
.x3{left:96.031988pt;}
.x1e{left:119.391988pt;}
.x5{left:123.072000pt;}
.x7{left:203.386667pt;}
.x11{left:243.066667pt;}
.x18{left:299.106667pt;}
.x8{left:310.146667pt;}
.x12{left:323.426667pt;}
.x13{left:382.466667pt;}
.x1a{left:402.786667pt;}
.x1f{left:420.893322pt;}
.x9{left:439.453333pt;}
.x1b{left:450.013333pt;}
.x16{left:496.893333pt;}
.xa{left:547.293333pt;}
.x20{left:746.053322pt;}
}




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