
    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_a5fbf6ccb7443120ce980823.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_8c31b7488be1ca66b171ef95.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_2c2f62a9a4c94ec3d1db39eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_2037c327cc58595b93597a97.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_788ff36c025edf041783a1f0.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_94a7c0b45194d69854298d07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.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_f808893167735c6b2eedf016.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lse{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.ls19{letter-spacing:6.065280px;}
.lsb{letter-spacing:6.660000px;}
.lsd{letter-spacing:19.620000px;}
.ls16{letter-spacing:25.308000px;}
.ls14{letter-spacing:52.668000px;}
.ls13{letter-spacing:52.812000px;}
.ls0{letter-spacing:1393.860000px;}
.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;}
}
.ws3{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws6{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.626000px;}
.ws8{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-1393.860000px;}
._17{margin-left:-3.639600px;}
._b{margin-left:-2.632800px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._6{width:2.288880px;}
._a{width:3.380400px;}
._7{width:4.763760px;}
._8{width:5.910000px;}
._14{width:6.912000px;}
._c{width:7.948080px;}
._e{width:8.964000px;}
._9{width:10.282080px;}
._d{width:11.672640px;}
._f{width:15.012000px;}
._15{width:16.200000px;}
._1c{width:17.226000px;}
._16{width:18.306000px;}
._1a{width:19.548000px;}
._1b{width:21.438000px;}
._10{width:22.734000px;}
._1d{width:24.732000px;}
._12{width:26.352000px;}
._13{width:27.450000px;}
._28{width:28.614000px;}
._19{width:29.700000px;}
._18{width:30.726000px;}
._23{width:31.806000px;}
._20{width:32.994000px;}
._1f{width:34.020000px;}
._11{width:35.748000px;}
._24{width:37.452000px;}
._1e{width:38.556000px;}
._3a{width:39.708000px;}
._27{width:41.094000px;}
._38{width:42.822000px;}
._32{width:43.920000px;}
._26{width:45.036000px;}
._25{width:46.278000px;}
._22{width:48.276000px;}
._21{width:49.302000px;}
._2b{width:50.328000px;}
._29{width:52.110000px;}
._2d{width:53.136000px;}
._3d{width:57.834000px;}
._45{width:61.686000px;}
._42{width:63.072000px;}
._31{width:64.206000px;}
._3f{width:81.414000px;}
._3e{width:82.512000px;}
._49{width:84.726000px;}
._4a{width:86.562000px;}
._3c{width:109.998000px;}
._40{width:116.046000px;}
._41{width:117.072000px;}
._2e{width:130.410000px;}
._2f{width:131.760000px;}
._46{width:139.428000px;}
._44{width:145.476000px;}
._36{width:190.980000px;}
._35{width:192.240000px;}
._48{width:197.010000px;}
._47{width:202.500000px;}
._39{width:206.604000px;}
._4b{width:293.742000px;}
._30{width:326.430000px;}
._3b{width:332.208000px;}
._33{width:337.428000px;}
._34{width:352.566000px;}
._37{width:386.994000px;}
._43{width:743.004000px;}
._2c{width:898.614000px;}
._2a{width:925.992000px;}
._2{width:1032.960000px;}
._3{width:1383.420000px;}
._4{width:1393.860000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(85,85,85);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y45{bottom:-7.020000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y2{bottom:18.540000px;}
.y44{bottom:20.550000px;}
.y5{bottom:39.600000px;}
.y43{bottom:49.350000px;}
.y1{bottom:60.660000px;}
.y42{bottom:69.150000px;}
.y41{bottom:88.950000px;}
.y2c{bottom:101.340000px;}
.y1c6{bottom:104.040000px;}
.y137{bottom:106.560000px;}
.y152{bottom:106.740000px;}
.y1bf{bottom:107.100000px;}
.y40{bottom:108.750000px;}
.y103{bottom:108.900000px;}
.y34{bottom:109.260000px;}
.ybd{bottom:115.740000px;}
.y81{bottom:116.820000px;}
.y19b{bottom:117.720000px;}
.y1c5{bottom:121.860000px;}
.y136{bottom:124.380000px;}
.y151{bottom:124.740000px;}
.y1be{bottom:124.920000px;}
.y102{bottom:126.720000px;}
.y2b{bottom:128.160000px;}
.y3f{bottom:128.730000px;}
.y173{bottom:133.560000px;}
.ybc{bottom:133.740000px;}
.y80{bottom:134.640000px;}
.y19a{bottom:135.720000px;}
.y33{bottom:136.080000px;}
.y1c4{bottom:139.680000px;}
.y10f{bottom:140.940000px;}
.y135{bottom:142.200000px;}
.y150{bottom:142.560000px;}
.y1bd{bottom:142.740000px;}
.y101{bottom:144.720000px;}
.y3e{bottom:148.530000px;}
.y172{bottom:151.380000px;}
.yd7{bottom:151.560000px;}
.y7f{bottom:152.640000px;}
.y199{bottom:153.540000px;}
.y2a{bottom:154.980000px;}
.y1c3{bottom:157.500000px;}
.y10e{bottom:158.760000px;}
.y134{bottom:160.020000px;}
.y14f{bottom:160.380000px;}
.ybb{bottom:160.560000px;}
.y1bc{bottom:160.740000px;}
.y100{bottom:162.540000px;}
.y32{bottom:162.900000px;}
.y3d{bottom:168.330000px;}
.y171{bottom:169.200000px;}
.yd6{bottom:169.380000px;}
.y7e{bottom:170.460000px;}
.y198{bottom:171.360000px;}
.y35{bottom:171.540000px;}
.y1c2{bottom:175.320000px;}
.y10d{bottom:176.610000px;}
.y133{bottom:177.870000px;}
.y14e{bottom:178.230000px;}
.yba{bottom:178.410000px;}
.y1bb{bottom:178.590000px;}
.yff{bottom:180.390000px;}
.y29{bottom:181.830000px;}
.y170{bottom:187.050000px;}
.yd5{bottom:187.230000px;}
.y3c{bottom:188.130000px;}
.y7d{bottom:188.310000px;}
.y197{bottom:189.210000px;}
.y31{bottom:189.750000px;}
.y1c1{bottom:193.350000px;}
.y10c{bottom:194.430000px;}
.y132{bottom:195.870000px;}
.y14d{bottom:196.050000px;}
.yb9{bottom:196.230000px;}
.y1ba{bottom:196.410000px;}
.yfe{bottom:198.210000px;}
.y16f{bottom:204.870000px;}
.yd4{bottom:205.050000px;}
.y7c{bottom:206.130000px;}
.y196{bottom:207.030000px;}
.y3b{bottom:207.930000px;}
.y28{bottom:208.650000px;}
.y1c0{bottom:211.170000px;}
.y10b{bottom:212.430000px;}
.y131{bottom:213.690000px;}
.y14c{bottom:213.870000px;}
.yb8{bottom:214.050000px;}
.y1b9{bottom:214.230000px;}
.yfd{bottom:216.030000px;}
.y30{bottom:216.750000px;}
.yd3{bottom:222.870000px;}
.y7b{bottom:223.950000px;}
.y195{bottom:224.850000px;}
.y3a{bottom:227.910000px;}
.y10a{bottom:230.250000px;}
.y130{bottom:231.510000px;}
.yb7{bottom:231.870000px;}
.y1b8{bottom:232.050000px;}
.yfc{bottom:233.850000px;}
.y27{bottom:235.650000px;}
.yd2{bottom:240.870000px;}
.y7a{bottom:241.950000px;}
.y194{bottom:242.850000px;}
.y2f{bottom:243.570000px;}
.y39{bottom:247.755000px;}
.y109{bottom:248.070000px;}
.y14b{bottom:249.690000px;}
.yb6{bottom:249.870000px;}
.yfb{bottom:251.850000px;}
.y12f{bottom:258.330000px;}
.yd1{bottom:258.690000px;}
.y79{bottom:259.770000px;}
.y193{bottom:260.670000px;}
.y26{bottom:262.470000px;}
.y108{bottom:265.890000px;}
.y14a{bottom:267.510000px;}
.y38{bottom:267.555000px;}
.yb5{bottom:267.690000px;}
.y1b7{bottom:267.870000px;}
.yfa{bottom:269.670000px;}
.y2e{bottom:270.390000px;}
.y12e{bottom:276.150000px;}
.yd0{bottom:276.510000px;}
.y78{bottom:277.590000px;}
.y192{bottom:278.490000px;}
.y107{bottom:283.710000px;}
.y149{bottom:285.330000px;}
.yb4{bottom:285.510000px;}
.y1b6{bottom:285.690000px;}
.y37{bottom:287.355000px;}
.yf9{bottom:287.490000px;}
.y25{bottom:291.630000px;}
.y12d{bottom:294.150000px;}
.ycf{bottom:294.330000px;}
.y77{bottom:295.410000px;}
.y191{bottom:296.310000px;}
.y2d{bottom:297.210000px;}
.y106{bottom:301.530000px;}
.y16e{bottom:303.150000px;}
.yb3{bottom:303.330000px;}
.y1b5{bottom:303.510000px;}
.yf8{bottom:305.310000px;}
.y12c{bottom:311.970000px;}
.yce{bottom:312.150000px;}
.y76{bottom:313.230000px;}
.y190{bottom:314.130000px;}
.y36{bottom:317.955000px;}
.y105{bottom:319.530000px;}
.yb2{bottom:321.150000px;}
.y1b4{bottom:321.330000px;}
.yf7{bottom:323.130000px;}
.y24{bottom:324.030000px;}
.y12b{bottom:329.790000px;}
.ycd{bottom:330.150000px;}
.y75{bottom:331.050000px;}
.y18f{bottom:332.130000px;}
.y16d{bottom:338.970000px;}
.yb1{bottom:339.150000px;}
.yf6{bottom:341.130000px;}
.y104{bottom:344.370000px;}
.y12a{bottom:347.610000px;}
.ycc{bottom:347.970000px;}
.y74{bottom:349.050000px;}
.y18e{bottom:349.950000px;}
.y23{bottom:350.850000px;}
.y16c{bottom:356.790000px;}
.yb0{bottom:356.970000px;}
.y1b3{bottom:357.150000px;}
.yf5{bottom:358.950000px;}
.y129{bottom:365.430000px;}
.ycb{bottom:365.790000px;}
.y73{bottom:366.870000px;}
.y18d{bottom:367.770000px;}
.y16b{bottom:374.610000px;}
.yaf{bottom:374.790000px;}
.y1b2{bottom:374.970000px;}
.yf4{bottom:376.770000px;}
.y128{bottom:383.250000px;}
.yca{bottom:383.610000px;}
.y72{bottom:384.690000px;}
.y18c{bottom:385.590000px;}
.y16a{bottom:392.430000px;}
.yae{bottom:392.610000px;}
.y1b1{bottom:392.790000px;}
.yf3{bottom:394.590000px;}
.y22{bottom:395.670000px;}
.yc9{bottom:401.430000px;}
.y71{bottom:402.510000px;}
.y18b{bottom:405.750000px;}
.y127{bottom:410.250000px;}
.yad{bottom:410.430000px;}
.y1b0{bottom:410.610000px;}
.y21{bottom:415.290000px;}
.yc8{bottom:419.295000px;}
.y70{bottom:420.375000px;}
.yf2{bottom:421.455000px;}
.y126{bottom:428.115000px;}
.yac{bottom:428.295000px;}
.y1af{bottom:428.475000px;}
.yc7{bottom:437.295000px;}
.y6f{bottom:438.375000px;}
.y20{bottom:439.095000px;}
.yf1{bottom:439.275000px;}
.y125{bottom:445.935000px;}
.yab{bottom:446.295000px;}
.yc6{bottom:455.115000px;}
.y6e{bottom:456.195000px;}
.yf0{bottom:457.275000px;}
.y1f{bottom:463.035000px;}
.y124{bottom:463.755000px;}
.yaa{bottom:464.115000px;}
.y1ae{bottom:464.295000px;}
.y148{bottom:472.935000px;}
.y6d{bottom:474.015000px;}
.yef{bottom:475.095000px;}
.y123{bottom:481.575000px;}
.ya9{bottom:481.935000px;}
.y1ad{bottom:482.115000px;}
.y1e{bottom:486.795000px;}
.y147{bottom:490.755000px;}
.y116{bottom:490.935000px;}
.y6c{bottom:491.835000px;}
.yee{bottom:492.915000px;}
.ya8{bottom:499.755000px;}
.y1ac{bottom:499.935000px;}
.y122{bottom:506.415000px;}
.y146{bottom:508.575000px;}
.y115{bottom:508.755000px;}
.y18a{bottom:509.655000px;}
.y1d{bottom:510.555000px;}
.yed{bottom:510.735000px;}
.ya7{bottom:517.575000px;}
.y1ab{bottom:517.755000px;}
.y6b{bottom:518.655000px;}
.y114{bottom:526.575000px;}
.y189{bottom:527.475000px;}
.yec{bottom:528.555000px;}
.y1c{bottom:534.315000px;}
.ya6{bottom:535.575000px;}
.y6a{bottom:536.475000px;}
.y169{bottom:544.395000px;}
.y113{bottom:544.575000px;}
.y188{bottom:545.475000px;}
.yeb{bottom:546.555000px;}
.yc5{bottom:553.395000px;}
.y1aa{bottom:553.575000px;}
.y69{bottom:554.475000px;}
.y1b{bottom:557.355000px;}
.y168{bottom:562.215000px;}
.ya5{bottom:562.395000px;}
.y187{bottom:563.295000px;}
.yea{bottom:564.375000px;}
.yc4{bottom:571.215000px;}
.y1a9{bottom:571.395000px;}
.y68{bottom:572.295000px;}
.y1a{bottom:579.315000px;}
.y167{bottom:580.035000px;}
.ya4{bottom:580.215000px;}
.y186{bottom:581.115000px;}
.ye9{bottom:582.195000px;}
.yc3{bottom:589.035000px;}
.y1a8{bottom:589.215000px;}
.y67{bottom:590.115000px;}
.y166{bottom:597.855000px;}
.ya3{bottom:598.035000px;}
.y185{bottom:598.935000px;}
.ye8{bottom:600.015000px;}
.y19{bottom:605.595000px;}
.yc2{bottom:606.855000px;}
.y1a7{bottom:607.035000px;}
.y66{bottom:607.935000px;}
.y165{bottom:615.675000px;}
.ya2{bottom:615.855000px;}
.y184{bottom:616.755000px;}
.ye7{bottom:617.835000px;}
.yc1{bottom:624.675000px;}
.y1a6{bottom:624.855000px;}
.y65{bottom:625.755000px;}
.ya1{bottom:633.675000px;}
.y183{bottom:634.755000px;}
.ye6{bottom:635.655000px;}
.y18{bottom:636.375000px;}
.y145{bottom:642.675000px;}
.y64{bottom:643.755000px;}
.y164{bottom:651.495000px;}
.ya0{bottom:651.675000px;}
.y182{bottom:652.575000px;}
.ye5{bottom:653.655000px;}
.y144{bottom:660.525000px;}
.y1a5{bottom:660.705000px;}
.y63{bottom:661.605000px;}
.y163{bottom:669.345000px;}
.y9f{bottom:669.525000px;}
.y181{bottom:670.425000px;}
.ye4{bottom:671.505000px;}
.y143{bottom:678.345000px;}
.y1a4{bottom:678.525000px;}
.y62{bottom:679.425000px;}
.y17{bottom:685.185000px;}
.y162{bottom:687.165000px;}
.y9e{bottom:687.345000px;}
.ye3{bottom:689.325000px;}
.y142{bottom:696.165000px;}
.y1a3{bottom:696.345000px;}
.y61{bottom:697.245000px;}
.y161{bottom:704.985000px;}
.y9d{bottom:705.165000px;}
.ye2{bottom:707.145000px;}
.y141{bottom:713.985000px;}
.y1a2{bottom:714.165000px;}
.y60{bottom:715.065000px;}
.y9c{bottom:722.985000px;}
.ye1{bottom:724.965000px;}
.y140{bottom:731.805000px;}
.y1a1{bottom:731.985000px;}
.y5f{bottom:732.885000px;}
.y16{bottom:733.965000px;}
.y9b{bottom:740.805000px;}
.ye0{bottom:742.965000px;}
.y13f{bottom:749.805000px;}
.y5e{bottom:750.885000px;}
.y9a{bottom:758.805000px;}
.ydf{bottom:760.785000px;}
.y13e{bottom:767.625000px;}
.y1a0{bottom:767.805000px;}
.y5d{bottom:768.705000px;}
.y121{bottom:769.065000px;}
.y99{bottom:776.625000px;}
.yde{bottom:778.605000px;}
.y15{bottom:784.545000px;}
.y13d{bottom:785.445000px;}
.y19f{bottom:785.625000px;}
.y5c{bottom:786.525000px;}
.y120{bottom:786.885000px;}
.y98{bottom:794.445000px;}
.ydd{bottom:796.425000px;}
.y160{bottom:803.265000px;}
.y19e{bottom:803.445000px;}
.y5b{bottom:804.345000px;}
.y11f{bottom:804.705000px;}
.y97{bottom:812.265000px;}
.y14{bottom:812.445000px;}
.ydc{bottom:814.245000px;}
.y15f{bottom:821.085000px;}
.y19d{bottom:821.265000px;}
.y5a{bottom:822.165000px;}
.y11e{bottom:822.525000px;}
.y96{bottom:830.085000px;}
.ydb{bottom:832.065000px;}
.y15e{bottom:839.085000px;}
.y59{bottom:839.985000px;}
.y11d{bottom:840.345000px;}
.y95{bottom:848.085000px;}
.yda{bottom:850.065000px;}
.y15d{bottom:856.905000px;}
.y19c{bottom:857.085000px;}
.y180{bottom:857.985000px;}
.y11c{bottom:858.165000px;}
.y94{bottom:865.905000px;}
.y58{bottom:866.985000px;}
.y13{bottom:867.165000px;}
.yd9{bottom:867.885000px;}
.y15c{bottom:874.725000px;}
.y112{bottom:874.905000px;}
.y17f{bottom:875.805000px;}
.y11b{bottom:876.165000px;}
.y93{bottom:883.725000px;}
.y57{bottom:884.805000px;}
.yd8{bottom:888.045000px;}
.y12{bottom:890.025000px;}
.y15b{bottom:892.545000px;}
.y111{bottom:892.725000px;}
.y17e{bottom:893.625000px;}
.y11a{bottom:893.985000px;}
.y92{bottom:901.590000px;}
.y56{bottom:902.670000px;}
.y11{bottom:907.350000px;}
.y15a{bottom:910.410000px;}
.y110{bottom:910.590000px;}
.y17d{bottom:911.490000px;}
.y119{bottom:911.850000px;}
.yc0{bottom:919.410000px;}
.y55{bottom:920.490000px;}
.y10{bottom:924.990000px;}
.y159{bottom:928.230000px;}
.y91{bottom:928.410000px;}
.y17c{bottom:929.310000px;}
.y118{bottom:929.670000px;}
.ybf{bottom:937.230000px;}
.y54{bottom:938.310000px;}
.yf{bottom:943.530000px;}
.y90{bottom:946.230000px;}
.y17b{bottom:947.310000px;}
.y117{bottom:954.510000px;}
.ybe{bottom:955.230000px;}
.y53{bottom:956.310000px;}
.ye{bottom:960.810000px;}
.y8f{bottom:964.230000px;}
.y17a{bottom:965.130000px;}
.y13c{bottom:973.050000px;}
.y52{bottom:974.130000px;}
.yd{bottom:978.810000px;}
.y8e{bottom:982.050000px;}
.y179{bottom:982.950000px;}
.y13b{bottom:990.870000px;}
.y51{bottom:991.950000px;}
.yc{bottom:997.890000px;}
.y8d{bottom:999.870000px;}
.y178{bottom:1000.770000px;}
.y13a{bottom:1008.690000px;}
.y50{bottom:1009.770000px;}
.yb{bottom:1009.950000px;}
.y8c{bottom:1017.690000px;}
.y177{bottom:1018.590000px;}
.ya{bottom:1022.010000px;}
.y139{bottom:1026.510000px;}
.y4f{bottom:1027.590000px;}
.y9{bottom:1034.070000px;}
.y8b{bottom:1035.510000px;}
.y176{bottom:1036.410000px;}
.y138{bottom:1044.510000px;}
.y4e{bottom:1045.410000px;}
.y8{bottom:1046.130000px;}
.y8a{bottom:1053.510000px;}
.y175{bottom:1054.410000px;}
.y7{bottom:1060.710000px;}
.y158{bottom:1062.330000px;}
.y4d{bottom:1063.410000px;}
.y89{bottom:1071.330000px;}
.y174{bottom:1074.570000px;}
.y157{bottom:1080.150000px;}
.y4c{bottom:1081.230000px;}
.y6{bottom:1086.270000px;}
.y88{bottom:1089.150000px;}
.y156{bottom:1097.970000px;}
.y4b{bottom:1099.050000px;}
.y87{bottom:1106.970000px;}
.y155{bottom:1115.790000px;}
.y4a{bottom:1116.870000px;}
.y86{bottom:1124.790000px;}
.y154{bottom:1133.610000px;}
.y49{bottom:1134.690000px;}
.y85{bottom:1142.640000px;}
.y153{bottom:1151.640000px;}
.y48{bottom:1152.720000px;}
.y84{bottom:1160.640000px;}
.y47{bottom:1170.540000px;}
.y83{bottom:1178.460000px;}
.y46{bottom:1190.700000px;}
.y82{bottom:1196.280000px;}
.h8{height:29.158594px;}
.h2{height:31.140000px;}
.h3{height:37.705078px;}
.h4{height:38.100586px;}
.h13{height:39.313477px;}
.ha{height:41.726953px;}
.hb{height:42.164648px;}
.h12{height:44.507812px;}
.hc{height:46.251562px;}
.he{height:46.736719px;}
.h11{height:49.255313px;}
.h9{height:50.800781px;}
.hf{height:54.864844px;}
.hd{height:58.819922px;}
.h6{height:59.436914px;}
.h7{height:63.500977px;}
.h5{height:65.884219px;}
.h10{height:348.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:78.480000px;}
.w2{width:706.650000px;}
.w5{width:813.750000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x11{left:10.800000px;}
.x10{left:39.240000px;}
.x1{left:54.000000px;}
.x14{left:80.999987px;}
.xa{left:86.939987px;}
.x15{left:108.035987px;}
.x2{left:214.590000px;}
.x7{left:280.109987px;}
.xd{left:289.829987px;}
.x6{left:294.734987px;}
.x8{left:300.314987px;}
.xb{left:308.054987px;}
.xe{left:341.354987px;}
.x5{left:365.294987px;}
.xc{left:375.914987px;}
.x9{left:378.794987px;}
.x12{left:414.074987px;}
.x13{left:415.514987px;}
.xf{left:473.474987px;}
.x17{left:500.504987px;}
.x16{left:527.504987px;}
.x4{left:760.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.ls19{letter-spacing:5.391360pt;}
.lsb{letter-spacing:5.920000pt;}
.lsd{letter-spacing:17.440000pt;}
.ls16{letter-spacing:22.496000pt;}
.ls14{letter-spacing:46.816000pt;}
.ls13{letter-spacing:46.944000pt;}
.ls0{letter-spacing:1238.986667pt;}
.ws3{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.112000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-1238.986667pt;}
._17{margin-left:-3.235200pt;}
._b{margin-left:-2.340267pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._6{width:2.034560pt;}
._a{width:3.004800pt;}
._7{width:4.234453pt;}
._8{width:5.253333pt;}
._14{width:6.144000pt;}
._c{width:7.064960pt;}
._e{width:7.968000pt;}
._9{width:9.139627pt;}
._d{width:10.375680pt;}
._f{width:13.344000pt;}
._15{width:14.400000pt;}
._1c{width:15.312000pt;}
._16{width:16.272000pt;}
._1a{width:17.376000pt;}
._1b{width:19.056000pt;}
._10{width:20.208000pt;}
._1d{width:21.984000pt;}
._12{width:23.424000pt;}
._13{width:24.400000pt;}
._28{width:25.434667pt;}
._19{width:26.400000pt;}
._18{width:27.312000pt;}
._23{width:28.272000pt;}
._20{width:29.328000pt;}
._1f{width:30.240000pt;}
._11{width:31.776000pt;}
._24{width:33.290667pt;}
._1e{width:34.272000pt;}
._3a{width:35.296000pt;}
._27{width:36.528000pt;}
._38{width:38.064000pt;}
._32{width:39.040000pt;}
._26{width:40.032000pt;}
._25{width:41.136000pt;}
._22{width:42.912000pt;}
._21{width:43.824000pt;}
._2b{width:44.736000pt;}
._29{width:46.320000pt;}
._2d{width:47.232000pt;}
._3d{width:51.408000pt;}
._45{width:54.832000pt;}
._42{width:56.064000pt;}
._31{width:57.072000pt;}
._3f{width:72.368000pt;}
._3e{width:73.344000pt;}
._49{width:75.312000pt;}
._4a{width:76.944000pt;}
._3c{width:97.776000pt;}
._40{width:103.152000pt;}
._41{width:104.064000pt;}
._2e{width:115.920000pt;}
._2f{width:117.120000pt;}
._46{width:123.936000pt;}
._44{width:129.312000pt;}
._36{width:169.760000pt;}
._35{width:170.880000pt;}
._48{width:175.120000pt;}
._47{width:180.000000pt;}
._39{width:183.648000pt;}
._4b{width:261.104000pt;}
._30{width:290.160000pt;}
._3b{width:295.296000pt;}
._33{width:299.936000pt;}
._34{width:313.392000pt;}
._37{width:343.994667pt;}
._43{width:660.448000pt;}
._2c{width:798.768000pt;}
._2a{width:823.104000pt;}
._2{width:918.186667pt;}
._3{width:1229.706667pt;}
._4{width:1238.986667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y45{bottom:-6.240000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y2{bottom:16.480000pt;}
.y44{bottom:18.266667pt;}
.y5{bottom:35.200000pt;}
.y43{bottom:43.866667pt;}
.y1{bottom:53.920000pt;}
.y42{bottom:61.466667pt;}
.y41{bottom:79.066667pt;}
.y2c{bottom:90.080000pt;}
.y1c6{bottom:92.480000pt;}
.y137{bottom:94.720000pt;}
.y152{bottom:94.880000pt;}
.y1bf{bottom:95.200000pt;}
.y40{bottom:96.666667pt;}
.y103{bottom:96.800000pt;}
.y34{bottom:97.120000pt;}
.ybd{bottom:102.880000pt;}
.y81{bottom:103.840000pt;}
.y19b{bottom:104.640000pt;}
.y1c5{bottom:108.320000pt;}
.y136{bottom:110.560000pt;}
.y151{bottom:110.880000pt;}
.y1be{bottom:111.040000pt;}
.y102{bottom:112.640000pt;}
.y2b{bottom:113.920000pt;}
.y3f{bottom:114.426667pt;}
.y173{bottom:118.720000pt;}
.ybc{bottom:118.880000pt;}
.y80{bottom:119.680000pt;}
.y19a{bottom:120.640000pt;}
.y33{bottom:120.960000pt;}
.y1c4{bottom:124.160000pt;}
.y10f{bottom:125.280000pt;}
.y135{bottom:126.400000pt;}
.y150{bottom:126.720000pt;}
.y1bd{bottom:126.880000pt;}
.y101{bottom:128.640000pt;}
.y3e{bottom:132.026667pt;}
.y172{bottom:134.560000pt;}
.yd7{bottom:134.720000pt;}
.y7f{bottom:135.680000pt;}
.y199{bottom:136.480000pt;}
.y2a{bottom:137.760000pt;}
.y1c3{bottom:140.000000pt;}
.y10e{bottom:141.120000pt;}
.y134{bottom:142.240000pt;}
.y14f{bottom:142.560000pt;}
.ybb{bottom:142.720000pt;}
.y1bc{bottom:142.880000pt;}
.y100{bottom:144.480000pt;}
.y32{bottom:144.800000pt;}
.y3d{bottom:149.626667pt;}
.y171{bottom:150.400000pt;}
.yd6{bottom:150.560000pt;}
.y7e{bottom:151.520000pt;}
.y198{bottom:152.320000pt;}
.y35{bottom:152.480000pt;}
.y1c2{bottom:155.840000pt;}
.y10d{bottom:156.986667pt;}
.y133{bottom:158.106667pt;}
.y14e{bottom:158.426667pt;}
.yba{bottom:158.586667pt;}
.y1bb{bottom:158.746667pt;}
.yff{bottom:160.346667pt;}
.y29{bottom:161.626667pt;}
.y170{bottom:166.266667pt;}
.yd5{bottom:166.426667pt;}
.y3c{bottom:167.226667pt;}
.y7d{bottom:167.386667pt;}
.y197{bottom:168.186667pt;}
.y31{bottom:168.666667pt;}
.y1c1{bottom:171.866667pt;}
.y10c{bottom:172.826667pt;}
.y132{bottom:174.106667pt;}
.y14d{bottom:174.266667pt;}
.yb9{bottom:174.426667pt;}
.y1ba{bottom:174.586667pt;}
.yfe{bottom:176.186667pt;}
.y16f{bottom:182.106667pt;}
.yd4{bottom:182.266667pt;}
.y7c{bottom:183.226667pt;}
.y196{bottom:184.026667pt;}
.y3b{bottom:184.826667pt;}
.y28{bottom:185.466667pt;}
.y1c0{bottom:187.706667pt;}
.y10b{bottom:188.826667pt;}
.y131{bottom:189.946667pt;}
.y14c{bottom:190.106667pt;}
.yb8{bottom:190.266667pt;}
.y1b9{bottom:190.426667pt;}
.yfd{bottom:192.026667pt;}
.y30{bottom:192.666667pt;}
.yd3{bottom:198.106667pt;}
.y7b{bottom:199.066667pt;}
.y195{bottom:199.866667pt;}
.y3a{bottom:202.586667pt;}
.y10a{bottom:204.666667pt;}
.y130{bottom:205.786667pt;}
.yb7{bottom:206.106667pt;}
.y1b8{bottom:206.266667pt;}
.yfc{bottom:207.866667pt;}
.y27{bottom:209.466667pt;}
.yd2{bottom:214.106667pt;}
.y7a{bottom:215.066667pt;}
.y194{bottom:215.866667pt;}
.y2f{bottom:216.506667pt;}
.y39{bottom:220.226667pt;}
.y109{bottom:220.506667pt;}
.y14b{bottom:221.946667pt;}
.yb6{bottom:222.106667pt;}
.yfb{bottom:223.866667pt;}
.y12f{bottom:229.626667pt;}
.yd1{bottom:229.946667pt;}
.y79{bottom:230.906667pt;}
.y193{bottom:231.706667pt;}
.y26{bottom:233.306667pt;}
.y108{bottom:236.346667pt;}
.y14a{bottom:237.786667pt;}
.y38{bottom:237.826667pt;}
.yb5{bottom:237.946667pt;}
.y1b7{bottom:238.106667pt;}
.yfa{bottom:239.706667pt;}
.y2e{bottom:240.346667pt;}
.y12e{bottom:245.466667pt;}
.yd0{bottom:245.786667pt;}
.y78{bottom:246.746667pt;}
.y192{bottom:247.546667pt;}
.y107{bottom:252.186667pt;}
.y149{bottom:253.626667pt;}
.yb4{bottom:253.786667pt;}
.y1b6{bottom:253.946667pt;}
.y37{bottom:255.426667pt;}
.yf9{bottom:255.546667pt;}
.y25{bottom:259.226667pt;}
.y12d{bottom:261.466667pt;}
.ycf{bottom:261.626667pt;}
.y77{bottom:262.586667pt;}
.y191{bottom:263.386667pt;}
.y2d{bottom:264.186667pt;}
.y106{bottom:268.026667pt;}
.y16e{bottom:269.466667pt;}
.yb3{bottom:269.626667pt;}
.y1b5{bottom:269.786667pt;}
.yf8{bottom:271.386667pt;}
.y12c{bottom:277.306667pt;}
.yce{bottom:277.466667pt;}
.y76{bottom:278.426667pt;}
.y190{bottom:279.226667pt;}
.y36{bottom:282.626667pt;}
.y105{bottom:284.026667pt;}
.yb2{bottom:285.466667pt;}
.y1b4{bottom:285.626667pt;}
.yf7{bottom:287.226667pt;}
.y24{bottom:288.026667pt;}
.y12b{bottom:293.146667pt;}
.ycd{bottom:293.466667pt;}
.y75{bottom:294.266667pt;}
.y18f{bottom:295.226667pt;}
.y16d{bottom:301.306667pt;}
.yb1{bottom:301.466667pt;}
.yf6{bottom:303.226667pt;}
.y104{bottom:306.106667pt;}
.y12a{bottom:308.986667pt;}
.ycc{bottom:309.306667pt;}
.y74{bottom:310.266667pt;}
.y18e{bottom:311.066667pt;}
.y23{bottom:311.866667pt;}
.y16c{bottom:317.146667pt;}
.yb0{bottom:317.306667pt;}
.y1b3{bottom:317.466667pt;}
.yf5{bottom:319.066667pt;}
.y129{bottom:324.826667pt;}
.ycb{bottom:325.146667pt;}
.y73{bottom:326.106667pt;}
.y18d{bottom:326.906667pt;}
.y16b{bottom:332.986667pt;}
.yaf{bottom:333.146667pt;}
.y1b2{bottom:333.306667pt;}
.yf4{bottom:334.906667pt;}
.y128{bottom:340.666667pt;}
.yca{bottom:340.986667pt;}
.y72{bottom:341.946667pt;}
.y18c{bottom:342.746667pt;}
.y16a{bottom:348.826667pt;}
.yae{bottom:348.986667pt;}
.y1b1{bottom:349.146667pt;}
.yf3{bottom:350.746667pt;}
.y22{bottom:351.706667pt;}
.yc9{bottom:356.826667pt;}
.y71{bottom:357.786667pt;}
.y18b{bottom:360.666667pt;}
.y127{bottom:364.666667pt;}
.yad{bottom:364.826667pt;}
.y1b0{bottom:364.986667pt;}
.y21{bottom:369.146667pt;}
.yc8{bottom:372.706667pt;}
.y70{bottom:373.666667pt;}
.yf2{bottom:374.626667pt;}
.y126{bottom:380.546667pt;}
.yac{bottom:380.706667pt;}
.y1af{bottom:380.866667pt;}
.yc7{bottom:388.706667pt;}
.y6f{bottom:389.666667pt;}
.y20{bottom:390.306667pt;}
.yf1{bottom:390.466667pt;}
.y125{bottom:396.386667pt;}
.yab{bottom:396.706667pt;}
.yc6{bottom:404.546667pt;}
.y6e{bottom:405.506667pt;}
.yf0{bottom:406.466667pt;}
.y1f{bottom:411.586667pt;}
.y124{bottom:412.226667pt;}
.yaa{bottom:412.546667pt;}
.y1ae{bottom:412.706667pt;}
.y148{bottom:420.386667pt;}
.y6d{bottom:421.346667pt;}
.yef{bottom:422.306667pt;}
.y123{bottom:428.066667pt;}
.ya9{bottom:428.386667pt;}
.y1ad{bottom:428.546667pt;}
.y1e{bottom:432.706667pt;}
.y147{bottom:436.226667pt;}
.y116{bottom:436.386667pt;}
.y6c{bottom:437.186667pt;}
.yee{bottom:438.146667pt;}
.ya8{bottom:444.226667pt;}
.y1ac{bottom:444.386667pt;}
.y122{bottom:450.146667pt;}
.y146{bottom:452.066667pt;}
.y115{bottom:452.226667pt;}
.y18a{bottom:453.026667pt;}
.y1d{bottom:453.826667pt;}
.yed{bottom:453.986667pt;}
.ya7{bottom:460.066667pt;}
.y1ab{bottom:460.226667pt;}
.y6b{bottom:461.026667pt;}
.y114{bottom:468.066667pt;}
.y189{bottom:468.866667pt;}
.yec{bottom:469.826667pt;}
.y1c{bottom:474.946667pt;}
.ya6{bottom:476.066667pt;}
.y6a{bottom:476.866667pt;}
.y169{bottom:483.906667pt;}
.y113{bottom:484.066667pt;}
.y188{bottom:484.866667pt;}
.yeb{bottom:485.826667pt;}
.yc5{bottom:491.906667pt;}
.y1aa{bottom:492.066667pt;}
.y69{bottom:492.866667pt;}
.y1b{bottom:495.426667pt;}
.y168{bottom:499.746667pt;}
.ya5{bottom:499.906667pt;}
.y187{bottom:500.706667pt;}
.yea{bottom:501.666667pt;}
.yc4{bottom:507.746667pt;}
.y1a9{bottom:507.906667pt;}
.y68{bottom:508.706667pt;}
.y1a{bottom:514.946667pt;}
.y167{bottom:515.586667pt;}
.ya4{bottom:515.746667pt;}
.y186{bottom:516.546667pt;}
.ye9{bottom:517.506667pt;}
.yc3{bottom:523.586667pt;}
.y1a8{bottom:523.746667pt;}
.y67{bottom:524.546667pt;}
.y166{bottom:531.426667pt;}
.ya3{bottom:531.586667pt;}
.y185{bottom:532.386667pt;}
.ye8{bottom:533.346667pt;}
.y19{bottom:538.306667pt;}
.yc2{bottom:539.426667pt;}
.y1a7{bottom:539.586667pt;}
.y66{bottom:540.386667pt;}
.y165{bottom:547.266667pt;}
.ya2{bottom:547.426667pt;}
.y184{bottom:548.226667pt;}
.ye7{bottom:549.186667pt;}
.yc1{bottom:555.266667pt;}
.y1a6{bottom:555.426667pt;}
.y65{bottom:556.226667pt;}
.ya1{bottom:563.266667pt;}
.y183{bottom:564.226667pt;}
.ye6{bottom:565.026667pt;}
.y18{bottom:565.666667pt;}
.y145{bottom:571.266667pt;}
.y64{bottom:572.226667pt;}
.y164{bottom:579.106667pt;}
.ya0{bottom:579.266667pt;}
.y182{bottom:580.066667pt;}
.ye5{bottom:581.026667pt;}
.y144{bottom:587.133333pt;}
.y1a5{bottom:587.293333pt;}
.y63{bottom:588.093333pt;}
.y163{bottom:594.973333pt;}
.y9f{bottom:595.133333pt;}
.y181{bottom:595.933333pt;}
.ye4{bottom:596.893333pt;}
.y143{bottom:602.973333pt;}
.y1a4{bottom:603.133333pt;}
.y62{bottom:603.933333pt;}
.y17{bottom:609.053333pt;}
.y162{bottom:610.813333pt;}
.y9e{bottom:610.973333pt;}
.ye3{bottom:612.733333pt;}
.y142{bottom:618.813333pt;}
.y1a3{bottom:618.973333pt;}
.y61{bottom:619.773333pt;}
.y161{bottom:626.653333pt;}
.y9d{bottom:626.813333pt;}
.ye2{bottom:628.573333pt;}
.y141{bottom:634.653333pt;}
.y1a2{bottom:634.813333pt;}
.y60{bottom:635.613333pt;}
.y9c{bottom:642.653333pt;}
.ye1{bottom:644.413333pt;}
.y140{bottom:650.493333pt;}
.y1a1{bottom:650.653333pt;}
.y5f{bottom:651.453333pt;}
.y16{bottom:652.413333pt;}
.y9b{bottom:658.493333pt;}
.ye0{bottom:660.413333pt;}
.y13f{bottom:666.493333pt;}
.y5e{bottom:667.453333pt;}
.y9a{bottom:674.493333pt;}
.ydf{bottom:676.253333pt;}
.y13e{bottom:682.333333pt;}
.y1a0{bottom:682.493333pt;}
.y5d{bottom:683.293333pt;}
.y121{bottom:683.613333pt;}
.y99{bottom:690.333333pt;}
.yde{bottom:692.093333pt;}
.y15{bottom:697.373333pt;}
.y13d{bottom:698.173333pt;}
.y19f{bottom:698.333333pt;}
.y5c{bottom:699.133333pt;}
.y120{bottom:699.453333pt;}
.y98{bottom:706.173333pt;}
.ydd{bottom:707.933333pt;}
.y160{bottom:714.013333pt;}
.y19e{bottom:714.173333pt;}
.y5b{bottom:714.973333pt;}
.y11f{bottom:715.293333pt;}
.y97{bottom:722.013333pt;}
.y14{bottom:722.173333pt;}
.ydc{bottom:723.773333pt;}
.y15f{bottom:729.853333pt;}
.y19d{bottom:730.013333pt;}
.y5a{bottom:730.813333pt;}
.y11e{bottom:731.133333pt;}
.y96{bottom:737.853333pt;}
.ydb{bottom:739.613333pt;}
.y15e{bottom:745.853333pt;}
.y59{bottom:746.653333pt;}
.y11d{bottom:746.973333pt;}
.y95{bottom:753.853333pt;}
.yda{bottom:755.613333pt;}
.y15d{bottom:761.693333pt;}
.y19c{bottom:761.853333pt;}
.y180{bottom:762.653333pt;}
.y11c{bottom:762.813333pt;}
.y94{bottom:769.693333pt;}
.y58{bottom:770.653333pt;}
.y13{bottom:770.813333pt;}
.yd9{bottom:771.453333pt;}
.y15c{bottom:777.533333pt;}
.y112{bottom:777.693333pt;}
.y17f{bottom:778.493333pt;}
.y11b{bottom:778.813333pt;}
.y93{bottom:785.533333pt;}
.y57{bottom:786.493333pt;}
.yd8{bottom:789.373333pt;}
.y12{bottom:791.133333pt;}
.y15b{bottom:793.373333pt;}
.y111{bottom:793.533333pt;}
.y17e{bottom:794.333333pt;}
.y11a{bottom:794.653333pt;}
.y92{bottom:801.413333pt;}
.y56{bottom:802.373333pt;}
.y11{bottom:806.533333pt;}
.y15a{bottom:809.253333pt;}
.y110{bottom:809.413333pt;}
.y17d{bottom:810.213333pt;}
.y119{bottom:810.533333pt;}
.yc0{bottom:817.253333pt;}
.y55{bottom:818.213333pt;}
.y10{bottom:822.213333pt;}
.y159{bottom:825.093333pt;}
.y91{bottom:825.253333pt;}
.y17c{bottom:826.053333pt;}
.y118{bottom:826.373333pt;}
.ybf{bottom:833.093333pt;}
.y54{bottom:834.053333pt;}
.yf{bottom:838.693333pt;}
.y90{bottom:841.093333pt;}
.y17b{bottom:842.053333pt;}
.y117{bottom:848.453333pt;}
.ybe{bottom:849.093333pt;}
.y53{bottom:850.053333pt;}
.ye{bottom:854.053333pt;}
.y8f{bottom:857.093333pt;}
.y17a{bottom:857.893333pt;}
.y13c{bottom:864.933333pt;}
.y52{bottom:865.893333pt;}
.yd{bottom:870.053333pt;}
.y8e{bottom:872.933333pt;}
.y179{bottom:873.733333pt;}
.y13b{bottom:880.773333pt;}
.y51{bottom:881.733333pt;}
.yc{bottom:887.013333pt;}
.y8d{bottom:888.773333pt;}
.y178{bottom:889.573333pt;}
.y13a{bottom:896.613333pt;}
.y50{bottom:897.573333pt;}
.yb{bottom:897.733333pt;}
.y8c{bottom:904.613333pt;}
.y177{bottom:905.413333pt;}
.ya{bottom:908.453333pt;}
.y139{bottom:912.453333pt;}
.y4f{bottom:913.413333pt;}
.y9{bottom:919.173333pt;}
.y8b{bottom:920.453333pt;}
.y176{bottom:921.253333pt;}
.y138{bottom:928.453333pt;}
.y4e{bottom:929.253333pt;}
.y8{bottom:929.893333pt;}
.y8a{bottom:936.453333pt;}
.y175{bottom:937.253333pt;}
.y7{bottom:942.853333pt;}
.y158{bottom:944.293333pt;}
.y4d{bottom:945.253333pt;}
.y89{bottom:952.293333pt;}
.y174{bottom:955.173333pt;}
.y157{bottom:960.133333pt;}
.y4c{bottom:961.093333pt;}
.y6{bottom:965.573333pt;}
.y88{bottom:968.133333pt;}
.y156{bottom:975.973333pt;}
.y4b{bottom:976.933333pt;}
.y87{bottom:983.973333pt;}
.y155{bottom:991.813333pt;}
.y4a{bottom:992.773333pt;}
.y86{bottom:999.813333pt;}
.y154{bottom:1007.653333pt;}
.y49{bottom:1008.613333pt;}
.y85{bottom:1015.680000pt;}
.y153{bottom:1023.680000pt;}
.y48{bottom:1024.640000pt;}
.y84{bottom:1031.680000pt;}
.y47{bottom:1040.480000pt;}
.y83{bottom:1047.520000pt;}
.y46{bottom:1058.400000pt;}
.y82{bottom:1063.360000pt;}
.h8{height:25.918750pt;}
.h2{height:27.680000pt;}
.h3{height:33.515625pt;}
.h4{height:33.867188pt;}
.h13{height:34.945312pt;}
.ha{height:37.090625pt;}
.hb{height:37.479688pt;}
.h12{height:39.562500pt;}
.hc{height:41.112500pt;}
.he{height:41.543750pt;}
.h11{height:43.782500pt;}
.h9{height:45.156250pt;}
.hf{height:48.768750pt;}
.hd{height:52.284375pt;}
.h6{height:52.832812pt;}
.h7{height:56.445312pt;}
.h5{height:58.563750pt;}
.h10{height:309.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:69.760000pt;}
.w2{width:628.133333pt;}
.w5{width:723.333333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x11{left:9.600000pt;}
.x10{left:34.880000pt;}
.x1{left:48.000000pt;}
.x14{left:71.999988pt;}
.xa{left:77.279988pt;}
.x15{left:96.031988pt;}
.x2{left:190.746667pt;}
.x7{left:248.986655pt;}
.xd{left:257.626655pt;}
.x6{left:261.986655pt;}
.x8{left:266.946655pt;}
.xb{left:273.826655pt;}
.xe{left:303.426655pt;}
.x5{left:324.706655pt;}
.xc{left:334.146655pt;}
.x9{left:336.706655pt;}
.x12{left:368.066655pt;}
.x13{left:369.346655pt;}
.xf{left:420.866655pt;}
.x17{left:444.893322pt;}
.x16{left:468.893322pt;}
.x4{left:676.133333pt;}
}




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