
    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_90bfb2c88b9123eb951c4b09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f8ea34305261593d0264f63e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b8372f1eb7fb175d553360c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_07934998921f182a2610a53d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_ae5e9e36902f5b3f03d126c3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5655317876cc3c0802b3c4b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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;}
.ls8{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.720000px;}
.ls2{letter-spacing:10.800000px;}
.ls6{letter-spacing:14.400000px;}
.ls9{letter-spacing:52.560000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-5.040000px;}
._7{margin-left:-3.816000px;}
._8{margin-left:-2.442000px;}
._0{margin-left:-1.080000px;}
._1{width:1.290000px;}
._9{width:2.820000px;}
._4{width:4.248000px;}
._5{width:6.192000px;}
._6{width:7.776000px;}
._2{width:8.928000px;}
._3{width:9.936000px;}
._a{width:11.232000px;}
._b{width:13.032000px;}
._c{width:14.472000px;}
._23{width:15.486000px;}
._12{width:16.566000px;}
._10{width:19.008000px;}
._21{width:20.448000px;}
._2c{width:21.456000px;}
._13{width:22.680000px;}
._14{width:23.904000px;}
._17{width:25.560000px;}
._15{width:26.856000px;}
._16{width:27.936000px;}
._2f{width:29.022000px;}
._11{width:30.384000px;}
._1b{width:32.184000px;}
._19{width:33.624000px;}
._36{width:35.208000px;}
._3a{width:36.288000px;}
._31{width:37.368000px;}
._47{width:38.568000px;}
._18{width:40.032000px;}
._46{width:41.040000px;}
._34{width:42.336000px;}
._20{width:43.344000px;}
._27{width:44.352000px;}
._2e{width:45.864000px;}
._28{width:47.088000px;}
._d{width:48.096000px;}
._1d{width:49.176000px;}
._1e{width:50.550000px;}
._29{width:51.552000px;}
._2b{width:52.632000px;}
._35{width:53.928000px;}
._e{width:55.872000px;}
._2d{width:57.360000px;}
._f{width:59.544000px;}
._3f{width:60.600000px;}
._40{width:65.232000px;}
._43{width:67.536000px;}
._1a{width:68.544000px;}
._1c{width:69.816000px;}
._49{width:71.136000px;}
._4a{width:72.480000px;}
._1f{width:74.952000px;}
._33{width:90.936000px;}
._32{width:92.232000px;}
._48{width:93.360000px;}
._2a{width:96.552000px;}
._45{width:98.712000px;}
._24{width:102.528000px;}
._41{width:110.736000px;}
._42{width:111.744000px;}
._30{width:118.296000px;}
._25{width:145.152000px;}
._26{width:146.952000px;}
._44{width:236.592000px;}
._37{width:1232.796000px;}
._39{width:1242.156000px;}
._38{width:1246.444320px;}
._3e{width:1254.508320px;}
._3c{width:1296.156000px;}
._3d{width:1935.096000px;}
._3b{width:2438.554560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.536000px;}
.y2{bottom:78.696000px;}
.y2e{bottom:122.616000px;}
.y7c{bottom:123.696000px;}
.yff{bottom:126.396000px;}
.y114{bottom:129.096000px;}
.y58{bottom:132.516000px;}
.yb8{bottom:133.956000px;}
.yd5{bottom:134.676000px;}
.yb1{bottom:139.896000px;}
.ya5{bottom:144.756000px;}
.y2d{bottom:146.376000px;}
.yfe{bottom:147.096000px;}
.y7b{bottom:147.456000px;}
.y113{bottom:149.796000px;}
.y57{bottom:156.270000px;}
.yd4{bottom:158.430000px;}
.yb0{bottom:162.210000px;}
.y2c{bottom:170.130000px;}
.y112{bottom:170.490000px;}
.y7a{bottom:171.210000px;}
.y56{bottom:180.030000px;}
.yd3{bottom:182.190000px;}
.yaf{bottom:184.530000px;}
.yfd{bottom:185.790000px;}
.ya4{bottom:186.150000px;}
.y111{bottom:191.190000px;}
.y2b{bottom:193.890000px;}
.y79{bottom:194.970000px;}
.y55{bottom:203.790000px;}
.yd2{bottom:206.130000px;}
.yfc{bottom:206.490000px;}
.yae{bottom:206.850000px;}
.y2a{bottom:217.830000px;}
.y78{bottom:218.910000px;}
.y54{bottom:227.190000px;}
.ya3{bottom:227.550000px;}
.yad{bottom:229.350000px;}
.yd1{bottom:229.890000px;}
.y29{bottom:241.590000px;}
.y77{bottom:242.670000px;}
.yfb{bottom:247.890000px;}
.y110{bottom:250.590000px;}
.yac{bottom:251.670000px;}
.yd0{bottom:253.650000px;}
.y28{bottom:265.350000px;}
.y53{bottom:266.070000px;}
.y76{bottom:266.430000px;}
.yfa{bottom:268.590000px;}
.ya2{bottom:268.950000px;}
.y10f{bottom:271.290000px;}
.yab{bottom:274.035000px;}
.ycf{bottom:277.455000px;}
.y27{bottom:289.155000px;}
.yf9{bottom:289.335000px;}
.y75{bottom:290.235000px;}
.yaa{bottom:296.355000px;}
.yce{bottom:301.395000px;}
.y52{bottom:305.355000px;}
.y137{bottom:306.075000px;}
.y10e{bottom:310.035000px;}
.ya1{bottom:310.395000px;}
.y26{bottom:312.915000px;}
.y74{bottom:314.175000px;}
.ycd{bottom:325.155000px;}
.y136{bottom:326.775000px;}
.yf8{bottom:328.035000px;}
.y51{bottom:329.115000px;}
.ya9{bottom:330.735000px;}
.y25{bottom:336.855000px;}
.y73{bottom:337.935000px;}
.y135{bottom:347.475000px;}
.yf7{bottom:348.735000px;}
.ycc{bottom:348.915000px;}
.ya0{bottom:349.275000px;}
.y10d{bottom:351.435000px;}
.y50{bottom:352.875000px;}
.y24{bottom:360.615000px;}
.y72{bottom:361.335000px;}
.y134{bottom:368.175000px;}
.yf6{bottom:369.435000px;}
.y10c{bottom:371.955000px;}
.ycb{bottom:372.675000px;}
.y4f{bottom:376.635000px;}
.y84{bottom:379.335000px;}
.y23{bottom:384.375000px;}
.y71{bottom:385.455000px;}
.y9f{bottom:388.155000px;}
.y133{bottom:388.875000px;}
.yf5{bottom:389.955000px;}
.y10b{bottom:392.655000px;}
.yca{bottom:396.615000px;}
.y4e{bottom:400.575000px;}
.y83{bottom:403.095000px;}
.y22{bottom:408.135000px;}
.y70{bottom:409.395000px;}
.yf4{bottom:410.655000px;}
.y9e{bottom:411.915000px;}
.y10a{bottom:413.355000px;}
.yc9{bottom:420.375000px;}
.y4d{bottom:424.335000px;}
.y82{bottom:426.855000px;}
.y132{bottom:427.575000px;}
.yf3{bottom:431.355000px;}
.y21{bottom:432.075000px;}
.y6f{bottom:433.155000px;}
.y109{bottom:434.055000px;}
.y9d{bottom:435.675000px;}
.yb7{bottom:441.435000px;}
.yc8{bottom:444.135000px;}
.y4c{bottom:448.095000px;}
.y131{bottom:448.275000px;}
.y81{bottom:450.795000px;}
.y108{bottom:454.755000px;}
.y20{bottom:455.835000px;}
.y6e{bottom:456.915000px;}
.y9c{bottom:459.435000px;}
.yc7{bottom:467.895000px;}
.y130{bottom:468.975000px;}
.yf2{bottom:470.055000px;}
.y4b{bottom:471.855000px;}
.y80{bottom:474.555000px;}
.y1f{bottom:476.355000px;}
.y6d{bottom:480.675000px;}
.y9b{bottom:483.375000px;}
.y12f{bottom:489.675000px;}
.yf1{bottom:490.755000px;}
.yc6{bottom:491.835000px;}
.y107{bottom:493.455000px;}
.y4a{bottom:495.795000px;}
.y6c{bottom:504.435000px;}
.y9a{bottom:507.135000px;}
.y12e{bottom:510.375000px;}
.yf0{bottom:511.455000px;}
.y1e{bottom:512.175000px;}
.y7f{bottom:512.895000px;}
.y106{bottom:514.155000px;}
.yc5{bottom:515.595000px;}
.y49{bottom:519.555000px;}
.y6b{bottom:528.015000px;}
.y99{bottom:530.895000px;}
.y12d{bottom:531.075000px;}
.yef{bottom:532.155000px;}
.y1d{bottom:533.055000px;}
.y105{bottom:534.855000px;}
.yc4{bottom:539.355000px;}
.y48{bottom:543.315000px;}
.y12c{bottom:551.775000px;}
.y6a{bottom:552.135000px;}
.yee{bottom:552.855000px;}
.y1c{bottom:553.755000px;}
.y98{bottom:554.655000px;}
.y104{bottom:555.555000px;}
.yc3{bottom:563.145000px;}
.y47{bottom:567.105000px;}
.y12b{bottom:572.505000px;}
.yed{bottom:573.585000px;}
.y1b{bottom:574.485000px;}
.y69{bottom:575.925000px;}
.y103{bottom:576.285000px;}
.yc2{bottom:586.725000px;}
.ya8{bottom:587.085000px;}
.y46{bottom:591.045000px;}
.y97{bottom:593.205000px;}
.yec{bottom:594.285000px;}
.y1a{bottom:595.185000px;}
.y102{bottom:596.985000px;}
.y68{bottom:599.685000px;}
.y12a{bottom:611.205000px;}
.y45{bottom:614.805000px;}
.yeb{bottom:614.985000px;}
.y19{bottom:615.885000px;}
.y67{bottom:623.625000px;}
.yc1{bottom:628.845000px;}
.y129{bottom:631.905000px;}
.y96{bottom:632.445000px;}
.yea{bottom:635.685000px;}
.y18{bottom:636.585000px;}
.y44{bottom:638.565000px;}
.y66{bottom:647.385000px;}
.yc0{bottom:652.605000px;}
.y95{bottom:656.205000px;}
.y101{bottom:656.385000px;}
.y17{bottom:657.285000px;}
.y43{bottom:662.325000px;}
.y65{bottom:671.145000px;}
.y128{bottom:673.305000px;}
.ybf{bottom:676.365000px;}
.ye9{bottom:676.725000px;}
.y100{bottom:677.085000px;}
.y16{bottom:677.985000px;}
.y94{bottom:679.965000px;}
.y42{bottom:686.085000px;}
.y127{bottom:694.005000px;}
.y64{bottom:694.905000px;}
.y15{bottom:698.685000px;}
.ybe{bottom:700.125000px;}
.y93{bottom:703.725000px;}
.y41{bottom:710.025000px;}
.yb6{bottom:711.645000px;}
.ye8{bottom:715.785000px;}
.y63{bottom:718.845000px;}
.y14{bottom:719.385000px;}
.ybd{bottom:724.065000px;}
.y92{bottom:727.665000px;}
.y126{bottom:732.705000px;}
.y40{bottom:733.785000px;}
.ydb{bottom:739.545000px;}
.y13{bottom:740.085000px;}
.y62{bottom:742.605000px;}
.ybc{bottom:747.825000px;}
.y91{bottom:751.425000px;}
.yb5{bottom:752.325000px;}
.y125{bottom:753.405000px;}
.y3f{bottom:757.545000px;}
.y12{bottom:760.785000px;}
.yda{bottom:763.305000px;}
.y61{bottom:766.365000px;}
.ybb{bottom:771.585000px;}
.ye7{bottom:772.125000px;}
.y124{bottom:774.105000px;}
.y90{bottom:775.185000px;}
.y3e{bottom:781.305000px;}
.y11{bottom:781.485000px;}
.yd9{bottom:787.245000px;}
.y60{bottom:790.125000px;}
.yb4{bottom:793.725000px;}
.y123{bottom:794.805000px;}
.ye6{bottom:796.065000px;}
.y8f{bottom:798.945000px;}
.y10{bottom:802.185000px;}
.y3d{bottom:805.245000px;}
.yba{bottom:806.325000px;}
.yd8{bottom:811.005000px;}
.y5f{bottom:814.065000px;}
.y122{bottom:815.505000px;}
.ye5{bottom:819.825000px;}
.y8e{bottom:822.705000px;}
.yf{bottom:822.885000px;}
.yb3{bottom:823.785000px;}
.y3c{bottom:829.005000px;}
.yd7{bottom:834.765000px;}
.y121{bottom:836.205000px;}
.y5e{bottom:837.825000px;}
.yb9{bottom:840.030000px;}
.ye{bottom:843.630000px;}
.y8d{bottom:846.690000px;}
.y3b{bottom:852.810000px;}
.yd6{bottom:858.570000px;}
.y5d{bottom:861.630000px;}
.yd{bottom:864.330000px;}
.ye4{bottom:867.390000px;}
.y8c{bottom:870.450000px;}
.y120{bottom:874.950000px;}
.y3a{bottom:876.570000px;}
.ya7{bottom:884.490000px;}
.y7e{bottom:885.030000px;}
.y5c{bottom:885.390000px;}
.yc{bottom:887.910000px;}
.ye3{bottom:891.330000px;}
.y8b{bottom:894.210000px;}
.y11f{bottom:895.650000px;}
.y39{bottom:900.510000px;}
.y7d{bottom:908.970000px;}
.y5b{bottom:909.330000px;}
.ye2{bottom:915.090000px;}
.y11e{bottom:916.350000px;}
.y8a{bottom:917.970000px;}
.y38{bottom:924.270000px;}
.yb{bottom:926.790000px;}
.y5a{bottom:932.730000px;}
.y11d{bottom:937.050000px;}
.ye1{bottom:938.850000px;}
.y89{bottom:941.910000px;}
.y37{bottom:948.030000px;}
.ya{bottom:950.550000px;}
.ye0{bottom:962.610000px;}
.y88{bottom:965.670000px;}
.y36{bottom:971.790000px;}
.y9{bottom:974.310000px;}
.y11c{bottom:975.750000px;}
.ydf{bottom:986.370000px;}
.y87{bottom:989.430000px;}
.y35{bottom:995.730000px;}
.y11b{bottom:996.450000px;}
.yde{bottom:1010.310000px;}
.y8{bottom:1012.830000px;}
.y86{bottom:1013.190000px;}
.y11a{bottom:1017.150000px;}
.y34{bottom:1019.490000px;}
.ydd{bottom:1034.070000px;}
.y85{bottom:1037.130000px;}
.y119{bottom:1037.850000px;}
.y33{bottom:1043.250000px;}
.y7{bottom:1051.530000px;}
.y118{bottom:1058.550000px;}
.y59{bottom:1066.650000px;}
.y32{bottom:1067.010000px;}
.ydc{bottom:1072.410000px;}
.y6{bottom:1075.470000px;}
.y117{bottom:1079.250000px;}
.y31{bottom:1090.950000px;}
.y5{bottom:1113.630000px;}
.y30{bottom:1114.710000px;}
.yb2{bottom:1116.330000px;}
.y116{bottom:1117.950000px;}
.y4{bottom:1134.000000px;}
.ya6{bottom:1138.320000px;}
.y2f{bottom:1138.500000px;}
.y115{bottom:1138.680000px;}
.y1{bottom:1193.400000px;}
.h7{height:52.066406px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.h8{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h3{height:90.703125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.x7{left:110.556000px;}
.x6{left:124.596000px;}
.x5{left:139.716000px;}
.x8{left:149.436000px;}
.x3{left:162.570000px;}
.x4{left:214.950000px;}
.xa{left:288.210000px;}
.x9{left:327.495000px;}
.x2{left:434.055000px;}
.xb{left:473.475000px;}
.xc{left:514.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls6{letter-spacing:12.800000pt;}
.ls9{letter-spacing:46.720000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-4.480000pt;}
._7{margin-left:-3.392000pt;}
._8{margin-left:-2.170667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.146667pt;}
._9{width:2.506667pt;}
._4{width:3.776000pt;}
._5{width:5.504000pt;}
._6{width:6.912000pt;}
._2{width:7.936000pt;}
._3{width:8.832000pt;}
._a{width:9.984000pt;}
._b{width:11.584000pt;}
._c{width:12.864000pt;}
._23{width:13.765333pt;}
._12{width:14.725333pt;}
._10{width:16.896000pt;}
._21{width:18.176000pt;}
._2c{width:19.072000pt;}
._13{width:20.160000pt;}
._14{width:21.248000pt;}
._17{width:22.720000pt;}
._15{width:23.872000pt;}
._16{width:24.832000pt;}
._2f{width:25.797333pt;}
._11{width:27.008000pt;}
._1b{width:28.608000pt;}
._19{width:29.888000pt;}
._36{width:31.296000pt;}
._3a{width:32.256000pt;}
._31{width:33.216000pt;}
._47{width:34.282667pt;}
._18{width:35.584000pt;}
._46{width:36.480000pt;}
._34{width:37.632000pt;}
._20{width:38.528000pt;}
._27{width:39.424000pt;}
._2e{width:40.768000pt;}
._28{width:41.856000pt;}
._d{width:42.752000pt;}
._1d{width:43.712000pt;}
._1e{width:44.933333pt;}
._29{width:45.824000pt;}
._2b{width:46.784000pt;}
._35{width:47.936000pt;}
._e{width:49.664000pt;}
._2d{width:50.986667pt;}
._f{width:52.928000pt;}
._3f{width:53.866667pt;}
._40{width:57.984000pt;}
._43{width:60.032000pt;}
._1a{width:60.928000pt;}
._1c{width:62.058667pt;}
._49{width:63.232000pt;}
._4a{width:64.426667pt;}
._1f{width:66.624000pt;}
._33{width:80.832000pt;}
._32{width:81.984000pt;}
._48{width:82.986667pt;}
._2a{width:85.824000pt;}
._45{width:87.744000pt;}
._24{width:91.136000pt;}
._41{width:98.432000pt;}
._42{width:99.328000pt;}
._30{width:105.152000pt;}
._25{width:129.024000pt;}
._26{width:130.624000pt;}
._44{width:210.304000pt;}
._37{width:1095.818667pt;}
._39{width:1104.138667pt;}
._38{width:1107.950507pt;}
._3e{width:1115.118507pt;}
._3c{width:1152.138667pt;}
._3d{width:1720.085333pt;}
._3b{width:2167.604053pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:52.032000pt;}
.y2{bottom:69.952000pt;}
.y2e{bottom:108.992000pt;}
.y7c{bottom:109.952000pt;}
.yff{bottom:112.352000pt;}
.y114{bottom:114.752000pt;}
.y58{bottom:117.792000pt;}
.yb8{bottom:119.072000pt;}
.yd5{bottom:119.712000pt;}
.yb1{bottom:124.352000pt;}
.ya5{bottom:128.672000pt;}
.y2d{bottom:130.112000pt;}
.yfe{bottom:130.752000pt;}
.y7b{bottom:131.072000pt;}
.y113{bottom:133.152000pt;}
.y57{bottom:138.906667pt;}
.yd4{bottom:140.826667pt;}
.yb0{bottom:144.186667pt;}
.y2c{bottom:151.226667pt;}
.y112{bottom:151.546667pt;}
.y7a{bottom:152.186667pt;}
.y56{bottom:160.026667pt;}
.yd3{bottom:161.946667pt;}
.yaf{bottom:164.026667pt;}
.yfd{bottom:165.146667pt;}
.ya4{bottom:165.466667pt;}
.y111{bottom:169.946667pt;}
.y2b{bottom:172.346667pt;}
.y79{bottom:173.306667pt;}
.y55{bottom:181.146667pt;}
.yd2{bottom:183.226667pt;}
.yfc{bottom:183.546667pt;}
.yae{bottom:183.866667pt;}
.y2a{bottom:193.626667pt;}
.y78{bottom:194.586667pt;}
.y54{bottom:201.946667pt;}
.ya3{bottom:202.266667pt;}
.yad{bottom:203.866667pt;}
.yd1{bottom:204.346667pt;}
.y29{bottom:214.746667pt;}
.y77{bottom:215.706667pt;}
.yfb{bottom:220.346667pt;}
.y110{bottom:222.746667pt;}
.yac{bottom:223.706667pt;}
.yd0{bottom:225.466667pt;}
.y28{bottom:235.866667pt;}
.y53{bottom:236.506667pt;}
.y76{bottom:236.826667pt;}
.yfa{bottom:238.746667pt;}
.ya2{bottom:239.066667pt;}
.y10f{bottom:241.146667pt;}
.yab{bottom:243.586667pt;}
.ycf{bottom:246.626667pt;}
.y27{bottom:257.026667pt;}
.yf9{bottom:257.186667pt;}
.y75{bottom:257.986667pt;}
.yaa{bottom:263.426667pt;}
.yce{bottom:267.906667pt;}
.y52{bottom:271.426667pt;}
.y137{bottom:272.066667pt;}
.y10e{bottom:275.586667pt;}
.ya1{bottom:275.906667pt;}
.y26{bottom:278.146667pt;}
.y74{bottom:279.266667pt;}
.ycd{bottom:289.026667pt;}
.y136{bottom:290.466667pt;}
.yf8{bottom:291.586667pt;}
.y51{bottom:292.546667pt;}
.ya9{bottom:293.986667pt;}
.y25{bottom:299.426667pt;}
.y73{bottom:300.386667pt;}
.y135{bottom:308.866667pt;}
.yf7{bottom:309.986667pt;}
.ycc{bottom:310.146667pt;}
.ya0{bottom:310.466667pt;}
.y10d{bottom:312.386667pt;}
.y50{bottom:313.666667pt;}
.y24{bottom:320.546667pt;}
.y72{bottom:321.186667pt;}
.y134{bottom:327.266667pt;}
.yf6{bottom:328.386667pt;}
.y10c{bottom:330.626667pt;}
.ycb{bottom:331.266667pt;}
.y4f{bottom:334.786667pt;}
.y84{bottom:337.186667pt;}
.y23{bottom:341.666667pt;}
.y71{bottom:342.626667pt;}
.y9f{bottom:345.026667pt;}
.y133{bottom:345.666667pt;}
.yf5{bottom:346.626667pt;}
.y10b{bottom:349.026667pt;}
.yca{bottom:352.546667pt;}
.y4e{bottom:356.066667pt;}
.y83{bottom:358.306667pt;}
.y22{bottom:362.786667pt;}
.y70{bottom:363.906667pt;}
.yf4{bottom:365.026667pt;}
.y9e{bottom:366.146667pt;}
.y10a{bottom:367.426667pt;}
.yc9{bottom:373.666667pt;}
.y4d{bottom:377.186667pt;}
.y82{bottom:379.426667pt;}
.y132{bottom:380.066667pt;}
.yf3{bottom:383.426667pt;}
.y21{bottom:384.066667pt;}
.y6f{bottom:385.026667pt;}
.y109{bottom:385.826667pt;}
.y9d{bottom:387.266667pt;}
.yb7{bottom:392.386667pt;}
.yc8{bottom:394.786667pt;}
.y4c{bottom:398.306667pt;}
.y131{bottom:398.466667pt;}
.y81{bottom:400.706667pt;}
.y108{bottom:404.226667pt;}
.y20{bottom:405.186667pt;}
.y6e{bottom:406.146667pt;}
.y9c{bottom:408.386667pt;}
.yc7{bottom:415.906667pt;}
.y130{bottom:416.866667pt;}
.yf2{bottom:417.826667pt;}
.y4b{bottom:419.426667pt;}
.y80{bottom:421.826667pt;}
.y1f{bottom:423.426667pt;}
.y6d{bottom:427.266667pt;}
.y9b{bottom:429.666667pt;}
.y12f{bottom:435.266667pt;}
.yf1{bottom:436.226667pt;}
.yc6{bottom:437.186667pt;}
.y107{bottom:438.626667pt;}
.y4a{bottom:440.706667pt;}
.y6c{bottom:448.386667pt;}
.y9a{bottom:450.786667pt;}
.y12e{bottom:453.666667pt;}
.yf0{bottom:454.626667pt;}
.y1e{bottom:455.266667pt;}
.y7f{bottom:455.906667pt;}
.y106{bottom:457.026667pt;}
.yc5{bottom:458.306667pt;}
.y49{bottom:461.826667pt;}
.y6b{bottom:469.346667pt;}
.y99{bottom:471.906667pt;}
.y12d{bottom:472.066667pt;}
.yef{bottom:473.026667pt;}
.y1d{bottom:473.826667pt;}
.y105{bottom:475.426667pt;}
.yc4{bottom:479.426667pt;}
.y48{bottom:482.946667pt;}
.y12c{bottom:490.466667pt;}
.y6a{bottom:490.786667pt;}
.yee{bottom:491.426667pt;}
.y1c{bottom:492.226667pt;}
.y98{bottom:493.026667pt;}
.y104{bottom:493.826667pt;}
.yc3{bottom:500.573333pt;}
.y47{bottom:504.093333pt;}
.y12b{bottom:508.893333pt;}
.yed{bottom:509.853333pt;}
.y1b{bottom:510.653333pt;}
.y69{bottom:511.933333pt;}
.y103{bottom:512.253333pt;}
.yc2{bottom:521.533333pt;}
.ya8{bottom:521.853333pt;}
.y46{bottom:525.373333pt;}
.y97{bottom:527.293333pt;}
.yec{bottom:528.253333pt;}
.y1a{bottom:529.053333pt;}
.y102{bottom:530.653333pt;}
.y68{bottom:533.053333pt;}
.y12a{bottom:543.293333pt;}
.y45{bottom:546.493333pt;}
.yeb{bottom:546.653333pt;}
.y19{bottom:547.453333pt;}
.y67{bottom:554.333333pt;}
.yc1{bottom:558.973333pt;}
.y129{bottom:561.693333pt;}
.y96{bottom:562.173333pt;}
.yea{bottom:565.053333pt;}
.y18{bottom:565.853333pt;}
.y44{bottom:567.613333pt;}
.y66{bottom:575.453333pt;}
.yc0{bottom:580.093333pt;}
.y95{bottom:583.293333pt;}
.y101{bottom:583.453333pt;}
.y17{bottom:584.253333pt;}
.y43{bottom:588.733333pt;}
.y65{bottom:596.573333pt;}
.y128{bottom:598.493333pt;}
.ybf{bottom:601.213333pt;}
.ye9{bottom:601.533333pt;}
.y100{bottom:601.853333pt;}
.y16{bottom:602.653333pt;}
.y94{bottom:604.413333pt;}
.y42{bottom:609.853333pt;}
.y127{bottom:616.893333pt;}
.y64{bottom:617.693333pt;}
.y15{bottom:621.053333pt;}
.ybe{bottom:622.333333pt;}
.y93{bottom:625.533333pt;}
.y41{bottom:631.133333pt;}
.yb6{bottom:632.573333pt;}
.ye8{bottom:636.253333pt;}
.y63{bottom:638.973333pt;}
.y14{bottom:639.453333pt;}
.ybd{bottom:643.613333pt;}
.y92{bottom:646.813333pt;}
.y126{bottom:651.293333pt;}
.y40{bottom:652.253333pt;}
.ydb{bottom:657.373333pt;}
.y13{bottom:657.853333pt;}
.y62{bottom:660.093333pt;}
.ybc{bottom:664.733333pt;}
.y91{bottom:667.933333pt;}
.yb5{bottom:668.733333pt;}
.y125{bottom:669.693333pt;}
.y3f{bottom:673.373333pt;}
.y12{bottom:676.253333pt;}
.yda{bottom:678.493333pt;}
.y61{bottom:681.213333pt;}
.ybb{bottom:685.853333pt;}
.ye7{bottom:686.333333pt;}
.y124{bottom:688.093333pt;}
.y90{bottom:689.053333pt;}
.y3e{bottom:694.493333pt;}
.y11{bottom:694.653333pt;}
.yd9{bottom:699.773333pt;}
.y60{bottom:702.333333pt;}
.yb4{bottom:705.533333pt;}
.y123{bottom:706.493333pt;}
.ye6{bottom:707.613333pt;}
.y8f{bottom:710.173333pt;}
.y10{bottom:713.053333pt;}
.y3d{bottom:715.773333pt;}
.yba{bottom:716.733333pt;}
.yd8{bottom:720.893333pt;}
.y5f{bottom:723.613333pt;}
.y122{bottom:724.893333pt;}
.ye5{bottom:728.733333pt;}
.y8e{bottom:731.293333pt;}
.yf{bottom:731.453333pt;}
.yb3{bottom:732.253333pt;}
.y3c{bottom:736.893333pt;}
.yd7{bottom:742.013333pt;}
.y121{bottom:743.293333pt;}
.y5e{bottom:744.733333pt;}
.yb9{bottom:746.693333pt;}
.ye{bottom:749.893333pt;}
.y8d{bottom:752.613333pt;}
.y3b{bottom:758.053333pt;}
.yd6{bottom:763.173333pt;}
.y5d{bottom:765.893333pt;}
.yd{bottom:768.293333pt;}
.ye4{bottom:771.013333pt;}
.y8c{bottom:773.733333pt;}
.y120{bottom:777.733333pt;}
.y3a{bottom:779.173333pt;}
.ya7{bottom:786.213333pt;}
.y7e{bottom:786.693333pt;}
.y5c{bottom:787.013333pt;}
.yc{bottom:789.253333pt;}
.ye3{bottom:792.293333pt;}
.y8b{bottom:794.853333pt;}
.y11f{bottom:796.133333pt;}
.y39{bottom:800.453333pt;}
.y7d{bottom:807.973333pt;}
.y5b{bottom:808.293333pt;}
.ye2{bottom:813.413333pt;}
.y11e{bottom:814.533333pt;}
.y8a{bottom:815.973333pt;}
.y38{bottom:821.573333pt;}
.yb{bottom:823.813333pt;}
.y5a{bottom:829.093333pt;}
.y11d{bottom:832.933333pt;}
.ye1{bottom:834.533333pt;}
.y89{bottom:837.253333pt;}
.y37{bottom:842.693333pt;}
.ya{bottom:844.933333pt;}
.ye0{bottom:855.653333pt;}
.y88{bottom:858.373333pt;}
.y36{bottom:863.813333pt;}
.y9{bottom:866.053333pt;}
.y11c{bottom:867.333333pt;}
.ydf{bottom:876.773333pt;}
.y87{bottom:879.493333pt;}
.y35{bottom:885.093333pt;}
.y11b{bottom:885.733333pt;}
.yde{bottom:898.053333pt;}
.y8{bottom:900.293333pt;}
.y86{bottom:900.613333pt;}
.y11a{bottom:904.133333pt;}
.y34{bottom:906.213333pt;}
.ydd{bottom:919.173333pt;}
.y85{bottom:921.893333pt;}
.y119{bottom:922.533333pt;}
.y33{bottom:927.333333pt;}
.y7{bottom:934.693333pt;}
.y118{bottom:940.933333pt;}
.y59{bottom:948.133333pt;}
.y32{bottom:948.453333pt;}
.ydc{bottom:953.253333pt;}
.y6{bottom:955.973333pt;}
.y117{bottom:959.333333pt;}
.y31{bottom:969.733333pt;}
.y5{bottom:989.893333pt;}
.y30{bottom:990.853333pt;}
.yb2{bottom:992.293333pt;}
.y116{bottom:993.733333pt;}
.y4{bottom:1008.000000pt;}
.ya6{bottom:1011.840000pt;}
.y2f{bottom:1012.000000pt;}
.y115{bottom:1012.160000pt;}
.y1{bottom:1060.800000pt;}
.h7{height:46.281250pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.h8{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h3{height:80.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.x7{left:98.272000pt;}
.x6{left:110.752000pt;}
.x5{left:124.192000pt;}
.x8{left:132.832000pt;}
.x3{left:144.506667pt;}
.x4{left:191.066667pt;}
.xa{left:256.186667pt;}
.x9{left:291.106667pt;}
.x2{left:385.826667pt;}
.xb{left:420.866667pt;}
.xc{left:456.893333pt;}
}




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