
    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_d74b8eff50c462cdb1b7f684.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a5495b0106d2a43022e0bb95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_4416acfc1ce8d1ffcf61ab0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7af3ba5d28e66e0fdd87c7e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1e8dfe20aaf65383f21b43d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_458e133a1e25aa6cac766b98.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3c4094d3cbd2ab23cbc78d88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_18df4e8dcb2297cd4f2cbe82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.250000,0.000347,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000347,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000347,0.000000,0.250000,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);}
.v1{vertical-align:-55.251668px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:52.807097px;}
.v3{vertical-align:58.500002px;}
.v2{vertical-align:62.009993px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000563px;}
.ls9{letter-spacing:105.900006px;}
.ls5{letter-spacing:106.500005px;}
.ls3{letter-spacing:107.953131px;}
.ls1{letter-spacing:108.000003px;}
.ls4{letter-spacing:108.900003px;}
.ls2{letter-spacing:109.500007px;}
.ls8{letter-spacing:109.800013px;}
.lsa{letter-spacing:110.100005px;}
.ls6{letter-spacing:161.525975px;}
.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;}
}
.wsb{word-spacing:-64.800002px;}
.ws2{word-spacing:-50.400000px;}
.wse{word-spacing:-50.219996px;}
.ws11{word-spacing:-47.340001px;}
.wsa{word-spacing:-43.200001px;}
.ws6{word-spacing:-36.000000px;}
.ws4{word-spacing:-33.240000px;}
.wsc{word-spacing:-29.916001px;}
.ws1{word-spacing:-24.930001px;}
.wsf{word-spacing:-23.184898px;}
.ws10{word-spacing:-21.855300px;}
.ws5{word-spacing:-20.941201px;}
.ws7{word-spacing:-20.359501px;}
.ws9{word-spacing:-19.944001px;}
.wsd{word-spacing:-16.620000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:78.190315px;}
.ws8{word-spacing:509.585033px;}
._0{margin-left:-12.432000px;}
._13{margin-left:-11.167202px;}
._28{margin-left:-9.856801px;}
._26{margin-left:-7.104000px;}
._1c{margin-left:-6.023092px;}
._1{margin-left:-4.950000px;}
._3{margin-left:-3.330000px;}
._2{margin-left:-1.620000px;}
._a{width:1.559700px;}
._5{width:2.871315px;}
._2b{width:4.153768px;}
._d{width:5.580000px;}
._e{width:6.705900px;}
._25{width:7.776000px;}
._17{width:9.394654px;}
._20{width:11.740095px;}
._b{width:13.140000px;}
._6{width:14.760000px;}
._10{width:16.200001px;}
._11{width:18.090001px;}
._24{width:23.760001px;}
._14{width:25.704000px;}
._19{width:30.240000px;}
._1b{width:31.560000px;}
._15{width:32.844000px;}
._29{width:45.144001px;}
._2a{width:46.434691px;}
._4{width:58.140002px;}
._8{width:59.940002px;}
._9{width:62.049602px;}
._1e{width:90.229503px;}
._1d{width:91.271703px;}
._16{width:136.079999px;}
._1a{width:144.600001px;}
._23{width:161.352005px;}
._18{width:345.360002px;}
._27{width:485.097875px;}
._c{width:572.670018px;}
._22{width:663.460320px;}
._7{width:686.790022px;}
._21{width:699.615307px;}
._f{width:938.610030px;}
._12{width:2856.988275px;}
._1f{width:3092.947299px;}
.fc6{color:transparent;}
.fc7{color:rgb(66,133,244);}
.fc4{color:rgb(152,0,0);}
.fc2{color:rgb(7,55,99);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(26,61,127);}
.fc0{color:rgb(11,83,148);}
.fse{font-size:36.000001px;}
.fsd{font-size:48.000003px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:61.500003px;}
.fs12{font-size:65.099999px;}
.fsa{font-size:72.000002px;}
.fsb{font-size:73.500005px;}
.fs7{font-size:75.600002px;}
.fs10{font-size:78.000005px;}
.fs14{font-size:78.900001px;}
.fs11{font-size:83.699994px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:90.000003px;}
.fs9{font-size:96.000006px;}
.fs8{font-size:102.000000px;}
.fs5{font-size:108.000003px;}
.fs6{font-size:120.000001px;}
.fsf{font-size:133.200013px;}
.fs3{font-size:145.200020px;}
.fs0{font-size:167.999999px;}
.fs13{font-size:210.000013px;}
.y1b{bottom:-61.917724px;}
.y0{bottom:0.000000px;}
.y59{bottom:24.073073px;}
.y1a{bottom:28.082245px;}
.y52{bottom:29.698074px;}
.y43{bottom:33.731630px;}
.y58{bottom:35.323074px;}
.y4c{bottom:35.734245px;}
.yaa{bottom:40.144943px;}
.y51{bottom:40.948069px;}
.ye{bottom:41.895162px;}
.y47{bottom:44.914129px;}
.y45{bottom:45.327488px;}
.y57{bottom:46.573074px;}
.y4b{bottom:46.984246px;}
.y87{bottom:50.204648px;}
.y50{bottom:52.198070px;}
.y42{bottom:54.476629px;}
.y56{bottom:57.823074px;}
.y4a{bottom:58.234246px;}
.ya2{bottom:59.099855px;}
.y21{bottom:59.923209px;}
.y27{bottom:60.522057px;}
.y4f{bottom:63.448070px;}
.yd{bottom:64.845151px;}
.y46{bottom:68.539130px;}
.y44{bottom:68.952488px;}
.y55{bottom:69.073075px;}
.y49{bottom:69.484247px;}
.y86{bottom:71.804649px;}
.ya9{bottom:72.544944px;}
.y7d{bottom:74.651102px;}
.y4e{bottom:74.698073px;}
.ya1{bottom:77.653356px;}
.y41{bottom:78.101630px;}
.y54{bottom:80.323073px;}
.y48{bottom:81.163670px;}
.y4d{bottom:86.377515px;}
.y92{bottom:90.155560px;}
.y53{bottom:92.002515px;}
.y19{bottom:93.131376px;}
.y85{bottom:93.404650px;}
.ya0{bottom:96.206845px;}
.y7c{bottom:96.251102px;}
.y26{bottom:101.922081px;}
.yc{bottom:110.745153px;}
.y9f{bottom:114.760345px;}
.y89{bottom:115.004639px;}
.y40{bottom:117.228191px;}
.y7a{bottom:117.851092px;}
.y18{bottom:118.331366px;}
.y91{bottom:119.135549px;}
.y67{bottom:127.709028px;}
.y61{bottom:128.777677px;}
.y5b{bottom:132.939727px;}
.yb{bottom:133.695154px;}
.y9e{bottom:134.374057px;}
.y20{bottom:134.443211px;}
.y3f{bottom:135.228191px;}
.y84{bottom:136.604640px;}
.ya8{bottom:137.344980px;}
.y79{bottom:139.451093px;}
.y17{bottom:143.531366px;}
.y6c{bottom:144.017085px;}
.y71{bottom:146.465175px;}
.y90{bottom:148.115550px;}
.y3e{bottom:153.228192px;}
.y66{bottom:154.709029px;}
.y37{bottom:158.165164px;}
.y83{bottom:158.204641px;}
.y9d{bottom:158.228547px;}
.y60{bottom:159.557678px;}
.y78{bottom:161.051093px;}
.ya7{bottom:169.744970px;}
.yb1{bottom:170.125789px;}
.y6b{bottom:171.017086px;}
.y3d{bottom:171.228198px;}
.y70{bottom:171.665170px;}
.y36{bottom:176.165171px;}
.y8f{bottom:177.095540px;}
.ya{bottom:179.595144px;}
.y82{bottom:179.804630px;}
.y9c{bottom:182.083048px;}
.y7b{bottom:182.651083px;}
.y25{bottom:184.722050px;}
.y3c{bottom:189.228198px;}
.yb0{bottom:191.185794px;}
.y16{bottom:193.931346px;}
.y35{bottom:194.165171px;}
.y6f{bottom:196.865177px;}
.y6a{bottom:198.017087px;}
.y81{bottom:201.404624px;}
.y9{bottom:202.545133px;}
.y77{bottom:204.251077px;}
.y9b{bottom:205.937537px;}
.y8e{bottom:206.075530px;}
.y3b{bottom:207.228199px;}
.y65{bottom:208.709031px;}
.y1f{bottom:208.963213px;}
.y4{bottom:209.167899px;}
.y2e{bottom:211.615727px;}
.y34{bottom:212.165172px;}
.y15{bottom:219.131346px;}
.y5f{bottom:221.117680px;}
.y6e{bottom:222.065171px;}
.y69{bottom:225.017091px;}
.y3a{bottom:225.228200px;}
.y76{bottom:225.851073px;}
.y24{bottom:226.122063px;}
.y9a{bottom:229.792038px;}
.yaf{bottom:230.114384px;}
.y33{bottom:230.165172px;}
.y2d{bottom:233.161717px;}
.ya6{bottom:234.544949px;}
.y8d{bottom:235.055531px;}
.y64{bottom:235.709035px;}
.y3{bottom:240.967902px;}
.y80{bottom:244.604619px;}
.y6d{bottom:247.265169px;}
.y8{bottom:248.445112px;}
.yae{bottom:251.417385px;}
.y5e{bottom:251.897681px;}
.y68{bottom:252.017090px;}
.y99{bottom:253.646527px;}
.y39{bottom:256.908195px;}
.y32{bottom:261.845168px;}
.y63{bottom:262.709034px;}
.y8c{bottom:264.035532px;}
.y7f{bottom:266.204622px;}
.ya5{bottom:266.944939px;}
.y75{bottom:269.051074px;}
.y14{bottom:269.531331px;}
.yad{bottom:272.720386px;}
.y2c{bottom:276.253707px;}
.y98{bottom:277.501023px;}
.y1e{bottom:283.483205px;}
.y7e{bottom:287.804622px;}
.y38{bottom:289.164196px;}
.y74{bottom:290.651075px;}
.y2{bottom:292.897896px;}
.y31{bottom:294.101169px;}
.y7{bottom:294.345114px;}
.y13{bottom:294.731337px;}
.y8b{bottom:295.535533px;}
.y2b{bottom:297.799696px;}
.y5d{bottom:300.677683px;}
.y97{bottom:301.355518px;}
.y23{bottom:308.922050px;}
.yb2{bottom:314.652457px;}
.y6{bottom:317.295120px;}
.y5a{bottom:318.262074px;}
.y12{bottom:319.931332px;}
.y96{bottom:325.210018px;}
.y5c{bottom:331.457685px;}
.ya4{bottom:331.744948px;}
.y8a{bottom:332.795534px;}
.y2a{bottom:340.891686px;}
.y30{bottom:341.657834px;}
.y1{bottom:343.297893px;}
.y95{bottom:349.064519px;}
.y73{bottom:349.966893px;}
.y22{bottom:350.322044px;}
.y2f{bottom:355.405338px;}
.y1d{bottom:358.003218px;}
.y88{bottom:363.168667px;}
.y5{bottom:363.195118px;}
.ya3{bottom:364.144953px;}
.y72{bottom:364.591893px;}
.yac{bottom:369.100972px;}
.y62{bottom:370.907836px;}
.y29{bottom:383.983679px;}
.y94{bottom:395.917789px;}
.y11{bottom:399.454182px;}
.yf{bottom:423.413801px;}
.y1c{bottom:427.689388px;}
.yab{bottom:432.100978px;}
.y28{bottom:434.014188px;}
.y93{bottom:436.894195px;}
.y10{bottom:443.014188px;}
.h17{height:26.226563px;}
.h18{height:26.296876px;}
.h16{height:34.945315px;}
.h9{height:43.710938px;}
.h12{height:43.740235px;}
.h13{height:43.828125px;}
.h15{height:44.803713px;}
.h24{height:47.553515px;}
.h11{height:52.417970px;}
.h1e{height:52.453127px;}
.h1d{height:52.593752px;}
.h14{height:53.510014px;}
.he{height:55.075783px;}
.hd{height:55.223439px;}
.h27{height:56.862309px;}
.h21{height:56.976567px;}
.h26{height:57.633985px;}
.h23{height:60.976753px;}
.h22{height:61.140230px;}
.h8{height:61.195312px;}
.h7{height:61.359375px;}
.h3{height:64.890002px;}
.h2{height:65.522463px;}
.h5{height:65.566408px;}
.h4{height:65.742190px;}
.h1a{height:69.890629px;}
.h19{height:78.626956px;}
.ha{height:78.679690px;}
.h1f{height:78.890628px;}
.hc{height:87.421876px;}
.hb{height:87.656251px;}
.h20{height:96.973252px;}
.h6{height:105.709585px;}
.h1{height:122.308593px;}
.h1c{height:122.697726px;}
.h10{height:128.390631px;}
.h1b{height:128.390636px;}
.hf{height:131.900622px;}
.h25{height:153.090830px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x37{left:40.745080px;}
.x3{left:41.967521px;}
.x5{left:46.939963px;}
.x7{left:47.949804px;}
.x44{left:49.231300px;}
.x6{left:50.790354px;}
.x2a{left:59.362600px;}
.x1{left:60.631888px;}
.x48{left:65.143701px;}
.x2{left:67.443898px;}
.xb{left:73.957817px;}
.x49{left:76.981302px;}
.x38{left:85.745082px;}
.x24{left:86.797735px;}
.x2b{left:89.144193px;}
.x4{left:91.467523px;}
.x8{left:96.324806px;}
.x42{left:98.232286px;}
.x45{left:103.231302px;}
.xc{left:106.804137px;}
.x43{left:109.482287px;}
.x10{left:110.717480px;}
.xd{left:113.214415px;}
.x35{left:118.044241px;}
.x40{left:120.372051px;}
.x1b{left:121.771860px;}
.xf{left:129.996186px;}
.x11{left:133.892720px;}
.x25{left:150.017877px;}
.x1a{left:152.515940px;}
.x26{left:154.500299px;}
.xa{left:169.511616px;}
.x39{left:295.626981px;}
.x47{left:328.986697px;}
.x36{left:338.529296px;}
.x3a{left:340.626982px;}
.x30{left:376.934075px;}
.x2c{left:399.101807px;}
.x46{left:403.387820px;}
.x14{left:408.445888px;}
.xe{left:423.128320px;}
.x31{left:426.434076px;}
.x23{left:441.287924px;}
.x13{left:442.822822px;}
.x15{left:450.070889px;}
.x12{left:462.101527px;}
.x2d{left:470.434047px;}
.x1d{left:473.019889px;}
.x22{left:488.490709px;}
.x1c{left:503.763969px;}
.x3b{left:557.475903px;}
.x27{left:572.489197px;}
.x28{left:576.971619px;}
.x3c{left:602.475904px;}
.x29{left:626.489199px;}
.x32{left:718.939981px;}
.x2e{left:742.638298px;}
.x33{left:767.314982px;}
.x18{left:792.673282px;}
.x2f{left:797.984204px;}
.x21{left:809.424206px;}
.x17{left:811.123044px;}
.x3e{left:817.872101px;}
.x16{left:830.401750px;}
.x19{left:834.298283px;}
.x1f{left:839.545280px;}
.x20{left:856.636959px;}
.x3f{left:862.872103px;}
.x1e{left:865.181334px;}
.x3d{left:886.049083px;}
.x34{left:1038.688064px;}
.x41{left:1039.801339px;}
.x9{left:1047.027099px;}
@media print{
.v1{vertical-align:-49.112594pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:46.939642pt;}
.v3{vertical-align:52.000002pt;}
.v2{vertical-align:55.119994pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000500pt;}
.ls9{letter-spacing:94.133339pt;}
.ls5{letter-spacing:94.666671pt;}
.ls3{letter-spacing:95.958339pt;}
.ls1{letter-spacing:96.000003pt;}
.ls4{letter-spacing:96.800003pt;}
.ls2{letter-spacing:97.333339pt;}
.ls8{letter-spacing:97.600011pt;}
.lsa{letter-spacing:97.866671pt;}
.ls6{letter-spacing:143.578645pt;}
.wsb{word-spacing:-57.600002pt;}
.ws2{word-spacing:-44.800000pt;}
.wse{word-spacing:-44.639997pt;}
.ws11{word-spacing:-42.080001pt;}
.wsa{word-spacing:-38.400001pt;}
.ws6{word-spacing:-32.000000pt;}
.ws4{word-spacing:-29.546667pt;}
.wsc{word-spacing:-26.592001pt;}
.ws1{word-spacing:-22.160001pt;}
.wsf{word-spacing:-20.608798pt;}
.ws10{word-spacing:-19.426934pt;}
.ws5{word-spacing:-18.614401pt;}
.ws7{word-spacing:-18.097335pt;}
.ws9{word-spacing:-17.728001pt;}
.wsd{word-spacing:-14.773333pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:69.502502pt;}
.ws8{word-spacing:452.964473pt;}
._0{margin-left:-11.050667pt;}
._13{margin-left:-9.926402pt;}
._28{margin-left:-8.761601pt;}
._26{margin-left:-6.314667pt;}
._1c{margin-left:-5.353860pt;}
._1{margin-left:-4.400000pt;}
._3{margin-left:-2.960000pt;}
._2{margin-left:-1.440000pt;}
._a{width:1.386400pt;}
._5{width:2.552280pt;}
._2b{width:3.692239pt;}
._d{width:4.960000pt;}
._e{width:5.960800pt;}
._25{width:6.912000pt;}
._17{width:8.350803pt;}
._20{width:10.435640pt;}
._b{width:11.680000pt;}
._6{width:13.120000pt;}
._10{width:14.400000pt;}
._11{width:16.080001pt;}
._24{width:21.120001pt;}
._14{width:22.848000pt;}
._19{width:26.880000pt;}
._1b{width:28.053334pt;}
._15{width:29.194667pt;}
._29{width:40.128001pt;}
._2a{width:41.275281pt;}
._4{width:51.680002pt;}
._8{width:53.280002pt;}
._9{width:55.155202pt;}
._1e{width:80.204003pt;}
._1d{width:81.130403pt;}
._16{width:120.960000pt;}
._1a{width:128.533334pt;}
._23{width:143.424005pt;}
._18{width:306.986669pt;}
._27{width:431.198111pt;}
._c{width:509.040016pt;}
._22{width:589.742507pt;}
._7{width:610.480020pt;}
._21{width:621.880273pt;}
._f{width:834.320027pt;}
._12{width:2539.545133pt;}
._1f{width:2749.286488pt;}
.fse{font-size:32.000001pt;}
.fsd{font-size:42.666669pt;}
.fs2{font-size:53.333334pt;}
.fsc{font-size:54.666670pt;}
.fs12{font-size:57.866666pt;}
.fsa{font-size:64.000002pt;}
.fsb{font-size:65.333338pt;}
.fs7{font-size:67.200002pt;}
.fs10{font-size:69.333338pt;}
.fs14{font-size:70.133334pt;}
.fs11{font-size:74.399994pt;}
.fs4{font-size:74.666666pt;}
.fs1{font-size:80.000003pt;}
.fs9{font-size:85.333339pt;}
.fs8{font-size:90.666667pt;}
.fs5{font-size:96.000003pt;}
.fs6{font-size:106.666667pt;}
.fsf{font-size:118.400012pt;}
.fs3{font-size:129.066684pt;}
.fs0{font-size:149.333333pt;}
.fs13{font-size:186.666678pt;}
.y1b{bottom:-55.037977pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:21.398287pt;}
.y1a{bottom:24.961996pt;}
.y52{bottom:26.398288pt;}
.y43{bottom:29.983671pt;}
.y58{bottom:31.398288pt;}
.y4c{bottom:31.763774pt;}
.yaa{bottom:35.684394pt;}
.y51{bottom:36.398284pt;}
.ye{bottom:37.240144pt;}
.y47{bottom:39.923670pt;}
.y45{bottom:40.291100pt;}
.y57{bottom:41.398288pt;}
.y4b{bottom:41.763774pt;}
.y87{bottom:44.626354pt;}
.y50{bottom:46.398284pt;}
.y42{bottom:48.423670pt;}
.y56{bottom:51.398288pt;}
.y4a{bottom:51.763774pt;}
.ya2{bottom:52.533204pt;}
.y21{bottom:53.265074pt;}
.y27{bottom:53.797384pt;}
.y4f{bottom:56.398285pt;}
.yd{bottom:57.640135pt;}
.y46{bottom:60.923671pt;}
.y44{bottom:61.291101pt;}
.y55{bottom:61.398289pt;}
.y49{bottom:61.763775pt;}
.y86{bottom:63.826355pt;}
.ya9{bottom:64.484395pt;}
.y7d{bottom:66.356535pt;}
.y4e{bottom:66.398287pt;}
.ya1{bottom:69.025205pt;}
.y41{bottom:69.423671pt;}
.y54{bottom:71.398287pt;}
.y48{bottom:72.145485pt;}
.y4d{bottom:76.780013pt;}
.y92{bottom:80.138275pt;}
.y53{bottom:81.780013pt;}
.y19{bottom:82.783445pt;}
.y85{bottom:83.026355pt;}
.ya0{bottom:85.517195pt;}
.y7c{bottom:85.556535pt;}
.y26{bottom:90.597406pt;}
.yc{bottom:98.440136pt;}
.y9f{bottom:102.009196pt;}
.y89{bottom:102.226346pt;}
.y40{bottom:104.202836pt;}
.y7a{bottom:104.756526pt;}
.y18{bottom:105.183436pt;}
.y91{bottom:105.898266pt;}
.y67{bottom:113.519136pt;}
.y61{bottom:114.469046pt;}
.y5b{bottom:118.168647pt;}
.yb{bottom:118.840137pt;}
.y9e{bottom:119.443607pt;}
.y20{bottom:119.505077pt;}
.y3f{bottom:120.202837pt;}
.y84{bottom:121.426347pt;}
.ya8{bottom:122.084427pt;}
.y79{bottom:123.956527pt;}
.y17{bottom:127.583437pt;}
.y6c{bottom:128.015187pt;}
.y71{bottom:130.191267pt;}
.y90{bottom:131.658267pt;}
.y3e{bottom:136.202837pt;}
.y66{bottom:137.519137pt;}
.y37{bottom:140.591257pt;}
.y83{bottom:140.626347pt;}
.y9d{bottom:140.647597pt;}
.y60{bottom:141.829047pt;}
.y78{bottom:143.156527pt;}
.ya7{bottom:150.884418pt;}
.yb1{bottom:151.222924pt;}
.y6b{bottom:152.015188pt;}
.y3d{bottom:152.202843pt;}
.y70{bottom:152.591263pt;}
.y36{bottom:156.591263pt;}
.y8f{bottom:157.418258pt;}
.ya{bottom:159.640128pt;}
.y82{bottom:159.826338pt;}
.y9c{bottom:161.851598pt;}
.y7b{bottom:162.356518pt;}
.y25{bottom:164.197378pt;}
.y3c{bottom:168.202843pt;}
.yb0{bottom:169.942928pt;}
.y16{bottom:172.383418pt;}
.y35{bottom:172.591263pt;}
.y6f{bottom:174.991268pt;}
.y6a{bottom:176.015188pt;}
.y81{bottom:179.026332pt;}
.y9{bottom:180.040118pt;}
.y77{bottom:181.556513pt;}
.y9b{bottom:183.055589pt;}
.y8e{bottom:183.178249pt;}
.y3b{bottom:184.202844pt;}
.y65{bottom:185.519139pt;}
.y1f{bottom:185.745079pt;}
.y4{bottom:185.927022pt;}
.y2e{bottom:188.102869pt;}
.y34{bottom:188.591264pt;}
.y15{bottom:194.783419pt;}
.y5f{bottom:196.549049pt;}
.y6e{bottom:197.391263pt;}
.y69{bottom:200.015192pt;}
.y3a{bottom:200.202844pt;}
.y76{bottom:200.756509pt;}
.y24{bottom:200.997389pt;}
.y9a{bottom:204.259589pt;}
.yaf{bottom:204.546119pt;}
.y33{bottom:204.591264pt;}
.y2d{bottom:207.254859pt;}
.ya6{bottom:208.484399pt;}
.y8d{bottom:208.938249pt;}
.y64{bottom:209.519142pt;}
.y3{bottom:214.193691pt;}
.y80{bottom:217.426328pt;}
.y6d{bottom:219.791262pt;}
.y8{bottom:220.840100pt;}
.yae{bottom:223.482120pt;}
.y5e{bottom:223.909050pt;}
.y68{bottom:224.015191pt;}
.y99{bottom:225.463580pt;}
.y39{bottom:228.362840pt;}
.y32{bottom:232.751260pt;}
.y63{bottom:233.519141pt;}
.y8c{bottom:234.698250pt;}
.y7f{bottom:236.626330pt;}
.ya5{bottom:237.284390pt;}
.y75{bottom:239.156510pt;}
.y14{bottom:239.583405pt;}
.yad{bottom:242.418120pt;}
.y2c{bottom:245.558851pt;}
.y98{bottom:246.667576pt;}
.y1e{bottom:251.985071pt;}
.y7e{bottom:255.826331pt;}
.y38{bottom:257.034841pt;}
.y74{bottom:258.356511pt;}
.y2{bottom:260.353685pt;}
.y31{bottom:261.423261pt;}
.y7{bottom:261.640101pt;}
.y13{bottom:261.983411pt;}
.y8b{bottom:262.698251pt;}
.y2b{bottom:264.710841pt;}
.y5d{bottom:267.269051pt;}
.y97{bottom:267.871571pt;}
.y23{bottom:274.597378pt;}
.yb2{bottom:279.691073pt;}
.y6{bottom:282.040107pt;}
.y5a{bottom:282.899622pt;}
.y12{bottom:284.383406pt;}
.y96{bottom:289.075572pt;}
.y5c{bottom:294.629053pt;}
.ya4{bottom:294.884398pt;}
.y8a{bottom:295.818252pt;}
.y2a{bottom:303.014832pt;}
.y30{bottom:303.695852pt;}
.y1{bottom:305.153682pt;}
.y95{bottom:310.279573pt;}
.y73{bottom:311.081683pt;}
.y22{bottom:311.397373pt;}
.y2f{bottom:315.915856pt;}
.y1d{bottom:318.225083pt;}
.y88{bottom:322.816593pt;}
.y5{bottom:322.840105pt;}
.ya3{bottom:323.684403pt;}
.y72{bottom:324.081683pt;}
.yac{bottom:328.089753pt;}
.y62{bottom:329.695854pt;}
.y29{bottom:341.318826pt;}
.y94{bottom:351.926924pt;}
.y11{bottom:355.070384pt;}
.yf{bottom:376.367823pt;}
.y1c{bottom:380.168345pt;}
.yab{bottom:384.089758pt;}
.y28{bottom:385.790389pt;}
.y93{bottom:388.350395pt;}
.y10{bottom:393.790389pt;}
.h17{height:23.312501pt;}
.h18{height:23.375001pt;}
.h16{height:31.062502pt;}
.h9{height:38.854167pt;}
.h12{height:38.880209pt;}
.h13{height:38.958334pt;}
.h15{height:39.825523pt;}
.h24{height:42.269791pt;}
.h11{height:46.593751pt;}
.h1e{height:46.625001pt;}
.h1d{height:46.750001pt;}
.h14{height:47.564457pt;}
.he{height:48.956252pt;}
.hd{height:49.087502pt;}
.h27{height:50.544274pt;}
.h21{height:50.645837pt;}
.h26{height:51.230209pt;}
.h23{height:54.201558pt;}
.h22{height:54.346871pt;}
.h8{height:54.395833pt;}
.h7{height:54.541666pt;}
.h3{height:57.680002pt;}
.h2{height:58.242189pt;}
.h5{height:58.281252pt;}
.h4{height:58.437502pt;}
.h1a{height:62.125004pt;}
.h19{height:69.890627pt;}
.ha{height:69.937502pt;}
.h1f{height:70.125002pt;}
.hc{height:77.708334pt;}
.hb{height:77.916667pt;}
.h20{height:86.198446pt;}
.h6{height:93.964075pt;}
.h1{height:108.718750pt;}
.h1c{height:109.064645pt;}
.h10{height:114.125006pt;}
.h1b{height:114.125010pt;}
.hf{height:117.244998pt;}
.h25{height:136.080737pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x37{left:36.217849pt;}
.x3{left:37.304463pt;}
.x5{left:41.724411pt;}
.x7{left:42.622048pt;}
.x44{left:43.761155pt;}
.x6{left:45.146981pt;}
.x2a{left:52.766756pt;}
.x1{left:53.895012pt;}
.x48{left:57.905512pt;}
.x2{left:59.950132pt;}
.xb{left:65.740282pt;}
.x49{left:68.427824pt;}
.x38{left:76.217850pt;}
.x24{left:77.153542pt;}
.x2b{left:79.239283pt;}
.x4{left:81.304465pt;}
.x8{left:85.622050pt;}
.x42{left:87.317588pt;}
.x45{left:91.761157pt;}
.xc{left:94.937011pt;}
.x43{left:97.317588pt;}
.x10{left:98.415538pt;}
.xd{left:100.635035pt;}
.x35{left:104.928214pt;}
.x40{left:106.997378pt;}
.x1b{left:108.241653pt;}
.xf{left:115.552166pt;}
.x11{left:119.015751pt;}
.x25{left:133.349224pt;}
.x1a{left:135.569724pt;}
.x26{left:137.333599pt;}
.xa{left:150.676992pt;}
.x39{left:262.779538pt;}
.x47{left:292.432619pt;}
.x36{left:300.914930pt;}
.x3a{left:302.779540pt;}
.x30{left:335.052511pt;}
.x2c{left:354.757161pt;}
.x46{left:358.566951pt;}
.x14{left:363.063012pt;}
.xe{left:376.114062pt;}
.x31{left:379.052512pt;}
.x23{left:392.255933pt;}
.x13{left:393.620287pt;}
.x15{left:400.063013pt;}
.x12{left:410.756913pt;}
.x2d{left:418.163597pt;}
.x1d{left:420.462123pt;}
.x22{left:434.213964pt;}
.x1c{left:447.790194pt;}
.x3b{left:495.534136pt;}
.x27{left:508.879286pt;}
.x28{left:512.863661pt;}
.x3c{left:535.534137pt;}
.x29{left:556.879288pt;}
.x32{left:639.057760pt;}
.x2e{left:660.122931pt;}
.x33{left:682.057762pt;}
.x18{left:704.598473pt;}
.x2f{left:709.319293pt;}
.x21{left:719.488183pt;}
.x17{left:720.998261pt;}
.x3e{left:726.997423pt;}
.x16{left:738.134889pt;}
.x19{left:741.598474pt;}
.x1f{left:746.262471pt;}
.x20{left:761.455074pt;}
.x3f{left:766.997425pt;}
.x1e{left:769.050075pt;}
.x3d{left:787.599185pt;}
.x34{left:923.278280pt;}
.x41{left:924.267857pt;}
.x9{left:930.690755pt;}
}




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