
    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_1b5b595b7a077ac51788e663.woff')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_6088cdde84443420ac43f8be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_c58e4feae225fc93472866f9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.059000;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_c6b02b9e61d13575aaf2b40c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_f2a360c0ee329af0f6b5d4e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.028000;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_e4013394543dd9c0f27ce1bf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_1d8595f853244736c6fe9dfa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_2db51aacc190a3164447166d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0710dc6014f79769dcc93b42.woff')format("woff");}.ff9{font-family:ff9;line-height:0.947266;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_d9b43fab475d5896d5cfc317.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c3710b680a0b5cecbe93eb84.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8b2fbb170433f546911641e8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:23.688000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.936000px;}
.ls11{letter-spacing:1.872000px;}
.lsd{letter-spacing:3.096000px;}
.ls6{letter-spacing:4.260000px;}
.ls14{letter-spacing:4.752000px;}
.lsc{letter-spacing:6.192000px;}
.ls13{letter-spacing:6.600000px;}
.ls12{letter-spacing:7.488000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.ls5{letter-spacing:75.180000px;}
.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:-63.576000px;}
.ws7{word-spacing:-49.248000px;}
.wsf{word-spacing:-48.888000px;}
.ws11{word-spacing:-48.816000px;}
.ws10{word-spacing:-48.672000px;}
.ws1{word-spacing:-48.528000px;}
.ws6{word-spacing:-40.440000px;}
.wsd{word-spacing:-33.912000px;}
.ws15{word-spacing:-32.592000px;}
.ws14{word-spacing:-32.352000px;}
.ws2{word-spacing:-25.320000px;}
.ws12{word-spacing:-20.952000px;}
.ws9{word-spacing:-20.232000px;}
.ws5{word-spacing:-16.860000px;}
.ws3{word-spacing:-14.162400px;}
.ws16{word-spacing:-13.488000px;}
.ws13{word-spacing:-12.336000px;}
.ws0{word-spacing:-8.400000px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:3.312000px;}
.wsa{word-spacing:3.384000px;}
.wsc{word-spacing:3.456000px;}
.wse{word-spacing:23.688000px;}
._0{margin-left:-940.440000px;}
._15{margin-left:-74.424000px;}
._31{margin-left:-20.100000px;}
._32{margin-left:-16.944000px;}
._14{margin-left:-15.480000px;}
._13{margin-left:-13.440000px;}
._7{margin-left:-12.120000px;}
._8{margin-left:-10.500000px;}
._e{margin-left:-7.860000px;}
._1{margin-left:-5.940000px;}
._37{margin-left:-4.752000px;}
._6{margin-left:-3.660000px;}
._10{margin-left:-2.580000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._f{width:3.168000px;}
._4{width:4.200000px;}
._c{width:5.424000px;}
._d{width:7.181400px;}
._5{width:8.520000px;}
._11{width:9.636000px;}
._9{width:10.740000px;}
._a{width:13.140000px;}
._b{width:16.140000px;}
._1b{width:23.952000px;}
._1e{width:25.032000px;}
._36{width:33.312000px;}
._1c{width:34.452000px;}
._35{width:37.656000px;}
._22{width:49.392000px;}
._24{width:53.136000px;}
._25{width:57.072000px;}
._23{width:62.280000px;}
._34{width:64.224000px;}
._33{width:69.768000px;}
._18{width:73.080000px;}
._16{width:75.180000px;}
._17{width:77.280000px;}
._19{width:99.180000px;}
._2a{width:121.248000px;}
._28{width:129.528000px;}
._29{width:147.240000px;}
._1d{width:187.128000px;}
._12{width:201.540000px;}
._30{width:208.584000px;}
._2e{width:211.968000px;}
._1f{width:219.456000px;}
._1a{width:222.480000px;}
._26{width:254.232000px;}
._27{width:258.696000px;}
._2d{width:261.936000px;}
._20{width:272.160000px;}
._21{width:278.928000px;}
._2c{width:322.200000px;}
._2f{width:327.816000px;}
._2b{width:333.936000px;}
.fc1{color:rgb(24,26,49);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs5{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:76.760700px;}
.y1{bottom:93.260700px;}
.y69{bottom:140.696850px;}
.y85{bottom:143.672700px;}
.ya9{bottom:143.684700px;}
.ye1{bottom:143.726700px;}
.yc8{bottom:144.134700px;}
.y46{bottom:144.266700px;}
.y20{bottom:145.099350px;}
.y107{bottom:159.254850px;}
.y68{bottom:163.340850px;}
.y45{bottom:166.010700px;}
.ya8{bottom:166.040700px;}
.ye0{bottom:166.082700px;}
.y84{bottom:166.316700px;}
.yc7{bottom:166.778700px;}
.y1f{bottom:166.843350px;}
.y106{bottom:178.004850px;}
.y67{bottom:185.984850px;}
.y44{bottom:187.760700px;}
.ya7{bottom:188.396700px;}
.ydf{bottom:188.438700px;}
.y1e{bottom:188.593350px;}
.y83{bottom:188.960700px;}
.yc6{bottom:189.422700px;}
.y105{bottom:196.754850px;}
.y66{bottom:208.628850px;}
.y43{bottom:209.510700px;}
.y1d{bottom:210.343350px;}
.ya6{bottom:210.752700px;}
.yde{bottom:210.794700px;}
.yc5{bottom:212.066700px;}
.y104{bottom:215.504850px;}
.y65{bottom:231.272850px;}
.y1c{bottom:232.171350px;}
.ya5{bottom:233.108700px;}
.ydd{bottom:233.150700px;}
.y82{bottom:234.266700px;}
.yc4{bottom:234.710700px;}
.y103{bottom:253.004850px;}
.y42{bottom:253.016700px;}
.y1b{bottom:253.915350px;}
.y64{bottom:253.916850px;}
.ya4{bottom:255.464700px;}
.ydc{bottom:255.506700px;}
.y81{bottom:256.910700px;}
.yc3{bottom:257.354700px;}
.y102{bottom:271.754850px;}
.y41{bottom:274.796700px;}
.y1a{bottom:275.659350px;}
.y63{bottom:276.560850px;}
.ya3{bottom:277.820700px;}
.ydb{bottom:277.862700px;}
.yc2{bottom:279.998700px;}
.y101{bottom:290.504850px;}
.y40{bottom:296.540700px;}
.y19{bottom:297.403350px;}
.y62{bottom:299.204850px;}
.ya2{bottom:300.176700px;}
.yda{bottom:300.218700px;}
.y80{bottom:302.216700px;}
.yc1{bottom:302.642700px;}
.y100{bottom:309.254850px;}
.y3f{bottom:318.284700px;}
.y18{bottom:319.147350px;}
.y61{bottom:321.848850px;}
.ya1{bottom:322.532700px;}
.yd9{bottom:322.574700px;}
.y7f{bottom:324.860700px;}
.yc0{bottom:325.286700px;}
.y3e{bottom:340.028700px;}
.y17{bottom:340.891350px;}
.ya0{bottom:344.888700px;}
.yd8{bottom:344.930700px;}
.yff{bottom:346.754850px;}
.ybf{bottom:347.930700px;}
.y60{bottom:355.904850px;}
.y3d{bottom:361.772700px;}
.y16{bottom:362.635350px;}
.y9f{bottom:367.244700px;}
.yd7{bottom:367.286700px;}
.ybe{bottom:370.574700px;}
.y5f{bottom:378.548850px;}
.y7e{bottom:381.560700px;}
.y3c{bottom:383.516700px;}
.y15{bottom:384.379350px;}
.yfe{bottom:388.004850px;}
.y9e{bottom:389.600700px;}
.yd6{bottom:389.642700px;}
.ybd{bottom:393.218700px;}
.y5e{bottom:401.192850px;}
.y3b{bottom:405.410700px;}
.y14{bottom:406.123350px;}
.yfd{bottom:406.754850px;}
.y9d{bottom:411.956700px;}
.yd5{bottom:411.998700px;}
.y7d{bottom:415.610700px;}
.ybc{bottom:415.862700px;}
.y5d{bottom:423.836850px;}
.yfc{bottom:425.504850px;}
.y3a{bottom:427.154700px;}
.y13{bottom:427.867350px;}
.y9c{bottom:434.312700px;}
.yd4{bottom:434.354700px;}
.ybb{bottom:438.506700px;}
.yfb{bottom:444.254850px;}
.y5c{bottom:446.480850px;}
.y39{bottom:448.898700px;}
.y12{bottom:449.611350px;}
.y9b{bottom:456.668700px;}
.yd3{bottom:456.710700px;}
.y7c{bottom:460.916700px;}
.yba{bottom:461.150700px;}
.yfa{bottom:463.004850px;}
.y38{bottom:470.642700px;}
.y11{bottom:471.355350px;}
.y9a{bottom:479.024700px;}
.yd2{bottom:479.060700px;}
.y5b{bottom:480.536850px;}
.yf9{bottom:481.754850px;}
.y7b{bottom:483.560700px;}
.yb9{bottom:483.794700px;}
.y37{bottom:492.386700px;}
.y10{bottom:493.099350px;}
.yf8{bottom:500.504850px;}
.y99{bottom:501.380700px;}
.y5a{bottom:503.180850px;}
.yb8{bottom:506.438700px;}
.y36{bottom:514.130700px;}
.yf{bottom:514.861350px;}
.yf7{bottom:519.254850px;}
.yd1{bottom:523.646700px;}
.y98{bottom:523.736700px;}
.y59{bottom:525.824850px;}
.y7a{bottom:528.866700px;}
.yb7{bottom:529.082700px;}
.y35{bottom:535.874700px;}
.ye{bottom:536.605350px;}
.yf6{bottom:544.388700px;}
.yd0{bottom:546.002700px;}
.y97{bottom:546.092700px;}
.y58{bottom:548.468850px;}
.y79{bottom:551.510700px;}
.yb6{bottom:551.726700px;}
.y34{bottom:557.618700px;}
.yd{bottom:558.349350px;}
.ycf{bottom:568.358700px;}
.y96{bottom:568.448700px;}
.y57{bottom:571.112850px;}
.yb5{bottom:574.370700px;}
.y33{bottom:579.362700px;}
.yc{bottom:580.093350px;}
.yf5{bottom:589.388700px;}
.yce{bottom:590.714700px;}
.y95{bottom:590.804700px;}
.yb4{bottom:597.014700px;}
.y32{bottom:601.106700px;}
.yb{bottom:601.843350px;}
.yf4{bottom:604.388700px;}
.y56{bottom:605.168850px;}
.y78{bottom:608.210700px;}
.ycd{bottom:613.070700px;}
.y94{bottom:613.160700px;}
.yf3{bottom:619.388700px;}
.yb3{bottom:619.658700px;}
.y31{bottom:622.850700px;}
.y55{bottom:627.812850px;}
.yf2{bottom:634.388700px;}
.ycc{bottom:635.426700px;}
.y93{bottom:635.510700px;}
.y77{bottom:642.260700px;}
.yb2{bottom:642.302700px;}
.y30{bottom:644.594700px;}
.ya{bottom:645.343350px;}
.yf1{bottom:649.388700px;}
.y54{bottom:650.456850px;}
.ycb{bottom:657.782700px;}
.y92{bottom:657.860700px;}
.y9{bottom:664.093350px;}
.yf0{bottom:664.388700px;}
.yb1{bottom:664.946700px;}
.y2f{bottom:666.338700px;}
.y53{bottom:673.100850px;}
.yef{bottom:679.388700px;}
.yca{bottom:680.138700px;}
.y91{bottom:680.210700px;}
.y8{bottom:682.843350px;}
.yb0{bottom:687.590700px;}
.y76{bottom:687.632850px;}
.y2e{bottom:688.082700px;}
.yee{bottom:694.388700px;}
.y52{bottom:695.744850px;}
.yc9{bottom:702.494700px;}
.yed{bottom:709.388700px;}
.y2d{bottom:709.826700px;}
.yaf{bottom:710.234700px;}
.y75{bottom:710.276850px;}
.yec{bottom:724.388700px;}
.y90{bottom:724.850700px;}
.y7{bottom:724.979250px;}
.y51{bottom:729.800850px;}
.y2c{bottom:731.570700px;}
.yae{bottom:732.878700px;}
.y74{bottom:732.920850px;}
.yeb{bottom:739.388700px;}
.y73{bottom:744.314850px;}
.y6{bottom:746.729250px;}
.y8f{bottom:747.206700px;}
.y50{bottom:751.706850px;}
.y2b{bottom:753.314700px;}
.yea{bottom:754.388700px;}
.yad{bottom:755.522700px;}
.y72{bottom:766.958850px;}
.ye9{bottom:769.388700px;}
.y8e{bottom:769.562700px;}
.y4f{bottom:773.612850px;}
.y2a{bottom:775.058700px;}
.yac{bottom:778.166700px;}
.ye8{bottom:784.388700px;}
.y71{bottom:789.602850px;}
.y5{bottom:791.865000px;}
.y8d{bottom:791.918700px;}
.y4e{bottom:795.518850px;}
.y29{bottom:796.802700px;}
.ye7{bottom:799.388700px;}
.yab{bottom:800.834850px;}
.y70{bottom:812.246850px;}
.y4{bottom:813.615000px;}
.y8c{bottom:814.274700px;}
.ye6{bottom:814.388700px;}
.y4d{bottom:817.424850px;}
.y28{bottom:818.546700px;}
.yaa{bottom:823.478850px;}
.y6f{bottom:834.890850px;}
.ye5{bottom:835.760700px;}
.y8b{bottom:836.630700px;}
.y4c{bottom:839.330850px;}
.y27{bottom:840.290700px;}
.y6e{bottom:857.534850px;}
.y8a{bottom:858.986700px;}
.y4b{bottom:861.236850px;}
.y26{bottom:862.034700px;}
.y6d{bottom:880.178850px;}
.y3{bottom:880.760700px;}
.y89{bottom:881.342700px;}
.y4a{bottom:883.142850px;}
.y25{bottom:883.778700px;}
.y6c{bottom:902.822850px;}
.ye4{bottom:903.260700px;}
.y88{bottom:903.698700px;}
.y49{bottom:905.048850px;}
.y24{bottom:905.522700px;}
.y2{bottom:910.760700px;}
.y6b{bottom:925.466850px;}
.ye3{bottom:925.760700px;}
.y87{bottom:926.054700px;}
.y48{bottom:926.954850px;}
.y23{bottom:927.266700px;}
.y6a{bottom:948.110850px;}
.ye2{bottom:948.260700px;}
.y86{bottom:948.410700px;}
.y47{bottom:948.860850px;}
.y22{bottom:949.010700px;}
.hf{height:39.072000px;}
.h10{height:46.312500px;}
.hd{height:47.988281px;}
.he{height:48.840000px;}
.h8{height:49.675781px;}
.h4{height:50.580000px;}
.hc{height:51.222656px;}
.h2{height:57.890625px;}
.h5{height:61.136719px;}
.h6{height:69.468750px;}
.h9{height:69.890625px;}
.ha{height:71.788125px;}
.hb{height:72.244125px;}
.h7{height:72.316125px;}
.h3{height:115.781250px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x4{left:88.759800px;}
.x6{left:103.645800px;}
.x2{left:112.500000px;}
.x7{left:118.527750px;}
.x3{left:127.381950px;}
.x5{left:156.244800px;}
.x1{left:635.390550px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:21.056000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.832000pt;}
.ls11{letter-spacing:1.664000pt;}
.lsd{letter-spacing:2.752000pt;}
.ls6{letter-spacing:3.786667pt;}
.ls14{letter-spacing:4.224000pt;}
.lsc{letter-spacing:5.504000pt;}
.ls13{letter-spacing:5.866667pt;}
.ls12{letter-spacing:6.656000pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls5{letter-spacing:66.826667pt;}
.ws8{word-spacing:-56.512000pt;}
.ws7{word-spacing:-43.776000pt;}
.wsf{word-spacing:-43.456000pt;}
.ws11{word-spacing:-43.392000pt;}
.ws10{word-spacing:-43.264000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws6{word-spacing:-35.946667pt;}
.wsd{word-spacing:-30.144000pt;}
.ws15{word-spacing:-28.970667pt;}
.ws14{word-spacing:-28.757333pt;}
.ws2{word-spacing:-22.506667pt;}
.ws12{word-spacing:-18.624000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws5{word-spacing:-14.986667pt;}
.ws3{word-spacing:-12.588800pt;}
.ws16{word-spacing:-11.989333pt;}
.ws13{word-spacing:-10.965333pt;}
.ws0{word-spacing:-7.466667pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:2.944000pt;}
.wsa{word-spacing:3.008000pt;}
.wsc{word-spacing:3.072000pt;}
.wse{word-spacing:21.056000pt;}
._0{margin-left:-835.946667pt;}
._15{margin-left:-66.154667pt;}
._31{margin-left:-17.866667pt;}
._32{margin-left:-15.061333pt;}
._14{margin-left:-13.760000pt;}
._13{margin-left:-11.946667pt;}
._7{margin-left:-10.773333pt;}
._8{margin-left:-9.333333pt;}
._e{margin-left:-6.986667pt;}
._1{margin-left:-5.280000pt;}
._37{margin-left:-4.224000pt;}
._6{margin-left:-3.253333pt;}
._10{margin-left:-2.293333pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._f{width:2.816000pt;}
._4{width:3.733333pt;}
._c{width:4.821333pt;}
._d{width:6.383467pt;}
._5{width:7.573333pt;}
._11{width:8.565333pt;}
._9{width:9.546667pt;}
._a{width:11.680000pt;}
._b{width:14.346667pt;}
._1b{width:21.290667pt;}
._1e{width:22.250667pt;}
._36{width:29.610667pt;}
._1c{width:30.624000pt;}
._35{width:33.472000pt;}
._22{width:43.904000pt;}
._24{width:47.232000pt;}
._25{width:50.730667pt;}
._23{width:55.360000pt;}
._34{width:57.088000pt;}
._33{width:62.016000pt;}
._18{width:64.960000pt;}
._16{width:66.826667pt;}
._17{width:68.693333pt;}
._19{width:88.160000pt;}
._2a{width:107.776000pt;}
._28{width:115.136000pt;}
._29{width:130.880000pt;}
._1d{width:166.336000pt;}
._12{width:179.146667pt;}
._30{width:185.408000pt;}
._2e{width:188.416000pt;}
._1f{width:195.072000pt;}
._1a{width:197.760000pt;}
._26{width:225.984000pt;}
._27{width:229.952000pt;}
._2d{width:232.832000pt;}
._20{width:241.920000pt;}
._21{width:247.936000pt;}
._2c{width:286.400000pt;}
._2f{width:291.392000pt;}
._2b{width:296.832000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs5{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:68.231733pt;}
.y1{bottom:82.898400pt;}
.y69{bottom:125.063867pt;}
.y85{bottom:127.709067pt;}
.ya9{bottom:127.719733pt;}
.ye1{bottom:127.757067pt;}
.yc8{bottom:128.119733pt;}
.y46{bottom:128.237067pt;}
.y20{bottom:128.977200pt;}
.y107{bottom:141.559867pt;}
.y68{bottom:145.191867pt;}
.y45{bottom:147.565067pt;}
.ya8{bottom:147.591733pt;}
.ye0{bottom:147.629067pt;}
.y84{bottom:147.837067pt;}
.yc7{bottom:148.247733pt;}
.y1f{bottom:148.305200pt;}
.y106{bottom:158.226533pt;}
.y67{bottom:165.319867pt;}
.y44{bottom:166.898400pt;}
.ya7{bottom:167.463733pt;}
.ydf{bottom:167.501067pt;}
.y1e{bottom:167.638533pt;}
.y83{bottom:167.965067pt;}
.yc6{bottom:168.375733pt;}
.y105{bottom:174.893200pt;}
.y66{bottom:185.447867pt;}
.y43{bottom:186.231733pt;}
.y1d{bottom:186.971867pt;}
.ya6{bottom:187.335733pt;}
.yde{bottom:187.373067pt;}
.yc5{bottom:188.503733pt;}
.y104{bottom:191.559867pt;}
.y65{bottom:205.575867pt;}
.y1c{bottom:206.374533pt;}
.ya5{bottom:207.207733pt;}
.ydd{bottom:207.245067pt;}
.y82{bottom:208.237067pt;}
.yc4{bottom:208.631733pt;}
.y103{bottom:224.893200pt;}
.y42{bottom:224.903733pt;}
.y1b{bottom:225.702533pt;}
.y64{bottom:225.703867pt;}
.ya4{bottom:227.079733pt;}
.ydc{bottom:227.117067pt;}
.y81{bottom:228.365067pt;}
.yc3{bottom:228.759733pt;}
.y102{bottom:241.559867pt;}
.y41{bottom:244.263733pt;}
.y1a{bottom:245.030533pt;}
.y63{bottom:245.831867pt;}
.ya3{bottom:246.951733pt;}
.ydb{bottom:246.989067pt;}
.yc2{bottom:248.887733pt;}
.y101{bottom:258.226533pt;}
.y40{bottom:263.591733pt;}
.y19{bottom:264.358533pt;}
.y62{bottom:265.959867pt;}
.ya2{bottom:266.823733pt;}
.yda{bottom:266.861067pt;}
.y80{bottom:268.637067pt;}
.yc1{bottom:269.015733pt;}
.y100{bottom:274.893200pt;}
.y3f{bottom:282.919733pt;}
.y18{bottom:283.686533pt;}
.y61{bottom:286.087867pt;}
.ya1{bottom:286.695733pt;}
.yd9{bottom:286.733067pt;}
.y7f{bottom:288.765067pt;}
.yc0{bottom:289.143733pt;}
.y3e{bottom:302.247733pt;}
.y17{bottom:303.014533pt;}
.ya0{bottom:306.567733pt;}
.yd8{bottom:306.605067pt;}
.yff{bottom:308.226533pt;}
.ybf{bottom:309.271733pt;}
.y60{bottom:316.359867pt;}
.y3d{bottom:321.575733pt;}
.y16{bottom:322.342533pt;}
.y9f{bottom:326.439733pt;}
.yd7{bottom:326.477067pt;}
.ybe{bottom:329.399733pt;}
.y5f{bottom:336.487867pt;}
.y7e{bottom:339.165067pt;}
.y3c{bottom:340.903733pt;}
.y15{bottom:341.670533pt;}
.yfe{bottom:344.893200pt;}
.y9e{bottom:346.311733pt;}
.yd6{bottom:346.349067pt;}
.ybd{bottom:349.527733pt;}
.y5e{bottom:356.615867pt;}
.y3b{bottom:360.365067pt;}
.y14{bottom:360.998533pt;}
.yfd{bottom:361.559867pt;}
.y9d{bottom:366.183733pt;}
.yd5{bottom:366.221067pt;}
.y7d{bottom:369.431733pt;}
.ybc{bottom:369.655733pt;}
.y5d{bottom:376.743867pt;}
.yfc{bottom:378.226533pt;}
.y3a{bottom:379.693067pt;}
.y13{bottom:380.326533pt;}
.y9c{bottom:386.055733pt;}
.yd4{bottom:386.093067pt;}
.ybb{bottom:389.783733pt;}
.yfb{bottom:394.893200pt;}
.y5c{bottom:396.871867pt;}
.y39{bottom:399.021067pt;}
.y12{bottom:399.654533pt;}
.y9b{bottom:405.927733pt;}
.yd3{bottom:405.965067pt;}
.y7c{bottom:409.703733pt;}
.yba{bottom:409.911733pt;}
.yfa{bottom:411.559867pt;}
.y38{bottom:418.349067pt;}
.y11{bottom:418.982533pt;}
.y9a{bottom:425.799733pt;}
.yd2{bottom:425.831733pt;}
.y5b{bottom:427.143867pt;}
.yf9{bottom:428.226533pt;}
.y7b{bottom:429.831733pt;}
.yb9{bottom:430.039733pt;}
.y37{bottom:437.677067pt;}
.y10{bottom:438.310533pt;}
.yf8{bottom:444.893200pt;}
.y99{bottom:445.671733pt;}
.y5a{bottom:447.271867pt;}
.yb8{bottom:450.167733pt;}
.y36{bottom:457.005067pt;}
.yf{bottom:457.654533pt;}
.yf7{bottom:461.559867pt;}
.yd1{bottom:465.463733pt;}
.y98{bottom:465.543733pt;}
.y59{bottom:467.399867pt;}
.y7a{bottom:470.103733pt;}
.yb7{bottom:470.295733pt;}
.y35{bottom:476.333067pt;}
.ye{bottom:476.982533pt;}
.yf6{bottom:483.901067pt;}
.yd0{bottom:485.335733pt;}
.y97{bottom:485.415733pt;}
.y58{bottom:487.527867pt;}
.y79{bottom:490.231733pt;}
.yb6{bottom:490.423733pt;}
.y34{bottom:495.661067pt;}
.yd{bottom:496.310533pt;}
.ycf{bottom:505.207733pt;}
.y96{bottom:505.287733pt;}
.y57{bottom:507.655867pt;}
.yb5{bottom:510.551733pt;}
.y33{bottom:514.989067pt;}
.yc{bottom:515.638533pt;}
.yf5{bottom:523.901067pt;}
.yce{bottom:525.079733pt;}
.y95{bottom:525.159733pt;}
.yb4{bottom:530.679733pt;}
.y32{bottom:534.317067pt;}
.yb{bottom:534.971867pt;}
.yf4{bottom:537.234400pt;}
.y56{bottom:537.927867pt;}
.y78{bottom:540.631733pt;}
.ycd{bottom:544.951733pt;}
.y94{bottom:545.031733pt;}
.yf3{bottom:550.567733pt;}
.yb3{bottom:550.807733pt;}
.y31{bottom:553.645067pt;}
.y55{bottom:558.055867pt;}
.yf2{bottom:563.901067pt;}
.ycc{bottom:564.823733pt;}
.y93{bottom:564.898400pt;}
.y77{bottom:570.898400pt;}
.yb2{bottom:570.935733pt;}
.y30{bottom:572.973067pt;}
.ya{bottom:573.638533pt;}
.yf1{bottom:577.234400pt;}
.y54{bottom:578.183867pt;}
.ycb{bottom:584.695733pt;}
.y92{bottom:584.765067pt;}
.y9{bottom:590.305200pt;}
.yf0{bottom:590.567733pt;}
.yb1{bottom:591.063733pt;}
.y2f{bottom:592.301067pt;}
.y53{bottom:598.311867pt;}
.yef{bottom:603.901067pt;}
.yca{bottom:604.567733pt;}
.y91{bottom:604.631733pt;}
.y8{bottom:606.971867pt;}
.yb0{bottom:611.191733pt;}
.y76{bottom:611.229200pt;}
.y2e{bottom:611.629067pt;}
.yee{bottom:617.234400pt;}
.y52{bottom:618.439867pt;}
.yc9{bottom:624.439733pt;}
.yed{bottom:630.567733pt;}
.y2d{bottom:630.957067pt;}
.yaf{bottom:631.319733pt;}
.y75{bottom:631.357200pt;}
.yec{bottom:643.901067pt;}
.y90{bottom:644.311733pt;}
.y7{bottom:644.426000pt;}
.y51{bottom:648.711867pt;}
.y2c{bottom:650.285067pt;}
.yae{bottom:651.447733pt;}
.y74{bottom:651.485200pt;}
.yeb{bottom:657.234400pt;}
.y73{bottom:661.613200pt;}
.y6{bottom:663.759333pt;}
.y8f{bottom:664.183733pt;}
.y50{bottom:668.183867pt;}
.y2b{bottom:669.613067pt;}
.yea{bottom:670.567733pt;}
.yad{bottom:671.575733pt;}
.y72{bottom:681.741200pt;}
.ye9{bottom:683.901067pt;}
.y8e{bottom:684.055733pt;}
.y4f{bottom:687.655867pt;}
.y2a{bottom:688.941067pt;}
.yac{bottom:691.703733pt;}
.ye8{bottom:697.234400pt;}
.y71{bottom:701.869200pt;}
.y5{bottom:703.880000pt;}
.y8d{bottom:703.927733pt;}
.y4e{bottom:707.127867pt;}
.y29{bottom:708.269067pt;}
.ye7{bottom:710.567733pt;}
.yab{bottom:711.853200pt;}
.y70{bottom:721.997200pt;}
.y4{bottom:723.213333pt;}
.y8c{bottom:723.799733pt;}
.ye6{bottom:723.901067pt;}
.y4d{bottom:726.599867pt;}
.y28{bottom:727.597067pt;}
.yaa{bottom:731.981200pt;}
.y6f{bottom:742.125200pt;}
.ye5{bottom:742.898400pt;}
.y8b{bottom:743.671733pt;}
.y4c{bottom:746.071867pt;}
.y27{bottom:746.925067pt;}
.y6e{bottom:762.253200pt;}
.y8a{bottom:763.543733pt;}
.y4b{bottom:765.543867pt;}
.y26{bottom:766.253067pt;}
.y6d{bottom:782.381200pt;}
.y3{bottom:782.898400pt;}
.y89{bottom:783.415733pt;}
.y4a{bottom:785.015867pt;}
.y25{bottom:785.581067pt;}
.y6c{bottom:802.509200pt;}
.ye4{bottom:802.898400pt;}
.y88{bottom:803.287733pt;}
.y49{bottom:804.487867pt;}
.y24{bottom:804.909067pt;}
.y2{bottom:809.565067pt;}
.y6b{bottom:822.637200pt;}
.ye3{bottom:822.898400pt;}
.y87{bottom:823.159733pt;}
.y48{bottom:823.959867pt;}
.y23{bottom:824.237067pt;}
.y6a{bottom:842.765200pt;}
.ye2{bottom:842.898400pt;}
.y86{bottom:843.031733pt;}
.y47{bottom:843.431867pt;}
.y22{bottom:843.565067pt;}
.hf{height:34.730667pt;}
.h10{height:41.166667pt;}
.hd{height:42.656250pt;}
.he{height:43.413333pt;}
.h8{height:44.156250pt;}
.h4{height:44.960000pt;}
.hc{height:45.531250pt;}
.h2{height:51.458333pt;}
.h5{height:54.343750pt;}
.h6{height:61.750000pt;}
.h9{height:62.125000pt;}
.ha{height:63.811667pt;}
.hb{height:64.217000pt;}
.h7{height:64.281000pt;}
.h3{height:102.916667pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x4{left:78.897600pt;}
.x6{left:92.129600pt;}
.x2{left:100.000000pt;}
.x7{left:105.358000pt;}
.x3{left:113.228400pt;}
.x5{left:138.884267pt;}
.x1{left:564.791600pt;}
}




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