
    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_9f2c6efe369e5e7e2e2ea7aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042222;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_035b119a860a47e11986db4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.830667;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_9298fda8fc54ef75fd758521.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914667;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666667;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_6803c3a704a3d905c6af458e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043556;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_214cf2842595ca2dd12c3105.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666667;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_fbbb8b08e719fbaf92873e04.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908444;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666667;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_3c35bc3a31e7541392f7d49b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_84cd2a4193e8a2749ab9f158.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3c35bc3a31e7541392f7d49b.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-23.759990px;}
.v2{vertical-align:-17.999993px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.879992px;}
.ls1a{letter-spacing:-4.746010px;}
.ls1d{letter-spacing:-1.931999px;}
.ls1b{letter-spacing:-0.349200px;}
.ls22{letter-spacing:-0.258000px;}
.lsb{letter-spacing:-0.215400px;}
.lsa{letter-spacing:-0.208800px;}
.ls14{letter-spacing:-0.154800px;}
.ls6{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.104400px;}
.ls5{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.069600px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.029520px;}
.ls9{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.078000px;}
.ls11{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.149766px;}
.ls15{letter-spacing:0.151874px;}
.ls2{letter-spacing:0.154080px;}
.ls13{letter-spacing:0.169200px;}
.ls1e{letter-spacing:0.208800px;}
.ls1{letter-spacing:0.294600px;}
.ls7{letter-spacing:0.313920px;}
.ls20{letter-spacing:0.314400px;}
.lsc{letter-spacing:0.315360px;}
.ls16{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.370800px;}
.ls8{letter-spacing:0.374400px;}
.ls21{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.511201px;}
.lsd{letter-spacing:0.990000px;}
.ls1c{letter-spacing:4.568364px;}
.lsf{letter-spacing:30.383988px;}
.ls18{letter-spacing:31.103988px;}
.ls3{letter-spacing:39.743984px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.008390px;}
.wse{word-spacing:-20.663992px;}
.ws3{word-spacing:-20.519992px;}
.ws5{word-spacing:-20.447992px;}
.ws1a{word-spacing:-18.878392px;}
.wsb{word-spacing:-18.021627px;}
.wsd{word-spacing:-17.542828px;}
.ws18{word-spacing:-17.493628px;}
.ws12{word-spacing:-17.362827px;}
.ws17{word-spacing:-17.346027px;}
.wsa{word-spacing:-17.326227px;}
.ws15{word-spacing:-17.240427px;}
.ws11{word-spacing:-17.109627px;}
.ws2{word-spacing:-17.031627px;}
.ws16{word-spacing:-16.962027px;}
.ws6{word-spacing:-16.899627px;}
.ws10{word-spacing:-16.876827px;}
.ws9{word-spacing:-16.822827px;}
.ws19{word-spacing:-16.773627px;}
.ws0{word-spacing:-15.390028px;}
.ws14{word-spacing:-15.099628px;}
.ws8{word-spacing:-13.748429px;}
.ws13{word-spacing:-12.285617px;}
.wsf{word-spacing:-11.901595px;}
.wsc{word-spacing:-11.080796px;}
.ws7{word-spacing:-8.618397px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-12.692180px;}
._d{margin-left:-5.833232px;}
._3{margin-left:-4.210271px;}
._2{margin-left:-2.948399px;}
._0{margin-left:-1.027618px;}
._1{width:1.114275px;}
._4{width:2.591592px;}
._7{width:4.089248px;}
._5{width:5.553152px;}
._6{width:6.779485px;}
._a{width:8.087341px;}
._e{width:9.282908px;}
._c{width:10.642254px;}
._12{width:12.071044px;}
._14{width:13.526368px;}
._b{width:14.781261px;}
._13{width:16.018643px;}
._15{width:18.682367px;}
._23{width:19.782536px;}
._9{width:20.830005px;}
._8{width:22.548454px;}
._1a{width:24.149698px;}
._22{width:25.160989px;}
._1b{width:26.236750px;}
._20{width:27.909505px;}
._1e{width:29.165809px;}
._17{width:32.035895px;}
._18{width:43.385649px;}
._21{width:52.627203px;}
._19{width:57.971430px;}
._1c{width:67.174096px;}
._1d{width:68.307884px;}
._24{width:201.755022px;}
._16{width:203.915021px;}
._11{width:206.075020px;}
._1f{width:209.675019px;}
._10{width:264.404227px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs7{font-size:48.240101px;}
.fs0{font-size:54.000098px;}
.fs2{font-size:59.760096px;}
.fs3{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y59{bottom:6.658517px;}
.y64{bottom:6.660405px;}
.yd{bottom:7.560370px;}
.y63{bottom:28.260396px;}
.yc{bottom:28.980361px;}
.yb{bottom:50.625353px;}
.y62{bottom:52.200387px;}
.y3{bottom:56.374477px;}
.y23{bottom:57.635977px;}
.ya{bottom:72.225344px;}
.y2{bottom:73.294471px;}
.y61{bottom:73.980378px;}
.y9{bottom:93.825335px;}
.y60{bottom:95.580370px;}
.y41{bottom:109.116556px;}
.y50{bottom:109.116991px;}
.y22{bottom:113.256105px;}
.y79{bottom:113.616555px;}
.yb7{bottom:115.958354px;}
.y5f{bottom:117.000361px;}
.y77{bottom:120.277452px;}
.y82{bottom:121.177002px;}
.y4f{bottom:124.236985px;}
.y9a{bottom:124.597600px;}
.y57{bottom:124.599100px;}
.y78{bottom:125.856850px;}
.y88{bottom:128.196099px;}
.y40{bottom:128.736549px;}
.ybe{bottom:131.617447px;}
.y21{bottom:134.856096px;}
.y81{bottom:136.116996px;}
.yb6{bottom:137.558345px;}
.y5e{bottom:138.645352px;}
.y4e{bottom:139.176979px;}
.y96{bottom:140.616094px;}
.y3f{bottom:140.976694px;}
.y76{bottom:141.877443px;}
.y99{bottom:146.197592px;}
.y56{bottom:146.198342px;}
.y87{bottom:149.616090px;}
.y80{bottom:151.229940px;}
.y4d{bottom:154.109938px;}
.ybd{bottom:155.370388px;}
.y20{bottom:156.449037px;}
.y71{bottom:158.609937px;}
.yb5{bottom:159.151286px;}
.y5d{bottom:160.245344px;}
.y95{bottom:162.029035px;}
.y75{bottom:163.290385px;}
.y98{bottom:167.610533px;}
.y55{bottom:167.611283px;}
.y4c{bottom:169.229932px;}
.y70{bottom:170.850382px;}
.y86{bottom:171.209032px;}
.y7f{bottom:173.189931px;}
.y1f{bottom:178.049029px;}
.ybc{bottom:178.950378px;}
.yb4{bottom:180.571278px;}
.y5c{bottom:181.845335px;}
.y94{bottom:183.629027px;}
.y4b{bottom:184.169926px;}
.y74{bottom:184.890376px;}
.y7e{bottom:188.486925px;}
.y97{bottom:189.209774px;}
.y54{bottom:189.210524px;}
.y85{bottom:192.809023px;}
.y1e{bottom:199.649020px;}
.y3e{bottom:202.170369px;}
.yb3{bottom:202.170519px;}
.ybb{bottom:202.710369px;}
.y5b{bottom:203.445326px;}
.y4a{bottom:203.609919px;}
.y93{bottom:205.229018px;}
.y73{bottom:206.490367px;}
.y53{bottom:210.809766px;}
.y7d{bottom:211.166916px;}
.y84{bottom:214.409014px;}
.y49{bottom:215.850364px;}
.y1d{bottom:221.069012px;}
.y3d{bottom:223.770360px;}
.yb2{bottom:225.030510px;}
.yba{bottom:226.470359px;}
.y92{bottom:226.829009px;}
.y72{bottom:229.350358px;}
.y6f{bottom:231.149008px;}
.y52{bottom:232.409007px;}
.y7c{bottom:232.586907px;}
.y83{bottom:236.054006px;}
.y1c{bottom:242.714003px;}
.y3c{bottom:245.415352px;}
.y91{bottom:248.474001px;}
.yb1{bottom:249.734750px;}
.yb9{bottom:250.275350px;}
.y7b{bottom:250.631900px;}
.y6e{bottom:252.613999px;}
.y51{bottom:254.053998px;}
.y1b{bottom:264.313994px;}
.y3b{bottom:267.015343px;}
.y90{bottom:269.893992px;}
.yb0{bottom:271.333991px;}
.yb8{bottom:273.855340px;}
.y6d{bottom:274.213990px;}
.y48{bottom:275.473990px;}
.y1a{bottom:285.913986px;}
.y3a{bottom:288.435335px;}
.y8f{bottom:291.493983px;}
.yaf{bottom:292.753983px;}
.y6c{bottom:295.813982px;}
.y47{bottom:297.073981px;}
.y19{bottom:307.513977px;}
.y39{bottom:310.035326px;}
.y8e{bottom:313.093975px;}
.yae{bottom:314.353974px;}
.y6b{bottom:317.413973px;}
.y46{bottom:318.673973px;}
.y18{bottom:328.933968px;}
.y38{bottom:331.634567px;}
.y8d{bottom:334.693966px;}
.yad{bottom:335.953966px;}
.y6a{bottom:339.013964px;}
.y45{bottom:340.273964px;}
.y17{bottom:350.533960px;}
.y37{bottom:353.234559px;}
.yac{bottom:357.553957px;}
.y69{bottom:360.433956px;}
.y44{bottom:361.873955px;}
.y16{bottom:372.133951px;}
.y8c{bottom:374.293950px;}
.y36{bottom:376.094550px;}
.yab{bottom:379.153948px;}
.y68{bottom:382.033947px;}
.y43{bottom:383.473947px;}
.y15{bottom:393.733943px;}
.y8b{bottom:395.893942px;}
.yaa{bottom:400.573940px;}
.y35{bottom:401.834539px;}
.y67{bottom:403.633939px;}
.y42{bottom:404.893938px;}
.y14{bottom:415.333934px;}
.y8a{bottom:417.313933px;}
.ya9{bottom:422.173931px;}
.y66{bottom:425.264830px;}
.y34{bottom:426.524829px;}
.y89{bottom:435.344826px;}
.y13{bottom:436.964825px;}
.ya8{bottom:443.804822px;}
.y65{bottom:446.864821px;}
.y33{bottom:448.124821px;}
.y12{bottom:458.384817px;}
.ya7{bottom:465.404814px;}
.y32{bottom:469.724812px;}
.y11{bottom:479.984808px;}
.y5a{bottom:480.524400px;}
.ya6{bottom:487.004805px;}
.y31{bottom:491.324803px;}
.y10{bottom:502.844799px;}
.ya5{bottom:508.424797px;}
.y30{bottom:512.744795px;}
.y7a{bottom:524.264790px;}
.yf{bottom:528.584789px;}
.ya4{bottom:530.024788px;}
.y2f{bottom:534.344786px;}
.ye{bottom:551.624779px;}
.y2e{bottom:555.944778px;}
.y8{bottom:567.824400px;}
.ya3{bottom:573.224771px;}
.y2d{bottom:577.544769px;}
.ya2{bottom:594.824762px;}
.yc7{bottom:596.984761px;}
.y2c{bottom:599.144760px;}
.ya1{bottom:616.469753px;}
.yc6{bottom:618.629753px;}
.y2b{bottom:620.609752px;}
.ya0{bottom:637.889745px;}
.yc5{bottom:640.049744px;}
.y2a{bottom:642.209743px;}
.y9f{bottom:659.489736px;}
.yc4{bottom:661.649735px;}
.y29{bottom:663.809734px;}
.y9e{bottom:681.089728px;}
.y7{bottom:682.349727px;}
.yc3{bottom:683.249727px;}
.y28{bottom:685.409726px;}
.y58{bottom:699.631200px;}
.y6{bottom:702.689719px;}
.yc2{bottom:704.849718px;}
.y27{bottom:707.009717px;}
.y5{bottom:722.849711px;}
.y9d{bottom:724.289710px;}
.yc1{bottom:726.449709px;}
.y26{bottom:728.609709px;}
.y9c{bottom:745.709702px;}
.y4{bottom:747.509701px;}
.yc0{bottom:747.869701px;}
.y25{bottom:750.029700px;}
.y9b{bottom:768.569693px;}
.ybf{bottom:770.009692px;}
.y24{bottom:771.629691px;}
.y1{bottom:826.379669px;}
.he{height:21.598560px;}
.hd{height:21.685530px;}
.hb{height:21.749850px;}
.h10{height:27.839989px;}
.hc{height:39.685523px;}
.h5{height:39.840064px;}
.h7{height:41.168066px;}
.h9{height:44.149201px;}
.h11{height:44.159982px;}
.h2{height:44.424081px;}
.h12{height:46.044142px;}
.h8{height:49.162639px;}
.h4{height:49.242319px;}
.ha{height:50.047980px;}
.h3{height:58.556137px;}
.h6{height:108.755820px;}
.hf{height:218.368800px;}
.h0{height:892.979700px;}
.h1{height:893.250000px;}
.w3{width:158.429520px;}
.w4{width:256.035600px;}
.w2{width:415.184400px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x5{left:7.740014px;}
.x9{left:28.980006px;}
.x4{left:106.416557px;}
.x6{left:127.656549px;}
.x7{left:133.416697px;}
.x3{left:160.046936px;}
.x2{left:186.731925px;}
.x8{left:212.654915px;}
.xa{left:266.293800px;}
.x1{left:501.989799px;}
.xb{left:503.432049px;}
.xc{left:538.740685px;}
@media print{
.v3{vertical-align:-21.119992pt;}
.v2{vertical-align:-15.999994pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.559993pt;}
.ls1a{letter-spacing:-4.218676pt;}
.ls1d{letter-spacing:-1.717333pt;}
.ls1b{letter-spacing:-0.310400pt;}
.ls22{letter-spacing:-0.229333pt;}
.lsb{letter-spacing:-0.191467pt;}
.lsa{letter-spacing:-0.185600pt;}
.ls14{letter-spacing:-0.137600pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.092800pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.061867pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.026240pt;}
.ls9{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.069333pt;}
.ls11{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133125pt;}
.ls15{letter-spacing:0.134999pt;}
.ls2{letter-spacing:0.136960pt;}
.ls13{letter-spacing:0.150400pt;}
.ls1e{letter-spacing:0.185600pt;}
.ls1{letter-spacing:0.261867pt;}
.ls7{letter-spacing:0.279040pt;}
.ls20{letter-spacing:0.279467pt;}
.lsc{letter-spacing:0.280320pt;}
.ls16{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.329600pt;}
.ls8{letter-spacing:0.332800pt;}
.ls21{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.454401pt;}
.lsd{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:4.060768pt;}
.lsf{letter-spacing:27.007989pt;}
.ls18{letter-spacing:27.647989pt;}
.ls3{letter-spacing:35.327986pt;}
.ws1{word-spacing:-21.340791pt;}
.wse{word-spacing:-18.367993pt;}
.ws3{word-spacing:-18.239993pt;}
.ws5{word-spacing:-18.175993pt;}
.ws1a{word-spacing:-16.780793pt;}
.wsb{word-spacing:-16.019224pt;}
.wsd{word-spacing:-15.593625pt;}
.ws18{word-spacing:-15.549891pt;}
.ws12{word-spacing:-15.433624pt;}
.ws17{word-spacing:-15.418691pt;}
.wsa{word-spacing:-15.401091pt;}
.ws15{word-spacing:-15.324824pt;}
.ws11{word-spacing:-15.208558pt;}
.ws2{word-spacing:-15.139224pt;}
.ws16{word-spacing:-15.077358pt;}
.ws6{word-spacing:-15.021891pt;}
.ws10{word-spacing:-15.001624pt;}
.ws9{word-spacing:-14.953624pt;}
.ws19{word-spacing:-14.909891pt;}
.ws0{word-spacing:-13.680025pt;}
.ws14{word-spacing:-13.421892pt;}
.ws8{word-spacing:-12.220826pt;}
.ws13{word-spacing:-10.920549pt;}
.wsf{word-spacing:-10.579196pt;}
.wsc{word-spacing:-9.849596pt;}
.ws7{word-spacing:-7.660797pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-11.281938pt;}
._d{margin-left:-5.185095pt;}
._3{margin-left:-3.742463pt;}
._2{margin-left:-2.620799pt;}
._0{margin-left:-0.913438pt;}
._1{width:0.990466pt;}
._4{width:2.303638pt;}
._7{width:3.634887pt;}
._5{width:4.936135pt;}
._6{width:6.026209pt;}
._a{width:7.188747pt;}
._e{width:8.251474pt;}
._c{width:9.459781pt;}
._12{width:10.729817pt;}
._14{width:12.023438pt;}
._b{width:13.138898pt;}
._13{width:14.238794pt;}
._15{width:16.606549pt;}
._23{width:17.584477pt;}
._9{width:18.515560pt;}
._8{width:20.043070pt;}
._1a{width:21.466399pt;}
._22{width:22.365324pt;}
._1b{width:23.321555pt;}
._20{width:24.808449pt;}
._1e{width:25.925164pt;}
._17{width:28.476351pt;}
._18{width:38.565022pt;}
._21{width:46.779736pt;}
._19{width:51.530160pt;}
._1c{width:59.710308pt;}
._1d{width:60.718119pt;}
._24{width:179.337797pt;}
._16{width:181.257796pt;}
._11{width:183.177796pt;}
._1f{width:186.377794pt;}
._10{width:235.025980pt;}
.fs6{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs7{font-size:42.880090pt;}
.fs0{font-size:48.000087pt;}
.fs2{font-size:53.120085pt;}
.fs3{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:5.918682pt;}
.y64{bottom:5.920360pt;}
.yd{bottom:6.720329pt;}
.y63{bottom:25.120352pt;}
.yc{bottom:25.760321pt;}
.yb{bottom:45.000313pt;}
.y62{bottom:46.400344pt;}
.y3{bottom:50.110647pt;}
.y23{bottom:51.231980pt;}
.ya{bottom:64.200306pt;}
.y2{bottom:65.150641pt;}
.y61{bottom:65.760336pt;}
.y9{bottom:83.400298pt;}
.y60{bottom:84.960328pt;}
.y41{bottom:96.992495pt;}
.y50{bottom:96.992881pt;}
.y22{bottom:100.672093pt;}
.y79{bottom:100.992493pt;}
.yb7{bottom:103.074092pt;}
.y5f{bottom:104.000321pt;}
.y77{bottom:106.913291pt;}
.y82{bottom:107.712890pt;}
.y4f{bottom:110.432876pt;}
.y9a{bottom:110.753422pt;}
.y57{bottom:110.754756pt;}
.y78{bottom:111.872755pt;}
.y88{bottom:113.952088pt;}
.y40{bottom:114.432488pt;}
.ybe{bottom:116.993287pt;}
.y21{bottom:119.872085pt;}
.y81{bottom:120.992885pt;}
.yb6{bottom:122.274084pt;}
.y5e{bottom:123.240313pt;}
.y4e{bottom:123.712871pt;}
.y96{bottom:124.992083pt;}
.y3f{bottom:125.312617pt;}
.y76{bottom:126.113283pt;}
.y99{bottom:129.953415pt;}
.y56{bottom:129.954081pt;}
.y87{bottom:132.992080pt;}
.y80{bottom:134.426613pt;}
.y4d{bottom:136.986612pt;}
.ybd{bottom:138.107011pt;}
.y20{bottom:139.065811pt;}
.y71{bottom:140.986610pt;}
.yb5{bottom:141.467810pt;}
.y5d{bottom:142.440306pt;}
.y95{bottom:144.025809pt;}
.y75{bottom:145.147009pt;}
.y98{bottom:148.987140pt;}
.y55{bottom:148.987807pt;}
.y4c{bottom:150.426606pt;}
.y70{bottom:151.867006pt;}
.y86{bottom:152.185806pt;}
.y7f{bottom:153.946605pt;}
.y1f{bottom:158.265803pt;}
.ybc{bottom:159.067003pt;}
.yb4{bottom:160.507802pt;}
.y5c{bottom:161.640298pt;}
.y94{bottom:163.225801pt;}
.y4b{bottom:163.706601pt;}
.y74{bottom:164.347001pt;}
.y7e{bottom:167.543933pt;}
.y97{bottom:168.186466pt;}
.y54{bottom:168.187133pt;}
.y85{bottom:171.385798pt;}
.y1e{bottom:177.465796pt;}
.y3e{bottom:179.706995pt;}
.yb3{bottom:179.707128pt;}
.ybb{bottom:180.186995pt;}
.y5b{bottom:180.840290pt;}
.y4a{bottom:180.986594pt;}
.y93{bottom:182.425794pt;}
.y73{bottom:183.546993pt;}
.y53{bottom:187.386458pt;}
.y7d{bottom:187.703925pt;}
.y84{bottom:190.585790pt;}
.y49{bottom:191.866990pt;}
.y1d{bottom:196.505788pt;}
.y3d{bottom:198.906987pt;}
.yb2{bottom:200.027120pt;}
.yba{bottom:201.306986pt;}
.y92{bottom:201.625786pt;}
.y72{bottom:203.866985pt;}
.y6f{bottom:205.465784pt;}
.y52{bottom:206.585784pt;}
.y7c{bottom:206.743917pt;}
.y83{bottom:209.825783pt;}
.y1c{bottom:215.745780pt;}
.y3c{bottom:218.146979pt;}
.y91{bottom:220.865778pt;}
.yb1{bottom:221.986445pt;}
.yb9{bottom:222.466978pt;}
.y7b{bottom:222.783911pt;}
.y6e{bottom:224.545777pt;}
.y51{bottom:225.825776pt;}
.y1b{bottom:234.945773pt;}
.y3b{bottom:237.346972pt;}
.y90{bottom:239.905771pt;}
.yb0{bottom:241.185770pt;}
.yb8{bottom:243.426969pt;}
.y6d{bottom:243.745769pt;}
.y48{bottom:244.865769pt;}
.y1a{bottom:254.145765pt;}
.y3a{bottom:256.386964pt;}
.y8f{bottom:259.105763pt;}
.yaf{bottom:260.225763pt;}
.y6c{bottom:262.945761pt;}
.y47{bottom:264.065761pt;}
.y19{bottom:273.345757pt;}
.y39{bottom:275.586956pt;}
.y8e{bottom:278.305755pt;}
.yae{bottom:279.425755pt;}
.y6b{bottom:282.145754pt;}
.y46{bottom:283.265753pt;}
.y18{bottom:292.385750pt;}
.y38{bottom:294.786282pt;}
.y8d{bottom:297.505748pt;}
.yad{bottom:298.625747pt;}
.y6a{bottom:301.345746pt;}
.y45{bottom:302.465746pt;}
.y17{bottom:311.585742pt;}
.y37{bottom:313.986274pt;}
.yac{bottom:317.825740pt;}
.y69{bottom:320.385739pt;}
.y44{bottom:321.665738pt;}
.y16{bottom:330.785734pt;}
.y8c{bottom:332.705734pt;}
.y36{bottom:334.306266pt;}
.yab{bottom:337.025732pt;}
.y68{bottom:339.585731pt;}
.y43{bottom:340.865730pt;}
.y15{bottom:349.985727pt;}
.y8b{bottom:351.905726pt;}
.yaa{bottom:356.065724pt;}
.y35{bottom:357.186257pt;}
.y67{bottom:358.785723pt;}
.y42{bottom:359.905723pt;}
.y14{bottom:369.185719pt;}
.y8a{bottom:370.945718pt;}
.ya9{bottom:375.265717pt;}
.y66{bottom:378.013182pt;}
.y34{bottom:379.133182pt;}
.y89{bottom:386.973179pt;}
.y13{bottom:388.413178pt;}
.ya8{bottom:394.493176pt;}
.y65{bottom:397.213174pt;}
.y33{bottom:398.333174pt;}
.y12{bottom:407.453170pt;}
.ya7{bottom:413.693168pt;}
.y32{bottom:417.533166pt;}
.y11{bottom:426.653163pt;}
.y5a{bottom:427.132800pt;}
.ya6{bottom:432.893160pt;}
.y31{bottom:436.733159pt;}
.y10{bottom:446.973155pt;}
.ya5{bottom:451.933153pt;}
.y30{bottom:455.773151pt;}
.y7a{bottom:466.013147pt;}
.yf{bottom:469.853145pt;}
.ya4{bottom:471.133145pt;}
.y2f{bottom:474.973143pt;}
.ye{bottom:490.333137pt;}
.y2e{bottom:494.173136pt;}
.y8{bottom:504.732800pt;}
.ya3{bottom:509.533130pt;}
.y2d{bottom:513.373128pt;}
.ya2{bottom:528.733122pt;}
.yc7{bottom:530.653121pt;}
.y2c{bottom:532.573120pt;}
.ya1{bottom:547.973114pt;}
.yc6{bottom:549.893113pt;}
.y2b{bottom:551.653113pt;}
.ya0{bottom:567.013107pt;}
.yc5{bottom:568.933106pt;}
.y2a{bottom:570.853105pt;}
.y9f{bottom:586.213099pt;}
.yc4{bottom:588.133098pt;}
.y29{bottom:590.053097pt;}
.y9e{bottom:605.413091pt;}
.y7{bottom:606.533091pt;}
.yc3{bottom:607.333090pt;}
.y28{bottom:609.253090pt;}
.y58{bottom:621.894400pt;}
.y6{bottom:624.613083pt;}
.yc2{bottom:626.533083pt;}
.y27{bottom:628.453082pt;}
.y5{bottom:642.533076pt;}
.y9d{bottom:643.813076pt;}
.yc1{bottom:645.733075pt;}
.y26{bottom:647.653074pt;}
.y9c{bottom:662.853068pt;}
.y4{bottom:664.453068pt;}
.yc0{bottom:664.773067pt;}
.y25{bottom:666.693067pt;}
.y9b{bottom:683.173060pt;}
.ybf{bottom:684.453060pt;}
.y24{bottom:685.893059pt;}
.y1{bottom:734.559706pt;}
.he{height:19.198720pt;}
.hd{height:19.276027pt;}
.hb{height:19.333200pt;}
.h10{height:24.746657pt;}
.hc{height:35.276020pt;}
.h5{height:35.413390pt;}
.h7{height:36.593837pt;}
.h9{height:39.243734pt;}
.h11{height:39.253318pt;}
.h2{height:39.488072pt;}
.h12{height:40.928126pt;}
.h8{height:43.700124pt;}
.h4{height:43.770950pt;}
.ha{height:44.487093pt;}
.h3{height:52.049899pt;}
.h6{height:96.671840pt;}
.hf{height:194.105600pt;}
.h0{height:793.759733pt;}
.h1{height:794.000000pt;}
.w3{width:140.826240pt;}
.w4{width:227.587200pt;}
.w2{width:369.052800pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880012pt;}
.x9{left:25.760005pt;}
.x4{left:94.592495pt;}
.x6{left:113.472488pt;}
.x7{left:118.592619pt;}
.x3{left:142.263943pt;}
.x2{left:165.983934pt;}
.x8{left:189.026591pt;}
.xa{left:236.705600pt;}
.x1{left:446.213155pt;}
.xb{left:447.495154pt;}
.xc{left:478.880608pt;}
}




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