
    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_bca81e0220c0241ef782d71f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_7d641a9f40c24b06a3db981d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_3a80383c0a6c66849d731263.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_6ab5172bd200a08b3ffc2e2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_2734c57483c997244c2793df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_efd7c157d988061277f3aa12.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5ad189b37a58e274b8a07206.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_93be579aa37a7f43adbb0ae2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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:ffb;src:url('chunks/assets/font_9dfa51630d65a4b6f98925bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.684000px;}
.ls7{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.440000px;}
.ls2{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.760000px;}
.ls12{letter-spacing:6.480000px;}
.lsb{letter-spacing:7.920000px;}
.ls14{letter-spacing:9.540000px;}
.lsc{letter-spacing:10.080000px;}
.lse{letter-spacing:11.520000px;}
.lsf{letter-spacing:12.240000px;}
.ls11{letter-spacing:14.400000px;}
.ls13{letter-spacing:16.560000px;}
.ls10{letter-spacing:19.440000px;}
.ls1c{letter-spacing:22.320000px;}
.ls1d{letter-spacing:25.200000px;}
.ls1e{letter-spacing:25.920000px;}
.ls8{letter-spacing:27.360000px;}
.ls16{letter-spacing:28.080000px;}
.ls9{letter-spacing:33.960000px;}
.ls6{letter-spacing:33.984000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-13.536000px;}
._20{margin-left:-5.368080px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._10{width:3.384000px;}
._11{width:4.464000px;}
._d{width:5.688000px;}
._e{width:7.184160px;}
._a{width:8.784000px;}
._b{width:10.152000px;}
._f{width:12.024000px;}
._1e{width:13.248000px;}
._1f{width:14.616000px;}
._8{width:15.912000px;}
._9{width:16.928640px;}
._30{width:18.150480px;}
._14{width:19.152000px;}
._19{width:20.592000px;}
._22{width:21.600000px;}
._15{width:22.752000px;}
._16{width:23.824080px;}
._c{width:25.056000px;}
._1c{width:26.640000px;}
._1d{width:27.856080px;}
._17{width:29.088000px;}
._18{width:30.168000px;}
._1a{width:32.040000px;}
._1b{width:33.616080px;}
._27{width:35.568000px;}
._21{width:37.440000px;}
._13{width:39.408000px;}
._12{width:40.464000px;}
._39{width:43.128000px;}
._34{width:46.194480px;}
._25{width:48.384000px;}
._26{width:49.680000px;}
._2c{width:51.632640px;}
._23{width:54.864000px;}
._24{width:55.872000px;}
._3a{width:57.240000px;}
._31{width:62.867520px;}
._35{width:65.018880px;}
._33{width:75.835440px;}
._2d{width:78.703920px;}
._2e{width:79.719840px;}
._37{width:89.520480px;}
._29{width:91.910880px;}
._36{width:112.528080px;}
._32{width:128.902320px;}
._38{width:145.575360px;}
._2b{width:152.208720px;}
._3{width:194.376000px;}
._2a{width:202.586400px;}
._2f{width:209.936880px;}
._7{width:837.516000px;}
._6{width:1864.536000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.yf1{bottom:12.060000px;}
.ye7{bottom:12.240000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.ye8{bottom:20.700000px;}
.yf5{bottom:20.880000px;}
.y7{bottom:21.420000px;}
.yec{bottom:29.340000px;}
.yf8{bottom:29.520000px;}
.ye6{bottom:29.565000px;}
.y5{bottom:37.260000px;}
.yee{bottom:37.980000px;}
.yf4{bottom:38.160000px;}
.y2{bottom:39.060000px;}
.yeb{bottom:46.620000px;}
.yfd{bottom:46.665000px;}
.yf7{bottom:46.800000px;}
.yed{bottom:55.260000px;}
.yff{bottom:55.305000px;}
.yf3{bottom:55.440000px;}
.y12{bottom:57.420000px;}
.yea{bottom:63.900000px;}
.yfc{bottom:63.945000px;}
.yf6{bottom:64.080000px;}
.yef{bottom:72.540000px;}
.yfe{bottom:72.585000px;}
.y11{bottom:73.260000px;}
.yf0{bottom:81.180000px;}
.y100{bottom:81.225000px;}
.y128{bottom:110.520000px;}
.y109{bottom:110.700000px;}
.y3e{bottom:111.060000px;}
.yb8{bottom:115.560000px;}
.y146{bottom:117.540000px;}
.y88{bottom:118.260000px;}
.ydc{bottom:121.320000px;}
.y6c{bottom:127.260000px;}
.y166{bottom:129.060000px;}
.y87{bottom:138.960000px;}
.y108{bottom:140.400000px;}
.y3d{bottom:140.760000px;}
.y127{bottom:141.480000px;}
.yb7{bottom:145.260000px;}
.y145{bottom:147.240000px;}
.y6b{bottom:147.960000px;}
.y165{bottom:149.760000px;}
.ydb{bottom:151.020000px;}
.y107{bottom:161.100000px;}
.y126{bottom:162.180000px;}
.yb6{bottom:165.960000px;}
.y6a{bottom:168.660000px;}
.y3c{bottom:170.460000px;}
.y144{bottom:176.940000px;}
.y164{bottom:179.460000px;}
.yda{bottom:180.720000px;}
.y106{bottom:181.800000px;}
.y125{bottom:182.880000px;}
.yb5{bottom:186.660000px;}
.y69{bottom:189.360000px;}
.y3b{bottom:191.160000px;}
.y143{bottom:197.670000px;}
.y163{bottom:200.190000px;}
.yd9{bottom:201.450000px;}
.y105{bottom:202.530000px;}
.y124{bottom:203.610000px;}
.yb4{bottom:207.390000px;}
.y86{bottom:210.090000px;}
.y68{bottom:219.090000px;}
.y3a{bottom:220.890000px;}
.yd8{bottom:222.150000px;}
.y104{bottom:223.230000px;}
.y142{bottom:227.370000px;}
.yb3{bottom:228.090000px;}
.y162{bottom:229.890000px;}
.y85{bottom:230.790000px;}
.y123{bottom:234.570000px;}
.y67{bottom:239.790000px;}
.y39{bottom:241.590000px;}
.yd7{bottom:242.850000px;}
.y103{bottom:243.930000px;}
.y141{bottom:248.070000px;}
.yb2{bottom:248.790000px;}
.y161{bottom:250.590000px;}
.y84{bottom:251.490000px;}
.y122{bottom:255.270000px;}
.y66{bottom:260.490000px;}
.y38{bottom:262.290000px;}
.yb1{bottom:269.490000px;}
.y83{bottom:272.190000px;}
.yd6{bottom:272.550000px;}
.y102{bottom:273.630000px;}
.y121{bottom:275.970000px;}
.y140{bottom:277.770000px;}
.y160{bottom:280.290000px;}
.y65{bottom:281.190000px;}
.y37{bottom:282.990000px;}
.yb0{bottom:290.190000px;}
.y82{bottom:292.890000px;}
.y13f{bottom:298.470000px;}
.y15f{bottom:300.990000px;}
.y64{bottom:301.890000px;}
.yd5{bottom:302.250000px;}
.y101{bottom:302.610000px;}
.y36{bottom:303.690000px;}
.y120{bottom:306.930000px;}
.yaf{bottom:310.890000px;}
.y81{bottom:313.590000px;}
.y13e{bottom:319.170000px;}
.y63{bottom:322.590000px;}
.yd4{bottom:322.950000px;}
.y11f{bottom:327.630000px;}
.y15e{bottom:330.690000px;}
.yae{bottom:331.590000px;}
.y35{bottom:333.390000px;}
.y62{bottom:343.290000px;}
.y11e{bottom:348.510000px;}
.y13d{bottom:348.870000px;}
.y15d{bottom:351.390000px;}
.y9e{bottom:352.290000px;}
.yd3{bottom:353.910000px;}
.y34{bottom:354.090000px;}
.yad{bottom:361.290000px;}
.y61{bottom:363.990000px;}
.y13c{bottom:369.570000px;}
.y9d{bottom:372.990000px;}
.yd2{bottom:374.610000px;}
.y33{bottom:374.790000px;}
.y11d{bottom:379.470000px;}
.y15c{bottom:381.090000px;}
.yac{bottom:381.990000px;}
.y80{bottom:384.690000px;}
.y13b{bottom:390.270000px;}
.y60{bottom:393.690000px;}
.yfb{bottom:394.230000px;}
.y32{bottom:395.490000px;}
.y11c{bottom:400.170000px;}
.y15b{bottom:401.790000px;}
.yab{bottom:402.690000px;}
.y7f{bottom:405.390000px;}
.yd1{bottom:405.570000px;}
.y5f{bottom:414.390000px;}
.y31{bottom:416.190000px;}
.y13a{bottom:419.970000px;}
.yaa{bottom:423.390000px;}
.y7e{bottom:426.090000px;}
.yd0{bottom:426.270000px;}
.y11b{bottom:431.130000px;}
.y15a{bottom:431.490000px;}
.y5e{bottom:435.090000px;}
.y30{bottom:436.935000px;}
.y139{bottom:440.715000px;}
.ya6{bottom:444.135000px;}
.y7d{bottom:446.835000px;}
.ycf{bottom:447.015000px;}
.y11a{bottom:451.875000px;}
.y159{bottom:452.235000px;}
.y5d{bottom:455.835000px;}
.y2f{bottom:457.635000px;}
.y138{bottom:461.415000px;}
.y9c{bottom:464.835000px;}
.y119{bottom:472.575000px;}
.y158{bottom:472.935000px;}
.y5c{bottom:476.535000px;}
.yce{bottom:477.975000px;}
.y2e{bottom:478.335000px;}
.ya5{bottom:485.535000px;}
.y137{bottom:490.935000px;}
.y9b{bottom:494.535000px;}
.y5b{bottom:497.235000px;}
.y157{bottom:502.635000px;}
.yfa{bottom:502.995000px;}
.y118{bottom:503.535000px;}
.ya4{bottom:506.235000px;}
.ycd{bottom:507.675000px;}
.y2d{bottom:508.035000px;}
.y9a{bottom:515.235000px;}
.y5a{bottom:517.935000px;}
.y136{bottom:520.635000px;}
.y156{bottom:523.335000px;}
.ya3{bottom:526.935000px;}
.y2c{bottom:528.735000px;}
.y117{bottom:533.235000px;}
.y99{bottom:535.935000px;}
.ycc{bottom:537.375000px;}
.y59{bottom:538.635000px;}
.y135{bottom:541.335000px;}
.y155{bottom:544.035000px;}
.ya9{bottom:544.935000px;}
.y2b{bottom:549.435000px;}
.y116{bottom:553.935000px;}
.y98{bottom:556.635000px;}
.ycb{bottom:558.075000px;}
.y7c{bottom:559.335000px;}
.ya8{bottom:565.635000px;}
.y58{bottom:568.335000px;}
.y2a{bottom:570.135000px;}
.y134{bottom:571.035000px;}
.y154{bottom:573.735000px;}
.y115{bottom:574.635000px;}
.y97{bottom:577.335000px;}
.yca{bottom:578.775000px;}
.y7b{bottom:580.035000px;}
.ya7{bottom:586.335000px;}
.y29{bottom:590.835000px;}
.y133{bottom:591.735000px;}
.yf9{bottom:594.435000px;}
.y114{bottom:595.335000px;}
.y57{bottom:598.035000px;}
.y7a{bottom:600.735000px;}
.y96{bottom:607.035000px;}
.yc9{bottom:609.735000px;}
.y28{bottom:611.535000px;}
.y113{bottom:616.035000px;}
.y13{bottom:617.475000px;}
.ya2{bottom:618.735000px;}
.y132{bottom:621.435000px;}
.y153{bottom:624.135000px;}
.y56{bottom:627.735000px;}
.y79{bottom:630.435000px;}
.y27{bottom:632.235000px;}
.y112{bottom:636.735000px;}
.ya1{bottom:639.435000px;}
.y131{bottom:642.135000px;}
.y152{bottom:644.835000px;}
.y55{bottom:648.435000px;}
.yc8{bottom:651.135000px;}
.y26{bottom:652.935000px;}
.y111{bottom:657.435000px;}
.y78{bottom:660.135000px;}
.y95{bottom:669.135000px;}
.y130{bottom:671.835000px;}
.yc7{bottom:672.015000px;}
.y25{bottom:673.635000px;}
.y151{bottom:674.565000px;}
.y54{bottom:678.165000px;}
.y77{bottom:680.865000px;}
.yf2{bottom:685.905000px;}
.y94{bottom:689.865000px;}
.y150{bottom:695.265000px;}
.y53{bottom:698.865000px;}
.y76{bottom:701.565000px;}
.yc6{bottom:703.005000px;}
.y24{bottom:703.365000px;}
.y110{bottom:707.865000px;}
.y93{bottom:710.565000px;}
.y52{bottom:719.565000px;}
.y75{bottom:722.265000px;}
.yc5{bottom:723.705000px;}
.y14f{bottom:724.965000px;}
.y10f{bottom:728.565000px;}
.y92{bottom:731.265000px;}
.y23{bottom:739.005000px;}
.y51{bottom:740.265000px;}
.y74{bottom:742.965000px;}
.yc4{bottom:744.405000px;}
.y14e{bottom:745.665000px;}
.y10e{bottom:749.265000px;}
.ya0{bottom:751.965000px;}
.y50{bottom:760.965000px;}
.y22{bottom:762.765000px;}
.y73{bottom:763.665000px;}
.y16a{bottom:766.365000px;}
.y10d{bottom:769.965000px;}
.y9f{bottom:772.665000px;}
.yc3{bottom:775.365000px;}
.ye9{bottom:777.525000px;}
.y91{bottom:781.665000px;}
.y72{bottom:784.365000px;}
.y4f{bottom:790.665000px;}
.y12f{bottom:793.365000px;}
.yc2{bottom:796.065000px;}
.y21{bottom:799.305000px;}
.y90{bottom:802.365000px;}
.y4e{bottom:811.365000px;}
.y71{bottom:814.065000px;}
.y169{bottom:816.765000px;}
.y20{bottom:822.165000px;}
.y8f{bottom:823.065000px;}
.yc1{bottom:825.765000px;}
.y4d{bottom:832.065000px;}
.y70{bottom:843.765000px;}
.y14d{bottom:846.465000px;}
.y1f{bottom:849.705000px;}
.y4c{bottom:852.765000px;}
.yc0{bottom:855.465000px;}
.y8e{bottom:864.465000px;}
.y14c{bottom:867.165000px;}
.y1e{bottom:872.565000px;}
.y4b{bottom:873.465000px;}
.ybf{bottom:876.165000px;}
.y10c{bottom:882.465000px;}
.y8d{bottom:885.165000px;}
.ye5{bottom:886.245000px;}
.y168{bottom:887.865000px;}
.y4a{bottom:894.165000px;}
.ybe{bottom:896.865000px;}
.y1d{bottom:902.265000px;}
.y10b{bottom:903.165000px;}
.y8c{bottom:905.865000px;}
.y49{bottom:914.910000px;}
.ybd{bottom:917.610000px;}
.y10a{bottom:923.910000px;}
.y8b{bottom:926.610000px;}
.y1c{bottom:932.010000px;}
.y6f{bottom:935.610000px;}
.ybc{bottom:938.310000px;}
.y48{bottom:944.610000px;}
.ye4{bottom:955.050000px;}
.y6e{bottom:956.310000px;}
.y167{bottom:959.010000px;}
.y1b{bottom:961.710000px;}
.y47{bottom:965.310000px;}
.ybb{bottom:968.010000px;}
.y12e{bottom:974.310000px;}
.ye3{bottom:984.750000px;}
.y46{bottom:986.010000px;}
.y14b{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y12d{bottom:995.010000px;}
.yba{bottom:997.710000px;}
.y45{bottom:1006.710000px;}
.y14a{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.ye2{bottom:1014.450000px;}
.y12c{bottom:1015.710000px;}
.y44{bottom:1027.410000px;}
.ye1{bottom:1035.150000px;}
.y149{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y12b{bottom:1046.670000px;}
.y43{bottom:1048.110000px;}
.yb9{bottom:1057.110000px;}
.y148{bottom:1059.810000px;}
.ye0{bottom:1066.110000px;}
.y12a{bottom:1067.370000px;}
.y42{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y8a{bottom:1077.810000px;}
.y147{bottom:1080.510000px;}
.ydf{bottom:1086.810000px;}
.y129{bottom:1088.250000px;}
.y41{bottom:1089.510000px;}
.y89{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y40{bottom:1110.210000px;}
.yde{bottom:1117.770000px;}
.y6d{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.ydd{bottom:1138.650000px;}
.y3f{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.h10{height:40.254961px;}
.h11{height:41.362031px;}
.ha{height:49.868086px;}
.h13{height:51.239531px;}
.h5{height:52.020000px;}
.h12{height:52.416000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.hd{height:60.082031px;}
.h19{height:61.171875px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.hf{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h17{height:86.940000px;}
.h16{height:86.976000px;}
.h15{height:87.120000px;}
.h14{height:104.220000px;}
.h18{height:104.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w9{width:103.860000px;}
.wa{width:135.036000px;}
.wb{width:160.770000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.wc{width:269.670000px;}
.w2{width:383.115000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.xd{left:113.975987px;}
.x16{left:115.235987px;}
.xf{left:132.335987px;}
.x13{left:138.635987px;}
.x2{left:148.005000px;}
.x14{left:149.255987px;}
.x17{left:160.229987px;}
.x1{left:165.270000px;}
.x18{left:214.770000px;}
.x12{left:283.214987px;}
.x15{left:340.274987px;}
.x10{left:345.854987px;}
.x19{left:351.975000px;}
.xe{left:374.114987px;}
.x7{left:378.075000px;}
.x11{left:446.474987px;}
.x1a{left:514.905000px;}
.x8{left:662.730000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.608000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls2{letter-spacing:3.840000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls12{letter-spacing:5.760000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls14{letter-spacing:8.480000pt;}
.lsc{letter-spacing:8.960000pt;}
.lse{letter-spacing:10.240000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls11{letter-spacing:12.800000pt;}
.ls13{letter-spacing:14.720000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls1c{letter-spacing:19.840000pt;}
.ls1d{letter-spacing:22.400000pt;}
.ls1e{letter-spacing:23.040000pt;}
.ls8{letter-spacing:24.320000pt;}
.ls16{letter-spacing:24.960000pt;}
.ls9{letter-spacing:30.186667pt;}
.ls6{letter-spacing:30.208000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-12.032000pt;}
._20{margin-left:-4.771627pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._10{width:3.008000pt;}
._11{width:3.968000pt;}
._d{width:5.056000pt;}
._e{width:6.385920pt;}
._a{width:7.808000pt;}
._b{width:9.024000pt;}
._f{width:10.688000pt;}
._1e{width:11.776000pt;}
._1f{width:12.992000pt;}
._8{width:14.144000pt;}
._9{width:15.047680pt;}
._30{width:16.133760pt;}
._14{width:17.024000pt;}
._19{width:18.304000pt;}
._22{width:19.200000pt;}
._15{width:20.224000pt;}
._16{width:21.176960pt;}
._c{width:22.272000pt;}
._1c{width:23.680000pt;}
._1d{width:24.760960pt;}
._17{width:25.856000pt;}
._18{width:26.816000pt;}
._1a{width:28.480000pt;}
._1b{width:29.880960pt;}
._27{width:31.616000pt;}
._21{width:33.280000pt;}
._13{width:35.029333pt;}
._12{width:35.968000pt;}
._39{width:38.336000pt;}
._34{width:41.061760pt;}
._25{width:43.008000pt;}
._26{width:44.160000pt;}
._2c{width:45.895680pt;}
._23{width:48.768000pt;}
._24{width:49.664000pt;}
._3a{width:50.880000pt;}
._31{width:55.882240pt;}
._35{width:57.794560pt;}
._33{width:67.409280pt;}
._2d{width:69.959040pt;}
._2e{width:70.862080pt;}
._37{width:79.573760pt;}
._29{width:81.698560pt;}
._36{width:100.024960pt;}
._32{width:114.579840pt;}
._38{width:129.400320pt;}
._2b{width:135.296640pt;}
._3{width:172.778667pt;}
._2a{width:180.076800pt;}
._2f{width:186.610560pt;}
._7{width:744.458667pt;}
._6{width:1657.365333pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.yf1{bottom:10.720000pt;}
.ye7{bottom:10.880000pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.ye8{bottom:18.400000pt;}
.yf5{bottom:18.560000pt;}
.y7{bottom:19.040000pt;}
.yec{bottom:26.080000pt;}
.yf8{bottom:26.240000pt;}
.ye6{bottom:26.280000pt;}
.y5{bottom:33.120000pt;}
.yee{bottom:33.760000pt;}
.yf4{bottom:33.920000pt;}
.y2{bottom:34.720000pt;}
.yeb{bottom:41.440000pt;}
.yfd{bottom:41.480000pt;}
.yf7{bottom:41.600000pt;}
.yed{bottom:49.120000pt;}
.yff{bottom:49.160000pt;}
.yf3{bottom:49.280000pt;}
.y12{bottom:51.040000pt;}
.yea{bottom:56.800000pt;}
.yfc{bottom:56.840000pt;}
.yf6{bottom:56.960000pt;}
.yef{bottom:64.480000pt;}
.yfe{bottom:64.520000pt;}
.y11{bottom:65.120000pt;}
.yf0{bottom:72.160000pt;}
.y100{bottom:72.200000pt;}
.y128{bottom:98.240000pt;}
.y109{bottom:98.400000pt;}
.y3e{bottom:98.720000pt;}
.yb8{bottom:102.720000pt;}
.y146{bottom:104.480000pt;}
.y88{bottom:105.120000pt;}
.ydc{bottom:107.840000pt;}
.y6c{bottom:113.120000pt;}
.y166{bottom:114.720000pt;}
.y87{bottom:123.520000pt;}
.y108{bottom:124.800000pt;}
.y3d{bottom:125.120000pt;}
.y127{bottom:125.760000pt;}
.yb7{bottom:129.120000pt;}
.y145{bottom:130.880000pt;}
.y6b{bottom:131.520000pt;}
.y165{bottom:133.120000pt;}
.ydb{bottom:134.240000pt;}
.y107{bottom:143.200000pt;}
.y126{bottom:144.160000pt;}
.yb6{bottom:147.520000pt;}
.y6a{bottom:149.920000pt;}
.y3c{bottom:151.520000pt;}
.y144{bottom:157.280000pt;}
.y164{bottom:159.520000pt;}
.yda{bottom:160.640000pt;}
.y106{bottom:161.600000pt;}
.y125{bottom:162.560000pt;}
.yb5{bottom:165.920000pt;}
.y69{bottom:168.320000pt;}
.y3b{bottom:169.920000pt;}
.y143{bottom:175.706667pt;}
.y163{bottom:177.946667pt;}
.yd9{bottom:179.066667pt;}
.y105{bottom:180.026667pt;}
.y124{bottom:180.986667pt;}
.yb4{bottom:184.346667pt;}
.y86{bottom:186.746667pt;}
.y68{bottom:194.746667pt;}
.y3a{bottom:196.346667pt;}
.yd8{bottom:197.466667pt;}
.y104{bottom:198.426667pt;}
.y142{bottom:202.106667pt;}
.yb3{bottom:202.746667pt;}
.y162{bottom:204.346667pt;}
.y85{bottom:205.146667pt;}
.y123{bottom:208.506667pt;}
.y67{bottom:213.146667pt;}
.y39{bottom:214.746667pt;}
.yd7{bottom:215.866667pt;}
.y103{bottom:216.826667pt;}
.y141{bottom:220.506667pt;}
.yb2{bottom:221.146667pt;}
.y161{bottom:222.746667pt;}
.y84{bottom:223.546667pt;}
.y122{bottom:226.906667pt;}
.y66{bottom:231.546667pt;}
.y38{bottom:233.146667pt;}
.yb1{bottom:239.546667pt;}
.y83{bottom:241.946667pt;}
.yd6{bottom:242.266667pt;}
.y102{bottom:243.226667pt;}
.y121{bottom:245.306667pt;}
.y140{bottom:246.906667pt;}
.y160{bottom:249.146667pt;}
.y65{bottom:249.946667pt;}
.y37{bottom:251.546667pt;}
.yb0{bottom:257.946667pt;}
.y82{bottom:260.346667pt;}
.y13f{bottom:265.306667pt;}
.y15f{bottom:267.546667pt;}
.y64{bottom:268.346667pt;}
.yd5{bottom:268.666667pt;}
.y101{bottom:268.986667pt;}
.y36{bottom:269.946667pt;}
.y120{bottom:272.826667pt;}
.yaf{bottom:276.346667pt;}
.y81{bottom:278.746667pt;}
.y13e{bottom:283.706667pt;}
.y63{bottom:286.746667pt;}
.yd4{bottom:287.066667pt;}
.y11f{bottom:291.226667pt;}
.y15e{bottom:293.946667pt;}
.yae{bottom:294.746667pt;}
.y35{bottom:296.346667pt;}
.y62{bottom:305.146667pt;}
.y11e{bottom:309.786667pt;}
.y13d{bottom:310.106667pt;}
.y15d{bottom:312.346667pt;}
.y9e{bottom:313.146667pt;}
.yd3{bottom:314.586667pt;}
.y34{bottom:314.746667pt;}
.yad{bottom:321.146667pt;}
.y61{bottom:323.546667pt;}
.y13c{bottom:328.506667pt;}
.y9d{bottom:331.546667pt;}
.yd2{bottom:332.986667pt;}
.y33{bottom:333.146667pt;}
.y11d{bottom:337.306667pt;}
.y15c{bottom:338.746667pt;}
.yac{bottom:339.546667pt;}
.y80{bottom:341.946667pt;}
.y13b{bottom:346.906667pt;}
.y60{bottom:349.946667pt;}
.yfb{bottom:350.426667pt;}
.y32{bottom:351.546667pt;}
.y11c{bottom:355.706667pt;}
.y15b{bottom:357.146667pt;}
.yab{bottom:357.946667pt;}
.y7f{bottom:360.346667pt;}
.yd1{bottom:360.506667pt;}
.y5f{bottom:368.346667pt;}
.y31{bottom:369.946667pt;}
.y13a{bottom:373.306667pt;}
.yaa{bottom:376.346667pt;}
.y7e{bottom:378.746667pt;}
.yd0{bottom:378.906667pt;}
.y11b{bottom:383.226667pt;}
.y15a{bottom:383.546667pt;}
.y5e{bottom:386.746667pt;}
.y30{bottom:388.386667pt;}
.y139{bottom:391.746667pt;}
.ya6{bottom:394.786667pt;}
.y7d{bottom:397.186667pt;}
.ycf{bottom:397.346667pt;}
.y11a{bottom:401.666667pt;}
.y159{bottom:401.986667pt;}
.y5d{bottom:405.186667pt;}
.y2f{bottom:406.786667pt;}
.y138{bottom:410.146667pt;}
.y9c{bottom:413.186667pt;}
.y119{bottom:420.066667pt;}
.y158{bottom:420.386667pt;}
.y5c{bottom:423.586667pt;}
.yce{bottom:424.866667pt;}
.y2e{bottom:425.186667pt;}
.ya5{bottom:431.586667pt;}
.y137{bottom:436.386667pt;}
.y9b{bottom:439.586667pt;}
.y5b{bottom:441.986667pt;}
.y157{bottom:446.786667pt;}
.yfa{bottom:447.106667pt;}
.y118{bottom:447.586667pt;}
.ya4{bottom:449.986667pt;}
.ycd{bottom:451.266667pt;}
.y2d{bottom:451.586667pt;}
.y9a{bottom:457.986667pt;}
.y5a{bottom:460.386667pt;}
.y136{bottom:462.786667pt;}
.y156{bottom:465.186667pt;}
.ya3{bottom:468.386667pt;}
.y2c{bottom:469.986667pt;}
.y117{bottom:473.986667pt;}
.y99{bottom:476.386667pt;}
.ycc{bottom:477.666667pt;}
.y59{bottom:478.786667pt;}
.y135{bottom:481.186667pt;}
.y155{bottom:483.586667pt;}
.ya9{bottom:484.386667pt;}
.y2b{bottom:488.386667pt;}
.y116{bottom:492.386667pt;}
.y98{bottom:494.786667pt;}
.ycb{bottom:496.066667pt;}
.y7c{bottom:497.186667pt;}
.ya8{bottom:502.786667pt;}
.y58{bottom:505.186667pt;}
.y2a{bottom:506.786667pt;}
.y134{bottom:507.586667pt;}
.y154{bottom:509.986667pt;}
.y115{bottom:510.786667pt;}
.y97{bottom:513.186667pt;}
.yca{bottom:514.466667pt;}
.y7b{bottom:515.586667pt;}
.ya7{bottom:521.186667pt;}
.y29{bottom:525.186667pt;}
.y133{bottom:525.986667pt;}
.yf9{bottom:528.386667pt;}
.y114{bottom:529.186667pt;}
.y57{bottom:531.586667pt;}
.y7a{bottom:533.986667pt;}
.y96{bottom:539.586667pt;}
.yc9{bottom:541.986667pt;}
.y28{bottom:543.586667pt;}
.y113{bottom:547.586667pt;}
.y13{bottom:548.866667pt;}
.ya2{bottom:549.986667pt;}
.y132{bottom:552.386667pt;}
.y153{bottom:554.786667pt;}
.y56{bottom:557.986667pt;}
.y79{bottom:560.386667pt;}
.y27{bottom:561.986667pt;}
.y112{bottom:565.986667pt;}
.ya1{bottom:568.386667pt;}
.y131{bottom:570.786667pt;}
.y152{bottom:573.186667pt;}
.y55{bottom:576.386667pt;}
.yc8{bottom:578.786667pt;}
.y26{bottom:580.386667pt;}
.y111{bottom:584.386667pt;}
.y78{bottom:586.786667pt;}
.y95{bottom:594.786667pt;}
.y130{bottom:597.186667pt;}
.yc7{bottom:597.346667pt;}
.y25{bottom:598.786667pt;}
.y151{bottom:599.613333pt;}
.y54{bottom:602.813333pt;}
.y77{bottom:605.213333pt;}
.yf2{bottom:609.693333pt;}
.y94{bottom:613.213333pt;}
.y150{bottom:618.013333pt;}
.y53{bottom:621.213333pt;}
.y76{bottom:623.613333pt;}
.yc6{bottom:624.893333pt;}
.y24{bottom:625.213333pt;}
.y110{bottom:629.213333pt;}
.y93{bottom:631.613333pt;}
.y52{bottom:639.613333pt;}
.y75{bottom:642.013333pt;}
.yc5{bottom:643.293333pt;}
.y14f{bottom:644.413333pt;}
.y10f{bottom:647.613333pt;}
.y92{bottom:650.013333pt;}
.y23{bottom:656.893333pt;}
.y51{bottom:658.013333pt;}
.y74{bottom:660.413333pt;}
.yc4{bottom:661.693333pt;}
.y14e{bottom:662.813333pt;}
.y10e{bottom:666.013333pt;}
.ya0{bottom:668.413333pt;}
.y50{bottom:676.413333pt;}
.y22{bottom:678.013333pt;}
.y73{bottom:678.813333pt;}
.y16a{bottom:681.213333pt;}
.y10d{bottom:684.413333pt;}
.y9f{bottom:686.813333pt;}
.yc3{bottom:689.213333pt;}
.ye9{bottom:691.133333pt;}
.y91{bottom:694.813333pt;}
.y72{bottom:697.213333pt;}
.y4f{bottom:702.813333pt;}
.y12f{bottom:705.213333pt;}
.yc2{bottom:707.613333pt;}
.y21{bottom:710.493333pt;}
.y90{bottom:713.213333pt;}
.y4e{bottom:721.213333pt;}
.y71{bottom:723.613333pt;}
.y169{bottom:726.013333pt;}
.y20{bottom:730.813333pt;}
.y8f{bottom:731.613333pt;}
.yc1{bottom:734.013333pt;}
.y4d{bottom:739.613333pt;}
.y70{bottom:750.013333pt;}
.y14d{bottom:752.413333pt;}
.y1f{bottom:755.293333pt;}
.y4c{bottom:758.013333pt;}
.yc0{bottom:760.413333pt;}
.y8e{bottom:768.413333pt;}
.y14c{bottom:770.813333pt;}
.y1e{bottom:775.613333pt;}
.y4b{bottom:776.413333pt;}
.ybf{bottom:778.813333pt;}
.y10c{bottom:784.413333pt;}
.y8d{bottom:786.813333pt;}
.ye5{bottom:787.773333pt;}
.y168{bottom:789.213333pt;}
.y4a{bottom:794.813333pt;}
.ybe{bottom:797.213333pt;}
.y1d{bottom:802.013333pt;}
.y10b{bottom:802.813333pt;}
.y8c{bottom:805.213333pt;}
.y49{bottom:813.253333pt;}
.ybd{bottom:815.653333pt;}
.y10a{bottom:821.253333pt;}
.y8b{bottom:823.653333pt;}
.y1c{bottom:828.453333pt;}
.y6f{bottom:831.653333pt;}
.ybc{bottom:834.053333pt;}
.y48{bottom:839.653333pt;}
.ye4{bottom:848.933333pt;}
.y6e{bottom:850.053333pt;}
.y167{bottom:852.453333pt;}
.y1b{bottom:854.853333pt;}
.y47{bottom:858.053333pt;}
.ybb{bottom:860.453333pt;}
.y12e{bottom:866.053333pt;}
.ye3{bottom:875.333333pt;}
.y46{bottom:876.453333pt;}
.y14b{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y12d{bottom:884.453333pt;}
.yba{bottom:886.853333pt;}
.y45{bottom:894.853333pt;}
.y14a{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.ye2{bottom:901.733333pt;}
.y12c{bottom:902.853333pt;}
.y44{bottom:913.253333pt;}
.ye1{bottom:920.133333pt;}
.y149{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y12b{bottom:930.373333pt;}
.y43{bottom:931.653333pt;}
.yb9{bottom:939.653333pt;}
.y148{bottom:942.053333pt;}
.ye0{bottom:947.653333pt;}
.y12a{bottom:948.773333pt;}
.y42{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y8a{bottom:958.053333pt;}
.y147{bottom:960.453333pt;}
.ydf{bottom:966.053333pt;}
.y129{bottom:967.333333pt;}
.y41{bottom:968.453333pt;}
.y89{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y40{bottom:986.853333pt;}
.yde{bottom:993.573333pt;}
.y6d{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.ydd{bottom:1012.133333pt;}
.y3f{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.h10{height:35.782187pt;}
.h11{height:36.766250pt;}
.ha{height:44.327188pt;}
.h13{height:45.546250pt;}
.h5{height:46.240000pt;}
.h12{height:46.592000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.hd{height:53.406250pt;}
.h19{height:54.375000pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.hf{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h17{height:77.280000pt;}
.h16{height:77.312000pt;}
.h15{height:77.440000pt;}
.h14{height:92.640000pt;}
.h18{height:92.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w9{width:92.320000pt;}
.wa{width:120.032000pt;}
.wb{width:142.906667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.wc{width:239.706667pt;}
.w2{width:340.546667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.xd{left:101.311988pt;}
.x16{left:102.431988pt;}
.xf{left:117.631988pt;}
.x13{left:123.231988pt;}
.x2{left:131.560000pt;}
.x14{left:132.671988pt;}
.x17{left:142.426655pt;}
.x1{left:146.906667pt;}
.x18{left:190.906667pt;}
.x12{left:251.746655pt;}
.x15{left:302.466655pt;}
.x10{left:307.426655pt;}
.x19{left:312.866667pt;}
.xe{left:332.546655pt;}
.x7{left:336.066667pt;}
.x11{left:396.866655pt;}
.x1a{left:457.693333pt;}
.x8{left:589.093333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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