
    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_3090417715705097776495df.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_10032584e3bd40dd2c914073.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972000;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_4e5539172df083616ada57e9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_ed04fa0d2b19de5a63793ede.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_17d15a783e61ec59f24250d9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_b8fefb28098c775d3e807ef5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_d5ed3fd809e6669eaae88e04.woff')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_6e3a531b80df4e24f9a29899.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8099d2962886ecbd25b3a340.woff')format("woff");}.ff9{font-family:ff9;line-height:0.790000;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_511bb5310c115bc75a59fe1f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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_f0940a77165f325c5d7e22bb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1{vertical-align:31.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:1.500003px;}
.lsb{letter-spacing:107.960711px;}
.lsa{letter-spacing:107.971938px;}
.ls8{letter-spacing:107.972021px;}
.ls4{letter-spacing:107.972030px;}
.ls3{letter-spacing:107.986253px;}
.lsd{letter-spacing:107.991811px;}
.lsc{letter-spacing:107.997500px;}
.ls7{letter-spacing:108.000228px;}
.ls6{letter-spacing:108.000273px;}
.lse{letter-spacing:108.000354px;}
.ls2{letter-spacing:108.000408px;}
.ls1{letter-spacing:108.000426px;}
.ls5{letter-spacing:108.035441px;}
.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;}
}
.ws2{word-spacing:-22.176001px;}
.ws1a{word-spacing:-20.790001px;}
.ws8{word-spacing:-20.160000px;}
.ws3{word-spacing:-19.404000px;}
.ws4{word-spacing:-18.720001px;}
.ws5{word-spacing:-18.018001px;}
.ws1{word-spacing:-17.280001px;}
.ws1b{word-spacing:-16.632001px;}
.ws9{word-spacing:-15.246001px;}
.ws6{word-spacing:-13.860000px;}
.ws7{word-spacing:-12.936001px;}
.wsb{word-spacing:-0.077700px;}
.wsa{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:220.870476px;}
.ws18{word-spacing:242.964414px;}
.wse{word-spacing:277.270551px;}
.ws13{word-spacing:285.029470px;}
.wsf{word-spacing:286.471639px;}
.ws11{word-spacing:299.707823px;}
.ws12{word-spacing:300.020330px;}
.ws16{word-spacing:300.548977px;}
.ws15{word-spacing:304.842597px;}
.wsc{word-spacing:305.498151px;}
.ws10{word-spacing:315.274475px;}
.wsd{word-spacing:318.365530px;}
.ws14{word-spacing:320.079869px;}
.ws17{word-spacing:327.381173px;}
._a{margin-left:-67.680000px;}
._6{margin-left:-7.084087px;}
._5{margin-left:-5.829824px;}
._2{margin-left:-4.446000px;}
._7{margin-left:-3.385912px;}
._1{margin-left:-2.340000px;}
._3{margin-left:-1.294088px;}
._4{width:1.560000px;}
._0{width:3.042000px;}
._9{width:6.832089px;}
._8{width:7.956001px;}
._e{width:108.000426px;}
._c{width:157.502140px;}
._b{width:187.907189px;}
._d{width:256.690138px;}
._f{width:427.988273px;}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(243,243,243);}
.fc4{color:rgb(89,89,89);}
.fc7{color:rgb(158,158,158);}
.fcd{color:rgb(0,255,0);}
.fc1{color:rgb(65,130,186);}
.fc8{color:rgb(67,67,67);}
.fc5{color:rgb(53,107,153);}
.fc6{color:rgb(147,196,125);}
.fc9{color:rgb(0,151,167);}
.fcb{color:rgb(255,0,0);}
.fca{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fs9{font-size:37.795200px;}
.fs11{font-size:48.000003px;}
.fs3{font-size:54.000002px;}
.fsb{font-size:56.000003px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:66.000004px;}
.fs10{font-size:66.600007px;}
.fs8{font-size:72.000002px;}
.fsf{font-size:77.699999px;}
.fs1{font-size:78.000005px;}
.fs7{font-size:84.000000px;}
.fse{font-size:88.800006px;}
.fsa{font-size:90.000003px;}
.fs6{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fs5{font-size:180.000006px;}
.fsd{font-size:216.000007px;}
.fs0{font-size:234.000007px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.051141px;}
.y5{bottom:3.599812px;}
.y54{bottom:56.614837px;}
.y19{bottom:59.875497px;}
.yd4{bottom:61.495453px;}
.ybf{bottom:67.055551px;}
.y59{bottom:72.745453px;}
.yb6{bottom:74.995520px;}
.y2a{bottom:77.245521px;}
.y34{bottom:81.745453px;}
.y84{bottom:84.028551px;}
.y18{bottom:84.625498px;}
.y4a{bottom:89.546271px;}
.yd3{bottom:90.745453px;}
.y9a{bottom:91.870521px;}
.y94{bottom:93.601311px;}
.ybe{bottom:96.305552px;}
.yb5{bottom:99.745521px;}
.y58{bottom:101.995454px;}
.ya7{bottom:106.002343px;}
.y29{bottom:106.495521px;}
.y83{bottom:107.284540px;}
.y17{bottom:110.995522px;}
.y33{bottom:112.240480px;}
.y49{bottom:112.946283px;}
.y93{bottom:113.215012px;}
.y99{bottom:121.120522px;}
.yd2{bottom:121.240424px;}
.y3d{bottom:122.245454px;}
.yca{bottom:122.245522px;}
.yb4{bottom:124.495522px;}
.ybd{bottom:125.555553px;}
.y82{bottom:128.488575px;}
.y40{bottom:132.490481px;}
.y5f{bottom:134.739817px;}
.ya6{bottom:135.159318px;}
.y72{bottom:135.250444px;}
.y28{bottom:135.745522px;}
.y92{bottom:135.992212px;}
.y48{bottom:136.346272px;}
.y16{bottom:138.625500px;}
.yb3{bottom:149.245523px;}
.y98{bottom:150.370523px;}
.yc9{bottom:151.495523px;}
.y81{bottom:151.744575px;}
.y3c{bottom:152.740482px;}
.ybc{bottom:154.805554px;}
.y32{bottom:157.750501px;}
.y47{bottom:159.746273px;}
.y5e{bottom:159.939813px;}
.y64{bottom:160.861041px;}
.y71{bottom:161.620456px;}
.ya5{bottom:162.312847px;}
.y15{bottom:164.995523px;}
.y80{bottom:172.948576px;}
.yb2{bottom:173.995524px;}
.y91{bottom:175.667499px;}
.y21{bottom:175.702603px;}
.y97{bottom:178.000501px;}
.y3f{bottom:179.620524px;}
.yc8{bottom:180.745524px;}
.y31{bottom:182.500501px;}
.y46{bottom:183.146274px;}
.y5d{bottom:185.139819px;}
.y63{bottom:186.061048px;}
.ybb{bottom:186.170555px;}
.y70{bottom:189.250479px;}
.ya4{bottom:189.466422px;}
.y53{bottom:193.120524px;}
.y27{bottom:194.245524px;}
.y14{bottom:195.490517px;}
.y20{bottom:195.820502px;}
.y7f{bottom:197.572554px;}
.y90{bottom:197.811977px;}
.yb1{bottom:199.180506px;}
.y3b{bottom:199.870524px;}
.y96{bottom:204.370525px;}
.y30{bottom:208.870525px;}
.yc7{bottom:209.995525px;}
.y5c{bottom:210.339813px;}
.y62{bottom:211.261042px;}
.y6f{bottom:214.000480px;}
.y1f{bottom:216.250502px;}
.ya3{bottom:216.619951px;}
.yd1{bottom:216.745502px;}
.y3{bottom:217.467404px;}
.y8f{bottom:219.956478px;}
.y52{bottom:222.370503px;}
.y26{bottom:224.740518px;}
.y45{bottom:228.169327px;}
.y3a{bottom:229.120503px;}
.y95{bottom:232.000503px;}
.y5b{bottom:235.539812px;}
.y61{bottom:236.461040px;}
.y2f{bottom:236.500503px;}
.y6e{bottom:237.940481px;}
.y57{bottom:238.120503px;}
.yc5{bottom:239.245503px;}
.y7e{bottom:239.248541px;}
.yb0{bottom:240.370503px;}
.y13{bottom:241.000503px;}
.y8e{bottom:242.733667px;}
.ya2{bottom:243.773492px;}
.yd0{bottom:244.375503px;}
.y2{bottom:244.467405px;}
.y51{bottom:251.620504px;}
.y39{bottom:258.370504px;}
.ya{bottom:258.985519px;}
.y6d{bottom:261.250481px;}
.y2e{bottom:261.250504px;}
.y3e{bottom:262.870504px;}
.y7d{bottom:263.188541px;}
.yda{bottom:264.311674px;}
.yaf{bottom:265.120504px;}
.y12{bottom:265.750504px;}
.y68{bottom:266.337025px;}
.y1e{bottom:267.370504px;}
.yc4{bottom:268.495504px;}
.ycf{bottom:269.125504px;}
.yc6{bottom:269.740497px;}
.y25{bottom:270.250504px;}
.ya1{bottom:270.927022px;}
.y44{bottom:274.969335px;}
.y50{bottom:281.365505px;}
.yd9{bottom:282.311675px;}
.y8d{bottom:282.408953px;}
.y2c{bottom:284.245505px;}
.y6c{bottom:287.620494px;}
.y2d{bottom:287.620505px;}
.y7c{bottom:287.812542px;}
.y38{bottom:288.865520px;}
.yae{bottom:289.870505px;}
.y11{bottom:290.500505px;}
.yce{bottom:293.875505px;}
.y24{bottom:295.000505px;}
.y1d{bottom:297.865520px;}
.ya0{bottom:298.080585px;}
.y43{bottom:298.369329px;}
.yc3{bottom:298.990498px;}
.y8c{bottom:304.553443px;}
.yba{bottom:305.555537px;}
.y9{bottom:310.735498px;}
.y2b{bottom:313.990506px;}
.y4f{bottom:314.740521px;}
.yad{bottom:315.055509px;}
.y6b{bottom:316.870494px;}
.y10{bottom:316.870506px;}
.ycd{bottom:318.625506px;}
.y23{bottom:321.370506px;}
.y42{bottom:321.769327px;}
.y9f{bottom:325.234126px;}
.y60{bottom:327.146101px;}
.yd8{bottom:327.323255px;}
.y8b{bottom:327.330621px;}
.y7b{bottom:329.488529px;}
.yb9{bottom:334.805538px;}
.y37{bottom:335.995506px;}
.y56{bottom:343.375507px;}
.y1c{bottom:344.995507px;}
.y6a{bottom:346.120495px;}
.yf{bottom:347.365499px;}
.yd7{bottom:348.921014px;}
.y22{bottom:351.865499px;}
.y9e{bottom:352.387678px;}
.y7a{bottom:353.428529px;}
.yac{bottom:356.245507px;}
.y4e{bottom:361.870507px;}
.y8{bottom:362.860496px;}
.y65{bottom:363.512357px;}
.yb8{bottom:364.055538px;}
.y36{bottom:365.245507px;}
.y8a{bottom:366.373219px;}
.ycc{bottom:368.125507px;}
.yd6{bottom:368.721015px;}
.y55{bottom:369.745507px;}
.y1b{bottom:372.625507px;}
.y5a{bottom:373.234092px;}
.yc2{bottom:375.370501px;}
.y69{bottom:376.615500px;}
.y79{bottom:376.684530px;}
.y9d{bottom:379.541208px;}
.yab{bottom:380.995508px;}
.y89{bottom:385.354219px;}
.y4d{bottom:391.120508px;}
.y1{bottom:391.734577px;}
.ye{bottom:394.495508px;}
.yb7{bottom:395.420539px;}
.y78{bottom:397.204520px;}
.y1a{bottom:397.375508px;}
.y41{bottom:399.174242px;}
.y7{bottom:399.610501px;}
.y88{bottom:404.967909px;}
.yaa{bottom:405.745509px;}
.yc1{bottom:405.865501px;}
.y9c{bottom:406.694760px;}
.y77{bottom:418.408509px;}
.y4c{bottom:420.865514px;}
.yd{bottom:423.745509px;}
.yd5{bottom:426.045701px;}
.y87{bottom:427.112409px;}
.ya9{bottom:430.495509px;}
.y9b{bottom:440.788749px;}
.y76{bottom:443.032510px;}
.y86{bottom:449.256910px;}
.y6{bottom:451.360514px;}
.yc{bottom:454.240514px;}
.ya8{bottom:455.680511px;}
.y67{bottom:457.813026px;}
.yc0{bottom:468.566213px;}
.y75{bottom:470.392511px;}
.y85{bottom:472.034111px;}
.ydb{bottom:476.942356px;}
.y66{bottom:477.613026px;}
.y35{bottom:486.456752px;}
.y73{bottom:488.910225px;}
.y74{bottom:542.932706px;}
.yb{bottom:548.747245px;}
.ycb{bottom:548.747837px;}
.y4b{bottom:572.503884px;}
.hb{height:27.515939px;}
.h1c{height:34.945315px;}
.h16{height:37.584002px;}
.h4{height:39.366212px;}
.ha{height:42.282001px;}
.h3{height:46.980000px;}
.h10{height:48.049807px;}
.h1b{height:48.082034px;}
.h11{height:51.678003px;}
.h15{height:52.147805px;}
.hf{height:52.704002px;}
.h9{height:56.376002px;}
.hc{height:56.824223px;}
.h14{height:60.839100px;}
.h2{height:61.074004px;}
.h1d{height:61.154297px;}
.h18{height:61.195312px;}
.h1a{height:61.199857px;}
.h8{height:65.772000px;}
.h13{height:69.530405px;}
.hd{height:70.470002px;}
.h7{height:75.168005px;}
.he{height:75.348003px;}
.h19{height:78.626956px;}
.h17{height:78.679690px;}
.h5{height:84.564003px;}
.h6{height:140.940005px;}
.h12{height:169.128005px;}
.h1{height:183.222006px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2c{left:41.746898px;}
.x40{left:44.961582px;}
.x1f{left:46.934059px;}
.x6{left:57.631857px;}
.x9{left:59.447400px;}
.x1c{left:61.347606px;}
.x1{left:65.740112px;}
.x2{left:74.512763px;}
.x1d{left:89.634211px;}
.x1b{left:92.372416px;}
.x12{left:100.939964px;}
.x41{left:102.592683px;}
.x7{left:111.631864px;}
.xa{left:115.262959px;}
.x20{left:130.588582px;}
.x42{left:142.269690px;}
.x17{left:154.939966px;}
.xe{left:171.067899px;}
.xb{left:175.559107px;}
.xd{left:186.586133px;}
.x34{left:200.964584px;}
.x2b{left:205.509337px;}
.x45{left:208.939968px;}
.x2e{left:225.980985px;}
.xf{left:227.785912px;}
.x44{left:235.101378px;}
.x18{left:245.964585px;}
.x21{left:255.953663px;}
.x26{left:262.224573px;}
.x1a{left:273.466263px;}
.x2f{left:284.581814px;}
.x27{left:301.901578px;}
.x5{left:336.916631px;}
.xc{left:359.656122px;}
.x3{left:360.849960px;}
.x30{left:371.491786px;}
.x14{left:383.776089px;}
.x3f{left:401.731078px;}
.x2d{left:403.306078px;}
.x25{left:411.968589px;}
.x43{left:415.006090px;}
.x13{left:442.028590px;}
.x16{left:458.543523px;}
.x15{left:468.508987px;}
.x23{left:483.608513px;}
.x1e{left:489.826233px;}
.x46{left:500.911002px;}
.x47{left:517.418310px;}
.x11{left:544.043447px;}
.x8{left:562.718426px;}
.x31{left:563.726041px;}
.x32{left:619.392946px;}
.x4b{left:629.326041px;}
.x24{left:648.052839px;}
.x29{left:663.672410px;}
.x33{left:675.070469px;}
.x22{left:677.415397px;}
.x10{left:685.639843px;}
.x2a{left:703.349415px;}
.x48{left:713.391773px;}
.x35{left:753.416819px;}
.x3d{left:755.736772px;}
.x3e{left:760.490195px;}
.x37{left:764.284239px;}
.x38{left:766.591967px;}
.x3a{left:769.906921px;}
.x36{left:771.327340px;}
.x39{left:773.767259px;}
.x3b{left:774.965910px;}
.x3c{left:776.788585px;}
.x28{left:888.601199px;}
.x49{left:929.746042px;}
.x4a{left:968.979339px;}
.x19{left:1026.192265px;}
.x4{left:1034.648921px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:1.333336pt;}
.lsb{letter-spacing:95.965076pt;}
.lsa{letter-spacing:95.975056pt;}
.ls8{letter-spacing:95.975130pt;}
.ls4{letter-spacing:95.975138pt;}
.ls3{letter-spacing:95.987780pt;}
.lsd{letter-spacing:95.992721pt;}
.lsc{letter-spacing:95.997778pt;}
.ls7{letter-spacing:96.000203pt;}
.ls6{letter-spacing:96.000243pt;}
.lse{letter-spacing:96.000315pt;}
.ls2{letter-spacing:96.000363pt;}
.ls1{letter-spacing:96.000379pt;}
.ls5{letter-spacing:96.031503pt;}
.ws2{word-spacing:-19.712001pt;}
.ws1a{word-spacing:-18.480001pt;}
.ws8{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.248000pt;}
.ws4{word-spacing:-16.640001pt;}
.ws5{word-spacing:-16.016001pt;}
.ws1{word-spacing:-15.360000pt;}
.ws1b{word-spacing:-14.784000pt;}
.ws9{word-spacing:-13.552001pt;}
.ws6{word-spacing:-12.320000pt;}
.ws7{word-spacing:-11.498667pt;}
.wsb{word-spacing:-0.069067pt;}
.wsa{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:196.329312pt;}
.ws18{word-spacing:215.968368pt;}
.wse{word-spacing:246.462712pt;}
.ws13{word-spacing:253.359529pt;}
.wsf{word-spacing:254.641457pt;}
.ws11{word-spacing:266.406954pt;}
.ws12{word-spacing:266.684738pt;}
.ws16{word-spacing:267.154646pt;}
.ws15{word-spacing:270.971197pt;}
.wsc{word-spacing:271.553912pt;}
.ws10{word-spacing:280.243978pt;}
.wsd{word-spacing:282.991582pt;}
.ws14{word-spacing:284.515440pt;}
.ws17{word-spacing:291.005487pt;}
._a{margin-left:-60.160000pt;}
._6{margin-left:-6.296967pt;}
._5{margin-left:-5.182066pt;}
._2{margin-left:-3.952000pt;}
._7{margin-left:-3.009699pt;}
._1{margin-left:-2.080000pt;}
._3{margin-left:-1.150301pt;}
._4{width:1.386667pt;}
._0{width:2.704000pt;}
._9{width:6.072968pt;}
._8{width:7.072000pt;}
._e{width:96.000379pt;}
._c{width:140.001902pt;}
._b{width:167.028613pt;}
._d{width:228.169011pt;}
._f{width:380.434021pt;}
.fs9{font-size:33.595733pt;}
.fs11{font-size:42.666669pt;}
.fs3{font-size:48.000002pt;}
.fsb{font-size:49.777780pt;}
.fs2{font-size:53.333334pt;}
.fsc{font-size:58.666670pt;}
.fs10{font-size:59.200006pt;}
.fs8{font-size:64.000002pt;}
.fsf{font-size:69.066666pt;}
.fs1{font-size:69.333338pt;}
.fs7{font-size:74.666666pt;}
.fse{font-size:78.933339pt;}
.fsa{font-size:80.000003pt;}
.fs6{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fs5{font-size:160.000005pt;}
.fsd{font-size:192.000006pt;}
.fs0{font-size:208.000007pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.823237pt;}
.y5{bottom:3.199833pt;}
.y54{bottom:50.324299pt;}
.y19{bottom:53.222664pt;}
.yd4{bottom:54.662624pt;}
.ybf{bottom:59.604935pt;}
.y59{bottom:64.662625pt;}
.yb6{bottom:66.662685pt;}
.y2a{bottom:68.662685pt;}
.y34{bottom:72.662625pt;}
.y84{bottom:74.692045pt;}
.y18{bottom:75.222665pt;}
.y4a{bottom:79.596685pt;}
.yd3{bottom:80.662625pt;}
.y9a{bottom:81.662685pt;}
.y94{bottom:83.201165pt;}
.ybe{bottom:85.604935pt;}
.yb5{bottom:88.662686pt;}
.y58{bottom:90.662626pt;}
.ya7{bottom:94.224305pt;}
.y29{bottom:94.662686pt;}
.y83{bottom:95.364036pt;}
.y17{bottom:98.662686pt;}
.y33{bottom:99.769316pt;}
.y49{bottom:100.396696pt;}
.y93{bottom:100.635566pt;}
.y99{bottom:107.662686pt;}
.yd2{bottom:107.769266pt;}
.y3d{bottom:108.662626pt;}
.yca{bottom:108.662686pt;}
.yb4{bottom:110.662686pt;}
.ybd{bottom:111.604936pt;}
.y82{bottom:114.212066pt;}
.y40{bottom:117.769316pt;}
.y5f{bottom:119.768727pt;}
.ya6{bottom:120.141616pt;}
.y72{bottom:120.222617pt;}
.y28{bottom:120.662687pt;}
.y92{bottom:120.881967pt;}
.y48{bottom:121.196687pt;}
.y16{bottom:123.222667pt;}
.yb3{bottom:132.662687pt;}
.y98{bottom:133.662687pt;}
.yc9{bottom:134.662687pt;}
.y81{bottom:134.884067pt;}
.y3c{bottom:135.769317pt;}
.ybc{bottom:137.604937pt;}
.y32{bottom:140.222667pt;}
.y47{bottom:141.996687pt;}
.y5e{bottom:142.168722pt;}
.y64{bottom:142.987592pt;}
.y71{bottom:143.662627pt;}
.ya5{bottom:144.278086pt;}
.y15{bottom:146.662687pt;}
.y80{bottom:153.732068pt;}
.yb2{bottom:154.662688pt;}
.y91{bottom:156.148888pt;}
.y21{bottom:156.180092pt;}
.y97{bottom:158.222668pt;}
.y3f{bottom:159.662688pt;}
.yc8{bottom:160.662688pt;}
.y31{bottom:162.222668pt;}
.y46{bottom:162.796688pt;}
.y5d{bottom:164.568728pt;}
.y63{bottom:165.387598pt;}
.ybb{bottom:165.484938pt;}
.y70{bottom:168.222648pt;}
.ya4{bottom:168.414597pt;}
.y53{bottom:171.662688pt;}
.y27{bottom:172.662688pt;}
.y14{bottom:173.769348pt;}
.y20{bottom:174.062668pt;}
.y7f{bottom:175.620048pt;}
.y90{bottom:175.832868pt;}
.yb1{bottom:177.049338pt;}
.y3b{bottom:177.662688pt;}
.y96{bottom:181.662689pt;}
.y30{bottom:185.662689pt;}
.yc7{bottom:186.662689pt;}
.y5c{bottom:186.968723pt;}
.y62{bottom:187.787593pt;}
.y6f{bottom:190.222649pt;}
.y1f{bottom:192.222669pt;}
.ya3{bottom:192.551068pt;}
.yd1{bottom:192.662669pt;}
.y3{bottom:193.304359pt;}
.y8f{bottom:195.516869pt;}
.y52{bottom:197.662669pt;}
.y26{bottom:199.769349pt;}
.y45{bottom:202.817179pt;}
.y3a{bottom:203.662669pt;}
.y95{bottom:206.222669pt;}
.y5b{bottom:209.368721pt;}
.y61{bottom:210.187591pt;}
.y2f{bottom:210.222669pt;}
.y6e{bottom:211.502649pt;}
.y57{bottom:211.662669pt;}
.yc5{bottom:212.662670pt;}
.y7e{bottom:212.665370pt;}
.yb0{bottom:213.662670pt;}
.y13{bottom:214.222670pt;}
.y8e{bottom:215.763260pt;}
.ya2{bottom:216.687549pt;}
.yd0{bottom:217.222670pt;}
.y2{bottom:217.304360pt;}
.y51{bottom:223.662670pt;}
.y39{bottom:229.662670pt;}
.ya{bottom:230.209350pt;}
.y6d{bottom:232.222650pt;}
.y2e{bottom:232.222670pt;}
.y3e{bottom:233.662670pt;}
.y7d{bottom:233.945370pt;}
.yda{bottom:234.943710pt;}
.yaf{bottom:235.662670pt;}
.y12{bottom:236.222670pt;}
.y68{bottom:236.744022pt;}
.y1e{bottom:237.662670pt;}
.yc4{bottom:238.662670pt;}
.ycf{bottom:239.222670pt;}
.yc6{bottom:239.769330pt;}
.y25{bottom:240.222670pt;}
.ya1{bottom:240.824019pt;}
.y44{bottom:244.417187pt;}
.y50{bottom:250.102671pt;}
.yd9{bottom:250.943711pt;}
.y8d{bottom:251.030181pt;}
.y2c{bottom:252.662671pt;}
.y6c{bottom:255.662661pt;}
.y2d{bottom:255.662671pt;}
.y7c{bottom:255.833371pt;}
.y38{bottom:256.769351pt;}
.yae{bottom:257.662671pt;}
.y11{bottom:258.222671pt;}
.yce{bottom:261.222671pt;}
.y24{bottom:262.222671pt;}
.y1d{bottom:264.769351pt;}
.ya0{bottom:264.960520pt;}
.y43{bottom:265.217181pt;}
.yc3{bottom:265.769331pt;}
.y8c{bottom:270.714171pt;}
.yba{bottom:271.604921pt;}
.y9{bottom:276.209332pt;}
.y2b{bottom:279.102672pt;}
.y4f{bottom:279.769352pt;}
.yad{bottom:280.049342pt;}
.y6b{bottom:281.662662pt;}
.y10{bottom:281.662672pt;}
.ycd{bottom:283.222672pt;}
.y23{bottom:285.662672pt;}
.y42{bottom:286.017180pt;}
.y9f{bottom:289.097001pt;}
.y60{bottom:290.796534pt;}
.yd8{bottom:290.954004pt;}
.y8b{bottom:290.960552pt;}
.y7b{bottom:292.878692pt;}
.yb9{bottom:297.604922pt;}
.y37{bottom:298.662672pt;}
.y56{bottom:305.222672pt;}
.y1c{bottom:306.662673pt;}
.y6a{bottom:307.662663pt;}
.yf{bottom:308.769333pt;}
.yd7{bottom:310.152013pt;}
.y22{bottom:312.769333pt;}
.y9e{bottom:313.233492pt;}
.y7a{bottom:314.158693pt;}
.yac{bottom:316.662673pt;}
.y4e{bottom:321.662673pt;}
.y8{bottom:322.542663pt;}
.y65{bottom:323.122095pt;}
.yb8{bottom:323.604923pt;}
.y36{bottom:324.662673pt;}
.y8a{bottom:325.665083pt;}
.ycc{bottom:327.222673pt;}
.yd6{bottom:327.752013pt;}
.y55{bottom:328.662673pt;}
.y1b{bottom:331.222673pt;}
.y5a{bottom:331.763637pt;}
.yc2{bottom:333.662667pt;}
.y69{bottom:334.769333pt;}
.y79{bottom:334.830693pt;}
.y9d{bottom:337.369963pt;}
.yab{bottom:338.662674pt;}
.y89{bottom:342.537084pt;}
.y4d{bottom:347.662674pt;}
.y1{bottom:348.208513pt;}
.ye{bottom:350.662674pt;}
.yb7{bottom:351.484924pt;}
.y78{bottom:353.070684pt;}
.y1a{bottom:353.222674pt;}
.y41{bottom:354.821548pt;}
.y7{bottom:355.209334pt;}
.y88{bottom:359.971474pt;}
.yaa{bottom:360.662674pt;}
.yc1{bottom:360.769334pt;}
.y9c{bottom:361.506453pt;}
.y77{bottom:371.918675pt;}
.y4c{bottom:374.102679pt;}
.yd{bottom:376.662675pt;}
.yd5{bottom:378.707290pt;}
.y87{bottom:379.655475pt;}
.ya9{bottom:382.662675pt;}
.y9b{bottom:391.812221pt;}
.y76{bottom:393.806675pt;}
.y86{bottom:399.339475pt;}
.y6{bottom:401.209346pt;}
.yc{bottom:403.769346pt;}
.ya8{bottom:405.049343pt;}
.y67{bottom:406.944912pt;}
.yc0{bottom:416.503300pt;}
.y75{bottom:418.126676pt;}
.y85{bottom:419.585876pt;}
.ydb{bottom:423.948761pt;}
.y66{bottom:424.544912pt;}
.y35{bottom:432.406002pt;}
.y73{bottom:434.586867pt;}
.y74{bottom:482.606850pt;}
.yb{bottom:487.775329pt;}
.ycb{bottom:487.775855pt;}
.y4b{bottom:508.892341pt;}
.hb{height:24.458612pt;}
.h1c{height:31.062502pt;}
.h16{height:33.408002pt;}
.h4{height:34.992189pt;}
.ha{height:37.584001pt;}
.h3{height:41.760000pt;}
.h10{height:42.710940pt;}
.h1b{height:42.739586pt;}
.h11{height:45.936003pt;}
.h15{height:46.353605pt;}
.hf{height:46.848001pt;}
.h9{height:50.112002pt;}
.hc{height:50.510420pt;}
.h14{height:54.079200pt;}
.h2{height:54.288004pt;}
.h1d{height:54.359375pt;}
.h18{height:54.395833pt;}
.h1a{height:54.399873pt;}
.h8{height:58.464000pt;}
.h13{height:61.804804pt;}
.hd{height:62.640002pt;}
.h7{height:66.816004pt;}
.he{height:66.976003pt;}
.h19{height:69.890627pt;}
.h17{height:69.937502pt;}
.h5{height:75.168002pt;}
.h6{height:125.280004pt;}
.h12{height:150.336005pt;}
.h1{height:162.864005pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:37.108354pt;}
.x40{left:39.965850pt;}
.x1f{left:41.719163pt;}
.x6{left:51.228318pt;}
.x9{left:52.842134pt;}
.x1c{left:54.531206pt;}
.x1{left:58.435655pt;}
.x2{left:66.233567pt;}
.x1d{left:79.674855pt;}
.x1b{left:82.108815pt;}
.x12{left:89.724413pt;}
.x41{left:91.193496pt;}
.x7{left:99.228323pt;}
.xa{left:102.455963pt;}
.x20{left:116.078739pt;}
.x42{left:126.461947pt;}
.x17{left:137.724414pt;}
.xe{left:152.060355pt;}
.xb{left:156.052540pt;}
.xd{left:165.854340pt;}
.x34{left:178.635186pt;}
.x2b{left:182.674966pt;}
.x45{left:185.724416pt;}
.x2e{left:200.871986pt;}
.xf{left:202.476366pt;}
.x44{left:208.979003pt;}
.x18{left:218.635187pt;}
.x21{left:227.514367pt;}
.x26{left:233.088509pt;}
.x1a{left:243.081123pt;}
.x2f{left:252.961612pt;}
.x27{left:268.356959pt;}
.x5{left:299.481450pt;}
.xc{left:319.694330pt;}
.x3{left:320.755520pt;}
.x30{left:330.214921pt;}
.x14{left:341.134301pt;}
.x3f{left:357.094291pt;}
.x2d{left:358.494291pt;}
.x25{left:366.194302pt;}
.x43{left:368.894302pt;}
.x13{left:392.914303pt;}
.x16{left:407.594243pt;}
.x15{left:416.452433pt;}
.x23{left:429.874234pt;}
.x1e{left:435.401096pt;}
.x46{left:445.254224pt;}
.x47{left:459.927387pt;}
.x11{left:483.594175pt;}
.x8{left:500.194156pt;}
.x31{left:501.089814pt;}
.x32{left:550.571508pt;}
.x4b{left:559.400925pt;}
.x24{left:576.046968pt;}
.x29{left:589.931031pt;}
.x33{left:600.062639pt;}
.x22{left:602.147019pt;}
.x10{left:609.457639pt;}
.x2a{left:625.199480pt;}
.x48{left:634.126020pt;}
.x35{left:669.703839pt;}
.x3d{left:671.766019pt;}
.x3e{left:675.991285pt;}
.x37{left:679.363768pt;}
.x38{left:681.415082pt;}
.x3a{left:684.361708pt;}
.x36{left:685.624302pt;}
.x39{left:687.793119pt;}
.x3b{left:688.858587pt;}
.x3c{left:690.478742pt;}
.x28{left:789.867732pt;}
.x49{left:826.440926pt;}
.x4a{left:861.314968pt;}
.x19{left:912.170902pt;}
.x4{left:919.687929pt;}
}




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