
    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_e607468f4f9a13c9ce77d27a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_f791c4c4be259e7bd879015b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_2d18ea7e2d103159fcb9216b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_60bb05feef0bfcd9a56f22cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934500;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_a8041a58eac41bba8943d0e9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5502314323542d04092c6943.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_44f1ea2ca4577b7a2661e1ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.843750;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_cc90373ae046943cb01b7d71.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926758;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_50099c5dca4ca0b6d77e9804.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_87f1892849ecb385c09c69fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910500;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_cbe36aad581d59fac9801070.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a5e8fedf8672fa1c1b2f4392.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;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:ffd;src:url('chunks/assets/font_0c6ed693e537c566e4d9a25f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cac296f7af5e0e001488ad97.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922500;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:fff;src:url('chunks/assets/font_2cd7e1bb4a4d2d5fcc568ea7.woff2')format("woff");}.fff{font-family:fff;line-height:1.005859;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:ff10;src:url('chunks/assets/font_6f59fd3b580de9077d74fecf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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;}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.188911px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.770625px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.080208px;}
.ls2{letter-spacing:107.953131px;}
.ls4{letter-spacing:107.972021px;}
.ls8{letter-spacing:107.986116px;}
.ls3{letter-spacing:108.000003px;}
.ls1{letter-spacing:108.015879px;}
.lsd{letter-spacing:108.087888px;}
.ls5{letter-spacing:109.500007px;}
.ls7{letter-spacing:110.812504px;}
.ls6{letter-spacing:111.117194px;}
.lsa{letter-spacing:111.375004px;}
.lsb{letter-spacing:112.171882px;}
.ls9{letter-spacing:727.393644px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(2,52,82),0 0.015em rgb(2,52,82),0.015em 0 rgb(2,52,82),0 -0.015em  rgb(2,52,82);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(2,52,82);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-29.916001px;}
.wsb{word-spacing:-26.418000px;}
.wsd{word-spacing:-24.864002px;}
.wsc{word-spacing:-23.310001px;}
.wsa{word-spacing:-21.756000px;}
.ws5{word-spacing:-20.844001px;}
.ws8{word-spacing:-16.620000px;}
.ws4{word-spacing:-16.212000px;}
.ws7{word-spacing:-11.580000px;}
.ws9{word-spacing:-10.878000px;}
.ws3{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:1706.488390px;}
._7{margin-left:-2149.832507px;}
._5{margin-left:-10.164000px;}
._4{margin-left:-8.736000px;}
._6{margin-left:-5.940000px;}
._2{margin-left:-4.218000px;}
._0{margin-left:-3.132000px;}
._1{margin-left:-1.656000px;}
._3{width:1.037250px;}
.fc4{color:rgb(51,153,255);}
.fc5{color:transparent;}
.fc3{color:rgb(77,72,72);}
.fc2{color:rgb(2,52,82);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,63,65);}
.fsd{font-size:42.000000px;}
.fsc{font-size:60.000000px;}
.fse{font-size:72.000002px;}
.fs3{font-size:84.000000px;}
.fs8{font-size:90.000003px;}
.fsa{font-size:91.782354px;}
.fsb{font-size:96.000006px;}
.fs5{font-size:102.000000px;}
.fs0{font-size:108.000003px;}
.fs7{font-size:114.000007px;}
.fs2{font-size:120.000001px;}
.fs6{font-size:126.000004px;}
.fs9{font-size:139.200016px;}
.fs4{font-size:144.000005px;}
.fs1{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y8{bottom:21.541753px;}
.y1{bottom:26.814223px;}
.y83{bottom:27.174784px;}
.y91{bottom:31.019269px;}
.y8a{bottom:32.955822px;}
.y9f{bottom:39.608836px;}
.yba{bottom:39.931634px;}
.y7c{bottom:40.843084px;}
.y74{bottom:43.860807px;}
.y82{bottom:45.174785px;}
.y89{bottom:45.555822px;}
.ya2{bottom:49.730888px;}
.y4c{bottom:53.042045px;}
.y90{bottom:56.318495px;}
.y9e{bottom:57.608836px;}
.y88{bottom:58.155817px;}
.y73{bottom:61.860808px;}
.ya1{bottom:67.730889px;}
.yb9{bottom:68.731633px;}
.y87{bottom:70.755814px;}
.ya9{bottom:70.940548px;}
.yc4{bottom:82.037593px;}
.y86{bottom:83.355815px;}
.y4b{bottom:85.667047px;}
.ya8{bottom:88.940548px;}
.y68{bottom:93.677609px;}
.y85{bottom:95.955815px;}
.y2d{bottom:101.147586px;}
.y7b{bottom:102.278121px;}
.ya7{bottom:106.940549px;}
.y84{bottom:108.555813px;}
.yc3{bottom:113.087594px;}
.y71{bottom:113.631509px;}
.y7a{bottom:120.278122px;}
.y67{bottom:124.727610px;}
.y70{bottom:131.631510px;}
.y2c{bottom:136.337587px;}
.y1c{bottom:138.465806px;}
.y20{bottom:143.163660px;}
.yc2{bottom:145.397595px;}
.y9c{bottom:150.768306px;}
.y66{bottom:155.777622px;}
.y79{bottom:161.209223px;}
.y72{bottom:163.119698px;}
.y6c{bottom:166.577701px;}
.y81{bottom:170.084767px;}
.y1b{bottom:171.090808px;}
.y2b{bottom:171.527589px;}
.y1f{bottom:175.788662px;}
.y80{bottom:182.684765px;}
.ye{bottom:183.708301px;}
.y8d{bottom:185.404115px;}
.y9b{bottom:188.028309px;}
.y65{bottom:188.087623px;}
.y9a{bottom:191.777623px;}
.y6b{bottom:195.377724px;}
.yc1{bottom:195.587627px;}
.yad{bottom:197.687619px;}
.y7{bottom:200.433308px;}
.y40{bottom:213.640997px;}
.y48{bottom:217.561881px;}
.y99{bottom:218.417635px;}
.y6f{bottom:218.728900px;}
.y8e{bottom:221.382168px;}
.y2a{bottom:221.717620px;}
.yd{bottom:227.178303px;}
.yac{bottom:229.997620px;}
.yc0{bottom:230.777628px;}
.y77{bottom:231.171850px;}
.y6{bottom:231.633305px;}
.ya0{bottom:233.964101px;}
.y64{bottom:237.017621px;}
.y3f{bottom:238.840998px;}
.y39{bottom:243.662850px;}
.y47{bottom:249.961882px;}
.y29{bottom:256.907621px;}
.y3e{bottom:264.040988px;}
.y98{bottom:264.377610px;}
.yab{bottom:265.187622px;}
.y1a{bottom:268.277603px;}
.y38{bottom:268.862839px;}
.y63{bottom:269.327622px;}
.y22{bottom:270.564728px;}
.yb5{bottom:271.761485px;}
.ybf{bottom:279.707615px;}
.y11{bottom:280.409390px;}
.y46{bottom:282.361883px;}
.y3d{bottom:289.240983px;}
.y97{bottom:289.577611px;}
.y37{bottom:294.062834px;}
.yb4{bottom:296.961484px;}
.yc{bottom:298.097596px;}
.y5{bottom:298.659849px;}
.y59{bottom:302.458099px;}
.y21{bottom:303.189730px;}
.y19{bottom:303.467604px;}
.y28{bottom:307.097608px;}
.ybe{bottom:310.757604px;}
.y56{bottom:311.237597px;}
.yb7{bottom:313.391481px;}
.yaa{bottom:314.117597px;}
.y3c{bottom:314.440989px;}
.y9d{bottom:314.559553px;}
.y45{bottom:314.761873px;}
.ya4{bottom:314.786319px;}
.yae{bottom:315.852516px;}
.y8f{bottom:315.883453px;}
.y96{bottom:316.217623px;}
.y62{bottom:318.257608px;}
.y36{bottom:319.262841px;}
.ya6{bottom:322.097605px;}
.y4{bottom:334.659850px;}
.ya3{bottom:336.386320px;}
.y18{bottom:337.397594px;}
.y53{bottom:338.009279px;}
.yb6{bottom:338.591480px;}
.y3b{bottom:339.640983px;}
.y27{bottom:342.287609px;}
.ybd{bottom:343.067605px;}
.y35{bottom:344.462835px;}
.y1e{bottom:345.155774px;}
.y10{bottom:345.209403px;}
.y55{bottom:346.427598px;}
.y44{bottom:347.161874px;}
.y61{bottom:349.307598px;}
.y24{bottom:352.474181px;}
.y58{bottom:355.819125px;}
.y75{bottom:356.720009px;}
.ya5{bottom:357.287606px;}
.y5f{bottom:361.817610px;}
.y95{bottom:362.177598px;}
.y52{bottom:362.759280px;}
.y3a{bottom:364.840982px;}
.yb3{bottom:366.152707px;}
.y5d{bottom:368.027617px;}
.y17{bottom:368.447606px;}
.y34{bottom:369.662833px;}
.y3{bottom:370.659851px;}
.y1d{bottom:377.780776px;}
.y43{bottom:379.561882px;}
.yb{bottom:380.477598px;}
.y57{bottom:381.019124px;}
.y60{bottom:381.617599px;}
.y23{bottom:385.099183px;}
.y31{bottom:386.947079px;}
.y51{bottom:387.509280px;}
.y94{bottom:388.817599px;}
.y7f{bottom:389.438104px;}
.y5e{bottom:390.797606px;}
.yb2{bottom:391.352701px;}
.ybc{bottom:391.997603px;}
.y26{bottom:392.477607px;}
.y54{bottom:395.357607px;}
.y5c{bottom:397.007611px;}
.y16{bottom:399.497603px;}
.y76{bottom:402.285537px;}
.y14{bottom:403.822079px;}
.yf{bottom:410.009396px;}
.y42{bottom:411.961887px;}
.y50{bottom:412.259281px;}
.y2{bottom:412.419855px;}
.y7e{bottom:414.235333px;}
.y8c{bottom:415.246584px;}
.yb1{bottom:416.552700px;}
.y30{bottom:420.697084px;}
.y6a{bottom:422.177711px;}
.ybb{bottom:423.047604px;}
.y5b{bottom:425.987606px;}
.y78{bottom:427.186322px;}
.y25{bottom:427.667605px;}
.y15{bottom:430.547601px;}
.y93{bottom:434.777600px;}
.y6d{bottom:436.872392px;}
.y4f{bottom:437.009282px;}
.y13{bottom:437.572080px;}
.y6e{bottom:442.310316px;}
.y41{bottom:446.045541px;}
.yb0{bottom:449.162531px;}
.y69{bottom:450.977710px;}
.y2f{bottom:454.447085px;}
.y92{bottom:461.417599px;}
.y4e{bottom:461.759285px;}
.ya{bottom:462.857600px;}
.y12{bottom:471.322081px;}
.yaf{bottom:474.362530px;}
.y4d{bottom:475.001400px;}
.y33{bottom:477.784454px;}
.y2e{bottom:488.197086px;}
.y4a{bottom:488.837657px;}
.y5a{bottom:515.963090px;}
.y7d{bottom:518.392466px;}
.y8b{bottom:518.402596px;}
.y9{bottom:518.403541px;}
.y32{bottom:519.544463px;}
.yb8{bottom:527.996337px;}
.y49{bottom:532.037653px;}
.h1b{height:32.135742px;}
.h1a{height:43.710938px;}
.h19{height:46.530000px;}
.h1e{height:53.496002px;}
.h15{height:61.195312px;}
.hf{height:62.412000px;}
.h5{height:63.210000px;}
.h4{height:64.271484px;}
.h10{height:65.142000px;}
.h17{height:65.296875px;}
.hc{height:68.862307px;}
.hb{height:69.960940px;}
.h16{height:71.346439px;}
.h18{height:73.453130px;}
.h1{height:76.359377px;}
.h7{height:78.043946px;}
.h13{height:78.626956px;}
.hd{height:78.943362px;}
.ha{height:79.289063px;}
.h12{height:80.244003px;}
.h1c{height:82.634768px;}
.h9{height:82.995122px;}
.h11{height:83.754003px;}
.h1d{height:83.953128px;}
.h3{height:91.816407px;}
.h8{height:96.407230px;}
.he{height:106.507044px;}
.h6{height:110.179691px;}
.h14{height:114.676879px;}
.h2{height:165.269537px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x34{left:15.395670px;}
.xb{left:31.358269px;}
.x3e{left:49.243110px;}
.x36{left:54.392720px;}
.x32{left:58.681554px;}
.x9{left:63.000269px;}
.xf{left:64.511721px;}
.x20{left:67.449805px;}
.x2c{left:68.625002px;}
.x22{left:73.125002px;}
.xa{left:78.699534px;}
.x21{left:90.780010px;}
.x30{left:100.709648px;}
.x15{left:117.000004px;}
.x10{left:121.500004px;}
.x41{left:123.383861px;}
.x1f{left:128.725395px;}
.x47{left:135.540533px;}
.x3c{left:137.601387px;}
.x11{left:171.000005px;}
.x8{left:299.382872px;}
.x38{left:364.479345px;}
.x37{left:367.931116px;}
.x43{left:375.809075px;}
.x1a{left:426.693929px;}
.x1b{left:441.016925px;}
.x42{left:442.488220px;}
.x31{left:487.750999px;}
.x7{left:497.370005px;}
.x14{left:501.019216px;}
.x4{left:513.142869px;}
.x3{left:521.826050px;}
.x35{left:522.858991px;}
.x3a{left:524.503929px;}
.x3b{left:528.460633px;}
.x25{left:551.988614px;}
.x2d{left:553.491164px;}
.x23{left:556.656662px;}
.x45{left:557.666343px;}
.x26{left:558.977876px;}
.x4f{left:562.296280px;}
.x4c{left:565.636160px;}
.x4a{left:567.261707px;}
.x2f{left:570.755943px;}
.x4d{left:575.846751px;}
.x24{left:589.297131px;}
.x4b{left:599.100825px;}
.x2b{left:602.902594px;}
.x2e{left:607.491166px;}
.x27{left:616.731522px;}
.x28{left:645.995482px;}
.x46{left:648.593571px;}
.x17{left:652.277260px;}
.x29{left:654.698165px;}
.x18{left:657.063384px;}
.x2a{left:678.434008px;}
.xc{left:680.813149px;}
.x19{left:683.143607px;}
.x3d{left:700.107289px;}
.x39{left:710.388776px;}
.xd{left:715.651718px;}
.x2{left:720.123031px;}
.x16{left:721.690133px;}
.xe{left:736.257117px;}
.x5{left:741.481415px;}
.x44{left:769.181143px;}
.x1c{left:785.403588px;}
.x1d{left:799.726584px;}
.x1{left:801.830546px;}
.x33{left:811.904572px;}
.x1e{left:839.403589px;}
.x3f{left:864.791353px;}
.x6{left:887.405631px;}
.x12{left:898.104336px;}
.x40{left:908.586670px;}
.x13{left:925.777605px;}
.x4e{left:931.832499px;}
.x48{left:946.313472px;}
.x49{left:950.196290px;}
@media print{
.v2{vertical-align:-24.167921pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.685000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.071296pt;}
.ls2{letter-spacing:95.958339pt;}
.ls4{letter-spacing:95.975130pt;}
.ls8{letter-spacing:95.987659pt;}
.ls3{letter-spacing:96.000003pt;}
.ls1{letter-spacing:96.014115pt;}
.lsd{letter-spacing:96.078123pt;}
.ls5{letter-spacing:97.333339pt;}
.ls7{letter-spacing:98.500003pt;}
.ls6{letter-spacing:98.770839pt;}
.lsa{letter-spacing:99.000003pt;}
.lsb{letter-spacing:99.708339pt;}
.ls9{letter-spacing:646.572128pt;}
.ws2{word-spacing:-26.592001pt;}
.wsb{word-spacing:-23.482667pt;}
.wsd{word-spacing:-22.101335pt;}
.wsc{word-spacing:-20.720001pt;}
.wsa{word-spacing:-19.338667pt;}
.ws5{word-spacing:-18.528001pt;}
.ws8{word-spacing:-14.773333pt;}
.ws4{word-spacing:-14.410667pt;}
.ws7{word-spacing:-10.293333pt;}
.ws9{word-spacing:-9.669333pt;}
.ws3{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:1516.878569pt;}
._7{margin-left:-1910.962229pt;}
._5{margin-left:-9.034667pt;}
._4{margin-left:-7.765333pt;}
._6{margin-left:-5.280000pt;}
._2{margin-left:-3.749334pt;}
._0{margin-left:-2.784000pt;}
._1{margin-left:-1.472000pt;}
._3{width:0.922000pt;}
.fsd{font-size:37.333333pt;}
.fsc{font-size:53.333334pt;}
.fse{font-size:64.000002pt;}
.fs3{font-size:74.666666pt;}
.fs8{font-size:80.000003pt;}
.fsa{font-size:81.584315pt;}
.fsb{font-size:85.333339pt;}
.fs5{font-size:90.666667pt;}
.fs0{font-size:96.000003pt;}
.fs7{font-size:101.333339pt;}
.fs2{font-size:106.666667pt;}
.fs6{font-size:112.000004pt;}
.fs9{font-size:123.733348pt;}
.fs4{font-size:128.000004pt;}
.fs1{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:19.148225pt;}
.y1{bottom:23.834864pt;}
.y83{bottom:24.155363pt;}
.y91{bottom:27.572684pt;}
.y8a{bottom:29.294064pt;}
.y9f{bottom:35.207854pt;}
.yba{bottom:35.494786pt;}
.y7c{bottom:36.304964pt;}
.y74{bottom:38.987384pt;}
.y82{bottom:40.155364pt;}
.y89{bottom:40.494064pt;}
.ya2{bottom:44.205234pt;}
.y4c{bottom:47.148484pt;}
.y90{bottom:50.060884pt;}
.y9e{bottom:51.207854pt;}
.y88{bottom:51.694059pt;}
.y73{bottom:54.987384pt;}
.ya1{bottom:60.205235pt;}
.yb9{bottom:61.094785pt;}
.y87{bottom:62.894057pt;}
.ya9{bottom:63.058265pt;}
.yc4{bottom:72.922305pt;}
.y86{bottom:74.094058pt;}
.y4b{bottom:76.148486pt;}
.ya8{bottom:79.058265pt;}
.y68{bottom:83.268985pt;}
.y85{bottom:85.294057pt;}
.y2d{bottom:89.908966pt;}
.y7b{bottom:90.913886pt;}
.ya7{bottom:95.058266pt;}
.y84{bottom:96.494056pt;}
.yc3{bottom:100.522306pt;}
.y71{bottom:101.005786pt;}
.y7a{bottom:106.913886pt;}
.y67{bottom:110.868986pt;}
.y70{bottom:117.005786pt;}
.y2c{bottom:121.188967pt;}
.y1c{bottom:123.080717pt;}
.y20{bottom:127.256587pt;}
.yc2{bottom:129.242307pt;}
.y9c{bottom:134.016272pt;}
.y66{bottom:138.468997pt;}
.y79{bottom:143.297087pt;}
.y72{bottom:144.995287pt;}
.y6c{bottom:148.069067pt;}
.y81{bottom:151.186460pt;}
.y1b{bottom:152.080719pt;}
.y2b{bottom:152.468968pt;}
.y1f{bottom:156.256589pt;}
.y80{bottom:162.386458pt;}
.ye{bottom:163.296268pt;}
.y8d{bottom:164.803658pt;}
.y9b{bottom:167.136275pt;}
.y65{bottom:167.188998pt;}
.y9a{bottom:170.468998pt;}
.y6b{bottom:173.669088pt;}
.yc1{bottom:173.855668pt;}
.yad{bottom:175.722328pt;}
.y7{bottom:178.162940pt;}
.y40{bottom:189.903109pt;}
.y48{bottom:193.388339pt;}
.y99{bottom:194.149009pt;}
.y6f{bottom:194.425689pt;}
.y8e{bottom:196.784149pt;}
.y2a{bottom:197.082329pt;}
.yd{bottom:201.936269pt;}
.yac{bottom:204.442329pt;}
.yc0{bottom:205.135669pt;}
.y77{bottom:205.486089pt;}
.y6{bottom:205.896271pt;}
.ya0{bottom:207.968089pt;}
.y64{bottom:210.682329pt;}
.y3f{bottom:212.303110pt;}
.y39{bottom:216.589200pt;}
.y47{bottom:222.188340pt;}
.y29{bottom:228.362330pt;}
.y3e{bottom:234.703100pt;}
.y98{bottom:235.002320pt;}
.yab{bottom:235.722330pt;}
.y1a{bottom:238.468980pt;}
.y38{bottom:238.989190pt;}
.y63{bottom:239.402330pt;}
.y22{bottom:240.501980pt;}
.yb5{bottom:241.565764pt;}
.ybf{bottom:248.628991pt;}
.y11{bottom:249.252791pt;}
.y46{bottom:250.988341pt;}
.y3d{bottom:257.103096pt;}
.y97{bottom:257.402321pt;}
.y37{bottom:261.389186pt;}
.yb4{bottom:263.965763pt;}
.yc{bottom:264.975641pt;}
.y5{bottom:265.475421pt;}
.y59{bottom:268.851643pt;}
.y21{bottom:269.501982pt;}
.y19{bottom:269.748981pt;}
.y28{bottom:272.975651pt;}
.ybe{bottom:276.228982pt;}
.y56{bottom:276.655642pt;}
.yb7{bottom:278.570206pt;}
.yaa{bottom:279.215642pt;}
.y3c{bottom:279.503102pt;}
.y9d{bottom:279.608492pt;}
.y45{bottom:279.788332pt;}
.ya4{bottom:279.810062pt;}
.yae{bottom:280.757792pt;}
.y8f{bottom:280.785292pt;}
.y96{bottom:281.082332pt;}
.y62{bottom:282.895652pt;}
.y36{bottom:283.789192pt;}
.ya6{bottom:286.308982pt;}
.y4{bottom:297.475422pt;}
.ya3{bottom:299.010062pt;}
.y18{bottom:299.908972pt;}
.y53{bottom:300.452692pt;}
.yb6{bottom:300.970204pt;}
.y3b{bottom:301.903096pt;}
.y27{bottom:304.255652pt;}
.ybd{bottom:304.948982pt;}
.y35{bottom:306.189187pt;}
.y1e{bottom:306.805133pt;}
.y10{bottom:306.852803pt;}
.y55{bottom:307.935643pt;}
.y44{bottom:308.588333pt;}
.y61{bottom:310.495643pt;}
.y24{bottom:313.310383pt;}
.y58{bottom:316.283667pt;}
.y75{bottom:317.084453pt;}
.ya5{bottom:317.588983pt;}
.y5f{bottom:321.615653pt;}
.y95{bottom:321.935643pt;}
.y52{bottom:322.452693pt;}
.y3a{bottom:324.303095pt;}
.yb3{bottom:325.469073pt;}
.y5d{bottom:327.135659pt;}
.y17{bottom:327.508983pt;}
.y34{bottom:328.589185pt;}
.y3{bottom:329.475423pt;}
.y1d{bottom:335.805134pt;}
.y43{bottom:337.388340pt;}
.yb{bottom:338.202310pt;}
.y57{bottom:338.683666pt;}
.y60{bottom:339.215644pt;}
.y23{bottom:342.310385pt;}
.y31{bottom:343.952959pt;}
.y51{bottom:344.452694pt;}
.y94{bottom:345.615644pt;}
.y7f{bottom:346.167204pt;}
.y5e{bottom:347.375650pt;}
.yb2{bottom:347.869068pt;}
.ybc{bottom:348.442314pt;}
.y26{bottom:348.868984pt;}
.y54{bottom:351.428984pt;}
.y5c{bottom:352.895654pt;}
.y16{bottom:355.108980pt;}
.y76{bottom:357.587144pt;}
.y14{bottom:358.952959pt;}
.yf{bottom:364.452796pt;}
.y42{bottom:366.188344pt;}
.y50{bottom:366.452694pt;}
.y2{bottom:366.595426pt;}
.y7e{bottom:368.209185pt;}
.y8c{bottom:369.108075pt;}
.yb1{bottom:370.269067pt;}
.y30{bottom:373.952964pt;}
.y6a{bottom:375.269077pt;}
.ybb{bottom:376.042315pt;}
.y5b{bottom:378.655650pt;}
.y78{bottom:379.721175pt;}
.y25{bottom:380.148982pt;}
.y15{bottom:382.708979pt;}
.y93{bottom:386.468978pt;}
.y6d{bottom:388.331015pt;}
.y4f{bottom:388.452695pt;}
.y13{bottom:388.952960pt;}
.y6e{bottom:393.164725pt;}
.y41{bottom:396.484925pt;}
.yb0{bottom:399.255583pt;}
.y69{bottom:400.869076pt;}
.y2f{bottom:403.952965pt;}
.y92{bottom:410.148977pt;}
.y4e{bottom:410.452698pt;}
.ya{bottom:411.428978pt;}
.y12{bottom:418.952961pt;}
.yaf{bottom:421.655582pt;}
.y4d{bottom:422.223466pt;}
.y33{bottom:424.697292pt;}
.y2e{bottom:433.952966pt;}
.y4a{bottom:434.522362pt;}
.y5a{bottom:458.633857pt;}
.y7d{bottom:460.793303pt;}
.y8b{bottom:460.802307pt;}
.y9{bottom:460.803147pt;}
.y32{bottom:461.817300pt;}
.yb8{bottom:469.330078pt;}
.y49{bottom:472.922358pt;}
.h1b{height:28.565104pt;}
.h1a{height:38.854167pt;}
.h19{height:41.360000pt;}
.h1e{height:47.552002pt;}
.h15{height:54.395833pt;}
.hf{height:55.477333pt;}
.h5{height:56.186666pt;}
.h4{height:57.130208pt;}
.h10{height:57.904000pt;}
.h17{height:58.041666pt;}
.hc{height:61.210939pt;}
.hb{height:62.187502pt;}
.h16{height:63.419057pt;}
.h18{height:65.291671pt;}
.h1{height:67.875002pt;}
.h7{height:69.372396pt;}
.h13{height:69.890627pt;}
.hd{height:70.171877pt;}
.ha{height:70.479167pt;}
.h12{height:71.328002pt;}
.h1c{height:73.453127pt;}
.h9{height:73.773442pt;}
.h11{height:74.448002pt;}
.h1d{height:74.625002pt;}
.h3{height:81.614584pt;}
.h8{height:85.695315pt;}
.he{height:94.672928pt;}
.h6{height:97.937503pt;}
.h14{height:101.935003pt;}
.h2{height:146.906255pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x34{left:13.685040pt;}
.xb{left:27.874017pt;}
.x3e{left:43.771653pt;}
.x36{left:48.349085pt;}
.x32{left:52.161382pt;}
.x9{left:56.000239pt;}
.xf{left:57.343752pt;}
.x20{left:59.955382pt;}
.x2c{left:61.000002pt;}
.x22{left:65.000002pt;}
.xa{left:69.955141pt;}
.x21{left:80.693343pt;}
.x30{left:89.519687pt;}
.x15{left:104.000003pt;}
.x10{left:108.000003pt;}
.x41{left:109.674544pt;}
.x1f{left:114.422574pt;}
.x47{left:120.480474pt;}
.x3c{left:122.312344pt;}
.x11{left:152.000005pt;}
.x8{left:266.118109pt;}
.x38{left:323.981640pt;}
.x37{left:327.049880pt;}
.x43{left:334.052511pt;}
.x1a{left:379.283492pt;}
.x1b{left:392.015045pt;}
.x42{left:393.322863pt;}
.x31{left:433.556444pt;}
.x7{left:442.106671pt;}
.x14{left:445.350414pt;}
.x4{left:456.126995pt;}
.x3{left:463.845378pt;}
.x35{left:464.763548pt;}
.x3a{left:466.225715pt;}
.x3b{left:469.742785pt;}
.x25{left:490.656546pt;}
.x2d{left:491.992146pt;}
.x23{left:494.805922pt;}
.x45{left:495.703416pt;}
.x26{left:496.869223pt;}
.x4f{left:499.818916pt;}
.x4c{left:502.787698pt;}
.x4a{left:504.232628pt;}
.x2f{left:507.338616pt;}
.x4d{left:511.863778pt;}
.x24{left:523.819672pt;}
.x4b{left:532.534067pt;}
.x2b{left:535.913417pt;}
.x2e{left:539.992147pt;}
.x27{left:548.205798pt;}
.x28{left:574.218206pt;}
.x46{left:576.527618pt;}
.x17{left:579.802009pt;}
.x29{left:581.953925pt;}
.x18{left:584.056342pt;}
.x2a{left:603.052451pt;}
.xc{left:605.167243pt;}
.x19{left:607.238761pt;}
.x3d{left:622.317590pt;}
.x39{left:631.456690pt;}
.xd{left:636.134860pt;}
.x2{left:640.109360pt;}
.x16{left:641.502341pt;}
.xe{left:654.450771pt;}
.x5{left:659.094591pt;}
.x44{left:683.716572pt;}
.x1c{left:698.136522pt;}
.x1d{left:710.868075pt;}
.x1{left:712.738263pt;}
.x33{left:721.692953pt;}
.x1e{left:746.136524pt;}
.x3f{left:768.703425pt;}
.x6{left:788.805005pt;}
.x12{left:798.314966pt;}
.x40{left:807.632596pt;}
.x13{left:822.913426pt;}
.x4e{left:828.295555pt;}
.x48{left:841.167531pt;}
.x49{left:844.618924pt;}
}




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