
    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_fb22b74e30e4d42728edfbfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_3f2b1bfa134429777e019986.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_689a968c4ef155a2d354c2a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_6119aee78dce55885466322a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_b32a82a7bfa931cf688c9e6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_00844d6d76b6a4141e48edde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_2a3e095456f97960ba33134c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.321681px;}
.v5{vertical-align:-24.169922px;}
.v2{vertical-align:-20.491254px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.491262px;}
.v1{vertical-align:27.321696px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:9.000000px;}
.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;}
}
.ws6{word-spacing:-30.454101px;}
.ws2{word-spacing:-27.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.800000px;}
.ws7{word-spacing:-8.138672px;}
.ws1{word-spacing:-8.100000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-12.682534px;}
._16{margin-left:-9.281250px;}
._d{margin-left:-7.980467px;}
._0{margin-left:-6.679686px;}
._b{margin-left:-4.907152px;}
._c{margin-left:-3.776307px;}
._9{margin-left:-2.531249px;}
._2{margin-left:-1.511137px;}
._11{width:2.671897px;}
._5{width:4.079222px;}
._6{width:5.341545px;}
._7{width:8.158444px;}
._4{width:9.210388px;}
._3{width:13.499998px;}
._12{width:17.943751px;}
._17{width:18.976096px;}
._f{width:22.500001px;}
._e{width:27.000000px;}
._10{width:31.500000px;}
._a{width:36.000023px;}
._8{width:40.500000px;}
._19{width:58.500002px;}
._18{width:62.943751px;}
._13{width:67.443751px;}
._15{width:90.269465px;}
._14{width:94.500001px;}
._1b{width:153.000003px;}
._1a{width:157.499998px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.399999px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:43.200002px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:114.000003px;}
.y0{bottom:0.000000px;}
.y82{bottom:97.135254px;}
.y4f{bottom:97.135614px;}
.y12c{bottom:102.258069px;}
.y23{bottom:102.258338px;}
.y102{bottom:112.658199px;}
.yd1{bottom:112.658934px;}
.y81{bottom:117.781749px;}
.y4e{bottom:117.782109px;}
.y157{bottom:121.658199px;}
.y28{bottom:121.659216px;}
.y12d{bottom:126.781014px;}
.yd0{bottom:128.182614px;}
.y14b{bottom:128.531248px;}
.yec{bottom:133.305429px;}
.yad{bottom:137.182614px;}
.y27{bottom:137.182897px;}
.y52{bottom:137.182989px;}
.y83{bottom:142.305429px;}
.y7a{bottom:142.305804px;}
.ycf{bottom:143.706294px;}
.y156{bottom:146.182614px;}
.y12e{bottom:151.305429px;}
.yc9{bottom:152.706294px;}
.y51{bottom:152.706669px;}
.y104{bottom:152.707029px;}
.y14c{bottom:154.093029px;}
.yac{bottom:157.829109px;}
.y26{bottom:161.706569px;}
.yce{bottom:164.352789px;}
.y14e{bottom:165.323729px;}
.y84{bottom:166.829109px;}
.y7b{bottom:166.829484px;}
.y155{bottom:166.829844px;}
.yc8{bottom:168.229974px;}
.y50{bottom:173.353164px;}
.y12f{bottom:175.829844px;}
.yb0{bottom:177.229974px;}
.y25{bottom:177.230250px;}
.yed{bottom:182.352789px;}
.yd6{bottom:183.753669px;}
.y87{bottom:186.229974px;}
.y7d{bottom:186.230349px;}
.y103{bottom:188.875749px;}
.yc7{bottom:188.876484px;}
.y14d{bottom:189.675298px;}
.y158{bottom:191.352789px;}
.yaf{bottom:192.753669px;}
.y13f{bottom:195.229974px;}
.ye7{bottom:197.876484px;}
.y24{bottom:197.876746px;}
.y53{bottom:197.876844px;}
.yd5{bottom:199.277349px;}
.y130{bottom:200.352789px;}
.y86{bottom:201.753669px;}
.yee{bottom:206.876484px;}
.y7c{bottom:206.876844px;}
.ycb{bottom:208.277349px;}
.y150{bottom:210.114264px;}
.yae{bottom:213.400164px;}
.yd4{bottom:214.801029px;}
.y13e{bottom:215.875749px;}
.y55{bottom:217.277709px;}
.y133{bottom:219.752934px;}
.y85{bottom:222.400164px;}
.yef{bottom:226.277349px;}
.yca{bottom:228.923844px;}
.y105{bottom:228.924579px;}
.yd3{bottom:230.324709px;}
.y14f{bottom:230.761479px;}
.y7e{bottom:231.400524px;}
.yb5{bottom:232.801029px;}
.y132{bottom:235.277349px;}
.y54{bottom:237.924204px;}
.y140{bottom:240.400164px;}
.yea{bottom:241.801029px;}
.y22{bottom:244.163450px;}
.y88{bottom:246.923844px;}
.yb4{bottom:248.324709px;}
.y80{bottom:250.801389px;}
.yd2{bottom:250.971204px;}
.y151{bottom:255.284439px;}
.y131{bottom:255.924579px;}
.ye9{bottom:257.324709px;}
.yb3{bottom:263.848389px;}
.y141{bottom:264.924579px;}
.y21{bottom:267.966428px;}
.y106{bottom:268.970469px;}
.ycc{bottom:268.971204px;}
.ydb{bottom:270.372069px;}
.y89{bottom:271.447524px;}
.y7f{bottom:271.447884px;}
.ye8{bottom:277.971204px;}
.yb2{bottom:279.372069px;}
.y152{bottom:279.807384px;}
.y4d{bottom:283.013123px;}
.yda{bottom:285.895749px;}
.y142{bottom:289.447524px;}
.y20{bottom:291.769407px;}
.ycd{bottom:293.494884px;}
.y8a{bottom:295.971204px;}
.yb1{bottom:300.018564px;}
.yd9{bottom:301.419429px;}
.y153{bottom:304.331799px;}
.yeb{bottom:306.815918px;}
.y4c{bottom:306.816098px;}
.y79{bottom:306.816278px;}
.y108{bottom:312.896484px;}
.y143{bottom:313.970469px;}
.y8c{bottom:315.372069px;}
.y1f{bottom:315.572385px;}
.yd8{bottom:316.943109px;}
.yb6{bottom:324.542244px;}
.y12b{bottom:325.037107px;}
.y154{bottom:330.618157px;}
.yc6{bottom:330.618893px;}
.y4b{bottom:330.619073px;}
.y78{bottom:330.619267px;}
.y107{bottom:333.542244px;}
.y8b{bottom:336.018564px;}
.yd7{bottom:337.589604px;}
.y144{bottom:338.494884px;}
.y1e{bottom:339.375364px;}
.y12a{bottom:348.840817px;}
.yb7{bottom:349.065924px;}
.y10c{bottom:352.942389px;}
.yc5{bottom:354.421867px;}
.y4a{bottom:354.422063px;}
.y77{bottom:354.422242px;}
.y90{bottom:355.419429px;}
.yde{bottom:356.990484px;}
.y148{bottom:357.896484px;}
.y1d{bottom:363.178342px;}
.yb9{bottom:368.466789px;}
.y8f{bottom:370.943109px;}
.ydd{bottom:372.514164px;}
.y129{bottom:372.644528px;}
.y147{bottom:373.419429px;}
.yc4{bottom:378.224857px;}
.y49{bottom:378.225038px;}
.y76{bottom:378.225217px;}
.y14a{bottom:378.225592px;}
.y10b{bottom:383.991204px;}
.y8e{bottom:386.466789px;}
.y1c{bottom:386.981317px;}
.y146{bottom:388.942389px;}
.yb8{bottom:389.113299px;}
.ydc{bottom:393.160659px;}
.y128{bottom:396.446783px;}
.y10a{bottom:399.514164px;}
.yc3{bottom:402.027832px;}
.y48{bottom:402.028012px;}
.y75{bottom:402.028192px;}
.y8d{bottom:407.113299px;}
.y145{bottom:409.589604px;}
.y1b{bottom:410.784308px;}
.yba{bottom:413.636979px;}
.ydf{bottom:417.684339px;}
.y109{bottom:420.159924px;}
.y127{bottom:420.249023px;}
.y149{bottom:425.830073px;}
.yc2{bottom:425.830807px;}
.y47{bottom:425.830987px;}
.y74{bottom:425.831183px;}
.ybe{bottom:433.037844px;}
.y1a{bottom:434.587283px;}
.ye2{bottom:437.085204px;}
.y126{bottom:444.052733px;}
.ybd{bottom:448.561524px;}
.yc1{bottom:449.633783px;}
.y46{bottom:449.633978px;}
.y73{bottom:449.634157px;}
.y101{bottom:450.262207px;}
.ye1{bottom:452.608884px;}
.y19{bottom:458.390257px;}
.ybc{bottom:464.085204px;}
.y125{bottom:467.856443px;}
.ye0{bottom:473.255379px;}
.yc0{bottom:473.436772px;}
.y45{bottom:473.436952px;}
.y72{bottom:473.437132px;}
.y13d{bottom:473.437492px;}
.y100{bottom:474.065182px;}
.y18{bottom:482.193233px;}
.ybb{bottom:484.731699px;}
.y124{bottom:491.658698px;}
.ye6{bottom:492.656244px;}
.ybf{bottom:497.239747px;}
.y44{bottom:497.239928px;}
.y71{bottom:497.240108px;}
.yff{bottom:497.868158px;}
.y17{bottom:505.996223px;}
.ye5{bottom:508.179924px;}
.y123{bottom:515.460938px;}
.y13c{bottom:521.041988px;}
.yab{bottom:521.042722px;}
.y43{bottom:521.042903px;}
.y70{bottom:521.043098px;}
.yfe{bottom:521.671148px;}
.ye4{bottom:523.703619px;}
.y16{bottom:529.799197px;}
.y122{bottom:539.264648px;}
.ye3{bottom:544.350114px;}
.yaa{bottom:544.845697px;}
.y42{bottom:544.845892px;}
.y6f{bottom:544.846072px;}
.yfd{bottom:545.474122px;}
.y15{bottom:553.602172px;}
.y121{bottom:563.068358px;}
.ya9{bottom:568.648688px;}
.y41{bottom:568.648868px;}
.y6e{bottom:568.649047px;}
.y13b{bottom:568.649408px;}
.yfc{bottom:569.277098px;}
.y14{bottom:577.405147px;}
.y120{bottom:586.870612px;}
.ya8{bottom:592.451662px;}
.y40{bottom:592.451842px;}
.y6d{bottom:592.452022px;}
.yfb{bottom:593.080072px;}
.y13{bottom:601.208128px;}
.y11f{bottom:610.672852px;}
.y13a{bottom:616.253902px;}
.ya7{bottom:616.254637px;}
.y3f{bottom:616.254818px;}
.y6c{bottom:616.254998px;}
.yfa{bottom:616.883062px;}
.y12{bottom:625.011107px;}
.y11e{bottom:634.476562px;}
.ya6{bottom:640.057613px;}
.y3e{bottom:640.057808px;}
.y6b{bottom:640.057988px;}
.yf9{bottom:640.686037px;}
.y11{bottom:648.814085px;}
.y11d{bottom:658.280272px;}
.ya5{bottom:663.860603px;}
.y3d{bottom:663.860783px;}
.y6a{bottom:663.860962px;}
.y139{bottom:663.861322px;}
.yf8{bottom:664.489012px;}
.y10{bottom:672.617063px;}
.y11c{bottom:682.082512px;}
.ya4{bottom:687.663577px;}
.y3c{bottom:687.663757px;}
.y69{bottom:687.663937px;}
.yf7{bottom:688.291988px;}
.yf{bottom:696.420042px;}
.y11b{bottom:705.884768px;}
.y138{bottom:711.465818px;}
.ya3{bottom:711.466552px;}
.y3b{bottom:711.466733px;}
.y68{bottom:711.466913px;}
.yf6{bottom:712.094978px;}
.ye{bottom:720.223020px;}
.y11a{bottom:729.688477px;}
.ya2{bottom:735.269527px;}
.y3a{bottom:735.269707px;}
.y67{bottom:735.269902px;}
.yf5{bottom:741.793207px;}
.yd{bottom:744.025999px;}
.y119{bottom:753.492188px;}
.ya1{bottom:759.072503px;}
.y39{bottom:759.072698px;}
.y66{bottom:759.072877px;}
.y137{bottom:759.073238px;}
.yf4{bottom:762.491452px;}
.yc{bottom:767.828978px;}
.y118{bottom:777.294427px;}
.ya0{bottom:782.875492px;}
.y38{bottom:782.875672px;}
.y65{bottom:782.875852px;}
.yf3{bottom:783.189697px;}
.yb{bottom:791.631952px;}
.y117{bottom:801.096683px;}
.yf2{bottom:803.887943px;}
.y136{bottom:806.677733px;}
.y9f{bottom:806.678468px;}
.y37{bottom:806.678647px;}
.y64{bottom:806.678828px;}
.ya{bottom:815.434943px;}
.yf1{bottom:824.586188px;}
.y116{bottom:824.900392px;}
.y9e{bottom:830.481442px;}
.y36{bottom:830.481622px;}
.y63{bottom:830.481818px;}
.y9{bottom:838.071528px;}
.yf0{bottom:845.284418px;}
.y9d{bottom:854.284417px;}
.y35{bottom:854.284612px;}
.y62{bottom:854.284792px;}
.y135{bottom:854.285152px;}
.y115{bottom:854.598637px;}
.y8{bottom:859.656918px;}
.y114{bottom:875.296867px;}
.y9c{bottom:878.087407px;}
.y34{bottom:878.087588px;}
.y61{bottom:878.087767px;}
.y7{bottom:883.693878px;}
.y113{bottom:895.995113px;}
.y134{bottom:901.889647px;}
.y9b{bottom:901.890382px;}
.y33{bottom:901.890562px;}
.y60{bottom:901.890742px;}
.y6{bottom:908.778425px;}
.y112{bottom:916.693358px;}
.y9a{bottom:925.693357px;}
.y32{bottom:925.693537px;}
.y5f{bottom:925.693733px;}
.y5{bottom:946.466474px;}
.y99{bottom:949.496332px;}
.y31{bottom:949.496527px;}
.y5e{bottom:949.496708px;}
.y111{bottom:949.497067px;}
.y98{bottom:973.299322px;}
.y30{bottom:973.299503px;}
.y5d{bottom:973.299683px;}
.y4{bottom:981.821735px;}
.y110{bottom:997.101562px;}
.y97{bottom:997.102294px;}
.y2f{bottom:997.102477px;}
.y5c{bottom:997.102660px;}
.y3{bottom:1011.575455px;}
.y96{bottom:1020.905274px;}
.y2e{bottom:1020.905457px;}
.y5b{bottom:1020.905640px;}
.y2{bottom:1043.661942px;}
.y95{bottom:1044.708252px;}
.y2d{bottom:1044.708435px;}
.y5a{bottom:1044.708618px;}
.y10f{bottom:1044.708984px;}
.y94{bottom:1068.511230px;}
.y2c{bottom:1068.511413px;}
.y59{bottom:1068.511596px;}
.y1{bottom:1081.350003px;}
.y10e{bottom:1092.313476px;}
.y93{bottom:1092.314210px;}
.y2b{bottom:1092.314392px;}
.y58{bottom:1092.314576px;}
.y92{bottom:1116.117188px;}
.y2a{bottom:1116.117371px;}
.y57{bottom:1116.117553px;}
.y91{bottom:1139.920165px;}
.y29{bottom:1139.920349px;}
.y56{bottom:1139.920531px;}
.y10d{bottom:1139.920899px;}
.h10{height:24.240234px;}
.ha{height:29.046093px;}
.hf{height:37.494141px;}
.h11{height:39.990233px;}
.h5{height:40.664061px;}
.h3{height:41.660155px;}
.hb{height:48.410156px;}
.hc{height:48.410198px;}
.h6{height:48.796875px;}
.he{height:49.537352px;}
.h2{height:60.996094px;}
.h7{height:64.546875px;}
.hd{height:66.049807px;}
.h9{height:66.049818px;}
.h8{height:66.049823px;}
.h4{height:69.925784px;}
.h1{height:102.199221px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xa{left:31.049995px;}
.x9{left:85.049996px;}
.xb{left:106.424996px;}
.x4{left:108.165183px;}
.x6{left:114.299996px;}
.x8{left:139.049996px;}
.x5{left:265.586115px;}
.x3{left:289.170929px;}
.x7{left:374.367393px;}
.x2{left:446.456696px;}
.x1{left:605.081696px;}
@media print{
.v3{vertical-align:-24.285938pt;}
.v5{vertical-align:-21.484375pt;}
.v2{vertical-align:-18.214448pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.214455pt;}
.v1{vertical-align:24.285952pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:8.000000pt;}
.ws6{word-spacing:-27.070312pt;}
.ws2{word-spacing:-24.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws7{word-spacing:-7.234375pt;}
.ws1{word-spacing:-7.200000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-11.273364pt;}
._16{margin-left:-8.250000pt;}
._d{margin-left:-7.093749pt;}
._0{margin-left:-5.937499pt;}
._b{margin-left:-4.361913pt;}
._c{margin-left:-3.356717pt;}
._9{margin-left:-2.249999pt;}
._2{margin-left:-1.343233pt;}
._11{width:2.375020pt;}
._5{width:3.625975pt;}
._6{width:4.748040pt;}
._7{width:7.251950pt;}
._4{width:8.187012pt;}
._3{width:11.999998pt;}
._12{width:15.950001pt;}
._17{width:16.867641pt;}
._f{width:20.000001pt;}
._e{width:24.000000pt;}
._10{width:28.000000pt;}
._a{width:32.000020pt;}
._8{width:36.000000pt;}
._19{width:52.000001pt;}
._18{width:55.950001pt;}
._13{width:59.950001pt;}
._15{width:80.239525pt;}
._14{width:84.000001pt;}
._1b{width:136.000003pt;}
._1a{width:139.999998pt;}
.fs6{font-size:28.799999pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:38.400002pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:101.333336pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:86.342448pt;}
.y4f{bottom:86.342768pt;}
.y12c{bottom:90.896062pt;}
.y23{bottom:90.896300pt;}
.y102{bottom:100.140622pt;}
.yd1{bottom:100.141275pt;}
.y81{bottom:104.694888pt;}
.y4e{bottom:104.695208pt;}
.y157{bottom:108.140622pt;}
.y28{bottom:108.141525pt;}
.y12d{bottom:112.694235pt;}
.yd0{bottom:113.940102pt;}
.y14b{bottom:114.249999pt;}
.yec{bottom:118.493715pt;}
.yad{bottom:121.940102pt;}
.y27{bottom:121.940353pt;}
.y52{bottom:121.940435pt;}
.y83{bottom:126.493715pt;}
.y7a{bottom:126.494048pt;}
.ycf{bottom:127.738928pt;}
.y156{bottom:129.940102pt;}
.y12e{bottom:134.493715pt;}
.yc9{bottom:135.738928pt;}
.y51{bottom:135.739262pt;}
.y104{bottom:135.739582pt;}
.y14c{bottom:136.971582pt;}
.yac{bottom:140.292542pt;}
.y26{bottom:143.739172pt;}
.yce{bottom:146.091368pt;}
.y14e{bottom:146.954425pt;}
.y84{bottom:148.292542pt;}
.y7b{bottom:148.292875pt;}
.y155{bottom:148.293195pt;}
.yc8{bottom:149.537755pt;}
.y50{bottom:154.091702pt;}
.y12f{bottom:156.293195pt;}
.yb0{bottom:157.537755pt;}
.y25{bottom:157.538000pt;}
.yed{bottom:162.091368pt;}
.yd6{bottom:163.336595pt;}
.y87{bottom:165.537755pt;}
.y7d{bottom:165.538088pt;}
.y103{bottom:167.889555pt;}
.yc7{bottom:167.890208pt;}
.y14d{bottom:168.600265pt;}
.y158{bottom:170.091368pt;}
.yaf{bottom:171.336595pt;}
.y13f{bottom:173.537755pt;}
.ye7{bottom:175.890208pt;}
.y24{bottom:175.890441pt;}
.y53{bottom:175.890528pt;}
.yd5{bottom:177.135422pt;}
.y130{bottom:178.091368pt;}
.y86{bottom:179.336595pt;}
.yee{bottom:183.890208pt;}
.y7c{bottom:183.890528pt;}
.ycb{bottom:185.135422pt;}
.y150{bottom:186.768235pt;}
.yae{bottom:189.689035pt;}
.yd4{bottom:190.934248pt;}
.y13e{bottom:191.889555pt;}
.y55{bottom:193.135742pt;}
.y133{bottom:195.335942pt;}
.y85{bottom:197.689035pt;}
.yef{bottom:201.135422pt;}
.yca{bottom:203.487862pt;}
.y105{bottom:203.488515pt;}
.yd3{bottom:204.733075pt;}
.y14f{bottom:205.121315pt;}
.y7e{bottom:205.689355pt;}
.yb5{bottom:206.934248pt;}
.y132{bottom:209.135422pt;}
.y54{bottom:211.488182pt;}
.y140{bottom:213.689035pt;}
.yea{bottom:214.934248pt;}
.y22{bottom:217.034178pt;}
.y88{bottom:219.487862pt;}
.yb4{bottom:220.733075pt;}
.y80{bottom:222.934568pt;}
.yd2{bottom:223.085515pt;}
.y151{bottom:226.919502pt;}
.y131{bottom:227.488515pt;}
.ye9{bottom:228.733075pt;}
.yb3{bottom:234.531902pt;}
.y141{bottom:235.488515pt;}
.y21{bottom:238.192381pt;}
.y106{bottom:239.084862pt;}
.ycc{bottom:239.085515pt;}
.ydb{bottom:240.330728pt;}
.y89{bottom:241.286688pt;}
.y7f{bottom:241.287008pt;}
.ye8{bottom:247.085515pt;}
.yb2{bottom:248.330728pt;}
.y152{bottom:248.717675pt;}
.y4d{bottom:251.567220pt;}
.yda{bottom:254.129555pt;}
.y142{bottom:257.286688pt;}
.y20{bottom:259.350584pt;}
.ycd{bottom:260.884342pt;}
.y8a{bottom:263.085515pt;}
.yb1{bottom:266.683168pt;}
.yd9{bottom:267.928382pt;}
.y153{bottom:270.517155pt;}
.yeb{bottom:272.725260pt;}
.y4c{bottom:272.725420pt;}
.y79{bottom:272.725580pt;}
.y108{bottom:278.130208pt;}
.y143{bottom:279.084862pt;}
.y8c{bottom:280.330728pt;}
.y1f{bottom:280.508787pt;}
.yd8{bottom:281.727208pt;}
.yb6{bottom:288.481995pt;}
.y12b{bottom:288.921873pt;}
.y154{bottom:293.882807pt;}
.yc6{bottom:293.883460pt;}
.y4b{bottom:293.883620pt;}
.y78{bottom:293.883793pt;}
.y107{bottom:296.481995pt;}
.y8b{bottom:298.683168pt;}
.yd7{bottom:300.079648pt;}
.y144{bottom:300.884342pt;}
.y1e{bottom:301.666990pt;}
.y12a{bottom:310.080727pt;}
.yb7{bottom:310.280822pt;}
.y10c{bottom:313.726568pt;}
.yc5{bottom:315.041660pt;}
.y4a{bottom:315.041833pt;}
.y77{bottom:315.041993pt;}
.y90{bottom:315.928382pt;}
.yde{bottom:317.324875pt;}
.y148{bottom:318.130208pt;}
.y1d{bottom:322.825193pt;}
.yb9{bottom:327.526035pt;}
.y8f{bottom:329.727208pt;}
.ydd{bottom:331.123702pt;}
.y129{bottom:331.239580pt;}
.y147{bottom:331.928382pt;}
.yc4{bottom:336.199873pt;}
.y49{bottom:336.200033pt;}
.y76{bottom:336.200193pt;}
.y14a{bottom:336.200527pt;}
.y10b{bottom:341.325515pt;}
.y8e{bottom:343.526035pt;}
.y1c{bottom:343.983393pt;}
.y146{bottom:345.726568pt;}
.yb8{bottom:345.878488pt;}
.ydc{bottom:349.476142pt;}
.y128{bottom:352.397140pt;}
.y10a{bottom:355.123702pt;}
.yc3{bottom:357.358073pt;}
.y48{bottom:357.358233pt;}
.y75{bottom:357.358393pt;}
.y8d{bottom:361.878488pt;}
.y145{bottom:364.079648pt;}
.y1b{bottom:365.141607pt;}
.yba{bottom:367.677315pt;}
.ydf{bottom:371.274968pt;}
.y109{bottom:373.475488pt;}
.y127{bottom:373.554687pt;}
.y149{bottom:378.515620pt;}
.yc2{bottom:378.516273pt;}
.y47{bottom:378.516433pt;}
.y74{bottom:378.516607pt;}
.ybe{bottom:384.922528pt;}
.y1a{bottom:386.299807pt;}
.ye2{bottom:388.520182pt;}
.y126{bottom:394.713540pt;}
.ybd{bottom:398.721355pt;}
.yc1{bottom:399.674473pt;}
.y46{bottom:399.674647pt;}
.y73{bottom:399.674807pt;}
.y101{bottom:400.233073pt;}
.ye1{bottom:402.319008pt;}
.y19{bottom:407.458007pt;}
.ybc{bottom:412.520182pt;}
.y125{bottom:415.872393pt;}
.ye0{bottom:420.671448pt;}
.yc0{bottom:420.832687pt;}
.y45{bottom:420.832847pt;}
.y72{bottom:420.833007pt;}
.y13d{bottom:420.833327pt;}
.y100{bottom:421.391273pt;}
.y18{bottom:428.616207pt;}
.ybb{bottom:430.872622pt;}
.y124{bottom:437.029953pt;}
.ye6{bottom:437.916662pt;}
.ybf{bottom:441.990887pt;}
.y44{bottom:441.991047pt;}
.y71{bottom:441.991207pt;}
.yff{bottom:442.549473pt;}
.y17{bottom:449.774420pt;}
.ye5{bottom:451.715488pt;}
.y123{bottom:458.187500pt;}
.y13c{bottom:463.148433pt;}
.yab{bottom:463.149087pt;}
.y43{bottom:463.149247pt;}
.y70{bottom:463.149420pt;}
.yfe{bottom:463.707687pt;}
.ye4{bottom:465.514328pt;}
.y16{bottom:470.932619pt;}
.y122{bottom:479.346353pt;}
.ye3{bottom:483.866768pt;}
.yaa{bottom:484.307287pt;}
.y42{bottom:484.307460pt;}
.y6f{bottom:484.307620pt;}
.yfd{bottom:484.865887pt;}
.y15{bottom:492.090819pt;}
.y121{bottom:500.505207pt;}
.ya9{bottom:505.465500pt;}
.y41{bottom:505.465660pt;}
.y6e{bottom:505.465820pt;}
.y13b{bottom:505.466140pt;}
.yfc{bottom:506.024087pt;}
.y14{bottom:513.249019pt;}
.y120{bottom:521.662767pt;}
.ya8{bottom:526.623700pt;}
.y40{bottom:526.623860pt;}
.y6d{bottom:526.624020pt;}
.yfb{bottom:527.182287pt;}
.y13{bottom:534.407225pt;}
.y11f{bottom:542.820313pt;}
.y13a{bottom:547.781247pt;}
.ya7{bottom:547.781900pt;}
.y3f{bottom:547.782060pt;}
.y6c{bottom:547.782220pt;}
.yfa{bottom:548.340500pt;}
.y12{bottom:555.565428pt;}
.y11e{bottom:563.979167pt;}
.ya6{bottom:568.940100pt;}
.y3e{bottom:568.940273pt;}
.y6b{bottom:568.940433pt;}
.yf9{bottom:569.498700pt;}
.y11{bottom:576.723631pt;}
.y11d{bottom:585.138020pt;}
.ya5{bottom:590.098313pt;}
.y3d{bottom:590.098473pt;}
.y6a{bottom:590.098633pt;}
.y139{bottom:590.098953pt;}
.yf8{bottom:590.656900pt;}
.y10{bottom:597.881834pt;}
.y11c{bottom:606.295567pt;}
.ya4{bottom:611.256513pt;}
.y3c{bottom:611.256673pt;}
.y69{bottom:611.256833pt;}
.yf7{bottom:611.815100pt;}
.yf{bottom:619.040037pt;}
.y11b{bottom:627.453127pt;}
.y138{bottom:632.414060pt;}
.ya3{bottom:632.414713pt;}
.y3b{bottom:632.414873pt;}
.y68{bottom:632.415033pt;}
.yf6{bottom:632.973313pt;}
.ye{bottom:640.198240pt;}
.y11a{bottom:648.611980pt;}
.ya2{bottom:653.572913pt;}
.y3a{bottom:653.573073pt;}
.y67{bottom:653.573247pt;}
.yf5{bottom:659.371740pt;}
.yd{bottom:661.356443pt;}
.y119{bottom:669.770833pt;}
.ya1{bottom:674.731113pt;}
.y39{bottom:674.731287pt;}
.y66{bottom:674.731447pt;}
.y137{bottom:674.731767pt;}
.yf4{bottom:677.770180pt;}
.yc{bottom:682.514647pt;}
.y118{bottom:690.928380pt;}
.ya0{bottom:695.889327pt;}
.y38{bottom:695.889487pt;}
.y65{bottom:695.889647pt;}
.yf3{bottom:696.168620pt;}
.yb{bottom:703.672847pt;}
.y117{bottom:712.085940pt;}
.yf2{bottom:714.567060pt;}
.y136{bottom:717.046873pt;}
.y9f{bottom:717.047527pt;}
.y37{bottom:717.047687pt;}
.y64{bottom:717.047847pt;}
.ya{bottom:724.831060pt;}
.yf1{bottom:732.965500pt;}
.y116{bottom:733.244793pt;}
.y9e{bottom:738.205727pt;}
.y36{bottom:738.205887pt;}
.y63{bottom:738.206060pt;}
.y9{bottom:744.952470pt;}
.yf0{bottom:751.363927pt;}
.y9d{bottom:759.363927pt;}
.y35{bottom:759.364100pt;}
.y62{bottom:759.364260pt;}
.y135{bottom:759.364580pt;}
.y115{bottom:759.643233pt;}
.y8{bottom:764.139482pt;}
.y114{bottom:778.041660pt;}
.y9c{bottom:780.522140pt;}
.y34{bottom:780.522300pt;}
.y61{bottom:780.522460pt;}
.y7{bottom:785.505670pt;}
.y113{bottom:796.440100pt;}
.y134{bottom:801.679687pt;}
.y9b{bottom:801.680340pt;}
.y33{bottom:801.680500pt;}
.y60{bottom:801.680660pt;}
.y6{bottom:807.803044pt;}
.y112{bottom:814.838540pt;}
.y9a{bottom:822.838540pt;}
.y32{bottom:822.838700pt;}
.y5f{bottom:822.838873pt;}
.y5{bottom:841.303532pt;}
.y99{bottom:843.996740pt;}
.y31{bottom:843.996913pt;}
.y5e{bottom:843.997073pt;}
.y111{bottom:843.997393pt;}
.y98{bottom:865.154953pt;}
.y30{bottom:865.155113pt;}
.y5d{bottom:865.155273pt;}
.y4{bottom:872.730431pt;}
.y110{bottom:886.312500pt;}
.y97{bottom:886.313151pt;}
.y2f{bottom:886.313313pt;}
.y5c{bottom:886.313476pt;}
.y3{bottom:899.178182pt;}
.y96{bottom:907.471355pt;}
.y2e{bottom:907.471517pt;}
.y5b{bottom:907.471680pt;}
.y2{bottom:927.699504pt;}
.y95{bottom:928.629557pt;}
.y2d{bottom:928.629720pt;}
.y5a{bottom:928.629883pt;}
.y10f{bottom:928.630208pt;}
.y94{bottom:949.787760pt;}
.y2c{bottom:949.787923pt;}
.y59{bottom:949.788085pt;}
.y1{bottom:961.200003pt;}
.y10e{bottom:970.945312pt;}
.y93{bottom:970.945964pt;}
.y2b{bottom:970.946127pt;}
.y58{bottom:970.946289pt;}
.y92{bottom:992.104167pt;}
.y2a{bottom:992.104329pt;}
.y57{bottom:992.104492pt;}
.y91{bottom:1013.262369pt;}
.y29{bottom:1013.262532pt;}
.y56{bottom:1013.262695pt;}
.y10d{bottom:1013.263021pt;}
.h10{height:21.546875pt;}
.ha{height:25.818749pt;}
.hf{height:33.328125pt;}
.h11{height:35.546874pt;}
.h5{height:36.145832pt;}
.h3{height:37.031249pt;}
.hb{height:43.031250pt;}
.hc{height:43.031287pt;}
.h6{height:43.375000pt;}
.he{height:44.033202pt;}
.h2{height:54.218750pt;}
.h7{height:57.375000pt;}
.hd{height:58.710940pt;}
.h9{height:58.710949pt;}
.h8{height:58.710953pt;}
.h4{height:62.156252pt;}
.h1{height:90.843752pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xa{left:27.599996pt;}
.x9{left:75.599996pt;}
.xb{left:94.599996pt;}
.x4{left:96.146829pt;}
.x6{left:101.599996pt;}
.x8{left:123.599996pt;}
.x5{left:236.076547pt;}
.x3{left:257.040826pt;}
.x7{left:332.771016pt;}
.x2{left:396.850396pt;}
.x1{left:537.850396pt;}
}




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