
    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_0c14817f182d03f7b15a1768.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074707;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_8ee4ffa0cf9c2a22339edec9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50dd02561efbbed3caeacfd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000977;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_b135b181ff123bb42ca37dd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252363,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v4{vertical-align:-37.248000px;}
.v2{vertical-align:-29.256000px;}
.v1{vertical-align:-27.726000px;}
.v3{vertical-align:-20.580000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.672672px;}
.ls4{letter-spacing:0.755838px;}
.ls6{letter-spacing:0.917466px;}
.ls3{letter-spacing:34.820148px;}
.ls7{letter-spacing:97.299852px;}
.ls2{letter-spacing:110.129304px;}
.ls1{letter-spacing:112.154004px;}
.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;}
}
.ws1d{word-spacing:-54.837690px;}
.ws16{word-spacing:-37.882656px;}
.ws1b{word-spacing:-36.141672px;}
.ws1c{word-spacing:-34.910310px;}
.ws1{word-spacing:-23.272986px;}
.wsa{word-spacing:-19.929042px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:16.927644px;}
.wsf{word-spacing:17.151500px;}
.ws12{word-spacing:17.192360px;}
.ws11{word-spacing:17.230885px;}
.ws13{word-spacing:18.281957px;}
.ws10{word-spacing:18.439320px;}
.wsd{word-spacing:69.006856px;}
.wsc{word-spacing:70.518532px;}
.ws2{word-spacing:75.662946px;}
.ws1a{word-spacing:94.988379px;}
.ws18{word-spacing:96.652539px;}
.ws19{word-spacing:96.823311px;}
.ws17{word-spacing:96.900001px;}
.ws14{word-spacing:113.632988px;}
.ws15{word-spacing:113.964788px;}
.ws3{word-spacing:152.116662px;}
.ws5{word-spacing:164.375934px;}
.wsb{word-spacing:166.967904px;}
.ws4{word-spacing:196.181934px;}
.ws9{word-spacing:206.897934px;}
.ws7{word-spacing:210.536814px;}
.ws8{word-spacing:236.111964px;}
.ws6{word-spacing:322.484790px;}
._25{margin-left:-3862.677660px;}
._0{margin-left:-17.758668px;}
._5b{margin-left:-16.131840px;}
._3{margin-left:-14.451810px;}
._46{margin-left:-12.655782px;}
._b{margin-left:-10.690380px;}
._6{margin-left:-9.002208px;}
._5a{margin-left:-7.954164px;}
._4{margin-left:-6.381312px;}
._1c{margin-left:-5.324004px;}
._a{margin-left:-4.116882px;}
._9{margin-left:-2.436522px;}
._5{margin-left:-1.025568px;}
._7{width:1.008216px;}
._48{width:2.328024px;}
._2b{width:4.619622px;}
._33{width:36.212911px;}
._3a{width:41.702334px;}
._36{width:43.734193px;}
._38{width:44.855123px;}
._49{width:87.788098px;}
._41{width:90.873560px;}
._1a{width:92.090442px;}
._22{width:93.459636px;}
._12{width:96.924438px;}
._50{width:97.979275px;}
._c{width:104.444916px;}
._e{width:106.272012px;}
._d{width:108.263922px;}
._26{width:112.977684px;}
._32{width:116.383883px;}
._55{width:119.933320px;}
._57{width:121.094648px;}
._44{width:137.380935px;}
._43{width:140.124369px;}
._3d{width:151.865776px;}
._34{width:152.874713px;}
._2e{width:155.989944px;}
._2a{width:158.005080px;}
._1d{width:175.690578px;}
._54{width:183.274125px;}
._52{width:185.893866px;}
._4b{width:187.453061px;}
._24{width:193.376670px;}
._3f{width:199.990228px;}
._45{width:202.580095px;}
._28{width:203.837163px;}
._1e{width:205.479558px;}
._10{width:224.235006px;}
._27{width:229.537512px;}
._40{width:243.960328px;}
._2c{width:246.190204px;}
._42{width:248.435210px;}
._14{width:255.969060px;}
._15{width:259.269138px;}
._f{width:260.398392px;}
._4e{width:274.013477px;}
._4f{width:277.636440px;}
._13{width:279.342072px;}
._1f{width:282.386496px;}
._3b{width:295.721366px;}
._17{width:300.209982px;}
._20{width:305.324646px;}
._4c{width:312.031925px;}
._30{width:321.942400px;}
._37{width:343.950738px;}
._39{width:345.208740px;}
._56{width:357.573355px;}
._2f{width:358.644694px;}
._3c{width:360.073641px;}
._2d{width:368.722534px;}
._11{width:381.969084px;}
._4a{width:383.618676px;}
._18{width:388.422342px;}
._23{width:394.118634px;}
._21{width:397.787880px;}
._53{width:404.136189px;}
._4d{width:405.792507px;}
._16{width:422.043006px;}
._35{width:430.311368px;}
._51{width:438.455744px;}
._3e{width:477.377512px;}
._29{width:478.654108px;}
._47{width:549.311934px;}
._1b{width:568.575060px;}
._31{width:626.346732px;}
._19{width:673.341060px;}
._58{width:909.795408px;}
._8{width:1779.029964px;}
._59{width:2105.947014px;}
._5c{width:2112.241014px;}
._2{width:2152.885014px;}
._1{width:2176.015014px;}
.fc8{color:rgb(255,128,0);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(21,132,102);}
.fc4{color:rgb(0,155,221);}
.fc3{color:rgb(119,202,238);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(238,238,238);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(221,65,0);}
.fs9{font-size:37.758000px;}
.fs5{font-size:51.534000px;}
.fs7{font-size:54.084000px;}
.fs11{font-size:60.036000px;}
.fsf{font-size:62.928000px;}
.fs12{font-size:70.242000px;}
.fsa{font-size:71.946000px;}
.fs10{font-size:83.406000px;}
.fsb{font-size:83.982000px;}
.fsd{font-size:84.000000px;}
.fs3{font-size:84.018000px;}
.fsc{font-size:84.084000px;}
.fse{font-size:95.922000px;}
.fs6{font-size:113.952000px;}
.fs8{font-size:120.078000px;}
.fs2{font-size:126.030000px;}
.fs13{font-size:155.964000px;}
.fs1{font-size:179.946000px;}
.fs4{font-size:197.970000px;}
.fs0{font-size:239.982000px;}
.fs14{font-size:395.946000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y95{bottom:5.707500px;}
.y9a{bottom:7.185000px;}
.y93{bottom:7.188000px;}
.y7e{bottom:7.213500px;}
.y77{bottom:7.221000px;}
.y6f{bottom:7.230000px;}
.y84{bottom:26.133000px;}
.y99{bottom:32.688000px;}
.y92{bottom:32.691000px;}
.y7d{bottom:32.895000px;}
.y76{bottom:32.925000px;}
.y6e{bottom:32.934000px;}
.y8{bottom:34.057500px;}
.y83{bottom:51.841500px;}
.y98{bottom:58.192500px;}
.y91{bottom:58.194000px;}
.y7c{bottom:58.578000px;}
.y75{bottom:58.629000px;}
.y6d{bottom:58.638000px;}
.y82{bottom:77.550000px;}
.y4d{bottom:81.466500px;}
.y97{bottom:83.695500px;}
.y90{bottom:83.697000px;}
.y7b{bottom:84.261000px;}
.y74{bottom:84.333000px;}
.y6c{bottom:84.342000px;}
.y96{bottom:89.205000px;}
.y2b{bottom:91.756500px;}
.y67{bottom:94.477500px;}
.y85{bottom:95.626500px;}
.y8b{bottom:96.774000px;}
.y4c{bottom:97.327500px;}
.ya4{bottom:99.835500px;}
.y81{bottom:103.258500px;}
.y35{bottom:104.215500px;}
.y2a{bottom:104.853000px;}
.yae{bottom:105.108000px;}
.y7a{bottom:109.944000px;}
.y73{bottom:110.037000px;}
.y6b{bottom:110.046000px;}
.y8a{bottom:115.143000px;}
.ya3{bottom:117.312000px;}
.y29{bottom:120.712500px;}
.y78{bottom:122.583000px;}
.y80{bottom:128.967000px;}
.y4b{bottom:129.046500px;}
.y7f{bottom:129.216000px;}
.y64{bottom:135.339000px;}
.y79{bottom:135.627000px;}
.y72{bottom:135.741000px;}
.y6a{bottom:135.748500px;}
.y28{bottom:136.572000px;}
.y4a{bottom:144.906000px;}
.y13{bottom:145.332000px;}
.ya2{bottom:150.817500px;}
.yad{bottom:151.156500px;}
.y27{bottom:152.433000px;}
.y5a{bottom:153.198000px;}
.y34{bottom:153.580500px;}
.y49{bottom:160.767000px;}
.y63{bottom:167.995500px;}
.ya1{bottom:169.185000px;}
.y7{bottom:174.415500px;}
.y48{bottom:176.626500px;}
.y26{bottom:184.152000px;}
.y12{bottom:184.534500px;}
.y59{bottom:187.554000px;}
.y25{bottom:200.011500px;}
.y62{bottom:201.585000px;}
.y33{bottom:202.945500px;}
.y47{bottom:208.345500px;}
.y8e{bottom:208.813500px;}
.y6{bottom:209.536500px;}
.yac{bottom:210.642000px;}
.y24{bottom:215.872500px;}
.y58{bottom:216.297000px;}
.y11{bottom:216.510000px;}
.y46{bottom:224.206500px;}
.y61{bottom:234.198000px;}
.y45{bottom:240.066000px;}
.y5{bottom:244.657500px;}
.y9b{bottom:245.677500px;}
.y23{bottom:247.591500px;}
.y57{bottom:250.653000px;}
.y32{bottom:252.312000px;}
.y44{bottom:255.925500px;}
.yab{bottom:259.200000px;}
.y10{bottom:264.088500px;}
.y60{bottom:270.000000px;}
.y43{bottom:271.785000px;}
.y22{bottom:279.312000px;}
.y56{bottom:279.396000px;}
.y9c{bottom:286.156500px;}
.y42{bottom:287.644500px;}
.yaa{bottom:294.321000px;}
.y21{bottom:295.171500px;}
.y70{bottom:299.677500px;}
.y31{bottom:301.677000px;}
.y66{bottom:304.950000px;}
.y20{bottom:311.031000px;}
.yf{bottom:311.668500px;}
.y55{bottom:313.752000px;}
.yaf{bottom:318.217500px;}
.y41{bottom:319.365000px;}
.y3{bottom:322.213500px;}
.y1f{bottom:326.890500px;}
.ya9{bottom:329.442000px;}
.y40{bottom:335.224500px;}
.y8f{bottom:335.607000px;}
.y94{bottom:337.087500px;}
.y54{bottom:342.495000px;}
.y1e{bottom:342.750000px;}
.y69{bottom:350.064000px;}
.y30{bottom:351.042000px;}
.y3f{bottom:351.084000px;}
.y71{bottom:353.932500px;}
.ye{bottom:359.248500px;}
.y3e{bottom:366.945000px;}
.y5f{bottom:369.411000px;}
.y1d{bottom:374.470500px;}
.ya8{bottom:375.490500px;}
.y53{bottom:376.851000px;}
.y2{bottom:389.182500px;}
.y1c{bottom:390.330000px;}
.y3d{bottom:398.664000px;}
.y2f{bottom:400.407000px;}
.y52{bottom:400.450500px;}
.y5e{bottom:402.022500px;}
.y1b{bottom:406.189500px;}
.yd{bottom:406.828500px;}
.y3c{bottom:414.523500px;}
.y1a{bottom:422.050500px;}
.ya7{bottom:424.048500px;}
.y51{bottom:429.193500px;}
.y5d{bottom:435.996000px;}
.y19{bottom:437.910000px;}
.y89{bottom:438.717000px;}
.y3b{bottom:446.244000px;}
.y2e{bottom:449.772000px;}
.y8d{bottom:450.750000px;}
.yc{bottom:454.407000px;}
.y3a{bottom:462.103500px;}
.y5c{bottom:466.611000px;}
.y50{bottom:468.694500px;}
.y18{bottom:469.629000px;}
.ya6{bottom:470.097000px;}
.y88{bottom:472.180500px;}
.y8c{bottom:484.213500px;}
.y17{bottom:485.488500px;}
.y4{bottom:485.617500px;}
.y39{bottom:493.822500px;}
.y9e{bottom:495.609000px;}
.y2d{bottom:499.138500px;}
.y16{bottom:501.349500px;}
.yb{bottom:501.987000px;}
.y87{bottom:505.644000px;}
.y5b{bottom:507.939000px;}
.y4f{bottom:508.195500px;}
.y38{bottom:509.683500px;}
.y15{bottom:517.209000px;}
.y9d{bottom:522.268500px;}
.ya0{bottom:522.312000px;}
.y37{bottom:525.543000px;}
.y68{bottom:529.156500px;}
.ya5{bottom:529.582500px;}
.y86{bottom:539.106000px;}
.y65{bottom:545.187000px;}
.y4e{bottom:547.695000px;}
.y2c{bottom:548.503500px;}
.y14{bottom:548.928000px;}
.y9f{bottom:548.971500px;}
.ya{bottom:549.567000px;}
.y36{bottom:557.262000px;}
.y9{bottom:602.971500px;}
.hb{height:41.381654px;}
.h22{height:45.935748px;}
.h1d{height:48.148523px;}
.hf{height:52.132746px;}
.he{height:52.279359px;}
.h1f{height:60.436770px;}
.h14{height:60.854145px;}
.h1a{height:60.867188px;}
.h11{height:60.880230px;}
.h17{height:60.928055px;}
.h10{height:62.390672px;}
.h9{height:71.091750px;}
.ha{height:71.097750px;}
.h20{height:72.328641px;}
.h15{height:72.828141px;}
.h1b{height:72.843750px;}
.h7{height:72.859359px;}
.h18{height:72.916594px;}
.hc{height:74.874141px;}
.hd{height:74.880141px;}
.h1c{height:83.182359px;}
.h23{height:98.002031px;}
.h21{height:102.012000px;}
.h1e{height:103.534500px;}
.h12{height:104.130141px;}
.h5{height:109.291641px;}
.h19{height:148.987500px;}
.h16{height:155.622000px;}
.h13{height:155.749500px;}
.h4{height:156.046922px;}
.h8{height:171.677109px;}
.h3{height:208.109391px;}
.h24{height:343.359422px;}
.h2{height:669.642000px;}
.h6{height:669.684000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w8{width:155.227500px;}
.w3{width:443.224500px;}
.w6{width:500.881500px;}
.w4{width:501.561000px;}
.w5{width:501.604500px;}
.w7{width:542.253000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x1a{left:1.525500px;}
.xc{left:25.597500px;}
.x9{left:27.723000px;}
.xe{left:29.551500px;}
.x1e{left:34.015500px;}
.x1d{left:37.587000px;}
.x20{left:39.330000px;}
.x2{left:40.903500px;}
.x7{left:42.519000px;}
.xf{left:45.751500px;}
.x18{left:51.108000px;}
.x19{left:54.000000px;}
.x26{left:55.275000px;}
.x24{left:64.672500px;}
.xa{left:65.991000px;}
.x27{left:93.543000px;}
.x25{left:94.564500px;}
.x16{left:196.356000px;}
.x21{left:199.009500px;}
.x22{left:267.874500px;}
.x10{left:282.118500px;}
.x29{left:342.325500px;}
.x17{left:349.044000px;}
.x6{left:362.736000px;}
.x8{left:407.296500px;}
.x5{left:433.659000px;}
.x1{left:441.312000px;}
.x3{left:456.406500px;}
.x4{left:486.169500px;}
.x28{left:487.956000px;}
.x13{left:489.741000px;}
.x12{left:491.145000px;}
.x15{left:493.483500px;}
.x14{left:494.589000px;}
.xd{left:497.608500px;}
.xb{left:537.108000px;}
.x23{left:590.386500px;}
.x11{left:614.664000px;}
.x1f{left:618.108000px;}
.x1b{left:629.674500px;}
.x1c{left:632.565000px;}
@media print{
.v4{vertical-align:-33.109333pt;}
.v2{vertical-align:-26.005333pt;}
.v1{vertical-align:-24.645333pt;}
.v3{vertical-align:-18.293333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.597931pt;}
.ls4{letter-spacing:0.671856pt;}
.ls6{letter-spacing:0.815525pt;}
.ls3{letter-spacing:30.951243pt;}
.ls7{letter-spacing:86.488757pt;}
.ls2{letter-spacing:97.892715pt;}
.ls1{letter-spacing:99.692448pt;}
.ws1d{word-spacing:-48.744613pt;}
.ws16{word-spacing:-33.673472pt;}
.ws1b{word-spacing:-32.125931pt;}
.ws1c{word-spacing:-31.031387pt;}
.ws1{word-spacing:-20.687099pt;}
.wsa{word-spacing:-17.714704pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:15.046794pt;}
.wsf{word-spacing:15.245778pt;}
.ws12{word-spacing:15.282098pt;}
.ws11{word-spacing:15.316342pt;}
.ws13{word-spacing:16.250629pt;}
.ws10{word-spacing:16.390506pt;}
.wsd{word-spacing:61.339428pt;}
.wsc{word-spacing:62.683140pt;}
.ws2{word-spacing:67.255952pt;}
.ws1a{word-spacing:84.434115pt;}
.ws18{word-spacing:85.913368pt;}
.ws19{word-spacing:86.065165pt;}
.ws17{word-spacing:86.133334pt;}
.ws14{word-spacing:101.007101pt;}
.ws15{word-spacing:101.302034pt;}
.ws3{word-spacing:135.214811pt;}
.ws5{word-spacing:146.111941pt;}
.wsb{word-spacing:148.415915pt;}
.ws4{word-spacing:174.383941pt;}
.ws9{word-spacing:183.909275pt;}
.ws7{word-spacing:187.143835pt;}
.ws8{word-spacing:209.877301pt;}
.ws6{word-spacing:286.653147pt;}
._25{margin-left:-3433.491253pt;}
._0{margin-left:-15.785483pt;}
._5b{margin-left:-14.339413pt;}
._3{margin-left:-12.846053pt;}
._46{margin-left:-11.249584pt;}
._b{margin-left:-9.502560pt;}
._6{margin-left:-8.001963pt;}
._5a{margin-left:-7.070368pt;}
._4{margin-left:-5.672277pt;}
._1c{margin-left:-4.732448pt;}
._a{margin-left:-3.659451pt;}
._9{margin-left:-2.165797pt;}
._5{margin-left:-0.911616pt;}
._7{width:0.896192pt;}
._48{width:2.069355pt;}
._2b{width:4.106331pt;}
._33{width:32.189255pt;}
._3a{width:37.068741pt;}
._36{width:38.874838pt;}
._38{width:39.871220pt;}
._49{width:78.033865pt;}
._41{width:80.776497pt;}
._1a{width:81.858171pt;}
._22{width:83.075232pt;}
._12{width:86.155056pt;}
._50{width:87.092689pt;}
._c{width:92.839925pt;}
._e{width:94.464011pt;}
._d{width:96.234597pt;}
._26{width:100.424608pt;}
._32{width:103.452340pt;}
._55{width:106.607395pt;}
._57{width:107.639687pt;}
._44{width:122.116386pt;}
._43{width:124.554995pt;}
._3d{width:134.991801pt;}
._34{width:135.888633pt;}
._2e{width:138.657728pt;}
._2a{width:140.448960pt;}
._1d{width:156.169403pt;}
._54{width:162.910333pt;}
._52{width:165.238992pt;}
._4b{width:166.624943pt;}
._24{width:171.890373pt;}
._3f{width:177.769092pt;}
._45{width:180.071195pt;}
._28{width:181.188590pt;}
._1e{width:182.648496pt;}
._10{width:199.320005pt;}
._27{width:204.033344pt;}
._40{width:216.853625pt;}
._2c{width:218.835737pt;}
._42{width:220.831298pt;}
._14{width:227.528053pt;}
._15{width:230.461456pt;}
._f{width:231.465237pt;}
._4e{width:243.567535pt;}
._4f{width:246.787946pt;}
._13{width:248.304064pt;}
._1f{width:251.010219pt;}
._3b{width:262.863437pt;}
._17{width:266.853317pt;}
._20{width:271.399685pt;}
._4c{width:277.361711pt;}
._30{width:286.171022pt;}
._37{width:305.733989pt;}
._39{width:306.852213pt;}
._56{width:317.842982pt;}
._2f{width:318.795283pt;}
._3c{width:320.065459pt;}
._2d{width:327.753363pt;}
._11{width:339.528075pt;}
._4a{width:340.994379pt;}
._18{width:345.264304pt;}
._23{width:350.327675pt;}
._21{width:353.589227pt;}
._53{width:359.232168pt;}
._4d{width:360.704451pt;}
._16{width:375.149339pt;}
._35{width:382.498994pt;}
._51{width:389.738439pt;}
._3e{width:424.335566pt;}
._29{width:425.470318pt;}
._47{width:488.277275pt;}
._1b{width:505.400053pt;}
._31{width:556.752651pt;}
._19{width:598.525387pt;}
._58{width:808.707029pt;}
._8{width:1581.359968pt;}
._59{width:1871.952901pt;}
._5c{width:1877.547568pt;}
._2{width:1913.675568pt;}
._1{width:1934.235568pt;}
.fs9{font-size:33.562667pt;}
.fs5{font-size:45.808000pt;}
.fs7{font-size:48.074667pt;}
.fs11{font-size:53.365333pt;}
.fsf{font-size:55.936000pt;}
.fs12{font-size:62.437333pt;}
.fsa{font-size:63.952000pt;}
.fs10{font-size:74.138667pt;}
.fsb{font-size:74.650667pt;}
.fsd{font-size:74.666667pt;}
.fs3{font-size:74.682667pt;}
.fsc{font-size:74.741333pt;}
.fse{font-size:85.264000pt;}
.fs6{font-size:101.290667pt;}
.fs8{font-size:106.736000pt;}
.fs2{font-size:112.026667pt;}
.fs13{font-size:138.634667pt;}
.fs1{font-size:159.952000pt;}
.fs4{font-size:175.973333pt;}
.fs0{font-size:213.317333pt;}
.fs14{font-size:351.952000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y95{bottom:5.073333pt;}
.y9a{bottom:6.386667pt;}
.y93{bottom:6.389333pt;}
.y7e{bottom:6.412000pt;}
.y77{bottom:6.418667pt;}
.y6f{bottom:6.426667pt;}
.y84{bottom:23.229333pt;}
.y99{bottom:29.056000pt;}
.y92{bottom:29.058667pt;}
.y7d{bottom:29.240000pt;}
.y76{bottom:29.266667pt;}
.y6e{bottom:29.274667pt;}
.y8{bottom:30.273333pt;}
.y83{bottom:46.081333pt;}
.y98{bottom:51.726667pt;}
.y91{bottom:51.728000pt;}
.y7c{bottom:52.069333pt;}
.y75{bottom:52.114667pt;}
.y6d{bottom:52.122667pt;}
.y82{bottom:68.933333pt;}
.y4d{bottom:72.414667pt;}
.y97{bottom:74.396000pt;}
.y90{bottom:74.397333pt;}
.y7b{bottom:74.898667pt;}
.y74{bottom:74.962667pt;}
.y6c{bottom:74.970667pt;}
.y96{bottom:79.293333pt;}
.y2b{bottom:81.561333pt;}
.y67{bottom:83.980000pt;}
.y85{bottom:85.001333pt;}
.y8b{bottom:86.021333pt;}
.y4c{bottom:86.513333pt;}
.ya4{bottom:88.742667pt;}
.y81{bottom:91.785333pt;}
.y35{bottom:92.636000pt;}
.y2a{bottom:93.202667pt;}
.yae{bottom:93.429333pt;}
.y7a{bottom:97.728000pt;}
.y73{bottom:97.810667pt;}
.y6b{bottom:97.818667pt;}
.y8a{bottom:102.349333pt;}
.ya3{bottom:104.277333pt;}
.y29{bottom:107.300000pt;}
.y78{bottom:108.962667pt;}
.y80{bottom:114.637333pt;}
.y4b{bottom:114.708000pt;}
.y7f{bottom:114.858667pt;}
.y64{bottom:120.301333pt;}
.y79{bottom:120.557333pt;}
.y72{bottom:120.658667pt;}
.y6a{bottom:120.665333pt;}
.y28{bottom:121.397333pt;}
.y4a{bottom:128.805333pt;}
.y13{bottom:129.184000pt;}
.ya2{bottom:134.060000pt;}
.yad{bottom:134.361333pt;}
.y27{bottom:135.496000pt;}
.y5a{bottom:136.176000pt;}
.y34{bottom:136.516000pt;}
.y49{bottom:142.904000pt;}
.y63{bottom:149.329333pt;}
.ya1{bottom:150.386667pt;}
.y7{bottom:155.036000pt;}
.y48{bottom:157.001333pt;}
.y26{bottom:163.690667pt;}
.y12{bottom:164.030667pt;}
.y59{bottom:166.714667pt;}
.y25{bottom:177.788000pt;}
.y62{bottom:179.186667pt;}
.y33{bottom:180.396000pt;}
.y47{bottom:185.196000pt;}
.y8e{bottom:185.612000pt;}
.y6{bottom:186.254667pt;}
.yac{bottom:187.237333pt;}
.y24{bottom:191.886667pt;}
.y58{bottom:192.264000pt;}
.y11{bottom:192.453333pt;}
.y46{bottom:199.294667pt;}
.y61{bottom:208.176000pt;}
.y45{bottom:213.392000pt;}
.y5{bottom:217.473333pt;}
.y9b{bottom:218.380000pt;}
.y23{bottom:220.081333pt;}
.y57{bottom:222.802667pt;}
.y32{bottom:224.277333pt;}
.y44{bottom:227.489333pt;}
.yab{bottom:230.400000pt;}
.y10{bottom:234.745333pt;}
.y60{bottom:240.000000pt;}
.y43{bottom:241.586667pt;}
.y22{bottom:248.277333pt;}
.y56{bottom:248.352000pt;}
.y9c{bottom:254.361333pt;}
.y42{bottom:255.684000pt;}
.yaa{bottom:261.618667pt;}
.y21{bottom:262.374667pt;}
.y70{bottom:266.380000pt;}
.y31{bottom:268.157333pt;}
.y66{bottom:271.066667pt;}
.y20{bottom:276.472000pt;}
.yf{bottom:277.038667pt;}
.y55{bottom:278.890667pt;}
.yaf{bottom:282.860000pt;}
.y41{bottom:283.880000pt;}
.y3{bottom:286.412000pt;}
.y1f{bottom:290.569333pt;}
.ya9{bottom:292.837333pt;}
.y40{bottom:297.977333pt;}
.y8f{bottom:298.317333pt;}
.y94{bottom:299.633333pt;}
.y54{bottom:304.440000pt;}
.y1e{bottom:304.666667pt;}
.y69{bottom:311.168000pt;}
.y30{bottom:312.037333pt;}
.y3f{bottom:312.074667pt;}
.y71{bottom:314.606667pt;}
.ye{bottom:319.332000pt;}
.y3e{bottom:326.173333pt;}
.y5f{bottom:328.365333pt;}
.y1d{bottom:332.862667pt;}
.ya8{bottom:333.769333pt;}
.y53{bottom:334.978667pt;}
.y2{bottom:345.940000pt;}
.y1c{bottom:346.960000pt;}
.y3d{bottom:354.368000pt;}
.y2f{bottom:355.917333pt;}
.y52{bottom:355.956000pt;}
.y5e{bottom:357.353333pt;}
.y1b{bottom:361.057333pt;}
.yd{bottom:361.625333pt;}
.y3c{bottom:368.465333pt;}
.y1a{bottom:375.156000pt;}
.ya7{bottom:376.932000pt;}
.y51{bottom:381.505333pt;}
.y5d{bottom:387.552000pt;}
.y19{bottom:389.253333pt;}
.y89{bottom:389.970667pt;}
.y3b{bottom:396.661333pt;}
.y2e{bottom:399.797333pt;}
.y8d{bottom:400.666667pt;}
.yc{bottom:403.917333pt;}
.y3a{bottom:410.758667pt;}
.y5c{bottom:414.765333pt;}
.y50{bottom:416.617333pt;}
.y18{bottom:417.448000pt;}
.ya6{bottom:417.864000pt;}
.y88{bottom:419.716000pt;}
.y8c{bottom:430.412000pt;}
.y17{bottom:431.545333pt;}
.y4{bottom:431.660000pt;}
.y39{bottom:438.953333pt;}
.y9e{bottom:440.541333pt;}
.y2d{bottom:443.678667pt;}
.y16{bottom:445.644000pt;}
.yb{bottom:446.210667pt;}
.y87{bottom:449.461333pt;}
.y5b{bottom:451.501333pt;}
.y4f{bottom:451.729333pt;}
.y38{bottom:453.052000pt;}
.y15{bottom:459.741333pt;}
.y9d{bottom:464.238667pt;}
.ya0{bottom:464.277333pt;}
.y37{bottom:467.149333pt;}
.y68{bottom:470.361333pt;}
.ya5{bottom:470.740000pt;}
.y86{bottom:479.205333pt;}
.y65{bottom:484.610667pt;}
.y4e{bottom:486.840000pt;}
.y2c{bottom:487.558667pt;}
.y14{bottom:487.936000pt;}
.y9f{bottom:487.974667pt;}
.ya{bottom:488.504000pt;}
.y36{bottom:495.344000pt;}
.y9{bottom:535.974667pt;}
.hb{height:36.783693pt;}
.h22{height:40.831776pt;}
.h1d{height:42.798687pt;}
.hf{height:46.340219pt;}
.he{height:46.470542pt;}
.h1f{height:53.721573pt;}
.h14{height:54.092573pt;}
.h1a{height:54.104167pt;}
.h11{height:54.115760pt;}
.h17{height:54.158271pt;}
.h10{height:55.458375pt;}
.h9{height:63.192667pt;}
.ha{height:63.198000pt;}
.h20{height:64.292125pt;}
.h15{height:64.736125pt;}
.h1b{height:64.750000pt;}
.h7{height:64.763875pt;}
.h18{height:64.814750pt;}
.hc{height:66.554792pt;}
.hd{height:66.560125pt;}
.h1c{height:73.939875pt;}
.h23{height:87.112917pt;}
.h21{height:90.677333pt;}
.h1e{height:92.030667pt;}
.h12{height:92.560125pt;}
.h5{height:97.148125pt;}
.h19{height:132.433333pt;}
.h16{height:138.330667pt;}
.h13{height:138.444000pt;}
.h4{height:138.708375pt;}
.h8{height:152.601875pt;}
.h3{height:184.986125pt;}
.h24{height:305.208375pt;}
.h2{height:595.237333pt;}
.h6{height:595.274667pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w8{width:137.980000pt;}
.w3{width:393.977333pt;}
.w6{width:445.228000pt;}
.w4{width:445.832000pt;}
.w5{width:445.870667pt;}
.w7{width:482.002667pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x1a{left:1.356000pt;}
.xc{left:22.753333pt;}
.x9{left:24.642667pt;}
.xe{left:26.268000pt;}
.x1e{left:30.236000pt;}
.x1d{left:33.410667pt;}
.x20{left:34.960000pt;}
.x2{left:36.358667pt;}
.x7{left:37.794667pt;}
.xf{left:40.668000pt;}
.x18{left:45.429333pt;}
.x19{left:48.000000pt;}
.x26{left:49.133333pt;}
.x24{left:57.486667pt;}
.xa{left:58.658667pt;}
.x27{left:83.149333pt;}
.x25{left:84.057333pt;}
.x16{left:174.538667pt;}
.x21{left:176.897333pt;}
.x22{left:238.110667pt;}
.x10{left:250.772000pt;}
.x29{left:304.289333pt;}
.x17{left:310.261333pt;}
.x6{left:322.432000pt;}
.x8{left:362.041333pt;}
.x5{left:385.474667pt;}
.x1{left:392.277333pt;}
.x3{left:405.694667pt;}
.x4{left:432.150667pt;}
.x28{left:433.738667pt;}
.x13{left:435.325333pt;}
.x12{left:436.573333pt;}
.x15{left:438.652000pt;}
.x14{left:439.634667pt;}
.xd{left:442.318667pt;}
.xb{left:477.429333pt;}
.x23{left:524.788000pt;}
.x11{left:546.368000pt;}
.x1f{left:549.429333pt;}
.x1b{left:559.710667pt;}
.x1c{left:562.280000pt;}
}




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