
    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_c2ede0438b8b679b9b5c7b4c.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_2b8ca519a103383ed3980c8d.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_63c537c0a3bdaaae6ecbac03.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1d61ea844fbeefa45f39e248.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a21f8dbc201f5507687fbee8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_76024b031efdb582c82f231b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_118390452629cecdb513e9c8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:103.536000px;}
.ls4{letter-spacing:-4.752000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.026460px;}
.ls1{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.216000px;}
.lse{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.288000px;}
.ls6{letter-spacing:29.628000px;}
.lsd{letter-spacing:44.417040px;}
.ls5{letter-spacing:97.560000px;}
.ls8{letter-spacing:97.641600px;}
.ls7{letter-spacing:97.692000px;}
.ls9{letter-spacing:111.549600px;}
.lsb{letter-spacing:119.997600px;}
.lsc{letter-spacing:120.048000px;}
.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;}
}
.wse{word-spacing:-46.637280px;}
.ws6{word-spacing:-40.072032px;}
.ws4{word-spacing:-40.032000px;}
.ws8{word-spacing:-33.466752px;}
.wsf{word-spacing:-33.426720px;}
.ws2{word-spacing:-30.064032px;}
.ws3{word-spacing:-30.024000px;}
.ws1d{word-spacing:-26.621280px;}
.ws0{word-spacing:-8.502480px;}
.wsd{word-spacing:-2.547360px;}
.ws1a{word-spacing:-2.241840px;}
.ws15{word-spacing:-1.934880px;}
.ws12{word-spacing:-1.787040px;}
.ws7{word-spacing:-1.773408px;}
.ws1c{word-spacing:-1.740240px;}
.wsa{word-spacing:-1.740000px;}
.ws9{word-spacing:-1.628400px;}
.ws18{word-spacing:-1.548000px;}
.ws19{word-spacing:-1.504224px;}
.ws1b{word-spacing:-1.460160px;}
.ws5{word-spacing:-1.344480px;}
.ws14{word-spacing:-1.135200px;}
.wsb{word-spacing:-0.827760px;}
.ws10{word-spacing:-0.312480px;}
.wsc{word-spacing:-0.300000px;}
.ws13{word-spacing:-0.024000px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.429600px;}
.ws16{word-spacing:0.468000px;}
.ws17{word-spacing:1.162080px;}
._0{margin-left:-13.426560px;}
._6{margin-left:-6.596784px;}
._7{margin-left:-5.516784px;}
._5{margin-left:-3.297360px;}
._4{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._1{width:1.342080px;}
._3{width:2.592000px;}
._c{width:3.848448px;}
._9{width:28.910796px;}
._d{width:41.199120px;}
._a{width:111.600000px;}
._b{width:1196.388624px;}
._8{width:1236.708624px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fs8{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fs5{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs1{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs0{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y17{bottom:41.472000px;}
.y16{bottom:67.356000px;}
.y15{bottom:136.008000px;}
.y31{bottom:136.548000px;}
.y99{bottom:149.256000px;}
.y8{bottom:164.805000px;}
.yd1{bottom:173.190000px;}
.y14{bottom:174.885000px;}
.ydf{bottom:176.295000px;}
.yfb{bottom:177.195000px;}
.y30{bottom:177.765000px;}
.y3a{bottom:183.315000px;}
.y98{bottom:185.295000px;}
.y88{bottom:200.595000px;}
.yd0{bottom:201.990000px;}
.y7{bottom:203.685000px;}
.yfa{bottom:205.995000px;}
.yde{bottom:208.695000px;}
.y2f{bottom:209.985000px;}
.y13{bottom:213.810000px;}
.yf8{bottom:219.705000px;}
.y5f{bottom:220.650000px;}
.yab{bottom:221.910000px;}
.y39{bottom:226.515000px;}
.y97{bottom:228.495000px;}
.yb5{bottom:229.215000px;}
.y4d{bottom:231.015000px;}
.y6e{bottom:233.925000px;}
.y87{bottom:236.625000px;}
.ydd{bottom:241.125000px;}
.y6{bottom:242.565000px;}
.yc4{bottom:246.060000px;}
.y3f{bottom:247.425000px;}
.y25{bottom:248.685000px;}
.yce{bottom:249.015000px;}
.yf7{bottom:252.105000px;}
.y12{bottom:253.410000px;}
.yaa{bottom:260.790000px;}
.yea{bottom:260.970000px;}
.y5e{bottom:263.850000px;}
.y4c{bottom:267.015000px;}
.yb4{bottom:268.095000px;}
.y6d{bottom:272.805000px;}
.y96{bottom:272.955000px;}
.ydc{bottom:273.525000px;}
.y38{bottom:278.355000px;}
.y86{bottom:279.105000px;}
.y5{bottom:281.490000px;}
.ya2{bottom:284.145000px;}
.yf6{bottom:284.550000px;}
.y77{bottom:284.655000px;}
.yc3{bottom:284.970000px;}
.ycd{bottom:285.015000px;}
.ycf{bottom:285.330000px;}
.ye9{bottom:293.400000px;}
.y11{bottom:297.870000px;}
.y24{bottom:299.265000px;}
.ya9{bottom:299.670000px;}
.y54{bottom:303.990000px;}
.ydb{bottom:305.925000px;}
.y5d{bottom:306.360000px;}
.yb3{bottom:306.975000px;}
.y4b{bottom:310.245000px;}
.y6c{bottom:312.450000px;}
.yf5{bottom:316.950000px;}
.y85{bottom:318.705000px;}
.y95{bottom:323.565000px;}
.ya1{bottom:323.745000px;}
.yc2{bottom:323.850000px;}
.ye8{bottom:325.800000px;}
.y76{bottom:327.165000px;}
.ycc{bottom:327.525000px;}
.y37{bottom:330.225000px;}
.y2e{bottom:330.990000px;}
.ya8{bottom:332.070000px;}
.yb9{bottom:335.085000px;}
.yda{bottom:338.325000px;}
.y23{bottom:342.465000px;}
.yf9{bottom:344.625000px;}
.y5c{bottom:345.240000px;}
.yb2{bottom:345.855000px;}
.y10{bottom:348.450000px;}
.y1c{bottom:348.690000px;}
.y4a{bottom:354.705000px;}
.y6b{bottom:355.650000px;}
.yf4{bottom:355.830000px;}
.ye7{bottom:358.200000px;}
.y44{bottom:359.205000px;}
.y75{bottom:359.565000px;}
.yc1{bottom:362.730000px;}
.y65{bottom:366.120000px;}
.ycb{bottom:366.405000px;}
.ya0{bottom:366.945000px;}
.ya7{bottom:370.950000px;}
.y3e{bottom:372.705000px;}
.y36{bottom:373.425000px;}
.y2d{bottom:374.190000px;}
.yd9{bottom:377.205000px;}
.yb8{bottom:378.330000px;}
.y8f{bottom:380.730000px;}
.y5b{bottom:384.120000px;}
.y4{bottom:384.375000px;}
.yf{bottom:384.480000px;}
.y7e{bottom:384.660000px;}
.yb1{bottom:385.485000px;}
.y22{bottom:386.970000px;}
.yf3{bottom:388.230000px;}
.y53{bottom:391.650000px;}
.y1b{bottom:396.210000px;}
.ye6{bottom:397.080000px;}
.y84{bottom:397.230000px;}
.y49{bottom:397.905000px;}
.y6a{bottom:398.130000px;}
.y74{bottom:399.165000px;}
.yc0{bottom:401.610000px;}
.y43{bottom:402.405000px;}
.y94{bottom:404.025000px;}
.yca{bottom:406.005000px;}
.y64{bottom:409.320000px;}
.yd8{bottom:409.650000px;}
.y9f{bottom:410.190000px;}
.ya6{bottom:410.580000px;}
.y3d{bottom:415.230000px;}
.y9b{bottom:416.625000px;}
.y2c{bottom:417.390000px;}
.yf2{bottom:420.630000px;}
.y5a{bottom:423.000000px;}
.y3{bottom:423.255000px;}
.y8e{bottom:423.930000px;}
.y35{bottom:425.265000px;}
.y7d{bottom:427.860000px;}
.yb0{bottom:427.965000px;}
.ye{bottom:428.940000px;}
.ye5{bottom:429.480000px;}
.y83{bottom:429.630000px;}
.y21{bottom:430.170000px;}
.y69{bottom:437.730000px;}
.ybf{bottom:440.535000px;}
.y73{bottom:441.645000px;}
.y52{bottom:442.260000px;}
.y1a{bottom:443.775000px;}
.y42{bottom:445.650000px;}
.y9e{bottom:446.190000px;}
.y93{bottom:447.225000px;}
.y48{bottom:448.530000px;}
.yc9{bottom:449.250000px;}
.y63{bottom:453.810000px;}
.y3c{bottom:454.110000px;}
.ya5{bottom:455.040000px;}
.yf1{bottom:459.540000px;}
.y2b{bottom:460.620000px;}
.y59{bottom:461.910000px;}
.y2{bottom:465.555000px;}
.y8d{bottom:467.130000px;}
.yaf{bottom:467.565000px;}
.ye4{bottom:468.390000px;}
.y82{bottom:468.510000px;}
.y7c{bottom:471.060000px;}
.yb7{bottom:473.370000px;}
.y34{bottom:475.890000px;}
.y51{bottom:478.260000px;}
.yd{bottom:479.520000px;}
.ybe{bottom:480.135000px;}
.y72{bottom:480.570000px;}
.yd7{bottom:480.930000px;}
.y68{bottom:480.960000px;}
.y20{bottom:482.010000px;}
.y41{bottom:488.130000px;}
.y9d{bottom:489.390000px;}
.y92{bottom:490.470000px;}
.y19{bottom:491.295000px;}
.y47{bottom:491.730000px;}
.yf0{bottom:491.940000px;}
.y3b{bottom:492.990000px;}
.y2a{bottom:499.500000px;}
.y58{bottom:500.790000px;}
.y8c{bottom:503.175000px;}
.y62{bottom:504.390000px;}
.ya4{bottom:505.620000px;}
.y81{bottom:507.390000px;}
.yae{bottom:510.045000px;}
.yd6{bottom:513.330000px;}
.y7b{bottom:513.540000px;}
.yc{bottom:515.520000px;}
.y71{bottom:519.450000px;}
.y33{bottom:520.350000px;}
.y50{bottom:521.460000px;}
.ybd{bottom:523.335000px;}
.y67{bottom:524.160000px;}
.yef{bottom:524.340000px;}
.yb6{bottom:525.210000px;}
.y40{bottom:527.730000px;}
.yc8{bottom:531.330000px;}
.y1f{bottom:532.590000px;}
.ye3{bottom:533.190000px;}
.y9c{bottom:533.850000px;}
.y29{bottom:535.140000px;}
.y18{bottom:538.815000px;}
.y57{bottom:540.390000px;}
.y91{bottom:541.050000px;}
.y8b{bottom:546.375000px;}
.y80{bottom:547.020000px;}
.y61{bottom:547.590000px;}
.ya3{bottom:548.850000px;}
.yad{bottom:549.690000px;}
.yd5{bottom:552.240000px;}
.y7a{bottom:552.450000px;}
.yee{bottom:556.740000px;}
.y4f{bottom:557.460000px;}
.y70{bottom:559.050000px;}
.yb{bottom:560.010000px;}
.y28{bottom:564.300000px;}
.ybc{bottom:566.535000px;}
.y66{bottom:568.620000px;}
.ye2{bottom:572.070000px;}
.y32{bottom:572.190000px;}
.yc7{bottom:574.530000px;}
.y1e{bottom:577.080000px;}
.y8a{bottom:582.375000px;}
.y7f{bottom:583.020000px;}
.y60{bottom:583.590000px;}
.y56{bottom:584.850000px;}
.y90{bottom:585.510000px;}
.yed{bottom:589.140000px;}
.yd4{bottom:591.120000px;}
.y79{bottom:592.050000px;}
.yac{bottom:594.150000px;}
.y27{bottom:600.690000px;}
.y4e{bottom:601.950000px;}
.y1{bottom:602.205000px;}
.y6f{bottom:603.510000px;}
.ye1{bottom:604.515000px;}
.ybb{bottom:611.025000px;}
.yc6{bottom:619.020000px;}
.yec{bottom:621.570000px;}
.y89{bottom:625.575000px;}
.y55{bottom:628.095000px;}
.yd3{bottom:630.000000px;}
.y78{bottom:636.510000px;}
.ye0{bottom:636.915000px;}
.y26{bottom:645.150000px;}
.yeb{bottom:653.970000px;}
.y46{bottom:658.950000px;}
.yc5{bottom:662.220000px;}
.yd2{bottom:662.400000px;}
.ya{bottom:673.950000px;}
.y1d{bottom:684.150000px;}
.y9a{bottom:707.790000px;}
.y45{bottom:709.350000px;}
.y9{bottom:724.350000px;}
.yba{bottom:724.860000px;}
.h9{height:75.093750px;}
.ha{height:87.538008px;}
.hc{height:87.642844px;}
.hb{height:87.859687px;}
.he{height:96.820312px;}
.h12{height:99.874688px;}
.h13{height:100.024875px;}
.hf{height:107.793281px;}
.h3{height:112.640625px;}
.h8{height:112.790813px;}
.h5{height:125.406562px;}
.h7{height:125.556750px;}
.h6{height:150.187500px;}
.h4{height:150.337688px;}
.h10{height:150.394219px;}
.h2{height:174.968437px;}
.h11{height:175.118625px;}
.hd{height:178.629750px;}
.h1{height:250.062187px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x12{left:91.619984px;}
.xb{left:93.311984px;}
.x10{left:100.079984px;}
.x15{left:124.703984px;}
.x14{left:132.119984px;}
.x1a{left:133.811984px;}
.x13{left:145.655984px;}
.xc{left:147.311984px;}
.x22{left:156.389984px;}
.x23{left:179.489984px;}
.x1{left:182.009984px;}
.x11{left:189.179984px;}
.x1e{left:190.259984px;}
.x28{left:194.684984px;}
.xd{left:201.344984px;}
.x25{left:205.529984px;}
.x29{left:207.464984px;}
.x1d{left:211.499984px;}
.x6{left:215.429984px;}
.x16{left:228.344984px;}
.x1b{left:233.639984px;}
.x27{left:255.344984px;}
.xa{left:261.284984px;}
.x26{left:262.364984px;}
.x24{left:267.659984px;}
.x9{left:278.744984px;}
.x4{left:307.649984px;}
.x1c{left:309.884984px;}
.x3{left:314.489984px;}
.x2a{left:318.029984px;}
.x2{left:361.154984px;}
.x5{left:363.779984px;}
.x8{left:365.399984px;}
.xf{left:389.234984px;}
.x7{left:393.839984px;}
.x2b{left:415.724984px;}
.x1f{left:438.149984px;}
.x17{left:444.569984px;}
.x19{left:478.049984px;}
.x2d{left:639.284984px;}
.x18{left:723.059984px;}
.x2c{left:752.324984px;}
.x20{left:980.564984px;}
.x21{left:981.824984px;}
.xe{left:990.644984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:92.032000pt;}
.ls4{letter-spacing:-4.224000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.023520pt;}
.ls1{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls6{letter-spacing:26.336000pt;}
.lsd{letter-spacing:39.481813pt;}
.ls5{letter-spacing:86.720000pt;}
.ls8{letter-spacing:86.792533pt;}
.ls7{letter-spacing:86.837333pt;}
.ls9{letter-spacing:99.155200pt;}
.lsb{letter-spacing:106.664533pt;}
.lsc{letter-spacing:106.709333pt;}
.wse{word-spacing:-41.455360pt;}
.ws6{word-spacing:-35.619584pt;}
.ws4{word-spacing:-35.584000pt;}
.ws8{word-spacing:-29.748224pt;}
.wsf{word-spacing:-29.712640pt;}
.ws2{word-spacing:-26.723584pt;}
.ws3{word-spacing:-26.688000pt;}
.ws1d{word-spacing:-23.663360pt;}
.ws0{word-spacing:-7.557760pt;}
.wsd{word-spacing:-2.264320pt;}
.ws1a{word-spacing:-1.992747pt;}
.ws15{word-spacing:-1.719893pt;}
.ws12{word-spacing:-1.588480pt;}
.ws7{word-spacing:-1.576363pt;}
.ws1c{word-spacing:-1.546880pt;}
.wsa{word-spacing:-1.546667pt;}
.ws9{word-spacing:-1.447467pt;}
.ws18{word-spacing:-1.376000pt;}
.ws19{word-spacing:-1.337088pt;}
.ws1b{word-spacing:-1.297920pt;}
.ws5{word-spacing:-1.195093pt;}
.ws14{word-spacing:-1.009067pt;}
.wsb{word-spacing:-0.735787pt;}
.ws10{word-spacing:-0.277760pt;}
.wsc{word-spacing:-0.266667pt;}
.ws13{word-spacing:-0.021333pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.381867pt;}
.ws16{word-spacing:0.416000pt;}
.ws17{word-spacing:1.032960pt;}
._0{margin-left:-11.934720pt;}
._6{margin-left:-5.863808pt;}
._7{margin-left:-4.903808pt;}
._5{margin-left:-2.930987pt;}
._4{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._1{width:1.192960pt;}
._3{width:2.304000pt;}
._c{width:3.420843pt;}
._9{width:25.698485pt;}
._d{width:36.621440pt;}
._a{width:99.200000pt;}
._b{width:1063.456555pt;}
._8{width:1099.296555pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fs5{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs1{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs0{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:36.864000pt;}
.y16{bottom:59.872000pt;}
.y15{bottom:120.896000pt;}
.y31{bottom:121.376000pt;}
.y99{bottom:132.672000pt;}
.y8{bottom:146.493333pt;}
.yd1{bottom:153.946667pt;}
.y14{bottom:155.453333pt;}
.ydf{bottom:156.706667pt;}
.yfb{bottom:157.506667pt;}
.y30{bottom:158.013333pt;}
.y3a{bottom:162.946667pt;}
.y98{bottom:164.706667pt;}
.y88{bottom:178.306667pt;}
.yd0{bottom:179.546667pt;}
.y7{bottom:181.053333pt;}
.yfa{bottom:183.106667pt;}
.yde{bottom:185.506667pt;}
.y2f{bottom:186.653333pt;}
.y13{bottom:190.053333pt;}
.yf8{bottom:195.293333pt;}
.y5f{bottom:196.133333pt;}
.yab{bottom:197.253333pt;}
.y39{bottom:201.346667pt;}
.y97{bottom:203.106667pt;}
.yb5{bottom:203.746667pt;}
.y4d{bottom:205.346667pt;}
.y6e{bottom:207.933333pt;}
.y87{bottom:210.333333pt;}
.ydd{bottom:214.333333pt;}
.y6{bottom:215.613333pt;}
.yc4{bottom:218.720000pt;}
.y3f{bottom:219.933333pt;}
.y25{bottom:221.053333pt;}
.yce{bottom:221.346667pt;}
.yf7{bottom:224.093333pt;}
.y12{bottom:225.253333pt;}
.yaa{bottom:231.813333pt;}
.yea{bottom:231.973333pt;}
.y5e{bottom:234.533333pt;}
.y4c{bottom:237.346667pt;}
.yb4{bottom:238.306667pt;}
.y6d{bottom:242.493333pt;}
.y96{bottom:242.626667pt;}
.ydc{bottom:243.133333pt;}
.y38{bottom:247.426667pt;}
.y86{bottom:248.093333pt;}
.y5{bottom:250.213333pt;}
.ya2{bottom:252.573333pt;}
.yf6{bottom:252.933333pt;}
.y77{bottom:253.026667pt;}
.yc3{bottom:253.306667pt;}
.ycd{bottom:253.346667pt;}
.ycf{bottom:253.626667pt;}
.ye9{bottom:260.800000pt;}
.y11{bottom:264.773333pt;}
.y24{bottom:266.013333pt;}
.ya9{bottom:266.373333pt;}
.y54{bottom:270.213333pt;}
.ydb{bottom:271.933333pt;}
.y5d{bottom:272.320000pt;}
.yb3{bottom:272.866667pt;}
.y4b{bottom:275.773333pt;}
.y6c{bottom:277.733333pt;}
.yf5{bottom:281.733333pt;}
.y85{bottom:283.293333pt;}
.y95{bottom:287.613333pt;}
.ya1{bottom:287.773333pt;}
.yc2{bottom:287.866667pt;}
.ye8{bottom:289.600000pt;}
.y76{bottom:290.813333pt;}
.ycc{bottom:291.133333pt;}
.y37{bottom:293.533333pt;}
.y2e{bottom:294.213333pt;}
.ya8{bottom:295.173333pt;}
.yb9{bottom:297.853333pt;}
.yda{bottom:300.733333pt;}
.y23{bottom:304.413333pt;}
.yf9{bottom:306.333333pt;}
.y5c{bottom:306.880000pt;}
.yb2{bottom:307.426667pt;}
.y10{bottom:309.733333pt;}
.y1c{bottom:309.946667pt;}
.y4a{bottom:315.293333pt;}
.y6b{bottom:316.133333pt;}
.yf4{bottom:316.293333pt;}
.ye7{bottom:318.400000pt;}
.y44{bottom:319.293333pt;}
.y75{bottom:319.613333pt;}
.yc1{bottom:322.426667pt;}
.y65{bottom:325.440000pt;}
.ycb{bottom:325.693333pt;}
.ya0{bottom:326.173333pt;}
.ya7{bottom:329.733333pt;}
.y3e{bottom:331.293333pt;}
.y36{bottom:331.933333pt;}
.y2d{bottom:332.613333pt;}
.yd9{bottom:335.293333pt;}
.yb8{bottom:336.293333pt;}
.y8f{bottom:338.426667pt;}
.y5b{bottom:341.440000pt;}
.y4{bottom:341.666667pt;}
.yf{bottom:341.760000pt;}
.y7e{bottom:341.920000pt;}
.yb1{bottom:342.653333pt;}
.y22{bottom:343.973333pt;}
.yf3{bottom:345.093333pt;}
.y53{bottom:348.133333pt;}
.y1b{bottom:352.186667pt;}
.ye6{bottom:352.960000pt;}
.y84{bottom:353.093333pt;}
.y49{bottom:353.693333pt;}
.y6a{bottom:353.893333pt;}
.y74{bottom:354.813333pt;}
.yc0{bottom:356.986667pt;}
.y43{bottom:357.693333pt;}
.y94{bottom:359.133333pt;}
.yca{bottom:360.893333pt;}
.y64{bottom:363.840000pt;}
.yd8{bottom:364.133333pt;}
.y9f{bottom:364.613333pt;}
.ya6{bottom:364.960000pt;}
.y3d{bottom:369.093333pt;}
.y9b{bottom:370.333333pt;}
.y2c{bottom:371.013333pt;}
.yf2{bottom:373.893333pt;}
.y5a{bottom:376.000000pt;}
.y3{bottom:376.226667pt;}
.y8e{bottom:376.826667pt;}
.y35{bottom:378.013333pt;}
.y7d{bottom:380.320000pt;}
.yb0{bottom:380.413333pt;}
.ye{bottom:381.280000pt;}
.ye5{bottom:381.760000pt;}
.y83{bottom:381.893333pt;}
.y21{bottom:382.373333pt;}
.y69{bottom:389.093333pt;}
.ybf{bottom:391.586667pt;}
.y73{bottom:392.573333pt;}
.y52{bottom:393.120000pt;}
.y1a{bottom:394.466667pt;}
.y42{bottom:396.133333pt;}
.y9e{bottom:396.613333pt;}
.y93{bottom:397.533333pt;}
.y48{bottom:398.693333pt;}
.yc9{bottom:399.333333pt;}
.y63{bottom:403.386667pt;}
.y3c{bottom:403.653333pt;}
.ya5{bottom:404.480000pt;}
.yf1{bottom:408.480000pt;}
.y2b{bottom:409.440000pt;}
.y59{bottom:410.586667pt;}
.y2{bottom:413.826667pt;}
.y8d{bottom:415.226667pt;}
.yaf{bottom:415.613333pt;}
.ye4{bottom:416.346667pt;}
.y82{bottom:416.453333pt;}
.y7c{bottom:418.720000pt;}
.yb7{bottom:420.773333pt;}
.y34{bottom:423.013333pt;}
.y51{bottom:425.120000pt;}
.yd{bottom:426.240000pt;}
.ybe{bottom:426.786667pt;}
.y72{bottom:427.173333pt;}
.yd7{bottom:427.493333pt;}
.y68{bottom:427.520000pt;}
.y20{bottom:428.453333pt;}
.y41{bottom:433.893333pt;}
.y9d{bottom:435.013333pt;}
.y92{bottom:435.973333pt;}
.y19{bottom:436.706667pt;}
.y47{bottom:437.093333pt;}
.yf0{bottom:437.280000pt;}
.y3b{bottom:438.213333pt;}
.y2a{bottom:444.000000pt;}
.y58{bottom:445.146667pt;}
.y8c{bottom:447.266667pt;}
.y62{bottom:448.346667pt;}
.ya4{bottom:449.440000pt;}
.y81{bottom:451.013333pt;}
.yae{bottom:453.373333pt;}
.yd6{bottom:456.293333pt;}
.y7b{bottom:456.480000pt;}
.yc{bottom:458.240000pt;}
.y71{bottom:461.733333pt;}
.y33{bottom:462.533333pt;}
.y50{bottom:463.520000pt;}
.ybd{bottom:465.186667pt;}
.y67{bottom:465.920000pt;}
.yef{bottom:466.080000pt;}
.yb6{bottom:466.853333pt;}
.y40{bottom:469.093333pt;}
.yc8{bottom:472.293333pt;}
.y1f{bottom:473.413333pt;}
.ye3{bottom:473.946667pt;}
.y9c{bottom:474.533333pt;}
.y29{bottom:475.680000pt;}
.y18{bottom:478.946667pt;}
.y57{bottom:480.346667pt;}
.y91{bottom:480.933333pt;}
.y8b{bottom:485.666667pt;}
.y80{bottom:486.240000pt;}
.y61{bottom:486.746667pt;}
.ya3{bottom:487.866667pt;}
.yad{bottom:488.613333pt;}
.yd5{bottom:490.880000pt;}
.y7a{bottom:491.066667pt;}
.yee{bottom:494.880000pt;}
.y4f{bottom:495.520000pt;}
.y70{bottom:496.933333pt;}
.yb{bottom:497.786667pt;}
.y28{bottom:501.600000pt;}
.ybc{bottom:503.586667pt;}
.y66{bottom:505.440000pt;}
.ye2{bottom:508.506667pt;}
.y32{bottom:508.613333pt;}
.yc7{bottom:510.693333pt;}
.y1e{bottom:512.960000pt;}
.y8a{bottom:517.666667pt;}
.y7f{bottom:518.240000pt;}
.y60{bottom:518.746667pt;}
.y56{bottom:519.866667pt;}
.y90{bottom:520.453333pt;}
.yed{bottom:523.680000pt;}
.yd4{bottom:525.440000pt;}
.y79{bottom:526.266667pt;}
.yac{bottom:528.133333pt;}
.y27{bottom:533.946667pt;}
.y4e{bottom:535.066667pt;}
.y1{bottom:535.293333pt;}
.y6f{bottom:536.453333pt;}
.ye1{bottom:537.346667pt;}
.ybb{bottom:543.133333pt;}
.yc6{bottom:550.240000pt;}
.yec{bottom:552.506667pt;}
.y89{bottom:556.066667pt;}
.y55{bottom:558.306667pt;}
.yd3{bottom:560.000000pt;}
.y78{bottom:565.786667pt;}
.ye0{bottom:566.146667pt;}
.y26{bottom:573.466667pt;}
.yeb{bottom:581.306667pt;}
.y46{bottom:585.733333pt;}
.yc5{bottom:588.640000pt;}
.yd2{bottom:588.800000pt;}
.ya{bottom:599.066667pt;}
.y1d{bottom:608.133333pt;}
.y9a{bottom:629.146667pt;}
.y45{bottom:630.533333pt;}
.y9{bottom:643.866667pt;}
.yba{bottom:644.320000pt;}
.h9{height:66.750000pt;}
.ha{height:77.811562pt;}
.hc{height:77.904750pt;}
.hb{height:78.097500pt;}
.he{height:86.062500pt;}
.h12{height:88.777500pt;}
.h13{height:88.911000pt;}
.hf{height:95.816250pt;}
.h3{height:100.125000pt;}
.h8{height:100.258500pt;}
.h5{height:111.472500pt;}
.h7{height:111.606000pt;}
.h6{height:133.500000pt;}
.h4{height:133.633500pt;}
.h10{height:133.683750pt;}
.h2{height:155.527500pt;}
.h11{height:155.661000pt;}
.hd{height:158.782000pt;}
.h1{height:222.277500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x12{left:81.439986pt;}
.xb{left:82.943986pt;}
.x10{left:88.959986pt;}
.x15{left:110.847986pt;}
.x14{left:117.439986pt;}
.x1a{left:118.943986pt;}
.x13{left:129.471986pt;}
.xc{left:130.943986pt;}
.x22{left:139.013319pt;}
.x23{left:159.546652pt;}
.x1{left:161.786652pt;}
.x11{left:168.159986pt;}
.x1e{left:169.119986pt;}
.x28{left:173.053319pt;}
.xd{left:178.973319pt;}
.x25{left:182.693319pt;}
.x29{left:184.413319pt;}
.x1d{left:187.999986pt;}
.x6{left:191.493319pt;}
.x16{left:202.973319pt;}
.x1b{left:207.679986pt;}
.x27{left:226.973319pt;}
.xa{left:232.253319pt;}
.x26{left:233.213319pt;}
.x24{left:237.919986pt;}
.x9{left:247.773319pt;}
.x4{left:273.466652pt;}
.x1c{left:275.453319pt;}
.x3{left:279.546652pt;}
.x2a{left:282.693319pt;}
.x2{left:321.026652pt;}
.x5{left:323.359986pt;}
.x8{left:324.799986pt;}
.xf{left:345.986652pt;}
.x7{left:350.079986pt;}
.x2b{left:369.533319pt;}
.x1f{left:389.466652pt;}
.x17{left:395.173319pt;}
.x19{left:424.933319pt;}
.x2d{left:568.253319pt;}
.x18{left:642.719986pt;}
.x2c{left:668.733319pt;}
.x20{left:871.613319pt;}
.x21{left:872.733319pt;}
.xe{left:880.573319pt;}
}




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