
    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_fae4bc56097e7fc259fc7c55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_55ac467f6cddcc2158b8cca6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_1c0886f4498d8f459ddcb9f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_32f50e6e336f09340d8960db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103027;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_94f732421b6b630403eaee31.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.153320;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_4feba1c0bdad7fca4bdd431d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.138184;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_c24e324d898357f26b1f73de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207000;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_710ed11aaec60cc4f18b3348.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8fe62629c0f4790a37ef300a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.119629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4495d0fcc2d64c6dc3567821.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5b0663debee35f6414534564.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_69f7cd628d4b0d6ff0e32e86.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:59.027703px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,0,128),0 0.015em rgb(128,0,128),0.015em 0 rgb(128,0,128),0 -0.015em  rgb(128,0,128);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(128,0,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-45.411799px;}
.ws5{word-spacing:-43.875849px;}
.ws8{word-spacing:-29.170800px;}
.ws6{word-spacing:-26.373630px;}
.wsa{word-spacing:-21.804584px;}
.ws9{word-spacing:-17.107220px;}
.ws4{word-spacing:-16.971019px;}
.ws0{word-spacing:-16.597544px;}
.ws3{word-spacing:-0.922315px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:5.287680px;}
._21{margin-left:-43.299430px;}
._20{margin-left:-41.951588px;}
._15{margin-left:-22.492826px;}
._19{margin-left:-20.119119px;}
._17{margin-left:-18.452766px;}
._10{margin-left:-15.014996px;}
._f{margin-left:-13.963735px;}
._5{margin-left:-12.824628px;}
._6{margin-left:-11.773429px;}
._11{margin-left:-10.486032px;}
._12{margin-left:-9.354260px;}
._22{margin-left:-7.814917px;}
._3{margin-left:-3.369605px;}
._2{margin-left:-2.021763px;}
._0{margin-left:-1.010882px;}
._1{width:1.347842px;}
._a{width:2.584065px;}
._4{width:3.629254px;}
._7{width:4.808168px;}
._13{width:5.857866px;}
._14{width:7.444809px;}
._e{width:9.497370px;}
._1a{width:11.167213px;}
._23{width:13.308481px;}
._d{width:15.415918px;}
._1b{width:16.750924px;}
._b{width:18.018613px;}
._9{width:19.045316px;}
._1c{width:20.098997px;}
._18{width:21.146424px;}
._16{width:23.997627px;}
._8{width:30.233379px;}
._1f{width:83.476895px;}
._1e{width:85.377698px;}
._1d{width:94.248108px;}
._c{width:677.862886px;}
.fca{color:transparent;}
.fc9{color:rgb(8,55,124);}
.fc8{color:rgb(43,65,80);}
.fc4{color:rgb(255,192,0);}
.fcb{color:rgb(52,79,98);}
.fc3{color:rgb(138,55,134);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(59,53,53);}
.fc6{color:rgb(128,0,128);}
.fc0{color:rgb(112,48,160);}
.fsc{font-size:47.520644px;}
.fs10{font-size:52.560690px;}
.fs3{font-size:68.400413px;}
.fsa{font-size:69.839584px;}
.fs2{font-size:73.440459px;}
.fs9{font-size:77.039860px;}
.fs18{font-size:77.040000px;}
.fsf{font-size:79.200090px;}
.fsd{font-size:83.520551px;}
.fse{font-size:84.240000px;}
.fs16{font-size:84.240136px;}
.fs1{font-size:95.039814px;}
.fs17{font-size:96.480459px;}
.fs13{font-size:105.119906px;}
.fs11{font-size:110.160000px;}
.fs7{font-size:131.759306px;}
.fsb{font-size:147.600504px;}
.fs12{font-size:157.680000px;}
.fs14{font-size:157.680596px;}
.fs0{font-size:168.480273px;}
.fs8{font-size:177.839305px;}
.fs4{font-size:184.319996px;}
.fs5{font-size:210.239811px;}
.fs15{font-size:252.720409px;}
.fs6{font-size:342.000592px;}
.y0{bottom:0.000000px;}
.y90{bottom:104.208072px;}
.y83{bottom:105.825048px;}
.y74{bottom:106.191213px;}
.y52{bottom:112.670091px;}
.ya4{bottom:113.931735px;}
.y43{bottom:114.468343px;}
.y6{bottom:116.641194px;}
.y8f{bottom:118.431084px;}
.y82{bottom:120.051671px;}
.y73{bottom:120.410613px;}
.y99{bottom:123.833135px;}
.y28{bottom:126.171606px;}
.y51{bottom:126.889420px;}
.ya3{bottom:128.147524px;}
.y42{bottom:128.687673px;}
.y98{bottom:138.048853px;}
.y27{bottom:140.387325px;}
.y25{bottom:148.504695px;}
.y72{bottom:158.934009px;}
.y4b{bottom:161.095809px;}
.y3b{bottom:163.802831px;}
.ya0{bottom:165.414232px;}
.y3d{bottom:166.854288px;}
.y24{bottom:174.789373px;}
.y71{bottom:180.898014px;}
.y32{bottom:193.324688px;}
.y9f{bottom:196.923622px;}
.y4a{bottom:199.442223px;}
.y96{bottom:200.160930px;}
.y23{bottom:201.063437px;}
.y4f{bottom:202.139094px;}
.y3a{bottom:202.144355px;}
.y59{bottom:205.030802px;}
.y3c{bottom:205.200287px;}
.y41{bottom:215.823255px;}
.y31{bottom:219.607591px;}
.y80{bottom:220.136931px;}
.y22{bottom:227.348115px;}
.y9e{bottom:228.413734px;}
.y6c{bottom:229.319692px;}
.y67{bottom:234.715430px;}
.y95{bottom:237.958165px;}
.y4e{bottom:239.042719px;}
.y58{bottom:241.383594px;}
.yb3{bottom:242.280899px;}
.y8d{bottom:242.645197px;}
.y7f{bottom:243.714729px;}
.y6b{bottom:250.375989px;}
.y66{bottom:255.771728px;}
.y30{bottom:256.135779px;}
.y40{bottom:259.918044px;}
.y9d{bottom:260.096399px;}
.y11{bottom:265.321913px;}
.y8c{bottom:266.216976px;}
.y7e{bottom:267.479820px;}
.y6a{bottom:271.432287px;}
.y21{bottom:275.047403px;}
.y65{bottom:276.839243px;}
.y94{bottom:279.719624px;}
.y57{bottom:285.475161px;}
.yb2{bottom:285.654845px;}
.y4d{bottom:285.667919px;}
.y2f{bottom:287.820898px;}
.y1d{bottom:289.801538px;}
.y8b{bottom:289.978409px;}
.y9c{bottom:291.605789px;}
.y69{bottom:292.494221px;}
.y3f{bottom:293.213894px;}
.yc{bottom:297.174386px;}
.y20{bottom:301.321414px;}
.yaa{bottom:303.123232px;}
.y10{bottom:306.898755px;}
.y64{bottom:312.659511px;}
.y8a{bottom:313.558626px;}
.y2e{bottom:314.103801px;}
.y7d{bottom:314.815452px;}
.yb5{bottom:315.545955px;}
.y1c{bottom:316.086217px;}
.y93{bottom:317.695548px;}
.y56{bottom:318.771010px;}
.y4c{bottom:318.963811px;}
.y9b{bottom:323.095842px;}
.yb{bottom:325.978101px;}
.y1f{bottom:327.606093px;}
.y68{bottom:328.321650px;}
.ya9{bottom:333.361455px;}
.y2d{bottom:335.879833px;}
.y89{bottom:337.322537px;}
.y7c{bottom:338.395669px;}
.y1b{bottom:342.360280px;}
.ya{bottom:348.120266px;}
.y92{bottom:355.496675px;}
.yb4{bottom:358.922040px;}
.y88{bottom:360.902755px;}
.y1e{bottom:361.621128px;}
.y2c{bottom:362.162704px;}
.y9a{bottom:366.483111px;}
.y9{bottom:370.254606px;}
.ya8{bottom:375.115965px;}
.y87{bottom:384.656930px;}
.y7b{bottom:385.739798px;}
.y1a{bottom:387.904765px;}
.y2b{bottom:388.445575px;}
.y8{bottom:392.397920px;}
.y55{bottom:407.879437px;}
.y86{bottom:408.237147px;}
.y7a{bottom:409.503680px;}
.y38{bottom:409.677696px;}
.y45{bottom:410.944199px;}
.y36{bottom:411.118216px;}
.y91{bottom:411.476304px;}
.y49{bottom:411.843314px;}
.y47{bottom:412.916475px;}
.y19{bottom:414.179870px;}
.y7{bottom:414.352951px;}
.y39{bottom:415.981209px;}
.yb1{bottom:421.379649px;}
.y2a{bottom:424.981484px;}
.y5f{bottom:426.240417px;}
.y63{bottom:431.637305px;}
.y79{bottom:433.083868px;}
.yf{bottom:439.219684px;}
.y18{bottom:440.463507px;}
.y5e{bottom:447.298959px;}
.y53{bottom:448.018927px;}
.y44{bottom:449.289569px;}
.y35{bottom:449.466468px;}
.y48{bottom:450.190263px;}
.y46{bottom:451.267857px;}
.y62{bottom:452.695846px;}
.y54{bottom:452.876247px;}
.y37{bottom:454.323788px;}
.yb0{bottom:464.753739px;}
.y17{bottom:466.738585px;}
.y5{bottom:467.460379px;}
.y5d{bottom:468.357527px;}
.y61{bottom:473.754387px;}
.y5c{bottom:489.416069px;}
.y16{bottom:493.022197px;}
.y29{bottom:500.572329px;}
.y85{bottom:501.466964px;}
.y60{bottom:509.576921px;}
.ya7{bottom:514.790649px;}
.y15{bottom:519.305835px;}
.y81{bottom:523.802135px;}
.y5b{bottom:525.239060px;}
.y75{bottom:526.492371px;}
.y4{bottom:526.671146px;}
.yad{bottom:527.213343px;}
.ya6{bottom:545.048122px;}
.y14{bottom:563.040254px;}
.y78{bottom:565.913894px;}
.yac{bottom:570.597227px;}
.y8e{bottom:571.135605px;}
.y3{bottom:585.902500px;}
.ya5{bottom:586.979595px;}
.yaf{bottom:596.164149px;}
.y84{bottom:599.046738px;}
.y6f{bottom:604.618855px;}
.y77{bottom:606.606166px;}
.y50{bottom:609.837525px;}
.y3e{bottom:616.677071px;}
.y97{bottom:622.259086px;}
.y5a{bottom:623.336986px;}
.y6e{bottom:636.121468px;}
.y13{bottom:638.812205px;}
.yae{bottom:639.542137px;}
.y2{bottom:645.113283px;}
.y34{bottom:659.345255px;}
.ye{bottom:664.390407px;}
.y76{bottom:666.893135px;}
.y6d{bottom:671.397190px;}
.ya2{bottom:678.595444px;}
.yb6{bottom:681.832636px;}
.y12{bottom:688.677551px;}
.y1{bottom:704.159530px;}
.y70{bottom:719.284980px;}
.yab{bottom:721.440015px;}
.y33{bottom:722.340019px;}
.yd{bottom:732.060018px;}
.ya1{bottom:740.340019px;}
.y26{bottom:747.181271px;}
.h16{height:43.372835px;}
.hf{height:43.900908px;}
.h24{height:61.575920px;}
.hd{height:64.519772px;}
.h21{height:65.355543px;}
.h28{height:65.869200px;}
.h6{height:70.036947px;}
.h26{height:70.491600px;}
.h15{height:72.007114px;}
.h5{height:73.046004px;}
.h4{height:75.197580px;}
.h23{height:76.589421px;}
.h1d{height:76.838134px;}
.h11{height:77.079600px;}
.hc{height:78.883099px;}
.h1b{height:81.095015px;}
.h10{height:85.518846px;}
.h3{height:85.804988px;}
.h1e{height:94.905618px;}
.h25{height:98.788829px;}
.h20{height:108.727162px;}
.h17{height:115.668000px;}
.h14{height:119.792885px;}
.he{height:121.799244px;}
.ha{height:131.051614px;}
.h13{height:139.029131px;}
.h1f{height:142.359092px;}
.h12{height:144.546549px;}
.h7{height:152.099997px;}
.h1c{height:152.109387px;}
.h1a{height:165.499219px;}
.h19{height:165.559656px;}
.h18{height:165.564000px;}
.h2{height:172.511295px;}
.h8{height:173.488907px;}
.hb{height:182.094249px;}
.h27{height:188.729996px;}
.h22{height:229.768263px;}
.h9{height:340.163674px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:25.378763px;}
.x14{left:27.904500px;}
.x68{left:29.332979px;}
.x13{left:37.255141px;}
.xc{left:59.395877px;}
.x5a{left:64.441752px;}
.x8{left:67.492970px;}
.x56{left:68.756462px;}
.x52{left:70.741486px;}
.x42{left:80.459978px;}
.x23{left:82.261994px;}
.x55{left:86.038360px;}
.x3c{left:87.120898px;}
.x44{left:94.132597px;}
.x4c{left:98.463801px;}
.x41{left:104.584527px;}
.x46{left:118.982154px;}
.x60{left:121.858021px;}
.x32{left:126.539960px;}
.x5d{left:128.887917px;}
.x3a{left:130.142298px;}
.x5c{left:131.757667px;}
.x63{left:144.353694px;}
.x24{left:165.230771px;}
.x3d{left:170.279313px;}
.x43{left:171.722662px;}
.xd{left:173.525364px;}
.x16{left:179.647850px;}
.x48{left:185.570995px;}
.x4d{left:192.604714px;}
.x4b{left:195.494292px;}
.x59{left:196.738573px;}
.x1c{left:198.000233px;}
.xf{left:207.546306px;}
.x4{left:209.340002px;}
.x5f{left:214.384011px;}
.xe{left:221.930274px;}
.x18{left:227.342544px;}
.x26{left:234.535523px;}
.x1b{left:235.982983px;}
.x61{left:249.301445px;}
.x2c{left:260.822763px;}
.x5b{left:270.727088px;}
.x17{left:273.426300px;}
.x3b{left:285.302096px;}
.x2b{left:286.743767px;}
.x25{left:288.722080px;}
.x40{left:296.816663px;}
.x10{left:313.204323px;}
.x67{left:314.821677px;}
.x3e{left:320.764111px;}
.x12{left:340.382942px;}
.x1f{left:343.261350px;}
.x62{left:349.918314px;}
.x39{left:352.083488px;}
.x49{left:358.923758px;}
.x31{left:363.786448px;}
.x51{left:374.584755px;}
.x4e{left:385.740177px;}
.x4a{left:394.376253px;}
.x36{left:398.889350px;}
.x34{left:404.817660px;}
.x1e{left:414.543645px;}
.x9{left:415.800850px;}
.x7{left:422.813571px;}
.x4f{left:423.905189px;}
.x1d{left:430.019127px;}
.x33{left:432.898159px;}
.x50{left:438.665267px;}
.x37{left:445.872583px;}
.x57{left:453.783208px;}
.x6{left:469.457597px;}
.x38{left:477.543583px;}
.x15{left:480.240005px;}
.x47{left:484.203201px;}
.x3{left:486.005154px;}
.x1{left:494.108721px;}
.xa{left:496.620220px;}
.x54{left:519.302610px;}
.x5{left:564.480552px;}
.x27{left:582.301529px;}
.x53{left:585.357461px;}
.x2d{left:592.743408px;}
.x28{left:594.542119px;}
.x2f{left:612.709908px;}
.x2e{left:623.533150px;}
.x22{left:624.767602px;}
.x30{left:639.368650px;}
.x20{left:653.028467px;}
.x35{left:684.353845px;}
.x11{left:716.229532px;}
.x21{left:723.613500px;}
.x45{left:774.178618px;}
.x2a{left:790.375481px;}
.x66{left:811.624814px;}
.x29{left:817.013870px;}
.x3f{left:818.460951px;}
.x64{left:825.301305px;}
.x19{left:831.408931px;}
.x58{left:838.801179px;}
.x5e{left:857.887913px;}
.x1a{left:861.302187px;}
.x65{left:867.780886px;}
.x2{left:963.718203px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:52.469070pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-40.366044pt;}
.ws5{word-spacing:-39.000755pt;}
.ws8{word-spacing:-25.929600pt;}
.ws6{word-spacing:-23.443227pt;}
.wsa{word-spacing:-19.381852pt;}
.ws9{word-spacing:-15.206417pt;}
.ws4{word-spacing:-15.085350pt;}
.ws0{word-spacing:-14.753372pt;}
.ws3{word-spacing:-0.819836pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:4.700160pt;}
._21{margin-left:-38.488382pt;}
._20{margin-left:-37.290300pt;}
._15{margin-left:-19.993623pt;}
._19{margin-left:-17.883661pt;}
._17{margin-left:-16.402459pt;}
._10{margin-left:-13.346663pt;}
._f{margin-left:-12.412209pt;}
._5{margin-left:-11.399670pt;}
._6{margin-left:-10.465271pt;}
._11{margin-left:-9.320918pt;}
._12{margin-left:-8.314898pt;}
._22{margin-left:-6.946593pt;}
._3{margin-left:-2.995205pt;}
._2{margin-left:-1.797123pt;}
._0{margin-left:-0.898561pt;}
._1{width:1.198082pt;}
._a{width:2.296946pt;}
._4{width:3.226004pt;}
._7{width:4.273928pt;}
._13{width:5.206992pt;}
._14{width:6.617608pt;}
._e{width:8.442106pt;}
._1a{width:9.926411pt;}
._23{width:11.829761pt;}
._d{width:13.703038pt;}
._1b{width:14.889710pt;}
._b{width:16.016545pt;}
._9{width:16.929170pt;}
._1c{width:17.865775pt;}
._18{width:18.796821pt;}
._16{width:21.331224pt;}
._8{width:26.874115pt;}
._1f{width:74.201685pt;}
._1e{width:75.891287pt;}
._1d{width:83.776096pt;}
._c{width:602.544788pt;}
.fsc{font-size:42.240573pt;}
.fs10{font-size:46.720613pt;}
.fs3{font-size:60.800367pt;}
.fsa{font-size:62.079630pt;}
.fs2{font-size:65.280408pt;}
.fs9{font-size:68.479876pt;}
.fs18{font-size:68.480000pt;}
.fsf{font-size:70.400080pt;}
.fsd{font-size:74.240490pt;}
.fse{font-size:74.880000pt;}
.fs16{font-size:74.880121pt;}
.fs1{font-size:84.479834pt;}
.fs17{font-size:85.760408pt;}
.fs13{font-size:93.439916pt;}
.fs11{font-size:97.920000pt;}
.fs7{font-size:117.119383pt;}
.fsb{font-size:131.200448pt;}
.fs12{font-size:140.160000pt;}
.fs14{font-size:140.160529pt;}
.fs0{font-size:149.760243pt;}
.fs8{font-size:158.079382pt;}
.fs4{font-size:163.839997pt;}
.fs5{font-size:186.879832pt;}
.fs15{font-size:224.640364pt;}
.fs6{font-size:304.000526pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:92.629397pt;}
.y83{bottom:94.066709pt;}
.y74{bottom:94.392189pt;}
.y52{bottom:100.151192pt;}
.ya4{bottom:101.272654pt;}
.y43{bottom:101.749638pt;}
.y6{bottom:103.681062pt;}
.y8f{bottom:105.272075pt;}
.y82{bottom:106.712596pt;}
.y73{bottom:107.031656pt;}
.y99{bottom:110.073898pt;}
.y28{bottom:112.152539pt;}
.y51{bottom:112.790596pt;}
.ya3{bottom:113.908911pt;}
.y42{bottom:114.389043pt;}
.y98{bottom:122.710092pt;}
.y27{bottom:124.788733pt;}
.y25{bottom:132.004173pt;}
.y72{bottom:141.274675pt;}
.y4b{bottom:143.196275pt;}
.y3b{bottom:145.602517pt;}
.ya0{bottom:147.034873pt;}
.y3d{bottom:148.314922pt;}
.y24{bottom:155.368332pt;}
.y71{bottom:160.798235pt;}
.y32{bottom:171.844167pt;}
.y9f{bottom:175.043220pt;}
.y4a{bottom:177.281976pt;}
.y96{bottom:177.920826pt;}
.y23{bottom:178.723055pt;}
.y4f{bottom:179.679194pt;}
.y3a{bottom:179.683871pt;}
.y59{bottom:182.249602pt;}
.y3c{bottom:182.400255pt;}
.y41{bottom:191.842894pt;}
.y31{bottom:195.206748pt;}
.y80{bottom:195.677272pt;}
.y22{bottom:202.087214pt;}
.y9e{bottom:203.034430pt;}
.y6c{bottom:203.839726pt;}
.y67{bottom:208.635938pt;}
.y95{bottom:211.518369pt;}
.y4e{bottom:212.482417pt;}
.y58{bottom:214.563194pt;}
.yb3{bottom:215.360799pt;}
.y8d{bottom:215.684619pt;}
.y7f{bottom:216.635314pt;}
.y6b{bottom:222.556435pt;}
.y66{bottom:227.352647pt;}
.y30{bottom:227.676248pt;}
.y40{bottom:231.038261pt;}
.y9d{bottom:231.196799pt;}
.y11{bottom:235.841700pt;}
.y8c{bottom:236.637312pt;}
.y7e{bottom:237.759840pt;}
.y6a{bottom:241.273144pt;}
.y21{bottom:244.486581pt;}
.y65{bottom:246.079327pt;}
.y94{bottom:248.639666pt;}
.y57{bottom:253.755698pt;}
.yb2{bottom:253.915418pt;}
.y4d{bottom:253.927039pt;}
.y2f{bottom:255.840798pt;}
.y1d{bottom:257.601367pt;}
.y8b{bottom:257.758585pt;}
.y9c{bottom:259.205146pt;}
.y69{bottom:259.994863pt;}
.y3f{bottom:260.634572pt;}
.yc{bottom:264.155010pt;}
.y20{bottom:267.841257pt;}
.yaa{bottom:269.442873pt;}
.y10{bottom:272.798893pt;}
.y64{bottom:277.919565pt;}
.y8a{bottom:278.718779pt;}
.y2e{bottom:279.203378pt;}
.y7d{bottom:279.835957pt;}
.yb5{bottom:280.485294pt;}
.y1c{bottom:280.965526pt;}
.y93{bottom:282.396043pt;}
.y56{bottom:283.352009pt;}
.y4c{bottom:283.523387pt;}
.y9b{bottom:287.196304pt;}
.yb{bottom:289.758312pt;}
.y1f{bottom:291.205416pt;}
.y68{bottom:291.841467pt;}
.ya9{bottom:296.321294pt;}
.y2d{bottom:298.559852pt;}
.y89{bottom:299.842255pt;}
.y7c{bottom:300.796150pt;}
.y1b{bottom:304.320249pt;}
.ya{bottom:309.440236pt;}
.y92{bottom:315.997044pt;}
.yb4{bottom:319.041813pt;}
.y88{bottom:320.802449pt;}
.y1e{bottom:321.441002pt;}
.y2c{bottom:321.922404pt;}
.y9a{bottom:325.762765pt;}
.y9{bottom:329.115205pt;}
.ya8{bottom:333.436413pt;}
.y87{bottom:341.917271pt;}
.y7b{bottom:342.879820pt;}
.y1a{bottom:344.804236pt;}
.y2b{bottom:345.284956pt;}
.y8{bottom:348.798151pt;}
.y55{bottom:362.559499pt;}
.y86{bottom:362.877464pt;}
.y7a{bottom:364.003271pt;}
.y38{bottom:364.157952pt;}
.y45{bottom:365.283733pt;}
.y36{bottom:365.438414pt;}
.y91{bottom:365.756715pt;}
.y49{bottom:366.082946pt;}
.y47{bottom:367.036867pt;}
.y19{bottom:368.159884pt;}
.y7{bottom:368.313734pt;}
.y39{bottom:369.761074pt;}
.yb1{bottom:374.559688pt;}
.y2a{bottom:377.761319pt;}
.y5f{bottom:378.880371pt;}
.y63{bottom:383.677604pt;}
.y79{bottom:384.963438pt;}
.yf{bottom:390.417497pt;}
.y18{bottom:391.523118pt;}
.y5e{bottom:397.599074pt;}
.y53{bottom:398.239046pt;}
.y44{bottom:399.368505pt;}
.y35{bottom:399.525749pt;}
.y48{bottom:400.169123pt;}
.y46{bottom:401.126984pt;}
.y62{bottom:402.396308pt;}
.y54{bottom:402.556664pt;}
.y37{bottom:403.843367pt;}
.yb0{bottom:413.114435pt;}
.y17{bottom:414.878743pt;}
.y5{bottom:415.520337pt;}
.y5d{bottom:416.317802pt;}
.y61{bottom:421.115011pt;}
.y5c{bottom:435.036506pt;}
.y16{bottom:438.241953pt;}
.y29{bottom:444.953181pt;}
.y85{bottom:445.748413pt;}
.y60{bottom:452.957263pt;}
.ya7{bottom:457.591688pt;}
.y15{bottom:461.605187pt;}
.y81{bottom:465.601898pt;}
.y5b{bottom:466.879164pt;}
.y75{bottom:467.993218pt;}
.y4{bottom:468.152130pt;}
.yad{bottom:468.634083pt;}
.ya6{bottom:484.487220pt;}
.y14{bottom:500.480226pt;}
.y78{bottom:503.034573pt;}
.yac{bottom:507.197535pt;}
.y8e{bottom:507.676094pt;}
.y3{bottom:520.802222pt;}
.ya5{bottom:521.759640pt;}
.yaf{bottom:529.923688pt;}
.y84{bottom:532.485989pt;}
.y6f{bottom:537.438983pt;}
.y77{bottom:539.205481pt;}
.y50{bottom:542.077800pt;}
.y3e{bottom:548.157396pt;}
.y97{bottom:553.119187pt;}
.y5a{bottom:554.077321pt;}
.y6e{bottom:565.441305pt;}
.y13{bottom:567.833071pt;}
.yae{bottom:568.481900pt;}
.y2{bottom:573.434029pt;}
.y34{bottom:586.084671pt;}
.ye{bottom:590.569251pt;}
.y76{bottom:592.793898pt;}
.y6d{bottom:596.797502pt;}
.ya2{bottom:603.195950pt;}
.yb6{bottom:606.073454pt;}
.y12{bottom:612.157823pt;}
.y1{bottom:625.919582pt;}
.y70{bottom:639.364426pt;}
.yab{bottom:641.280014pt;}
.y33{bottom:642.080017pt;}
.yd{bottom:650.720016pt;}
.ya1{bottom:658.080017pt;}
.y26{bottom:664.161130pt;}
.h16{height:38.553631pt;}
.hf{height:39.023029pt;}
.h24{height:54.734151pt;}
.hd{height:57.350908pt;}
.h21{height:58.093816pt;}
.h28{height:58.550400pt;}
.h6{height:62.255064pt;}
.h26{height:62.659200pt;}
.h15{height:64.006323pt;}
.h5{height:64.929781pt;}
.h4{height:66.842293pt;}
.h23{height:68.079485pt;}
.h1d{height:68.300564pt;}
.h11{height:68.515200pt;}
.hc{height:70.118310pt;}
.h1b{height:72.084457pt;}
.h10{height:76.016752pt;}
.h3{height:76.271100pt;}
.h1e{height:84.360549pt;}
.h25{height:87.812293pt;}
.h20{height:96.646366pt;}
.h17{height:102.816000pt;}
.h14{height:106.482564pt;}
.he{height:108.265994pt;}
.ha{height:116.490324pt;}
.h13{height:123.581450pt;}
.h1f{height:126.541416pt;}
.h12{height:128.485821pt;}
.h7{height:135.199997pt;}
.h1c{height:135.208344pt;}
.h1a{height:147.110417pt;}
.h19{height:147.164139pt;}
.h18{height:147.168000pt;}
.h2{height:153.343373pt;}
.h8{height:154.212362pt;}
.hb{height:161.861555pt;}
.h27{height:167.759996pt;}
.h22{height:204.238456pt;}
.h9{height:302.367711pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:22.558900pt;}
.x14{left:24.804000pt;}
.x68{left:26.073759pt;}
.x13{left:33.115681pt;}
.xc{left:52.796335pt;}
.x5a{left:57.281557pt;}
.x8{left:59.993751pt;}
.x56{left:61.116856pt;}
.x52{left:62.881321pt;}
.x42{left:71.519980pt;}
.x23{left:73.121773pt;}
.x55{left:76.478542pt;}
.x3c{left:77.440799pt;}
.x44{left:83.673419pt;}
.x4c{left:87.523379pt;}
.x41{left:92.964024pt;}
.x46{left:105.761915pt;}
.x60{left:108.318241pt;}
.x32{left:112.479964pt;}
.x5d{left:114.567037pt;}
.x3a{left:115.682042pt;}
.x5c{left:117.117926pt;}
.x63{left:128.314395pt;}
.x24{left:146.871797pt;}
.x3d{left:151.359389pt;}
.x43{left:152.642366pt;}
.xd{left:154.244768pt;}
.x16{left:159.686978pt;}
.x48{left:164.951996pt;}
.x4d{left:171.204190pt;}
.x4b{left:173.772704pt;}
.x59{left:174.878731pt;}
.x1c{left:176.000207pt;}
.xf{left:184.485606pt;}
.x4{left:186.080002pt;}
.x5f{left:190.563565pt;}
.xe{left:197.271355pt;}
.x18{left:202.082261pt;}
.x26{left:208.476021pt;}
.x1b{left:209.762651pt;}
.x61{left:221.601284pt;}
.x2c{left:231.842456pt;}
.x5b{left:240.646300pt;}
.x17{left:243.045600pt;}
.x3b{left:253.601863pt;}
.x2b{left:254.883349pt;}
.x25{left:256.641849pt;}
.x40{left:263.837034pt;}
.x10{left:278.403842pt;}
.x67{left:279.841490pt;}
.x3e{left:285.123654pt;}
.x12{left:302.562615pt;}
.x1f{left:305.121200pt;}
.x62{left:311.038501pt;}
.x39{left:312.963100pt;}
.x49{left:319.043340pt;}
.x31{left:323.365731pt;}
.x51{left:332.964227pt;}
.x4e{left:342.880157pt;}
.x4a{left:350.556669pt;}
.x36{left:354.568311pt;}
.x34{left:359.837920pt;}
.x1e{left:368.483240pt;}
.x9{left:369.600755pt;}
.x7{left:375.834285pt;}
.x4f{left:376.804613pt;}
.x1d{left:382.239224pt;}
.x33{left:384.798363pt;}
.x50{left:389.924682pt;}
.x37{left:396.331185pt;}
.x57{left:403.362851pt;}
.x6{left:417.295641pt;}
.x38{left:424.483185pt;}
.x15{left:426.880005pt;}
.x47{left:430.402845pt;}
.x3{left:432.004582pt;}
.x1{left:439.207752pt;}
.xa{left:441.440196pt;}
.x54{left:461.602320pt;}
.x5{left:501.760491pt;}
.x27{left:517.601359pt;}
.x53{left:520.317743pt;}
.x2d{left:526.883030pt;}
.x28{left:528.481884pt;}
.x2f{left:544.631030pt;}
.x2e{left:554.251689pt;}
.x22{left:555.348979pt;}
.x30{left:568.327689pt;}
.x20{left:580.469748pt;}
.x35{left:608.314529pt;}
.x11{left:636.648473pt;}
.x21{left:643.212000pt;}
.x45{left:688.158772pt;}
.x2a{left:702.555983pt;}
.x66{left:721.444279pt;}
.x29{left:726.234551pt;}
.x3f{left:727.520845pt;}
.x64{left:733.601160pt;}
.x19{left:739.030161pt;}
.x58{left:745.601048pt;}
.x5e{left:762.567034pt;}
.x1a{left:765.601944pt;}
.x65{left:771.360787pt;}
.x2{left:856.638403pt;}
}




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