
    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_a076ab54134ac64b38db7536.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c88bf368013f2c9f0410bf99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_505c93a93e93762149e7f90f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_7946be1ad9a872adb95f7da1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d540baaf82d3b55471e224a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_9d81df075761bb150867bd38.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_7f28bb8bbc50d5bee143d8ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls13{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.413400px;}
.ls12{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.077760px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.319680px;}
.ls8{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.447600px;}
.lsd{letter-spacing:0.460200px;}
.lsf{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.828000px;}
.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;}
}
.ws12{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.606000px;}
.wsa{word-spacing:-15.400200px;}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.526600px;}
.ws1{word-spacing:-13.505760px;}
.ws2{word-spacing:-9.234480px;}
.ws0{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.514480px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-1.287600px;}
._0{width:1.075680px;}
._1{width:2.330640px;}
._5{width:3.592320px;}
._c{width:4.781280px;}
._f{width:6.186720px;}
._2{width:7.589520px;}
._8{width:8.904720px;}
._7{width:10.215120px;}
._6{width:11.620080px;}
._e{width:13.565520px;}
._4{width:15.512880px;}
._a{width:17.271120px;}
._b{width:18.282720px;}
._11{width:19.872960px;}
._10{width:21.334320px;}
._17{width:23.127120px;}
._13{width:24.441840px;}
._14{width:26.354160px;}
._12{width:27.916320px;}
._15{width:34.063200px;}
._16{width:35.079120px;}
._9{width:36.215040px;}
._d{width:849.216000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs3{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.585000px;}
.y7e{bottom:3.600000px;}
.yba{bottom:3.765000px;}
.y79{bottom:3.780000px;}
.y125{bottom:3.810000px;}
.y48{bottom:6.945000px;}
.y230{bottom:8.640000px;}
.y82{bottom:8.985000px;}
.y62{bottom:9.000000px;}
.y74{bottom:9.030000px;}
.yc4{bottom:9.045000px;}
.y1d3{bottom:9.720000px;}
.y1d4{bottom:9.900000px;}
.yda{bottom:10.065000px;}
.y117{bottom:10.080000px;}
.y127{bottom:10.110000px;}
.y142{bottom:10.245000px;}
.y12a{bottom:10.260000px;}
.y138{bottom:11.160000px;}
.y1ef{bottom:12.225000px;}
.y1db{bottom:12.240000px;}
.y1f3{bottom:12.270000px;}
.y1fd{bottom:12.285000px;}
.y1e7{bottom:12.405000px;}
.y1d6{bottom:12.420000px;}
.y1e0{bottom:12.450000px;}
.y4a{bottom:15.270000px;}
.y1a6{bottom:16.050000px;}
.yde{bottom:16.740000px;}
.y60{bottom:18.000000px;}
.y21e{bottom:20.700000px;}
.y88{bottom:20.865000px;}
.y7d{bottom:20.880000px;}
.y106{bottom:20.910000px;}
.y186{bottom:20.925000px;}
.yb9{bottom:21.045000px;}
.y78{bottom:21.060000px;}
.y104{bottom:21.090000px;}
.yf4{bottom:27.000000px;}
.y222{bottom:32.205000px;}
.yf3{bottom:33.300000px;}
.y1a5{bottom:33.330000px;}
.y1d1{bottom:34.200000px;}
.y100{bottom:36.165000px;}
.y140{bottom:38.145000px;}
.ye4{bottom:38.160000px;}
.y1bc{bottom:38.190000px;}
.y10e{bottom:38.205000px;}
.yfe{bottom:38.325000px;}
.ye2{bottom:38.340000px;}
.yef{bottom:38.370000px;}
.yfd{bottom:55.425000px;}
.yeb{bottom:55.440000px;}
.y1ad{bottom:55.470000px;}
.y185{bottom:55.485000px;}
.y121{bottom:55.605000px;}
.y153{bottom:55.620000px;}
.y115{bottom:55.650000px;}
.y2{bottom:57.420000px;}
.y1cf{bottom:58.500000px;}
.yfc{bottom:72.705000px;}
.yea{bottom:72.720000px;}
.y114{bottom:72.750000px;}
.y184{bottom:72.765000px;}
.y152{bottom:72.900000px;}
.y1{bottom:78.120000px;}
.yfb{bottom:89.985000px;}
.ye9{bottom:90.000000px;}
.y113{bottom:90.030000px;}
.y151{bottom:90.045000px;}
.y162{bottom:107.130000px;}
.y120{bottom:107.265000px;}
.ye8{bottom:107.280000px;}
.yfa{bottom:107.310000px;}
.y132{bottom:107.325000px;}
.y139{bottom:114.660000px;}
.y8f{bottom:116.640000px;}
.y1a9{bottom:116.820000px;}
.y217{bottom:118.080000px;}
.ydf{bottom:118.440000px;}
.y1c9{bottom:119.160000px;}
.y119{bottom:121.140000px;}
.ybc{bottom:121.500000px;}
.y22c{bottom:121.860000px;}
.y161{bottom:124.410000px;}
.y131{bottom:124.425000px;}
.y11f{bottom:124.545000px;}
.y13d{bottom:124.560000px;}
.yf9{bottom:124.590000px;}
.ye7{bottom:124.605000px;}
.y326{bottom:125.280000px;}
.y173{bottom:125.640000px;}
.y190{bottom:126.360000px;}
.y2c9{bottom:127.440000px;}
.y22{bottom:128.520000px;}
.y168{bottom:129.060000px;}
.y286{bottom:129.420000px;}
.y3c{bottom:130.860000px;}
.y1f1{bottom:133.920000px;}
.y147{bottom:139.140000px;}
.y8e{bottom:139.860000px;}
.y1af{bottom:141.120000px;}
.y160{bottom:141.690000px;}
.y130{bottom:141.705000px;}
.y11e{bottom:141.825000px;}
.y13c{bottom:141.840000px;}
.yf8{bottom:141.870000px;}
.y150{bottom:141.885000px;}
.y325{bottom:142.560000px;}
.y267{bottom:143.280000px;}
.ybb{bottom:144.720000px;}
.y22b{bottom:146.160000px;}
.y19c{bottom:150.660000px;}
.y5d{bottom:151.380000px;}
.y2a0{bottom:151.560000px;}
.y2c8{bottom:153.360000px;}
.y103{bottom:153.720000px;}
.y2b1{bottom:155.160000px;}
.y2f9{bottom:156.060000px;}
.y124{bottom:156.420000px;}
.y3b{bottom:157.140000px;}
.y17f{bottom:158.925000px;}
.yf7{bottom:158.970000px;}
.y14f{bottom:159.165000px;}
.y324{bottom:159.840000px;}
.y1f0{bottom:160.605000px;}
.y180{bottom:160.965000px;}
.y8d{bottom:163.125000px;}
.y21{bottom:163.470000px;}
.y167{bottom:164.385000px;}
.y285{bottom:167.250000px;}
.yb8{bottom:167.985000px;}
.y266{bottom:169.230000px;}
.y22a{bottom:169.425000px;}
.y216{bottom:171.405000px;}
.y2f8{bottom:173.370000px;}
.y146{bottom:174.465000px;}
.y17e{bottom:176.205000px;}
.yf6{bottom:176.250000px;}
.y14e{bottom:176.265000px;}
.y323{bottom:176.970000px;}
.y29f{bottom:177.330000px;}
.y2c7{bottom:179.310000px;}
.y3a{bottom:183.090000px;}
.y17b{bottom:185.265000px;}
.y40{bottom:185.970000px;}
.y19b{bottom:185.985000px;}
.y8c{bottom:186.345000px;}
.y1ee{bottom:187.245000px;}
.y102{bottom:189.045000px;}
.y5c{bottom:189.390000px;}
.y2f7{bottom:190.650000px;}
.y123{bottom:191.745000px;}
.y228{bottom:192.645000px;}
.y2b0{bottom:193.170000px;}
.y15f{bottom:193.350000px;}
.y17d{bottom:193.485000px;}
.y1b0{bottom:193.530000px;}
.y14d{bottom:193.545000px;}
.y322{bottom:194.250000px;}
.y1c8{bottom:194.970000px;}
.y20{bottom:195.510000px;}
.y215{bottom:198.045000px;}
.y166{bottom:199.665000px;}
.y29e{bottom:203.250000px;}
.yb7{bottom:203.265000px;}
.y284{bottom:205.230000px;}
.y2f6{bottom:207.750000px;}
.y8b{bottom:209.565000px;}
.y145{bottom:209.745000px;}
.y15e{bottom:210.630000px;}
.y17c{bottom:210.765000px;}
.y14c{bottom:210.825000px;}
.y321{bottom:211.530000px;}
.y3f{bottom:211.890000px;}
.y1ed{bottom:213.705000px;}
.y229{bottom:215.865000px;}
.y2c6{bottom:217.110000px;}
.y39{bottom:217.470000px;}
.y265{bottom:220.890000px;}
.y19a{bottom:221.265000px;}
.y101{bottom:224.325000px;}
.y214{bottom:224.685000px;}
.y2f5{bottom:225.030000px;}
.yb6{bottom:226.485000px;}
.y122{bottom:226.845000px;}
.y5b{bottom:227.190000px;}
.y15d{bottom:227.910000px;}
.y14b{bottom:228.105000px;}
.y320{bottom:228.810000px;}
.y29d{bottom:229.170000px;}
.y1f{bottom:230.430000px;}
.y283{bottom:230.970000px;}
.y8a{bottom:232.785000px;}
.y1c7{bottom:232.950000px;}
.y165{bottom:234.945000px;}
.y3e{bottom:237.630000px;}
.y227{bottom:239.265000px;}
.y1ec{bottom:240.345000px;}
.y2f4{bottom:242.310000px;}
.y144{bottom:244.845000px;}
.y15c{bottom:245.190000px;}
.y31f{bottom:246.090000px;}
.y264{bottom:246.810000px;}
.yff{bottom:248.625000px;}
.yb5{bottom:249.705000px;}
.y213{bottom:251.325000px;}
.y2c5{bottom:255.090000px;}
.y87{bottom:256.185000px;}
.y199{bottom:256.545000px;}
.y282{bottom:256.890000px;}
.y2f3{bottom:259.590000px;}
.y11d{bottom:262.125000px;}
.y1e{bottom:262.290000px;}
.y15b{bottom:262.470000px;}
.y226{bottom:262.485000px;}
.y31e{bottom:263.190000px;}
.y5a{bottom:265.170000px;}
.y29c{bottom:266.970000px;}
.y1eb{bottom:266.985000px;}
.y2af{bottom:268.950000px;}
.y164{bottom:270.045000px;}
.y1c6{bottom:270.750000px;}
.y3d{bottom:272.010000px;}
.y263{bottom:272.730000px;}
.yb4{bottom:272.925000px;}
.y2f2{bottom:276.870000px;}
.y212{bottom:277.965000px;}
.y31d{bottom:280.470000px;}
.y2cd{bottom:280.830000px;}
.y281{bottom:282.810000px;}
.y224{bottom:285.705000px;}
.y86{bottom:291.285000px;}
.y198{bottom:291.825000px;}
.y2c4{bottom:292.890000px;}
.y1ea{bottom:293.625000px;}
.y2f1{bottom:294.150000px;}
.y2ae{bottom:294.690000px;}
.yb3{bottom:296.145000px;}
.y1d{bottom:297.390000px;}
.y143{bottom:297.405000px;}
.y31c{bottom:297.750000px;}
.yf5{bottom:299.025000px;}
.y59{bottom:302.970000px;}
.y211{bottom:304.605000px;}
.y29b{bottom:304.950000px;}
.y163{bottom:305.325000px;}
.y2cc{bottom:306.750000px;}
.y1c5{bottom:308.550000px;}
.y280{bottom:308.730000px;}
.y225{bottom:308.925000px;}
.y262{bottom:310.530000px;}
.y2f0{bottom:311.250000px;}
.y85{bottom:314.685000px;}
.y31b{bottom:315.030000px;}
.y24a{bottom:315.390000px;}
.y197{bottom:316.125000px;}
.y2c3{bottom:318.810000px;}
.yb2{bottom:319.545000px;}
.y1e9{bottom:320.265000px;}
.y2ad{bottom:320.610000px;}
.y141{bottom:321.705000px;}
.y2ef{bottom:328.530000px;}
.y15a{bottom:329.805000px;}
.y210{bottom:331.245000px;}
.y221{bottom:332.145000px;}
.y31a{bottom:332.310000px;}
.y27f{bottom:334.470000px;}
.ydc{bottom:335.190000px;}
.y261{bottom:336.450000px;}
.y1c{bottom:336.810000px;}
.y84{bottom:337.905000px;}
.y16b{bottom:339.345000px;}
.y196{bottom:340.605000px;}
.y58{bottom:340.770000px;}
.y11a{bottom:342.435000px;}
.y29a{bottom:342.750000px;}
.yb1{bottom:342.765000px;}
.y2c2{bottom:344.730000px;}
.y2ee{bottom:345.810000px;}
.y13f{bottom:346.185000px;}
.y1c4{bottom:346.530000px;}
.y1e8{bottom:346.905000px;}
.y1ae{bottom:348.885000px;}
.y319{bottom:349.590000px;}
.y249{bottom:353.190000px;}
.y223{bottom:355.365000px;}
.y1b{bottom:356.790000px;}
.y20f{bottom:357.705000px;}
.y27e{bottom:360.390000px;}
.y83{bottom:361.125000px;}
.y260{bottom:362.190000px;}
.y2ed{bottom:363.090000px;}
.y195{bottom:364.905000px;}
.yb0{bottom:365.985000px;}
.y318{bottom:366.690000px;}
.y248{bottom:367.425000px;}
.y299{bottom:368.670000px;}
.y2c1{bottom:370.470000px;}
.y2ac{bottom:372.450000px;}
.ydb{bottom:373.170000px;}
.y1e6{bottom:373.545000px;}
.y57{bottom:378.750000px;}
.y220{bottom:378.765000px;}
.y2ec{bottom:380.730000px;}
.y317{bottom:383.970000px;}
.y1ac{bottom:384.165000px;}
.y1c3{bottom:384.330000px;}
.y81{bottom:384.345000px;}
.y27d{bottom:386.310000px;}
.yd9{bottom:387.405000px;}
.y25f{bottom:388.110000px;}
.yaf{bottom:389.205000px;}
.y247{bottom:390.645000px;}
.y1a{bottom:391.710000px;}
.y298{bottom:394.590000px;}
.y2c0{bottom:396.390000px;}
.y2eb{bottom:397.830000px;}
.y13e{bottom:398.565000px;}
.y191{bottom:399.855000px;}
.y194{bottom:400.185000px;}
.y316{bottom:401.250000px;}
.y21f{bottom:401.985000px;}
.y80{bottom:407.595000px;}
.y1aa{bottom:409.935000px;}
.y17a{bottom:410.295000px;}
.y20e{bottom:411.015000px;}
.yd8{bottom:411.735000px;}
.y27c{bottom:412.095000px;}
.yae{bottom:412.455000px;}
.y246{bottom:414.075000px;}
.y2ea{bottom:415.155000px;}
.y56{bottom:416.595000px;}
.y11c{bottom:418.215000px;}
.y315{bottom:418.575000px;}
.y297{bottom:420.375000px;}
.y1c2{bottom:422.355000px;}
.y346{bottom:423.435000px;}
.y19{bottom:423.795000px;}
.y21d{bottom:425.235000px;}
.y1e5{bottom:426.855000px;}
.y7f{bottom:430.815000px;}
.y2e9{bottom:432.435000px;}
.y179{bottom:434.595000px;}
.yd7{bottom:434.955000px;}
.y193{bottom:435.495000px;}
.yad{bottom:435.675000px;}
.y314{bottom:435.855000px;}
.y19f{bottom:436.035000px;}
.y2ab{bottom:436.215000px;}
.y245{bottom:437.295000px;}
.y20d{bottom:437.655000px;}
.y25e{bottom:439.995000px;}
.y46{bottom:442.335000px;}
.y296{bottom:446.295000px;}
.y2bf{bottom:448.095000px;}
.y2e8{bottom:449.715000px;}
.y27b{bottom:450.075000px;}
.y13b{bottom:451.155000px;}
.y345{bottom:452.775000px;}
.y313{bottom:453.135000px;}
.y11b{bottom:453.495000px;}
.y7c{bottom:454.215000px;}
.y55{bottom:454.575000px;}
.yd6{bottom:458.175000px;}
.y18{bottom:458.715000px;}
.yac{bottom:459.075000px;}
.y1c1{bottom:460.155000px;}
.y244{bottom:460.515000px;}
.y2aa{bottom:462.135000px;}
.y20c{bottom:464.295000px;}
.y25d{bottom:465.735000px;}
.y2e7{bottom:466.995000px;}
.y178{bottom:469.875000px;}
.y344{bottom:470.055000px;}
.y312{bottom:470.235000px;}
.y295{bottom:472.215000px;}
.y2be{bottom:474.015000px;}
.y27a{bottom:475.995000px;}
.y108{bottom:477.795000px;}
.y13a{bottom:478.335000px;}
.y45{bottom:480.135000px;}
.yd5{bottom:481.575000px;}
.yab{bottom:482.295000px;}
.y243{bottom:483.735000px;}
.y2e6{bottom:484.095000px;}
.y21c{bottom:484.995000px;}
.y17{bottom:486.255000px;}
.y343{bottom:487.155000px;}
.y311{bottom:487.515000px;}
.y192{bottom:487.875000px;}
.y1ab{bottom:488.415000px;}
.y7b{bottom:489.315000px;}
.yf2{bottom:489.495000px;}
.y20b{bottom:490.935000px;}
.y25c{bottom:491.655000px;}
.y54{bottom:492.375000px;}
.y1c0{bottom:497.955000px;}
.y294{bottom:498.135000px;}
.y2bd{bottom:499.935000px;}
.y2e5{bottom:501.375000px;}
.y279{bottom:501.735000px;}
.y342{bottom:504.435000px;}
.yd4{bottom:504.795000px;}
.yaa{bottom:505.515000px;}
.y1e4{bottom:506.595000px;}
.y242{bottom:506.955000px;}
.y16{bottom:510.735000px;}
.y2a9{bottom:513.795000px;}
.y20a{bottom:517.575000px;}
.y44{bottom:517.755000px;}
.y2e4{bottom:518.655000px;}
.y341{bottom:521.715000px;}
.y310{bottom:522.075000px;}
.y21b{bottom:522.795000px;}
.y293{bottom:523.875000px;}
.y7a{bottom:524.595000px;}
.y2bc{bottom:525.855000px;}
.y278{bottom:527.655000px;}
.yd3{bottom:528.015000px;}
.ya9{bottom:528.735000px;}
.y25b{bottom:529.455000px;}
.y241{bottom:530.175000px;}
.y53{bottom:530.355000px;}
.y182{bottom:531.435000px;}
.y1e3{bottom:533.235000px;}
.y1bf{bottom:535.935000px;}
.yf1{bottom:537.195000px;}
.y340{bottom:538.995000px;}
.y30f{bottom:539.355000px;}
.y177{bottom:539.715000px;}
.y174{bottom:540.105000px;}
.y181{bottom:540.435000px;}
.y19e{bottom:540.975000px;}
.y209{bottom:544.215000px;}
.y15{bottom:545.655000px;}
.y292{bottom:549.795000px;}
.yd2{bottom:551.235000px;}
.y2bb{bottom:551.595000px;}
.ya8{bottom:551.955000px;}
.y2e3{bottom:553.215000px;}
.y240{bottom:553.575000px;}
.y25a{bottom:555.375000px;}
.y43{bottom:555.915000px;}
.y33f{bottom:556.275000px;}
.y30e{bottom:556.635000px;}
.y77{bottom:559.875000px;}
.y21a{bottom:560.235000px;}
.y277{bottom:565.455000px;}
.y118{bottom:565.635000px;}
.y52{bottom:568.155000px;}
.y2e2{bottom:570.495000px;}
.y208{bottom:570.855000px;}
.y33e{bottom:573.375000px;}
.y1be{bottom:573.735000px;}
.yd1{bottom:574.455000px;}
.y176{bottom:574.995000px;}
.ya7{bottom:575.175000px;}
.y18f{bottom:575.715000px;}
.y1a8{bottom:576.255000px;}
.y109{bottom:576.795000px;}
.y2ba{bottom:577.515000px;}
.y259{bottom:581.295000px;}
.y42{bottom:581.835000px;}
.y14{bottom:585.075000px;}
.y1e2{bottom:586.515000px;}
.y2e1{bottom:587.595000px;}
.yf0{bottom:589.575000px;}
.y116{bottom:589.935000px;}
.y33d{bottom:590.655000px;}
.y30d{bottom:591.015000px;}
.y276{bottom:591.375000px;}
.y76{bottom:595.155000px;}
.y207{bottom:597.495000px;}
.yd0{bottom:597.675000px;}
.y219{bottom:598.215000px;}
.ya6{bottom:598.575000px;}
.y23f{bottom:600.015000px;}
.y291{bottom:601.455000px;}
.y2a8{bottom:603.435000px;}
.y2e0{bottom:604.875000px;}
.y51{bottom:605.955000px;}
.y159{bottom:606.495000px;}
.y137{bottom:607.215000px;}
.y33c{bottom:607.935000px;}
.y30c{bottom:608.295000px;}
.y18e{bottom:610.995000px;}
.y1a7{bottom:611.355000px;}
.y1bd{bottom:611.715000px;}
.y1e1{bottom:613.155000px;}
.y112{bottom:614.235000px;}
.y275{bottom:617.295000px;}
.y75{bottom:618.375000px;}
.y41{bottom:619.275000px;}
.ycf{bottom:621.075000px;}
.ya5{bottom:621.795000px;}
.y2df{bottom:622.155000px;}
.y38{bottom:623.595000px;}
.y206{bottom:623.955000px;}
.y23e{bottom:624.315000px;}
.y13{bottom:624.675000px;}
.yee{bottom:624.855000px;}
.y33b{bottom:625.215000px;}
.y30b{bottom:625.575000px;}
.y1bb{bottom:625.935000px;}
.y175{bottom:627.375000px;}
.y2a7{bottom:629.355000px;}
.y158{bottom:630.795000px;}
.y136{bottom:632.595000px;}
.y258{bottom:632.955000px;}
.y32{bottom:634.755000px;}
.y218{bottom:636.015000px;}
.y2de{bottom:639.435000px;}
.y1df{bottom:639.795000px;}
.y2cb{bottom:641.235000px;}
.y73{bottom:641.595000px;}
.y33a{bottom:642.495000px;}
.y30a{bottom:642.855000px;}
.y274{bottom:643.215000px;}
.y50{bottom:643.935000px;}
.yce{bottom:644.295000px;}
.ya4{bottom:645.015000px;}
.y18d{bottom:646.095000px;}
.y1a4{bottom:646.635000px;}
.y23d{bottom:647.715000px;}
.y37{bottom:649.515000px;}
.y205{bottom:650.625000px;}
.y290{bottom:653.325000px;}
.y2a6{bottom:655.125000px;}
.y12{bottom:656.565000px;}
.y2dd{bottom:656.745000px;}
.y257{bottom:658.905000px;}
.y339{bottom:659.805000px;}
.y309{bottom:659.985000px;}
.y72{bottom:664.845000px;}
.y157{bottom:666.105000px;}
.y1de{bottom:666.465000px;}
.y2b9{bottom:667.185000px;}
.ycd{bottom:667.545000px;}
.ya3{bottom:668.265000px;}
.y23c{bottom:670.965000px;}
.y31{bottom:672.945000px;}
.y2dc{bottom:674.025000px;}
.y36{bottom:675.465000px;}
.y338{bottom:676.905000px;}
.y204{bottom:677.265000px;}
.yed{bottom:677.445000px;}
.y1ba{bottom:678.525000px;}
.y2ca{bottom:678.885000px;}
.y16a{bottom:679.965000px;}
.y273{bottom:681.045000px;}
.y18c{bottom:681.405000px;}
.y4f{bottom:681.765000px;}
.y135{bottom:685.185000px;}
.y71{bottom:688.245000px;}
.ycc{bottom:690.765000px;}
.y28f{bottom:691.125000px;}
.y11{bottom:691.485000px;}
.y1dd{bottom:693.105000px;}
.y1a3{bottom:694.185000px;}
.y308{bottom:694.545000px;}
.y256{bottom:696.885000px;}
.y35{bottom:701.205000px;}
.y156{bottom:701.385000px;}
.y203{bottom:703.905000px;}
.y2b8{bottom:704.985000px;}
.y18b{bottom:705.885000px;}
.y2a5{bottom:706.965000px;}
.y4e{bottom:707.685000px;}
.y2db{bottom:708.405000px;}
.y70{bottom:711.465000px;}
.y30{bottom:711.825000px;}
.yec{bottom:712.725000px;}
.ycb{bottom:713.985000px;}
.ya2{bottom:714.705000px;}
.y28e{bottom:717.045000px;}
.y23b{bottom:717.405000px;}
.y272{bottom:719.025000px;}
.y1dc{bottom:719.745000px;}
.y255{bottom:722.625000px;}
.y10{bottom:723.525000px;}
.y2da{bottom:725.685000px;}
.y34{bottom:726.765000px;}
.y337{bottom:728.745000px;}
.y307{bottom:729.105000px;}
.y202{bottom:730.545000px;}
.y1b9{bottom:730.905000px;}
.y172{bottom:732.345000px;}
.y2a4{bottom:732.885000px;}
.y4d{bottom:733.605000px;}
.y6f{bottom:734.685000px;}
.y111{bottom:735.765000px;}
.yca{bottom:737.205000px;}
.y134{bottom:737.745000px;}
.ya1{bottom:738.105000px;}
.y2f{bottom:739.185000px;}
.y23a{bottom:740.625000px;}
.y18a{bottom:740.985000px;}
.y28d{bottom:742.965000px;}
.y336{bottom:746.025000px;}
.y1da{bottom:746.385000px;}
.y254{bottom:748.545000px;}
.y155{bottom:748.905000px;}
.y33{bottom:749.445000px;}
.y171{bottom:756.825000px;}
.y201{bottom:757.185000px;}
.y6e{bottom:757.905000px;}
.yf{bottom:758.445000px;}
.y2a3{bottom:758.625000px;}
.y2d9{bottom:760.245000px;}
.yc9{bottom:760.605000px;}
.ya0{bottom:761.325000px;}
.y335{bottom:763.305000px;}
.y306{bottom:763.485000px;}
.y239{bottom:763.845000px;}
.y189{bottom:765.465000px;}
.y1b8{bottom:766.185000px;}
.y28c{bottom:768.885000px;}
.y110{bottom:771.045000px;}
.y2e{bottom:771.225000px;}
.y4c{bottom:771.405000px;}
.y133{bottom:772.845000px;}
.y253{bottom:774.465000px;}
.y2d8{bottom:777.345000px;}
.y334{bottom:780.405000px;}
.y305{bottom:780.765000px;}
.y6d{bottom:781.125000px;}
.ye6{bottom:782.385000px;}
.yc8{bottom:783.825000px;}
.y154{bottom:784.185000px;}
.y9f{bottom:784.545000px;}
.y238{bottom:787.245000px;}
.y271{bottom:794.625000px;}
.y2a2{bottom:796.605000px;}
.y12f{bottom:797.325000px;}
.y333{bottom:797.685000px;}
.ye{bottom:798.045000px;}
.y2d{bottom:798.585000px;}
.y1d9{bottom:799.485000px;}
.y252{bottom:800.385000px;}
.y188{bottom:800.745000px;}
.y1b7{bottom:801.465000px;}
.y6c{bottom:804.345000px;}
.y4b{bottom:805.785000px;}
.y2b7{bottom:806.685000px;}
.yc7{bottom:807.045000px;}
.y9e{bottom:807.765000px;}
.y14a{bottom:808.485000px;}
.y200{bottom:810.465000px;}
.y2d7{bottom:811.905000px;}
.y332{bottom:814.965000px;}
.y304{bottom:815.325000px;}
.y1a2{bottom:815.685000px;}
.y270{bottom:820.545000px;}
.y10f{bottom:823.605000px;}
.y187{bottom:825.045000px;}
.y1b6{bottom:825.765000px;}
.y1d8{bottom:826.125000px;}
.y6b{bottom:827.745000px;}
.y2d6{bottom:829.185000px;}
.yd{bottom:829.905000px;}
.yc6{bottom:830.265000px;}
.y2c{bottom:830.625000px;}
.y9d{bottom:830.985000px;}
.y331{bottom:832.245000px;}
.y2b6{bottom:832.605000px;}
.y170{bottom:833.685000px;}
.y2a1{bottom:834.045000px;}
.y1ff{bottom:837.105000px;}
.y26f{bottom:846.465000px;}
.y330{bottom:849.525000px;}
.y303{bottom:849.885000px;}
.y6a{bottom:850.965000px;}
.y1d7{bottom:852.765000px;}
.yc5{bottom:853.485000px;}
.y9c{bottom:854.205000px;}
.y237{bottom:856.905000px;}
.y2b5{bottom:858.345000px;}
.y10d{bottom:858.885000px;}
.y1b5{bottom:861.045000px;}
.y2b{bottom:862.665000px;}
.y1fe{bottom:863.745000px;}
.y251{bottom:864.105000px;}
.yc{bottom:864.825000px;}
.y32f{bottom:866.805000px;}
.y302{bottom:866.985000px;}
.y16f{bottom:868.965000px;}
.y26e{bottom:872.385000px;}
.y69{bottom:874.185000px;}
.y9b{bottom:877.605000px;}
.y47{bottom:878.400000px;}
.y1d5{bottom:879.405000px;}
.y236{bottom:880.125000px;}
.y2d5{bottom:880.845000px;}
.y32e{bottom:883.905000px;}
.y2b4{bottom:884.265000px;}
.y1a1{bottom:886.245000px;}
.yc3{bottom:888.765000px;}
.y1fc{bottom:890.385000px;}
.y1b4{bottom:896.370000px;}
.yb{bottom:896.910000px;}
.y68{bottom:897.450000px;}
.y26d{bottom:898.170000px;}
.y9a{bottom:900.870000px;}
.y32d{bottom:901.230000px;}
.y301{bottom:901.590000px;}
.y250{bottom:901.950000px;}
.y235{bottom:903.390000px;}
.y16e{bottom:904.290000px;}
.y1ce{bottom:906.090000px;}
.y2a{bottom:909.690000px;}
.y2b3{bottom:910.230000px;}
.y10c{bottom:911.310000px;}
.yc2{bottom:912.030000px;}
.y2d4{bottom:915.450000px;}
.y1fb{bottom:916.890000px;}
.y32c{bottom:918.510000px;}
.y300{bottom:918.870000px;}
.y67{bottom:920.670000px;}
.ye5{bottom:921.210000px;}
.y99{bottom:924.090000px;}
.y234{bottom:926.790000px;}
.y16d{bottom:928.590000px;}
.ye0{bottom:928.770000px;}
.y1d0{bottom:930.390000px;}
.y2d3{bottom:932.730000px;}
.yc1{bottom:935.250000px;}
.y32b{bottom:935.790000px;}
.y2b2{bottom:936.150000px;}
.ya{bottom:936.330000px;}
.y1a0{bottom:938.670000px;}
.y24f{bottom:939.750000px;}
.y29{bottom:941.550000px;}
.y1fa{bottom:943.530000px;}
.y66{bottom:943.890000px;}
.y10b{bottom:946.590000px;}
.y98{bottom:947.310000px;}
.y233{bottom:950.010000px;}
.y32a{bottom:953.070000px;}
.y12e{bottom:953.250000px;}
.y2ff{bottom:953.430000px;}
.y1d2{bottom:954.870000px;}
.y1b3{bottom:955.950000px;}
.ye3{bottom:956.490000px;}
.yc0{bottom:958.650000px;}
.y28b{bottom:961.890000px;}
.y9{bottom:963.690000px;}
.y183{bottom:964.590000px;}
.y24e{bottom:965.670000px;}
.y65{bottom:967.290000px;}
.y1f9{bottom:970.170000px;}
.y97{bottom:970.530000px;}
.y232{bottom:973.230000px;}
.y26c{bottom:975.750000px;}
.y28{bottom:976.650000px;}
.y16c{bottom:981.150000px;}
.ybf{bottom:981.870000px;}
.y2d2{bottom:984.390000px;}
.y329{bottom:987.450000px;}
.y28a{bottom:987.810000px;}
.y12d{bottom:988.530000px;}
.y64{bottom:990.510000px;}
.y8{bottom:991.230000px;}
.y24d{bottom:991.590000px;}
.y96{bottom:993.750000px;}
.y231{bottom:996.450000px;}
.y1f8{bottom:996.810000px;}
.y10a{bottom:999.150000px;}
.y26b{bottom:1001.670000px;}
.y1cd{bottom:1003.650000px;}
.y328{bottom:1004.730000px;}
.ybe{bottom:1005.090000px;}
.ye1{bottom:1008.870000px;}
.y63{bottom:1013.730000px;}
.y27{bottom:1016.070000px;}
.y95{bottom:1017.150000px;}
.y7{bottom:1018.770000px;}
.y2d1{bottom:1018.950000px;}
.y22f{bottom:1019.670000px;}
.y327{bottom:1022.010000px;}
.y2fe{bottom:1022.370000px;}
.y1f7{bottom:1023.450000px;}
.y12c{bottom:1023.810000px;}
.y19d{bottom:1026.510000px;}
.y26a{bottom:1027.590000px;}
.ybd{bottom:1028.310000px;}
.y24c{bottom:1029.030000px;}
.y169{bottom:1033.530000px;}
.y2d0{bottom:1036.230000px;}
.y61{bottom:1036.950000px;}
.y289{bottom:1039.650000px;}
.y94{bottom:1040.370000px;}
.y1cc{bottom:1041.450000px;}
.y26{bottom:1047.930000px;}
.y1f6{bottom:1050.090000px;}
.y149{bottom:1050.810000px;}
.y269{bottom:1053.510000px;}
.y2fd{bottom:1056.750000px;}
.y6{bottom:1058.190000px;}
.y12b{bottom:1059.090000px;}
.y5f{bottom:1060.170000px;}
.ydd{bottom:1061.430000px;}
.y1b2{bottom:1061.790000px;}
.y93{bottom:1063.590000px;}
.y288{bottom:1065.390000px;}
.y24b{bottom:1067.010000px;}
.y1cb{bottom:1067.370000px;}
.y107{bottom:1068.810000px;}
.y2cf{bottom:1070.790000px;}
.y2fc{bottom:1074.030000px;}
.y1f5{bottom:1076.730000px;}
.y268{bottom:1079.250000px;}
.y25{bottom:1083.030000px;}
.y129{bottom:1083.390000px;}
.y5{bottom:1085.730000px;}
.y148{bottom:1086.090000px;}
.y92{bottom:1086.810000px;}
.y2ce{bottom:1087.890000px;}
.y287{bottom:1091.310000px;}
.y1b1{bottom:1096.890000px;}
.y1f4{bottom:1103.370000px;}
.y22e{bottom:1104.810000px;}
.y1ca{bottom:1105.170000px;}
.y128{bottom:1107.870000px;}
.y2fb{bottom:1108.590000px;}
.y91{bottom:1110.030000px;}
.y24{bottom:1114.890000px;}
.y49{bottom:1116.720000px;}
.y5e{bottom:1117.230000px;}
.y105{bottom:1121.370000px;}
.y4{bottom:1125.150000px;}
.y2fa{bottom:1125.870000px;}
.y1f2{bottom:1130.010000px;}
.y126{bottom:1132.170000px;}
.y90{bottom:1133.250000px;}
.y22d{bottom:1142.820000px;}
.y3{bottom:1143.180000px;}
.y23{bottom:1150.020000px;}
.hd{height:22.485000px;}
.h15{height:22.498500px;}
.hf{height:22.500000px;}
.h13{height:22.521000px;}
.he{height:22.522500px;}
.h10{height:22.530000px;}
.h14{height:22.536000px;}
.h23{height:23.565000px;}
.h48{height:23.578500px;}
.h3a{height:23.580000px;}
.h17{height:23.601000px;}
.h2f{height:23.610000px;}
.h30{height:23.745000px;}
.h38{height:23.758500px;}
.h32{height:23.760000px;}
.h9{height:23.940000px;}
.h34{height:24.645000px;}
.h58{height:25.725000px;}
.h5a{height:25.738500px;}
.h55{height:25.740000px;}
.h5d{height:25.762500px;}
.h5c{height:25.770000px;}
.h57{height:25.905000px;}
.h5b{height:25.918500px;}
.h54{height:25.920000px;}
.h59{height:25.941000px;}
.h53{height:25.942500px;}
.h56{height:25.950000px;}
.h5e{height:25.956000px;}
.h7{height:27.907031px;}
.h18{height:30.585000px;}
.hc{height:31.845000px;}
.hb{height:32.220000px;}
.h12{height:34.365000px;}
.h1e{height:34.380000px;}
.h47{height:34.401000px;}
.h3f{height:34.402500px;}
.h26{height:34.410000px;}
.h2e{height:34.416000px;}
.h11{height:34.545000px;}
.h25{height:34.558500px;}
.h16{height:34.560000px;}
.h4f{height:34.582500px;}
.h3c{height:34.590000px;}
.h24{height:34.596000px;}
.h4{height:40.851562px;}
.h61{height:41.522695px;}
.h6{height:42.894141px;}
.h5f{height:45.705000px;}
.h20{height:46.785000px;}
.h3b{height:46.800000px;}
.h4b{height:46.830000px;}
.h52{height:48.045000px;}
.ha{height:49.218750px;}
.h22{height:49.665000px;}
.h1b{height:51.645000px;}
.h33{height:51.660000px;}
.h29{height:51.682500px;}
.h50{height:51.690000px;}
.h1a{height:51.825000px;}
.h2a{height:51.840000px;}
.h37{height:51.861000px;}
.h1f{height:51.870000px;}
.h5{height:58.147031px;}
.h60{height:58.621992px;}
.h3{height:58.651172px;}
.h8{height:60.226875px;}
.h28{height:68.925000px;}
.h1d{height:68.940000px;}
.h41{height:69.105000px;}
.h2{height:70.664062px;}
.h51{height:72.345000px;}
.h45{height:86.242500px;}
.h4d{height:103.521000px;}
.h44{height:120.765000px;}
.h4a{height:120.780000px;}
.h2b{height:120.810000px;}
.h1c{height:138.082500px;}
.h31{height:155.175000px;}
.h36{height:155.325000px;}
.h2d{height:155.355000px;}
.h21{height:189.735000px;}
.h4e{height:207.030000px;}
.h42{height:224.295000px;}
.h39{height:241.590000px;}
.h3d{height:275.955000px;}
.h3e{height:352.830000px;}
.h2c{height:355.933500px;}
.h46{height:413.353500px;}
.h4c{height:423.433500px;}
.h49{height:449.520000px;}
.h35{height:491.833500px;}
.h43{height:544.920000px;}
.h40{height:553.605000px;}
.h27{height:590.280000px;}
.h19{height:942.253500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:28.620000px;}
.w3{width:32.940000px;}
.wc{width:38.721000px;}
.w15{width:57.801000px;}
.w13{width:57.816000px;}
.w11{width:58.140000px;}
.w4{width:90.741000px;}
.w7{width:95.569500px;}
.w6{width:113.061000px;}
.w12{width:117.720000px;}
.w14{width:117.885000px;}
.w16{width:120.049500px;}
.w1b{width:122.241000px;}
.wa{width:128.721000px;}
.w17{width:130.161000px;}
.wb{width:137.509500px;}
.w1a{width:143.269500px;}
.w18{width:145.476000px;}
.w9{width:170.670000px;}
.w19{width:171.375000px;}
.w10{width:176.415000px;}
.wf{width:176.430000px;}
.wd{width:176.580000px;}
.w1c{width:213.870000px;}
.w5{width:245.370000px;}
.w8{width:256.695000px;}
.we{width:353.775000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.725000px;}
.x13{left:8.989500px;}
.x9{left:10.830000px;}
.x1a{left:12.765000px;}
.x24{left:14.070000px;}
.x26{left:15.465000px;}
.x28{left:16.725000px;}
.xf{left:17.805000px;}
.x20{left:19.605000px;}
.x21{left:21.630000px;}
.x23{left:22.710000px;}
.x31{left:24.690000px;}
.x1d{left:26.310000px;}
.x2a{left:27.390000px;}
.x2b{left:29.010000px;}
.x33{left:30.450000px;}
.x18{left:32.250000px;}
.x59{left:33.283500px;}
.x22{left:34.410000px;}
.x45{left:36.345000px;}
.x29{left:37.650000px;}
.x32{left:38.730000px;}
.x2f{left:39.810000px;}
.x5a{left:40.843500px;}
.x46{left:42.510000px;}
.x25{left:44.670000px;}
.x47{left:45.703500px;}
.x1e{left:46.830000px;}
.x36{left:49.123500px;}
.x5e{left:50.383500px;}
.x1c{left:51.510000px;}
.x53{left:53.083500px;}
.x2e{left:54.390000px;}
.x2d{left:55.650000px;}
.x16{left:56.910000px;}
.x55{left:58.123500px;}
.x1b{left:59.430000px;}
.x34{left:60.690000px;}
.x27{left:62.850000px;}
.x1f{left:65.370000px;}
.x19{left:67.350000px;}
.x2c{left:68.610000px;}
.x30{left:69.870000px;}
.x35{left:71.490000px;}
.x4a{left:73.963500px;}
.x54{left:75.583500px;}
.x44{left:76.663500px;}
.x49{left:78.463500px;}
.x48{left:80.623500px;}
.x43{left:83.323500px;}
.x50{left:85.843500px;}
.x51{left:87.283500px;}
.x52{left:89.083500px;}
.x42{left:90.703500px;}
.x4f{left:93.223500px;}
.xd{left:94.320000px;}
.x41{left:97.363500px;}
.x4e{left:99.883500px;}
.x5d{left:103.170000px;}
.x40{left:104.923500px;}
.x4d{left:107.443500px;}
.x3f{left:112.483500px;}
.x4c{left:114.103500px;}
.x12{left:119.926500px;}
.x4b{left:121.663500px;}
.x2{left:127.656000px;}
.x8{left:143.640000px;}
.x3a{left:163.470000px;}
.x5f{left:180.750000px;}
.x14{left:216.225000px;}
.xb{left:221.265000px;}
.x56{left:240.705000px;}
.x37{left:258.345000px;}
.x5b{left:263.925000px;}
.x38{left:297.795000px;}
.xc{left:312.735000px;}
.x3c{left:356.655000px;}
.x57{left:371.595000px;}
.x5c{left:386.895000px;}
.x5{left:414.615000px;}
.x11{left:437.475000px;}
.x1{left:441.975000px;}
.x7{left:446.475000px;}
.x15{left:473.655000px;}
.x39{left:475.275000px;}
.x58{left:517.800000px;}
.x3d{left:533.820000px;}
.xe{left:558.840000px;}
.x17{left:645.060000px;}
.x3b{left:652.620000px;}
.xa{left:670.470000px;}
.x4{left:681.270000px;}
.x3{left:694.050000px;}
.x6{left:699.630000px;}
.x3e{left:711.150000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.367467pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.069120pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.284160pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.397867pt;}
.lsd{letter-spacing:0.409067pt;}
.lsf{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.736000pt;}
.ws12{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.872000pt;}
.wsa{word-spacing:-13.689067pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.912533pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2{word-spacing:-8.208427pt;}
.ws0{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.568427pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-1.144533pt;}
._0{width:0.956160pt;}
._1{width:2.071680pt;}
._5{width:3.193173pt;}
._c{width:4.250027pt;}
._f{width:5.499307pt;}
._2{width:6.746240pt;}
._8{width:7.915307pt;}
._7{width:9.080107pt;}
._6{width:10.328960pt;}
._e{width:12.058240pt;}
._4{width:13.789227pt;}
._a{width:15.352107pt;}
._b{width:16.251307pt;}
._11{width:17.664853pt;}
._10{width:18.963840pt;}
._17{width:20.557440pt;}
._13{width:21.726080pt;}
._14{width:23.425920pt;}
._12{width:24.814507pt;}
._15{width:30.278400pt;}
._16{width:31.181440pt;}
._9{width:32.191147pt;}
._d{width:754.858667pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.186667pt;}
.y7e{bottom:3.200000pt;}
.yba{bottom:3.346667pt;}
.y79{bottom:3.360000pt;}
.y125{bottom:3.386667pt;}
.y48{bottom:6.173333pt;}
.y230{bottom:7.680000pt;}
.y82{bottom:7.986667pt;}
.y62{bottom:8.000000pt;}
.y74{bottom:8.026667pt;}
.yc4{bottom:8.040000pt;}
.y1d3{bottom:8.640000pt;}
.y1d4{bottom:8.800000pt;}
.yda{bottom:8.946667pt;}
.y117{bottom:8.960000pt;}
.y127{bottom:8.986667pt;}
.y142{bottom:9.106667pt;}
.y12a{bottom:9.120000pt;}
.y138{bottom:9.920000pt;}
.y1ef{bottom:10.866667pt;}
.y1db{bottom:10.880000pt;}
.y1f3{bottom:10.906667pt;}
.y1fd{bottom:10.920000pt;}
.y1e7{bottom:11.026667pt;}
.y1d6{bottom:11.040000pt;}
.y1e0{bottom:11.066667pt;}
.y4a{bottom:13.573333pt;}
.y1a6{bottom:14.266667pt;}
.yde{bottom:14.880000pt;}
.y60{bottom:16.000000pt;}
.y21e{bottom:18.400000pt;}
.y88{bottom:18.546667pt;}
.y7d{bottom:18.560000pt;}
.y106{bottom:18.586667pt;}
.y186{bottom:18.600000pt;}
.yb9{bottom:18.706667pt;}
.y78{bottom:18.720000pt;}
.y104{bottom:18.746667pt;}
.yf4{bottom:24.000000pt;}
.y222{bottom:28.626667pt;}
.yf3{bottom:29.600000pt;}
.y1a5{bottom:29.626667pt;}
.y1d1{bottom:30.400000pt;}
.y100{bottom:32.146667pt;}
.y140{bottom:33.906667pt;}
.ye4{bottom:33.920000pt;}
.y1bc{bottom:33.946667pt;}
.y10e{bottom:33.960000pt;}
.yfe{bottom:34.066667pt;}
.ye2{bottom:34.080000pt;}
.yef{bottom:34.106667pt;}
.yfd{bottom:49.266667pt;}
.yeb{bottom:49.280000pt;}
.y1ad{bottom:49.306667pt;}
.y185{bottom:49.320000pt;}
.y121{bottom:49.426667pt;}
.y153{bottom:49.440000pt;}
.y115{bottom:49.466667pt;}
.y2{bottom:51.040000pt;}
.y1cf{bottom:52.000000pt;}
.yfc{bottom:64.626667pt;}
.yea{bottom:64.640000pt;}
.y114{bottom:64.666667pt;}
.y184{bottom:64.680000pt;}
.y152{bottom:64.800000pt;}
.y1{bottom:69.440000pt;}
.yfb{bottom:79.986667pt;}
.ye9{bottom:80.000000pt;}
.y113{bottom:80.026667pt;}
.y151{bottom:80.040000pt;}
.y162{bottom:95.226667pt;}
.y120{bottom:95.346667pt;}
.ye8{bottom:95.360000pt;}
.yfa{bottom:95.386667pt;}
.y132{bottom:95.400000pt;}
.y139{bottom:101.920000pt;}
.y8f{bottom:103.680000pt;}
.y1a9{bottom:103.840000pt;}
.y217{bottom:104.960000pt;}
.ydf{bottom:105.280000pt;}
.y1c9{bottom:105.920000pt;}
.y119{bottom:107.680000pt;}
.ybc{bottom:108.000000pt;}
.y22c{bottom:108.320000pt;}
.y161{bottom:110.586667pt;}
.y131{bottom:110.600000pt;}
.y11f{bottom:110.706667pt;}
.y13d{bottom:110.720000pt;}
.yf9{bottom:110.746667pt;}
.ye7{bottom:110.760000pt;}
.y326{bottom:111.360000pt;}
.y173{bottom:111.680000pt;}
.y190{bottom:112.320000pt;}
.y2c9{bottom:113.280000pt;}
.y22{bottom:114.240000pt;}
.y168{bottom:114.720000pt;}
.y286{bottom:115.040000pt;}
.y3c{bottom:116.320000pt;}
.y1f1{bottom:119.040000pt;}
.y147{bottom:123.680000pt;}
.y8e{bottom:124.320000pt;}
.y1af{bottom:125.440000pt;}
.y160{bottom:125.946667pt;}
.y130{bottom:125.960000pt;}
.y11e{bottom:126.066667pt;}
.y13c{bottom:126.080000pt;}
.yf8{bottom:126.106667pt;}
.y150{bottom:126.120000pt;}
.y325{bottom:126.720000pt;}
.y267{bottom:127.360000pt;}
.ybb{bottom:128.640000pt;}
.y22b{bottom:129.920000pt;}
.y19c{bottom:133.920000pt;}
.y5d{bottom:134.560000pt;}
.y2a0{bottom:134.720000pt;}
.y2c8{bottom:136.320000pt;}
.y103{bottom:136.640000pt;}
.y2b1{bottom:137.920000pt;}
.y2f9{bottom:138.720000pt;}
.y124{bottom:139.040000pt;}
.y3b{bottom:139.680000pt;}
.y17f{bottom:141.266667pt;}
.yf7{bottom:141.306667pt;}
.y14f{bottom:141.480000pt;}
.y324{bottom:142.080000pt;}
.y1f0{bottom:142.760000pt;}
.y180{bottom:143.080000pt;}
.y8d{bottom:145.000000pt;}
.y21{bottom:145.306667pt;}
.y167{bottom:146.120000pt;}
.y285{bottom:148.666667pt;}
.yb8{bottom:149.320000pt;}
.y266{bottom:150.426667pt;}
.y22a{bottom:150.600000pt;}
.y216{bottom:152.360000pt;}
.y2f8{bottom:154.106667pt;}
.y146{bottom:155.080000pt;}
.y17e{bottom:156.626667pt;}
.yf6{bottom:156.666667pt;}
.y14e{bottom:156.680000pt;}
.y323{bottom:157.306667pt;}
.y29f{bottom:157.626667pt;}
.y2c7{bottom:159.386667pt;}
.y3a{bottom:162.746667pt;}
.y17b{bottom:164.680000pt;}
.y40{bottom:165.306667pt;}
.y19b{bottom:165.320000pt;}
.y8c{bottom:165.640000pt;}
.y1ee{bottom:166.440000pt;}
.y102{bottom:168.040000pt;}
.y5c{bottom:168.346667pt;}
.y2f7{bottom:169.466667pt;}
.y123{bottom:170.440000pt;}
.y228{bottom:171.240000pt;}
.y2b0{bottom:171.706667pt;}
.y15f{bottom:171.866667pt;}
.y17d{bottom:171.986667pt;}
.y1b0{bottom:172.026667pt;}
.y14d{bottom:172.040000pt;}
.y322{bottom:172.666667pt;}
.y1c8{bottom:173.306667pt;}
.y20{bottom:173.786667pt;}
.y215{bottom:176.040000pt;}
.y166{bottom:177.480000pt;}
.y29e{bottom:180.666667pt;}
.yb7{bottom:180.680000pt;}
.y284{bottom:182.426667pt;}
.y2f6{bottom:184.666667pt;}
.y8b{bottom:186.280000pt;}
.y145{bottom:186.440000pt;}
.y15e{bottom:187.226667pt;}
.y17c{bottom:187.346667pt;}
.y14c{bottom:187.400000pt;}
.y321{bottom:188.026667pt;}
.y3f{bottom:188.346667pt;}
.y1ed{bottom:189.960000pt;}
.y229{bottom:191.880000pt;}
.y2c6{bottom:192.986667pt;}
.y39{bottom:193.306667pt;}
.y265{bottom:196.346667pt;}
.y19a{bottom:196.680000pt;}
.y101{bottom:199.400000pt;}
.y214{bottom:199.720000pt;}
.y2f5{bottom:200.026667pt;}
.yb6{bottom:201.320000pt;}
.y122{bottom:201.640000pt;}
.y5b{bottom:201.946667pt;}
.y15d{bottom:202.586667pt;}
.y14b{bottom:202.760000pt;}
.y320{bottom:203.386667pt;}
.y29d{bottom:203.706667pt;}
.y1f{bottom:204.826667pt;}
.y283{bottom:205.306667pt;}
.y8a{bottom:206.920000pt;}
.y1c7{bottom:207.066667pt;}
.y165{bottom:208.840000pt;}
.y3e{bottom:211.226667pt;}
.y227{bottom:212.680000pt;}
.y1ec{bottom:213.640000pt;}
.y2f4{bottom:215.386667pt;}
.y144{bottom:217.640000pt;}
.y15c{bottom:217.946667pt;}
.y31f{bottom:218.746667pt;}
.y264{bottom:219.386667pt;}
.yff{bottom:221.000000pt;}
.yb5{bottom:221.960000pt;}
.y213{bottom:223.400000pt;}
.y2c5{bottom:226.746667pt;}
.y87{bottom:227.720000pt;}
.y199{bottom:228.040000pt;}
.y282{bottom:228.346667pt;}
.y2f3{bottom:230.746667pt;}
.y11d{bottom:233.000000pt;}
.y1e{bottom:233.146667pt;}
.y15b{bottom:233.306667pt;}
.y226{bottom:233.320000pt;}
.y31e{bottom:233.946667pt;}
.y5a{bottom:235.706667pt;}
.y29c{bottom:237.306667pt;}
.y1eb{bottom:237.320000pt;}
.y2af{bottom:239.066667pt;}
.y164{bottom:240.040000pt;}
.y1c6{bottom:240.666667pt;}
.y3d{bottom:241.786667pt;}
.y263{bottom:242.426667pt;}
.yb4{bottom:242.600000pt;}
.y2f2{bottom:246.106667pt;}
.y212{bottom:247.080000pt;}
.y31d{bottom:249.306667pt;}
.y2cd{bottom:249.626667pt;}
.y281{bottom:251.386667pt;}
.y224{bottom:253.960000pt;}
.y86{bottom:258.920000pt;}
.y198{bottom:259.400000pt;}
.y2c4{bottom:260.346667pt;}
.y1ea{bottom:261.000000pt;}
.y2f1{bottom:261.466667pt;}
.y2ae{bottom:261.946667pt;}
.yb3{bottom:263.240000pt;}
.y1d{bottom:264.346667pt;}
.y143{bottom:264.360000pt;}
.y31c{bottom:264.666667pt;}
.yf5{bottom:265.800000pt;}
.y59{bottom:269.306667pt;}
.y211{bottom:270.760000pt;}
.y29b{bottom:271.066667pt;}
.y163{bottom:271.400000pt;}
.y2cc{bottom:272.666667pt;}
.y1c5{bottom:274.266667pt;}
.y280{bottom:274.426667pt;}
.y225{bottom:274.600000pt;}
.y262{bottom:276.026667pt;}
.y2f0{bottom:276.666667pt;}
.y85{bottom:279.720000pt;}
.y31b{bottom:280.026667pt;}
.y24a{bottom:280.346667pt;}
.y197{bottom:281.000000pt;}
.y2c3{bottom:283.386667pt;}
.yb2{bottom:284.040000pt;}
.y1e9{bottom:284.680000pt;}
.y2ad{bottom:284.986667pt;}
.y141{bottom:285.960000pt;}
.y2ef{bottom:292.026667pt;}
.y15a{bottom:293.160000pt;}
.y210{bottom:294.440000pt;}
.y221{bottom:295.240000pt;}
.y31a{bottom:295.386667pt;}
.y27f{bottom:297.306667pt;}
.ydc{bottom:297.946667pt;}
.y261{bottom:299.066667pt;}
.y1c{bottom:299.386667pt;}
.y84{bottom:300.360000pt;}
.y16b{bottom:301.640000pt;}
.y196{bottom:302.760000pt;}
.y58{bottom:302.906667pt;}
.y11a{bottom:304.386667pt;}
.y29a{bottom:304.666667pt;}
.yb1{bottom:304.680000pt;}
.y2c2{bottom:306.426667pt;}
.y2ee{bottom:307.386667pt;}
.y13f{bottom:307.720000pt;}
.y1c4{bottom:308.026667pt;}
.y1e8{bottom:308.360000pt;}
.y1ae{bottom:310.120000pt;}
.y319{bottom:310.746667pt;}
.y249{bottom:313.946667pt;}
.y223{bottom:315.880000pt;}
.y1b{bottom:317.146667pt;}
.y20f{bottom:317.960000pt;}
.y27e{bottom:320.346667pt;}
.y83{bottom:321.000000pt;}
.y260{bottom:321.946667pt;}
.y2ed{bottom:322.746667pt;}
.y195{bottom:324.360000pt;}
.yb0{bottom:325.320000pt;}
.y318{bottom:325.946667pt;}
.y248{bottom:326.600000pt;}
.y299{bottom:327.706667pt;}
.y2c1{bottom:329.306667pt;}
.y2ac{bottom:331.066667pt;}
.ydb{bottom:331.706667pt;}
.y1e6{bottom:332.040000pt;}
.y57{bottom:336.666667pt;}
.y220{bottom:336.680000pt;}
.y2ec{bottom:338.426667pt;}
.y317{bottom:341.306667pt;}
.y1ac{bottom:341.480000pt;}
.y1c3{bottom:341.626667pt;}
.y81{bottom:341.640000pt;}
.y27d{bottom:343.386667pt;}
.yd9{bottom:344.360000pt;}
.y25f{bottom:344.986667pt;}
.yaf{bottom:345.960000pt;}
.y247{bottom:347.240000pt;}
.y1a{bottom:348.186667pt;}
.y298{bottom:350.746667pt;}
.y2c0{bottom:352.346667pt;}
.y2eb{bottom:353.626667pt;}
.y13e{bottom:354.280000pt;}
.y191{bottom:355.426667pt;}
.y194{bottom:355.720000pt;}
.y316{bottom:356.666667pt;}
.y21f{bottom:357.320000pt;}
.y80{bottom:362.306667pt;}
.y1aa{bottom:364.386667pt;}
.y17a{bottom:364.706667pt;}
.y20e{bottom:365.346667pt;}
.yd8{bottom:365.986667pt;}
.y27c{bottom:366.306667pt;}
.yae{bottom:366.626667pt;}
.y246{bottom:368.066667pt;}
.y2ea{bottom:369.026667pt;}
.y56{bottom:370.306667pt;}
.y11c{bottom:371.746667pt;}
.y315{bottom:372.066667pt;}
.y297{bottom:373.666667pt;}
.y1c2{bottom:375.426667pt;}
.y346{bottom:376.386667pt;}
.y19{bottom:376.706667pt;}
.y21d{bottom:377.986667pt;}
.y1e5{bottom:379.426667pt;}
.y7f{bottom:382.946667pt;}
.y2e9{bottom:384.386667pt;}
.y179{bottom:386.306667pt;}
.yd7{bottom:386.626667pt;}
.y193{bottom:387.106667pt;}
.yad{bottom:387.266667pt;}
.y314{bottom:387.426667pt;}
.y19f{bottom:387.586667pt;}
.y2ab{bottom:387.746667pt;}
.y245{bottom:388.706667pt;}
.y20d{bottom:389.026667pt;}
.y25e{bottom:391.106667pt;}
.y46{bottom:393.186667pt;}
.y296{bottom:396.706667pt;}
.y2bf{bottom:398.306667pt;}
.y2e8{bottom:399.746667pt;}
.y27b{bottom:400.066667pt;}
.y13b{bottom:401.026667pt;}
.y345{bottom:402.466667pt;}
.y313{bottom:402.786667pt;}
.y11b{bottom:403.106667pt;}
.y7c{bottom:403.746667pt;}
.y55{bottom:404.066667pt;}
.yd6{bottom:407.266667pt;}
.y18{bottom:407.746667pt;}
.yac{bottom:408.066667pt;}
.y1c1{bottom:409.026667pt;}
.y244{bottom:409.346667pt;}
.y2aa{bottom:410.786667pt;}
.y20c{bottom:412.706667pt;}
.y25d{bottom:413.986667pt;}
.y2e7{bottom:415.106667pt;}
.y178{bottom:417.666667pt;}
.y344{bottom:417.826667pt;}
.y312{bottom:417.986667pt;}
.y295{bottom:419.746667pt;}
.y2be{bottom:421.346667pt;}
.y27a{bottom:423.106667pt;}
.y108{bottom:424.706667pt;}
.y13a{bottom:425.186667pt;}
.y45{bottom:426.786667pt;}
.yd5{bottom:428.066667pt;}
.yab{bottom:428.706667pt;}
.y243{bottom:429.986667pt;}
.y2e6{bottom:430.306667pt;}
.y21c{bottom:431.106667pt;}
.y17{bottom:432.226667pt;}
.y343{bottom:433.026667pt;}
.y311{bottom:433.346667pt;}
.y192{bottom:433.666667pt;}
.y1ab{bottom:434.146667pt;}
.y7b{bottom:434.946667pt;}
.yf2{bottom:435.106667pt;}
.y20b{bottom:436.386667pt;}
.y25c{bottom:437.026667pt;}
.y54{bottom:437.666667pt;}
.y1c0{bottom:442.626667pt;}
.y294{bottom:442.786667pt;}
.y2bd{bottom:444.386667pt;}
.y2e5{bottom:445.666667pt;}
.y279{bottom:445.986667pt;}
.y342{bottom:448.386667pt;}
.yd4{bottom:448.706667pt;}
.yaa{bottom:449.346667pt;}
.y1e4{bottom:450.306667pt;}
.y242{bottom:450.626667pt;}
.y16{bottom:453.986667pt;}
.y2a9{bottom:456.706667pt;}
.y20a{bottom:460.066667pt;}
.y44{bottom:460.226667pt;}
.y2e4{bottom:461.026667pt;}
.y341{bottom:463.746667pt;}
.y310{bottom:464.066667pt;}
.y21b{bottom:464.706667pt;}
.y293{bottom:465.666667pt;}
.y7a{bottom:466.306667pt;}
.y2bc{bottom:467.426667pt;}
.y278{bottom:469.026667pt;}
.yd3{bottom:469.346667pt;}
.ya9{bottom:469.986667pt;}
.y25b{bottom:470.626667pt;}
.y241{bottom:471.266667pt;}
.y53{bottom:471.426667pt;}
.y182{bottom:472.386667pt;}
.y1e3{bottom:473.986667pt;}
.y1bf{bottom:476.386667pt;}
.yf1{bottom:477.506667pt;}
.y340{bottom:479.106667pt;}
.y30f{bottom:479.426667pt;}
.y177{bottom:479.746667pt;}
.y174{bottom:480.093333pt;}
.y181{bottom:480.386667pt;}
.y19e{bottom:480.866667pt;}
.y209{bottom:483.746667pt;}
.y15{bottom:485.026667pt;}
.y292{bottom:488.706667pt;}
.yd2{bottom:489.986667pt;}
.y2bb{bottom:490.306667pt;}
.ya8{bottom:490.626667pt;}
.y2e3{bottom:491.746667pt;}
.y240{bottom:492.066667pt;}
.y25a{bottom:493.666667pt;}
.y43{bottom:494.146667pt;}
.y33f{bottom:494.466667pt;}
.y30e{bottom:494.786667pt;}
.y77{bottom:497.666667pt;}
.y21a{bottom:497.986667pt;}
.y277{bottom:502.626667pt;}
.y118{bottom:502.786667pt;}
.y52{bottom:505.026667pt;}
.y2e2{bottom:507.106667pt;}
.y208{bottom:507.426667pt;}
.y33e{bottom:509.666667pt;}
.y1be{bottom:509.986667pt;}
.yd1{bottom:510.626667pt;}
.y176{bottom:511.106667pt;}
.ya7{bottom:511.266667pt;}
.y18f{bottom:511.746667pt;}
.y1a8{bottom:512.226667pt;}
.y109{bottom:512.706667pt;}
.y2ba{bottom:513.346667pt;}
.y259{bottom:516.706667pt;}
.y42{bottom:517.186667pt;}
.y14{bottom:520.066667pt;}
.y1e2{bottom:521.346667pt;}
.y2e1{bottom:522.306667pt;}
.yf0{bottom:524.066667pt;}
.y116{bottom:524.386667pt;}
.y33d{bottom:525.026667pt;}
.y30d{bottom:525.346667pt;}
.y276{bottom:525.666667pt;}
.y76{bottom:529.026667pt;}
.y207{bottom:531.106667pt;}
.yd0{bottom:531.266667pt;}
.y219{bottom:531.746667pt;}
.ya6{bottom:532.066667pt;}
.y23f{bottom:533.346667pt;}
.y291{bottom:534.626667pt;}
.y2a8{bottom:536.386667pt;}
.y2e0{bottom:537.666667pt;}
.y51{bottom:538.626667pt;}
.y159{bottom:539.106667pt;}
.y137{bottom:539.746667pt;}
.y33c{bottom:540.386667pt;}
.y30c{bottom:540.706667pt;}
.y18e{bottom:543.106667pt;}
.y1a7{bottom:543.426667pt;}
.y1bd{bottom:543.746667pt;}
.y1e1{bottom:545.026667pt;}
.y112{bottom:545.986667pt;}
.y275{bottom:548.706667pt;}
.y75{bottom:549.666667pt;}
.y41{bottom:550.466667pt;}
.ycf{bottom:552.066667pt;}
.ya5{bottom:552.706667pt;}
.y2df{bottom:553.026667pt;}
.y38{bottom:554.306667pt;}
.y206{bottom:554.626667pt;}
.y23e{bottom:554.946667pt;}
.y13{bottom:555.266667pt;}
.yee{bottom:555.426667pt;}
.y33b{bottom:555.746667pt;}
.y30b{bottom:556.066667pt;}
.y1bb{bottom:556.386667pt;}
.y175{bottom:557.666667pt;}
.y2a7{bottom:559.426667pt;}
.y158{bottom:560.706667pt;}
.y136{bottom:562.306667pt;}
.y258{bottom:562.626667pt;}
.y32{bottom:564.226667pt;}
.y218{bottom:565.346667pt;}
.y2de{bottom:568.386667pt;}
.y1df{bottom:568.706667pt;}
.y2cb{bottom:569.986667pt;}
.y73{bottom:570.306667pt;}
.y33a{bottom:571.106667pt;}
.y30a{bottom:571.426667pt;}
.y274{bottom:571.746667pt;}
.y50{bottom:572.386667pt;}
.yce{bottom:572.706667pt;}
.ya4{bottom:573.346667pt;}
.y18d{bottom:574.306667pt;}
.y1a4{bottom:574.786667pt;}
.y23d{bottom:575.746667pt;}
.y37{bottom:577.346667pt;}
.y205{bottom:578.333333pt;}
.y290{bottom:580.733333pt;}
.y2a6{bottom:582.333333pt;}
.y12{bottom:583.613333pt;}
.y2dd{bottom:583.773333pt;}
.y257{bottom:585.693333pt;}
.y339{bottom:586.493333pt;}
.y309{bottom:586.653333pt;}
.y72{bottom:590.973333pt;}
.y157{bottom:592.093333pt;}
.y1de{bottom:592.413333pt;}
.y2b9{bottom:593.053333pt;}
.ycd{bottom:593.373333pt;}
.ya3{bottom:594.013333pt;}
.y23c{bottom:596.413333pt;}
.y31{bottom:598.173333pt;}
.y2dc{bottom:599.133333pt;}
.y36{bottom:600.413333pt;}
.y338{bottom:601.693333pt;}
.y204{bottom:602.013333pt;}
.yed{bottom:602.173333pt;}
.y1ba{bottom:603.133333pt;}
.y2ca{bottom:603.453333pt;}
.y16a{bottom:604.413333pt;}
.y273{bottom:605.373333pt;}
.y18c{bottom:605.693333pt;}
.y4f{bottom:606.013333pt;}
.y135{bottom:609.053333pt;}
.y71{bottom:611.773333pt;}
.ycc{bottom:614.013333pt;}
.y28f{bottom:614.333333pt;}
.y11{bottom:614.653333pt;}
.y1dd{bottom:616.093333pt;}
.y1a3{bottom:617.053333pt;}
.y308{bottom:617.373333pt;}
.y256{bottom:619.453333pt;}
.y35{bottom:623.293333pt;}
.y156{bottom:623.453333pt;}
.y203{bottom:625.693333pt;}
.y2b8{bottom:626.653333pt;}
.y18b{bottom:627.453333pt;}
.y2a5{bottom:628.413333pt;}
.y4e{bottom:629.053333pt;}
.y2db{bottom:629.693333pt;}
.y70{bottom:632.413333pt;}
.y30{bottom:632.733333pt;}
.yec{bottom:633.533333pt;}
.ycb{bottom:634.653333pt;}
.ya2{bottom:635.293333pt;}
.y28e{bottom:637.373333pt;}
.y23b{bottom:637.693333pt;}
.y272{bottom:639.133333pt;}
.y1dc{bottom:639.773333pt;}
.y255{bottom:642.333333pt;}
.y10{bottom:643.133333pt;}
.y2da{bottom:645.053333pt;}
.y34{bottom:646.013333pt;}
.y337{bottom:647.773333pt;}
.y307{bottom:648.093333pt;}
.y202{bottom:649.373333pt;}
.y1b9{bottom:649.693333pt;}
.y172{bottom:650.973333pt;}
.y2a4{bottom:651.453333pt;}
.y4d{bottom:652.093333pt;}
.y6f{bottom:653.053333pt;}
.y111{bottom:654.013333pt;}
.yca{bottom:655.293333pt;}
.y134{bottom:655.773333pt;}
.ya1{bottom:656.093333pt;}
.y2f{bottom:657.053333pt;}
.y23a{bottom:658.333333pt;}
.y18a{bottom:658.653333pt;}
.y28d{bottom:660.413333pt;}
.y336{bottom:663.133333pt;}
.y1da{bottom:663.453333pt;}
.y254{bottom:665.373333pt;}
.y155{bottom:665.693333pt;}
.y33{bottom:666.173333pt;}
.y171{bottom:672.733333pt;}
.y201{bottom:673.053333pt;}
.y6e{bottom:673.693333pt;}
.yf{bottom:674.173333pt;}
.y2a3{bottom:674.333333pt;}
.y2d9{bottom:675.773333pt;}
.yc9{bottom:676.093333pt;}
.ya0{bottom:676.733333pt;}
.y335{bottom:678.493333pt;}
.y306{bottom:678.653333pt;}
.y239{bottom:678.973333pt;}
.y189{bottom:680.413333pt;}
.y1b8{bottom:681.053333pt;}
.y28c{bottom:683.453333pt;}
.y110{bottom:685.373333pt;}
.y2e{bottom:685.533333pt;}
.y4c{bottom:685.693333pt;}
.y133{bottom:686.973333pt;}
.y253{bottom:688.413333pt;}
.y2d8{bottom:690.973333pt;}
.y334{bottom:693.693333pt;}
.y305{bottom:694.013333pt;}
.y6d{bottom:694.333333pt;}
.ye6{bottom:695.453333pt;}
.yc8{bottom:696.733333pt;}
.y154{bottom:697.053333pt;}
.y9f{bottom:697.373333pt;}
.y238{bottom:699.773333pt;}
.y271{bottom:706.333333pt;}
.y2a2{bottom:708.093333pt;}
.y12f{bottom:708.733333pt;}
.y333{bottom:709.053333pt;}
.ye{bottom:709.373333pt;}
.y2d{bottom:709.853333pt;}
.y1d9{bottom:710.653333pt;}
.y252{bottom:711.453333pt;}
.y188{bottom:711.773333pt;}
.y1b7{bottom:712.413333pt;}
.y6c{bottom:714.973333pt;}
.y4b{bottom:716.253333pt;}
.y2b7{bottom:717.053333pt;}
.yc7{bottom:717.373333pt;}
.y9e{bottom:718.013333pt;}
.y14a{bottom:718.653333pt;}
.y200{bottom:720.413333pt;}
.y2d7{bottom:721.693333pt;}
.y332{bottom:724.413333pt;}
.y304{bottom:724.733333pt;}
.y1a2{bottom:725.053333pt;}
.y270{bottom:729.373333pt;}
.y10f{bottom:732.093333pt;}
.y187{bottom:733.373333pt;}
.y1b6{bottom:734.013333pt;}
.y1d8{bottom:734.333333pt;}
.y6b{bottom:735.773333pt;}
.y2d6{bottom:737.053333pt;}
.yd{bottom:737.693333pt;}
.yc6{bottom:738.013333pt;}
.y2c{bottom:738.333333pt;}
.y9d{bottom:738.653333pt;}
.y331{bottom:739.773333pt;}
.y2b6{bottom:740.093333pt;}
.y170{bottom:741.053333pt;}
.y2a1{bottom:741.373333pt;}
.y1ff{bottom:744.093333pt;}
.y26f{bottom:752.413333pt;}
.y330{bottom:755.133333pt;}
.y303{bottom:755.453333pt;}
.y6a{bottom:756.413333pt;}
.y1d7{bottom:758.013333pt;}
.yc5{bottom:758.653333pt;}
.y9c{bottom:759.293333pt;}
.y237{bottom:761.693333pt;}
.y2b5{bottom:762.973333pt;}
.y10d{bottom:763.453333pt;}
.y1b5{bottom:765.373333pt;}
.y2b{bottom:766.813333pt;}
.y1fe{bottom:767.773333pt;}
.y251{bottom:768.093333pt;}
.yc{bottom:768.733333pt;}
.y32f{bottom:770.493333pt;}
.y302{bottom:770.653333pt;}
.y16f{bottom:772.413333pt;}
.y26e{bottom:775.453333pt;}
.y69{bottom:777.053333pt;}
.y9b{bottom:780.093333pt;}
.y47{bottom:780.800000pt;}
.y1d5{bottom:781.693333pt;}
.y236{bottom:782.333333pt;}
.y2d5{bottom:782.973333pt;}
.y32e{bottom:785.693333pt;}
.y2b4{bottom:786.013333pt;}
.y1a1{bottom:787.773333pt;}
.yc3{bottom:790.013333pt;}
.y1fc{bottom:791.453333pt;}
.y1b4{bottom:796.773333pt;}
.yb{bottom:797.253333pt;}
.y68{bottom:797.733333pt;}
.y26d{bottom:798.373333pt;}
.y9a{bottom:800.773333pt;}
.y32d{bottom:801.093333pt;}
.y301{bottom:801.413333pt;}
.y250{bottom:801.733333pt;}
.y235{bottom:803.013333pt;}
.y16e{bottom:803.813333pt;}
.y1ce{bottom:805.413333pt;}
.y2a{bottom:808.613333pt;}
.y2b3{bottom:809.093333pt;}
.y10c{bottom:810.053333pt;}
.yc2{bottom:810.693333pt;}
.y2d4{bottom:813.733333pt;}
.y1fb{bottom:815.013333pt;}
.y32c{bottom:816.453333pt;}
.y300{bottom:816.773333pt;}
.y67{bottom:818.373333pt;}
.ye5{bottom:818.853333pt;}
.y99{bottom:821.413333pt;}
.y234{bottom:823.813333pt;}
.y16d{bottom:825.413333pt;}
.ye0{bottom:825.573333pt;}
.y1d0{bottom:827.013333pt;}
.y2d3{bottom:829.093333pt;}
.yc1{bottom:831.333333pt;}
.y32b{bottom:831.813333pt;}
.y2b2{bottom:832.133333pt;}
.ya{bottom:832.293333pt;}
.y1a0{bottom:834.373333pt;}
.y24f{bottom:835.333333pt;}
.y29{bottom:836.933333pt;}
.y1fa{bottom:838.693333pt;}
.y66{bottom:839.013333pt;}
.y10b{bottom:841.413333pt;}
.y98{bottom:842.053333pt;}
.y233{bottom:844.453333pt;}
.y32a{bottom:847.173333pt;}
.y12e{bottom:847.333333pt;}
.y2ff{bottom:847.493333pt;}
.y1d2{bottom:848.773333pt;}
.y1b3{bottom:849.733333pt;}
.ye3{bottom:850.213333pt;}
.yc0{bottom:852.133333pt;}
.y28b{bottom:855.013333pt;}
.y9{bottom:856.613333pt;}
.y183{bottom:857.413333pt;}
.y24e{bottom:858.373333pt;}
.y65{bottom:859.813333pt;}
.y1f9{bottom:862.373333pt;}
.y97{bottom:862.693333pt;}
.y232{bottom:865.093333pt;}
.y26c{bottom:867.333333pt;}
.y28{bottom:868.133333pt;}
.y16c{bottom:872.133333pt;}
.ybf{bottom:872.773333pt;}
.y2d2{bottom:875.013333pt;}
.y329{bottom:877.733333pt;}
.y28a{bottom:878.053333pt;}
.y12d{bottom:878.693333pt;}
.y64{bottom:880.453333pt;}
.y8{bottom:881.093333pt;}
.y24d{bottom:881.413333pt;}
.y96{bottom:883.333333pt;}
.y231{bottom:885.733333pt;}
.y1f8{bottom:886.053333pt;}
.y10a{bottom:888.133333pt;}
.y26b{bottom:890.373333pt;}
.y1cd{bottom:892.133333pt;}
.y328{bottom:893.093333pt;}
.ybe{bottom:893.413333pt;}
.ye1{bottom:896.773333pt;}
.y63{bottom:901.093333pt;}
.y27{bottom:903.173333pt;}
.y95{bottom:904.133333pt;}
.y7{bottom:905.573333pt;}
.y2d1{bottom:905.733333pt;}
.y22f{bottom:906.373333pt;}
.y327{bottom:908.453333pt;}
.y2fe{bottom:908.773333pt;}
.y1f7{bottom:909.733333pt;}
.y12c{bottom:910.053333pt;}
.y19d{bottom:912.453333pt;}
.y26a{bottom:913.413333pt;}
.ybd{bottom:914.053333pt;}
.y24c{bottom:914.693333pt;}
.y169{bottom:918.693333pt;}
.y2d0{bottom:921.093333pt;}
.y61{bottom:921.733333pt;}
.y289{bottom:924.133333pt;}
.y94{bottom:924.773333pt;}
.y1cc{bottom:925.733333pt;}
.y26{bottom:931.493333pt;}
.y1f6{bottom:933.413333pt;}
.y149{bottom:934.053333pt;}
.y269{bottom:936.453333pt;}
.y2fd{bottom:939.333333pt;}
.y6{bottom:940.613333pt;}
.y12b{bottom:941.413333pt;}
.y5f{bottom:942.373333pt;}
.ydd{bottom:943.493333pt;}
.y1b2{bottom:943.813333pt;}
.y93{bottom:945.413333pt;}
.y288{bottom:947.013333pt;}
.y24b{bottom:948.453333pt;}
.y1cb{bottom:948.773333pt;}
.y107{bottom:950.053333pt;}
.y2cf{bottom:951.813333pt;}
.y2fc{bottom:954.693333pt;}
.y1f5{bottom:957.093333pt;}
.y268{bottom:959.333333pt;}
.y25{bottom:962.693333pt;}
.y129{bottom:963.013333pt;}
.y5{bottom:965.093333pt;}
.y148{bottom:965.413333pt;}
.y92{bottom:966.053333pt;}
.y2ce{bottom:967.013333pt;}
.y287{bottom:970.053333pt;}
.y1b1{bottom:975.013333pt;}
.y1f4{bottom:980.773333pt;}
.y22e{bottom:982.053333pt;}
.y1ca{bottom:982.373333pt;}
.y128{bottom:984.773333pt;}
.y2fb{bottom:985.413333pt;}
.y91{bottom:986.693333pt;}
.y24{bottom:991.013333pt;}
.y49{bottom:992.640000pt;}
.y5e{bottom:993.093333pt;}
.y105{bottom:996.773333pt;}
.y4{bottom:1000.133333pt;}
.y2fa{bottom:1000.773333pt;}
.y1f2{bottom:1004.453333pt;}
.y126{bottom:1006.373333pt;}
.y90{bottom:1007.333333pt;}
.y22d{bottom:1015.840000pt;}
.y3{bottom:1016.160000pt;}
.y23{bottom:1022.240000pt;}
.hd{height:19.986667pt;}
.h15{height:19.998667pt;}
.hf{height:20.000000pt;}
.h13{height:20.018667pt;}
.he{height:20.020000pt;}
.h10{height:20.026667pt;}
.h14{height:20.032000pt;}
.h23{height:20.946667pt;}
.h48{height:20.958667pt;}
.h3a{height:20.960000pt;}
.h17{height:20.978667pt;}
.h2f{height:20.986667pt;}
.h30{height:21.106667pt;}
.h38{height:21.118667pt;}
.h32{height:21.120000pt;}
.h9{height:21.280000pt;}
.h34{height:21.906667pt;}
.h58{height:22.866667pt;}
.h5a{height:22.878667pt;}
.h55{height:22.880000pt;}
.h5d{height:22.900000pt;}
.h5c{height:22.906667pt;}
.h57{height:23.026667pt;}
.h5b{height:23.038667pt;}
.h54{height:23.040000pt;}
.h59{height:23.058667pt;}
.h53{height:23.060000pt;}
.h56{height:23.066667pt;}
.h5e{height:23.072000pt;}
.h7{height:24.806250pt;}
.h18{height:27.186667pt;}
.hc{height:28.306667pt;}
.hb{height:28.640000pt;}
.h12{height:30.546667pt;}
.h1e{height:30.560000pt;}
.h47{height:30.578667pt;}
.h3f{height:30.580000pt;}
.h26{height:30.586667pt;}
.h2e{height:30.592000pt;}
.h11{height:30.706667pt;}
.h25{height:30.718667pt;}
.h16{height:30.720000pt;}
.h4f{height:30.740000pt;}
.h3c{height:30.746667pt;}
.h24{height:30.752000pt;}
.h4{height:36.312500pt;}
.h61{height:36.909063pt;}
.h6{height:38.128125pt;}
.h5f{height:40.626667pt;}
.h20{height:41.586667pt;}
.h3b{height:41.600000pt;}
.h4b{height:41.626667pt;}
.h52{height:42.706667pt;}
.ha{height:43.750000pt;}
.h22{height:44.146667pt;}
.h1b{height:45.906667pt;}
.h33{height:45.920000pt;}
.h29{height:45.940000pt;}
.h50{height:45.946667pt;}
.h1a{height:46.066667pt;}
.h2a{height:46.080000pt;}
.h37{height:46.098667pt;}
.h1f{height:46.106667pt;}
.h5{height:51.686250pt;}
.h60{height:52.108438pt;}
.h3{height:52.134375pt;}
.h8{height:53.535000pt;}
.h28{height:61.266667pt;}
.h1d{height:61.280000pt;}
.h41{height:61.426667pt;}
.h2{height:62.812500pt;}
.h51{height:64.306667pt;}
.h45{height:76.660000pt;}
.h4d{height:92.018667pt;}
.h44{height:107.346667pt;}
.h4a{height:107.360000pt;}
.h2b{height:107.386667pt;}
.h1c{height:122.740000pt;}
.h31{height:137.933333pt;}
.h36{height:138.066667pt;}
.h2d{height:138.093333pt;}
.h21{height:168.653333pt;}
.h4e{height:184.026667pt;}
.h42{height:199.373333pt;}
.h39{height:214.746667pt;}
.h3d{height:245.293333pt;}
.h3e{height:313.626667pt;}
.h2c{height:316.385333pt;}
.h46{height:367.425333pt;}
.h4c{height:376.385333pt;}
.h49{height:399.573333pt;}
.h35{height:437.185333pt;}
.h43{height:484.373333pt;}
.h40{height:492.093333pt;}
.h27{height:524.693333pt;}
.h19{height:837.558667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:25.440000pt;}
.w3{width:29.280000pt;}
.wc{width:34.418667pt;}
.w15{width:51.378667pt;}
.w13{width:51.392000pt;}
.w11{width:51.680000pt;}
.w4{width:80.658667pt;}
.w7{width:84.950667pt;}
.w6{width:100.498667pt;}
.w12{width:104.640000pt;}
.w14{width:104.786667pt;}
.w16{width:106.710667pt;}
.w1b{width:108.658667pt;}
.wa{width:114.418667pt;}
.w17{width:115.698667pt;}
.wb{width:122.230667pt;}
.w1a{width:127.350667pt;}
.w18{width:129.312000pt;}
.w9{width:151.706667pt;}
.w19{width:152.333333pt;}
.w10{width:156.813333pt;}
.wf{width:156.826667pt;}
.wd{width:156.960000pt;}
.w1c{width:190.106667pt;}
.w5{width:218.106667pt;}
.w8{width:228.173333pt;}
.we{width:314.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.866667pt;}
.x13{left:7.990667pt;}
.x9{left:9.626667pt;}
.x1a{left:11.346667pt;}
.x24{left:12.506667pt;}
.x26{left:13.746667pt;}
.x28{left:14.866667pt;}
.xf{left:15.826667pt;}
.x20{left:17.426667pt;}
.x21{left:19.226667pt;}
.x23{left:20.186667pt;}
.x31{left:21.946667pt;}
.x1d{left:23.386667pt;}
.x2a{left:24.346667pt;}
.x2b{left:25.786667pt;}
.x33{left:27.066667pt;}
.x18{left:28.666667pt;}
.x59{left:29.585333pt;}
.x22{left:30.586667pt;}
.x45{left:32.306667pt;}
.x29{left:33.466667pt;}
.x32{left:34.426667pt;}
.x2f{left:35.386667pt;}
.x5a{left:36.305333pt;}
.x46{left:37.786667pt;}
.x25{left:39.706667pt;}
.x47{left:40.625333pt;}
.x1e{left:41.626667pt;}
.x36{left:43.665333pt;}
.x5e{left:44.785333pt;}
.x1c{left:45.786667pt;}
.x53{left:47.185333pt;}
.x2e{left:48.346667pt;}
.x2d{left:49.466667pt;}
.x16{left:50.586667pt;}
.x55{left:51.665333pt;}
.x1b{left:52.826667pt;}
.x34{left:53.946667pt;}
.x27{left:55.866667pt;}
.x1f{left:58.106667pt;}
.x19{left:59.866667pt;}
.x2c{left:60.986667pt;}
.x30{left:62.106667pt;}
.x35{left:63.546667pt;}
.x4a{left:65.745333pt;}
.x54{left:67.185333pt;}
.x44{left:68.145333pt;}
.x49{left:69.745333pt;}
.x48{left:71.665333pt;}
.x43{left:74.065333pt;}
.x50{left:76.305333pt;}
.x51{left:77.585333pt;}
.x52{left:79.185333pt;}
.x42{left:80.625333pt;}
.x4f{left:82.865333pt;}
.xd{left:83.840000pt;}
.x41{left:86.545333pt;}
.x4e{left:88.785333pt;}
.x5d{left:91.706667pt;}
.x40{left:93.265333pt;}
.x4d{left:95.505333pt;}
.x3f{left:99.985333pt;}
.x4c{left:101.425333pt;}
.x12{left:106.601333pt;}
.x4b{left:108.145333pt;}
.x2{left:113.472000pt;}
.x8{left:127.680000pt;}
.x3a{left:145.306667pt;}
.x5f{left:160.666667pt;}
.x14{left:192.200000pt;}
.xb{left:196.680000pt;}
.x56{left:213.960000pt;}
.x37{left:229.640000pt;}
.x5b{left:234.600000pt;}
.x38{left:264.706667pt;}
.xc{left:277.986667pt;}
.x3c{left:317.026667pt;}
.x57{left:330.306667pt;}
.x5c{left:343.906667pt;}
.x5{left:368.546667pt;}
.x11{left:388.866667pt;}
.x1{left:392.866667pt;}
.x7{left:396.866667pt;}
.x15{left:421.026667pt;}
.x39{left:422.466667pt;}
.x58{left:460.266667pt;}
.x3d{left:474.506667pt;}
.xe{left:496.746667pt;}
.x17{left:573.386667pt;}
.x3b{left:580.106667pt;}
.xa{left:595.973333pt;}
.x4{left:605.573333pt;}
.x3{left:616.933333pt;}
.x6{left:621.893333pt;}
.x3e{left:632.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; }
  