
    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_5a58058ac2389bef80c5cb83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4ac82c37d9475af6cbcef9cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_23e88038c10001022efe9931.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_8ffe00f06672274f591e92f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_aa38f623a5c84cdcd708e3db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.ls4{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.134000px;}
.ls7{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.152400px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.046080px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls2{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.457800px;}
.ls3{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.720000px;}
.lsc{letter-spacing:43.517280px;}
.lsa{letter-spacing:50.556000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.wsa{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.026720px;}
.ws5{word-spacing:-18.872520px;}
.ws0{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.262320px;}
.ws6{word-spacing:-18.109320px;}
.ws7{word-spacing:-17.586720px;}
.ws2{word-spacing:-16.974720px;}
.ws4{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-6.081600px;}
._29{margin-left:-4.604160px;}
._24{margin-left:-2.694720px;}
._0{margin-left:-1.656000px;}
._1{width:1.296000px;}
._6{width:2.367840px;}
._5{width:3.646560px;}
._7{width:5.338560px;}
._3{width:7.220160px;}
._4{width:8.415360px;}
._2{width:9.472320px;}
._a{width:10.929120px;}
._c{width:11.989440px;}
._d{width:13.253280px;}
._9{width:14.581440px;}
._8{width:16.168320px;}
._b{width:17.179200px;}
._25{width:18.983520px;}
._11{width:20.269440px;}
._e{width:21.792960px;}
._f{width:23.279040px;}
._1d{width:24.641280px;}
._1c{width:26.363520px;}
._10{width:27.644160px;}
._21{width:28.840800px;}
._23{width:30.614400px;}
._1e{width:31.691520px;}
._20{width:32.817600px;}
._1f{width:34.018560px;}
._27{width:38.983200px;}
._15{width:40.368960px;}
._16{width:41.466240px;}
._1a{width:43.416000px;}
._1b{width:44.418240px;}
._22{width:49.348800px;}
._26{width:50.437440px;}
._17{width:52.966080px;}
._19{width:54.135360px;}
._18{width:56.221920px;}
._12{width:63.363360px;}
._14{width:66.087360px;}
._13{width:67.527360px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:138.636000px;}
.y10c{bottom:141.516000px;}
.ye4{bottom:142.236000px;}
.yc5{bottom:149.436000px;}
.y71{bottom:157.710000px;}
.y10b{bottom:160.230000px;}
.y83{bottom:160.950000px;}
.ye3{bottom:161.310000px;}
.y2c{bottom:167.430000px;}
.yc4{bottom:168.510000px;}
.y9e{bottom:168.870000px;}
.y59{bottom:173.550000px;}
.y70{bottom:176.790000px;}
.y82{bottom:180.030000px;}
.y2b{bottom:186.150000px;}
.y10a{bottom:188.355000px;}
.yc3{bottom:196.995000px;}
.y9d{bottom:198.435000px;}
.y81{bottom:199.155000px;}
.y6f{bottom:200.955000px;}
.y58{bottom:207.075000px;}
.y2a{bottom:214.275000px;}
.y9c{bottom:217.515000px;}
.y80{bottom:226.875000px;}
.ye2{bottom:232.635000px;}
.y29{bottom:233.355000px;}
.y109{bottom:235.155000px;}
.y9b{bottom:236.595000px;}
.y57{bottom:240.195000px;}
.yc2{bottom:244.155000px;}
.ye1{bottom:251.715000px;}
.y28{bottom:252.075000px;}
.y108{bottom:254.235000px;}
.y7f{bottom:254.955000px;}
.y9a{bottom:255.315000px;}
.y56{bottom:259.275000px;}
.yc1{bottom:263.235000px;}
.ye0{bottom:270.795000px;}
.y27{bottom:271.155000px;}
.y7e{bottom:274.035000px;}
.y99{bottom:274.395000px;}
.y55{bottom:278.355000px;}
.yc0{bottom:281.955000px;}
.y26{bottom:290.235000px;}
.y7d{bottom:292.755000px;}
.y54{bottom:297.075000px;}
.ybf{bottom:301.035000px;}
.y107{bottom:301.395000px;}
.y98{bottom:302.475000px;}
.ydf{bottom:303.915000px;}
.y25{bottom:317.985000px;}
.y106{bottom:319.785000px;}
.y7c{bottom:320.865000px;}
.yde{bottom:323.025000px;}
.y53{bottom:325.185000px;}
.ybe{bottom:329.145000px;}
.y97{bottom:330.225000px;}
.y24{bottom:337.065000px;}
.y7b{bottom:339.945000px;}
.ydd{bottom:342.105000px;}
.y52{bottom:344.265000px;}
.y105{bottom:347.865000px;}
.ybd{bottom:348.225000px;}
.y23{bottom:356.145000px;}
.y96{bottom:358.305000px;}
.y7a{bottom:358.665000px;}
.y51{bottom:362.985000px;}
.ybc{bottom:366.945000px;}
.ydc{bottom:369.825000px;}
.y22{bottom:375.225000px;}
.y79{bottom:377.745000px;}
.y50{bottom:382.065000px;}
.ybb{bottom:386.025000px;}
.y95{bottom:386.385000px;}
.ydb{bottom:388.905000px;}
.y104{bottom:395.385000px;}
.y78{bottom:396.825000px;}
.y4f{bottom:401.145000px;}
.y21{bottom:402.945000px;}
.yba{bottom:405.105000px;}
.yda{bottom:407.985000px;}
.y94{bottom:414.105000px;}
.y77{bottom:415.905000px;}
.y4e{bottom:420.225000px;}
.y20{bottom:422.025000px;}
.yb9{bottom:423.825000px;}
.yd9{bottom:427.065000px;}
.y4d{bottom:438.945000px;}
.y1f{bottom:441.465000px;}
.y93{bottom:442.230000px;}
.y103{bottom:442.590000px;}
.y76{bottom:443.670000px;}
.yb8{bottom:451.950000px;}
.y4c{bottom:458.070000px;}
.y1e{bottom:460.230000px;}
.y102{bottom:461.670000px;}
.y75{bottom:468.150000px;}
.y92{bottom:470.310000px;}
.yb7{bottom:471.030000px;}
.y4b{bottom:477.150000px;}
.yd8{bottom:479.310000px;}
.y101{bottom:480.390000px;}
.y1d{bottom:487.950000px;}
.y91{bottom:498.390000px;}
.yb6{bottom:499.110000px;}
.y100{bottom:499.470000px;}
.y4a{bottom:504.870000px;}
.y1c{bottom:507.030000px;}
.yd7{bottom:517.470000px;}
.yb5{bottom:517.830000px;}
.yff{bottom:518.550000px;}
.y49{bottom:523.950000px;}
.y1b{bottom:526.110000px;}
.yd6{bottom:536.190000px;}
.yb4{bottom:536.910000px;}
.y48{bottom:543.030000px;}
.y1a{bottom:544.830000px;}
.yfe{bottom:546.630000px;}
.y90{bottom:554.190000px;}
.yd5{bottom:555.270000px;}
.yb3{bottom:555.990000px;}
.y47{bottom:562.110000px;}
.yfd{bottom:565.350000px;}
.y19{bottom:572.940000px;}
.yd4{bottom:574.380000px;}
.y46{bottom:580.860000px;}
.y8f{bottom:582.300000px;}
.yb2{bottom:583.740000px;}
.yfc{bottom:584.460000px;}
.y18{bottom:592.020000px;}
.y45{bottom:599.940000px;}
.yb1{bottom:602.820000px;}
.yfb{bottom:603.540000px;}
.y6e{bottom:606.780000px;}
.yd3{bottom:607.860000px;}
.y17{bottom:610.740000px;}
.y44{bottom:619.020000px;}
.yfa{bottom:622.260000px;}
.y6d{bottom:624.060000px;}
.yd2{bottom:626.580000px;}
.y16{bottom:629.820000px;}
.yb0{bottom:630.900000px;}
.y43{bottom:637.740000px;}
.y8e{bottom:638.820000px;}
.yf9{bottom:641.340000px;}
.yd1{bottom:645.660000px;}
.y15{bottom:648.900000px;}
.yaf{bottom:649.620000px;}
.y42{bottom:656.820000px;}
.y6c{bottom:658.980000px;}
.yf8{bottom:660.420000px;}
.yd0{bottom:664.740000px;}
.y8d{bottom:666.900000px;}
.y14{bottom:667.620000px;}
.yae{bottom:668.700000px;}
.y6b{bottom:678.060000px;}
.y41{bottom:684.900000px;}
.y13{bottom:686.700000px;}
.yf7{bottom:688.500000px;}
.y8c{bottom:694.620000px;}
.yad{bottom:696.810000px;}
.ycf{bottom:698.250000px;}
.y40{bottom:703.650000px;}
.yf6{bottom:707.250000px;}
.y6a{bottom:711.570000px;}
.y8b{bottom:713.730000px;}
.y12{bottom:714.810000px;}
.yac{bottom:715.890000px;}
.yce{bottom:716.970000px;}
.y3f{bottom:722.730000px;}
.yf5{bottom:726.330000px;}
.y69{bottom:730.650000px;}
.y8a{bottom:732.810000px;}
.y11{bottom:733.890000px;}
.ycd{bottom:736.050000px;}
.y3e{bottom:741.810000px;}
.yab{bottom:743.610000px;}
.y117{bottom:743.970000px;}
.yf4{bottom:745.410000px;}
.y68{bottom:749.730000px;}
.y89{bottom:751.890000px;}
.y10{bottom:752.610000px;}
.ycc{bottom:755.130000px;}
.y3d{bottom:760.890000px;}
.yf3{bottom:764.130000px;}
.y88{bottom:770.610000px;}
.yaa{bottom:771.690000px;}
.ycb{bottom:773.850000px;}
.yf{bottom:780.690000px;}
.y67{bottom:782.850000px;}
.yf2{bottom:783.210000px;}
.y3c{bottom:788.610000px;}
.y116{bottom:790.410000px;}
.ya9{bottom:790.770000px;}
.yca{bottom:792.930000px;}
.y87{bottom:798.690000px;}
.ye{bottom:799.770000px;}
.y66{bottom:801.930000px;}
.yf1{bottom:802.290000px;}
.y3b{bottom:807.690000px;}
.ya8{bottom:809.490000px;}
.y86{bottom:817.770000px;}
.y115{bottom:818.850000px;}
.yf0{bottom:821.010000px;}
.yc9{bottom:826.455000px;}
.y3a{bottom:826.815000px;}
.yd{bottom:827.535000px;}
.y65{bottom:835.455000px;}
.ya7{bottom:837.615000px;}
.yef{bottom:840.135000px;}
.y39{bottom:845.535000px;}
.yc{bottom:846.615000px;}
.y114{bottom:856.335000px;}
.ya6{bottom:856.695000px;}
.yee{bottom:859.215000px;}
.y38{bottom:864.615000px;}
.y64{bottom:868.935000px;}
.yb{bottom:874.695000px;}
.ya5{bottom:875.415000px;}
.y37{bottom:883.695000px;}
.yed{bottom:887.295000px;}
.y63{bottom:888.015000px;}
.ya{bottom:893.415000px;}
.yc8{bottom:897.735000px;}
.y85{bottom:902.415000px;}
.y113{bottom:903.855000px;}
.ya4{bottom:904.215000px;}
.yec{bottom:906.015000px;}
.y62{bottom:906.735000px;}
.y36{bottom:912.135000px;}
.y9{bottom:912.495000px;}
.yc7{bottom:916.815000px;}
.y112{bottom:922.215000px;}
.yeb{bottom:925.095000px;}
.y84{bottom:931.215000px;}
.y61{bottom:934.815000px;}
.y8{bottom:940.575000px;}
.yea{bottom:944.175000px;}
.yc6{bottom:950.325000px;}
.y111{bottom:950.685000px;}
.ya3{bottom:951.405000px;}
.y35{bottom:959.325000px;}
.y7{bottom:959.685000px;}
.ye9{bottom:962.925000px;}
.y60{bottom:968.325000px;}
.y110{bottom:969.765000px;}
.y34{bottom:978.405000px;}
.ya2{bottom:979.125000px;}
.ye8{bottom:982.005000px;}
.y6{bottom:987.405000px;}
.y10f{bottom:988.125000px;}
.y33{bottom:997.125000px;}
.ya1{bottom:998.205000px;}
.ye7{bottom:1001.085000px;}
.y5f{bottom:1001.805000px;}
.y5{bottom:1006.485000px;}
.y32{bottom:1016.205000px;}
.y4{bottom:1025.565000px;}
.ya0{bottom:1026.285000px;}
.ye6{bottom:1029.525000px;}
.y5e{bottom:1029.885000px;}
.y31{bottom:1035.285000px;}
.y10e{bottom:1035.645000px;}
.y74{bottom:1037.085000px;}
.y3{bottom:1044.285000px;}
.y9f{bottom:1045.365000px;}
.y5d{bottom:1048.605000px;}
.y30{bottom:1054.365000px;}
.y2{bottom:1063.365000px;}
.y5c{bottom:1067.685000px;}
.y2f{bottom:1073.085000px;}
.ye5{bottom:1076.730000px;}
.y73{bottom:1082.130000px;}
.y1{bottom:1092.210000px;}
.y5b{bottom:1095.810000px;}
.y2e{bottom:1101.210000px;}
.y10d{bottom:1101.570000px;}
.y5a{bottom:1114.890000px;}
.y2d{bottom:1120.290000px;}
.h4{height:59.383125px;}
.h5{height:63.078750px;}
.h3{height:69.086250px;}
.h2{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.236000px;}
.x6{left:117.396000px;}
.x3{left:133.236000px;}
.xb{left:138.312000px;}
.x2{left:159.195000px;}
.x4{left:160.275000px;}
.xc{left:165.315000px;}
.x9{left:167.835000px;}
.x5{left:186.195000px;}
.x7{left:312.225000px;}
.xa{left:713.085000px;}
.x8{left:786.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.008000pt;}
.ls7{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.040960pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls2{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.406933pt;}
.ls3{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsc{letter-spacing:38.682027pt;}
.lsa{letter-spacing:44.938667pt;}
.ws8{word-spacing:-58.880000pt;}
.wsa{word-spacing:-17.792000pt;}
.ws1{word-spacing:-16.912640pt;}
.ws5{word-spacing:-16.775573pt;}
.ws0{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.233173pt;}
.ws6{word-spacing:-16.097173pt;}
.ws7{word-spacing:-15.632640pt;}
.ws2{word-spacing:-15.088640pt;}
.ws4{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-5.405867pt;}
._29{margin-left:-4.092587pt;}
._24{margin-left:-2.395307pt;}
._0{margin-left:-1.472000pt;}
._1{width:1.152000pt;}
._6{width:2.104747pt;}
._5{width:3.241387pt;}
._7{width:4.745387pt;}
._3{width:6.417920pt;}
._4{width:7.480320pt;}
._2{width:8.419840pt;}
._a{width:9.714773pt;}
._c{width:10.657280pt;}
._d{width:11.780693pt;}
._9{width:12.961280pt;}
._8{width:14.371840pt;}
._b{width:15.270400pt;}
._25{width:16.874240pt;}
._11{width:18.017280pt;}
._e{width:19.371520pt;}
._f{width:20.692480pt;}
._1d{width:21.903360pt;}
._1c{width:23.434240pt;}
._10{width:24.572587pt;}
._21{width:25.636267pt;}
._23{width:27.212800pt;}
._1e{width:28.170240pt;}
._20{width:29.171200pt;}
._1f{width:30.238720pt;}
._27{width:34.651733pt;}
._15{width:35.883520pt;}
._16{width:36.858880pt;}
._1a{width:38.592000pt;}
._1b{width:39.482880pt;}
._22{width:43.865600pt;}
._26{width:44.833280pt;}
._17{width:47.080960pt;}
._19{width:48.120320pt;}
._18{width:49.975040pt;}
._12{width:56.322987pt;}
._14{width:58.744320pt;}
._13{width:60.024320pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:123.232000pt;}
.y10c{bottom:125.792000pt;}
.ye4{bottom:126.432000pt;}
.yc5{bottom:132.832000pt;}
.y71{bottom:140.186667pt;}
.y10b{bottom:142.426667pt;}
.y83{bottom:143.066667pt;}
.ye3{bottom:143.386667pt;}
.y2c{bottom:148.826667pt;}
.yc4{bottom:149.786667pt;}
.y9e{bottom:150.106667pt;}
.y59{bottom:154.266667pt;}
.y70{bottom:157.146667pt;}
.y82{bottom:160.026667pt;}
.y2b{bottom:165.466667pt;}
.y10a{bottom:167.426667pt;}
.yc3{bottom:175.106667pt;}
.y9d{bottom:176.386667pt;}
.y81{bottom:177.026667pt;}
.y6f{bottom:178.626667pt;}
.y58{bottom:184.066667pt;}
.y2a{bottom:190.466667pt;}
.y9c{bottom:193.346667pt;}
.y80{bottom:201.666667pt;}
.ye2{bottom:206.786667pt;}
.y29{bottom:207.426667pt;}
.y109{bottom:209.026667pt;}
.y9b{bottom:210.306667pt;}
.y57{bottom:213.506667pt;}
.yc2{bottom:217.026667pt;}
.ye1{bottom:223.746667pt;}
.y28{bottom:224.066667pt;}
.y108{bottom:225.986667pt;}
.y7f{bottom:226.626667pt;}
.y9a{bottom:226.946667pt;}
.y56{bottom:230.466667pt;}
.yc1{bottom:233.986667pt;}
.ye0{bottom:240.706667pt;}
.y27{bottom:241.026667pt;}
.y7e{bottom:243.586667pt;}
.y99{bottom:243.906667pt;}
.y55{bottom:247.426667pt;}
.yc0{bottom:250.626667pt;}
.y26{bottom:257.986667pt;}
.y7d{bottom:260.226667pt;}
.y54{bottom:264.066667pt;}
.ybf{bottom:267.586667pt;}
.y107{bottom:267.906667pt;}
.y98{bottom:268.866667pt;}
.ydf{bottom:270.146667pt;}
.y25{bottom:282.653333pt;}
.y106{bottom:284.253333pt;}
.y7c{bottom:285.213333pt;}
.yde{bottom:287.133333pt;}
.y53{bottom:289.053333pt;}
.ybe{bottom:292.573333pt;}
.y97{bottom:293.533333pt;}
.y24{bottom:299.613333pt;}
.y7b{bottom:302.173333pt;}
.ydd{bottom:304.093333pt;}
.y52{bottom:306.013333pt;}
.y105{bottom:309.213333pt;}
.ybd{bottom:309.533333pt;}
.y23{bottom:316.573333pt;}
.y96{bottom:318.493333pt;}
.y7a{bottom:318.813333pt;}
.y51{bottom:322.653333pt;}
.ybc{bottom:326.173333pt;}
.ydc{bottom:328.733333pt;}
.y22{bottom:333.533333pt;}
.y79{bottom:335.773333pt;}
.y50{bottom:339.613333pt;}
.ybb{bottom:343.133333pt;}
.y95{bottom:343.453333pt;}
.ydb{bottom:345.693333pt;}
.y104{bottom:351.453333pt;}
.y78{bottom:352.733333pt;}
.y4f{bottom:356.573333pt;}
.y21{bottom:358.173333pt;}
.yba{bottom:360.093333pt;}
.yda{bottom:362.653333pt;}
.y94{bottom:368.093333pt;}
.y77{bottom:369.693333pt;}
.y4e{bottom:373.533333pt;}
.y20{bottom:375.133333pt;}
.yb9{bottom:376.733333pt;}
.yd9{bottom:379.613333pt;}
.y4d{bottom:390.173333pt;}
.y1f{bottom:392.413333pt;}
.y93{bottom:393.093333pt;}
.y103{bottom:393.413333pt;}
.y76{bottom:394.373333pt;}
.yb8{bottom:401.733333pt;}
.y4c{bottom:407.173333pt;}
.y1e{bottom:409.093333pt;}
.y102{bottom:410.373333pt;}
.y75{bottom:416.133333pt;}
.y92{bottom:418.053333pt;}
.yb7{bottom:418.693333pt;}
.y4b{bottom:424.133333pt;}
.yd8{bottom:426.053333pt;}
.y101{bottom:427.013333pt;}
.y1d{bottom:433.733333pt;}
.y91{bottom:443.013333pt;}
.yb6{bottom:443.653333pt;}
.y100{bottom:443.973333pt;}
.y4a{bottom:448.773333pt;}
.y1c{bottom:450.693333pt;}
.yd7{bottom:459.973333pt;}
.yb5{bottom:460.293333pt;}
.yff{bottom:460.933333pt;}
.y49{bottom:465.733333pt;}
.y1b{bottom:467.653333pt;}
.yd6{bottom:476.613333pt;}
.yb4{bottom:477.253333pt;}
.y48{bottom:482.693333pt;}
.y1a{bottom:484.293333pt;}
.yfe{bottom:485.893333pt;}
.y90{bottom:492.613333pt;}
.yd5{bottom:493.573333pt;}
.yb3{bottom:494.213333pt;}
.y47{bottom:499.653333pt;}
.yfd{bottom:502.533333pt;}
.y19{bottom:509.280000pt;}
.yd4{bottom:510.560000pt;}
.y46{bottom:516.320000pt;}
.y8f{bottom:517.600000pt;}
.yb2{bottom:518.880000pt;}
.yfc{bottom:519.520000pt;}
.y18{bottom:526.240000pt;}
.y45{bottom:533.280000pt;}
.yb1{bottom:535.840000pt;}
.yfb{bottom:536.480000pt;}
.y6e{bottom:539.360000pt;}
.yd3{bottom:540.320000pt;}
.y17{bottom:542.880000pt;}
.y44{bottom:550.240000pt;}
.yfa{bottom:553.120000pt;}
.y6d{bottom:554.720000pt;}
.yd2{bottom:556.960000pt;}
.y16{bottom:559.840000pt;}
.yb0{bottom:560.800000pt;}
.y43{bottom:566.880000pt;}
.y8e{bottom:567.840000pt;}
.yf9{bottom:570.080000pt;}
.yd1{bottom:573.920000pt;}
.y15{bottom:576.800000pt;}
.yaf{bottom:577.440000pt;}
.y42{bottom:583.840000pt;}
.y6c{bottom:585.760000pt;}
.yf8{bottom:587.040000pt;}
.yd0{bottom:590.880000pt;}
.y8d{bottom:592.800000pt;}
.y14{bottom:593.440000pt;}
.yae{bottom:594.400000pt;}
.y6b{bottom:602.720000pt;}
.y41{bottom:608.800000pt;}
.y13{bottom:610.400000pt;}
.yf7{bottom:612.000000pt;}
.y8c{bottom:617.440000pt;}
.yad{bottom:619.386667pt;}
.ycf{bottom:620.666667pt;}
.y40{bottom:625.466667pt;}
.yf6{bottom:628.666667pt;}
.y6a{bottom:632.506667pt;}
.y8b{bottom:634.426667pt;}
.y12{bottom:635.386667pt;}
.yac{bottom:636.346667pt;}
.yce{bottom:637.306667pt;}
.y3f{bottom:642.426667pt;}
.yf5{bottom:645.626667pt;}
.y69{bottom:649.466667pt;}
.y8a{bottom:651.386667pt;}
.y11{bottom:652.346667pt;}
.ycd{bottom:654.266667pt;}
.y3e{bottom:659.386667pt;}
.yab{bottom:660.986667pt;}
.y117{bottom:661.306667pt;}
.yf4{bottom:662.586667pt;}
.y68{bottom:666.426667pt;}
.y89{bottom:668.346667pt;}
.y10{bottom:668.986667pt;}
.ycc{bottom:671.226667pt;}
.y3d{bottom:676.346667pt;}
.yf3{bottom:679.226667pt;}
.y88{bottom:684.986667pt;}
.yaa{bottom:685.946667pt;}
.ycb{bottom:687.866667pt;}
.yf{bottom:693.946667pt;}
.y67{bottom:695.866667pt;}
.yf2{bottom:696.186667pt;}
.y3c{bottom:700.986667pt;}
.y116{bottom:702.586667pt;}
.ya9{bottom:702.906667pt;}
.yca{bottom:704.826667pt;}
.y87{bottom:709.946667pt;}
.ye{bottom:710.906667pt;}
.y66{bottom:712.826667pt;}
.yf1{bottom:713.146667pt;}
.y3b{bottom:717.946667pt;}
.ya8{bottom:719.546667pt;}
.y86{bottom:726.906667pt;}
.y115{bottom:727.866667pt;}
.yf0{bottom:729.786667pt;}
.yc9{bottom:734.626667pt;}
.y3a{bottom:734.946667pt;}
.yd{bottom:735.586667pt;}
.y65{bottom:742.626667pt;}
.ya7{bottom:744.546667pt;}
.yef{bottom:746.786667pt;}
.y39{bottom:751.586667pt;}
.yc{bottom:752.546667pt;}
.y114{bottom:761.186667pt;}
.ya6{bottom:761.506667pt;}
.yee{bottom:763.746667pt;}
.y38{bottom:768.546667pt;}
.y64{bottom:772.386667pt;}
.yb{bottom:777.506667pt;}
.ya5{bottom:778.146667pt;}
.y37{bottom:785.506667pt;}
.yed{bottom:788.706667pt;}
.y63{bottom:789.346667pt;}
.ya{bottom:794.146667pt;}
.yc8{bottom:797.986667pt;}
.y85{bottom:802.146667pt;}
.y113{bottom:803.426667pt;}
.ya4{bottom:803.746667pt;}
.yec{bottom:805.346667pt;}
.y62{bottom:805.986667pt;}
.y36{bottom:810.786667pt;}
.y9{bottom:811.106667pt;}
.yc7{bottom:814.946667pt;}
.y112{bottom:819.746667pt;}
.yeb{bottom:822.306667pt;}
.y84{bottom:827.746667pt;}
.y61{bottom:830.946667pt;}
.y8{bottom:836.066667pt;}
.yea{bottom:839.266667pt;}
.yc6{bottom:844.733333pt;}
.y111{bottom:845.053333pt;}
.ya3{bottom:845.693333pt;}
.y35{bottom:852.733333pt;}
.y7{bottom:853.053333pt;}
.ye9{bottom:855.933333pt;}
.y60{bottom:860.733333pt;}
.y110{bottom:862.013333pt;}
.y34{bottom:869.693333pt;}
.ya2{bottom:870.333333pt;}
.ye8{bottom:872.893333pt;}
.y6{bottom:877.693333pt;}
.y10f{bottom:878.333333pt;}
.y33{bottom:886.333333pt;}
.ya1{bottom:887.293333pt;}
.ye7{bottom:889.853333pt;}
.y5f{bottom:890.493333pt;}
.y5{bottom:894.653333pt;}
.y32{bottom:903.293333pt;}
.y4{bottom:911.613333pt;}
.ya0{bottom:912.253333pt;}
.ye6{bottom:915.133333pt;}
.y5e{bottom:915.453333pt;}
.y31{bottom:920.253333pt;}
.y10e{bottom:920.573333pt;}
.y74{bottom:921.853333pt;}
.y3{bottom:928.253333pt;}
.y9f{bottom:929.213333pt;}
.y5d{bottom:932.093333pt;}
.y30{bottom:937.213333pt;}
.y2{bottom:945.213333pt;}
.y5c{bottom:949.053333pt;}
.y2f{bottom:953.853333pt;}
.ye5{bottom:957.093333pt;}
.y73{bottom:961.893333pt;}
.y1{bottom:970.853333pt;}
.y5b{bottom:974.053333pt;}
.y2e{bottom:978.853333pt;}
.y10d{bottom:979.173333pt;}
.y5a{bottom:991.013333pt;}
.y2d{bottom:995.813333pt;}
.h4{height:52.785000pt;}
.h5{height:56.070000pt;}
.h3{height:61.410000pt;}
.h2{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.432000pt;}
.x6{left:104.352000pt;}
.x3{left:118.432000pt;}
.xb{left:122.944000pt;}
.x2{left:141.506667pt;}
.x4{left:142.466667pt;}
.xc{left:146.946667pt;}
.x9{left:149.186667pt;}
.x5{left:165.506667pt;}
.x7{left:277.533333pt;}
.xa{left:633.853333pt;}
.x8{left:698.813333pt;}
}




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