
    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_e5c217208527cb1979d5076d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c2611908c07f65349591bd77.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_394ef98673253f660cc83dca.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_981eaa2eee95d6ebffd249d8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c1b73f026f7cf646817907e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_48c5edbc8b29c6fcbb32c88c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.lsf{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.666000px;}
.ls1b{letter-spacing:11.466720px;}
.ls1{letter-spacing:32.346720px;}
.lsd{letter-spacing:35.946720px;}
.ls19{letter-spacing:41.706720px;}
.ls15{letter-spacing:45.306720px;}
.ls18{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.680200px;}
.ws16{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:195.228000px;}
.ws15{word-spacing:195.480000px;}
.ws13{word-spacing:195.540000px;}
.wsf{word-spacing:196.164000px;}
.wse{word-spacing:196.416000px;}
.ws10{word-spacing:196.536000px;}
.wsc{word-spacing:209.340000px;}
.ws12{word-spacing:210.060000px;}
.wsd{word-spacing:210.912000px;}
.wsb{word-spacing:223.980000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._b{margin-left:-9.252960px;}
._4{margin-left:-8.213760px;}
._d{margin-left:-6.649920px;}
._c{margin-left:-5.506320px;}
._9{margin-left:-4.432800px;}
._e{margin-left:-3.409200px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.574960px;}
._12{width:3.699120px;}
._f{width:5.339760px;}
._14{width:6.693120px;}
._13{width:8.006880px;}
._10{width:9.272880px;}
._11{width:10.447920px;}
._15{width:12.234960px;}
._16{width:13.260720px;}
._1a{width:16.264800px;}
._19{width:18.108480px;}
._17{width:19.333200px;}
._18{width:20.835600px;}
._28{width:22.708800px;}
._27{width:23.794560px;}
._2b{width:25.326000px;}
._26{width:29.700720px;}
._24{width:31.254480px;}
._23{width:32.569200px;}
._25{width:33.574800px;}
._29{width:42.021360px;}
._2a{width:43.383360px;}
._21{width:53.186400px;}
._20{width:63.475200px;}
._1b{width:67.170240px;}
._22{width:87.917040px;}
._1e{width:89.052000px;}
._1f{width:238.068000px;}
._1d{width:250.920000px;}
._1c{width:2556.081840px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:5.760000px;}
.y110{bottom:5.790000px;}
.y83{bottom:5.940000px;}
.y84{bottom:6.300000px;}
.y8b{bottom:6.480000px;}
.ye6{bottom:6.660000px;}
.ye9{bottom:6.840000px;}
.yf5{bottom:9.900000px;}
.y173{bottom:10.800000px;}
.y116{bottom:10.980000px;}
.ya0{bottom:15.660000px;}
.y7a{bottom:15.840000px;}
.yce{bottom:16.380000px;}
.yc6{bottom:16.455000px;}
.yf7{bottom:19.800000px;}
.ye4{bottom:25.560000px;}
.ya3{bottom:25.590000px;}
.y7b{bottom:25.740000px;}
.y7f{bottom:26.100000px;}
.y172{bottom:30.630000px;}
.y16f{bottom:34.950000px;}
.y8d{bottom:35.460000px;}
.yc7{bottom:45.150000px;}
.ybf{bottom:45.210000px;}
.yf3{bottom:45.360000px;}
.y122{bottom:45.540000px;}
.y7e{bottom:46.080000px;}
.y86{bottom:47.880000px;}
.y171{bottom:50.610000px;}
.y6{bottom:66.240000px;}
.y170{bottom:70.410000px;}
.yc8{bottom:79.635000px;}
.yc0{bottom:83.340000px;}
.yde{bottom:83.370000px;}
.y6a{bottom:94.140000px;}
.y113{bottom:95.400000px;}
.ybd{bottom:97.020000px;}
.ya5{bottom:99.900000px;}
.y13b{bottom:103.500000px;}
.ydc{bottom:108.900000px;}
.y112{bottom:110.160000px;}
.y32{bottom:113.040000px;}
.ybc{bottom:113.580000px;}
.y69{bottom:113.940000px;}
.yc9{bottom:116.895000px;}
.ya6{bottom:119.880000px;}
.y13a{bottom:123.300000px;}
.ydb{bottom:125.460000px;}
.y16a{bottom:126.540000px;}
.yc1{bottom:127.830000px;}
.ydf{bottom:127.980000px;}
.y111{bottom:129.960000px;}
.y31{bottom:132.840000px;}
.y68{bottom:133.740000px;}
.y16e{bottom:138.960000px;}
.ya2{bottom:139.680000px;}
.y139{bottom:143.100000px;}
.y169{bottom:146.340000px;}
.y10f{bottom:149.760000px;}
.y30{bottom:152.670000px;}
.y67{bottom:153.570000px;}
.yca{bottom:154.155000px;}
.ya4{bottom:159.510000px;}
.y138{bottom:162.930000px;}
.y168{bottom:166.350000px;}
.y10e{bottom:169.590000px;}
.yc2{bottom:172.290000px;}
.ye0{bottom:172.620000px;}
.y2f{bottom:172.650000px;}
.y66{bottom:173.370000px;}
.y9f{bottom:179.310000px;}
.y137{bottom:182.730000px;}
.y167{bottom:186.150000px;}
.y10d{bottom:189.570000px;}
.ycb{bottom:191.445000px;}
.y2e{bottom:192.450000px;}
.y65{bottom:193.350000px;}
.ya1{bottom:199.110000px;}
.y136{bottom:202.710000px;}
.y10c{bottom:210.090000px;}
.y2d{bottom:212.250000px;}
.y64{bottom:213.150000px;}
.y166{bottom:214.950000px;}
.yc3{bottom:216.795000px;}
.ye1{bottom:217.230000px;}
.y9e{bottom:219.810000px;}
.y135{bottom:222.510000px;}
.ycc{bottom:228.705000px;}
.y2c{bottom:232.050000px;}
.y63{bottom:232.950000px;}
.y165{bottom:234.750000px;}
.y10b{bottom:236.550000px;}
.y134{bottom:242.310000px;}
.y9d{bottom:246.090000px;}
.y2b{bottom:251.850000px;}
.y62{bottom:252.750000px;}
.y164{bottom:254.550000px;}
.y10a{bottom:256.350000px;}
.y133{bottom:262.110000px;}
.y9c{bottom:266.070000px;}
.yc5{bottom:266.580000px;}
.ye2{bottom:267.045000px;}
.y2a{bottom:271.830000px;}
.y61{bottom:272.550000px;}
.y163{bottom:274.530000px;}
.ycd{bottom:274.860000px;}
.y109{bottom:276.150000px;}
.y132{bottom:281.910000px;}
.y9b{bottom:285.870000px;}
.yc4{bottom:290.700000px;}
.y29{bottom:291.630000px;}
.y60{bottom:292.530000px;}
.y162{bottom:294.330000px;}
.y108{bottom:295.950000px;}
.y131{bottom:301.890000px;}
.y9a{bottom:305.670000px;}
.y28{bottom:311.430000px;}
.y5f{bottom:312.330000px;}
.y161{bottom:314.130000px;}
.y107{bottom:315.750000px;}
.y130{bottom:321.690000px;}
.y99{bottom:325.470000px;}
.y27{bottom:331.230000px;}
.y5e{bottom:332.130000px;}
.y160{bottom:333.930000px;}
.y106{bottom:335.730000px;}
.y12f{bottom:341.490000px;}
.y98{bottom:345.270000px;}
.y26{bottom:351.030000px;}
.y5d{bottom:351.930000px;}
.y15f{bottom:353.730000px;}
.y105{bottom:355.530000px;}
.y12e{bottom:361.290000px;}
.y97{bottom:365.250000px;}
.y25{bottom:371.010000px;}
.y5c{bottom:371.730000px;}
.y15e{bottom:373.710000px;}
.y104{bottom:375.330000px;}
.y12d{bottom:381.090000px;}
.y96{bottom:385.050000px;}
.y103{bottom:390.090000px;}
.y24{bottom:390.810000px;}
.y5b{bottom:391.710000px;}
.y15d{bottom:393.510000px;}
.y16d{bottom:398.550000px;}
.y12c{bottom:401.115000px;}
.y95{bottom:404.895000px;}
.y23{bottom:410.655000px;}
.y5a{bottom:411.555000px;}
.y102{bottom:411.915000px;}
.y15c{bottom:413.355000px;}
.y16c{bottom:418.395000px;}
.y12b{bottom:420.915000px;}
.y94{bottom:424.695000px;}
.ybb{bottom:425.415000px;}
.y22{bottom:430.455000px;}
.y59{bottom:431.355000px;}
.y15b{bottom:433.155000px;}
.y101{bottom:434.415000px;}
.y12a{bottom:440.715000px;}
.y93{bottom:444.495000px;}
.yba{bottom:445.395000px;}
.y16b{bottom:448.455000px;}
.y21{bottom:450.255000px;}
.y58{bottom:451.155000px;}
.y15a{bottom:452.955000px;}
.yda{bottom:457.815000px;}
.y129{bottom:460.515000px;}
.y100{bottom:462.675000px;}
.y92{bottom:464.475000px;}
.yb9{bottom:465.195000px;}
.y20{bottom:470.235000px;}
.y57{bottom:470.955000px;}
.y159{bottom:472.935000px;}
.yd9{bottom:477.615000px;}
.y128{bottom:480.315000px;}
.yff{bottom:482.475000px;}
.y91{bottom:484.275000px;}
.yb8{bottom:484.995000px;}
.y1f{bottom:490.035000px;}
.y56{bottom:490.935000px;}
.y158{bottom:492.735000px;}
.yd8{bottom:497.415000px;}
.y8c{bottom:499.035000px;}
.y127{bottom:500.295000px;}
.yfe{bottom:502.455000px;}
.yb7{bottom:504.795000px;}
.y1e{bottom:509.835000px;}
.y55{bottom:510.735000px;}
.y157{bottom:512.535000px;}
.yd7{bottom:517.215000px;}
.y90{bottom:518.835000px;}
.y126{bottom:520.095000px;}
.yfd{bottom:522.255000px;}
.yb6{bottom:524.595000px;}
.y1d{bottom:529.635000px;}
.y54{bottom:530.535000px;}
.y156{bottom:532.335000px;}
.yd6{bottom:537.015000px;}
.y8f{bottom:538.635000px;}
.y125{bottom:539.895000px;}
.yfc{bottom:542.055000px;}
.yb5{bottom:544.575000px;}
.y1c{bottom:549.435000px;}
.y53{bottom:550.335000px;}
.y155{bottom:552.135000px;}
.y124{bottom:554.655000px;}
.yd5{bottom:556.995000px;}
.y8e{bottom:558.435000px;}
.yfb{bottom:561.855000px;}
.yb4{bottom:564.375000px;}
.y1b{bottom:569.415000px;}
.y52{bottom:570.135000px;}
.y154{bottom:572.115000px;}
.yd4{bottom:576.795000px;}
.y85{bottom:578.415000px;}
.yfa{bottom:581.655000px;}
.y1a{bottom:589.215000px;}
.y51{bottom:590.115000px;}
.y153{bottom:591.915000px;}
.yb3{bottom:593.175000px;}
.yd3{bottom:596.595000px;}
.y8a{bottom:599.115000px;}
.yf9{bottom:601.635000px;}
.yb2{bottom:609.735000px;}
.y50{bottom:609.915000px;}
.ybe{bottom:610.020000px;}
.y152{bottom:611.715000px;}
.y123{bottom:614.235000px;}
.yd2{bottom:616.395000px;}
.y89{bottom:619.995000px;}
.y19{bottom:620.175000px;}
.yf8{bottom:621.435000px;}
.y4f{bottom:629.715000px;}
.y151{bottom:631.515000px;}
.yd1{bottom:636.195000px;}
.y88{bottom:640.875000px;}
.y18{bottom:649.185000px;}
.y4e{bottom:649.545000px;}
.y150{bottom:651.345000px;}
.y121{bottom:653.865000px;}
.yf6{bottom:656.025000px;}
.y87{bottom:661.785000px;}
.yd0{bottom:665.205000px;}
.y17{bottom:668.985000px;}
.y4d{bottom:669.345000px;}
.y14f{bottom:671.325000px;}
.ycf{bottom:681.585000px;}
.y7d{bottom:682.665000px;}
.ydd{bottom:683.100000px;}
.y16{bottom:688.785000px;}
.y4c{bottom:689.325000px;}
.y14e{bottom:691.125000px;}
.yf4{bottom:695.805000px;}
.y82{bottom:703.545000px;}
.y15{bottom:708.585000px;}
.y4b{bottom:709.125000px;}
.y14d{bottom:710.925000px;}
.y120{bottom:714.165000px;}
.yf2{bottom:716.325000px;}
.y81{bottom:723.525000px;}
.y14{bottom:728.385000px;}
.y4a{bottom:728.925000px;}
.y14c{bottom:730.725000px;}
.y80{bottom:743.325000px;}
.y13{bottom:748.365000px;}
.y49{bottom:748.725000px;}
.y14b{bottom:759.525000px;}
.y11f{bottom:760.425000px;}
.y79{bottom:763.845000px;}
.y12{bottom:768.165000px;}
.y48{bottom:768.525000px;}
.y14a{bottom:779.505000px;}
.y11e{bottom:780.225000px;}
.yf1{bottom:782.385000px;}
.y11{bottom:787.965000px;}
.y47{bottom:788.505000px;}
.y149{bottom:799.305000px;}
.y11d{bottom:800.025000px;}
.yf0{bottom:802.185000px;}
.y10{bottom:807.765000px;}
.y46{bottom:808.305000px;}
.y78{bottom:810.105000px;}
.y148{bottom:819.105000px;}
.y11c{bottom:819.825000px;}
.yef{bottom:821.985000px;}
.yf{bottom:827.565000px;}
.y45{bottom:828.105000px;}
.y77{bottom:829.905000px;}
.y147{bottom:838.905000px;}
.y11b{bottom:839.805000px;}
.yee{bottom:841.785000px;}
.ye{bottom:847.365000px;}
.y44{bottom:847.905000px;}
.y76{bottom:849.705000px;}
.y146{bottom:858.705000px;}
.y11a{bottom:859.605000px;}
.yed{bottom:861.765000px;}
.y43{bottom:867.705000px;}
.yd{bottom:869.505000px;}
.y75{bottom:869.685000px;}
.y145{bottom:878.685000px;}
.y119{bottom:879.405000px;}
.yec{bottom:881.565000px;}
.y42{bottom:887.685000px;}
.y74{bottom:889.485000px;}
.yc{bottom:894.525000px;}
.y144{bottom:898.530000px;}
.y118{bottom:899.250000px;}
.yeb{bottom:901.410000px;}
.y41{bottom:907.530000px;}
.y73{bottom:909.330000px;}
.y117{bottom:914.010000px;}
.yb{bottom:914.550000px;}
.y143{bottom:918.330000px;}
.yea{bottom:921.210000px;}
.y40{bottom:927.330000px;}
.y72{bottom:929.130000px;}
.ya{bottom:929.670000px;}
.ye8{bottom:935.970000px;}
.yb1{bottom:937.410000px;}
.y142{bottom:938.130000px;}
.y3f{bottom:947.130000px;}
.y71{bottom:948.930000px;}
.y9{bottom:950.910000px;}
.yb0{bottom:957.210000px;}
.ye7{bottom:957.750000px;}
.y141{bottom:957.930000px;}
.y3e{bottom:966.930000px;}
.y70{bottom:968.910000px;}
.y8{bottom:974.310000px;}
.y115{bottom:975.570000px;}
.yaf{bottom:977.010000px;}
.y140{bottom:977.910000px;}
.y3d{bottom:986.910000px;}
.y6f{bottom:988.710000px;}
.yae{bottom:996.990000px;}
.ye5{bottom:997.530000px;}
.y13f{bottom:997.710000px;}
.y114{bottom:998.070000px;}
.y7{bottom:1006.170000px;}
.y3c{bottom:1006.710000px;}
.y6e{bottom:1008.510000px;}
.yad{bottom:1016.790000px;}
.y13e{bottom:1017.510000px;}
.ye3{bottom:1020.030000px;}
.y3b{bottom:1026.510000px;}
.y6d{bottom:1028.310000px;}
.yac{bottom:1036.590000px;}
.y13d{bottom:1037.310000px;}
.y3a{bottom:1046.310000px;}
.y6c{bottom:1048.110000px;}
.y5{bottom:1051.170000px;}
.y13c{bottom:1057.110000px;}
.yab{bottom:1065.390000px;}
.y39{bottom:1066.110000px;}
.y6b{bottom:1068.090000px;}
.yaa{bottom:1080.150000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.ya9{bottom:1100.130000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.ya8{bottom:1119.930000px;}
.y36{bottom:1125.690000px;}
.ya7{bottom:1139.730000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h25{height:2.010938px;}
.hd{height:19.800000px;}
.h15{height:19.836000px;}
.he{height:19.980000px;}
.h12{height:20.700000px;}
.hf{height:20.880000px;}
.h11{height:20.916000px;}
.h1d{height:21.600000px;}
.h1e{height:21.780000px;}
.h20{height:21.816000px;}
.h21{height:21.960000px;}
.h7{height:27.147656px;}
.h17{height:37.705078px;}
.h1a{height:37.805625px;}
.h1c{height:39.600000px;}
.h14{height:39.636000px;}
.hb{height:39.780000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h23{height:50.273438px;}
.h6{height:53.224453px;}
.h18{height:58.819922px;}
.h1f{height:59.400000px;}
.h22{height:59.580000px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h13{height:79.380000px;}
.hc{height:80.460000px;}
.h24{height:84.456000px;}
.h10{height:104.256000px;}
.h1b{height:297.900000px;}
.h19{height:305.820000px;}
.h16{height:321.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:73.836000px;}
.w20{width:76.320000px;}
.w1f{width:80.136000px;}
.w21{width:91.980000px;}
.w23{width:92.700000px;}
.w10{width:96.156000px;}
.wf{width:96.300000px;}
.w7{width:99.216000px;}
.w4{width:106.236000px;}
.w17{width:125.676000px;}
.w1c{width:126.036000px;}
.w15{width:127.620000px;}
.w8{width:132.300000px;}
.w1d{width:132.660000px;}
.w18{width:142.560000px;}
.w11{width:147.420000px;}
.w13{width:159.510000px;}
.w14{width:170.130000px;}
.w24{width:210.810000px;}
.wa{width:216.210000px;}
.w1a{width:217.650000px;}
.w9{width:223.410000px;}
.w19{width:227.550000px;}
.we{width:233.490000px;}
.w12{width:255.090000px;}
.w3{width:255.270000px;}
.w1e{width:276.150000px;}
.w1b{width:306.390000px;}
.w5{width:318.990000px;}
.w16{width:422.895000px;}
.w6{width:439.635000px;}
.w25{width:581.010000px;}
.wd{width:604.080000px;}
.wc{width:608.220000px;}
.wb{width:637.380000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:5.039987px;}
.x4{left:8.100000px;}
.x10{left:9.795000px;}
.x31{left:41.039987px;}
.x1c{left:49.425000px;}
.x15{left:51.765000px;}
.x1{left:54.179987px;}
.x30{left:80.999987px;}
.x11{left:82.335000px;}
.x22{left:90.396000px;}
.x2{left:96.515987px;}
.x25{left:101.016000px;}
.x3{left:106.236000px;}
.xb{left:108.035987px;}
.x7{left:110.916000px;}
.x14{left:141.480000px;}
.xf{left:144.000000px;}
.xc{left:166.529987px;}
.x17{left:168.690000px;}
.x1d{left:181.110000px;}
.x13{left:182.775000px;}
.x33{left:191.370000px;}
.x16{left:197.820000px;}
.x19{left:243.029987px;}
.xe{left:261.389987px;}
.x34{left:264.810000px;}
.x1b{left:288.974987px;}
.x12{left:304.125000px;}
.xa{left:334.335000px;}
.x27{left:337.755000px;}
.x1e{left:345.315000px;}
.x5{left:361.515000px;}
.x2c{left:377.175000px;}
.x29{left:407.415000px;}
.x1f{left:441.615000px;}
.x2d{left:457.305000px;}
.x6{left:467.745000px;}
.x23{left:505.005000px;}
.x26{left:523.905000px;}
.x2a{left:533.445000px;}
.x20{left:537.765000px;}
.x8{left:550.545000px;}
.x28{left:565.305000px;}
.x2e{left:625.605000px;}
.x21{left:633.930000px;}
.x9{left:649.770000px;}
.x2b{left:659.490000px;}
.x24{left:675.150000px;}
.x2f{left:699.450000px;}
.x18{left:749.129987px;}
.xd{left:751.469987px;}
.x1a{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.592000pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls1{letter-spacing:28.752640pt;}
.lsd{letter-spacing:31.952640pt;}
.ls19{letter-spacing:37.072640pt;}
.ls15{letter-spacing:40.272640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.049067pt;}
.ws16{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:173.536000pt;}
.ws15{word-spacing:173.760000pt;}
.ws13{word-spacing:173.813333pt;}
.wsf{word-spacing:174.368000pt;}
.wse{word-spacing:174.592000pt;}
.ws10{word-spacing:174.698667pt;}
.wsc{word-spacing:186.080000pt;}
.ws12{word-spacing:186.720000pt;}
.wsd{word-spacing:187.477333pt;}
.wsb{word-spacing:199.093333pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._b{margin-left:-8.224853pt;}
._4{margin-left:-7.301120pt;}
._d{margin-left:-5.911040pt;}
._c{margin-left:-4.894507pt;}
._9{margin-left:-3.940267pt;}
._e{margin-left:-3.030400pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.288853pt;}
._12{width:3.288107pt;}
._f{width:4.746453pt;}
._14{width:5.949440pt;}
._13{width:7.117227pt;}
._10{width:8.242560pt;}
._11{width:9.287040pt;}
._15{width:10.875520pt;}
._16{width:11.787307pt;}
._1a{width:14.457600pt;}
._19{width:16.096427pt;}
._17{width:17.185067pt;}
._18{width:18.520533pt;}
._28{width:20.185600pt;}
._27{width:21.150720pt;}
._2b{width:22.512000pt;}
._26{width:26.400640pt;}
._24{width:27.781760pt;}
._23{width:28.950400pt;}
._25{width:29.844267pt;}
._29{width:37.352320pt;}
._2a{width:38.562987pt;}
._21{width:47.276800pt;}
._20{width:56.422400pt;}
._1b{width:59.706880pt;}
._22{width:78.148480pt;}
._1e{width:79.157333pt;}
._1f{width:211.616000pt;}
._1d{width:223.040000pt;}
._1c{width:2272.072747pt;}
.fs9{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:5.120000pt;}
.y110{bottom:5.146667pt;}
.y83{bottom:5.280000pt;}
.y84{bottom:5.600000pt;}
.y8b{bottom:5.760000pt;}
.ye6{bottom:5.920000pt;}
.ye9{bottom:6.080000pt;}
.yf5{bottom:8.800000pt;}
.y173{bottom:9.600000pt;}
.y116{bottom:9.760000pt;}
.ya0{bottom:13.920000pt;}
.y7a{bottom:14.080000pt;}
.yce{bottom:14.560000pt;}
.yc6{bottom:14.626667pt;}
.yf7{bottom:17.600000pt;}
.ye4{bottom:22.720000pt;}
.ya3{bottom:22.746667pt;}
.y7b{bottom:22.880000pt;}
.y7f{bottom:23.200000pt;}
.y172{bottom:27.226667pt;}
.y16f{bottom:31.066667pt;}
.y8d{bottom:31.520000pt;}
.yc7{bottom:40.133333pt;}
.ybf{bottom:40.186667pt;}
.yf3{bottom:40.320000pt;}
.y122{bottom:40.480000pt;}
.y7e{bottom:40.960000pt;}
.y86{bottom:42.560000pt;}
.y171{bottom:44.986667pt;}
.y6{bottom:58.880000pt;}
.y170{bottom:62.586667pt;}
.yc8{bottom:70.786667pt;}
.yc0{bottom:74.080000pt;}
.yde{bottom:74.106667pt;}
.y6a{bottom:83.680000pt;}
.y113{bottom:84.800000pt;}
.ybd{bottom:86.240000pt;}
.ya5{bottom:88.800000pt;}
.y13b{bottom:92.000000pt;}
.ydc{bottom:96.800000pt;}
.y112{bottom:97.920000pt;}
.y32{bottom:100.480000pt;}
.ybc{bottom:100.960000pt;}
.y69{bottom:101.280000pt;}
.yc9{bottom:103.906667pt;}
.ya6{bottom:106.560000pt;}
.y13a{bottom:109.600000pt;}
.ydb{bottom:111.520000pt;}
.y16a{bottom:112.480000pt;}
.yc1{bottom:113.626667pt;}
.ydf{bottom:113.760000pt;}
.y111{bottom:115.520000pt;}
.y31{bottom:118.080000pt;}
.y68{bottom:118.880000pt;}
.y16e{bottom:123.520000pt;}
.ya2{bottom:124.160000pt;}
.y139{bottom:127.200000pt;}
.y169{bottom:130.080000pt;}
.y10f{bottom:133.120000pt;}
.y30{bottom:135.706667pt;}
.y67{bottom:136.506667pt;}
.yca{bottom:137.026667pt;}
.ya4{bottom:141.786667pt;}
.y138{bottom:144.826667pt;}
.y168{bottom:147.866667pt;}
.y10e{bottom:150.746667pt;}
.yc2{bottom:153.146667pt;}
.ye0{bottom:153.440000pt;}
.y2f{bottom:153.466667pt;}
.y66{bottom:154.106667pt;}
.y9f{bottom:159.386667pt;}
.y137{bottom:162.426667pt;}
.y167{bottom:165.466667pt;}
.y10d{bottom:168.506667pt;}
.ycb{bottom:170.173333pt;}
.y2e{bottom:171.066667pt;}
.y65{bottom:171.866667pt;}
.ya1{bottom:176.986667pt;}
.y136{bottom:180.186667pt;}
.y10c{bottom:186.746667pt;}
.y2d{bottom:188.666667pt;}
.y64{bottom:189.466667pt;}
.y166{bottom:191.066667pt;}
.yc3{bottom:192.706667pt;}
.ye1{bottom:193.093333pt;}
.y9e{bottom:195.386667pt;}
.y135{bottom:197.786667pt;}
.ycc{bottom:203.293333pt;}
.y2c{bottom:206.266667pt;}
.y63{bottom:207.066667pt;}
.y165{bottom:208.666667pt;}
.y10b{bottom:210.266667pt;}
.y134{bottom:215.386667pt;}
.y9d{bottom:218.746667pt;}
.y2b{bottom:223.866667pt;}
.y62{bottom:224.666667pt;}
.y164{bottom:226.266667pt;}
.y10a{bottom:227.866667pt;}
.y133{bottom:232.986667pt;}
.y9c{bottom:236.506667pt;}
.yc5{bottom:236.960000pt;}
.ye2{bottom:237.373333pt;}
.y2a{bottom:241.626667pt;}
.y61{bottom:242.266667pt;}
.y163{bottom:244.026667pt;}
.ycd{bottom:244.320000pt;}
.y109{bottom:245.466667pt;}
.y132{bottom:250.586667pt;}
.y9b{bottom:254.106667pt;}
.yc4{bottom:258.400000pt;}
.y29{bottom:259.226667pt;}
.y60{bottom:260.026667pt;}
.y162{bottom:261.626667pt;}
.y108{bottom:263.066667pt;}
.y131{bottom:268.346667pt;}
.y9a{bottom:271.706667pt;}
.y28{bottom:276.826667pt;}
.y5f{bottom:277.626667pt;}
.y161{bottom:279.226667pt;}
.y107{bottom:280.666667pt;}
.y130{bottom:285.946667pt;}
.y99{bottom:289.306667pt;}
.y27{bottom:294.426667pt;}
.y5e{bottom:295.226667pt;}
.y160{bottom:296.826667pt;}
.y106{bottom:298.426667pt;}
.y12f{bottom:303.546667pt;}
.y98{bottom:306.906667pt;}
.y26{bottom:312.026667pt;}
.y5d{bottom:312.826667pt;}
.y15f{bottom:314.426667pt;}
.y105{bottom:316.026667pt;}
.y12e{bottom:321.146667pt;}
.y97{bottom:324.666667pt;}
.y25{bottom:329.786667pt;}
.y5c{bottom:330.426667pt;}
.y15e{bottom:332.186667pt;}
.y104{bottom:333.626667pt;}
.y12d{bottom:338.746667pt;}
.y96{bottom:342.266667pt;}
.y103{bottom:346.746667pt;}
.y24{bottom:347.386667pt;}
.y5b{bottom:348.186667pt;}
.y15d{bottom:349.786667pt;}
.y16d{bottom:354.266667pt;}
.y12c{bottom:356.546667pt;}
.y95{bottom:359.906667pt;}
.y23{bottom:365.026667pt;}
.y5a{bottom:365.826667pt;}
.y102{bottom:366.146667pt;}
.y15c{bottom:367.426667pt;}
.y16c{bottom:371.906667pt;}
.y12b{bottom:374.146667pt;}
.y94{bottom:377.506667pt;}
.ybb{bottom:378.146667pt;}
.y22{bottom:382.626667pt;}
.y59{bottom:383.426667pt;}
.y15b{bottom:385.026667pt;}
.y101{bottom:386.146667pt;}
.y12a{bottom:391.746667pt;}
.y93{bottom:395.106667pt;}
.yba{bottom:395.906667pt;}
.y16b{bottom:398.626667pt;}
.y21{bottom:400.226667pt;}
.y58{bottom:401.026667pt;}
.y15a{bottom:402.626667pt;}
.yda{bottom:406.946667pt;}
.y129{bottom:409.346667pt;}
.y100{bottom:411.266667pt;}
.y92{bottom:412.866667pt;}
.yb9{bottom:413.506667pt;}
.y20{bottom:417.986667pt;}
.y57{bottom:418.626667pt;}
.y159{bottom:420.386667pt;}
.yd9{bottom:424.546667pt;}
.y128{bottom:426.946667pt;}
.yff{bottom:428.866667pt;}
.y91{bottom:430.466667pt;}
.yb8{bottom:431.106667pt;}
.y1f{bottom:435.586667pt;}
.y56{bottom:436.386667pt;}
.y158{bottom:437.986667pt;}
.yd8{bottom:442.146667pt;}
.y8c{bottom:443.586667pt;}
.y127{bottom:444.706667pt;}
.yfe{bottom:446.626667pt;}
.yb7{bottom:448.706667pt;}
.y1e{bottom:453.186667pt;}
.y55{bottom:453.986667pt;}
.y157{bottom:455.586667pt;}
.yd7{bottom:459.746667pt;}
.y90{bottom:461.186667pt;}
.y126{bottom:462.306667pt;}
.yfd{bottom:464.226667pt;}
.yb6{bottom:466.306667pt;}
.y1d{bottom:470.786667pt;}
.y54{bottom:471.586667pt;}
.y156{bottom:473.186667pt;}
.yd6{bottom:477.346667pt;}
.y8f{bottom:478.786667pt;}
.y125{bottom:479.906667pt;}
.yfc{bottom:481.826667pt;}
.yb5{bottom:484.066667pt;}
.y1c{bottom:488.386667pt;}
.y53{bottom:489.186667pt;}
.y155{bottom:490.786667pt;}
.y124{bottom:493.026667pt;}
.yd5{bottom:495.106667pt;}
.y8e{bottom:496.386667pt;}
.yfb{bottom:499.426667pt;}
.yb4{bottom:501.666667pt;}
.y1b{bottom:506.146667pt;}
.y52{bottom:506.786667pt;}
.y154{bottom:508.546667pt;}
.yd4{bottom:512.706667pt;}
.y85{bottom:514.146667pt;}
.yfa{bottom:517.026667pt;}
.y1a{bottom:523.746667pt;}
.y51{bottom:524.546667pt;}
.y153{bottom:526.146667pt;}
.yb3{bottom:527.266667pt;}
.yd3{bottom:530.306667pt;}
.y8a{bottom:532.546667pt;}
.yf9{bottom:534.786667pt;}
.yb2{bottom:541.986667pt;}
.y50{bottom:542.146667pt;}
.ybe{bottom:542.240000pt;}
.y152{bottom:543.746667pt;}
.y123{bottom:545.986667pt;}
.yd2{bottom:547.906667pt;}
.y89{bottom:551.106667pt;}
.y19{bottom:551.266667pt;}
.yf8{bottom:552.386667pt;}
.y4f{bottom:559.746667pt;}
.y151{bottom:561.346667pt;}
.yd1{bottom:565.506667pt;}
.y88{bottom:569.666667pt;}
.y18{bottom:577.053333pt;}
.y4e{bottom:577.373333pt;}
.y150{bottom:578.973333pt;}
.y121{bottom:581.213333pt;}
.yf6{bottom:583.133333pt;}
.y87{bottom:588.253333pt;}
.yd0{bottom:591.293333pt;}
.y17{bottom:594.653333pt;}
.y4d{bottom:594.973333pt;}
.y14f{bottom:596.733333pt;}
.ycf{bottom:605.853333pt;}
.y7d{bottom:606.813333pt;}
.ydd{bottom:607.200000pt;}
.y16{bottom:612.253333pt;}
.y4c{bottom:612.733333pt;}
.y14e{bottom:614.333333pt;}
.yf4{bottom:618.493333pt;}
.y82{bottom:625.373333pt;}
.y15{bottom:629.853333pt;}
.y4b{bottom:630.333333pt;}
.y14d{bottom:631.933333pt;}
.y120{bottom:634.813333pt;}
.yf2{bottom:636.733333pt;}
.y81{bottom:643.133333pt;}
.y14{bottom:647.453333pt;}
.y4a{bottom:647.933333pt;}
.y14c{bottom:649.533333pt;}
.y80{bottom:660.733333pt;}
.y13{bottom:665.213333pt;}
.y49{bottom:665.533333pt;}
.y14b{bottom:675.133333pt;}
.y11f{bottom:675.933333pt;}
.y79{bottom:678.973333pt;}
.y12{bottom:682.813333pt;}
.y48{bottom:683.133333pt;}
.y14a{bottom:692.893333pt;}
.y11e{bottom:693.533333pt;}
.yf1{bottom:695.453333pt;}
.y11{bottom:700.413333pt;}
.y47{bottom:700.893333pt;}
.y149{bottom:710.493333pt;}
.y11d{bottom:711.133333pt;}
.yf0{bottom:713.053333pt;}
.y10{bottom:718.013333pt;}
.y46{bottom:718.493333pt;}
.y78{bottom:720.093333pt;}
.y148{bottom:728.093333pt;}
.y11c{bottom:728.733333pt;}
.yef{bottom:730.653333pt;}
.yf{bottom:735.613333pt;}
.y45{bottom:736.093333pt;}
.y77{bottom:737.693333pt;}
.y147{bottom:745.693333pt;}
.y11b{bottom:746.493333pt;}
.yee{bottom:748.253333pt;}
.ye{bottom:753.213333pt;}
.y44{bottom:753.693333pt;}
.y76{bottom:755.293333pt;}
.y146{bottom:763.293333pt;}
.y11a{bottom:764.093333pt;}
.yed{bottom:766.013333pt;}
.y43{bottom:771.293333pt;}
.yd{bottom:772.893333pt;}
.y75{bottom:773.053333pt;}
.y145{bottom:781.053333pt;}
.y119{bottom:781.693333pt;}
.yec{bottom:783.613333pt;}
.y42{bottom:789.053333pt;}
.y74{bottom:790.653333pt;}
.yc{bottom:795.133333pt;}
.y144{bottom:798.693333pt;}
.y118{bottom:799.333333pt;}
.yeb{bottom:801.253333pt;}
.y41{bottom:806.693333pt;}
.y73{bottom:808.293333pt;}
.y117{bottom:812.453333pt;}
.yb{bottom:812.933333pt;}
.y143{bottom:816.293333pt;}
.yea{bottom:818.853333pt;}
.y40{bottom:824.293333pt;}
.y72{bottom:825.893333pt;}
.ya{bottom:826.373333pt;}
.ye8{bottom:831.973333pt;}
.yb1{bottom:833.253333pt;}
.y142{bottom:833.893333pt;}
.y3f{bottom:841.893333pt;}
.y71{bottom:843.493333pt;}
.y9{bottom:845.253333pt;}
.yb0{bottom:850.853333pt;}
.ye7{bottom:851.333333pt;}
.y141{bottom:851.493333pt;}
.y3e{bottom:859.493333pt;}
.y70{bottom:861.253333pt;}
.y8{bottom:866.053333pt;}
.y115{bottom:867.173333pt;}
.yaf{bottom:868.453333pt;}
.y140{bottom:869.253333pt;}
.y3d{bottom:877.253333pt;}
.y6f{bottom:878.853333pt;}
.yae{bottom:886.213333pt;}
.ye5{bottom:886.693333pt;}
.y13f{bottom:886.853333pt;}
.y114{bottom:887.173333pt;}
.y7{bottom:894.373333pt;}
.y3c{bottom:894.853333pt;}
.y6e{bottom:896.453333pt;}
.yad{bottom:903.813333pt;}
.y13e{bottom:904.453333pt;}
.ye3{bottom:906.693333pt;}
.y3b{bottom:912.453333pt;}
.y6d{bottom:914.053333pt;}
.yac{bottom:921.413333pt;}
.y13d{bottom:922.053333pt;}
.y3a{bottom:930.053333pt;}
.y6c{bottom:931.653333pt;}
.y5{bottom:934.373333pt;}
.y13c{bottom:939.653333pt;}
.yab{bottom:947.013333pt;}
.y39{bottom:947.653333pt;}
.y6b{bottom:949.413333pt;}
.yaa{bottom:960.133333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.ya9{bottom:977.893333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.ya8{bottom:995.493333pt;}
.y36{bottom:1000.613333pt;}
.ya7{bottom:1013.093333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h25{height:1.787500pt;}
.hd{height:17.600000pt;}
.h15{height:17.632000pt;}
.he{height:17.760000pt;}
.h12{height:18.400000pt;}
.hf{height:18.560000pt;}
.h11{height:18.592000pt;}
.h1d{height:19.200000pt;}
.h1e{height:19.360000pt;}
.h20{height:19.392000pt;}
.h21{height:19.520000pt;}
.h7{height:24.131250pt;}
.h17{height:33.515625pt;}
.h1a{height:33.605000pt;}
.h1c{height:35.200000pt;}
.h14{height:35.232000pt;}
.hb{height:35.360000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h23{height:44.687500pt;}
.h6{height:47.310625pt;}
.h18{height:52.284375pt;}
.h1f{height:52.800000pt;}
.h22{height:52.960000pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h13{height:70.560000pt;}
.hc{height:71.520000pt;}
.h24{height:75.072000pt;}
.h10{height:92.672000pt;}
.h1b{height:264.800000pt;}
.h19{height:271.840000pt;}
.h16{height:285.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:65.632000pt;}
.w20{width:67.840000pt;}
.w1f{width:71.232000pt;}
.w21{width:81.760000pt;}
.w23{width:82.400000pt;}
.w10{width:85.472000pt;}
.wf{width:85.600000pt;}
.w7{width:88.192000pt;}
.w4{width:94.432000pt;}
.w17{width:111.712000pt;}
.w1c{width:112.032000pt;}
.w15{width:113.440000pt;}
.w8{width:117.600000pt;}
.w1d{width:117.920000pt;}
.w18{width:126.720000pt;}
.w11{width:131.040000pt;}
.w13{width:141.786667pt;}
.w14{width:151.226667pt;}
.w24{width:187.386667pt;}
.wa{width:192.186667pt;}
.w1a{width:193.466667pt;}
.w9{width:198.586667pt;}
.w19{width:202.266667pt;}
.we{width:207.546667pt;}
.w12{width:226.746667pt;}
.w3{width:226.906667pt;}
.w1e{width:245.466667pt;}
.w1b{width:272.346667pt;}
.w5{width:283.546667pt;}
.w16{width:375.906667pt;}
.w6{width:390.786667pt;}
.w25{width:516.453333pt;}
.wd{width:536.960000pt;}
.wc{width:540.640000pt;}
.wb{width:566.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:4.479988pt;}
.x4{left:7.200000pt;}
.x10{left:8.706667pt;}
.x31{left:36.479988pt;}
.x1c{left:43.933333pt;}
.x15{left:46.013333pt;}
.x1{left:48.159988pt;}
.x30{left:71.999988pt;}
.x11{left:73.186667pt;}
.x22{left:80.352000pt;}
.x2{left:85.791988pt;}
.x25{left:89.792000pt;}
.x3{left:94.432000pt;}
.xb{left:96.031988pt;}
.x7{left:98.592000pt;}
.x14{left:125.760000pt;}
.xf{left:128.000000pt;}
.xc{left:148.026655pt;}
.x17{left:149.946667pt;}
.x1d{left:160.986667pt;}
.x13{left:162.466667pt;}
.x33{left:170.106667pt;}
.x16{left:175.840000pt;}
.x19{left:216.026655pt;}
.xe{left:232.346655pt;}
.x34{left:235.386667pt;}
.x1b{left:256.866655pt;}
.x12{left:270.333333pt;}
.xa{left:297.186667pt;}
.x27{left:300.226667pt;}
.x1e{left:306.946667pt;}
.x5{left:321.346667pt;}
.x2c{left:335.266667pt;}
.x29{left:362.146667pt;}
.x1f{left:392.546667pt;}
.x2d{left:406.493333pt;}
.x6{left:415.773333pt;}
.x23{left:448.893333pt;}
.x26{left:465.693333pt;}
.x2a{left:474.173333pt;}
.x20{left:478.013333pt;}
.x8{left:489.373333pt;}
.x28{left:502.493333pt;}
.x2e{left:556.093333pt;}
.x21{left:563.493333pt;}
.x9{left:577.573333pt;}
.x2b{left:586.213333pt;}
.x24{left:600.133333pt;}
.x2f{left:621.733333pt;}
.x18{left:665.893322pt;}
.xd{left:667.973322pt;}
.x1a{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; }
  