
    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_dbaf41278db49f28df333011.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_9d0b3532ef2a5149204267f6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c9bd2a86015e9c4b2aaaa6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_0291cbc0675211bca712f9f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952637;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_d153fdae737f67e23094d1fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952637;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_2208d364264d4d2968899ef6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947266;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_358fdcccbd8bab452dabcf76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;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_f5c35768066be6e79f823915.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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_e34af2d7cc3b6c093820f808.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_95eb471a39e0bfc4c8661b3a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.704000px;}
.ls10{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.403200px;}
.lse{letter-spacing:-0.345600px;}
.ls8{letter-spacing:-0.230400px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.057600px;}
.lsb{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.535680px;}
.ls9{letter-spacing:0.633600px;}
.ls4{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.212000px;}
.lsd{letter-spacing:2.076000px;}
.ls11{letter-spacing:2.701440px;}
.lsa{letter-spacing:4.953600px;}
.lsc{letter-spacing:20.793600px;}
.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;}
}
.ws3{word-spacing:-28.396800px;}
.wsa{word-spacing:-27.993600px;}
.ws8{word-spacing:-27.938400px;}
.wsc{word-spacing:-26.784000px;}
.ws5{word-spacing:-26.726400px;}
.ws7{word-spacing:-26.496000px;}
.ws9{word-spacing:-26.380800px;}
.ws6{word-spacing:-26.150400px;}
.ws0{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.074720px;}
.ws2{word-spacing:-12.366720px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-3.152160px;}
._2{margin-left:-2.013120px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._6{width:3.127200px;}
._1b{width:4.567200px;}
._2a{width:5.579040px;}
._12{width:6.765120px;}
._7{width:8.665920px;}
._8{width:9.947520px;}
._15{width:10.955520px;}
._38{width:12.026880px;}
._9{width:13.363200px;}
._35{width:14.503680px;}
._e{width:16.119360px;}
._f{width:17.216640px;}
._17{width:18.855360px;}
._18{width:19.901280px;}
._30{width:21.190560px;}
._31{width:22.234080px;}
._32{width:23.469120px;}
._3c{width:24.512640px;}
._37{width:25.580160px;}
._b{width:28.604160px;}
._a{width:30.136320px;}
._39{width:31.392000px;}
._d{width:32.656320px;}
._c{width:34.326720px;}
._29{width:35.559360px;}
._3a{width:36.722880px;}
._13{width:37.834560px;}
._14{width:38.920320px;}
._11{width:40.242240px;}
._10{width:41.843520px;}
._3e{width:43.424640px;}
._2b{width:44.565120px;}
._22{width:45.895680px;}
._1c{width:47.689920px;}
._1d{width:48.922560px;}
._2e{width:50.175360px;}
._2f{width:51.477120px;}
._36{width:52.623360px;}
._3b{width:54.371520px;}
._3d{width:55.946880px;}
._1e{width:57.775680px;}
._1f{width:58.944960px;}
._20{width:60.100320px;}
._33{width:61.326240px;}
._2c{width:63.455040px;}
._2d{width:64.457280px;}
._25{width:66.461760px;}
._26{width:68.486400px;}
._34{width:69.572160px;}
._16{width:71.242560px;}
._23{width:75.314880px;}
._24{width:76.754880px;}
._28{width:79.335360px;}
._27{width:80.498880px;}
._1a{width:82.123680px;}
._19{width:83.185920px;}
._41{width:90.429120px;}
._40{width:91.434240px;}
._42{width:98.354880px;}
._3f{width:131.929920px;}
._21{width:191.594880px;}
._5{width:833.489760px;}
._4{width:1591.325760px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:57.240000px;}
.y50{bottom:109.116000px;}
.y75{bottom:114.516000px;}
.yb0{bottom:118.836000px;}
.y4f{bottom:126.396000px;}
.y74{bottom:127.476000px;}
.y4e{bottom:131.796000px;}
.y25{bottom:133.236000px;}
.yaf{bottom:143.316000px;}
.y82{bottom:143.676000px;}
.y4d{bottom:144.756000px;}
.y81{bottom:149.076000px;}
.y80{bottom:162.030000px;}
.y94{bottom:163.830000px;}
.y24{bottom:166.710000px;}
.yae{bottom:168.150000px;}
.y9c{bottom:170.310000px;}
.y93{bottom:188.310000px;}
.y7f{bottom:195.150000px;}
.y4c{bottom:197.310000px;}
.y23{bottom:200.595000px;}
.yad{bottom:201.675000px;}
.y73{bottom:204.195000px;}
.y92{bottom:213.195000px;}
.yd0{bottom:217.515000px;}
.y7e{bottom:219.675000px;}
.y4b{bottom:222.195000px;}
.yac{bottom:226.515000px;}
.y72{bottom:228.675000px;}
.y22{bottom:234.075000px;}
.y91{bottom:237.675000px;}
.ycf{bottom:241.995000px;}
.y9b{bottom:244.515000px;}
.y4a{bottom:246.675000px;}
.yab{bottom:250.995000px;}
.y71{bottom:253.515000px;}
.y21{bottom:258.915000px;}
.y90{bottom:262.515000px;}
.yce{bottom:266.835000px;}
.y9a{bottom:268.995000px;}
.y49{bottom:271.515000px;}
.y70{bottom:277.995000px;}
.y20{bottom:283.395000px;}
.yaa{bottom:284.835000px;}
.y8f{bottom:286.995000px;}
.ycd{bottom:291.315000px;}
.y48{bottom:295.995000px;}
.y6f{bottom:302.835000px;}
.y1f{bottom:308.235000px;}
.ya9{bottom:309.315000px;}
.ycc{bottom:316.155000px;}
.y47{bottom:320.835000px;}
.y6e{bottom:327.345000px;}
.y1e{bottom:332.745000px;}
.ya8{bottom:334.185000px;}
.ycb{bottom:340.665000px;}
.y46{bottom:345.345000px;}
.y6d{bottom:352.185000px;}
.y8e{bottom:354.345000px;}
.ya7{bottom:358.665000px;}
.yca{bottom:365.505000px;}
.y1d{bottom:366.585000px;}
.y45{bottom:370.185000px;}
.y6c{bottom:376.665000px;}
.y8d{bottom:379.185000px;}
.yc9{bottom:389.985000px;}
.ya6{bottom:392.505000px;}
.y44{bottom:394.665000px;}
.y1c{bottom:400.065000px;}
.y6b{bottom:401.505000px;}
.y8c{bottom:403.665000px;}
.yc8{bottom:414.465000px;}
.ya5{bottom:416.985000px;}
.ye6{bottom:418.785000px;}
.y43{bottom:419.505000px;}
.y1b{bottom:424.545000px;}
.y99{bottom:425.985000px;}
.y8b{bottom:428.505000px;}
.y6a{bottom:434.985000px;}
.yc7{bottom:439.305000px;}
.ya4{bottom:441.465000px;}
.y42{bottom:443.985000px;}
.ye5{bottom:452.670000px;}
.y8a{bottom:453.030000px;}
.y1a{bottom:458.430000px;}
.y69{bottom:459.510000px;}
.yc5{bottom:463.830000px;}
.ya3{bottom:466.350000px;}
.y41{bottom:468.510000px;}
.yc6{bottom:469.230000px;}
.y89{bottom:477.510000px;}
.y19{bottom:482.910000px;}
.y68{bottom:484.350000px;}
.ye4{bottom:486.150000px;}
.yc4{bottom:488.670000px;}
.ya2{bottom:499.830000px;}
.y40{bottom:502.350000px;}
.y18{bottom:507.750000px;}
.y67{bottom:508.830000px;}
.ye3{bottom:510.990000px;}
.yc3{bottom:513.150000px;}
.y7c{bottom:517.830000px;}
.y7d{bottom:523.230000px;}
.ya1{bottom:524.670000px;}
.y3f{bottom:526.830000px;}
.y17{bottom:532.230000px;}
.y66{bottom:533.670000px;}
.ye2{bottom:535.470000px;}
.yc2{bottom:537.990000px;}
.y7b{bottom:542.670000px;}
.ya0{bottom:549.150000px;}
.y3e{bottom:551.670000px;}
.y16{bottom:557.070000px;}
.y65{bottom:558.150000px;}
.yc1{bottom:562.470000px;}
.y7a{bottom:567.150000px;}
.ye1{bottom:569.310000px;}
.y3d{bottom:576.180000px;}
.y15{bottom:581.580000px;}
.y64{bottom:583.020000px;}
.y88{bottom:585.180000px;}
.y79{bottom:592.020000px;}
.ye0{bottom:593.820000px;}
.yc0{bottom:596.340000px;}
.y3c{bottom:601.020000px;}
.y9f{bottom:607.500000px;}
.y87{bottom:610.020000px;}
.y14{bottom:615.420000px;}
.y63{bottom:616.500000px;}
.y3b{bottom:625.500000px;}
.ydf{bottom:627.660000px;}
.ybf{bottom:629.820000px;}
.y9e{bottom:632.340000px;}
.y86{bottom:634.500000px;}
.y62{bottom:641.340000px;}
.y3a{bottom:650.340000px;}
.yde{bottom:652.140000px;}
.y13{bottom:656.100000px;}
.y85{bottom:659.340000px;}
.ybe{bottom:663.660000px;}
.y61{bottom:665.820000px;}
.y39{bottom:674.820000px;}
.ydd{bottom:676.980000px;}
.y12{bottom:683.100000px;}
.y84{bottom:683.820000px;}
.ybd{bottom:688.140000px;}
.y60{bottom:690.660000px;}
.y37{bottom:708.690000px;}
.ydc{bottom:710.490000px;}
.ybc{bottom:713.010000px;}
.y38{bottom:714.090000px;}
.y5f{bottom:715.170000px;}
.y11{bottom:716.610000px;}
.y36{bottom:733.170000px;}
.ydb{bottom:735.330000px;}
.ybb{bottom:737.490000px;}
.y5e{bottom:740.010000px;}
.y10{bottom:741.450000px;}
.y35{bottom:758.010000px;}
.yda{bottom:759.810000px;}
.y5d{bottom:764.490000px;}
.yba{bottom:771.330000px;}
.yf{bottom:774.930000px;}
.y34{bottom:782.490000px;}
.y5c{bottom:789.330000px;}
.yd9{bottom:793.650000px;}
.yb9{bottom:795.810000px;}
.y9d{bottom:798.330000px;}
.y33{bottom:807.330000px;}
.ye{bottom:808.410000px;}
.y5b{bottom:813.810000px;}
.yd8{bottom:818.130000px;}
.y78{bottom:819.210000px;}
.yb8{bottom:820.650000px;}
.y98{bottom:822.810000px;}
.y32{bottom:831.855000px;}
.y59{bottom:838.695000px;}
.yd{bottom:842.295000px;}
.y5a{bottom:844.095000px;}
.y77{bottom:847.695000px;}
.yd7{bottom:852.015000px;}
.yb7{bottom:854.175000px;}
.y31{bottom:856.695000px;}
.yc{bottom:866.775000px;}
.y58{bottom:872.175000px;}
.yd6{bottom:876.495000px;}
.y30{bottom:881.175000px;}
.yb6{bottom:888.015000px;}
.yb{bottom:891.615000px;}
.y97{bottom:897.015000px;}
.y2f{bottom:906.015000px;}
.yd5{bottom:909.975000px;}
.yb5{bottom:912.495000px;}
.y76{bottom:915.015000px;}
.y9{bottom:915.735000px;}
.y83{bottom:920.415000px;}
.y96{bottom:921.495000px;}
.y2e{bottom:930.495000px;}
.y8{bottom:935.895000px;}
.yb4{bottom:936.975000px;}
.y57{bottom:939.495000px;}
.yd4{bottom:943.815000px;}
.y7{bottom:951.735000px;}
.y2d{bottom:955.005000px;}
.yb3{bottom:961.845000px;}
.y56{bottom:964.005000px;}
.yd3{bottom:977.325000px;}
.y2c{bottom:979.845000px;}
.yb2{bottom:986.325000px;}
.y55{bottom:988.845000px;}
.y6{bottom:1000.365000px;}
.y2b{bottom:1004.325000px;}
.yd2{bottom:1011.165000px;}
.y54{bottom:1013.325000px;}
.y5{bottom:1017.645000px;}
.yb1{bottom:1020.165000px;}
.y2a{bottom:1029.165000px;}
.y4{bottom:1038.165000px;}
.yd1{bottom:1044.645000px;}
.y29{bottom:1053.645000px;}
.y3{bottom:1060.125000px;}
.y53{bottom:1062.645000px;}
.y28{bottom:1078.530000px;}
.y2{bottom:1082.130000px;}
.y52{bottom:1087.530000px;}
.y1{bottom:1099.770000px;}
.y27{bottom:1103.010000px;}
.y51{bottom:1112.010000px;}
.y95{bottom:1117.410000px;}
.y26{bottom:1136.850000px;}
.h9{height:28.115859px;}
.h8{height:39.196406px;}
.h5{height:41.547656px;}
.ha{height:43.735781px;}
.h7{height:59.826094px;}
.hb{height:60.804844px;}
.h6{height:61.375781px;}
.h4{height:65.884219px;}
.h2{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:106.235987px;}
.x15{left:111.275987px;}
.xb{left:128.915987px;}
.x16{left:133.271987px;}
.xe{left:147.311987px;}
.x25{left:160.274987px;}
.xa{left:190.874987px;}
.x11{left:202.034987px;}
.x2{left:260.384987px;}
.x26{left:265.784987px;}
.x6{left:281.264987px;}
.xc{left:286.304987px;}
.xd{left:308.669987px;}
.x14{left:322.349987px;}
.x10{left:329.549987px;}
.x12{left:345.029987px;}
.x5{left:348.629987px;}
.x24{left:356.549987px;}
.x21{left:359.069987px;}
.x4{left:383.909987px;}
.xf{left:398.339987px;}
.x3{left:403.019987px;}
.x9{left:429.659987px;}
.x13{left:438.659987px;}
.x8{left:446.579987px;}
.x1b{left:470.699973px;}
.x1c{left:479.339987px;}
.x17{left:506.729973px;}
.x18{left:515.369987px;}
.x19{left:541.649973px;}
.x1a{left:550.289987px;}
.x1f{left:578.054973px;}
.x20{left:586.694987px;}
.x22{left:633.134973px;}
.x1d{left:639.614973px;}
.x23{left:641.774987px;}
.x1e{left:648.254987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.514667pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.358400pt;}
.lse{letter-spacing:-0.307200pt;}
.ls8{letter-spacing:-0.204800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.051200pt;}
.lsb{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.476160pt;}
.ls9{letter-spacing:0.563200pt;}
.ls4{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.077333pt;}
.lsd{letter-spacing:1.845333pt;}
.ls11{letter-spacing:2.401280pt;}
.lsa{letter-spacing:4.403200pt;}
.lsc{letter-spacing:18.483200pt;}
.ws3{word-spacing:-25.241600pt;}
.wsa{word-spacing:-24.883200pt;}
.ws8{word-spacing:-24.834133pt;}
.wsc{word-spacing:-23.808000pt;}
.ws5{word-spacing:-23.756800pt;}
.ws7{word-spacing:-23.552000pt;}
.ws9{word-spacing:-23.449600pt;}
.ws6{word-spacing:-23.244800pt;}
.ws0{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.621973pt;}
.ws2{word-spacing:-10.992640pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-2.801920pt;}
._2{margin-left:-1.789440pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._6{width:2.779733pt;}
._1b{width:4.059733pt;}
._2a{width:4.959147pt;}
._12{width:6.013440pt;}
._7{width:7.703040pt;}
._8{width:8.842240pt;}
._15{width:9.738240pt;}
._38{width:10.690560pt;}
._9{width:11.878400pt;}
._35{width:12.892160pt;}
._e{width:14.328320pt;}
._f{width:15.303680pt;}
._17{width:16.760320pt;}
._18{width:17.690027pt;}
._30{width:18.836053pt;}
._31{width:19.763627pt;}
._32{width:20.861440pt;}
._3c{width:21.789013pt;}
._37{width:22.737920pt;}
._b{width:25.425920pt;}
._a{width:26.787840pt;}
._39{width:27.904000pt;}
._d{width:29.027840pt;}
._c{width:30.512640pt;}
._29{width:31.608320pt;}
._3a{width:32.642560pt;}
._13{width:33.630720pt;}
._14{width:34.595840pt;}
._11{width:35.770880pt;}
._10{width:37.194240pt;}
._3e{width:38.599680pt;}
._2b{width:39.613440pt;}
._22{width:40.796160pt;}
._1c{width:42.391040pt;}
._1d{width:43.486720pt;}
._2e{width:44.600320pt;}
._2f{width:45.757440pt;}
._36{width:46.776320pt;}
._3b{width:48.330240pt;}
._3d{width:49.730560pt;}
._1e{width:51.356160pt;}
._1f{width:52.395520pt;}
._20{width:53.422507pt;}
._33{width:54.512213pt;}
._2c{width:56.404480pt;}
._2d{width:57.295360pt;}
._25{width:59.077120pt;}
._26{width:60.876800pt;}
._34{width:61.841920pt;}
._16{width:63.326720pt;}
._23{width:66.946560pt;}
._24{width:68.226560pt;}
._28{width:70.520320pt;}
._27{width:71.554560pt;}
._1a{width:72.998827pt;}
._19{width:73.943040pt;}
._41{width:80.381440pt;}
._40{width:81.274880pt;}
._42{width:87.426560pt;}
._3f{width:117.271040pt;}
._21{width:170.306560pt;}
._5{width:740.879787pt;}
._4{width:1414.511787pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:50.880000pt;}
.y50{bottom:96.992000pt;}
.y75{bottom:101.792000pt;}
.yb0{bottom:105.632000pt;}
.y4f{bottom:112.352000pt;}
.y74{bottom:113.312000pt;}
.y4e{bottom:117.152000pt;}
.y25{bottom:118.432000pt;}
.yaf{bottom:127.392000pt;}
.y82{bottom:127.712000pt;}
.y4d{bottom:128.672000pt;}
.y81{bottom:132.512000pt;}
.y80{bottom:144.026667pt;}
.y94{bottom:145.626667pt;}
.y24{bottom:148.186667pt;}
.yae{bottom:149.466667pt;}
.y9c{bottom:151.386667pt;}
.y93{bottom:167.386667pt;}
.y7f{bottom:173.466667pt;}
.y4c{bottom:175.386667pt;}
.y23{bottom:178.306667pt;}
.yad{bottom:179.266667pt;}
.y73{bottom:181.506667pt;}
.y92{bottom:189.506667pt;}
.yd0{bottom:193.346667pt;}
.y7e{bottom:195.266667pt;}
.y4b{bottom:197.506667pt;}
.yac{bottom:201.346667pt;}
.y72{bottom:203.266667pt;}
.y22{bottom:208.066667pt;}
.y91{bottom:211.266667pt;}
.ycf{bottom:215.106667pt;}
.y9b{bottom:217.346667pt;}
.y4a{bottom:219.266667pt;}
.yab{bottom:223.106667pt;}
.y71{bottom:225.346667pt;}
.y21{bottom:230.146667pt;}
.y90{bottom:233.346667pt;}
.yce{bottom:237.186667pt;}
.y9a{bottom:239.106667pt;}
.y49{bottom:241.346667pt;}
.y70{bottom:247.106667pt;}
.y20{bottom:251.906667pt;}
.yaa{bottom:253.186667pt;}
.y8f{bottom:255.106667pt;}
.ycd{bottom:258.946667pt;}
.y48{bottom:263.106667pt;}
.y6f{bottom:269.186667pt;}
.y1f{bottom:273.986667pt;}
.ya9{bottom:274.946667pt;}
.ycc{bottom:281.026667pt;}
.y47{bottom:285.186667pt;}
.y6e{bottom:290.973333pt;}
.y1e{bottom:295.773333pt;}
.ya8{bottom:297.053333pt;}
.ycb{bottom:302.813333pt;}
.y46{bottom:306.973333pt;}
.y6d{bottom:313.053333pt;}
.y8e{bottom:314.973333pt;}
.ya7{bottom:318.813333pt;}
.yca{bottom:324.893333pt;}
.y1d{bottom:325.853333pt;}
.y45{bottom:329.053333pt;}
.y6c{bottom:334.813333pt;}
.y8d{bottom:337.053333pt;}
.yc9{bottom:346.653333pt;}
.ya6{bottom:348.893333pt;}
.y44{bottom:350.813333pt;}
.y1c{bottom:355.613333pt;}
.y6b{bottom:356.893333pt;}
.y8c{bottom:358.813333pt;}
.yc8{bottom:368.413333pt;}
.ya5{bottom:370.653333pt;}
.ye6{bottom:372.253333pt;}
.y43{bottom:372.893333pt;}
.y1b{bottom:377.373333pt;}
.y99{bottom:378.653333pt;}
.y8b{bottom:380.893333pt;}
.y6a{bottom:386.653333pt;}
.yc7{bottom:390.493333pt;}
.ya4{bottom:392.413333pt;}
.y42{bottom:394.653333pt;}
.ye5{bottom:402.373333pt;}
.y8a{bottom:402.693333pt;}
.y1a{bottom:407.493333pt;}
.y69{bottom:408.453333pt;}
.yc5{bottom:412.293333pt;}
.ya3{bottom:414.533333pt;}
.y41{bottom:416.453333pt;}
.yc6{bottom:417.093333pt;}
.y89{bottom:424.453333pt;}
.y19{bottom:429.253333pt;}
.y68{bottom:430.533333pt;}
.ye4{bottom:432.133333pt;}
.yc4{bottom:434.373333pt;}
.ya2{bottom:444.293333pt;}
.y40{bottom:446.533333pt;}
.y18{bottom:451.333333pt;}
.y67{bottom:452.293333pt;}
.ye3{bottom:454.213333pt;}
.yc3{bottom:456.133333pt;}
.y7c{bottom:460.293333pt;}
.y7d{bottom:465.093333pt;}
.ya1{bottom:466.373333pt;}
.y3f{bottom:468.293333pt;}
.y17{bottom:473.093333pt;}
.y66{bottom:474.373333pt;}
.ye2{bottom:475.973333pt;}
.yc2{bottom:478.213333pt;}
.y7b{bottom:482.373333pt;}
.ya0{bottom:488.133333pt;}
.y3e{bottom:490.373333pt;}
.y16{bottom:495.173333pt;}
.y65{bottom:496.133333pt;}
.yc1{bottom:499.973333pt;}
.y7a{bottom:504.133333pt;}
.ye1{bottom:506.053333pt;}
.y3d{bottom:512.160000pt;}
.y15{bottom:516.960000pt;}
.y64{bottom:518.240000pt;}
.y88{bottom:520.160000pt;}
.y79{bottom:526.240000pt;}
.ye0{bottom:527.840000pt;}
.yc0{bottom:530.080000pt;}
.y3c{bottom:534.240000pt;}
.y9f{bottom:540.000000pt;}
.y87{bottom:542.240000pt;}
.y14{bottom:547.040000pt;}
.y63{bottom:548.000000pt;}
.y3b{bottom:556.000000pt;}
.ydf{bottom:557.920000pt;}
.ybf{bottom:559.840000pt;}
.y9e{bottom:562.080000pt;}
.y86{bottom:564.000000pt;}
.y62{bottom:570.080000pt;}
.y3a{bottom:578.080000pt;}
.yde{bottom:579.680000pt;}
.y13{bottom:583.200000pt;}
.y85{bottom:586.080000pt;}
.ybe{bottom:589.920000pt;}
.y61{bottom:591.840000pt;}
.y39{bottom:599.840000pt;}
.ydd{bottom:601.760000pt;}
.y12{bottom:607.200000pt;}
.y84{bottom:607.840000pt;}
.ybd{bottom:611.680000pt;}
.y60{bottom:613.920000pt;}
.y37{bottom:629.946667pt;}
.ydc{bottom:631.546667pt;}
.ybc{bottom:633.786667pt;}
.y38{bottom:634.746667pt;}
.y5f{bottom:635.706667pt;}
.y11{bottom:636.986667pt;}
.y36{bottom:651.706667pt;}
.ydb{bottom:653.626667pt;}
.ybb{bottom:655.546667pt;}
.y5e{bottom:657.786667pt;}
.y10{bottom:659.066667pt;}
.y35{bottom:673.786667pt;}
.yda{bottom:675.386667pt;}
.y5d{bottom:679.546667pt;}
.yba{bottom:685.626667pt;}
.yf{bottom:688.826667pt;}
.y34{bottom:695.546667pt;}
.y5c{bottom:701.626667pt;}
.yd9{bottom:705.466667pt;}
.yb9{bottom:707.386667pt;}
.y9d{bottom:709.626667pt;}
.y33{bottom:717.626667pt;}
.ye{bottom:718.586667pt;}
.y5b{bottom:723.386667pt;}
.yd8{bottom:727.226667pt;}
.y78{bottom:728.186667pt;}
.yb8{bottom:729.466667pt;}
.y98{bottom:731.386667pt;}
.y32{bottom:739.426667pt;}
.y59{bottom:745.506667pt;}
.yd{bottom:748.706667pt;}
.y5a{bottom:750.306667pt;}
.y77{bottom:753.506667pt;}
.yd7{bottom:757.346667pt;}
.yb7{bottom:759.266667pt;}
.y31{bottom:761.506667pt;}
.yc{bottom:770.466667pt;}
.y58{bottom:775.266667pt;}
.yd6{bottom:779.106667pt;}
.y30{bottom:783.266667pt;}
.yb6{bottom:789.346667pt;}
.yb{bottom:792.546667pt;}
.y97{bottom:797.346667pt;}
.y2f{bottom:805.346667pt;}
.yd5{bottom:808.866667pt;}
.yb5{bottom:811.106667pt;}
.y76{bottom:813.346667pt;}
.y9{bottom:813.986667pt;}
.y83{bottom:818.146667pt;}
.y96{bottom:819.106667pt;}
.y2e{bottom:827.106667pt;}
.y8{bottom:831.906667pt;}
.yb4{bottom:832.866667pt;}
.y57{bottom:835.106667pt;}
.yd4{bottom:838.946667pt;}
.y7{bottom:845.986667pt;}
.y2d{bottom:848.893333pt;}
.yb3{bottom:854.973333pt;}
.y56{bottom:856.893333pt;}
.yd3{bottom:868.733333pt;}
.y2c{bottom:870.973333pt;}
.yb2{bottom:876.733333pt;}
.y55{bottom:878.973333pt;}
.y6{bottom:889.213333pt;}
.y2b{bottom:892.733333pt;}
.yd2{bottom:898.813333pt;}
.y54{bottom:900.733333pt;}
.y5{bottom:904.573333pt;}
.yb1{bottom:906.813333pt;}
.y2a{bottom:914.813333pt;}
.y4{bottom:922.813333pt;}
.yd1{bottom:928.573333pt;}
.y29{bottom:936.573333pt;}
.y3{bottom:942.333333pt;}
.y53{bottom:944.573333pt;}
.y28{bottom:958.693333pt;}
.y2{bottom:961.893333pt;}
.y52{bottom:966.693333pt;}
.y1{bottom:977.573333pt;}
.y27{bottom:980.453333pt;}
.y51{bottom:988.453333pt;}
.y95{bottom:993.253333pt;}
.y26{bottom:1010.533333pt;}
.h9{height:24.991875pt;}
.h8{height:34.841250pt;}
.h5{height:36.931250pt;}
.ha{height:38.876250pt;}
.h7{height:53.178750pt;}
.hb{height:54.048750pt;}
.h6{height:54.556250pt;}
.h4{height:58.563750pt;}
.h2{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:94.431988pt;}
.x15{left:98.911988pt;}
.xb{left:114.591988pt;}
.x16{left:118.463988pt;}
.xe{left:130.943988pt;}
.x25{left:142.466655pt;}
.xa{left:169.666655pt;}
.x11{left:179.586655pt;}
.x2{left:231.453322pt;}
.x26{left:236.253322pt;}
.x6{left:250.013322pt;}
.xc{left:254.493322pt;}
.xd{left:274.373322pt;}
.x14{left:286.533322pt;}
.x10{left:292.933322pt;}
.x12{left:306.693322pt;}
.x5{left:309.893322pt;}
.x24{left:316.933322pt;}
.x21{left:319.173322pt;}
.x4{left:341.253322pt;}
.xf{left:354.079988pt;}
.x3{left:358.239988pt;}
.x9{left:381.919988pt;}
.x13{left:389.919988pt;}
.x8{left:396.959988pt;}
.x1b{left:418.399976pt;}
.x1c{left:426.079988pt;}
.x17{left:450.426643pt;}
.x18{left:458.106655pt;}
.x19{left:481.466643pt;}
.x1a{left:489.146655pt;}
.x1f{left:513.826643pt;}
.x20{left:521.506655pt;}
.x22{left:562.786643pt;}
.x1d{left:568.546643pt;}
.x23{left:570.466655pt;}
.x1e{left:576.226655pt;}
.x1{left:699.493322pt;}
}




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