
    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_efad073ab5cb48a9f0550504.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_a335bac65df3dfdafcd57830.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955078;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_ef998cb401e57e53dbfc5532.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_cebd17cef41d62084d895977.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_53e5eb8f43fa182bed38e450.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5930bd824301a4edaf094636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.450600px;}
.ls3{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.269400px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls19{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls13{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.lsd{letter-spacing:3.060000px;}
.lsc{letter-spacing:5.940000px;}
.ls12{letter-spacing:16.865280px;}
.ls18{letter-spacing:34.841280px;}
.ls17{letter-spacing:38.441280px;}
.ls7{letter-spacing:85.860000px;}
.ls14{letter-spacing:199.416000px;}
.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:-19.440000px;}
.wsc{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.283800px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.790600px;}
.ws0{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-4.750080px;}
._d{margin-left:-3.740880px;}
._e{margin-left:-2.474160px;}
._0{margin-left:-1.254240px;}
._2{width:1.290720px;}
._21{width:2.291760px;}
._c{width:3.294480px;}
._a{width:4.389360px;}
._b{width:5.796720px;}
._9{width:7.314720px;}
._f{width:8.748960px;}
._3{width:10.242960px;}
._4{width:11.946000px;}
._5{width:13.206960px;}
._18{width:14.216400px;}
._17{width:15.408720px;}
._6{width:16.637280px;}
._1c{width:17.641920px;}
._7{width:18.644400px;}
._8{width:19.661760px;}
._1d{width:20.799360px;}
._16{width:21.815040px;}
._11{width:23.250240px;}
._12{width:24.273600px;}
._13{width:25.498080px;}
._1e{width:27.445440px;}
._1f{width:28.495200px;}
._22{width:29.874240px;}
._23{width:36.763200px;}
._24{width:37.934880px;}
._15{width:39.549600px;}
._14{width:40.600800px;}
._20{width:46.036800px;}
._1a{width:84.640080px;}
._19{width:85.915440px;}
._10{width:106.980960px;}
._25{width:199.416000px;}
._1{width:1118.848800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y5{bottom:62.100000px;}
.y3b{bottom:110.376000px;}
.ye3{bottom:114.156000px;}
.yda{bottom:114.876000px;}
.yb4{bottom:117.756000px;}
.y3a{bottom:124.236000px;}
.yf4{bottom:125.136000px;}
.yd9{bottom:125.676000px;}
.y39{bottom:128.736000px;}
.ye2{bottom:135.936000px;}
.y70{bottom:137.916000px;}
.y38{bottom:139.356000px;}
.yb3{bottom:139.536000px;}
.y86{bottom:142.416000px;}
.yf3{bottom:146.916000px;}
.y9e{bottom:150.510000px;}
.y6f{bottom:151.770000px;}
.y6e{bottom:156.270000px;}
.ye1{bottom:157.710000px;}
.yb2{bottom:161.310000px;}
.y6d{bottom:165.630000px;}
.yf2{bottom:168.690000px;}
.y85{bottom:170.130000px;}
.y9d{bottom:172.290000px;}
.y37{bottom:178.230000px;}
.y6c{bottom:179.310000px;}
.ye0{bottom:179.490000px;}
.yb1{bottom:183.090000px;}
.y6b{bottom:183.810000px;}
.yd8{bottom:190.650000px;}
.y6a{bottom:193.170000px;}
.y9c{bottom:194.250000px;}
.y84{bottom:194.610000px;}
.y36{bottom:200.010000px;}
.ydf{bottom:201.450000px;}
.yb0{bottom:205.050000px;}
.y69{bottom:207.030000px;}
.y68{bottom:211.530000px;}
.yd7{bottom:212.430000px;}
.y9b{bottom:216.030000px;}
.y35{bottom:221.790000px;}
.y67{bottom:222.150000px;}
.yde{bottom:223.230000px;}
.y83{bottom:226.830000px;}
.yd6{bottom:234.210000px;}
.y9a{bottom:237.810000px;}
.y33{bottom:243.570000px;}
.ydd{bottom:245.010000px;}
.y82{bottom:248.610000px;}
.y34{bottom:249.510000px;}
.yd5{bottom:255.990000px;}
.y99{bottom:259.590000px;}
.y32{bottom:265.350000px;}
.ydc{bottom:266.790000px;}
.y80{bottom:270.390000px;}
.y81{bottom:276.330000px;}
.yd4{bottom:277.950000px;}
.y98{bottom:281.550000px;}
.y31{bottom:287.310000px;}
.y66{bottom:288.750000px;}
.y7f{bottom:292.350000px;}
.yf1{bottom:299.730000px;}
.y97{bottom:303.330000px;}
.y30{bottom:309.090000px;}
.y65{bottom:310.530000px;}
.y7e{bottom:314.130000px;}
.yf0{bottom:321.510000px;}
.y96{bottom:325.110000px;}
.y2f{bottom:330.870000px;}
.y64{bottom:332.310000px;}
.y7d{bottom:335.910000px;}
.yef{bottom:343.335000px;}
.y95{bottom:346.935000px;}
.yd3{bottom:350.535000px;}
.y2e{bottom:352.695000px;}
.y63{bottom:354.135000px;}
.y7b{bottom:357.735000px;}
.y7c{bottom:363.675000px;}
.y94{bottom:368.715000px;}
.yd2{bottom:372.315000px;}
.y2d{bottom:374.655000px;}
.y62{bottom:375.915000px;}
.y7a{bottom:379.515000px;}
.y93{bottom:394.275000px;}
.y61{bottom:397.875000px;}
.y2c{bottom:400.035000px;}
.y79{bottom:401.475000px;}
.yaf{bottom:405.075000px;}
.y92{bottom:416.055000px;}
.y60{bottom:419.655000px;}
.y78{bottom:423.255000px;}
.y2b{bottom:425.415000px;}
.yae{bottom:426.855000px;}
.yd1{bottom:437.835000px;}
.y91{bottom:441.435000px;}
.y5f{bottom:445.035000px;}
.yad{bottom:448.635000px;}
.y2a{bottom:448.995000px;}
.yd0{bottom:459.615000px;}
.y29{bottom:464.835000px;}
.y5e{bottom:466.815000px;}
.yac{bottom:470.415000px;}
.y28{bottom:479.415000px;}
.ycf{bottom:481.395000px;}
.yee{bottom:484.995000px;}
.y5d{bottom:488.595000px;}
.y90{bottom:492.195000px;}
.y77{bottom:494.535000px;}
.y27{bottom:500.295000px;}
.yce{bottom:503.355000px;}
.yed{bottom:506.955000px;}
.y5c{bottom:510.555000px;}
.y8f{bottom:514.155000px;}
.y26{bottom:521.175000px;}
.ycd{bottom:525.135000px;}
.yec{bottom:528.735000px;}
.y5b{bottom:532.335000px;}
.y8e{bottom:535.935000px;}
.y25{bottom:538.455000px;}
.ycb{bottom:550.515000px;}
.y5a{bottom:554.115000px;}
.y24{bottom:555.735000px;}
.ycc{bottom:556.455000px;}
.y8d{bottom:557.715000px;}
.yca{bottom:572.295000px;}
.y23{bottom:572.835000px;}
.y59{bottom:575.895000px;}
.y76{bottom:579.495000px;}
.y102{bottom:583.095000px;}
.y22{bottom:590.115000px;}
.yc9{bottom:594.255000px;}
.y58{bottom:597.855000px;}
.y75{bottom:601.455000px;}
.y21{bottom:607.425000px;}
.y101{bottom:608.685000px;}
.yc8{bottom:616.065000px;}
.y56{bottom:619.665000px;}
.y74{bottom:623.265000px;}
.y20{bottom:624.705000px;}
.y57{bottom:625.605000px;}
.y100{bottom:630.465000px;}
.yc7{bottom:637.845000px;}
.y55{bottom:641.445000px;}
.y1f{bottom:641.985000px;}
.y73{bottom:645.045000px;}
.yff{bottom:652.245000px;}
.yc6{bottom:659.625000px;}
.y1e{bottom:662.865000px;}
.y54{bottom:663.225000px;}
.y72{bottom:666.825000px;}
.yab{bottom:670.425000px;}
.yfe{bottom:674.025000px;}
.yc5{bottom:681.405000px;}
.y1d{bottom:683.565000px;}
.y53{bottom:685.005000px;}
.y71{bottom:688.605000px;}
.yaa{bottom:692.205000px;}
.yfd{bottom:695.805000px;}
.yeb{bottom:703.365000px;}
.y1c{bottom:704.445000px;}
.yc4{bottom:706.965000px;}
.y52{bottom:710.565000px;}
.ya9{bottom:714.165000px;}
.yfc{bottom:717.765000px;}
.y1b{bottom:721.725000px;}
.yea{bottom:725.145000px;}
.yc3{bottom:728.745000px;}
.y51{bottom:732.345000px;}
.ya8{bottom:735.945000px;}
.y1a{bottom:739.005000px;}
.yfb{bottom:739.545000px;}
.ye9{bottom:746.925000px;}
.yc2{bottom:750.525000px;}
.y50{bottom:754.125000px;}
.y19{bottom:756.285000px;}
.y8c{bottom:757.725000px;}
.yfa{bottom:761.325000px;}
.ye8{bottom:768.705000px;}
.yc1{bottom:772.305000px;}
.y18{bottom:773.565000px;}
.y4f{bottom:775.905000px;}
.y8b{bottom:779.505000px;}
.yf9{bottom:783.105000px;}
.y17{bottom:790.665000px;}
.yc0{bottom:794.265000px;}
.y4e{bottom:797.865000px;}
.y8a{bottom:801.465000px;}
.yf8{bottom:805.065000px;}
.y16{bottom:807.945000px;}
.ye7{bottom:812.445000px;}
.ybf{bottom:816.045000px;}
.y4d{bottom:819.645000px;}
.y89{bottom:823.245000px;}
.y15{bottom:825.225000px;}
.yf7{bottom:826.845000px;}
.ye6{bottom:834.225000px;}
.ye5{bottom:837.825000px;}
.y4c{bottom:841.425000px;}
.y88{bottom:845.025000px;}
.y14{bottom:846.105000px;}
.yf6{bottom:848.625000px;}
.ye4{bottom:859.605000px;}
.ybe{bottom:863.205000px;}
.y4b{bottom:866.805000px;}
.y13{bottom:867.345000px;}
.yf5{bottom:870.405000px;}
.ybd{bottom:885.030000px;}
.y49{bottom:888.630000px;}
.ydb{bottom:892.230000px;}
.y4a{bottom:894.570000px;}
.y12{bottom:894.750000px;}
.ybc{bottom:906.990000px;}
.y47{bottom:910.590000px;}
.ya7{bottom:914.190000px;}
.y11{bottom:915.630000px;}
.y48{bottom:916.530000px;}
.ybb{bottom:928.770000px;}
.y10{bottom:931.650000px;}
.y46{bottom:932.370000px;}
.ya6{bottom:935.970000px;}
.yba{bottom:950.550000px;}
.y45{bottom:954.150000px;}
.yf{bottom:954.330000px;}
.ya5{bottom:957.750000px;}
.yb9{bottom:972.330000px;}
.y44{bottom:975.930000px;}
.ye{bottom:976.830000px;}
.ya4{bottom:979.530000px;}
.yb8{bottom:994.290000px;}
.y42{bottom:997.890000px;}
.yd{bottom:999.870000px;}
.ya3{bottom:1001.490000px;}
.y43{bottom:1003.830000px;}
.yb7{bottom:1016.070000px;}
.y41{bottom:1019.670000px;}
.yc{bottom:1022.370000px;}
.ya2{bottom:1023.270000px;}
.yb6{bottom:1037.850000px;}
.y40{bottom:1041.450000px;}
.ya1{bottom:1045.050000px;}
.yb{bottom:1046.670000px;}
.yb5{bottom:1059.630000px;}
.y3f{bottom:1063.230000px;}
.ya{bottom:1064.850000px;}
.ya0{bottom:1066.830000px;}
.y9{bottom:1082.130000px;}
.y3e{bottom:1085.010000px;}
.y9f{bottom:1088.610000px;}
.y8{bottom:1099.230000px;}
.y87{bottom:1106.970000px;}
.y3d{bottom:1110.570000px;}
.y7{bottom:1116.510000px;}
.y3c{bottom:1132.350000px;}
.y6{bottom:1133.790000px;}
.y4{bottom:1151.820000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1193.220000px;}
.h3{height:20.700000px;}
.h14{height:21.114844px;}
.hc{height:27.147656px;}
.h13{height:29.158594px;}
.h15{height:33.683203px;}
.h7{height:34.036523px;}
.h11{height:34.837383px;}
.h5{height:39.760312px;}
.he{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:43.156758px;}
.hd{height:46.251562px;}
.h12{height:46.736719px;}
.h16{height:48.224531px;}
.h10{height:49.255313px;}
.h2{height:50.273438px;}
.h4{height:51.996094px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h8{height:56.155781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.200000px;}
.w4{width:619.485000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.035987px;}
.x11{left:111.815987px;}
.x5{left:117.035987px;}
.x1f{left:129.275987px;}
.x22{left:135.035987px;}
.x23{left:140.075987px;}
.x1e{left:148.535987px;}
.xd{left:150.509987px;}
.x7{left:156.089987px;}
.x21{left:161.129987px;}
.x3{left:169.230000px;}
.xa{left:218.729987px;}
.x8{left:222.329987px;}
.x9{left:294.554987px;}
.x10{left:324.074987px;}
.x6{left:347.474987px;}
.x1c{left:382.214973px;}
.x1a{left:383.654973px;}
.x1d{left:387.434987px;}
.x1b{left:388.874987px;}
.x16{left:400.034973px;}
.x17{left:405.254987px;}
.xc{left:418.934987px;}
.xb{left:420.194987px;}
.xe{left:429.014973px;}
.xf{left:434.234987px;}
.x20{left:441.434973px;}
.x4{left:446.474987px;}
.x14{left:459.974973px;}
.x15{left:465.194987px;}
.x18{left:524.264973px;}
.x19{left:529.484987px;}
.x12{left:779.909973px;}
.x13{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.400533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.239467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls19{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls13{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsd{letter-spacing:2.720000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls12{letter-spacing:14.991360pt;}
.ls18{letter-spacing:30.970027pt;}
.ls17{letter-spacing:34.170027pt;}
.ls7{letter-spacing:76.320000pt;}
.ls14{letter-spacing:177.258667pt;}
.ws2{word-spacing:-17.280000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.480533pt;}
.ws0{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-4.222293pt;}
._d{margin-left:-3.325227pt;}
._e{margin-left:-2.199253pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.147307pt;}
._21{width:2.037120pt;}
._c{width:2.928427pt;}
._a{width:3.901653pt;}
._b{width:5.152640pt;}
._9{width:6.501973pt;}
._f{width:7.776853pt;}
._3{width:9.104853pt;}
._4{width:10.618667pt;}
._5{width:11.739520pt;}
._18{width:12.636800pt;}
._17{width:13.696640pt;}
._6{width:14.788693pt;}
._1c{width:15.681707pt;}
._7{width:16.572800pt;}
._8{width:17.477120pt;}
._1d{width:18.488320pt;}
._16{width:19.391147pt;}
._11{width:20.666880pt;}
._12{width:21.576533pt;}
._13{width:22.664960pt;}
._1e{width:24.395947pt;}
._1f{width:25.329067pt;}
._22{width:26.554880pt;}
._23{width:32.678400pt;}
._24{width:33.719893pt;}
._15{width:35.155200pt;}
._14{width:36.089600pt;}
._20{width:40.921600pt;}
._1a{width:75.235627pt;}
._19{width:76.369280pt;}
._10{width:95.094187pt;}
._25{width:177.258667pt;}
._1{width:994.532267pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y5{bottom:55.200000pt;}
.y3b{bottom:98.112000pt;}
.ye3{bottom:101.472000pt;}
.yda{bottom:102.112000pt;}
.yb4{bottom:104.672000pt;}
.y3a{bottom:110.432000pt;}
.yf4{bottom:111.232000pt;}
.yd9{bottom:111.712000pt;}
.y39{bottom:114.432000pt;}
.ye2{bottom:120.832000pt;}
.y70{bottom:122.592000pt;}
.y38{bottom:123.872000pt;}
.yb3{bottom:124.032000pt;}
.y86{bottom:126.592000pt;}
.yf3{bottom:130.592000pt;}
.y9e{bottom:133.786667pt;}
.y6f{bottom:134.906667pt;}
.y6e{bottom:138.906667pt;}
.ye1{bottom:140.186667pt;}
.yb2{bottom:143.386667pt;}
.y6d{bottom:147.226667pt;}
.yf2{bottom:149.946667pt;}
.y85{bottom:151.226667pt;}
.y9d{bottom:153.146667pt;}
.y37{bottom:158.426667pt;}
.y6c{bottom:159.386667pt;}
.ye0{bottom:159.546667pt;}
.yb1{bottom:162.746667pt;}
.y6b{bottom:163.386667pt;}
.yd8{bottom:169.466667pt;}
.y6a{bottom:171.706667pt;}
.y9c{bottom:172.666667pt;}
.y84{bottom:172.986667pt;}
.y36{bottom:177.786667pt;}
.ydf{bottom:179.066667pt;}
.yb0{bottom:182.266667pt;}
.y69{bottom:184.026667pt;}
.y68{bottom:188.026667pt;}
.yd7{bottom:188.826667pt;}
.y9b{bottom:192.026667pt;}
.y35{bottom:197.146667pt;}
.y67{bottom:197.466667pt;}
.yde{bottom:198.426667pt;}
.y83{bottom:201.626667pt;}
.yd6{bottom:208.186667pt;}
.y9a{bottom:211.386667pt;}
.y33{bottom:216.506667pt;}
.ydd{bottom:217.786667pt;}
.y82{bottom:220.986667pt;}
.y34{bottom:221.786667pt;}
.yd5{bottom:227.546667pt;}
.y99{bottom:230.746667pt;}
.y32{bottom:235.866667pt;}
.ydc{bottom:237.146667pt;}
.y80{bottom:240.346667pt;}
.y81{bottom:245.626667pt;}
.yd4{bottom:247.066667pt;}
.y98{bottom:250.266667pt;}
.y31{bottom:255.386667pt;}
.y66{bottom:256.666667pt;}
.y7f{bottom:259.866667pt;}
.yf1{bottom:266.426667pt;}
.y97{bottom:269.626667pt;}
.y30{bottom:274.746667pt;}
.y65{bottom:276.026667pt;}
.y7e{bottom:279.226667pt;}
.yf0{bottom:285.786667pt;}
.y96{bottom:288.986667pt;}
.y2f{bottom:294.106667pt;}
.y64{bottom:295.386667pt;}
.y7d{bottom:298.586667pt;}
.yef{bottom:305.186667pt;}
.y95{bottom:308.386667pt;}
.yd3{bottom:311.586667pt;}
.y2e{bottom:313.506667pt;}
.y63{bottom:314.786667pt;}
.y7b{bottom:317.986667pt;}
.y7c{bottom:323.266667pt;}
.y94{bottom:327.746667pt;}
.yd2{bottom:330.946667pt;}
.y2d{bottom:333.026667pt;}
.y62{bottom:334.146667pt;}
.y7a{bottom:337.346667pt;}
.y93{bottom:350.466667pt;}
.y61{bottom:353.666667pt;}
.y2c{bottom:355.586667pt;}
.y79{bottom:356.866667pt;}
.yaf{bottom:360.066667pt;}
.y92{bottom:369.826667pt;}
.y60{bottom:373.026667pt;}
.y78{bottom:376.226667pt;}
.y2b{bottom:378.146667pt;}
.yae{bottom:379.426667pt;}
.yd1{bottom:389.186667pt;}
.y91{bottom:392.386667pt;}
.y5f{bottom:395.586667pt;}
.yad{bottom:398.786667pt;}
.y2a{bottom:399.106667pt;}
.yd0{bottom:408.546667pt;}
.y29{bottom:413.186667pt;}
.y5e{bottom:414.946667pt;}
.yac{bottom:418.146667pt;}
.y28{bottom:426.146667pt;}
.ycf{bottom:427.906667pt;}
.yee{bottom:431.106667pt;}
.y5d{bottom:434.306667pt;}
.y90{bottom:437.506667pt;}
.y77{bottom:439.586667pt;}
.y27{bottom:444.706667pt;}
.yce{bottom:447.426667pt;}
.yed{bottom:450.626667pt;}
.y5c{bottom:453.826667pt;}
.y8f{bottom:457.026667pt;}
.y26{bottom:463.266667pt;}
.ycd{bottom:466.786667pt;}
.yec{bottom:469.986667pt;}
.y5b{bottom:473.186667pt;}
.y8e{bottom:476.386667pt;}
.y25{bottom:478.626667pt;}
.ycb{bottom:489.346667pt;}
.y5a{bottom:492.546667pt;}
.y24{bottom:493.986667pt;}
.ycc{bottom:494.626667pt;}
.y8d{bottom:495.746667pt;}
.yca{bottom:508.706667pt;}
.y23{bottom:509.186667pt;}
.y59{bottom:511.906667pt;}
.y76{bottom:515.106667pt;}
.y102{bottom:518.306667pt;}
.y22{bottom:524.546667pt;}
.yc9{bottom:528.226667pt;}
.y58{bottom:531.426667pt;}
.y75{bottom:534.626667pt;}
.y21{bottom:539.933333pt;}
.y101{bottom:541.053333pt;}
.yc8{bottom:547.613333pt;}
.y56{bottom:550.813333pt;}
.y74{bottom:554.013333pt;}
.y20{bottom:555.293333pt;}
.y57{bottom:556.093333pt;}
.y100{bottom:560.413333pt;}
.yc7{bottom:566.973333pt;}
.y55{bottom:570.173333pt;}
.y1f{bottom:570.653333pt;}
.y73{bottom:573.373333pt;}
.yff{bottom:579.773333pt;}
.yc6{bottom:586.333333pt;}
.y1e{bottom:589.213333pt;}
.y54{bottom:589.533333pt;}
.y72{bottom:592.733333pt;}
.yab{bottom:595.933333pt;}
.yfe{bottom:599.133333pt;}
.yc5{bottom:605.693333pt;}
.y1d{bottom:607.613333pt;}
.y53{bottom:608.893333pt;}
.y71{bottom:612.093333pt;}
.yaa{bottom:615.293333pt;}
.yfd{bottom:618.493333pt;}
.yeb{bottom:625.213333pt;}
.y1c{bottom:626.173333pt;}
.yc4{bottom:628.413333pt;}
.y52{bottom:631.613333pt;}
.ya9{bottom:634.813333pt;}
.yfc{bottom:638.013333pt;}
.y1b{bottom:641.533333pt;}
.yea{bottom:644.573333pt;}
.yc3{bottom:647.773333pt;}
.y51{bottom:650.973333pt;}
.ya8{bottom:654.173333pt;}
.y1a{bottom:656.893333pt;}
.yfb{bottom:657.373333pt;}
.ye9{bottom:663.933333pt;}
.yc2{bottom:667.133333pt;}
.y50{bottom:670.333333pt;}
.y19{bottom:672.253333pt;}
.y8c{bottom:673.533333pt;}
.yfa{bottom:676.733333pt;}
.ye8{bottom:683.293333pt;}
.yc1{bottom:686.493333pt;}
.y18{bottom:687.613333pt;}
.y4f{bottom:689.693333pt;}
.y8b{bottom:692.893333pt;}
.yf9{bottom:696.093333pt;}
.y17{bottom:702.813333pt;}
.yc0{bottom:706.013333pt;}
.y4e{bottom:709.213333pt;}
.y8a{bottom:712.413333pt;}
.yf8{bottom:715.613333pt;}
.y16{bottom:718.173333pt;}
.ye7{bottom:722.173333pt;}
.ybf{bottom:725.373333pt;}
.y4d{bottom:728.573333pt;}
.y89{bottom:731.773333pt;}
.y15{bottom:733.533333pt;}
.yf7{bottom:734.973333pt;}
.ye6{bottom:741.533333pt;}
.ye5{bottom:744.733333pt;}
.y4c{bottom:747.933333pt;}
.y88{bottom:751.133333pt;}
.y14{bottom:752.093333pt;}
.yf6{bottom:754.333333pt;}
.ye4{bottom:764.093333pt;}
.ybe{bottom:767.293333pt;}
.y4b{bottom:770.493333pt;}
.y13{bottom:770.973333pt;}
.yf5{bottom:773.693333pt;}
.ybd{bottom:786.693333pt;}
.y49{bottom:789.893333pt;}
.ydb{bottom:793.093333pt;}
.y4a{bottom:795.173333pt;}
.y12{bottom:795.333333pt;}
.ybc{bottom:806.213333pt;}
.y47{bottom:809.413333pt;}
.ya7{bottom:812.613333pt;}
.y11{bottom:813.893333pt;}
.y48{bottom:814.693333pt;}
.ybb{bottom:825.573333pt;}
.y10{bottom:828.133333pt;}
.y46{bottom:828.773333pt;}
.ya6{bottom:831.973333pt;}
.yba{bottom:844.933333pt;}
.y45{bottom:848.133333pt;}
.yf{bottom:848.293333pt;}
.ya5{bottom:851.333333pt;}
.yb9{bottom:864.293333pt;}
.y44{bottom:867.493333pt;}
.ye{bottom:868.293333pt;}
.ya4{bottom:870.693333pt;}
.yb8{bottom:883.813333pt;}
.y42{bottom:887.013333pt;}
.yd{bottom:888.773333pt;}
.ya3{bottom:890.213333pt;}
.y43{bottom:892.293333pt;}
.yb7{bottom:903.173333pt;}
.y41{bottom:906.373333pt;}
.yc{bottom:908.773333pt;}
.ya2{bottom:909.573333pt;}
.yb6{bottom:922.533333pt;}
.y40{bottom:925.733333pt;}
.ya1{bottom:928.933333pt;}
.yb{bottom:930.373333pt;}
.yb5{bottom:941.893333pt;}
.y3f{bottom:945.093333pt;}
.ya{bottom:946.533333pt;}
.ya0{bottom:948.293333pt;}
.y9{bottom:961.893333pt;}
.y3e{bottom:964.453333pt;}
.y9f{bottom:967.653333pt;}
.y8{bottom:977.093333pt;}
.y87{bottom:983.973333pt;}
.y3d{bottom:987.173333pt;}
.y7{bottom:992.453333pt;}
.y3c{bottom:1006.533333pt;}
.y6{bottom:1007.813333pt;}
.y4{bottom:1023.840000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1060.640000pt;}
.h3{height:18.400000pt;}
.h14{height:18.768750pt;}
.hc{height:24.131250pt;}
.h13{height:25.918750pt;}
.h15{height:29.940625pt;}
.h7{height:30.254687pt;}
.h11{height:30.966562pt;}
.h5{height:35.342500pt;}
.he{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:38.361562pt;}
.hd{height:41.112500pt;}
.h12{height:41.543750pt;}
.h16{height:42.866250pt;}
.h10{height:43.782500pt;}
.h2{height:44.687500pt;}
.h4{height:46.218750pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h8{height:49.916250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.400000pt;}
.w4{width:550.653333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.031988pt;}
.x11{left:99.391988pt;}
.x5{left:104.031988pt;}
.x1f{left:114.911988pt;}
.x22{left:120.031988pt;}
.x23{left:124.511988pt;}
.x1e{left:132.031988pt;}
.xd{left:133.786655pt;}
.x7{left:138.746655pt;}
.x21{left:143.226655pt;}
.x3{left:150.426667pt;}
.xa{left:194.426655pt;}
.x8{left:197.626655pt;}
.x9{left:261.826655pt;}
.x10{left:288.066655pt;}
.x6{left:308.866655pt;}
.x1c{left:339.746643pt;}
.x1a{left:341.026643pt;}
.x1d{left:344.386655pt;}
.x1b{left:345.666655pt;}
.x16{left:355.586643pt;}
.x17{left:360.226655pt;}
.xc{left:372.386655pt;}
.xb{left:373.506655pt;}
.xe{left:381.346643pt;}
.xf{left:385.986655pt;}
.x20{left:392.386643pt;}
.x4{left:396.866655pt;}
.x14{left:408.866643pt;}
.x15{left:413.506655pt;}
.x18{left:466.013310pt;}
.x19{left:470.653322pt;}
.x12{left:693.253310pt;}
.x13{left:697.893322pt;}
}




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