
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e34637a2724a72768d11d8ac.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_6491bc0bbef07aa1fd6b3171.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_153a484b4b1fce51b65cdf35.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_48c955ec3c5b2fc2cf309591.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_298faed1f88ca7f9e3f9c7fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_97dc2026bf75e8b862b4702a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_2cadcb3413e8828eb817a2fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9965adebba23e9854fe8472d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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;}
.ls1b{letter-spacing:-1.800000px;}
.ls1c{letter-spacing:-1.386000px;}
.ls17{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.978000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.306600px;}
.ls14{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.666000px;}
.ls24{letter-spacing:0.774000px;}
.ls21{letter-spacing:0.828000px;}
.ls23{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.512000px;}
.ls3{letter-spacing:3.060000px;}
.ls22{letter-spacing:11.466720px;}
.ls15{letter-spacing:16.015680px;}
.lsa{letter-spacing:22.986720px;}
.lsb{letter-spacing:26.586720px;}
.ls2{letter-spacing:40.860000px;}
.ls20{letter-spacing:41.706720px;}
.ls11{letter-spacing:114.570720px;}
.lsd{letter-spacing:137.610720px;}
.ls13{letter-spacing:154.170720px;}
.ls4{letter-spacing:161.370720px;}
.ls10{letter-spacing:179.226720px;}
.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;}
}
.ws0{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.714000px;}
.wse{word-spacing:-15.606000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.962000px;}
.ws6{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.554000px;}
.wsa{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-2785.423440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-571.401360px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._28{margin-left:-16.722720px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._21{margin-left:-3.588480px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._1f{width:3.717120px;}
._20{width:5.557680px;}
._22{width:6.819120px;}
._23{width:8.564400px;}
._24{width:10.499040px;}
._25{width:11.630880px;}
._26{width:16.434000px;}
._30{width:20.557440px;}
._2c{width:30.294000px;}
._2a{width:31.827600px;}
._1e{width:39.788640px;}
._1d{width:41.322000px;}
._31{width:57.080160px;}
._2d{width:116.113680px;}
._27{width:201.204000px;}
._2e{width:204.259680px;}
._2f{width:228.283200px;}
._29{width:235.627200px;}
._2b{width:1257.600000px;}
.fc2{color:transparent;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.240000px;}
.yb2{bottom:3.420000px;}
.yb9{bottom:3.600000px;}
.y89{bottom:3.780000px;}
.yfc{bottom:3.810000px;}
.y84{bottom:4.860000px;}
.y104{bottom:5.940000px;}
.yd2{bottom:6.480000px;}
.yd1{bottom:6.840000px;}
.yf2{bottom:7.200000px;}
.yf6{bottom:7.380000px;}
.yf9{bottom:10.080000px;}
.y10d{bottom:10.440000px;}
.ybe{bottom:20.520000px;}
.y16d{bottom:20.550000px;}
.y139{bottom:20.700000px;}
.y93{bottom:20.880000px;}
.y16f{bottom:20.910000px;}
.y88{bottom:21.060000px;}
.yfb{bottom:21.090000px;}
.yb7{bottom:21.105000px;}
.y103{bottom:25.740000px;}
.y105{bottom:26.100000px;}
.yf8{bottom:27.360000px;}
.y10c{bottom:27.720000px;}
.y138{bottom:37.800000px;}
.y16c{bottom:37.830000px;}
.y92{bottom:38.160000px;}
.y16e{bottom:38.190000px;}
.y87{bottom:38.340000px;}
.yb6{bottom:38.385000px;}
.y137{bottom:55.080000px;}
.y16b{bottom:55.110000px;}
.y91{bottom:55.440000px;}
.y170{bottom:55.470000px;}
.y86{bottom:55.620000px;}
.yb5{bottom:55.665000px;}
.y6{bottom:60.660000px;}
.y136{bottom:72.360000px;}
.y16a{bottom:72.390000px;}
.y90{bottom:72.720000px;}
.yb4{bottom:72.765000px;}
.y34{bottom:86.400000px;}
.y166{bottom:89.460000px;}
.y135{bottom:89.640000px;}
.y167{bottom:89.820000px;}
.y8f{bottom:90.000000px;}
.yb3{bottom:90.045000px;}
.y162{bottom:91.440000px;}
.y6c{bottom:93.060000px;}
.y9e{bottom:93.960000px;}
.yc9{bottom:95.220000px;}
.y101{bottom:101.880000px;}
.y132{bottom:105.660000px;}
.y33{bottom:106.380000px;}
.y165{bottom:106.740000px;}
.y8e{bottom:107.280000px;}
.y161{bottom:109.980000px;}
.y6b{bottom:112.860000px;}
.y9d{bottom:113.400000px;}
.yc8{bottom:115.020000px;}
.y100{bottom:122.040000px;}
.y8d{bottom:124.425000px;}
.y131{bottom:125.460000px;}
.y32{bottom:126.180000px;}
.y160{bottom:128.520000px;}
.y6a{bottom:132.660000px;}
.y9c{bottom:133.200000px;}
.yc7{bottom:134.820000px;}
.y8c{bottom:141.705000px;}
.yff{bottom:141.840000px;}
.y130{bottom:145.260000px;}
.y31{bottom:145.980000px;}
.y15f{bottom:147.240000px;}
.y69{bottom:152.640000px;}
.y9b{bottom:153.180000px;}
.yc6{bottom:154.800000px;}
.y8b{bottom:158.985000px;}
.yfe{bottom:161.820000px;}
.y12f{bottom:165.060000px;}
.y30{bottom:165.780000px;}
.y68{bottom:172.440000px;}
.y9a{bottom:172.980000px;}
.yc5{bottom:174.600000px;}
.yfd{bottom:181.620000px;}
.y15e{bottom:184.500000px;}
.y12e{bottom:185.040000px;}
.y2f{bottom:185.580000px;}
.y67{bottom:192.240000px;}
.y99{bottom:192.780000px;}
.yc4{bottom:194.400000px;}
.yfa{bottom:197.460000px;}
.y15d{bottom:203.070000px;}
.y12d{bottom:204.870000px;}
.y2e{bottom:205.410000px;}
.y66{bottom:212.070000px;}
.y98{bottom:212.610000px;}
.yc3{bottom:214.230000px;}
.y15c{bottom:221.610000px;}
.y12c{bottom:224.670000px;}
.y2d{bottom:225.390000px;}
.y65{bottom:231.870000px;}
.y97{bottom:232.410000px;}
.yf7{bottom:232.770000px;}
.yc2{bottom:234.030000px;}
.y15b{bottom:240.330000px;}
.y12b{bottom:244.470000px;}
.y2c{bottom:245.190000px;}
.y64{bottom:251.850000px;}
.y96{bottom:252.390000px;}
.yc1{bottom:254.010000px;}
.y15a{bottom:258.870000px;}
.y12a{bottom:264.270000px;}
.y2b{bottom:264.990000px;}
.y63{bottom:271.290000px;}
.y95{bottom:272.190000px;}
.yc0{bottom:273.810000px;}
.yf5{bottom:274.710000px;}
.y159{bottom:277.590000px;}
.y129{bottom:284.250000px;}
.y2a{bottom:284.790000px;}
.y94{bottom:286.950000px;}
.y62{bottom:291.450000px;}
.ybf{bottom:293.610000px;}
.yf4{bottom:295.590000px;}
.y158{bottom:296.850000px;}
.y128{bottom:303.690000px;}
.y29{bottom:304.590000px;}
.ybd{bottom:309.630000px;}
.y61{bottom:311.250000px;}
.yf3{bottom:316.290000px;}
.y157{bottom:317.010000px;}
.y134{bottom:318.450000px;}
.y8a{bottom:322.230000px;}
.y28{bottom:324.570000px;}
.y19c{bottom:326.550000px;}
.y60{bottom:330.690000px;}
.y156{bottom:336.810000px;}
.yf1{bottom:336.990000px;}
.ybc{bottom:344.010000px;}
.y27{bottom:344.370000px;}
.y19b{bottom:345.450000px;}
.y5f{bottom:351.030000px;}
.y155{bottom:356.610000px;}
.yf0{bottom:358.410000px;}
.y19a{bottom:363.990000px;}
.y26{bottom:364.170000px;}
.y5e{bottom:370.830000px;}
.y154{bottom:376.590000px;}
.y199{bottom:382.530000px;}
.y25{bottom:383.970000px;}
.yef{bottom:387.210000px;}
.y5d{bottom:390.630000px;}
.ybb{bottom:395.850000px;}
.y153{bottom:396.390000px;}
.y198{bottom:401.250000px;}
.y24{bottom:403.770000px;}
.yee{bottom:407.370000px;}
.y5c{bottom:410.430000px;}
.y152{bottom:416.190000px;}
.y197{bottom:419.790000px;}
.y133{bottom:422.670000px;}
.y23{bottom:423.750000px;}
.yed{bottom:427.170000px;}
.y5b{bottom:430.230000px;}
.y151{bottom:435.630000px;}
.y196{bottom:438.555000px;}
.y22{bottom:443.595000px;}
.yec{bottom:447.015000px;}
.y5a{bottom:450.255000px;}
.y127{bottom:453.495000px;}
.y150{bottom:455.475000px;}
.y195{bottom:457.095000px;}
.y21{bottom:463.395000px;}
.yba{bottom:464.835000px;}
.yeb{bottom:466.995000px;}
.y59{bottom:470.055000px;}
.y126{bottom:473.295000px;}
.y14f{bottom:475.815000px;}
.y20{bottom:483.195000px;}
.yea{bottom:486.795000px;}
.y58{bottom:489.855000px;}
.y125{bottom:493.455000px;}
.y194{bottom:494.355000px;}
.y85{bottom:495.435000px;}
.y14e{bottom:495.615000px;}
.yb8{bottom:499.395000px;}
.y1f{bottom:502.995000px;}
.ye9{bottom:506.595000px;}
.y57{bottom:509.655000px;}
.y193{bottom:512.895000px;}
.y124{bottom:513.255000px;}
.y14d{bottom:515.415000px;}
.y1e{bottom:522.975000px;}
.ye8{bottom:526.035000px;}
.y56{bottom:529.455000px;}
.y192{bottom:531.615000px;}
.y123{bottom:533.055000px;}
.yb1{bottom:534.495000px;}
.y14c{bottom:535.215000px;}
.y1d{bottom:542.415000px;}
.ye7{bottom:545.835000px;}
.y55{bottom:549.435000px;}
.y191{bottom:550.155000px;}
.y122{bottom:552.675000px;}
.y14b{bottom:555.015000px;}
.yb0{bottom:559.875000px;}
.y83{bottom:565.275000px;}
.y190{bottom:568.875000px;}
.y54{bottom:569.235000px;}
.y121{bottom:572.835000px;}
.y14a{bottom:574.995000px;}
.ye6{bottom:575.175000px;}
.yaf{bottom:580.035000px;}
.y1c{bottom:584.715000px;}
.y18f{bottom:587.415000px;}
.y53{bottom:589.035000px;}
.y82{bottom:590.475000px;}
.y120{bottom:592.635000px;}
.y149{bottom:594.795000px;}
.ye5{bottom:594.975000px;}
.yae{bottom:599.835000px;}
.y18e{bottom:605.955000px;}
.y52{bottom:608.835000px;}
.y81{bottom:610.635000px;}
.y11f{bottom:612.435000px;}
.y1b{bottom:613.515000px;}
.y148{bottom:614.595000px;}
.ye4{bottom:614.775000px;}
.yad{bottom:619.815000px;}
.y18d{bottom:624.675000px;}
.y51{bottom:628.635000px;}
.y80{bottom:630.615000px;}
.y11e{bottom:632.235000px;}
.y1a{bottom:633.315000px;}
.y147{bottom:634.395000px;}
.ye3{bottom:634.575000px;}
.yac{bottom:639.255000px;}
.y18c{bottom:643.215000px;}
.y50{bottom:648.615000px;}
.y7f{bottom:650.415000px;}
.y11d{bottom:652.215000px;}
.y19{bottom:653.115000px;}
.y146{bottom:654.195000px;}
.ye2{bottom:654.375000px;}
.y18b{bottom:661.935000px;}
.y4f{bottom:668.415000px;}
.y169{bottom:668.775000px;}
.y7e{bottom:669.855000px;}
.y11c{bottom:672.015000px;}
.y18{bottom:673.125000px;}
.ye1{bottom:674.205000px;}
.y18a{bottom:680.505000px;}
.y11b{bottom:686.445000px;}
.y4e{bottom:688.245000px;}
.y17{bottom:692.925000px;}
.ye0{bottom:694.185000px;}
.y7d{bottom:699.045000px;}
.y4d{bottom:708.045000px;}
.y16{bottom:712.725000px;}
.ydf{bottom:713.985000px;}
.y189{bottom:717.765000px;}
.y7c{bottom:718.845000px;}
.y11a{bottom:721.725000px;}
.y4c{bottom:727.845000px;}
.yab{bottom:728.025000px;}
.y102{bottom:729.825000px;}
.y15{bottom:732.525000px;}
.y188{bottom:736.305000px;}
.y7b{bottom:738.825000px;}
.y4b{bottom:747.825000px;}
.y14{bottom:752.325000px;}
.y187{bottom:755.025000px;}
.y168{bottom:755.745000px;}
.y7a{bottom:758.625000px;}
.y119{bottom:763.665000px;}
.y4a{bottom:767.625000px;}
.yde{bottom:771.585000px;}
.y13{bottom:772.305000px;}
.y186{bottom:773.565000px;}
.y79{bottom:778.425000px;}
.y145{bottom:784.185000px;}
.y118{bottom:784.365000px;}
.y49{bottom:787.425000px;}
.ydd{bottom:788.865000px;}
.ya4{bottom:789.585000px;}
.y12{bottom:792.105000px;}
.y185{bottom:792.285000px;}
.y78{bottom:798.225000px;}
.y144{bottom:804.165000px;}
.y117{bottom:805.065000px;}
.ydb{bottom:806.145000px;}
.ya3{bottom:806.865000px;}
.y48{bottom:807.225000px;}
.y184{bottom:810.825000px;}
.y11{bottom:811.905000px;}
.y77{bottom:818.025000px;}
.ya2{bottom:824.145000px;}
.y143{bottom:824.325000px;}
.y116{bottom:825.765000px;}
.y47{bottom:827.025000px;}
.yaa{bottom:827.205000px;}
.y183{bottom:829.365000px;}
.y10{bottom:831.705000px;}
.y76{bottom:838.005000px;}
.ydc{bottom:840.525000px;}
.ya1{bottom:841.425000px;}
.y142{bottom:844.125000px;}
.ya9{bottom:846.645000px;}
.y46{bottom:847.005000px;}
.y115{bottom:847.185000px;}
.y182{bottom:848.085000px;}
.yf{bottom:851.505000px;}
.y75{bottom:857.805000px;}
.y9f{bottom:858.705000px;}
.y141{bottom:863.925000px;}
.ya8{bottom:866.445000px;}
.y181{bottom:866.625000px;}
.y45{bottom:866.805000px;}
.ye{bottom:871.485000px;}
.yda{bottom:875.085000px;}
.y114{bottom:875.985000px;}
.y74{bottom:877.605000px;}
.y140{bottom:883.725000px;}
.y180{bottom:885.345000px;}
.ya7{bottom:886.245000px;}
.y44{bottom:886.605000px;}
.yd{bottom:891.285000px;}
.y113{bottom:896.145000px;}
.y73{bottom:897.405000px;}
.yd9{bottom:898.845000px;}
.y13f{bottom:903.705000px;}
.y17f{bottom:903.885000px;}
.ya6{bottom:906.045000px;}
.y43{bottom:906.405000px;}
.yc{bottom:913.290000px;}
.y112{bottom:915.990000px;}
.y72{bottom:917.250000px;}
.yd8{bottom:919.050000px;}
.y17e{bottom:922.470000px;}
.ya5{bottom:922.830000px;}
.y13e{bottom:923.550000px;}
.y42{bottom:926.250000px;}
.yb{bottom:933.270000px;}
.y111{bottom:935.790000px;}
.y71{bottom:937.230000px;}
.yd7{bottom:939.030000px;}
.y17d{bottom:941.190000px;}
.y13d{bottom:943.350000px;}
.y41{bottom:946.230000px;}
.ya{bottom:953.430000px;}
.y110{bottom:955.770000px;}
.y70{bottom:957.030000px;}
.yd6{bottom:958.830000px;}
.y17c{bottom:959.730000px;}
.y13c{bottom:963.150000px;}
.y40{bottom:966.030000px;}
.y9{bottom:974.850000px;}
.y10f{bottom:975.570000px;}
.y6f{bottom:976.830000px;}
.y17b{bottom:978.450000px;}
.yd5{bottom:978.630000px;}
.y13b{bottom:982.590000px;}
.y3f{bottom:985.830000px;}
.y10e{bottom:991.410000px;}
.y6e{bottom:996.270000px;}
.y17a{bottom:996.990000px;}
.y164{bottom:997.530000px;}
.y8{bottom:997.890000px;}
.yd4{bottom:998.430000px;}
.y3e{bottom:1005.630000px;}
.y179{bottom:1015.530000px;}
.yd3{bottom:1018.230000px;}
.y3d{bottom:1025.430000px;}
.y10b{bottom:1026.690000px;}
.y7{bottom:1029.750000px;}
.yd0{bottom:1032.810000px;}
.y178{bottom:1034.250000px;}
.y3c{bottom:1045.410000px;}
.y177{bottom:1052.790000px;}
.ycf{bottom:1053.870000px;}
.y3b{bottom:1065.210000px;}
.y5{bottom:1068.630000px;}
.y10a{bottom:1068.990000px;}
.yce{bottom:1071.150000px;}
.y176{bottom:1071.510000px;}
.y3a{bottom:1085.010000px;}
.y109{bottom:1086.270000px;}
.ycb{bottom:1088.430000px;}
.y175{bottom:1090.050000px;}
.y4{bottom:1099.410000px;}
.y108{bottom:1103.370000px;}
.y39{bottom:1104.810000px;}
.ycd{bottom:1105.710000px;}
.y174{bottom:1108.770000px;}
.y163{bottom:1118.850000px;}
.y107{bottom:1120.650000px;}
.ycc{bottom:1122.990000px;}
.y38{bottom:1124.610000px;}
.y173{bottom:1127.310000px;}
.y3{bottom:1130.370000px;}
.y106{bottom:1138.650000px;}
.yca{bottom:1140.990000px;}
.y13a{bottom:1144.230000px;}
.y37{bottom:1144.590000px;}
.y172{bottom:1145.880000px;}
.y2{bottom:1161.180000px;}
.y6d{bottom:1164.060000px;}
.y36{bottom:1164.420000px;}
.y171{bottom:1164.600000px;}
.y1{bottom:1192.140000px;}
.y35{bottom:1193.580000px;}
.h10{height:17.100000px;}
.h11{height:17.280000px;}
.h16{height:17.316000px;}
.hc{height:18.720000px;}
.h17{height:20.340000px;}
.h19{height:20.700000px;}
.h1a{height:20.880000px;}
.h13{height:34.380000px;}
.hf{height:34.560000px;}
.h14{height:34.596000px;}
.h1c{height:39.780000px;}
.h1b{height:41.220000px;}
.h1d{height:41.580000px;}
.h9{height:41.726953px;}
.h15{height:51.840000px;}
.hb{height:58.621992px;}
.h5{height:58.651172px;}
.h7{height:60.226875px;}
.ha{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h18{height:68.940000px;}
.hd{height:69.120000px;}
.h2{height:72.562500px;}
.h20{height:86.256000px;}
.h4{height:96.508125px;}
.h1e{height:103.500000px;}
.h12{height:103.536000px;}
.h1f{height:120.600000px;}
.he{height:172.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w39{width:74.376000px;}
.w46{width:74.556000px;}
.w19{width:77.796000px;}
.w48{width:82.116000px;}
.w26{width:82.476000px;}
.w3b{width:82.656000px;}
.w3{width:82.980000px;}
.we{width:85.860000px;}
.w30{width:89.136000px;}
.w1b{width:89.676000px;}
.w32{width:89.856000px;}
.w29{width:94.176000px;}
.w40{width:95.400000px;}
.w2f{width:96.840000px;}
.w2a{width:97.380000px;}
.w28{width:97.956000px;}
.w47{width:99.000000px;}
.w18{width:100.080000px;}
.w5{width:102.636000px;}
.w3a{width:102.780000px;}
.wa{width:105.120000px;}
.w37{width:106.380000px;}
.w44{width:106.416000px;}
.w34{width:108.936000px;}
.w27{width:115.056000px;}
.w45{width:116.820000px;}
.w36{width:117.036000px;}
.w33{width:120.096000px;}
.w1d{width:122.076000px;}
.w12{width:122.220000px;}
.w25{width:122.616000px;}
.w1a{width:124.020000px;}
.w31{width:127.440000px;}
.w43{width:127.476000px;}
.w3e{width:127.620000px;}
.w3c{width:127.656000px;}
.w6{width:128.376000px;}
.w1c{width:129.096000px;}
.w1f{width:131.580000px;}
.w17{width:133.416000px;}
.w2e{width:133.596000px;}
.w38{width:138.276000px;}
.w24{width:148.500000px;}
.w3f{width:148.896000px;}
.w9{width:157.890000px;}
.w41{width:159.690000px;}
.w10{width:170.130000px;}
.wb{width:178.590000px;}
.wc{width:180.930000px;}
.w7{width:189.030000px;}
.w22{width:191.550000px;}
.w20{width:201.675000px;}
.w13{width:204.915000px;}
.w23{width:213.015000px;}
.w16{width:213.690000px;}
.w2d{width:217.110000px;}
.wd{width:222.375000px;}
.w2c{width:229.035000px;}
.w8{width:230.430000px;}
.wf{width:231.510000px;}
.w15{width:251.175000px;}
.w11{width:263.955000px;}
.w1e{width:424.545000px;}
.w4{width:575.745000px;}
.w42{width:606.390000px;}
.w35{width:621.510000px;}
.w3d{width:645.990000px;}
.w21{width:758.160000px;}
.w2b{width:765.720000px;}
.w14{width:776.160000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1d{left:46.440000px;}
.x2d{left:50.220000px;}
.x1{left:54.179987px;}
.x16{left:58.500000px;}
.x26{left:63.720000px;}
.x13{left:66.060000px;}
.x1e{left:67.140000px;}
.x33{left:80.999987px;}
.xf{left:86.220000px;}
.x34{left:108.035987px;}
.xb{left:110.556000px;}
.x3{left:116.856000px;}
.x25{left:161.670000px;}
.x2c{left:183.810000px;}
.x1c{left:187.590000px;}
.x5{left:200.550000px;}
.x2e{left:220.350000px;}
.x3a{left:222.690000px;}
.x6{left:236.010000px;}
.x20{left:259.050000px;}
.x10{left:267.150000px;}
.x27{left:292.755000px;}
.x35{left:303.915000px;}
.x17{left:309.675000px;}
.xa{left:328.574987px;}
.x2f{left:337.395000px;}
.x7{left:338.655000px;}
.xc{left:340.995000px;}
.x3b{left:350.175000px;}
.x24{left:374.115000px;}
.x2b{left:420.195000px;}
.x36{left:431.535000px;}
.x1b{left:433.695000px;}
.x30{left:443.775000px;}
.x3c{left:456.585000px;}
.x8{left:467.025000px;}
.x21{left:472.065000px;}
.x11{left:489.525000px;}
.x1f{left:491.685000px;}
.xd{left:498.885000px;}
.x14{left:500.145000px;}
.x28{left:509.865000px;}
.x18{left:523.365000px;}
.x3d{left:573.405000px;}
.x12{left:575.385000px;}
.x37{left:580.425000px;}
.x31{left:582.045000px;}
.xe{left:604.005000px;}
.x22{left:620.565000px;}
.x15{left:622.365000px;}
.x29{left:643.470000px;}
.x3e{left:647.970000px;}
.x38{left:654.810000px;}
.x19{left:656.790000px;}
.x9{left:664.889987px;}
.x2a{left:740.310000px;}
.x23{left:743.190000px;}
.x3f{left:746.970000px;}
.x39{left:750.210000px;}
.x1a{left:756.870000px;}
.x32{left:759.210000px;}
.x2{left:804.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.600000pt;}
.ls1c{letter-spacing:-1.232000pt;}
.ls17{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.869333pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.272533pt;}
.ls14{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.592000pt;}
.ls24{letter-spacing:0.688000pt;}
.ls21{letter-spacing:0.736000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.344000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls22{letter-spacing:10.192640pt;}
.ls15{letter-spacing:14.236160pt;}
.lsa{letter-spacing:20.432640pt;}
.lsb{letter-spacing:23.632640pt;}
.ls2{letter-spacing:36.320000pt;}
.ls20{letter-spacing:37.072640pt;}
.ls11{letter-spacing:101.840640pt;}
.lsd{letter-spacing:122.320640pt;}
.ls13{letter-spacing:137.040640pt;}
.ls4{letter-spacing:143.440640pt;}
.ls10{letter-spacing:159.312640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.968000pt;}
.wse{word-spacing:-13.872000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.410667pt;}
.ws6{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.048000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-2475.931947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-507.912320pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._28{margin-left:-14.864640pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._21{margin-left:-3.189760pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._1f{width:3.304107pt;}
._20{width:4.940160pt;}
._22{width:6.061440pt;}
._23{width:7.612800pt;}
._24{width:9.332480pt;}
._25{width:10.338560pt;}
._26{width:14.608000pt;}
._30{width:18.273280pt;}
._2c{width:26.928000pt;}
._2a{width:28.291200pt;}
._1e{width:35.367680pt;}
._1d{width:36.730667pt;}
._31{width:50.737920pt;}
._2d{width:103.212160pt;}
._27{width:178.848000pt;}
._2e{width:181.564160pt;}
._2f{width:202.918400pt;}
._29{width:209.446400pt;}
._2b{width:1117.866667pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:2.880000pt;}
.yb2{bottom:3.040000pt;}
.yb9{bottom:3.200000pt;}
.y89{bottom:3.360000pt;}
.yfc{bottom:3.386667pt;}
.y84{bottom:4.320000pt;}
.y104{bottom:5.280000pt;}
.yd2{bottom:5.760000pt;}
.yd1{bottom:6.080000pt;}
.yf2{bottom:6.400000pt;}
.yf6{bottom:6.560000pt;}
.yf9{bottom:8.960000pt;}
.y10d{bottom:9.280000pt;}
.ybe{bottom:18.240000pt;}
.y16d{bottom:18.266667pt;}
.y139{bottom:18.400000pt;}
.y93{bottom:18.560000pt;}
.y16f{bottom:18.586667pt;}
.y88{bottom:18.720000pt;}
.yfb{bottom:18.746667pt;}
.yb7{bottom:18.760000pt;}
.y103{bottom:22.880000pt;}
.y105{bottom:23.200000pt;}
.yf8{bottom:24.320000pt;}
.y10c{bottom:24.640000pt;}
.y138{bottom:33.600000pt;}
.y16c{bottom:33.626667pt;}
.y92{bottom:33.920000pt;}
.y16e{bottom:33.946667pt;}
.y87{bottom:34.080000pt;}
.yb6{bottom:34.120000pt;}
.y137{bottom:48.960000pt;}
.y16b{bottom:48.986667pt;}
.y91{bottom:49.280000pt;}
.y170{bottom:49.306667pt;}
.y86{bottom:49.440000pt;}
.yb5{bottom:49.480000pt;}
.y6{bottom:53.920000pt;}
.y136{bottom:64.320000pt;}
.y16a{bottom:64.346667pt;}
.y90{bottom:64.640000pt;}
.yb4{bottom:64.680000pt;}
.y34{bottom:76.800000pt;}
.y166{bottom:79.520000pt;}
.y135{bottom:79.680000pt;}
.y167{bottom:79.840000pt;}
.y8f{bottom:80.000000pt;}
.yb3{bottom:80.040000pt;}
.y162{bottom:81.280000pt;}
.y6c{bottom:82.720000pt;}
.y9e{bottom:83.520000pt;}
.yc9{bottom:84.640000pt;}
.y101{bottom:90.560000pt;}
.y132{bottom:93.920000pt;}
.y33{bottom:94.560000pt;}
.y165{bottom:94.880000pt;}
.y8e{bottom:95.360000pt;}
.y161{bottom:97.760000pt;}
.y6b{bottom:100.320000pt;}
.y9d{bottom:100.800000pt;}
.yc8{bottom:102.240000pt;}
.y100{bottom:108.480000pt;}
.y8d{bottom:110.600000pt;}
.y131{bottom:111.520000pt;}
.y32{bottom:112.160000pt;}
.y160{bottom:114.240000pt;}
.y6a{bottom:117.920000pt;}
.y9c{bottom:118.400000pt;}
.yc7{bottom:119.840000pt;}
.y8c{bottom:125.960000pt;}
.yff{bottom:126.080000pt;}
.y130{bottom:129.120000pt;}
.y31{bottom:129.760000pt;}
.y15f{bottom:130.880000pt;}
.y69{bottom:135.680000pt;}
.y9b{bottom:136.160000pt;}
.yc6{bottom:137.600000pt;}
.y8b{bottom:141.320000pt;}
.yfe{bottom:143.840000pt;}
.y12f{bottom:146.720000pt;}
.y30{bottom:147.360000pt;}
.y68{bottom:153.280000pt;}
.y9a{bottom:153.760000pt;}
.yc5{bottom:155.200000pt;}
.yfd{bottom:161.440000pt;}
.y15e{bottom:164.000000pt;}
.y12e{bottom:164.480000pt;}
.y2f{bottom:164.960000pt;}
.y67{bottom:170.880000pt;}
.y99{bottom:171.360000pt;}
.yc4{bottom:172.800000pt;}
.yfa{bottom:175.520000pt;}
.y15d{bottom:180.506667pt;}
.y12d{bottom:182.106667pt;}
.y2e{bottom:182.586667pt;}
.y66{bottom:188.506667pt;}
.y98{bottom:188.986667pt;}
.yc3{bottom:190.426667pt;}
.y15c{bottom:196.986667pt;}
.y12c{bottom:199.706667pt;}
.y2d{bottom:200.346667pt;}
.y65{bottom:206.106667pt;}
.y97{bottom:206.586667pt;}
.yf7{bottom:206.906667pt;}
.yc2{bottom:208.026667pt;}
.y15b{bottom:213.626667pt;}
.y12b{bottom:217.306667pt;}
.y2c{bottom:217.946667pt;}
.y64{bottom:223.866667pt;}
.y96{bottom:224.346667pt;}
.yc1{bottom:225.786667pt;}
.y15a{bottom:230.106667pt;}
.y12a{bottom:234.906667pt;}
.y2b{bottom:235.546667pt;}
.y63{bottom:241.146667pt;}
.y95{bottom:241.946667pt;}
.yc0{bottom:243.386667pt;}
.yf5{bottom:244.186667pt;}
.y159{bottom:246.746667pt;}
.y129{bottom:252.666667pt;}
.y2a{bottom:253.146667pt;}
.y94{bottom:255.066667pt;}
.y62{bottom:259.066667pt;}
.ybf{bottom:260.986667pt;}
.yf4{bottom:262.746667pt;}
.y158{bottom:263.866667pt;}
.y128{bottom:269.946667pt;}
.y29{bottom:270.746667pt;}
.ybd{bottom:275.226667pt;}
.y61{bottom:276.666667pt;}
.yf3{bottom:281.146667pt;}
.y157{bottom:281.786667pt;}
.y134{bottom:283.066667pt;}
.y8a{bottom:286.426667pt;}
.y28{bottom:288.506667pt;}
.y19c{bottom:290.266667pt;}
.y60{bottom:293.946667pt;}
.y156{bottom:299.386667pt;}
.yf1{bottom:299.546667pt;}
.ybc{bottom:305.786667pt;}
.y27{bottom:306.106667pt;}
.y19b{bottom:307.066667pt;}
.y5f{bottom:312.026667pt;}
.y155{bottom:316.986667pt;}
.yf0{bottom:318.586667pt;}
.y19a{bottom:323.546667pt;}
.y26{bottom:323.706667pt;}
.y5e{bottom:329.626667pt;}
.y154{bottom:334.746667pt;}
.y199{bottom:340.026667pt;}
.y25{bottom:341.306667pt;}
.yef{bottom:344.186667pt;}
.y5d{bottom:347.226667pt;}
.ybb{bottom:351.866667pt;}
.y153{bottom:352.346667pt;}
.y198{bottom:356.666667pt;}
.y24{bottom:358.906667pt;}
.yee{bottom:362.106667pt;}
.y5c{bottom:364.826667pt;}
.y152{bottom:369.946667pt;}
.y197{bottom:373.146667pt;}
.y133{bottom:375.706667pt;}
.y23{bottom:376.666667pt;}
.yed{bottom:379.706667pt;}
.y5b{bottom:382.426667pt;}
.y151{bottom:387.226667pt;}
.y196{bottom:389.826667pt;}
.y22{bottom:394.306667pt;}
.yec{bottom:397.346667pt;}
.y5a{bottom:400.226667pt;}
.y127{bottom:403.106667pt;}
.y150{bottom:404.866667pt;}
.y195{bottom:406.306667pt;}
.y21{bottom:411.906667pt;}
.yba{bottom:413.186667pt;}
.yeb{bottom:415.106667pt;}
.y59{bottom:417.826667pt;}
.y126{bottom:420.706667pt;}
.y14f{bottom:422.946667pt;}
.y20{bottom:429.506667pt;}
.yea{bottom:432.706667pt;}
.y58{bottom:435.426667pt;}
.y125{bottom:438.626667pt;}
.y194{bottom:439.426667pt;}
.y85{bottom:440.386667pt;}
.y14e{bottom:440.546667pt;}
.yb8{bottom:443.906667pt;}
.y1f{bottom:447.106667pt;}
.ye9{bottom:450.306667pt;}
.y57{bottom:453.026667pt;}
.y193{bottom:455.906667pt;}
.y124{bottom:456.226667pt;}
.y14d{bottom:458.146667pt;}
.y1e{bottom:464.866667pt;}
.ye8{bottom:467.586667pt;}
.y56{bottom:470.626667pt;}
.y192{bottom:472.546667pt;}
.y123{bottom:473.826667pt;}
.yb1{bottom:475.106667pt;}
.y14c{bottom:475.746667pt;}
.y1d{bottom:482.146667pt;}
.ye7{bottom:485.186667pt;}
.y55{bottom:488.386667pt;}
.y191{bottom:489.026667pt;}
.y122{bottom:491.266667pt;}
.y14b{bottom:493.346667pt;}
.yb0{bottom:497.666667pt;}
.y83{bottom:502.466667pt;}
.y190{bottom:505.666667pt;}
.y54{bottom:505.986667pt;}
.y121{bottom:509.186667pt;}
.y14a{bottom:511.106667pt;}
.ye6{bottom:511.266667pt;}
.yaf{bottom:515.586667pt;}
.y1c{bottom:519.746667pt;}
.y18f{bottom:522.146667pt;}
.y53{bottom:523.586667pt;}
.y82{bottom:524.866667pt;}
.y120{bottom:526.786667pt;}
.y149{bottom:528.706667pt;}
.ye5{bottom:528.866667pt;}
.yae{bottom:533.186667pt;}
.y18e{bottom:538.626667pt;}
.y52{bottom:541.186667pt;}
.y81{bottom:542.786667pt;}
.y11f{bottom:544.386667pt;}
.y1b{bottom:545.346667pt;}
.y148{bottom:546.306667pt;}
.ye4{bottom:546.466667pt;}
.yad{bottom:550.946667pt;}
.y18d{bottom:555.266667pt;}
.y51{bottom:558.786667pt;}
.y80{bottom:560.546667pt;}
.y11e{bottom:561.986667pt;}
.y1a{bottom:562.946667pt;}
.y147{bottom:563.906667pt;}
.ye3{bottom:564.066667pt;}
.yac{bottom:568.226667pt;}
.y18c{bottom:571.746667pt;}
.y50{bottom:576.546667pt;}
.y7f{bottom:578.146667pt;}
.y11d{bottom:579.746667pt;}
.y19{bottom:580.546667pt;}
.y146{bottom:581.506667pt;}
.ye2{bottom:581.666667pt;}
.y18b{bottom:588.386667pt;}
.y4f{bottom:594.146667pt;}
.y169{bottom:594.466667pt;}
.y7e{bottom:595.426667pt;}
.y11c{bottom:597.346667pt;}
.y18{bottom:598.333333pt;}
.ye1{bottom:599.293333pt;}
.y18a{bottom:604.893333pt;}
.y11b{bottom:610.173333pt;}
.y4e{bottom:611.773333pt;}
.y17{bottom:615.933333pt;}
.ye0{bottom:617.053333pt;}
.y7d{bottom:621.373333pt;}
.y4d{bottom:629.373333pt;}
.y16{bottom:633.533333pt;}
.ydf{bottom:634.653333pt;}
.y189{bottom:638.013333pt;}
.y7c{bottom:638.973333pt;}
.y11a{bottom:641.533333pt;}
.y4c{bottom:646.973333pt;}
.yab{bottom:647.133333pt;}
.y102{bottom:648.733333pt;}
.y15{bottom:651.133333pt;}
.y188{bottom:654.493333pt;}
.y7b{bottom:656.733333pt;}
.y4b{bottom:664.733333pt;}
.y14{bottom:668.733333pt;}
.y187{bottom:671.133333pt;}
.y168{bottom:671.773333pt;}
.y7a{bottom:674.333333pt;}
.y119{bottom:678.813333pt;}
.y4a{bottom:682.333333pt;}
.yde{bottom:685.853333pt;}
.y13{bottom:686.493333pt;}
.y186{bottom:687.613333pt;}
.y79{bottom:691.933333pt;}
.y145{bottom:697.053333pt;}
.y118{bottom:697.213333pt;}
.y49{bottom:699.933333pt;}
.ydd{bottom:701.213333pt;}
.ya4{bottom:701.853333pt;}
.y12{bottom:704.093333pt;}
.y185{bottom:704.253333pt;}
.y78{bottom:709.533333pt;}
.y144{bottom:714.813333pt;}
.y117{bottom:715.613333pt;}
.ydb{bottom:716.573333pt;}
.ya3{bottom:717.213333pt;}
.y48{bottom:717.533333pt;}
.y184{bottom:720.733333pt;}
.y11{bottom:721.693333pt;}
.y77{bottom:727.133333pt;}
.ya2{bottom:732.573333pt;}
.y143{bottom:732.733333pt;}
.y116{bottom:734.013333pt;}
.y47{bottom:735.133333pt;}
.yaa{bottom:735.293333pt;}
.y183{bottom:737.213333pt;}
.y10{bottom:739.293333pt;}
.y76{bottom:744.893333pt;}
.ydc{bottom:747.133333pt;}
.ya1{bottom:747.933333pt;}
.y142{bottom:750.333333pt;}
.ya9{bottom:752.573333pt;}
.y46{bottom:752.893333pt;}
.y115{bottom:753.053333pt;}
.y182{bottom:753.853333pt;}
.yf{bottom:756.893333pt;}
.y75{bottom:762.493333pt;}
.y9f{bottom:763.293333pt;}
.y141{bottom:767.933333pt;}
.ya8{bottom:770.173333pt;}
.y181{bottom:770.333333pt;}
.y45{bottom:770.493333pt;}
.ye{bottom:774.653333pt;}
.yda{bottom:777.853333pt;}
.y114{bottom:778.653333pt;}
.y74{bottom:780.093333pt;}
.y140{bottom:785.533333pt;}
.y180{bottom:786.973333pt;}
.ya7{bottom:787.773333pt;}
.y44{bottom:788.093333pt;}
.yd{bottom:792.253333pt;}
.y113{bottom:796.573333pt;}
.y73{bottom:797.693333pt;}
.yd9{bottom:798.973333pt;}
.y13f{bottom:803.293333pt;}
.y17f{bottom:803.453333pt;}
.ya6{bottom:805.373333pt;}
.y43{bottom:805.693333pt;}
.yc{bottom:811.813333pt;}
.y112{bottom:814.213333pt;}
.y72{bottom:815.333333pt;}
.yd8{bottom:816.933333pt;}
.y17e{bottom:819.973333pt;}
.ya5{bottom:820.293333pt;}
.y13e{bottom:820.933333pt;}
.y42{bottom:823.333333pt;}
.yb{bottom:829.573333pt;}
.y111{bottom:831.813333pt;}
.y71{bottom:833.093333pt;}
.yd7{bottom:834.693333pt;}
.y17d{bottom:836.613333pt;}
.y13d{bottom:838.533333pt;}
.y41{bottom:841.093333pt;}
.ya{bottom:847.493333pt;}
.y110{bottom:849.573333pt;}
.y70{bottom:850.693333pt;}
.yd6{bottom:852.293333pt;}
.y17c{bottom:853.093333pt;}
.y13c{bottom:856.133333pt;}
.y40{bottom:858.693333pt;}
.y9{bottom:866.533333pt;}
.y10f{bottom:867.173333pt;}
.y6f{bottom:868.293333pt;}
.y17b{bottom:869.733333pt;}
.yd5{bottom:869.893333pt;}
.y13b{bottom:873.413333pt;}
.y3f{bottom:876.293333pt;}
.y10e{bottom:881.253333pt;}
.y6e{bottom:885.573333pt;}
.y17a{bottom:886.213333pt;}
.y164{bottom:886.693333pt;}
.y8{bottom:887.013333pt;}
.yd4{bottom:887.493333pt;}
.y3e{bottom:893.893333pt;}
.y179{bottom:902.693333pt;}
.yd3{bottom:905.093333pt;}
.y3d{bottom:911.493333pt;}
.y10b{bottom:912.613333pt;}
.y7{bottom:915.333333pt;}
.yd0{bottom:918.053333pt;}
.y178{bottom:919.333333pt;}
.y3c{bottom:929.253333pt;}
.y177{bottom:935.813333pt;}
.ycf{bottom:936.773333pt;}
.y3b{bottom:946.853333pt;}
.y5{bottom:949.893333pt;}
.y10a{bottom:950.213333pt;}
.yce{bottom:952.133333pt;}
.y176{bottom:952.453333pt;}
.y3a{bottom:964.453333pt;}
.y109{bottom:965.573333pt;}
.ycb{bottom:967.493333pt;}
.y175{bottom:968.933333pt;}
.y4{bottom:977.253333pt;}
.y108{bottom:980.773333pt;}
.y39{bottom:982.053333pt;}
.ycd{bottom:982.853333pt;}
.y174{bottom:985.573333pt;}
.y163{bottom:994.533333pt;}
.y107{bottom:996.133333pt;}
.ycc{bottom:998.213333pt;}
.y38{bottom:999.653333pt;}
.y173{bottom:1002.053333pt;}
.y3{bottom:1004.773333pt;}
.y106{bottom:1012.133333pt;}
.yca{bottom:1014.213333pt;}
.y13a{bottom:1017.093333pt;}
.y37{bottom:1017.413333pt;}
.y172{bottom:1018.560000pt;}
.y2{bottom:1032.160000pt;}
.y6d{bottom:1034.720000pt;}
.y36{bottom:1035.040000pt;}
.y171{bottom:1035.200000pt;}
.y1{bottom:1059.680000pt;}
.y35{bottom:1060.960000pt;}
.h10{height:15.200000pt;}
.h11{height:15.360000pt;}
.h16{height:15.392000pt;}
.hc{height:16.640000pt;}
.h17{height:18.080000pt;}
.h19{height:18.400000pt;}
.h1a{height:18.560000pt;}
.h13{height:30.560000pt;}
.hf{height:30.720000pt;}
.h14{height:30.752000pt;}
.h1c{height:35.360000pt;}
.h1b{height:36.640000pt;}
.h1d{height:36.960000pt;}
.h9{height:37.090625pt;}
.h15{height:46.080000pt;}
.hb{height:52.108438pt;}
.h5{height:52.134375pt;}
.h7{height:53.535000pt;}
.ha{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h18{height:61.280000pt;}
.hd{height:61.440000pt;}
.h2{height:64.500000pt;}
.h20{height:76.672000pt;}
.h4{height:85.785000pt;}
.h1e{height:92.000000pt;}
.h12{height:92.032000pt;}
.h1f{height:107.200000pt;}
.he{height:153.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w39{width:66.112000pt;}
.w46{width:66.272000pt;}
.w19{width:69.152000pt;}
.w48{width:72.992000pt;}
.w26{width:73.312000pt;}
.w3b{width:73.472000pt;}
.w3{width:73.760000pt;}
.we{width:76.320000pt;}
.w30{width:79.232000pt;}
.w1b{width:79.712000pt;}
.w32{width:79.872000pt;}
.w29{width:83.712000pt;}
.w40{width:84.800000pt;}
.w2f{width:86.080000pt;}
.w2a{width:86.560000pt;}
.w28{width:87.072000pt;}
.w47{width:88.000000pt;}
.w18{width:88.960000pt;}
.w5{width:91.232000pt;}
.w3a{width:91.360000pt;}
.wa{width:93.440000pt;}
.w37{width:94.560000pt;}
.w44{width:94.592000pt;}
.w34{width:96.832000pt;}
.w27{width:102.272000pt;}
.w45{width:103.840000pt;}
.w36{width:104.032000pt;}
.w33{width:106.752000pt;}
.w1d{width:108.512000pt;}
.w12{width:108.640000pt;}
.w25{width:108.992000pt;}
.w1a{width:110.240000pt;}
.w31{width:113.280000pt;}
.w43{width:113.312000pt;}
.w3e{width:113.440000pt;}
.w3c{width:113.472000pt;}
.w6{width:114.112000pt;}
.w1c{width:114.752000pt;}
.w1f{width:116.960000pt;}
.w17{width:118.592000pt;}
.w2e{width:118.752000pt;}
.w38{width:122.912000pt;}
.w24{width:132.000000pt;}
.w3f{width:132.352000pt;}
.w9{width:140.346667pt;}
.w41{width:141.946667pt;}
.w10{width:151.226667pt;}
.wb{width:158.746667pt;}
.wc{width:160.826667pt;}
.w7{width:168.026667pt;}
.w22{width:170.266667pt;}
.w20{width:179.266667pt;}
.w13{width:182.146667pt;}
.w23{width:189.346667pt;}
.w16{width:189.946667pt;}
.w2d{width:192.986667pt;}
.wd{width:197.666667pt;}
.w2c{width:203.586667pt;}
.w8{width:204.826667pt;}
.wf{width:205.786667pt;}
.w15{width:223.266667pt;}
.w11{width:234.626667pt;}
.w1e{width:377.373333pt;}
.w4{width:511.773333pt;}
.w42{width:539.013333pt;}
.w35{width:552.453333pt;}
.w3d{width:574.213333pt;}
.w21{width:673.920000pt;}
.w2b{width:680.640000pt;}
.w14{width:689.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1d{left:41.280000pt;}
.x2d{left:44.640000pt;}
.x1{left:48.159988pt;}
.x16{left:52.000000pt;}
.x26{left:56.640000pt;}
.x13{left:58.720000pt;}
.x1e{left:59.680000pt;}
.x33{left:71.999988pt;}
.xf{left:76.640000pt;}
.x34{left:96.031988pt;}
.xb{left:98.272000pt;}
.x3{left:103.872000pt;}
.x25{left:143.706667pt;}
.x2c{left:163.386667pt;}
.x1c{left:166.746667pt;}
.x5{left:178.266667pt;}
.x2e{left:195.866667pt;}
.x3a{left:197.946667pt;}
.x6{left:209.786667pt;}
.x20{left:230.266667pt;}
.x10{left:237.466667pt;}
.x27{left:260.226667pt;}
.x35{left:270.146667pt;}
.x17{left:275.266667pt;}
.xa{left:292.066655pt;}
.x2f{left:299.906667pt;}
.x7{left:301.026667pt;}
.xc{left:303.106667pt;}
.x3b{left:311.266667pt;}
.x24{left:332.546667pt;}
.x2b{left:373.506667pt;}
.x36{left:383.586667pt;}
.x1b{left:385.506667pt;}
.x30{left:394.466667pt;}
.x3c{left:405.853333pt;}
.x8{left:415.133333pt;}
.x21{left:419.613333pt;}
.x11{left:435.133333pt;}
.x1f{left:437.053333pt;}
.xd{left:443.453333pt;}
.x14{left:444.573333pt;}
.x28{left:453.213333pt;}
.x18{left:465.213333pt;}
.x3d{left:509.693333pt;}
.x12{left:511.453333pt;}
.x37{left:515.933333pt;}
.x31{left:517.373333pt;}
.xe{left:536.893333pt;}
.x22{left:551.613333pt;}
.x15{left:553.213333pt;}
.x29{left:571.973333pt;}
.x3e{left:575.973333pt;}
.x38{left:582.053333pt;}
.x19{left:583.813333pt;}
.x9{left:591.013322pt;}
.x2a{left:658.053333pt;}
.x23{left:660.613333pt;}
.x3f{left:663.973333pt;}
.x39{left:666.853333pt;}
.x1a{left:672.773333pt;}
.x32{left:674.853333pt;}
.x2{left:714.853322pt;}
}




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