
    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_2f571604f4e2d82834d9e3b2.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_37650c342bd6d4b988fc3ce7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a8098fe64046683266ea5c69.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_246b17369c1e777b171bd6dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_a2c237dea1037d1535555e6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_3d0218385e3ebfc08ed244a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6c2df1e18b8d2a49d109e8b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.117188;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);}
.v1{vertical-align:-103.800000px;}
.v2{vertical-align:-76.500000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.513600px;}
.ls11{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.440000px;}
.ls3{letter-spacing:25.920000px;}
.ls2{letter-spacing:127.620000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wse{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.208000px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.wsb{word-spacing:-15.453600px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.wsd{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.060000px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._33{margin-left:-15.417360px;}
._2{margin-left:-2.142720px;}
._1{margin-left:-1.015920px;}
._0{width:1.972080px;}
._1c{width:3.001200px;}
._6{width:4.104000px;}
._10{width:5.544000px;}
._11{width:6.588000px;}
._16{width:7.946640px;}
._b{width:9.144000px;}
._4{width:10.872000px;}
._5{width:11.880000px;}
._1d{width:12.960000px;}
._7{width:14.184000px;}
._21{width:15.199920px;}
._c{width:16.632000px;}
._12{width:19.296000px;}
._1e{width:20.664000px;}
._28{width:21.672000px;}
._1f{width:22.680000px;}
._1b{width:24.120000px;}
._f{width:25.920000px;}
._22{width:27.576000px;}
._26{width:29.232000px;}
._27{width:30.888000px;}
._44{width:32.256000px;}
._24{width:33.719760px;}
._a{width:35.064000px;}
._19{width:36.692640px;}
._1a{width:37.843200px;}
._25{width:38.980800px;}
._23{width:40.056480px;}
._18{width:41.157360px;}
._17{width:42.250320px;}
._8{width:43.488000px;}
._9{width:44.784000px;}
._20{width:46.087920px;}
._15{width:49.536000px;}
._d{width:53.352000px;}
._e{width:54.801360px;}
._34{width:56.664000px;}
._3{width:59.400000px;}
._2e{width:74.160000px;}
._13{width:81.936000px;}
._14{width:83.376000px;}
._37{width:91.584000px;}
._38{width:92.772000px;}
._3a{width:101.031840px;}
._3d{width:115.704000px;}
._2c{width:121.752000px;}
._2d{width:123.146640px;}
._42{width:126.432000px;}
._29{width:135.475920px;}
._2a{width:154.315920px;}
._35{width:155.940000px;}
._31{width:158.184000px;}
._30{width:165.384000px;}
._43{width:171.540000px;}
._39{width:189.540000px;}
._3f{width:191.520000px;}
._40{width:193.356000px;}
._45{width:242.352000px;}
._36{width:250.272000px;}
._2b{width:301.968000px;}
._3b{width:314.640000px;}
._3c{width:315.648000px;}
._41{width:438.624000px;}
._3e{width:440.791920px;}
._32{width:762.336000px;}
._2f{width:1909.008000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs6{font-size:33.120000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.772500px;}
.y46{bottom:5.040000px;}
.y78{bottom:5.220000px;}
.y1b3{bottom:5.580000px;}
.y134{bottom:6.105000px;}
.ydf{bottom:6.120000px;}
.y165{bottom:6.150000px;}
.y1a1{bottom:6.165000px;}
.y136{bottom:6.285000px;}
.yf4{bottom:6.300000px;}
.y178{bottom:7.560000px;}
.y13e{bottom:7.740000px;}
.ye9{bottom:9.000000px;}
.y8{bottom:15.120000px;}
.yf2{bottom:16.020000px;}
.y194{bottom:16.050000px;}
.y1a2{bottom:16.065000px;}
.y132{bottom:16.185000px;}
.yf9{bottom:16.200000px;}
.y1d6{bottom:17.670000px;}
.yea{bottom:18.900000px;}
.yef{bottom:19.080000px;}
.yf7{bottom:19.125000px;}
.y4b{bottom:20.872500px;}
.ye6{bottom:21.960000px;}
.y1b2{bottom:23.430000px;}
.y1ae{bottom:25.020000px;}
.ydd{bottom:25.920000px;}
.y1a0{bottom:25.965000px;}
.yf1{bottom:26.100000px;}
.y133{bottom:26.130000px;}
.y177{bottom:27.360000px;}
.y168{bottom:27.525000px;}
.y122{bottom:27.540000px;}
.y1d4{bottom:27.570000px;}
.ye8{bottom:28.800000px;}
.y163{bottom:28.965000px;}
.y106{bottom:28.980000px;}
.y185{bottom:29.010000px;}
.y142{bottom:29.160000px;}
.y7{bottom:33.120000px;}
.y1ac{bottom:33.870000px;}
.y1ab{bottom:35.820000px;}
.y100{bottom:36.000000px;}
.y179{bottom:37.260000px;}
.y13f{bottom:37.440000px;}
.y1d3{bottom:37.470000px;}
.y4a{bottom:38.152500px;}
.y1cb{bottom:38.880000px;}
.yf6{bottom:38.925000px;}
.yee{bottom:39.060000px;}
.y1b1{bottom:41.250000px;}
.ye5{bottom:41.760000px;}
.y1c5{bottom:41.940000px;}
.y1ad{bottom:42.870000px;}
.y1aa{bottom:45.720000px;}
.yff{bottom:45.900000px;}
.yde{bottom:45.930000px;}
.y13d{bottom:47.340000px;}
.y176{bottom:47.370000px;}
.y10d{bottom:48.780000px;}
.y10a{bottom:48.810000px;}
.y105{bottom:48.960000px;}
.y5{bottom:49.140000px;}
.y1af{bottom:51.690000px;}
.y4d{bottom:53.496000px;}
.y48{bottom:54.763500px;}
.y49{bottom:55.432500px;}
.y1b8{bottom:55.800000px;}
.y1dc{bottom:57.240000px;}
.y1d5{bottom:57.270000px;}
.y1ca{bottom:58.680000px;}
.yf5{bottom:58.725000px;}
.yed{bottom:58.860000px;}
.ye4{bottom:61.560000px;}
.y1c4{bottom:61.740000px;}
.y1de{bottom:65.520000px;}
.y1a9{bottom:65.700000px;}
.y1b7{bottom:67.140000px;}
.y13c{bottom:67.170000px;}
.y1d2{bottom:68.610000px;}
.y4{bottom:68.796000px;}
.y1a7{bottom:74.550000px;}
.y1db{bottom:77.040000px;}
.y19d{bottom:78.480000px;}
.y197{bottom:81.540000px;}
.y1b6{bottom:86.940000px;}
.y1da{bottom:97.020000px;}
.y19c{bottom:98.280000px;}
.y196{bottom:101.340000px;}
.y1b5{bottom:106.740000px;}
.y1d9{bottom:116.820000px;}
.y103{bottom:117.360000px;}
.ye2{bottom:120.105000px;}
.y102{bottom:137.190000px;}
.ye1{bottom:139.905000px;}
.y18c{bottom:143.316000px;}
.y16b{bottom:143.856000px;}
.ydb{bottom:144.216000px;}
.y13a{bottom:153.570000px;}
.y11b{bottom:155.910000px;}
.y1c1{bottom:156.810000px;}
.y167{bottom:160.785000px;}
.ya2{bottom:164.010000px;}
.y1e8{bottom:165.450000px;}
.y223{bottom:165.630000px;}
.y76{bottom:165.990000px;}
.y18b{bottom:167.070000px;}
.y193{bottom:167.610000px;}
.yc7{bottom:167.970000px;}
.yda{bottom:169.590000px;}
.y139{bottom:176.070000px;}
.y11a{bottom:179.850000px;}
.y1c0{bottom:180.750000px;}
.y16a{bottom:182.205000px;}
.y1e7{bottom:184.350000px;}
.ya1{bottom:187.950000px;}
.y222{bottom:189.570000px;}
.y75{bottom:189.930000px;}
.y18a{bottom:191.010000px;}
.y192{bottom:191.550000px;}
.yc6{bottom:191.910000px;}
.y138{bottom:192.825000px;}
.yd9{bottom:194.970000px;}
.y169{bottom:203.445000px;}
.y119{bottom:203.610000px;}
.y1bf{bottom:204.510000px;}
.y1e6{bottom:208.110000px;}
.ya0{bottom:211.710000px;}
.y137{bottom:212.625000px;}
.y221{bottom:213.330000px;}
.y189{bottom:213.510000px;}
.y74{bottom:213.690000px;}
.y191{bottom:215.310000px;}
.yc5{bottom:215.670000px;}
.yd8{bottom:220.350000px;}
.y206{bottom:221.070000px;}
.y162{bottom:224.865000px;}
.y188{bottom:227.205000px;}
.y118{bottom:227.370000px;}
.y1be{bottom:228.270000px;}
.y1e5{bottom:231.870000px;}
.y135{bottom:232.425000px;}
.y9f{bottom:235.470000px;}
.y22e{bottom:237.090000px;}
.y73{bottom:237.450000px;}
.yc4{bottom:239.430000px;}
.y205{bottom:244.830000px;}
.yd7{bottom:245.370000px;}
.y166{bottom:247.725000px;}
.y184{bottom:250.065000px;}
.y117{bottom:251.130000px;}
.y1bd{bottom:252.030000px;}
.y131{bottom:255.285000px;}
.y1e4{bottom:255.630000px;}
.y9e{bottom:259.230000px;}
.y72{bottom:261.210000px;}
.yc3{bottom:263.190000px;}
.y204{bottom:268.590000px;}
.yd6{bottom:269.130000px;}
.y164{bottom:270.585000px;}
.y187{bottom:272.775000px;}
.y116{bottom:275.115000px;}
.y1bc{bottom:276.015000px;}
.y1e3{bottom:279.615000px;}
.y9d{bottom:283.215000px;}
.y44{bottom:284.250000px;}
.y71{bottom:285.195000px;}
.yc2{bottom:287.175000px;}
.yd5{bottom:293.115000px;}
.y161{bottom:293.295000px;}
.y186{bottom:295.635000px;}
.y115{bottom:298.875000px;}
.y1bb{bottom:299.775000px;}
.y1e2{bottom:303.375000px;}
.y130{bottom:305.535000px;}
.y43{bottom:306.750000px;}
.y9c{bottom:306.975000px;}
.y203{bottom:307.515000px;}
.y70{bottom:308.955000px;}
.yc1{bottom:310.935000px;}
.yd4{bottom:316.875000px;}
.y181{bottom:317.055000px;}
.y114{bottom:322.635000px;}
.y1ba{bottom:323.175000px;}
.y234{bottom:323.535000px;}
.y1e1{bottom:327.135000px;}
.y12f{bottom:328.035000px;}
.y42{bottom:330.555000px;}
.y9b{bottom:330.735000px;}
.y202{bottom:331.275000px;}
.y6f{bottom:332.715000px;}
.yc0{bottom:334.695000px;}
.y183{bottom:338.295000px;}
.y220{bottom:338.475000px;}
.yd3{bottom:340.095000px;}
.y160{bottom:343.875000px;}
.y12e{bottom:344.595000px;}
.y1b9{bottom:346.035000px;}
.y113{bottom:346.395000px;}
.y1e0{bottom:350.895000px;}
.y41{bottom:354.315000px;}
.y9a{bottom:354.495000px;}
.y201{bottom:355.035000px;}
.y6e{bottom:356.475000px;}
.ybf{bottom:358.455000px;}
.y182{bottom:359.715000px;}
.yd2{bottom:362.055000px;}
.y21f{bottom:362.415000px;}
.y1b4{bottom:362.775000px;}
.y12d{bottom:367.455000px;}
.y15f{bottom:367.635000px;}
.y112{bottom:370.335000px;}
.y1df{bottom:373.395000px;}
.y40{bottom:378.075000px;}
.y99{bottom:378.435000px;}
.y6d{bottom:380.415000px;}
.y17e{bottom:380.955000px;}
.ybe{bottom:382.395000px;}
.yd1{bottom:385.995000px;}
.y233{bottom:386.175000px;}
.y1d8{bottom:390.135000px;}
.y15e{bottom:391.395000px;}
.y111{bottom:392.835000px;}
.y200{bottom:393.915000px;}
.y21e{bottom:401.115000px;}
.y3f{bottom:401.835000px;}
.y98{bottom:402.195000px;}
.y180{bottom:402.375000px;}
.y6c{bottom:404.175000px;}
.ybd{bottom:406.155000px;}
.y110{bottom:406.515000px;}
.yd0{bottom:409.215000px;}
.y15d{bottom:415.335000px;}
.y12c{bottom:417.675000px;}
.y17f{bottom:423.615000px;}
.y21d{bottom:425.055000px;}
.y3e{bottom:425.775000px;}
.y97{bottom:425.955000px;}
.y6b{bottom:427.935000px;}
.y101{bottom:429.375000px;}
.ybc{bottom:429.915000px;}
.ycf{bottom:431.535000px;}
.y15c{bottom:439.095000px;}
.y12b{bottom:441.435000px;}
.y1ff{bottom:441.615000px;}
.y17b{bottom:445.035000px;}
.y21c{bottom:448.815000px;}
.y3d{bottom:449.535000px;}
.y96{bottom:449.715000px;}
.y6a{bottom:451.695000px;}
.y10f{bottom:452.235000px;}
.ybb{bottom:453.675000px;}
.yce{bottom:455.115000px;}
.y15b{bottom:462.855000px;}
.y12a{bottom:465.195000px;}
.y17d{bottom:467.895000px;}
.y1dd{bottom:472.575000px;}
.y3c{bottom:473.295000px;}
.y95{bottom:473.475000px;}
.y10e{bottom:474.915000px;}
.y69{bottom:475.635000px;}
.yba{bottom:477.615000px;}
.y1fe{bottom:480.315000px;}
.y15a{bottom:486.615000px;}
.y21b{bottom:487.515000px;}
.y129{bottom:488.955000px;}
.y17c{bottom:490.755000px;}
.y3b{bottom:497.055000px;}
.y94{bottom:497.415000px;}
.y68{bottom:499.395000px;}
.yb9{bottom:501.375000px;}
.y1fd{bottom:504.075000px;}
.y159{bottom:510.555000px;}
.y21a{bottom:511.455000px;}
.y128{bottom:512.895000px;}
.y175{bottom:513.615000px;}
.y109{bottom:517.755000px;}
.y3a{bottom:520.995000px;}
.y93{bottom:521.175000px;}
.y67{bottom:523.155000px;}
.yb8{bottom:525.135000px;}
.y1a6{bottom:527.475000px;}
.y1fc{bottom:528.015000px;}
.y158{bottom:534.315000px;}
.y22d{bottom:535.215000px;}
.y127{bottom:536.655000px;}
.y10c{bottom:540.435000px;}
.y39{bottom:544.755000px;}
.y92{bottom:544.935000px;}
.y66{bottom:546.915000px;}
.y1b0{bottom:548.355000px;}
.yb7{bottom:548.895000px;}
.y219{bottom:550.155000px;}
.y1fb{bottom:551.775000px;}
.y1d1{bottom:554.835000px;}
.y17a{bottom:556.305000px;}
.y157{bottom:558.105000px;}
.y232{bottom:559.005000px;}
.y126{bottom:560.445000px;}
.y10b{bottom:563.325000px;}
.y38{bottom:568.515000px;}
.y91{bottom:568.725000px;}
.y65{bottom:570.705000px;}
.yb6{bottom:572.685000px;}
.y218{bottom:573.945000px;}
.y1d7{bottom:577.725000px;}
.y156{bottom:581.865000px;}
.y125{bottom:582.945000px;}
.y1fa{bottom:590.505000px;}
.y37{bottom:592.275000px;}
.y90{bottom:592.665000px;}
.y64{bottom:594.645000px;}
.yb5{bottom:596.625000px;}
.y22c{bottom:597.885000px;}
.y121{bottom:600.045000px;}
.y1a8{bottom:604.905000px;}
.y155{bottom:605.625000px;}
.y104{bottom:605.985000px;}
.y174{bottom:606.345000px;}
.y217{bottom:612.825000px;}
.y1f9{bottom:614.445000px;}
.y36{bottom:616.245000px;}
.y8f{bottom:616.425000px;}
.y63{bottom:618.405000px;}
.yb4{bottom:620.385000px;}
.y124{bottom:621.465000px;}
.y22b{bottom:621.645000px;}
.y108{bottom:628.845000px;}
.y154{bottom:629.565000px;}
.y216{bottom:636.585000px;}
.y35{bottom:640.005000px;}
.y8e{bottom:640.185000px;}
.y62{bottom:642.165000px;}
.y123{bottom:642.705000px;}
.yb3{bottom:644.145000px;}
.y22a{bottom:645.405000px;}
.y173{bottom:645.585000px;}
.y107{bottom:651.705000px;}
.y1f8{bottom:653.145000px;}
.y153{bottom:653.325000px;}
.y34{bottom:663.765000px;}
.y8d{bottom:663.945000px;}
.y11e{bottom:664.125000px;}
.y172{bottom:665.385000px;}
.y61{bottom:665.925000px;}
.yb2{bottom:667.905000px;}
.y215{bottom:675.465000px;}
.y1f7{bottom:676.905000px;}
.y152{bottom:677.085000px;}
.y229{bottom:684.285000px;}
.y171{bottom:685.185000px;}
.y120{bottom:686.805000px;}
.y33{bottom:687.525000px;}
.y8c{bottom:687.885000px;}
.y60{bottom:689.865000px;}
.y190{bottom:691.305000px;}
.yb1{bottom:691.845000px;}
.yfe{bottom:694.365000px;}
.y214{bottom:699.225000px;}
.y151{bottom:700.845000px;}
.y28{bottom:701.025000px;}
.y170{bottom:708.045000px;}
.y11f{bottom:709.665000px;}
.y1d0{bottom:709.845000px;}
.y32{bottom:711.465000px;}
.y8b{bottom:711.645000px;}
.y18f{bottom:713.265000px;}
.y5f{bottom:713.625000px;}
.yb0{bottom:715.605000px;}
.y1a5{bottom:717.225000px;}
.y27{bottom:720.105000px;}
.y213{bottom:722.985000px;}
.y150{bottom:724.785000px;}
.y231{bottom:731.805000px;}
.y11d{bottom:732.525000px;}
.y1cf{bottom:732.705000px;}
.y19b{bottom:734.325000px;}
.y31{bottom:735.225000px;}
.y8a{bottom:735.405000px;}
.y18e{bottom:737.025000px;}
.y5e{bottom:737.385000px;}
.y16f{bottom:738.285000px;}
.y26{bottom:739.005000px;}
.yaf{bottom:739.365000px;}
.y1f6{bottom:739.545000px;}
.y228{bottom:746.745000px;}
.y14f{bottom:748.545000px;}
.y1c9{bottom:749.805000px;}
.y1a4{bottom:755.565000px;}
.y25{bottom:758.085000px;}
.y30{bottom:758.985000px;}
.y89{bottom:759.165000px;}
.y18d{bottom:760.605000px;}
.y16e{bottom:760.785000px;}
.y5d{bottom:761.145000px;}
.y212{bottom:761.865000px;}
.yae{bottom:763.125000px;}
.y1f5{bottom:763.305000px;}
.yfd{bottom:764.385000px;}
.y227{bottom:770.685000px;}
.y14e{bottom:771.045000px;}
.y24{bottom:776.625000px;}
.y16d{bottom:777.525000px;}
.y2f{bottom:782.745000px;}
.y88{bottom:783.105000px;}
.y14d{bottom:784.725000px;}
.y5c{bottom:785.085000px;}
.y211{bottom:785.625000px;}
.yfc{bottom:786.885000px;}
.yad{bottom:787.065000px;}
.y1ce{bottom:792.465000px;}
.y226{bottom:794.445000px;}
.y1a3{bottom:796.785000px;}
.y16c{bottom:800.385000px;}
.yfb{bottom:800.565000px;}
.y1f4{bottom:802.185000px;}
.y2e{bottom:806.685000px;}
.y87{bottom:806.865000px;}
.y14b{bottom:807.585000px;}
.y5b{bottom:808.845000px;}
.y210{bottom:809.385000px;}
.yac{bottom:810.825000px;}
.y23{bottom:813.165000px;}
.y1cd{bottom:813.705000px;}
.y230{bottom:818.205000px;}
.ye0{bottom:823.425000px;}
.y1f3{bottom:825.945000px;}
.y2d{bottom:830.445000px;}
.y86{bottom:830.625000px;}
.y22{bottom:832.245000px;}
.y5a{bottom:832.605000px;}
.y20f{bottom:833.325000px;}
.yab{bottom:834.585000px;}
.y1cc{bottom:835.125000px;}
.y19f{bottom:838.005000px;}
.yfa{bottom:846.330000px;}
.y1f2{bottom:849.930000px;}
.y14c{bottom:853.350000px;}
.y2c{bottom:854.205000px;}
.y85{bottom:854.430000px;}
.y59{bottom:856.410000px;}
.y20e{bottom:857.130000px;}
.yaa{bottom:858.390000px;}
.yf8{bottom:869.010000px;}
.y21{bottom:870.270000px;}
.y148{bottom:874.590000px;}
.y2b{bottom:878.010000px;}
.y84{bottom:878.370000px;}
.y19e{bottom:879.090000px;}
.y1c8{bottom:879.270000px;}
.y58{bottom:880.350000px;}
.y225{bottom:880.890000px;}
.ya9{bottom:882.330000px;}
.y1f1{bottom:888.630000px;}
.y20{bottom:889.170000px;}
.y20d{bottom:895.830000px;}
.y14a{bottom:896.010000px;}
.y2a{bottom:901.950000px;}
.y83{bottom:902.130000px;}
.y57{bottom:904.110000px;}
.y224{bottom:904.650000px;}
.ya8{bottom:906.090000px;}
.y1f{bottom:908.070000px;}
.yec{bottom:911.670000px;}
.y1f0{bottom:912.390000px;}
.y149{bottom:917.250000px;}
.y20c{bottom:919.770000px;}
.y195{bottom:920.310000px;}
.y1c7{bottom:924.990000px;}
.y29{bottom:925.350000px;}
.y82{bottom:925.890000px;}
.y1e{bottom:927.150000px;}
.y56{bottom:927.870000px;}
.ya7{bottom:929.850000px;}
.yf3{bottom:934.530000px;}
.y1ef{bottom:936.330000px;}
.y145{bottom:938.670000px;}
.y19a{bottom:943.170000px;}
.y20b{bottom:943.530000px;}
.y15{bottom:945.690000px;}
.y1c6{bottom:947.850000px;}
.y81{bottom:949.650000px;}
.y55{bottom:951.630000px;}
.ya6{bottom:953.610000px;}
.yf0{bottom:957.390000px;}
.y147{bottom:959.910000px;}
.y1ee{bottom:960.090000px;}
.y14{bottom:964.770000px;}
.y22f{bottom:967.290000px;}
.y1c3{bottom:970.710000px;}
.y1d{bottom:971.070000px;}
.y80{bottom:973.410000px;}
.y54{bottom:975.570000px;}
.ya5{bottom:976.650000px;}
.ycd{bottom:977.550000px;}
.y146{bottom:981.330000px;}
.y20a{bottom:982.230000px;}
.y13{bottom:983.670000px;}
.y199{bottom:985.830000px;}
.y1c{bottom:986.550000px;}
.y6{bottom:992.850000px;}
.y7f{bottom:997.350000px;}
.y1b{bottom:998.610000px;}
.y1ed{bottom:998.790000px;}
.ya4{bottom:998.970000px;}
.y53{bottom:999.330000px;}
.ye3{bottom:1000.050000px;}
.ycc{bottom:1001.310000px;}
.y141{bottom:1002.570000px;}
.y12{bottom:1005.450000px;}
.y209{bottom:1006.170000px;}
.y1a{bottom:1018.590000px;}
.y1c2{bottom:1020.750000px;}
.y7e{bottom:1021.110000px;}
.ya3{bottom:1022.550000px;}
.y1ec{bottom:1022.730000px;}
.yeb{bottom:1022.910000px;}
.y52{bottom:1023.090000px;}
.ycb{bottom:1025.070000px;}
.y144{bottom:1025.430000px;}
.y11{bottom:1027.230000px;}
.y198{bottom:1028.490000px;}
.y208{bottom:1029.930000px;}
.y19{bottom:1039.290000px;}
.y7d{bottom:1044.870000px;}
.ye7{bottom:1045.770000px;}
.y10{bottom:1046.850000px;}
.yca{bottom:1047.930000px;}
.y143{bottom:1048.290000px;}
.y207{bottom:1053.690000px;}
.y18{bottom:1058.370000px;}
.y1eb{bottom:1061.430000px;}
.yf{bottom:1067.730000px;}
.y7c{bottom:1068.630000px;}
.yc9{bottom:1070.250000px;}
.y51{bottom:1070.610000px;}
.y13b{bottom:1071.150000px;}
.y235{bottom:1077.450000px;}
.ye{bottom:1082.850000px;}
.y1ea{bottom:1085.190000px;}
.y17{bottom:1085.910000px;}
.y7b{bottom:1092.570000px;}
.yc8{bottom:1093.650000px;}
.ydc{bottom:1094.010000px;}
.y50{bottom:1094.550000px;}
.yd{bottom:1097.790000px;}
.y1e9{bottom:1109.130000px;}
.yc{bottom:1112.730000px;}
.y140{bottom:1113.810000px;}
.y11c{bottom:1115.970000px;}
.y7a{bottom:1116.330000px;}
.y4f{bottom:1117.410000px;}
.yb{bottom:1127.850000px;}
.y16{bottom:1139.580000px;}
.y4e{bottom:1139.760000px;}
.y79{bottom:1140.120000px;}
.ya{bottom:1142.820000px;}
.y9{bottom:1157.760000px;}
.y77{bottom:1171.620000px;}
.y45{bottom:1172.520000px;}
.y47{bottom:1175.040000px;}
.y3{bottom:1183.140000px;}
.y2{bottom:1200.420000px;}
.y1{bottom:1217.520000px;}
.h11{height:5.653125px;}
.h3e{height:17.805000px;}
.hf{height:19.440000px;}
.h12{height:19.620000px;}
.h19{height:19.785000px;}
.h1f{height:19.800000px;}
.h35{height:19.821000px;}
.h1e{height:19.822500px;}
.h45{height:19.830000px;}
.h1c{height:19.965000px;}
.h24{height:19.980000px;}
.h27{height:20.010000px;}
.hb{height:32.505469px;}
.h2e{height:39.585000px;}
.h23{height:39.600000px;}
.h39{height:39.622500px;}
.h1b{height:39.765000px;}
.h26{height:39.780000px;}
.h2b{height:39.801000px;}
.h2d{height:39.810000px;}
.h17{height:45.165000px;}
.h4{height:47.505000px;}
.ha{height:52.998047px;}
.h3d{height:53.490000px;}
.h3{height:58.621992px;}
.h2{height:58.651172px;}
.h44{height:59.400000px;}
.h20{height:59.580000px;}
.h14{height:59.610000px;}
.h8{height:60.226875px;}
.h30{height:62.445000px;}
.h2a{height:62.460000px;}
.h31{height:62.625000px;}
.h13{height:64.546875px;}
.h48{height:64.898438px;}
.hc{height:65.010937px;}
.h2f{height:65.505000px;}
.h18{height:65.518594px;}
.h29{height:65.520000px;}
.h34{height:65.541000px;}
.h32{height:65.542500px;}
.h33{height:65.698594px;}
.h5{height:66.757500px;}
.h10{height:68.932500px;}
.h47{height:70.628906px;}
.hd{height:70.664062px;}
.h9{height:72.562500px;}
.h3c{height:74.370000px;}
.h46{height:79.185000px;}
.h40{height:79.365000px;}
.h3b{height:79.380000px;}
.h36{height:82.290000px;}
.h2c{height:82.470000px;}
.h6{height:82.676953px;}
.h28{height:85.305000px;}
.h22{height:85.320000px;}
.h1d{height:85.342500px;}
.h25{height:85.350000px;}
.h1a{height:85.485000px;}
.h16{height:90.885000px;}
.h7{height:96.508125px;}
.h42{height:105.142500px;}
.h41{height:111.225000px;}
.h43{height:144.930000px;}
.h3a{height:156.810000px;}
.h3f{height:161.625000px;}
.h38{height:184.515000px;}
.h37{height:190.425000px;}
.h21{height:261.930000px;}
.h15{height:267.510000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5c{width:26.625000px;}
.w1b{width:26.805000px;}
.w24{width:27.540000px;}
.w32{width:29.325000px;}
.w3a{width:30.060000px;}
.w27{width:36.705000px;}
.w4f{width:40.161000px;}
.w47{width:40.305000px;}
.w3d{width:40.665000px;}
.w51{width:41.040000px;}
.w56{width:42.825000px;}
.w42{width:44.085000px;}
.w26{width:44.265000px;}
.w6a{width:46.609500px;}
.w3c{width:48.765000px;}
.w63{width:51.480000px;}
.w48{width:51.645000px;}
.w52{width:51.660000px;}
.w5d{width:52.761000px;}
.w1c{width:52.905000px;}
.w61{width:54.885000px;}
.w2b{width:56.325000px;}
.w62{width:58.341000px;}
.w33{width:58.665000px;}
.w50{width:58.860000px;}
.w58{width:60.469500px;}
.w64{width:60.876000px;}
.w4b{width:61.365000px;}
.w49{width:61.545000px;}
.w54{width:62.265000px;}
.w41{width:62.316000px;}
.w53{width:62.445000px;}
.w69{width:62.805000px;}
.w68{width:63.561000px;}
.w66{width:63.705000px;}
.w5e{width:63.885000px;}
.w34{width:63.921000px;}
.w1d{width:64.101000px;}
.w57{width:66.441000px;}
.w59{width:67.845000px;}
.w65{width:72.885000px;}
.w21{width:73.425000px;}
.w1f{width:74.160000px;}
.w37{width:74.196000px;}
.w6b{width:74.325000px;}
.w36{width:74.340000px;}
.w20{width:74.376000px;}
.w2d{width:80.265000px;}
.w2e{width:82.461000px;}
.we{width:83.509500px;}
.w2a{width:83.520000px;}
.w40{width:91.080000px;}
.w22{width:92.901000px;}
.w14{width:94.125000px;}
.wd{width:94.161000px;}
.w38{width:94.701000px;}
.w13{width:97.956000px;}
.w4d{width:100.641000px;}
.w17{width:101.340000px;}
.w10{width:104.940000px;}
.wf{width:106.221000px;}
.w25{width:107.676000px;}
.w55{width:110.721000px;}
.w23{width:111.420000px;}
.w15{width:114.681000px;}
.wb{width:114.696000px;}
.wc{width:118.425000px;}
.w5f{width:120.949500px;}
.w3e{width:124.189500px;}
.w39{width:124.560000px;}
.w1e{width:124.761000px;}
.w3b{width:125.316000px;}
.w16{width:127.461000px;}
.w67{width:127.821000px;}
.w4c{width:128.329500px;}
.w28{width:131.389500px;}
.w3f{width:132.321000px;}
.w35{width:139.701000px;}
.w5a{width:140.929500px;}
.w29{width:150.135000px;}
.w2{width:163.108500px;}
.w43{width:164.175000px;}
.w2c{width:164.355000px;}
.w4a{width:168.319500px;}
.w45{width:168.499500px;}
.w1a{width:183.990000px;}
.w6{width:199.099500px;}
.w9{width:201.615000px;}
.w31{width:208.650000px;}
.w19{width:233.115000px;}
.w30{width:233.119500px;}
.wa{width:294.679500px;}
.w46{width:295.410000px;}
.w12{width:312.319500px;}
.w5b{width:352.680000px;}
.w4e{width:397.695000px;}
.w60{width:425.595000px;}
.w8{width:443.584500px;}
.w7{width:448.455000px;}
.w5{width:623.070000px;}
.w44{width:629.190000px;}
.w18{width:629.370000px;}
.w11{width:630.990000px;}
.w2f{width:640.530000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x36{left:1.425000px;}
.x21{left:2.700000px;}
.x24{left:4.485000px;}
.x8f{left:5.580000px;}
.x3c{left:6.645000px;}
.x13{left:8.089500px;}
.x64{left:9.165000px;}
.x26{left:10.425000px;}
.x38{left:11.685000px;}
.x15{left:13.140000px;}
.x50{left:14.385000px;}
.x1b{left:15.825000px;}
.x20{left:17.820000px;}
.x23{left:19.605000px;}
.x5e{left:21.060000px;}
.x52{left:22.125000px;}
.x48{left:23.565000px;}
.x6{left:25.560000px;}
.x27{left:26.625000px;}
.x2a{left:28.965000px;}
.x31{left:30.090000px;}
.x3a{left:32.040000px;}
.x2d{left:33.870000px;}
.x51{left:35.100000px;}
.xd{left:36.180000px;}
.x5{left:37.621500px;}
.x19{left:40.123500px;}
.x16{left:42.120000px;}
.x30{left:44.100000px;}
.x2c{left:45.885000px;}
.x3b{left:47.160000px;}
.x2e{left:49.860000px;}
.x2f{left:51.645000px;}
.x53{left:53.850000px;}
.x3d{left:55.470000px;}
.x2b{left:57.240000px;}
.x77{left:58.303500px;}
.x5d{left:61.903500px;}
.x5b{left:68.385000px;}
.x41{left:74.880000px;}
.x79{left:90.540000px;}
.x3f{left:93.585000px;}
.x1c{left:95.925000px;}
.x8a{left:103.500000px;}
.x87{left:113.626500px;}
.x12{left:119.566500px;}
.x83{left:124.966500px;}
.x5f{left:126.226500px;}
.x11{left:127.656000px;}
.x32{left:131.086500px;}
.x1e{left:132.526500px;}
.x70{left:133.606500px;}
.x33{left:134.676000px;}
.xf{left:142.246500px;}
.x61{left:146.746500px;}
.x49{left:153.930000px;}
.x6a{left:155.190000px;}
.x90{left:157.350000px;}
.x60{left:159.690000px;}
.x3e{left:163.125000px;}
.x44{left:173.910000px;}
.x66{left:175.170000px;}
.x17{left:180.750000px;}
.x82{left:191.385000px;}
.x6b{left:209.925000px;}
.x28{left:216.045000px;}
.xe{left:224.130000px;}
.x1{left:227.550000px;}
.x4a{left:231.705000px;}
.x88{left:237.645000px;}
.x54{left:243.750000px;}
.x6f{left:245.010000px;}
.x71{left:257.805000px;}
.x56{left:259.245000px;}
.x7{left:260.850000px;}
.x7b{left:262.305000px;}
.x67{left:263.385000px;}
.x84{left:265.905000px;}
.x8{left:269.310000px;}
.x45{left:270.945000px;}
.x2{left:280.875000px;}
.x8b{left:293.985000px;}
.x78{left:303.375000px;}
.x6c{left:307.695000px;}
.x14{left:319.395000px;}
.x29{left:322.275000px;}
.x4b{left:327.675000px;}
.x39{left:343.875000px;}
.x89{left:353.775000px;}
.x9{left:355.575000px;}
.x7c{left:364.575000px;}
.x62{left:379.875000px;}
.x72{left:393.195000px;}
.x40{left:396.255000px;}
.x46{left:397.335000px;}
.x68{left:404.535000px;}
.x7d{left:407.055000px;}
.x57{left:412.455000px;}
.x1f{left:430.275000px;}
.x6d{left:433.875000px;}
.x4c{left:440.535000px;}
.x55{left:446.475000px;}
.x34{left:448.275000px;}
.xb{left:450.465000px;}
.x7e{left:460.155000px;}
.xc{left:463.965000px;}
.x6e{left:465.375000px;}
.x4d{left:469.695000px;}
.x10{left:471.838500px;}
.x47{left:472.935000px;}
.x69{left:480.315000px;}
.x73{left:485.715000px;}
.x58{left:497.460000px;}
.x8c{left:511.860000px;}
.x7f{left:523.920000px;}
.xa{left:530.205000px;}
.x22{left:546.420000px;}
.x35{left:547.860000px;}
.x74{left:549.660000px;}
.x59{left:555.240000px;}
.x1a{left:564.060000px;}
.x4e{left:578.820000px;}
.x42{left:583.320000px;}
.x8d{left:586.380000px;}
.x80{left:587.820000px;}
.x63{left:591.600000px;}
.x75{left:595.380000px;}
.x5a{left:600.960000px;}
.x43{left:611.580000px;}
.x65{left:622.380000px;}
.x4f{left:624.720000px;}
.x37{left:643.440000px;}
.x85{left:649.920000px;}
.x81{left:651.540000px;}
.x4{left:664.350000px;}
.x25{left:666.300000px;}
.x3{left:667.590000px;}
.x76{left:677.100000px;}
.x5c{left:682.860000px;}
.x7a{left:696.750000px;}
.x86{left:704.310000px;}
.x8e{left:716.550000px;}
.x18{left:750.570000px;}
.x1d{left:765.510000px;}
@media print{
.v1{vertical-align:-92.266667pt;}
.v2{vertical-align:-68.000000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.456533pt;}
.ls11{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls3{letter-spacing:23.040000pt;}
.ls2{letter-spacing:113.440000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.296000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.wsb{word-spacing:-13.736533pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._33{margin-left:-13.704320pt;}
._2{margin-left:-1.904640pt;}
._1{margin-left:-0.903040pt;}
._0{width:1.752960pt;}
._1c{width:2.667733pt;}
._6{width:3.648000pt;}
._10{width:4.928000pt;}
._11{width:5.856000pt;}
._16{width:7.063680pt;}
._b{width:8.128000pt;}
._4{width:9.664000pt;}
._5{width:10.560000pt;}
._1d{width:11.520000pt;}
._7{width:12.608000pt;}
._21{width:13.511040pt;}
._c{width:14.784000pt;}
._12{width:17.152000pt;}
._1e{width:18.368000pt;}
._28{width:19.264000pt;}
._1f{width:20.160000pt;}
._1b{width:21.440000pt;}
._f{width:23.040000pt;}
._22{width:24.512000pt;}
._26{width:25.984000pt;}
._27{width:27.456000pt;}
._44{width:28.672000pt;}
._24{width:29.973120pt;}
._a{width:31.168000pt;}
._19{width:32.615680pt;}
._1a{width:33.638400pt;}
._25{width:34.649600pt;}
._23{width:35.605760pt;}
._18{width:36.584320pt;}
._17{width:37.555840pt;}
._8{width:38.656000pt;}
._9{width:39.808000pt;}
._20{width:40.967040pt;}
._15{width:44.032000pt;}
._d{width:47.424000pt;}
._e{width:48.712320pt;}
._34{width:50.368000pt;}
._3{width:52.800000pt;}
._2e{width:65.920000pt;}
._13{width:72.832000pt;}
._14{width:74.112000pt;}
._37{width:81.408000pt;}
._38{width:82.464000pt;}
._3a{width:89.806080pt;}
._3d{width:102.848000pt;}
._2c{width:108.224000pt;}
._2d{width:109.463680pt;}
._42{width:112.384000pt;}
._29{width:120.423040pt;}
._2a{width:137.169707pt;}
._35{width:138.613333pt;}
._31{width:140.608000pt;}
._30{width:147.008000pt;}
._43{width:152.480000pt;}
._39{width:168.480000pt;}
._3f{width:170.240000pt;}
._40{width:171.872000pt;}
._45{width:215.424000pt;}
._36{width:222.464000pt;}
._2b{width:268.416000pt;}
._3b{width:279.680000pt;}
._3c{width:280.576000pt;}
._41{width:389.888000pt;}
._3e{width:391.815040pt;}
._32{width:677.632000pt;}
._2f{width:1696.896000pt;}
.fs9{font-size:5.120000pt;}
.fs6{font-size:29.440000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.353333pt;}
.y46{bottom:4.480000pt;}
.y78{bottom:4.640000pt;}
.y1b3{bottom:4.960000pt;}
.y134{bottom:5.426667pt;}
.ydf{bottom:5.440000pt;}
.y165{bottom:5.466667pt;}
.y1a1{bottom:5.480000pt;}
.y136{bottom:5.586667pt;}
.yf4{bottom:5.600000pt;}
.y178{bottom:6.720000pt;}
.y13e{bottom:6.880000pt;}
.ye9{bottom:8.000000pt;}
.y8{bottom:13.440000pt;}
.yf2{bottom:14.240000pt;}
.y194{bottom:14.266667pt;}
.y1a2{bottom:14.280000pt;}
.y132{bottom:14.386667pt;}
.yf9{bottom:14.400000pt;}
.y1d6{bottom:15.706667pt;}
.yea{bottom:16.800000pt;}
.yef{bottom:16.960000pt;}
.yf7{bottom:17.000000pt;}
.y4b{bottom:18.553333pt;}
.ye6{bottom:19.520000pt;}
.y1b2{bottom:20.826667pt;}
.y1ae{bottom:22.240000pt;}
.ydd{bottom:23.040000pt;}
.y1a0{bottom:23.080000pt;}
.yf1{bottom:23.200000pt;}
.y133{bottom:23.226667pt;}
.y177{bottom:24.320000pt;}
.y168{bottom:24.466667pt;}
.y122{bottom:24.480000pt;}
.y1d4{bottom:24.506667pt;}
.ye8{bottom:25.600000pt;}
.y163{bottom:25.746667pt;}
.y106{bottom:25.760000pt;}
.y185{bottom:25.786667pt;}
.y142{bottom:25.920000pt;}
.y7{bottom:29.440000pt;}
.y1ac{bottom:30.106667pt;}
.y1ab{bottom:31.840000pt;}
.y100{bottom:32.000000pt;}
.y179{bottom:33.120000pt;}
.y13f{bottom:33.280000pt;}
.y1d3{bottom:33.306667pt;}
.y4a{bottom:33.913333pt;}
.y1cb{bottom:34.560000pt;}
.yf6{bottom:34.600000pt;}
.yee{bottom:34.720000pt;}
.y1b1{bottom:36.666667pt;}
.ye5{bottom:37.120000pt;}
.y1c5{bottom:37.280000pt;}
.y1ad{bottom:38.106667pt;}
.y1aa{bottom:40.640000pt;}
.yff{bottom:40.800000pt;}
.yde{bottom:40.826667pt;}
.y13d{bottom:42.080000pt;}
.y176{bottom:42.106667pt;}
.y10d{bottom:43.360000pt;}
.y10a{bottom:43.386667pt;}
.y105{bottom:43.520000pt;}
.y5{bottom:43.680000pt;}
.y1af{bottom:45.946667pt;}
.y4d{bottom:47.552000pt;}
.y48{bottom:48.678667pt;}
.y49{bottom:49.273333pt;}
.y1b8{bottom:49.600000pt;}
.y1dc{bottom:50.880000pt;}
.y1d5{bottom:50.906667pt;}
.y1ca{bottom:52.160000pt;}
.yf5{bottom:52.200000pt;}
.yed{bottom:52.320000pt;}
.ye4{bottom:54.720000pt;}
.y1c4{bottom:54.880000pt;}
.y1de{bottom:58.240000pt;}
.y1a9{bottom:58.400000pt;}
.y1b7{bottom:59.680000pt;}
.y13c{bottom:59.706667pt;}
.y1d2{bottom:60.986667pt;}
.y4{bottom:61.152000pt;}
.y1a7{bottom:66.266667pt;}
.y1db{bottom:68.480000pt;}
.y19d{bottom:69.760000pt;}
.y197{bottom:72.480000pt;}
.y1b6{bottom:77.280000pt;}
.y1da{bottom:86.240000pt;}
.y19c{bottom:87.360000pt;}
.y196{bottom:90.080000pt;}
.y1b5{bottom:94.880000pt;}
.y1d9{bottom:103.840000pt;}
.y103{bottom:104.320000pt;}
.ye2{bottom:106.760000pt;}
.y102{bottom:121.946667pt;}
.ye1{bottom:124.360000pt;}
.y18c{bottom:127.392000pt;}
.y16b{bottom:127.872000pt;}
.ydb{bottom:128.192000pt;}
.y13a{bottom:136.506667pt;}
.y11b{bottom:138.586667pt;}
.y1c1{bottom:139.386667pt;}
.y167{bottom:142.920000pt;}
.ya2{bottom:145.786667pt;}
.y1e8{bottom:147.066667pt;}
.y223{bottom:147.226667pt;}
.y76{bottom:147.546667pt;}
.y18b{bottom:148.506667pt;}
.y193{bottom:148.986667pt;}
.yc7{bottom:149.306667pt;}
.yda{bottom:150.746667pt;}
.y139{bottom:156.506667pt;}
.y11a{bottom:159.866667pt;}
.y1c0{bottom:160.666667pt;}
.y16a{bottom:161.960000pt;}
.y1e7{bottom:163.866667pt;}
.ya1{bottom:167.066667pt;}
.y222{bottom:168.506667pt;}
.y75{bottom:168.826667pt;}
.y18a{bottom:169.786667pt;}
.y192{bottom:170.266667pt;}
.yc6{bottom:170.586667pt;}
.y138{bottom:171.400000pt;}
.yd9{bottom:173.306667pt;}
.y169{bottom:180.840000pt;}
.y119{bottom:180.986667pt;}
.y1bf{bottom:181.786667pt;}
.y1e6{bottom:184.986667pt;}
.ya0{bottom:188.186667pt;}
.y137{bottom:189.000000pt;}
.y221{bottom:189.626667pt;}
.y189{bottom:189.786667pt;}
.y74{bottom:189.946667pt;}
.y191{bottom:191.386667pt;}
.yc5{bottom:191.706667pt;}
.yd8{bottom:195.866667pt;}
.y206{bottom:196.506667pt;}
.y162{bottom:199.880000pt;}
.y188{bottom:201.960000pt;}
.y118{bottom:202.106667pt;}
.y1be{bottom:202.906667pt;}
.y1e5{bottom:206.106667pt;}
.y135{bottom:206.600000pt;}
.y9f{bottom:209.306667pt;}
.y22e{bottom:210.746667pt;}
.y73{bottom:211.066667pt;}
.yc4{bottom:212.826667pt;}
.y205{bottom:217.626667pt;}
.yd7{bottom:218.106667pt;}
.y166{bottom:220.200000pt;}
.y184{bottom:222.280000pt;}
.y117{bottom:223.226667pt;}
.y1bd{bottom:224.026667pt;}
.y131{bottom:226.920000pt;}
.y1e4{bottom:227.226667pt;}
.y9e{bottom:230.426667pt;}
.y72{bottom:232.186667pt;}
.yc3{bottom:233.946667pt;}
.y204{bottom:238.746667pt;}
.yd6{bottom:239.226667pt;}
.y164{bottom:240.520000pt;}
.y187{bottom:242.466667pt;}
.y116{bottom:244.546667pt;}
.y1bc{bottom:245.346667pt;}
.y1e3{bottom:248.546667pt;}
.y9d{bottom:251.746667pt;}
.y44{bottom:252.666667pt;}
.y71{bottom:253.506667pt;}
.yc2{bottom:255.266667pt;}
.yd5{bottom:260.546667pt;}
.y161{bottom:260.706667pt;}
.y186{bottom:262.786667pt;}
.y115{bottom:265.666667pt;}
.y1bb{bottom:266.466667pt;}
.y1e2{bottom:269.666667pt;}
.y130{bottom:271.586667pt;}
.y43{bottom:272.666667pt;}
.y9c{bottom:272.866667pt;}
.y203{bottom:273.346667pt;}
.y70{bottom:274.626667pt;}
.yc1{bottom:276.386667pt;}
.yd4{bottom:281.666667pt;}
.y181{bottom:281.826667pt;}
.y114{bottom:286.786667pt;}
.y1ba{bottom:287.266667pt;}
.y234{bottom:287.586667pt;}
.y1e1{bottom:290.786667pt;}
.y12f{bottom:291.586667pt;}
.y42{bottom:293.826667pt;}
.y9b{bottom:293.986667pt;}
.y202{bottom:294.466667pt;}
.y6f{bottom:295.746667pt;}
.yc0{bottom:297.506667pt;}
.y183{bottom:300.706667pt;}
.y220{bottom:300.866667pt;}
.yd3{bottom:302.306667pt;}
.y160{bottom:305.666667pt;}
.y12e{bottom:306.306667pt;}
.y1b9{bottom:307.586667pt;}
.y113{bottom:307.906667pt;}
.y1e0{bottom:311.906667pt;}
.y41{bottom:314.946667pt;}
.y9a{bottom:315.106667pt;}
.y201{bottom:315.586667pt;}
.y6e{bottom:316.866667pt;}
.ybf{bottom:318.626667pt;}
.y182{bottom:319.746667pt;}
.yd2{bottom:321.826667pt;}
.y21f{bottom:322.146667pt;}
.y1b4{bottom:322.466667pt;}
.y12d{bottom:326.626667pt;}
.y15f{bottom:326.786667pt;}
.y112{bottom:329.186667pt;}
.y1df{bottom:331.906667pt;}
.y40{bottom:336.066667pt;}
.y99{bottom:336.386667pt;}
.y6d{bottom:338.146667pt;}
.y17e{bottom:338.626667pt;}
.ybe{bottom:339.906667pt;}
.yd1{bottom:343.106667pt;}
.y233{bottom:343.266667pt;}
.y1d8{bottom:346.786667pt;}
.y15e{bottom:347.906667pt;}
.y111{bottom:349.186667pt;}
.y200{bottom:350.146667pt;}
.y21e{bottom:356.546667pt;}
.y3f{bottom:357.186667pt;}
.y98{bottom:357.506667pt;}
.y180{bottom:357.666667pt;}
.y6c{bottom:359.266667pt;}
.ybd{bottom:361.026667pt;}
.y110{bottom:361.346667pt;}
.yd0{bottom:363.746667pt;}
.y15d{bottom:369.186667pt;}
.y12c{bottom:371.266667pt;}
.y17f{bottom:376.546667pt;}
.y21d{bottom:377.826667pt;}
.y3e{bottom:378.466667pt;}
.y97{bottom:378.626667pt;}
.y6b{bottom:380.386667pt;}
.y101{bottom:381.666667pt;}
.ybc{bottom:382.146667pt;}
.ycf{bottom:383.586667pt;}
.y15c{bottom:390.306667pt;}
.y12b{bottom:392.386667pt;}
.y1ff{bottom:392.546667pt;}
.y17b{bottom:395.586667pt;}
.y21c{bottom:398.946667pt;}
.y3d{bottom:399.586667pt;}
.y96{bottom:399.746667pt;}
.y6a{bottom:401.506667pt;}
.y10f{bottom:401.986667pt;}
.ybb{bottom:403.266667pt;}
.yce{bottom:404.546667pt;}
.y15b{bottom:411.426667pt;}
.y12a{bottom:413.506667pt;}
.y17d{bottom:415.906667pt;}
.y1dd{bottom:420.066667pt;}
.y3c{bottom:420.706667pt;}
.y95{bottom:420.866667pt;}
.y10e{bottom:422.146667pt;}
.y69{bottom:422.786667pt;}
.yba{bottom:424.546667pt;}
.y1fe{bottom:426.946667pt;}
.y15a{bottom:432.546667pt;}
.y21b{bottom:433.346667pt;}
.y129{bottom:434.626667pt;}
.y17c{bottom:436.226667pt;}
.y3b{bottom:441.826667pt;}
.y94{bottom:442.146667pt;}
.y68{bottom:443.906667pt;}
.yb9{bottom:445.666667pt;}
.y1fd{bottom:448.066667pt;}
.y159{bottom:453.826667pt;}
.y21a{bottom:454.626667pt;}
.y128{bottom:455.906667pt;}
.y175{bottom:456.546667pt;}
.y109{bottom:460.226667pt;}
.y3a{bottom:463.106667pt;}
.y93{bottom:463.266667pt;}
.y67{bottom:465.026667pt;}
.yb8{bottom:466.786667pt;}
.y1a6{bottom:468.866667pt;}
.y1fc{bottom:469.346667pt;}
.y158{bottom:474.946667pt;}
.y22d{bottom:475.746667pt;}
.y127{bottom:477.026667pt;}
.y10c{bottom:480.386667pt;}
.y39{bottom:484.226667pt;}
.y92{bottom:484.386667pt;}
.y66{bottom:486.146667pt;}
.y1b0{bottom:487.426667pt;}
.yb7{bottom:487.906667pt;}
.y219{bottom:489.026667pt;}
.y1fb{bottom:490.466667pt;}
.y1d1{bottom:493.186667pt;}
.y17a{bottom:494.493333pt;}
.y157{bottom:496.093333pt;}
.y232{bottom:496.893333pt;}
.y126{bottom:498.173333pt;}
.y10b{bottom:500.733333pt;}
.y38{bottom:505.346667pt;}
.y91{bottom:505.533333pt;}
.y65{bottom:507.293333pt;}
.yb6{bottom:509.053333pt;}
.y218{bottom:510.173333pt;}
.y1d7{bottom:513.533333pt;}
.y156{bottom:517.213333pt;}
.y125{bottom:518.173333pt;}
.y1fa{bottom:524.893333pt;}
.y37{bottom:526.466667pt;}
.y90{bottom:526.813333pt;}
.y64{bottom:528.573333pt;}
.yb5{bottom:530.333333pt;}
.y22c{bottom:531.453333pt;}
.y121{bottom:533.373333pt;}
.y1a8{bottom:537.693333pt;}
.y155{bottom:538.333333pt;}
.y104{bottom:538.653333pt;}
.y174{bottom:538.973333pt;}
.y217{bottom:544.733333pt;}
.y1f9{bottom:546.173333pt;}
.y36{bottom:547.773333pt;}
.y8f{bottom:547.933333pt;}
.y63{bottom:549.693333pt;}
.yb4{bottom:551.453333pt;}
.y124{bottom:552.413333pt;}
.y22b{bottom:552.573333pt;}
.y108{bottom:558.973333pt;}
.y154{bottom:559.613333pt;}
.y216{bottom:565.853333pt;}
.y35{bottom:568.893333pt;}
.y8e{bottom:569.053333pt;}
.y62{bottom:570.813333pt;}
.y123{bottom:571.293333pt;}
.yb3{bottom:572.573333pt;}
.y22a{bottom:573.693333pt;}
.y173{bottom:573.853333pt;}
.y107{bottom:579.293333pt;}
.y1f8{bottom:580.573333pt;}
.y153{bottom:580.733333pt;}
.y34{bottom:590.013333pt;}
.y8d{bottom:590.173333pt;}
.y11e{bottom:590.333333pt;}
.y172{bottom:591.453333pt;}
.y61{bottom:591.933333pt;}
.yb2{bottom:593.693333pt;}
.y215{bottom:600.413333pt;}
.y1f7{bottom:601.693333pt;}
.y152{bottom:601.853333pt;}
.y229{bottom:608.253333pt;}
.y171{bottom:609.053333pt;}
.y120{bottom:610.493333pt;}
.y33{bottom:611.133333pt;}
.y8c{bottom:611.453333pt;}
.y60{bottom:613.213333pt;}
.y190{bottom:614.493333pt;}
.yb1{bottom:614.973333pt;}
.yfe{bottom:617.213333pt;}
.y214{bottom:621.533333pt;}
.y151{bottom:622.973333pt;}
.y28{bottom:623.133333pt;}
.y170{bottom:629.373333pt;}
.y11f{bottom:630.813333pt;}
.y1d0{bottom:630.973333pt;}
.y32{bottom:632.413333pt;}
.y8b{bottom:632.573333pt;}
.y18f{bottom:634.013333pt;}
.y5f{bottom:634.333333pt;}
.yb0{bottom:636.093333pt;}
.y1a5{bottom:637.533333pt;}
.y27{bottom:640.093333pt;}
.y213{bottom:642.653333pt;}
.y150{bottom:644.253333pt;}
.y231{bottom:650.493333pt;}
.y11d{bottom:651.133333pt;}
.y1cf{bottom:651.293333pt;}
.y19b{bottom:652.733333pt;}
.y31{bottom:653.533333pt;}
.y8a{bottom:653.693333pt;}
.y18e{bottom:655.133333pt;}
.y5e{bottom:655.453333pt;}
.y16f{bottom:656.253333pt;}
.y26{bottom:656.893333pt;}
.yaf{bottom:657.213333pt;}
.y1f6{bottom:657.373333pt;}
.y228{bottom:663.773333pt;}
.y14f{bottom:665.373333pt;}
.y1c9{bottom:666.493333pt;}
.y1a4{bottom:671.613333pt;}
.y25{bottom:673.853333pt;}
.y30{bottom:674.653333pt;}
.y89{bottom:674.813333pt;}
.y18d{bottom:676.093333pt;}
.y16e{bottom:676.253333pt;}
.y5d{bottom:676.573333pt;}
.y212{bottom:677.213333pt;}
.yae{bottom:678.333333pt;}
.y1f5{bottom:678.493333pt;}
.yfd{bottom:679.453333pt;}
.y227{bottom:685.053333pt;}
.y14e{bottom:685.373333pt;}
.y24{bottom:690.333333pt;}
.y16d{bottom:691.133333pt;}
.y2f{bottom:695.773333pt;}
.y88{bottom:696.093333pt;}
.y14d{bottom:697.533333pt;}
.y5c{bottom:697.853333pt;}
.y211{bottom:698.333333pt;}
.yfc{bottom:699.453333pt;}
.yad{bottom:699.613333pt;}
.y1ce{bottom:704.413333pt;}
.y226{bottom:706.173333pt;}
.y1a3{bottom:708.253333pt;}
.y16c{bottom:711.453333pt;}
.yfb{bottom:711.613333pt;}
.y1f4{bottom:713.053333pt;}
.y2e{bottom:717.053333pt;}
.y87{bottom:717.213333pt;}
.y14b{bottom:717.853333pt;}
.y5b{bottom:718.973333pt;}
.y210{bottom:719.453333pt;}
.yac{bottom:720.733333pt;}
.y23{bottom:722.813333pt;}
.y1cd{bottom:723.293333pt;}
.y230{bottom:727.293333pt;}
.ye0{bottom:731.933333pt;}
.y1f3{bottom:734.173333pt;}
.y2d{bottom:738.173333pt;}
.y86{bottom:738.333333pt;}
.y22{bottom:739.773333pt;}
.y5a{bottom:740.093333pt;}
.y20f{bottom:740.733333pt;}
.yab{bottom:741.853333pt;}
.y1cc{bottom:742.333333pt;}
.y19f{bottom:744.893333pt;}
.yfa{bottom:752.293333pt;}
.y1f2{bottom:755.493333pt;}
.y14c{bottom:758.533333pt;}
.y2c{bottom:759.293333pt;}
.y85{bottom:759.493333pt;}
.y59{bottom:761.253333pt;}
.y20e{bottom:761.893333pt;}
.yaa{bottom:763.013333pt;}
.yf8{bottom:772.453333pt;}
.y21{bottom:773.573333pt;}
.y148{bottom:777.413333pt;}
.y2b{bottom:780.453333pt;}
.y84{bottom:780.773333pt;}
.y19e{bottom:781.413333pt;}
.y1c8{bottom:781.573333pt;}
.y58{bottom:782.533333pt;}
.y225{bottom:783.013333pt;}
.ya9{bottom:784.293333pt;}
.y1f1{bottom:789.893333pt;}
.y20{bottom:790.373333pt;}
.y20d{bottom:796.293333pt;}
.y14a{bottom:796.453333pt;}
.y2a{bottom:801.733333pt;}
.y83{bottom:801.893333pt;}
.y57{bottom:803.653333pt;}
.y224{bottom:804.133333pt;}
.ya8{bottom:805.413333pt;}
.y1f{bottom:807.173333pt;}
.yec{bottom:810.373333pt;}
.y1f0{bottom:811.013333pt;}
.y149{bottom:815.333333pt;}
.y20c{bottom:817.573333pt;}
.y195{bottom:818.053333pt;}
.y1c7{bottom:822.213333pt;}
.y29{bottom:822.533333pt;}
.y82{bottom:823.013333pt;}
.y1e{bottom:824.133333pt;}
.y56{bottom:824.773333pt;}
.ya7{bottom:826.533333pt;}
.yf3{bottom:830.693333pt;}
.y1ef{bottom:832.293333pt;}
.y145{bottom:834.373333pt;}
.y19a{bottom:838.373333pt;}
.y20b{bottom:838.693333pt;}
.y15{bottom:840.613333pt;}
.y1c6{bottom:842.533333pt;}
.y81{bottom:844.133333pt;}
.y55{bottom:845.893333pt;}
.ya6{bottom:847.653333pt;}
.yf0{bottom:851.013333pt;}
.y147{bottom:853.253333pt;}
.y1ee{bottom:853.413333pt;}
.y14{bottom:857.573333pt;}
.y22f{bottom:859.813333pt;}
.y1c3{bottom:862.853333pt;}
.y1d{bottom:863.173333pt;}
.y80{bottom:865.253333pt;}
.y54{bottom:867.173333pt;}
.ya5{bottom:868.133333pt;}
.ycd{bottom:868.933333pt;}
.y146{bottom:872.293333pt;}
.y20a{bottom:873.093333pt;}
.y13{bottom:874.373333pt;}
.y199{bottom:876.293333pt;}
.y1c{bottom:876.933333pt;}
.y6{bottom:882.533333pt;}
.y7f{bottom:886.533333pt;}
.y1b{bottom:887.653333pt;}
.y1ed{bottom:887.813333pt;}
.ya4{bottom:887.973333pt;}
.y53{bottom:888.293333pt;}
.ye3{bottom:888.933333pt;}
.ycc{bottom:890.053333pt;}
.y141{bottom:891.173333pt;}
.y12{bottom:893.733333pt;}
.y209{bottom:894.373333pt;}
.y1a{bottom:905.413333pt;}
.y1c2{bottom:907.333333pt;}
.y7e{bottom:907.653333pt;}
.ya3{bottom:908.933333pt;}
.y1ec{bottom:909.093333pt;}
.yeb{bottom:909.253333pt;}
.y52{bottom:909.413333pt;}
.ycb{bottom:911.173333pt;}
.y144{bottom:911.493333pt;}
.y11{bottom:913.093333pt;}
.y198{bottom:914.213333pt;}
.y208{bottom:915.493333pt;}
.y19{bottom:923.813333pt;}
.y7d{bottom:928.773333pt;}
.ye7{bottom:929.573333pt;}
.y10{bottom:930.533333pt;}
.yca{bottom:931.493333pt;}
.y143{bottom:931.813333pt;}
.y207{bottom:936.613333pt;}
.y18{bottom:940.773333pt;}
.y1eb{bottom:943.493333pt;}
.yf{bottom:949.093333pt;}
.y7c{bottom:949.893333pt;}
.yc9{bottom:951.333333pt;}
.y51{bottom:951.653333pt;}
.y13b{bottom:952.133333pt;}
.y235{bottom:957.733333pt;}
.ye{bottom:962.533333pt;}
.y1ea{bottom:964.613333pt;}
.y17{bottom:965.253333pt;}
.y7b{bottom:971.173333pt;}
.yc8{bottom:972.133333pt;}
.ydc{bottom:972.453333pt;}
.y50{bottom:972.933333pt;}
.yd{bottom:975.813333pt;}
.y1e9{bottom:985.893333pt;}
.yc{bottom:989.093333pt;}
.y140{bottom:990.053333pt;}
.y11c{bottom:991.973333pt;}
.y7a{bottom:992.293333pt;}
.y4f{bottom:993.253333pt;}
.yb{bottom:1002.533333pt;}
.y16{bottom:1012.960000pt;}
.y4e{bottom:1013.120000pt;}
.y79{bottom:1013.440000pt;}
.ya{bottom:1015.840000pt;}
.y9{bottom:1029.120000pt;}
.y77{bottom:1041.440000pt;}
.y45{bottom:1042.240000pt;}
.y47{bottom:1044.480000pt;}
.y3{bottom:1051.680000pt;}
.y2{bottom:1067.040000pt;}
.y1{bottom:1082.240000pt;}
.h11{height:5.025000pt;}
.h3e{height:15.826667pt;}
.hf{height:17.280000pt;}
.h12{height:17.440000pt;}
.h19{height:17.586667pt;}
.h1f{height:17.600000pt;}
.h35{height:17.618667pt;}
.h1e{height:17.620000pt;}
.h45{height:17.626667pt;}
.h1c{height:17.746667pt;}
.h24{height:17.760000pt;}
.h27{height:17.786667pt;}
.hb{height:28.893750pt;}
.h2e{height:35.186667pt;}
.h23{height:35.200000pt;}
.h39{height:35.220000pt;}
.h1b{height:35.346667pt;}
.h26{height:35.360000pt;}
.h2b{height:35.378667pt;}
.h2d{height:35.386667pt;}
.h17{height:40.146667pt;}
.h4{height:42.226667pt;}
.ha{height:47.109375pt;}
.h3d{height:47.546667pt;}
.h3{height:52.108438pt;}
.h2{height:52.134375pt;}
.h44{height:52.800000pt;}
.h20{height:52.960000pt;}
.h14{height:52.986667pt;}
.h8{height:53.535000pt;}
.h30{height:55.506667pt;}
.h2a{height:55.520000pt;}
.h31{height:55.666667pt;}
.h13{height:57.375000pt;}
.h48{height:57.687500pt;}
.hc{height:57.787500pt;}
.h2f{height:58.226667pt;}
.h18{height:58.238750pt;}
.h29{height:58.240000pt;}
.h34{height:58.258667pt;}
.h32{height:58.260000pt;}
.h33{height:58.398750pt;}
.h5{height:59.340000pt;}
.h10{height:61.273333pt;}
.h47{height:62.781250pt;}
.hd{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3c{height:66.106667pt;}
.h46{height:70.386667pt;}
.h40{height:70.546667pt;}
.h3b{height:70.560000pt;}
.h36{height:73.146667pt;}
.h2c{height:73.306667pt;}
.h6{height:73.490625pt;}
.h28{height:75.826667pt;}
.h22{height:75.840000pt;}
.h1d{height:75.860000pt;}
.h25{height:75.866667pt;}
.h1a{height:75.986667pt;}
.h16{height:80.786667pt;}
.h7{height:85.785000pt;}
.h42{height:93.460000pt;}
.h41{height:98.866667pt;}
.h43{height:128.826667pt;}
.h3a{height:139.386667pt;}
.h3f{height:143.666667pt;}
.h38{height:164.013333pt;}
.h37{height:169.266667pt;}
.h21{height:232.826667pt;}
.h15{height:237.786667pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5c{width:23.666667pt;}
.w1b{width:23.826667pt;}
.w24{width:24.480000pt;}
.w32{width:26.066667pt;}
.w3a{width:26.720000pt;}
.w27{width:32.626667pt;}
.w4f{width:35.698667pt;}
.w47{width:35.826667pt;}
.w3d{width:36.146667pt;}
.w51{width:36.480000pt;}
.w56{width:38.066667pt;}
.w42{width:39.186667pt;}
.w26{width:39.346667pt;}
.w6a{width:41.430667pt;}
.w3c{width:43.346667pt;}
.w63{width:45.760000pt;}
.w48{width:45.906667pt;}
.w52{width:45.920000pt;}
.w5d{width:46.898667pt;}
.w1c{width:47.026667pt;}
.w61{width:48.786667pt;}
.w2b{width:50.066667pt;}
.w62{width:51.858667pt;}
.w33{width:52.146667pt;}
.w50{width:52.320000pt;}
.w58{width:53.750667pt;}
.w64{width:54.112000pt;}
.w4b{width:54.546667pt;}
.w49{width:54.706667pt;}
.w54{width:55.346667pt;}
.w41{width:55.392000pt;}
.w53{width:55.506667pt;}
.w69{width:55.826667pt;}
.w68{width:56.498667pt;}
.w66{width:56.626667pt;}
.w5e{width:56.786667pt;}
.w34{width:56.818667pt;}
.w1d{width:56.978667pt;}
.w57{width:59.058667pt;}
.w59{width:60.306667pt;}
.w65{width:64.786667pt;}
.w21{width:65.266667pt;}
.w1f{width:65.920000pt;}
.w37{width:65.952000pt;}
.w6b{width:66.066667pt;}
.w36{width:66.080000pt;}
.w20{width:66.112000pt;}
.w2d{width:71.346667pt;}
.w2e{width:73.298667pt;}
.we{width:74.230667pt;}
.w2a{width:74.240000pt;}
.w40{width:80.960000pt;}
.w22{width:82.578667pt;}
.w14{width:83.666667pt;}
.wd{width:83.698667pt;}
.w38{width:84.178667pt;}
.w13{width:87.072000pt;}
.w4d{width:89.458667pt;}
.w17{width:90.080000pt;}
.w10{width:93.280000pt;}
.wf{width:94.418667pt;}
.w25{width:95.712000pt;}
.w55{width:98.418667pt;}
.w23{width:99.040000pt;}
.w15{width:101.938667pt;}
.wb{width:101.952000pt;}
.wc{width:105.266667pt;}
.w5f{width:107.510667pt;}
.w3e{width:110.390667pt;}
.w39{width:110.720000pt;}
.w1e{width:110.898667pt;}
.w3b{width:111.392000pt;}
.w16{width:113.298667pt;}
.w67{width:113.618667pt;}
.w4c{width:114.070667pt;}
.w28{width:116.790667pt;}
.w3f{width:117.618667pt;}
.w35{width:124.178667pt;}
.w5a{width:125.270667pt;}
.w29{width:133.453333pt;}
.w2{width:144.985333pt;}
.w43{width:145.933333pt;}
.w2c{width:146.093333pt;}
.w4a{width:149.617333pt;}
.w45{width:149.777333pt;}
.w1a{width:163.546667pt;}
.w6{width:176.977333pt;}
.w9{width:179.213333pt;}
.w31{width:185.466667pt;}
.w19{width:207.213333pt;}
.w30{width:207.217333pt;}
.wa{width:261.937333pt;}
.w46{width:262.586667pt;}
.w12{width:277.617333pt;}
.w5b{width:313.493333pt;}
.w4e{width:353.506667pt;}
.w60{width:378.306667pt;}
.w8{width:394.297333pt;}
.w7{width:398.626667pt;}
.w5{width:553.840000pt;}
.w44{width:559.280000pt;}
.w18{width:559.440000pt;}
.w11{width:560.880000pt;}
.w2f{width:569.360000pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x36{left:1.266667pt;}
.x21{left:2.400000pt;}
.x24{left:3.986667pt;}
.x8f{left:4.960000pt;}
.x3c{left:5.906667pt;}
.x13{left:7.190667pt;}
.x64{left:8.146667pt;}
.x26{left:9.266667pt;}
.x38{left:10.386667pt;}
.x15{left:11.680000pt;}
.x50{left:12.786667pt;}
.x1b{left:14.066667pt;}
.x20{left:15.840000pt;}
.x23{left:17.426667pt;}
.x5e{left:18.720000pt;}
.x52{left:19.666667pt;}
.x48{left:20.946667pt;}
.x6{left:22.720000pt;}
.x27{left:23.666667pt;}
.x2a{left:25.746667pt;}
.x31{left:26.746667pt;}
.x3a{left:28.480000pt;}
.x2d{left:30.106667pt;}
.x51{left:31.200000pt;}
.xd{left:32.160000pt;}
.x5{left:33.441333pt;}
.x19{left:35.665333pt;}
.x16{left:37.440000pt;}
.x30{left:39.200000pt;}
.x2c{left:40.786667pt;}
.x3b{left:41.920000pt;}
.x2e{left:44.320000pt;}
.x2f{left:45.906667pt;}
.x53{left:47.866667pt;}
.x3d{left:49.306667pt;}
.x2b{left:50.880000pt;}
.x77{left:51.825333pt;}
.x5d{left:55.025333pt;}
.x5b{left:60.786667pt;}
.x41{left:66.560000pt;}
.x79{left:80.480000pt;}
.x3f{left:83.186667pt;}
.x1c{left:85.266667pt;}
.x8a{left:92.000000pt;}
.x87{left:101.001333pt;}
.x12{left:106.281333pt;}
.x83{left:111.081333pt;}
.x5f{left:112.201333pt;}
.x11{left:113.472000pt;}
.x32{left:116.521333pt;}
.x1e{left:117.801333pt;}
.x70{left:118.761333pt;}
.x33{left:119.712000pt;}
.xf{left:126.441333pt;}
.x61{left:130.441333pt;}
.x49{left:136.826667pt;}
.x6a{left:137.946667pt;}
.x90{left:139.866667pt;}
.x60{left:141.946667pt;}
.x3e{left:145.000000pt;}
.x44{left:154.586667pt;}
.x66{left:155.706667pt;}
.x17{left:160.666667pt;}
.x82{left:170.120000pt;}
.x6b{left:186.600000pt;}
.x28{left:192.040000pt;}
.xe{left:199.226667pt;}
.x1{left:202.266667pt;}
.x4a{left:205.960000pt;}
.x88{left:211.240000pt;}
.x54{left:216.666667pt;}
.x6f{left:217.786667pt;}
.x71{left:229.160000pt;}
.x56{left:230.440000pt;}
.x7{left:231.866667pt;}
.x7b{left:233.160000pt;}
.x67{left:234.120000pt;}
.x84{left:236.360000pt;}
.x8{left:239.386667pt;}
.x45{left:240.840000pt;}
.x2{left:249.666667pt;}
.x8b{left:261.320000pt;}
.x78{left:269.666667pt;}
.x6c{left:273.506667pt;}
.x14{left:283.906667pt;}
.x29{left:286.466667pt;}
.x4b{left:291.266667pt;}
.x39{left:305.666667pt;}
.x89{left:314.466667pt;}
.x9{left:316.066667pt;}
.x7c{left:324.066667pt;}
.x62{left:337.666667pt;}
.x72{left:349.506667pt;}
.x40{left:352.226667pt;}
.x46{left:353.186667pt;}
.x68{left:359.586667pt;}
.x7d{left:361.826667pt;}
.x57{left:366.626667pt;}
.x1f{left:382.466667pt;}
.x6d{left:385.666667pt;}
.x4c{left:391.586667pt;}
.x55{left:396.866667pt;}
.x34{left:398.466667pt;}
.xb{left:400.413333pt;}
.x7e{left:409.026667pt;}
.xc{left:412.413333pt;}
.x6e{left:413.666667pt;}
.x4d{left:417.506667pt;}
.x10{left:419.412000pt;}
.x47{left:420.386667pt;}
.x69{left:426.946667pt;}
.x73{left:431.746667pt;}
.x58{left:442.186667pt;}
.x8c{left:454.986667pt;}
.x7f{left:465.706667pt;}
.xa{left:471.293333pt;}
.x22{left:485.706667pt;}
.x35{left:486.986667pt;}
.x74{left:488.586667pt;}
.x59{left:493.546667pt;}
.x1a{left:501.386667pt;}
.x4e{left:514.506667pt;}
.x42{left:518.506667pt;}
.x8d{left:521.226667pt;}
.x80{left:522.506667pt;}
.x63{left:525.866667pt;}
.x75{left:529.226667pt;}
.x5a{left:534.186667pt;}
.x43{left:543.626667pt;}
.x65{left:553.226667pt;}
.x4f{left:555.306667pt;}
.x37{left:571.946667pt;}
.x85{left:577.706667pt;}
.x81{left:579.146667pt;}
.x4{left:590.533333pt;}
.x25{left:592.266667pt;}
.x3{left:593.413333pt;}
.x76{left:601.866667pt;}
.x5c{left:606.986667pt;}
.x7a{left:619.333333pt;}
.x86{left:626.053333pt;}
.x8e{left:636.933333pt;}
.x18{left:667.173333pt;}
.x1d{left:680.453333pt;}
}




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