
    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_359ab7148f6aa1967de00c1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_9996760c3c05669cf71f8abf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_ce67f7a1e0cd6873c16970cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_5e2ec681c9ca2b6f6bca957e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.141000;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_e4617e819704d3341701b5ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_2c11fa1594b8272b98c66871.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.121000;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_c0c8dfa0e7824d121741df7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080000;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;}
.lsa{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.290400px;}
.ls5{letter-spacing:-0.135600px;}
.lse{letter-spacing:-0.092400px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.018720px;}
.ls2{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.062400px;}
.ls3{letter-spacing:0.157200px;}
.lsf{letter-spacing:0.204480px;}
.lsc{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.348480px;}
.ls12{letter-spacing:9.360000px;}
.ls1{letter-spacing:837.678720px;}
.lsd{letter-spacing:840.881280px;}
.ls13{letter-spacing:845.885280px;}
.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;}
}
.ws7{word-spacing:-27.639840px;}
.wsc{word-spacing:-25.236000px;}
.ws4{word-spacing:-22.982400px;}
.ws5{word-spacing:-22.120560px;}
.ws1{word-spacing:-22.111920px;}
.ws3{word-spacing:-20.217600px;}
.ws6{word-spacing:-19.616640px;}
.wsa{word-spacing:-19.521840px;}
.ws2{word-spacing:-19.459440px;}
.ws8{word-spacing:-19.437840px;}
.ws9{word-spacing:-19.406160px;}
.wsb{word-spacing:-13.446720px;}
.wsd{word-spacing:-13.354320px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-18.927120px;}
._7{margin-left:-17.558640px;}
._c{margin-left:-16.444080px;}
._b{margin-left:-14.050800px;}
._4{margin-left:-12.810240px;}
._5{margin-left:-11.806320px;}
._9{margin-left:-9.130320px;}
._6{margin-left:-7.035840px;}
._21{margin-left:-5.138640px;}
._1f{margin-left:-3.471840px;}
._a{margin-left:-2.364480px;}
._1{margin-left:-1.361760px;}
._0{width:1.018560px;}
._1c{width:2.274480px;}
._15{width:3.534240px;}
._16{width:4.946160px;}
._27{width:6.154320px;}
._1b{width:7.478160px;}
._1a{width:8.859120px;}
._26{width:10.337520px;}
._f{width:11.372400px;}
._10{width:12.386160px;}
._18{width:13.728240px;}
._20{width:15.089040px;}
._13{width:16.144320px;}
._2c{width:17.611200px;}
._23{width:20.638800px;}
._17{width:22.339200px;}
._11{width:23.839920px;}
._d{width:25.305600px;}
._14{width:26.446080px;}
._e{width:27.523440px;}
._32{width:28.736400px;}
._35{width:30.612720px;}
._34{width:31.926960px;}
._33{width:33.372960px;}
._2f{width:34.427040px;}
._12{width:35.717760px;}
._19{width:36.897120px;}
._30{width:38.750400px;}
._31{width:40.603680px;}
._24{width:43.726320px;}
._22{width:45.236880px;}
._2d{width:46.500480px;}
._1d{width:47.764080px;}
._1e{width:48.921840px;}
._25{width:55.008720px;}
._2e{width:59.403120px;}
._2a{width:63.938160px;}
._2b{width:65.046720px;}
._36{width:66.500640px;}
._29{width:72.937920px;}
._28{width:74.313600px;}
._2{width:90.700560px;}
._3{width:118.584000px;}
.fc3{color:rgb(14,40,65);}
.fc2{color:transparent;}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.y12{bottom:-16.560000px;}
.y0{bottom:0.000000px;}
.yc{bottom:5.580000px;}
.y80{bottom:16.740000px;}
.y11{bottom:25.200000px;}
.yb{bottom:35.505000px;}
.y2{bottom:57.600000px;}
.ya{bottom:65.205000px;}
.y10{bottom:66.960000px;}
.y3{bottom:70.236000px;}
.y1{bottom:77.796000px;}
.yde{bottom:106.596000px;}
.y9{bottom:106.965000px;}
.yf{bottom:108.765000px;}
.yd1{bottom:124.956000px;}
.ya8{bottom:128.556000px;}
.y6e{bottom:131.256000px;}
.ydd{bottom:134.496000px;}
.ye{bottom:138.645000px;}
.y96{bottom:139.176000px;}
.yce{bottom:144.396000px;}
.y105{bottom:147.456000px;}
.y5c{bottom:150.330000px;}
.y28{bottom:156.810000px;}
.yd0{bottom:161.850000px;}
.ydc{bottom:162.210000px;}
.y95{bottom:166.890000px;}
.ya7{bottom:168.150000px;}
.y6d{bottom:171.030000px;}
.ycd{bottom:172.110000px;}
.y104{bottom:175.170000px;}
.y5b{bottom:178.050000px;}
.yee{bottom:178.590000px;}
.y7e{bottom:183.450000px;}
.ydb{bottom:189.930000px;}
.ycf{bottom:192.270000px;}
.ya6{bottom:196.050000px;}
.yf2{bottom:196.590000px;}
.ycc{bottom:199.830000px;}
.y27{bottom:200.370000px;}
.y5a{bottom:205.770000px;}
.yed{bottom:206.490000px;}
.y94{bottom:206.670000px;}
.y7f{bottom:209.190000px;}
.y6c{bottom:210.810000px;}
.y103{bottom:214.950000px;}
.yda{bottom:217.650000px;}
.ya5{bottom:223.770000px;}
.ycb{bottom:227.550000px;}
.yf1{bottom:231.870000px;}
.yb8{bottom:233.130000px;}
.y59{bottom:233.490000px;}
.yec{bottom:234.210000px;}
.y93{bottom:234.390000px;}
.y102{bottom:242.670000px;}
.y26{bottom:244.110000px;}
.yd9{bottom:245.370000px;}
.y6b{bottom:250.590000px;}
.ya4{bottom:251.490000px;}
.yca{bottom:255.450000px;}
.yd{bottom:255.630000px;}
.y58{bottom:261.210000px;}
.yeb{bottom:261.930000px;}
.y92{bottom:262.290000px;}
.yf0{bottom:263.910000px;}
.y101{bottom:270.390000px;}
.yb7{bottom:272.910000px;}
.ya3{bottom:279.210000px;}
.yc9{bottom:283.170000px;}
.yd8{bottom:285.150000px;}
.y25{bottom:287.850000px;}
.y57{bottom:289.110000px;}
.yea{bottom:289.650000px;}
.y91{bottom:290.010000px;}
.y6a{bottom:290.370000px;}
.yef{bottom:294.330000px;}
.y100{bottom:298.110000px;}
.ya2{bottom:306.930000px;}
.yc8{bottom:310.890000px;}
.yb6{bottom:312.690000px;}
.yd7{bottom:312.870000px;}
.y56{bottom:316.830000px;}
.ye9{bottom:317.370000px;}
.y90{bottom:317.730000px;}
.yff{bottom:325.830000px;}
.y69{bottom:329.970000px;}
.y24{bottom:331.590000px;}
.ya1{bottom:334.650000px;}
.yc7{bottom:338.655000px;}
.yb5{bottom:340.455000px;}
.yd6{bottom:340.635000px;}
.y55{bottom:344.595000px;}
.ye8{bottom:345.135000px;}
.y8f{bottom:345.495000px;}
.yfe{bottom:353.595000px;}
.ya0{bottom:362.595000px;}
.yc6{bottom:366.375000px;}
.yb4{bottom:368.175000px;}
.yd5{bottom:368.355000px;}
.y68{bottom:369.795000px;}
.y54{bottom:372.315000px;}
.y8e{bottom:373.215000px;}
.y23{bottom:375.375000px;}
.yfd{bottom:381.495000px;}
.ye7{bottom:384.915000px;}
.y53{bottom:400.035000px;}
.y8d{bottom:400.935000px;}
.y9f{bottom:402.195000px;}
.yc5{bottom:406.155000px;}
.yb3{bottom:407.955000px;}
.yd4{bottom:408.135000px;}
.y67{bottom:409.575000px;}
.ye6{bottom:412.635000px;}
.y22{bottom:419.115000px;}
.yfc{bottom:421.095000px;}
.y52{bottom:427.755000px;}
.y8c{bottom:428.835000px;}
.y9e{bottom:430.095000px;}
.yc4{bottom:433.875000px;}
.yb2{bottom:435.675000px;}
.ye5{bottom:440.355000px;}
.yd3{bottom:445.035000px;}
.y3b{bottom:448.095000px;}
.yfb{bottom:448.815000px;}
.y66{bottom:449.355000px;}
.y51{bottom:455.655000px;}
.y8b{bottom:456.555000px;}
.y9d{bottom:457.815000px;}
.yc3{bottom:461.595000px;}
.y21{bottom:462.855000px;}
.yb1{bottom:463.395000px;}
.ye4{bottom:468.255000px;}
.y3a{bottom:474.195000px;}
.yd2{bottom:475.455000px;}
.y65{bottom:477.075000px;}
.y50{bottom:483.375000px;}
.y9c{bottom:485.535000px;}
.yfa{bottom:488.595000px;}
.yc2{bottom:489.495000px;}
.yb0{bottom:491.115000px;}
.ye3{bottom:495.975000px;}
.y8a{bottom:496.335000px;}
.y39{bottom:500.115000px;}
.y20{bottom:506.415000px;}
.y9b{bottom:513.255000px;}
.yf9{bottom:516.315000px;}
.y64{bottom:516.855000px;}
.yc1{bottom:517.215000px;}
.yaf{bottom:518.835000px;}
.y4f{bottom:523.155000px;}
.ye2{bottom:523.695000px;}
.y89{bottom:524.055000px;}
.y38{bottom:526.215000px;}
.y9a{bottom:540.975000px;}
.yf8{bottom:544.215000px;}
.y63{bottom:544.575000px;}
.yc0{bottom:544.935000px;}
.yae{bottom:546.735000px;}
.y1f{bottom:550.155000px;}
.y4e{bottom:550.875000px;}
.y88{bottom:551.775000px;}
.y37{bottom:552.315000px;}
.ye1{bottom:563.475000px;}
.y7d{bottom:565.815000px;}
.y99{bottom:568.695000px;}
.yf7{bottom:571.935000px;}
.ybf{bottom:572.655000px;}
.yad{bottom:574.455000px;}
.y4d{bottom:578.595000px;}
.y87{bottom:579.495000px;}
.y62{bottom:584.355000px;}
.y36{bottom:593.175000px;}
.y1e{bottom:593.895000px;}
.ye0{bottom:600.195000px;}
.ybe{bottom:600.375000px;}
.y7c{bottom:600.915000px;}
.yac{bottom:602.175000px;}
.y4c{bottom:606.345000px;}
.y86{bottom:607.245000px;}
.y111{bottom:608.325000px;}
.yf6{bottom:611.745000px;}
.ybd{bottom:628.125000px;}
.y7b{bottom:628.665000px;}
.yab{bottom:629.925000px;}
.ydf{bottom:630.825000px;}
.y4b{bottom:634.065000px;}
.y85{bottom:634.965000px;}
.y35{bottom:636.765000px;}
.y1d{bottom:637.665000px;}
.yf5{bottom:639.465000px;}
.y110{bottom:648.105000px;}
.y7a{bottom:656.385000px;}
.yaa{bottom:657.645000px;}
.y4a{bottom:661.785000px;}
.yf4{bottom:667.185000px;}
.ybc{bottom:667.905000px;}
.y84{bottom:675.825000px;}
.y34{bottom:679.605000px;}
.y1c{bottom:681.405000px;}
.y79{bottom:684.105000px;}
.y49{bottom:689.505000px;}
.ybb{bottom:695.625000px;}
.ya9{bottom:699.585000px;}
.yf3{bottom:706.965000px;}
.y33{bottom:708.405000px;}
.y78{bottom:711.825000px;}
.y10f{bottom:715.605000px;}
.y48{bottom:717.405000px;}
.y83{bottom:718.485000px;}
.yba{bottom:723.345000px;}
.y1b{bottom:725.145000px;}
.y77{bottom:739.725000px;}
.y32{bottom:741.885000px;}
.y10e{bottom:743.325000px;}
.y47{bottom:745.125000px;}
.yb9{bottom:758.625000px;}
.y119{bottom:767.085000px;}
.y76{bottom:767.445000px;}
.y1a{bottom:767.625000px;}
.y10d{bottom:771.225000px;}
.y46{bottom:772.845000px;}
.y31{bottom:775.545000px;}
.y75{bottom:795.165000px;}
.y45{bottom:800.565000px;}
.y19{bottom:807.405000px;}
.y30{bottom:809.025000px;}
.y118{bottom:809.745000px;}
.y10c{bottom:810.825000px;}
.y74{bottom:822.885000px;}
.y10b{bottom:838.545000px;}
.y44{bottom:840.345000px;}
.y2f{bottom:842.505000px;}
.y18{bottom:847.185000px;}
.y117{bottom:849.525000px;}
.y73{bottom:850.605000px;}
.y8{bottom:862.485000px;}
.y10a{bottom:866.445000px;}
.y43{bottom:868.065000px;}
.y2e{bottom:876.210000px;}
.y116{bottom:877.290000px;}
.y17{bottom:887.010000px;}
.y72{bottom:890.430000px;}
.y109{bottom:894.210000px;}
.y42{bottom:895.830000px;}
.y115{bottom:905.010000px;}
.y2d{bottom:909.690000px;}
.y71{bottom:918.150000px;}
.y108{bottom:921.930000px;}
.y41{bottom:923.550000px;}
.y16{bottom:926.790000px;}
.y61{bottom:935.070000px;}
.y2c{bottom:943.170000px;}
.y114{bottom:944.790000px;}
.y70{bottom:945.870000px;}
.y107{bottom:949.650000px;}
.y7{bottom:950.730000px;}
.y40{bottom:951.450000px;}
.y15{bottom:966.570000px;}
.y6f{bottom:973.590000px;}
.y98{bottom:974.490000px;}
.y2b{bottom:976.830000px;}
.y3f{bottom:979.170000px;}
.y113{bottom:984.570000px;}
.y106{bottom:989.430000px;}
.y6{bottom:994.290000px;}
.y60{bottom:1001.490000px;}
.y14{bottom:1006.170000px;}
.y3e{bottom:1006.890000px;}
.y2a{bottom:1010.310000px;}
.y112{bottom:1012.290000px;}
.y97{bottom:1017.150000px;}
.y5f{bottom:1029.210000px;}
.y5{bottom:1038.030000px;}
.y29{bottom:1044.330000px;}
.y3d{bottom:1046.670000px;}
.y13{bottom:1047.030000px;}
.y82{bottom:1050.630000px;}
.y5e{bottom:1056.930000px;}
.y3c{bottom:1076.010000px;}
.y81{bottom:1078.890000px;}
.y4{bottom:1081.770000px;}
.y5d{bottom:1084.650000px;}
.hc{height:32.220000px;}
.h2{height:57.410156px;}
.ha{height:57.507187px;}
.hb{height:60.940800px;}
.hf{height:68.084282px;}
.h7{height:78.511680px;}
.he{height:86.585445px;}
.h3{height:89.248320px;}
.h4{height:98.426190px;}
.hd{height:100.656000px;}
.h9{height:112.063680px;}
.h5{height:129.996000px;}
.h8{height:134.208000px;}
.h6{height:161.670000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:722.490000px;}
.w3{width:723.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.836000px;}
.x4{left:60.876000px;}
.x5{left:71.490000px;}
.x2{left:84.959987px;}
.x8{left:101.555987px;}
.x6{left:282.495000px;}
.x3{left:309.315000px;}
.xe{left:595.724987px;}
.xd{left:629.564987px;}
.xb{left:634.064987px;}
.x9{left:790.349987px;}
.x1{left:799.169987px;}
.xa{left:807.449987px;}
.xc{left:823.829987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.258133pt;}
.ls5{letter-spacing:-0.120533pt;}
.lse{letter-spacing:-0.082133pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.055467pt;}
.ls3{letter-spacing:0.139733pt;}
.lsf{letter-spacing:0.181760pt;}
.lsc{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.309760pt;}
.ls12{letter-spacing:8.320000pt;}
.ls1{letter-spacing:744.603307pt;}
.lsd{letter-spacing:747.450027pt;}
.ls13{letter-spacing:751.898027pt;}
.ws7{word-spacing:-24.568747pt;}
.wsc{word-spacing:-22.432000pt;}
.ws4{word-spacing:-20.428800pt;}
.ws5{word-spacing:-19.662720pt;}
.ws1{word-spacing:-19.655040pt;}
.ws3{word-spacing:-17.971200pt;}
.ws6{word-spacing:-17.437013pt;}
.wsa{word-spacing:-17.352747pt;}
.ws2{word-spacing:-17.297280pt;}
.ws8{word-spacing:-17.278080pt;}
.ws9{word-spacing:-17.249920pt;}
.wsb{word-spacing:-11.952640pt;}
.wsd{word-spacing:-11.870507pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-16.824107pt;}
._7{margin-left:-15.607680pt;}
._c{margin-left:-14.616960pt;}
._b{margin-left:-12.489600pt;}
._4{margin-left:-11.386880pt;}
._5{margin-left:-10.494507pt;}
._9{margin-left:-8.115840pt;}
._6{margin-left:-6.254080pt;}
._21{margin-left:-4.567680pt;}
._1f{margin-left:-3.086080pt;}
._a{margin-left:-2.101760pt;}
._1{margin-left:-1.210453pt;}
._0{width:0.905387pt;}
._1c{width:2.021760pt;}
._15{width:3.141547pt;}
._16{width:4.396587pt;}
._27{width:5.470507pt;}
._1b{width:6.647253pt;}
._1a{width:7.874773pt;}
._26{width:9.188907pt;}
._f{width:10.108800pt;}
._10{width:11.009920pt;}
._18{width:12.202880pt;}
._20{width:13.412480pt;}
._13{width:14.350507pt;}
._2c{width:15.654400pt;}
._23{width:18.345600pt;}
._17{width:19.857067pt;}
._11{width:21.191040pt;}
._d{width:22.493867pt;}
._14{width:23.507627pt;}
._e{width:24.465280pt;}
._32{width:25.543467pt;}
._35{width:27.211307pt;}
._34{width:28.379520pt;}
._33{width:29.664853pt;}
._2f{width:30.601813pt;}
._12{width:31.749120pt;}
._19{width:32.797440pt;}
._30{width:34.444800pt;}
._31{width:36.092160pt;}
._24{width:38.867840pt;}
._22{width:40.210560pt;}
._2d{width:41.333760pt;}
._1d{width:42.456960pt;}
._1e{width:43.486080pt;}
._25{width:48.896640pt;}
._2e{width:52.802773pt;}
._2a{width:56.833920pt;}
._2b{width:57.819307pt;}
._36{width:59.111680pt;}
._29{width:64.833707pt;}
._28{width:66.056533pt;}
._2{width:80.622720pt;}
._3{width:105.408000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.y12{bottom:-14.720000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:4.960000pt;}
.y80{bottom:14.880000pt;}
.y11{bottom:22.400000pt;}
.yb{bottom:31.560000pt;}
.y2{bottom:51.200000pt;}
.ya{bottom:57.960000pt;}
.y10{bottom:59.520000pt;}
.y3{bottom:62.432000pt;}
.y1{bottom:69.152000pt;}
.yde{bottom:94.752000pt;}
.y9{bottom:95.080000pt;}
.yf{bottom:96.680000pt;}
.yd1{bottom:111.072000pt;}
.ya8{bottom:114.272000pt;}
.y6e{bottom:116.672000pt;}
.ydd{bottom:119.552000pt;}
.ye{bottom:123.240000pt;}
.y96{bottom:123.712000pt;}
.yce{bottom:128.352000pt;}
.y105{bottom:131.072000pt;}
.y5c{bottom:133.626667pt;}
.y28{bottom:139.386667pt;}
.yd0{bottom:143.866667pt;}
.ydc{bottom:144.186667pt;}
.y95{bottom:148.346667pt;}
.ya7{bottom:149.466667pt;}
.y6d{bottom:152.026667pt;}
.ycd{bottom:152.986667pt;}
.y104{bottom:155.706667pt;}
.y5b{bottom:158.266667pt;}
.yee{bottom:158.746667pt;}
.y7e{bottom:163.066667pt;}
.ydb{bottom:168.826667pt;}
.ycf{bottom:170.906667pt;}
.ya6{bottom:174.266667pt;}
.yf2{bottom:174.746667pt;}
.ycc{bottom:177.626667pt;}
.y27{bottom:178.106667pt;}
.y5a{bottom:182.906667pt;}
.yed{bottom:183.546667pt;}
.y94{bottom:183.706667pt;}
.y7f{bottom:185.946667pt;}
.y6c{bottom:187.386667pt;}
.y103{bottom:191.066667pt;}
.yda{bottom:193.466667pt;}
.ya5{bottom:198.906667pt;}
.ycb{bottom:202.266667pt;}
.yf1{bottom:206.106667pt;}
.yb8{bottom:207.226667pt;}
.y59{bottom:207.546667pt;}
.yec{bottom:208.186667pt;}
.y93{bottom:208.346667pt;}
.y102{bottom:215.706667pt;}
.y26{bottom:216.986667pt;}
.yd9{bottom:218.106667pt;}
.y6b{bottom:222.746667pt;}
.ya4{bottom:223.546667pt;}
.yca{bottom:227.066667pt;}
.yd{bottom:227.226667pt;}
.y58{bottom:232.186667pt;}
.yeb{bottom:232.826667pt;}
.y92{bottom:233.146667pt;}
.yf0{bottom:234.586667pt;}
.y101{bottom:240.346667pt;}
.yb7{bottom:242.586667pt;}
.ya3{bottom:248.186667pt;}
.yc9{bottom:251.706667pt;}
.yd8{bottom:253.466667pt;}
.y25{bottom:255.866667pt;}
.y57{bottom:256.986667pt;}
.yea{bottom:257.466667pt;}
.y91{bottom:257.786667pt;}
.y6a{bottom:258.106667pt;}
.yef{bottom:261.626667pt;}
.y100{bottom:264.986667pt;}
.ya2{bottom:272.826667pt;}
.yc8{bottom:276.346667pt;}
.yb6{bottom:277.946667pt;}
.yd7{bottom:278.106667pt;}
.y56{bottom:281.626667pt;}
.ye9{bottom:282.106667pt;}
.y90{bottom:282.426667pt;}
.yff{bottom:289.626667pt;}
.y69{bottom:293.306667pt;}
.y24{bottom:294.746667pt;}
.ya1{bottom:297.466667pt;}
.yc7{bottom:301.026667pt;}
.yb5{bottom:302.626667pt;}
.yd6{bottom:302.786667pt;}
.y55{bottom:306.306667pt;}
.ye8{bottom:306.786667pt;}
.y8f{bottom:307.106667pt;}
.yfe{bottom:314.306667pt;}
.ya0{bottom:322.306667pt;}
.yc6{bottom:325.666667pt;}
.yb4{bottom:327.266667pt;}
.yd5{bottom:327.426667pt;}
.y68{bottom:328.706667pt;}
.y54{bottom:330.946667pt;}
.y8e{bottom:331.746667pt;}
.y23{bottom:333.666667pt;}
.yfd{bottom:339.106667pt;}
.ye7{bottom:342.146667pt;}
.y53{bottom:355.586667pt;}
.y8d{bottom:356.386667pt;}
.y9f{bottom:357.506667pt;}
.yc5{bottom:361.026667pt;}
.yb3{bottom:362.626667pt;}
.yd4{bottom:362.786667pt;}
.y67{bottom:364.066667pt;}
.ye6{bottom:366.786667pt;}
.y22{bottom:372.546667pt;}
.yfc{bottom:374.306667pt;}
.y52{bottom:380.226667pt;}
.y8c{bottom:381.186667pt;}
.y9e{bottom:382.306667pt;}
.yc4{bottom:385.666667pt;}
.yb2{bottom:387.266667pt;}
.ye5{bottom:391.426667pt;}
.yd3{bottom:395.586667pt;}
.y3b{bottom:398.306667pt;}
.yfb{bottom:398.946667pt;}
.y66{bottom:399.426667pt;}
.y51{bottom:405.026667pt;}
.y8b{bottom:405.826667pt;}
.y9d{bottom:406.946667pt;}
.yc3{bottom:410.306667pt;}
.y21{bottom:411.426667pt;}
.yb1{bottom:411.906667pt;}
.ye4{bottom:416.226667pt;}
.y3a{bottom:421.506667pt;}
.yd2{bottom:422.626667pt;}
.y65{bottom:424.066667pt;}
.y50{bottom:429.666667pt;}
.y9c{bottom:431.586667pt;}
.yfa{bottom:434.306667pt;}
.yc2{bottom:435.106667pt;}
.yb0{bottom:436.546667pt;}
.ye3{bottom:440.866667pt;}
.y8a{bottom:441.186667pt;}
.y39{bottom:444.546667pt;}
.y20{bottom:450.146667pt;}
.y9b{bottom:456.226667pt;}
.yf9{bottom:458.946667pt;}
.y64{bottom:459.426667pt;}
.yc1{bottom:459.746667pt;}
.yaf{bottom:461.186667pt;}
.y4f{bottom:465.026667pt;}
.ye2{bottom:465.506667pt;}
.y89{bottom:465.826667pt;}
.y38{bottom:467.746667pt;}
.y9a{bottom:480.866667pt;}
.yf8{bottom:483.746667pt;}
.y63{bottom:484.066667pt;}
.yc0{bottom:484.386667pt;}
.yae{bottom:485.986667pt;}
.y1f{bottom:489.026667pt;}
.y4e{bottom:489.666667pt;}
.y88{bottom:490.466667pt;}
.y37{bottom:490.946667pt;}
.ye1{bottom:500.866667pt;}
.y7d{bottom:502.946667pt;}
.y99{bottom:505.506667pt;}
.yf7{bottom:508.386667pt;}
.ybf{bottom:509.026667pt;}
.yad{bottom:510.626667pt;}
.y4d{bottom:514.306667pt;}
.y87{bottom:515.106667pt;}
.y62{bottom:519.426667pt;}
.y36{bottom:527.266667pt;}
.y1e{bottom:527.906667pt;}
.ye0{bottom:533.506667pt;}
.ybe{bottom:533.666667pt;}
.y7c{bottom:534.146667pt;}
.yac{bottom:535.266667pt;}
.y4c{bottom:538.973333pt;}
.y86{bottom:539.773333pt;}
.y111{bottom:540.733333pt;}
.yf6{bottom:543.773333pt;}
.ybd{bottom:558.333333pt;}
.y7b{bottom:558.813333pt;}
.yab{bottom:559.933333pt;}
.ydf{bottom:560.733333pt;}
.y4b{bottom:563.613333pt;}
.y85{bottom:564.413333pt;}
.y35{bottom:566.013333pt;}
.y1d{bottom:566.813333pt;}
.yf5{bottom:568.413333pt;}
.y110{bottom:576.093333pt;}
.y7a{bottom:583.453333pt;}
.yaa{bottom:584.573333pt;}
.y4a{bottom:588.253333pt;}
.yf4{bottom:593.053333pt;}
.ybc{bottom:593.693333pt;}
.y84{bottom:600.733333pt;}
.y34{bottom:604.093333pt;}
.y1c{bottom:605.693333pt;}
.y79{bottom:608.093333pt;}
.y49{bottom:612.893333pt;}
.ybb{bottom:618.333333pt;}
.ya9{bottom:621.853333pt;}
.yf3{bottom:628.413333pt;}
.y33{bottom:629.693333pt;}
.y78{bottom:632.733333pt;}
.y10f{bottom:636.093333pt;}
.y48{bottom:637.693333pt;}
.y83{bottom:638.653333pt;}
.yba{bottom:642.973333pt;}
.y1b{bottom:644.573333pt;}
.y77{bottom:657.533333pt;}
.y32{bottom:659.453333pt;}
.y10e{bottom:660.733333pt;}
.y47{bottom:662.333333pt;}
.yb9{bottom:674.333333pt;}
.y119{bottom:681.853333pt;}
.y76{bottom:682.173333pt;}
.y1a{bottom:682.333333pt;}
.y10d{bottom:685.533333pt;}
.y46{bottom:686.973333pt;}
.y31{bottom:689.373333pt;}
.y75{bottom:706.813333pt;}
.y45{bottom:711.613333pt;}
.y19{bottom:717.693333pt;}
.y30{bottom:719.133333pt;}
.y118{bottom:719.773333pt;}
.y10c{bottom:720.733333pt;}
.y74{bottom:731.453333pt;}
.y10b{bottom:745.373333pt;}
.y44{bottom:746.973333pt;}
.y2f{bottom:748.893333pt;}
.y18{bottom:753.053333pt;}
.y117{bottom:755.133333pt;}
.y73{bottom:756.093333pt;}
.y8{bottom:766.653333pt;}
.y10a{bottom:770.173333pt;}
.y43{bottom:771.613333pt;}
.y2e{bottom:778.853333pt;}
.y116{bottom:779.813333pt;}
.y17{bottom:788.453333pt;}
.y72{bottom:791.493333pt;}
.y109{bottom:794.853333pt;}
.y42{bottom:796.293333pt;}
.y115{bottom:804.453333pt;}
.y2d{bottom:808.613333pt;}
.y71{bottom:816.133333pt;}
.y108{bottom:819.493333pt;}
.y41{bottom:820.933333pt;}
.y16{bottom:823.813333pt;}
.y61{bottom:831.173333pt;}
.y2c{bottom:838.373333pt;}
.y114{bottom:839.813333pt;}
.y70{bottom:840.773333pt;}
.y107{bottom:844.133333pt;}
.y7{bottom:845.093333pt;}
.y40{bottom:845.733333pt;}
.y15{bottom:859.173333pt;}
.y6f{bottom:865.413333pt;}
.y98{bottom:866.213333pt;}
.y2b{bottom:868.293333pt;}
.y3f{bottom:870.373333pt;}
.y113{bottom:875.173333pt;}
.y106{bottom:879.493333pt;}
.y6{bottom:883.813333pt;}
.y60{bottom:890.213333pt;}
.y14{bottom:894.373333pt;}
.y3e{bottom:895.013333pt;}
.y2a{bottom:898.053333pt;}
.y112{bottom:899.813333pt;}
.y97{bottom:904.133333pt;}
.y5f{bottom:914.853333pt;}
.y5{bottom:922.693333pt;}
.y29{bottom:928.293333pt;}
.y3d{bottom:930.373333pt;}
.y13{bottom:930.693333pt;}
.y82{bottom:933.893333pt;}
.y5e{bottom:939.493333pt;}
.y3c{bottom:956.453333pt;}
.y81{bottom:959.013333pt;}
.y4{bottom:961.573333pt;}
.y5d{bottom:964.133333pt;}
.hc{height:28.640000pt;}
.h2{height:51.031250pt;}
.ha{height:51.117500pt;}
.hb{height:54.169600pt;}
.hf{height:60.519362pt;}
.h7{height:69.788160pt;}
.he{height:76.964840pt;}
.h3{height:79.331840pt;}
.h4{height:87.489947pt;}
.hd{height:89.472000pt;}
.h9{height:99.612160pt;}
.h5{height:115.552000pt;}
.h8{height:119.296000pt;}
.h6{height:143.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:642.213333pt;}
.w3{width:642.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.632000pt;}
.x4{left:54.112000pt;}
.x5{left:63.546667pt;}
.x2{left:75.519988pt;}
.x8{left:90.271988pt;}
.x6{left:251.106667pt;}
.x3{left:274.946667pt;}
.xe{left:529.533322pt;}
.xd{left:559.613322pt;}
.xb{left:563.613322pt;}
.x9{left:702.533322pt;}
.x1{left:710.373322pt;}
.xa{left:717.733322pt;}
.xc{left:732.293322pt;}
}




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