
    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_3e45c651589a6f2055d67bb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_1aac0b67655902c58ec856a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d93a37f2da57ca01dfbbfe71.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_629471933ca0897d9864cc9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_0db36ceb3e1da28e2ebeeb0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.103027;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_d4527232f282ee6d80739c92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_3a7791edf2e2ca4507e1f4b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a705b7791ac7302a26af2b90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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:ffa;src:url('chunks/assets/font_912b6d6928d6f68459555eca.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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:ffb;src:url('chunks/assets/font_6ea5cf2a3af90cae93bc75da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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:ffc;src:url('chunks/assets/font_c0596b90d1270bc290e1736b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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:ffd;src:url('chunks/assets/font_cf5ea32f298ac57f49e6e6df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-4.752000px;}
.ls15{letter-spacing:-4.104000px;}
.ls18{letter-spacing:-2.664000px;}
.ls21{letter-spacing:-1.458000px;}
.lsd{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.025920px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.037440px;}
.ls25{letter-spacing:0.042480px;}
.ls11{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.144720px;}
.ls12{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.408000px;}
.lsc{letter-spacing:1.008000px;}
.lsf{letter-spacing:5.904000px;}
.lsa{letter-spacing:8.064000px;}
.lse{letter-spacing:33.264000px;}
.ls23{letter-spacing:39.845280px;}
.ls24{letter-spacing:39.869280px;}
.ls1f{letter-spacing:64.325280px;}
.ls20{letter-spacing:64.349280px;}
.ls1d{letter-spacing:109.524000px;}
.ls1b{letter-spacing:124.644000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws14{word-spacing:-48.384720px;}
.ws15{word-spacing:-48.240000px;}
.ws13{word-spacing:-25.163280px;}
.wsc{word-spacing:-23.077320px;}
.ws0{word-spacing:-21.591360px;}
.ws8{word-spacing:-21.024000px;}
.ws2{word-spacing:-20.304000px;}
.ws12{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.800000px;}
.ws6{word-spacing:-19.584000px;}
.wsd{word-spacing:-19.512000px;}
.ws3{word-spacing:-19.296000px;}
.ws10{word-spacing:-15.264000px;}
.wsb{word-spacing:-15.228000px;}
.wsf{word-spacing:-15.012000px;}
.ws18{word-spacing:-13.410720px;}
.ws11{word-spacing:-12.348000px;}
.ws17{word-spacing:-11.162040px;}
.ws16{word-spacing:-10.924560px;}
.wse{word-spacing:-10.908000px;}
.ws19{word-spacing:-10.293840px;}
.ws4{word-spacing:0.000000px;}
._33{margin-left:-14.573760px;}
._6{margin-left:-8.631360px;}
._7{margin-left:-6.472800px;}
._16{margin-left:-5.147280px;}
._3{margin-left:-4.011120px;}
._4{margin-left:-2.177280px;}
._2{margin-left:-1.068000px;}
._0{width:1.134000px;}
._5{width:2.365200px;}
._1{width:4.038000px;}
._22{width:5.135280px;}
._c{width:6.264000px;}
._19{width:7.276560px;}
._a{width:8.400000px;}
._b{width:10.284000px;}
._18{width:11.556000px;}
._23{width:12.816000px;}
._27{width:13.992720px;}
._14{width:15.239280px;}
._13{width:16.488000px;}
._9{width:18.305280px;}
._40{width:20.094000px;}
._24{width:21.432000px;}
._d{width:22.440000px;}
._e{width:23.795280px;}
._2f{width:24.807360px;}
._15{width:25.892880px;}
._1a{width:27.864000px;}
._1b{width:28.959120px;}
._12{width:30.028560px;}
._11{width:31.176000px;}
._17{width:32.304000px;}
._28{width:33.624000px;}
._1f{width:34.848000px;}
._20{width:36.432000px;}
._21{width:37.768800px;}
._29{width:39.456000px;}
._38{width:40.968000px;}
._2c{width:42.227280px;}
._f{width:43.776000px;}
._10{width:45.072000px;}
._30{width:47.376000px;}
._2d{width:48.744000px;}
._1d{width:50.219280px;}
._1c{width:51.264000px;}
._1e{width:52.279440px;}
._2b{width:57.108000px;}
._2a{width:58.236000px;}
._26{width:60.948000px;}
._25{width:62.100000px;}
._2e{width:67.680000px;}
._39{width:69.312000px;}
._32{width:82.452000px;}
._31{width:84.012000px;}
._3a{width:86.688000px;}
._3f{width:87.717600px;}
._34{width:127.343760px;}
._35{width:128.518320px;}
._8{width:134.127120px;}
._36{width:145.136520px;}
._37{width:148.545120px;}
._3d{width:462.516000px;}
._3b{width:471.528000px;}
._3c{width:527.688000px;}
._3e{width:2058.912000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1fc{bottom:2.685000px;}
.y1fa{bottom:2.700000px;}
.y2ce{bottom:3.045000px;}
.y2c6{bottom:3.060000px;}
.y21b{bottom:3.225000px;}
.y206{bottom:3.240000px;}
.y20a{bottom:3.270000px;}
.y21d{bottom:3.405000px;}
.y208{bottom:3.420000px;}
.y20c{bottom:3.600000px;}
.y20e{bottom:3.780000px;}
.y13d{bottom:3.960000px;}
.y2b3{bottom:4.665000px;}
.y250{bottom:4.680000px;}
.y2da{bottom:4.725000px;}
.y2ac{bottom:4.845000px;}
.y2a8{bottom:4.860000px;}
.yd9{bottom:5.415000px;}
.ye2{bottom:5.580000px;}
.y128{bottom:5.745000px;}
.ye4{bottom:5.760000px;}
.y12c{bottom:5.925000px;}
.ye7{bottom:5.940000px;}
.y129{bottom:6.105000px;}
.ydf{bottom:6.120000px;}
.y12d{bottom:6.285000px;}
.ye8{bottom:6.300000px;}
.y13e{bottom:6.840000px;}
.y139{bottom:7.005000px;}
.y271{bottom:7.905000px;}
.y140{bottom:7.920000px;}
.y244{bottom:8.265000px;}
.y141{bottom:8.280000px;}
.y2c9{bottom:9.000000px;}
.y21f{bottom:9.885000px;}
.y239{bottom:9.900000px;}
.y2c2{bottom:10.080000px;}
.y264{bottom:10.260000px;}
.y214{bottom:10.440000px;}
.y29b{bottom:11.325000px;}
.ydd{bottom:12.960000px;}
.y276{bottom:13.125000px;}
.y245{bottom:13.305000px;}
.y13b{bottom:15.825000px;}
.y2b7{bottom:15.840000px;}
.y220{bottom:16.545000px;}
.y23a{bottom:16.560000px;}
.y2cd{bottom:16.725000px;}
.y2c5{bottom:16.740000px;}
.y2cf{bottom:16.905000px;}
.y2c3{bottom:16.920000px;}
.y125{bottom:17.280000px;}
.ye1{bottom:17.460000px;}
.y215{bottom:17.640000px;}
.y29c{bottom:19.425000px;}
.y2aa{bottom:22.485000px;}
.y2c8{bottom:22.680000px;}
.y2cb{bottom:24.105000px;}
.yd8{bottom:26.115000px;}
.y2c0{bottom:27.180000px;}
.y137{bottom:27.720000px;}
.y122{bottom:28.260000px;}
.ydc{bottom:28.440000px;}
.y2af{bottom:31.305000px;}
.y2b5{bottom:35.640000px;}
.y2bf{bottom:40.860000px;}
.ydb{bottom:44.100000px;}
.yd7{bottom:46.815000px;}
.y2f0{bottom:49.140000px;}
.y2e2{bottom:51.150000px;}
.y2d7{bottom:51.300000px;}
.y2ec{bottom:55.260000px;}
.y4{bottom:57.060000px;}
.y2df{bottom:57.990000px;}
.y2d4{bottom:58.140000px;}
.y2a6{bottom:60.105000px;}
.y2bd{bottom:61.590000px;}
.y2d6{bottom:64.980000px;}
.y2e1{bottom:65.010000px;}
.y2a5{bottom:66.945000px;}
.y2eb{bottom:68.940000px;}
.y2bc{bottom:75.270000px;}
.y2ea{bottom:82.800000px;}
.y2bb{bottom:88.950000px;}
.y3{bottom:94.860000px;}
.y2e9{bottom:96.480000px;}
.y2ba{bottom:102.810000px;}
.y2d2{bottom:106.590000px;}
.y2d1{bottom:120.270000px;}
.y2a0{bottom:131.436000px;}
.y2d0{bottom:133.950000px;}
.y29f{bottom:169.230000px;}
.y107{bottom:193.710000px;}
.y132{bottom:194.250000px;}
.y9c{bottom:194.970000px;}
.y277{bottom:196.770000px;}
.y226{bottom:197.325000px;}
.y1d7{bottom:197.670000px;}
.y73{bottom:198.570000px;}
.yd5{bottom:201.810000px;}
.y51{bottom:202.530000px;}
.y176{bottom:205.770000px;}
.y1f{bottom:210.990000px;}
.y225{bottom:212.805000px;}
.y106{bottom:214.410000px;}
.y2b9{bottom:214.425000px;}
.y9b{bottom:215.670000px;}
.y1d6{bottom:218.370000px;}
.y72{bottom:219.270000px;}
.y50{bottom:223.230000px;}
.y243{bottom:223.425000px;}
.y175{bottom:226.470000px;}
.y275{bottom:226.845000px;}
.y224{bottom:228.105000px;}
.y131{bottom:229.545000px;}
.yba{bottom:230.610000px;}
.y1e{bottom:231.690000px;}
.y105{bottom:235.110000px;}
.y2f6{bottom:235.650000px;}
.y9a{bottom:236.370000px;}
.y1d5{bottom:238.890000px;}
.y71{bottom:239.970000px;}
.y1f2{bottom:241.410000px;}
.y2cc{bottom:242.685000px;}
.y4f{bottom:243.930000px;}
.y1b8{bottom:244.830000px;}
.y174{bottom:247.170000px;}
.y242{bottom:248.805000px;}
.y223{bottom:249.690000px;}
.yb9{bottom:251.130000px;}
.y130{bottom:251.505000px;}
.y1d{bottom:252.390000px;}
.y104{bottom:255.810000px;}
.y99{bottom:257.070000px;}
.y70{bottom:260.670000px;}
.y1f1{bottom:262.110000px;}
.y241{bottom:264.105000px;}
.y4e{bottom:264.630000px;}
.y1b7{bottom:265.530000px;}
.y222{bottom:267.330000px;}
.y195{bottom:268.770000px;}
.y2e8{bottom:270.075000px;}
.y2c7{bottom:270.795000px;}
.yb8{bottom:271.830000px;}
.y150{bottom:272.190000px;}
.y12f{bottom:272.925000px;}
.y1c{bottom:273.090000px;}
.y274{bottom:275.250000px;}
.y103{bottom:276.510000px;}
.y1d4{bottom:276.690000px;}
.y173{bottom:276.870000px;}
.y98{bottom:277.770000px;}
.y240{bottom:279.585000px;}
.y6f{bottom:281.370000px;}
.y1f0{bottom:282.810000px;}
.y221{bottom:284.970000px;}
.y4d{bottom:285.330000px;}
.y1b6{bottom:286.230000px;}
.y2f5{bottom:287.895000px;}
.y194{bottom:289.470000px;}
.y2ca{bottom:290.775000px;}
.yb7{bottom:292.530000px;}
.y14f{bottom:292.890000px;}
.y1b{bottom:293.790000px;}
.y12e{bottom:294.165000px;}
.y23f{bottom:294.885000px;}
.y102{bottom:297.210000px;}
.y172{bottom:297.570000px;}
.y97{bottom:298.470000px;}
.y6e{bottom:302.070000px;}
.y1ef{bottom:303.510000px;}
.y2f4{bottom:305.535000px;}
.y4c{bottom:306.030000px;}
.y21e{bottom:306.045000px;}
.y1b5{bottom:306.930000px;}
.y29a{bottom:309.645000px;}
.y193{bottom:310.170000px;}
.y23e{bottom:310.365000px;}
.y273{bottom:310.530000px;}
.y2be{bottom:310.575000px;}
.yb6{bottom:313.230000px;}
.y14e{bottom:313.590000px;}
.y1a{bottom:314.490000px;}
.y12b{bottom:315.405000px;}
.y1d3{bottom:317.910000px;}
.y171{bottom:318.270000px;}
.y96{bottom:319.170000px;}
.y6d{bottom:322.770000px;}
.y2f3{bottom:323.355000px;}
.y1ee{bottom:324.030000px;}
.y23d{bottom:325.845000px;}
.y4b{bottom:326.730000px;}
.y101{bottom:326.910000px;}
.y1b4{bottom:327.630000px;}
.y272{bottom:327.990000px;}
.y2c4{bottom:330.555000px;}
.y192{bottom:330.870000px;}
.y14d{bottom:334.290000px;}
.y21c{bottom:334.665000px;}
.y12a{bottom:336.825000px;}
.y170{bottom:338.970000px;}
.y89{bottom:339.870000px;}
.y23c{bottom:341.145000px;}
.y2f2{bottom:341.175000px;}
.y299{bottom:341.325000px;}
.y6c{bottom:343.470000px;}
.y4a{bottom:347.430000px;}
.y100{bottom:347.610000px;}
.y270{bottom:349.065000px;}
.y21a{bottom:350.145000px;}
.yb5{bottom:351.030000px;}
.y191{bottom:351.570000px;}
.y19{bottom:352.110000px;}
.y14c{bottom:354.990000px;}
.y1d2{bottom:355.890000px;}
.y298{bottom:356.625000px;}
.y127{bottom:358.065000px;}
.y2c1{bottom:358.635000px;}
.y2f1{bottom:358.995000px;}
.y16f{bottom:359.670000px;}
.y88{bottom:360.570000px;}
.y1ed{bottom:361.830000px;}
.y23b{bottom:362.730000px;}
.y6b{bottom:364.170000px;}
.y1b3{bottom:365.475000px;}
.y49{bottom:367.995000px;}
.yff{bottom:368.355000px;}
.y26f{bottom:369.255000px;}
.yd6{bottom:370.500000px;}
.yb4{bottom:371.775000px;}
.y297{bottom:372.135000px;}
.y190{bottom:372.315000px;}
.yd4{bottom:373.935000px;}
.y1d1{bottom:376.635000px;}
.y2ef{bottom:376.815000px;}
.y126{bottom:379.335000px;}
.y16e{bottom:380.415000px;}
.y219{bottom:380.955000px;}
.y87{bottom:381.315000px;}
.y95{bottom:381.495000px;}
.y1ec{bottom:382.575000px;}
.y26e{bottom:384.555000px;}
.y14b{bottom:384.735000px;}
.y6a{bottom:384.915000px;}
.y1b2{bottom:386.175000px;}
.y2b4{bottom:386.895000px;}
.y296{bottom:387.435000px;}
.yfe{bottom:389.055000px;}
.y18{bottom:389.955000px;}
.yb3{bottom:392.475000px;}
.y18f{bottom:393.015000px;}
.y2ee{bottom:394.455000px;}
.y218{bottom:396.435000px;}
.y1d0{bottom:396.975000px;}
.y26d{bottom:400.035000px;}
.y16d{bottom:401.115000px;}
.y121{bottom:401.475000px;}
.y86{bottom:402.015000px;}
.y295{bottom:402.915000px;}
.y1eb{bottom:403.275000px;}
.y14a{bottom:405.435000px;}
.y69{bottom:405.615000px;}
.y48{bottom:405.795000px;}
.y1b1{bottom:406.875000px;}
.yfd{bottom:409.755000px;}
.y17{bottom:410.655000px;}
.yd3{bottom:411.555000px;}
.y217{bottom:411.735000px;}
.y2ed{bottom:412.275000px;}
.yb2{bottom:413.175000px;}
.y18e{bottom:413.715000px;}
.y26c{bottom:415.335000px;}
.y294{bottom:418.215000px;}
.y16c{bottom:421.815000px;}
.y85{bottom:422.715000px;}
.y124{bottom:423.435000px;}
.y1ea{bottom:423.975000px;}
.y149{bottom:426.135000px;}
.y47{bottom:426.495000px;}
.y2b6{bottom:426.675000px;}
.y216{bottom:427.215000px;}
.y1b0{bottom:427.575000px;}
.y238{bottom:430.095000px;}
.yfc{bottom:430.455000px;}
.y26b{bottom:430.815000px;}
.y293{bottom:433.695000px;}
.yb1{bottom:433.875000px;}
.y18d{bottom:434.235000px;}
.y1cf{bottom:434.775000px;}
.y94{bottom:439.635000px;}
.y16b{bottom:442.515000px;}
.y68{bottom:443.415000px;}
.y123{bottom:445.575000px;}
.y26a{bottom:446.115000px;}
.y2b8{bottom:446.505000px;}
.y148{bottom:446.835000px;}
.y46{bottom:447.195000px;}
.y2e7{bottom:447.960000px;}
.y16{bottom:448.275000px;}
.y292{bottom:448.995000px;}
.yd2{bottom:449.355000px;}
.yfb{bottom:451.155000px;}
.y1ce{bottom:455.655000px;}
.y93{bottom:460.335000px;}
.y237{bottom:460.875000px;}
.y269{bottom:461.595000px;}
.y1e9{bottom:461.775000px;}
.y16a{bottom:463.215000px;}
.y67{bottom:464.115000px;}
.y291{bottom:464.475000px;}
.y2e6{bottom:465.585000px;}
.y2a4{bottom:466.500000px;}
.y147{bottom:467.535000px;}
.y45{bottom:467.895000px;}
.y1af{bottom:468.975000px;}
.yd1{bottom:470.055000px;}
.yb0{bottom:471.495000px;}
.yfa{bottom:471.855000px;}
.y120{bottom:472.035000px;}
.y1cd{bottom:476.175000px;}
.y236{bottom:476.355000px;}
.y268{bottom:476.895000px;}
.y92{bottom:481.035000px;}
.y1e8{bottom:482.475000px;}
.y2e5{bottom:483.405000px;}
.y169{bottom:483.915000px;}
.y2b2{bottom:484.320000px;}
.y66{bottom:484.815000px;}
.y213{bottom:485.355000px;}
.y290{bottom:486.075000px;}
.y15{bottom:487.515000px;}
.y44{bottom:488.595000px;}
.y1ae{bottom:489.495000px;}
.yd0{bottom:490.755000px;}
.y235{bottom:491.835000px;}
.yaf{bottom:492.195000px;}
.yf9{bottom:492.555000px;}
.y11f{bottom:492.735000px;}
.y1cc{bottom:496.875000px;}
.y267{bottom:498.675000px;}
.y2e4{bottom:501.240000px;}
.y91{bottom:501.735000px;}
.y2b1{bottom:501.960000px;}
.y146{bottom:502.815000px;}
.y1e7{bottom:502.995000px;}
.y28f{bottom:503.715000px;}
.y168{bottom:504.615000px;}
.y84{bottom:505.335000px;}
.y65{bottom:505.515000px;}
.y234{bottom:507.135000px;}
.y14{bottom:508.575000px;}
.y43{bottom:509.295000px;}
.ycf{bottom:511.455000px;}
.yae{bottom:512.895000px;}
.yf8{bottom:513.255000px;}
.y11e{bottom:513.435000px;}
.y212{bottom:515.055000px;}
.y266{bottom:516.135000px;}
.y2e3{bottom:519.060000px;}
.y2b0{bottom:519.765000px;}
.y90{bottom:522.435000px;}
.y167{bottom:525.315000px;}
.y64{bottom:526.215000px;}
.y1ad{bottom:527.295000px;}
.y233{bottom:528.735000px;}
.y13{bottom:529.095000px;}
.y42{bottom:529.995000px;}
.y211{bottom:530.355000px;}
.yce{bottom:532.155000px;}
.yad{bottom:533.595000px;}
.y265{bottom:533.775000px;}
.yf7{bottom:533.955000px;}
.y18c{bottom:534.135000px;}
.y1cb{bottom:534.675000px;}
.y2e0{bottom:536.700000px;}
.y2ae{bottom:537.585000px;}
.y2a9{bottom:537.600000px;}
.y28e{bottom:539.355000px;}
.y1e6{bottom:540.795000px;}
.y83{bottom:543.135000px;}
.y210{bottom:545.835000px;}
.y232{bottom:546.375000px;}
.y63{bottom:546.915000px;}
.y1ac{bottom:547.995000px;}
.y12{bottom:549.795000px;}
.y41{bottom:550.695000px;}
.ycd{bottom:552.855000px;}
.yac{bottom:554.295000px;}
.y2d3{bottom:554.505000px;}
.y2de{bottom:554.520000px;}
.yf6{bottom:554.655000px;}
.y18b{bottom:554.835000px;}
.y166{bottom:555.015000px;}
.y2ad{bottom:555.405000px;}
.y1ca{bottom:555.555000px;}
.y11d{bottom:561.135000px;}
.y20f{bottom:561.315000px;}
.y1e5{bottom:561.495000px;}
.y8f{bottom:563.835000px;}
.y82{bottom:564.015000px;}
.y62{bottom:567.615000px;}
.y1ab{bottom:568.695000px;}
.y28d{bottom:569.415000px;}
.y11{bottom:570.495000px;}
.y40{bottom:571.395000px;}
.y2dd{bottom:572.325000px;}
.y2ab{bottom:573.060000px;}
.yab{bottom:574.995000px;}
.yf5{bottom:575.355000px;}
.y18a{bottom:575.535000px;}
.y165{bottom:575.715000px;}
.y1c9{bottom:576.075000px;}
.y20d{bottom:576.615000px;}
.y263{bottom:577.155000px;}
.y145{bottom:580.035000px;}
.y11c{bottom:581.835000px;}
.y231{bottom:582.015000px;}
.y81{bottom:584.535000px;}
.y28c{bottom:584.715000px;}
.y61{bottom:588.135000px;}
.y1aa{bottom:589.395000px;}
.y2dc{bottom:590.160000px;}
.ycc{bottom:590.655000px;}
.y2a7{bottom:590.865000px;}
.y3f{bottom:592.095000px;}
.y262{bottom:592.455000px;}
.yaa{bottom:595.695000px;}
.y189{bottom:596.235000px;}
.y164{bottom:596.415000px;}
.y1c8{bottom:596.595000px;}
.y1e4{bottom:599.295000px;}
.y230{bottom:599.475000px;}
.y28b{bottom:600.195000px;}
.y11b{bottom:602.535000px;}
.yf4{bottom:605.055000px;}
.y80{bottom:605.235000px;}
.y144{bottom:605.595000px;}
.y20b{bottom:607.395000px;}
.y2db{bottom:607.800000px;}
.y261{bottom:607.935000px;}
.y10{bottom:608.295000px;}
.y2a3{bottom:608.685000px;}
.y1a9{bottom:610.095000px;}
.ycb{bottom:611.355000px;}
.y3e{bottom:612.795000px;}
.y28a{bottom:615.495000px;}
.ya9{bottom:616.395000px;}
.y188{bottom:616.935000px;}
.y163{bottom:617.115000px;}
.y1e3{bottom:620.175000px;}
.y209{bottom:622.875000px;}
.y11a{bottom:623.235000px;}
.y260{bottom:623.445000px;}
.y2d9{bottom:625.605000px;}
.yf3{bottom:625.785000px;}
.y60{bottom:625.965000px;}
.y22f{bottom:629.565000px;}
.y1a8{bottom:630.825000px;}
.y289{bottom:631.005000px;}
.y143{bottom:631.185000px;}
.yca{bottom:632.085000px;}
.y3d{bottom:633.525000px;}
.y1c7{bottom:634.425000px;}
.ya8{bottom:637.305000px;}
.y187{bottom:637.665000px;}
.y162{bottom:637.845000px;}
.y207{bottom:638.205000px;}
.y25f{bottom:638.745000px;}
.y2d8{bottom:643.470000px;}
.y119{bottom:643.965000px;}
.y22e{bottom:645.045000px;}
.y288{bottom:646.305000px;}
.yf2{bottom:646.485000px;}
.y5f{bottom:646.665000px;}
.y2a2{bottom:647.430000px;}
.y1a7{bottom:651.525000px;}
.yf{bottom:652.245000px;}
.yc9{bottom:652.785000px;}
.y205{bottom:653.685000px;}
.y3c{bottom:654.225000px;}
.y1c6{bottom:655.125000px;}
.y142{bottom:656.565000px;}
.y1e2{bottom:657.825000px;}
.ya7{bottom:658.005000px;}
.y186{bottom:658.365000px;}
.y161{bottom:658.545000px;}
.y22d{bottom:660.345000px;}
.y2d5{bottom:661.290000px;}
.y287{bottom:661.785000px;}
.y118{bottom:664.665000px;}
.yf1{bottom:667.185000px;}
.y5e{bottom:667.365000px;}
.y2a1{bottom:668.130000px;}
.y25e{bottom:669.525000px;}
.y1a6{bottom:672.225000px;}
.yc8{bottom:673.485000px;}
.y3b{bottom:674.925000px;}
.y204{bottom:675.285000px;}
.y1c5{bottom:675.825000px;}
.ye{bottom:677.445000px;}
.y1e1{bottom:678.525000px;}
.y185{bottom:679.065000px;}
.y160{bottom:679.245000px;}
.y286{bottom:680.505000px;}
.y13f{bottom:682.125000px;}
.y29e{bottom:683.070000px;}
.y8e{bottom:684.465000px;}
.y25d{bottom:685.005000px;}
.y117{bottom:685.365000px;}
.yf0{bottom:687.885000px;}
.y5d{bottom:688.065000px;}
.y22c{bottom:691.305000px;}
.y1a5{bottom:692.925000px;}
.yc7{bottom:694.185000px;}
.ya6{bottom:695.625000px;}
.y1c4{bottom:696.525000px;}
.y203{bottom:698.865000px;}
.y184{bottom:699.765000px;}
.y15f{bottom:699.945000px;}
.y25c{bottom:700.305000px;}
.yd{bottom:702.645000px;}
.y8d{bottom:705.165000px;}
.y116{bottom:706.065000px;}
.y136{bottom:708.405000px;}
.yef{bottom:708.585000px;}
.y5c{bottom:708.765000px;}
.y7f{bottom:708.945000px;}
.y3a{bottom:712.725000px;}
.y22b{bottom:712.905000px;}
.y1a4{bottom:713.625000px;}
.yc6{bottom:714.885000px;}
.ya5{bottom:716.325000px;}
.y1c3{bottom:717.225000px;}
.y183{bottom:720.465000px;}
.y15e{bottom:720.645000px;}
.y25b{bottom:721.905000px;}
.y8c{bottom:725.865000px;}
.y115{bottom:726.765000px;}
.yc{bottom:727.845000px;}
.yee{bottom:729.285000px;}
.y5b{bottom:729.465000px;}
.y22a{bottom:730.365000px;}
.y13c{bottom:731.985000px;}
.y13a{bottom:732.000000px;}
.y39{bottom:733.425000px;}
.y1a3{bottom:734.325000px;}
.y29d{bottom:734.910000px;}
.yc5{bottom:735.405000px;}
.ya4{bottom:737.025000px;}
.y1c2{bottom:738.105000px;}
.y25a{bottom:739.545000px;}
.y202{bottom:740.625000px;}
.y15d{bottom:741.345000px;}
.y285{bottom:742.965000px;}
.y8b{bottom:746.565000px;}
.y114{bottom:747.465000px;}
.y229{bottom:748.005000px;}
.y138{bottom:749.820000px;}
.y7e{bottom:750.165000px;}
.yb{bottom:753.045000px;}
.y1e0{bottom:753.945000px;}
.y38{bottom:754.125000px;}
.y1a2{bottom:755.025000px;}
.y201{bottom:755.205000px;}
.y259{bottom:757.185000px;}
.ya3{bottom:757.725000px;}
.y182{bottom:758.265000px;}
.y1c1{bottom:758.805000px;}
.yed{bottom:759.525000px;}
.y284{bottom:759.900000px;}
.y15c{bottom:762.045000px;}
.y5a{bottom:767.265000px;}
.y113{bottom:768.165000px;}
.y228{bottom:769.065000px;}
.y7d{bottom:770.865000px;}
.yc4{bottom:773.205000px;}
.y1df{bottom:774.645000px;}
.y37{bottom:774.825000px;}
.y135{bottom:777.885000px;}
.ya{bottom:778.245000px;}
.ya2{bottom:778.425000px;}
.y181{bottom:778.965000px;}
.y15b{bottom:782.745000px;}
.y283{bottom:783.105000px;}
.yec{bottom:783.645000px;}
.y227{bottom:784.560000px;}
.y200{bottom:787.245000px;}
.y59{bottom:787.965000px;}
.y112{bottom:788.865000px;}
.y7c{bottom:791.745000px;}
.y1a1{bottom:792.825000px;}
.y258{bottom:793.740000px;}
.yc3{bottom:793.905000px;}
.y36{bottom:795.525000px;}
.y1c0{bottom:796.425000px;}
.y134{bottom:798.585000px;}
.ya1{bottom:799.125000px;}
.y180{bottom:799.665000px;}
.y282{bottom:800.745000px;}
.y1ff{bottom:803.265000px;}
.y9{bottom:803.445000px;}
.y58{bottom:808.665000px;}
.y257{bottom:809.025000px;}
.y111{bottom:809.565000px;}
.y7b{bottom:812.265000px;}
.y15a{bottom:812.445000px;}
.y1a0{bottom:813.525000px;}
.yc2{bottom:814.605000px;}
.y1de{bottom:816.045000px;}
.y35{bottom:816.225000px;}
.y1bf{bottom:817.125000px;}
.y133{bottom:819.285000px;}
.ya0{bottom:819.825000px;}
.y17f{bottom:820.365000px;}
.y281{bottom:821.820000px;}
.y1fe{bottom:823.605000px;}
.y8{bottom:823.965000px;}
.y256{bottom:824.505000px;}
.y57{bottom:829.365000px;}
.y110{bottom:830.265000px;}
.yeb{bottom:831.165000px;}
.y7a{bottom:832.965000px;}
.y159{bottom:833.145000px;}
.y19f{bottom:834.225000px;}
.yc1{bottom:835.305000px;}
.y34{bottom:836.925000px;}
.y280{bottom:837.285000px;}
.y1fd{bottom:837.645000px;}
.y1be{bottom:838.005000px;}
.y255{bottom:839.820000px;}
.y9f{bottom:840.345000px;}
.y17e{bottom:841.065000px;}
.y56{bottom:850.065000px;}
.y1fb{bottom:852.420000px;}
.y27f{bottom:852.585000px;}
.yea{bottom:853.665000px;}
.y158{bottom:853.845000px;}
.y19e{bottom:854.925000px;}
.y254{bottom:855.285000px;}
.yc0{bottom:856.005000px;}
.y33{bottom:857.445000px;}
.y1bd{bottom:858.705000px;}
.y10f{bottom:860.505000px;}
.y17d{bottom:861.765000px;}
.y2a{bottom:866.985000px;}
.y1f9{bottom:867.345000px;}
.y27e{bottom:868.065000px;}
.y8a{bottom:870.585000px;}
.y253{bottom:870.600000px;}
.y55{bottom:870.765000px;}
.y7{bottom:870.945000px;}
.y1dd{bottom:874.365000px;}
.y157{bottom:874.545000px;}
.ye9{bottom:874.905000px;}
.y19d{bottom:875.445000px;}
.ybf{bottom:876.705000px;}
.y32{bottom:878.145000px;}
.y1bc{bottom:879.225000px;}
.y17c{bottom:882.510000px;}
.y27d{bottom:883.410000px;}
.y29{bottom:887.730000px;}
.y54{bottom:891.510000px;}
.y252{bottom:892.230000px;}
.y6{bottom:893.490000px;}
.y1f8{bottom:893.850000px;}
.y156{bottom:895.290000px;}
.ye6{bottom:896.190000px;}
.ybe{bottom:897.450000px;}
.y31{bottom:898.890000px;}
.y1bb{bottom:899.790000px;}
.y17b{bottom:903.210000px;}
.y28{bottom:908.430000px;}
.y251{bottom:909.870000px;}
.y53{bottom:912.210000px;}
.y79{bottom:912.390000px;}
.y27c{bottom:914.370000px;}
.y5{bottom:915.990000px;}
.y19c{bottom:916.890000px;}
.ye5{bottom:917.610000px;}
.ybd{bottom:918.150000px;}
.y30{bottom:919.590000px;}
.y10e{bottom:920.130000px;}
.y17a{bottom:923.910000px;}
.y1f7{bottom:927.690000px;}
.y27{bottom:929.130000px;}
.y24f{bottom:930.930000px;}
.y52{bottom:932.730000px;}
.y78{bottom:932.910000px;}
.y27b{bottom:933.090000px;}
.y155{bottom:936.690000px;}
.y19b{bottom:937.590000px;}
.ye3{bottom:938.850000px;}
.y2f{bottom:940.290000px;}
.y10d{bottom:940.830000px;}
.y1f6{bottom:942.450000px;}
.y179{bottom:944.610000px;}
.y24e{bottom:947.670000px;}
.y26{bottom:949.830000px;}
.y1dc{bottom:953.610000px;}
.y77{bottom:953.790000px;}
.y154{bottom:957.390000px;}
.y19a{bottom:958.290000px;}
.y2e{bottom:960.990000px;}
.yda{bottom:961.350000px;}
.y10c{bottom:961.530000px;}
.y24d{bottom:963.150000px;}
.y178{bottom:965.310000px;}
.ybc{bottom:965.490000px;}
.y1f5{bottom:965.670000px;}
.y25{bottom:970.530000px;}
.y1db{bottom:974.310000px;}
.y76{bottom:974.490000px;}
.y153{bottom:978.090000px;}
.y24c{bottom:978.450000px;}
.y199{bottom:978.990000px;}
.y2d{bottom:981.690000px;}
.y9e{bottom:981.870000px;}
.y10b{bottom:982.230000px;}
.ye0{bottom:983.670000px;}
.y177{bottom:985.830000px;}
.ybb{bottom:989.610000px;}
.y24{bottom:991.230000px;}
.y24b{bottom:993.930000px;}
.y75{bottom:995.010000px;}
.y1da{bottom:995.190000px;}
.y27a{bottom:995.370000px;}
.y1f4{bottom:997.890000px;}
.y152{bottom:998.790000px;}
.y198{bottom:999.690000px;}
.y1ba{bottom:999.870000px;}
.y2c{bottom:1002.390000px;}
.y9d{bottom:1002.570000px;}
.y10a{bottom:1002.930000px;}
.yde{bottom:1006.170000px;}
.y24a{bottom:1009.230000px;}
.y23{bottom:1011.930000px;}
.y279{bottom:1012.470000px;}
.y74{bottom:1015.530000px;}
.y1d9{bottom:1015.710000px;}
.y1f3{bottom:1018.950000px;}
.y151{bottom:1019.490000px;}
.y197{bottom:1020.390000px;}
.y1b9{bottom:1020.570000px;}
.y109{bottom:1023.630000px;}
.y249{bottom:1024.710000px;}
.y278{bottom:1029.390000px;}
.y22{bottom:1032.630000px;}
.y248{bottom:1040.010000px;}
.y108{bottom:1044.330000px;}
.y2b{bottom:1050.450000px;}
.y21{bottom:1053.330000px;}
.y247{bottom:1061.790000px;}
.y196{bottom:1068.450000px;}
.y20{bottom:1074.030000px;}
.y1d8{bottom:1074.210000px;}
.y246{bottom:1079.250000px;}
.y2{bottom:1163.700000px;}
.y1{bottom:1179.360000px;}
.h22{height:14.025000px;}
.h21{height:14.040000px;}
.h28{height:14.565000px;}
.h24{height:14.580000px;}
.h2a{height:14.601000px;}
.h34{height:14.602500px;}
.h26{height:14.610000px;}
.h27{height:14.745000px;}
.h25{height:14.760000px;}
.h2e{height:14.781000px;}
.h36{height:14.790000px;}
.h2d{height:16.005000px;}
.h33{height:16.905000px;}
.h35{height:16.920000px;}
.h50{height:16.956000px;}
.h32{height:17.085000px;}
.h17{height:17.100000px;}
.h4e{height:17.122500px;}
.h44{height:19.065000px;}
.h42{height:19.080000px;}
.h3a{height:19.102500px;}
.h49{height:19.245000px;}
.h41{height:19.260000px;}
.h30{height:19.281000px;}
.hb{height:21.225000px;}
.h10{height:21.240000px;}
.h13{height:21.261000px;}
.hf{height:21.262500px;}
.hd{height:21.405000px;}
.h2f{height:21.585000px;}
.h18{height:22.680000px;}
.h15{height:22.845000px;}
.h2c{height:24.645000px;}
.h1d{height:25.365000px;}
.h1a{height:25.380000px;}
.h1c{height:25.545000px;}
.h19{height:25.560000px;}
.h1b{height:25.590000px;}
.h48{height:27.345000px;}
.h4b{height:27.381000px;}
.h47{height:27.525000px;}
.h2b{height:27.885000px;}
.h29{height:28.965000px;}
.h37{height:30.765000px;}
.h1f{height:34.743164px;}
.h3b{height:37.408711px;}
.h43{height:39.045000px;}
.h40{height:39.096000px;}
.h20{height:39.783867px;}
.h16{height:40.665000px;}
.h31{height:41.385000px;}
.h12{height:43.365000px;}
.hc{height:43.725000px;}
.h8{height:50.308594px;}
.h23{height:50.312812px;}
.h1e{height:51.855469px;}
.h3d{height:52.545000px;}
.h4a{height:55.641000px;}
.h2{height:56.320312px;}
.he{height:62.327813px;}
.h9{height:63.360000px;}
.h14{height:64.260000px;}
.h7{height:64.546875px;}
.h11{height:65.325000px;}
.ha{height:66.045000px;}
.h3e{height:70.365000px;}
.h4{height:75.093750px;}
.h46{height:75.585000px;}
.h3f{height:78.870000px;}
.h5{height:81.101250px;}
.h3{height:87.859687px;}
.h6{height:99.874688px;}
.h52{height:105.825000px;}
.h4d{height:123.682500px;}
.h4f{height:123.696000px;}
.h3c{height:141.465000px;}
.h51{height:159.285000px;}
.h45{height:171.735000px;}
.h4c{height:248.115000px;}
.h38{height:892.980000px;}
.h39{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3e{width:17.445000px;}
.w45{width:17.805000px;}
.w3b{width:25.920000px;}
.w42{width:26.640000px;}
.w20{width:27.180000px;}
.w22{width:28.065000px;}
.w3d{width:28.605000px;}
.w44{width:29.325000px;}
.w1f{width:30.780000px;}
.w1e{width:31.860000px;}
.w30{width:32.040000px;}
.w32{width:33.480000px;}
.w23{width:35.625000px;}
.w21{width:35.676000px;}
.w13{width:35.985000px;}
.w35{width:36.345000px;}
.w31{width:36.360000px;}
.w36{width:36.561000px;}
.w33{width:36.576000px;}
.w48{width:36.885000px;}
.w46{width:37.071000px;}
.w34{width:37.965000px;}
.w24{width:39.045000px;}
.w14{width:40.845000px;}
.w4d{width:41.565000px;}
.w28{width:42.465000px;}
.w26{width:42.501000px;}
.wd{width:42.660000px;}
.w25{width:43.545000px;}
.w15{width:44.310000px;}
.w12{width:46.461000px;}
.wf{width:46.605000px;}
.w4e{width:47.865000px;}
.w4a{width:48.045000px;}
.we{width:48.996000px;}
.w11{width:49.125000px;}
.w38{width:49.845000px;}
.w10{width:53.085000px;}
.wc{width:53.100000px;}
.w27{width:53.265000px;}
.w1a{width:54.360000px;}
.w19{width:62.640000px;}
.w37{width:63.525000px;}
.wb{width:63.720000px;}
.w1b{width:63.756000px;}
.w56{width:63.936000px;}
.w2c{width:68.400000px;}
.w2d{width:70.056000px;}
.w2e{width:74.325000px;}
.w2f{width:74.541000px;}
.w1c{width:74.685000px;}
.w40{width:81.165000px;}
.w3a{width:84.621000px;}
.w41{width:84.981000px;}
.wa{width:85.125000px;}
.w5{width:85.170000px;}
.w1d{width:86.061000px;}
.w3c{width:86.796000px;}
.w43{width:87.516000px;}
.w7{width:91.656000px;}
.w9{width:95.601000px;}
.w18{width:95.745000px;}
.w8{width:99.705000px;}
.w2b{width:113.385000px;}
.w6{width:116.820000px;}
.w53{width:130.305000px;}
.w54{width:138.081000px;}
.w39{width:138.231000px;}
.w3{width:138.262500px;}
.w55{width:175.140000px;}
.w3f{width:181.095000px;}
.w16{width:191.361000px;}
.w29{width:212.601000px;}
.w50{width:259.215000px;}
.w4f{width:260.475000px;}
.w47{width:269.835000px;}
.w4b{width:270.915000px;}
.w4c{width:286.755000px;}
.w2a{width:287.340000px;}
.w49{width:307.281000px;}
.w17{width:341.535000px;}
.w57{width:380.535000px;}
.w4{width:488.955000px;}
.w2{width:587.610000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w51{width:1262.880000px;}
.w52{width:1263.000000px;}
.x0{left:0.000000px;}
.x57{left:4.671000px;}
.xa{left:5.931000px;}
.x3c{left:7.020000px;}
.xf{left:8.280000px;}
.x11{left:10.080000px;}
.x2c{left:11.871000px;}
.x29{left:12.960000px;}
.x2a{left:14.760000px;}
.x2b{left:16.020000px;}
.x28{left:17.460000px;}
.x3b{left:19.080000px;}
.x26{left:20.520000px;}
.x25{left:22.530000px;}
.x46{left:23.760000px;}
.x9{left:24.825000px;}
.x20{left:25.920000px;}
.x1f{left:27.930000px;}
.x24{left:29.160000px;}
.x1a{left:30.450000px;}
.x18{left:32.220000px;}
.x69{left:33.465000px;}
.x17{left:34.560000px;}
.x1b{left:36.345000px;}
.x1d{left:38.685000px;}
.xb{left:40.845000px;}
.x27{left:43.560000px;}
.x30{left:49.680000px;}
.x23{left:50.940000px;}
.x15{left:53.460000px;}
.x41{left:55.620000px;}
.x42{left:57.090000px;}
.x3f{left:59.580000px;}
.x2e{left:62.100000px;}
.x34{left:73.290000px;}
.x3d{left:76.485000px;}
.x4b{left:87.105000px;}
.xd{left:105.660000px;}
.x4e{left:119.565000px;}
.x1{left:127.656000px;}
.x68{left:138.585000px;}
.x4{left:150.690000px;}
.x3{left:153.570000px;}
.x58{left:157.725000px;}
.x59{left:159.510000px;}
.x7{left:171.030000px;}
.x5{left:183.810000px;}
.x63{left:187.425000px;}
.x56{left:195.330000px;}
.x6{left:234.030000px;}
.x4f{left:257.805000px;}
.xc{left:265.935000px;}
.x64{left:317.745000px;}
.x2d{left:319.035000px;}
.x16{left:329.655000px;}
.x3e{left:340.275000px;}
.x50{left:343.155000px;}
.x4c{left:349.635000px;}
.x35{left:350.895000px;}
.x51{left:369.795000px;}
.x45{left:372.315000px;}
.x31{left:381.675000px;}
.x10{left:382.755000px;}
.x4d{left:395.175000px;}
.x36{left:408.855000px;}
.x19{left:425.415000px;}
.x2{left:430.455000px;}
.x32{left:436.035000px;}
.x47{left:442.155000px;}
.x5e{left:454.800000px;}
.x65{left:455.835000px;}
.x52{left:457.320000px;}
.x5c{left:460.020000px;}
.x5a{left:465.960000px;}
.x37{left:471.720000px;}
.x12{left:474.420000px;}
.x43{left:478.740000px;}
.x53{left:486.660000px;}
.x33{left:499.800000px;}
.x54{left:504.120000px;}
.x5b{left:505.365000px;}
.x5d{left:508.080000px;}
.x60{left:513.300000px;}
.x48{left:516.720000px;}
.x1c{left:521.040000px;}
.x38{left:535.440000px;}
.x44{left:553.080000px;}
.x13{left:574.140000px;}
.x49{left:591.060000px;}
.x62{left:610.455000px;}
.x39{left:618.060000px;}
.x1e{left:623.280000px;}
.x40{left:627.630000px;}
.x61{left:628.890000px;}
.x66{left:630.975000px;}
.x8{left:644.550000px;}
.x2f{left:660.570000px;}
.x14{left:669.750000px;}
.x55{left:685.230000px;}
.x4a{left:691.170000px;}
.x67{left:694.920000px;}
.x21{left:705.750000px;}
.x3a{left:713.850000px;}
.x5f{left:742.290000px;}
.xe{left:754.890000px;}
.x22{left:795.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-4.224000pt;}
.ls15{letter-spacing:-3.648000pt;}
.ls18{letter-spacing:-2.368000pt;}
.ls21{letter-spacing:-1.296000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.033280pt;}
.ls25{letter-spacing:0.037760pt;}
.ls11{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.128640pt;}
.ls12{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.362667pt;}
.lsc{letter-spacing:0.896000pt;}
.lsf{letter-spacing:5.248000pt;}
.lsa{letter-spacing:7.168000pt;}
.lse{letter-spacing:29.568000pt;}
.ls23{letter-spacing:35.418027pt;}
.ls24{letter-spacing:35.439360pt;}
.ls1f{letter-spacing:57.178027pt;}
.ls20{letter-spacing:57.199360pt;}
.ls1d{letter-spacing:97.354667pt;}
.ls1b{letter-spacing:110.794667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws14{word-spacing:-43.008640pt;}
.ws15{word-spacing:-42.880000pt;}
.ws13{word-spacing:-22.367360pt;}
.wsc{word-spacing:-20.513173pt;}
.ws0{word-spacing:-19.192320pt;}
.ws8{word-spacing:-18.688000pt;}
.ws2{word-spacing:-18.048000pt;}
.ws12{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.600000pt;}
.ws6{word-spacing:-17.408000pt;}
.wsd{word-spacing:-17.344000pt;}
.ws3{word-spacing:-17.152000pt;}
.ws10{word-spacing:-13.568000pt;}
.wsb{word-spacing:-13.536000pt;}
.wsf{word-spacing:-13.344000pt;}
.ws18{word-spacing:-11.920640pt;}
.ws11{word-spacing:-10.976000pt;}
.ws17{word-spacing:-9.921813pt;}
.ws16{word-spacing:-9.710720pt;}
.wse{word-spacing:-9.696000pt;}
.ws19{word-spacing:-9.150080pt;}
.ws4{word-spacing:0.000000pt;}
._33{margin-left:-12.954453pt;}
._6{margin-left:-7.672320pt;}
._7{margin-left:-5.753600pt;}
._16{margin-left:-4.575360pt;}
._3{margin-left:-3.565440pt;}
._4{margin-left:-1.935360pt;}
._2{margin-left:-0.949333pt;}
._0{width:1.008000pt;}
._5{width:2.102400pt;}
._1{width:3.589333pt;}
._22{width:4.564693pt;}
._c{width:5.568000pt;}
._19{width:6.468053pt;}
._a{width:7.466667pt;}
._b{width:9.141333pt;}
._18{width:10.272000pt;}
._23{width:11.392000pt;}
._27{width:12.437973pt;}
._14{width:13.546027pt;}
._13{width:14.656000pt;}
._9{width:16.271360pt;}
._40{width:17.861333pt;}
._24{width:19.050667pt;}
._d{width:19.946667pt;}
._e{width:21.151360pt;}
._2f{width:22.050987pt;}
._15{width:23.015893pt;}
._1a{width:24.768000pt;}
._1b{width:25.741440pt;}
._12{width:26.692053pt;}
._11{width:27.712000pt;}
._17{width:28.714667pt;}
._28{width:29.888000pt;}
._1f{width:30.976000pt;}
._20{width:32.384000pt;}
._21{width:33.572267pt;}
._29{width:35.072000pt;}
._38{width:36.416000pt;}
._2c{width:37.535360pt;}
._f{width:38.912000pt;}
._10{width:40.064000pt;}
._30{width:42.112000pt;}
._2d{width:43.328000pt;}
._1d{width:44.639360pt;}
._1c{width:45.568000pt;}
._1e{width:46.470613pt;}
._2b{width:50.762667pt;}
._2a{width:51.765333pt;}
._26{width:54.176000pt;}
._25{width:55.200000pt;}
._2e{width:60.160000pt;}
._39{width:61.610667pt;}
._32{width:73.290667pt;}
._31{width:74.677333pt;}
._3a{width:77.056000pt;}
._3f{width:77.971200pt;}
._34{width:113.194453pt;}
._35{width:114.238507pt;}
._8{width:119.224107pt;}
._36{width:129.010240pt;}
._37{width:132.040107pt;}
._3d{width:411.125333pt;}
._3b{width:419.136000pt;}
._3c{width:469.056000pt;}
._3e{width:1830.144000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1fc{bottom:2.386667pt;}
.y1fa{bottom:2.400000pt;}
.y2ce{bottom:2.706667pt;}
.y2c6{bottom:2.720000pt;}
.y21b{bottom:2.866667pt;}
.y206{bottom:2.880000pt;}
.y20a{bottom:2.906667pt;}
.y21d{bottom:3.026667pt;}
.y208{bottom:3.040000pt;}
.y20c{bottom:3.200000pt;}
.y20e{bottom:3.360000pt;}
.y13d{bottom:3.520000pt;}
.y2b3{bottom:4.146667pt;}
.y250{bottom:4.160000pt;}
.y2da{bottom:4.200000pt;}
.y2ac{bottom:4.306667pt;}
.y2a8{bottom:4.320000pt;}
.yd9{bottom:4.813333pt;}
.ye2{bottom:4.960000pt;}
.y128{bottom:5.106667pt;}
.ye4{bottom:5.120000pt;}
.y12c{bottom:5.266667pt;}
.ye7{bottom:5.280000pt;}
.y129{bottom:5.426667pt;}
.ydf{bottom:5.440000pt;}
.y12d{bottom:5.586667pt;}
.ye8{bottom:5.600000pt;}
.y13e{bottom:6.080000pt;}
.y139{bottom:6.226667pt;}
.y271{bottom:7.026667pt;}
.y140{bottom:7.040000pt;}
.y244{bottom:7.346667pt;}
.y141{bottom:7.360000pt;}
.y2c9{bottom:8.000000pt;}
.y21f{bottom:8.786667pt;}
.y239{bottom:8.800000pt;}
.y2c2{bottom:8.960000pt;}
.y264{bottom:9.120000pt;}
.y214{bottom:9.280000pt;}
.y29b{bottom:10.066667pt;}
.ydd{bottom:11.520000pt;}
.y276{bottom:11.666667pt;}
.y245{bottom:11.826667pt;}
.y13b{bottom:14.066667pt;}
.y2b7{bottom:14.080000pt;}
.y220{bottom:14.706667pt;}
.y23a{bottom:14.720000pt;}
.y2cd{bottom:14.866667pt;}
.y2c5{bottom:14.880000pt;}
.y2cf{bottom:15.026667pt;}
.y2c3{bottom:15.040000pt;}
.y125{bottom:15.360000pt;}
.ye1{bottom:15.520000pt;}
.y215{bottom:15.680000pt;}
.y29c{bottom:17.266667pt;}
.y2aa{bottom:19.986667pt;}
.y2c8{bottom:20.160000pt;}
.y2cb{bottom:21.426667pt;}
.yd8{bottom:23.213333pt;}
.y2c0{bottom:24.160000pt;}
.y137{bottom:24.640000pt;}
.y122{bottom:25.120000pt;}
.ydc{bottom:25.280000pt;}
.y2af{bottom:27.826667pt;}
.y2b5{bottom:31.680000pt;}
.y2bf{bottom:36.320000pt;}
.ydb{bottom:39.200000pt;}
.yd7{bottom:41.613333pt;}
.y2f0{bottom:43.680000pt;}
.y2e2{bottom:45.466667pt;}
.y2d7{bottom:45.600000pt;}
.y2ec{bottom:49.120000pt;}
.y4{bottom:50.720000pt;}
.y2df{bottom:51.546667pt;}
.y2d4{bottom:51.680000pt;}
.y2a6{bottom:53.426667pt;}
.y2bd{bottom:54.746667pt;}
.y2d6{bottom:57.760000pt;}
.y2e1{bottom:57.786667pt;}
.y2a5{bottom:59.506667pt;}
.y2eb{bottom:61.280000pt;}
.y2bc{bottom:66.906667pt;}
.y2ea{bottom:73.600000pt;}
.y2bb{bottom:79.066667pt;}
.y3{bottom:84.320000pt;}
.y2e9{bottom:85.760000pt;}
.y2ba{bottom:91.386667pt;}
.y2d2{bottom:94.746667pt;}
.y2d1{bottom:106.906667pt;}
.y2a0{bottom:116.832000pt;}
.y2d0{bottom:119.066667pt;}
.y29f{bottom:150.426667pt;}
.y107{bottom:172.186667pt;}
.y132{bottom:172.666667pt;}
.y9c{bottom:173.306667pt;}
.y277{bottom:174.906667pt;}
.y226{bottom:175.400000pt;}
.y1d7{bottom:175.706667pt;}
.y73{bottom:176.506667pt;}
.yd5{bottom:179.386667pt;}
.y51{bottom:180.026667pt;}
.y176{bottom:182.906667pt;}
.y1f{bottom:187.546667pt;}
.y225{bottom:189.160000pt;}
.y106{bottom:190.586667pt;}
.y2b9{bottom:190.600000pt;}
.y9b{bottom:191.706667pt;}
.y1d6{bottom:194.106667pt;}
.y72{bottom:194.906667pt;}
.y50{bottom:198.426667pt;}
.y243{bottom:198.600000pt;}
.y175{bottom:201.306667pt;}
.y275{bottom:201.640000pt;}
.y224{bottom:202.760000pt;}
.y131{bottom:204.040000pt;}
.yba{bottom:204.986667pt;}
.y1e{bottom:205.946667pt;}
.y105{bottom:208.986667pt;}
.y2f6{bottom:209.466667pt;}
.y9a{bottom:210.106667pt;}
.y1d5{bottom:212.346667pt;}
.y71{bottom:213.306667pt;}
.y1f2{bottom:214.586667pt;}
.y2cc{bottom:215.720000pt;}
.y4f{bottom:216.826667pt;}
.y1b8{bottom:217.626667pt;}
.y174{bottom:219.706667pt;}
.y242{bottom:221.160000pt;}
.y223{bottom:221.946667pt;}
.yb9{bottom:223.226667pt;}
.y130{bottom:223.560000pt;}
.y1d{bottom:224.346667pt;}
.y104{bottom:227.386667pt;}
.y99{bottom:228.506667pt;}
.y70{bottom:231.706667pt;}
.y1f1{bottom:232.986667pt;}
.y241{bottom:234.760000pt;}
.y4e{bottom:235.226667pt;}
.y1b7{bottom:236.026667pt;}
.y222{bottom:237.626667pt;}
.y195{bottom:238.906667pt;}
.y2e8{bottom:240.066667pt;}
.y2c7{bottom:240.706667pt;}
.yb8{bottom:241.626667pt;}
.y150{bottom:241.946667pt;}
.y12f{bottom:242.600000pt;}
.y1c{bottom:242.746667pt;}
.y274{bottom:244.666667pt;}
.y103{bottom:245.786667pt;}
.y1d4{bottom:245.946667pt;}
.y173{bottom:246.106667pt;}
.y98{bottom:246.906667pt;}
.y240{bottom:248.520000pt;}
.y6f{bottom:250.106667pt;}
.y1f0{bottom:251.386667pt;}
.y221{bottom:253.306667pt;}
.y4d{bottom:253.626667pt;}
.y1b6{bottom:254.426667pt;}
.y2f5{bottom:255.906667pt;}
.y194{bottom:257.306667pt;}
.y2ca{bottom:258.466667pt;}
.yb7{bottom:260.026667pt;}
.y14f{bottom:260.346667pt;}
.y1b{bottom:261.146667pt;}
.y12e{bottom:261.480000pt;}
.y23f{bottom:262.120000pt;}
.y102{bottom:264.186667pt;}
.y172{bottom:264.506667pt;}
.y97{bottom:265.306667pt;}
.y6e{bottom:268.506667pt;}
.y1ef{bottom:269.786667pt;}
.y2f4{bottom:271.586667pt;}
.y4c{bottom:272.026667pt;}
.y21e{bottom:272.040000pt;}
.y1b5{bottom:272.826667pt;}
.y29a{bottom:275.240000pt;}
.y193{bottom:275.706667pt;}
.y23e{bottom:275.880000pt;}
.y273{bottom:276.026667pt;}
.y2be{bottom:276.066667pt;}
.yb6{bottom:278.426667pt;}
.y14e{bottom:278.746667pt;}
.y1a{bottom:279.546667pt;}
.y12b{bottom:280.360000pt;}
.y1d3{bottom:282.586667pt;}
.y171{bottom:282.906667pt;}
.y96{bottom:283.706667pt;}
.y6d{bottom:286.906667pt;}
.y2f3{bottom:287.426667pt;}
.y1ee{bottom:288.026667pt;}
.y23d{bottom:289.640000pt;}
.y4b{bottom:290.426667pt;}
.y101{bottom:290.586667pt;}
.y1b4{bottom:291.226667pt;}
.y272{bottom:291.546667pt;}
.y2c4{bottom:293.826667pt;}
.y192{bottom:294.106667pt;}
.y14d{bottom:297.146667pt;}
.y21c{bottom:297.480000pt;}
.y12a{bottom:299.400000pt;}
.y170{bottom:301.306667pt;}
.y89{bottom:302.106667pt;}
.y23c{bottom:303.240000pt;}
.y2f2{bottom:303.266667pt;}
.y299{bottom:303.400000pt;}
.y6c{bottom:305.306667pt;}
.y4a{bottom:308.826667pt;}
.y100{bottom:308.986667pt;}
.y270{bottom:310.280000pt;}
.y21a{bottom:311.240000pt;}
.yb5{bottom:312.026667pt;}
.y191{bottom:312.506667pt;}
.y19{bottom:312.986667pt;}
.y14c{bottom:315.546667pt;}
.y1d2{bottom:316.346667pt;}
.y298{bottom:317.000000pt;}
.y127{bottom:318.280000pt;}
.y2c1{bottom:318.786667pt;}
.y2f1{bottom:319.106667pt;}
.y16f{bottom:319.706667pt;}
.y88{bottom:320.506667pt;}
.y1ed{bottom:321.626667pt;}
.y23b{bottom:322.426667pt;}
.y6b{bottom:323.706667pt;}
.y1b3{bottom:324.866667pt;}
.y49{bottom:327.106667pt;}
.yff{bottom:327.426667pt;}
.y26f{bottom:328.226667pt;}
.yd6{bottom:329.333333pt;}
.yb4{bottom:330.466667pt;}
.y297{bottom:330.786667pt;}
.y190{bottom:330.946667pt;}
.yd4{bottom:332.386667pt;}
.y1d1{bottom:334.786667pt;}
.y2ef{bottom:334.946667pt;}
.y126{bottom:337.186667pt;}
.y16e{bottom:338.146667pt;}
.y219{bottom:338.626667pt;}
.y87{bottom:338.946667pt;}
.y95{bottom:339.106667pt;}
.y1ec{bottom:340.066667pt;}
.y26e{bottom:341.826667pt;}
.y14b{bottom:341.986667pt;}
.y6a{bottom:342.146667pt;}
.y1b2{bottom:343.266667pt;}
.y2b4{bottom:343.906667pt;}
.y296{bottom:344.386667pt;}
.yfe{bottom:345.826667pt;}
.y18{bottom:346.626667pt;}
.yb3{bottom:348.866667pt;}
.y18f{bottom:349.346667pt;}
.y2ee{bottom:350.626667pt;}
.y218{bottom:352.386667pt;}
.y1d0{bottom:352.866667pt;}
.y26d{bottom:355.586667pt;}
.y16d{bottom:356.546667pt;}
.y121{bottom:356.866667pt;}
.y86{bottom:357.346667pt;}
.y295{bottom:358.146667pt;}
.y1eb{bottom:358.466667pt;}
.y14a{bottom:360.386667pt;}
.y69{bottom:360.546667pt;}
.y48{bottom:360.706667pt;}
.y1b1{bottom:361.666667pt;}
.yfd{bottom:364.226667pt;}
.y17{bottom:365.026667pt;}
.yd3{bottom:365.826667pt;}
.y217{bottom:365.986667pt;}
.y2ed{bottom:366.466667pt;}
.yb2{bottom:367.266667pt;}
.y18e{bottom:367.746667pt;}
.y26c{bottom:369.186667pt;}
.y294{bottom:371.746667pt;}
.y16c{bottom:374.946667pt;}
.y85{bottom:375.746667pt;}
.y124{bottom:376.386667pt;}
.y1ea{bottom:376.866667pt;}
.y149{bottom:378.786667pt;}
.y47{bottom:379.106667pt;}
.y2b6{bottom:379.266667pt;}
.y216{bottom:379.746667pt;}
.y1b0{bottom:380.066667pt;}
.y238{bottom:382.306667pt;}
.yfc{bottom:382.626667pt;}
.y26b{bottom:382.946667pt;}
.y293{bottom:385.506667pt;}
.yb1{bottom:385.666667pt;}
.y18d{bottom:385.986667pt;}
.y1cf{bottom:386.466667pt;}
.y94{bottom:390.786667pt;}
.y16b{bottom:393.346667pt;}
.y68{bottom:394.146667pt;}
.y123{bottom:396.066667pt;}
.y26a{bottom:396.546667pt;}
.y2b8{bottom:396.893333pt;}
.y148{bottom:397.186667pt;}
.y46{bottom:397.506667pt;}
.y2e7{bottom:398.186667pt;}
.y16{bottom:398.466667pt;}
.y292{bottom:399.106667pt;}
.yd2{bottom:399.426667pt;}
.yfb{bottom:401.026667pt;}
.y1ce{bottom:405.026667pt;}
.y93{bottom:409.186667pt;}
.y237{bottom:409.666667pt;}
.y269{bottom:410.306667pt;}
.y1e9{bottom:410.466667pt;}
.y16a{bottom:411.746667pt;}
.y67{bottom:412.546667pt;}
.y291{bottom:412.866667pt;}
.y2e6{bottom:413.853333pt;}
.y2a4{bottom:414.666667pt;}
.y147{bottom:415.586667pt;}
.y45{bottom:415.906667pt;}
.y1af{bottom:416.866667pt;}
.yd1{bottom:417.826667pt;}
.yb0{bottom:419.106667pt;}
.yfa{bottom:419.426667pt;}
.y120{bottom:419.586667pt;}
.y1cd{bottom:423.266667pt;}
.y236{bottom:423.426667pt;}
.y268{bottom:423.906667pt;}
.y92{bottom:427.586667pt;}
.y1e8{bottom:428.866667pt;}
.y2e5{bottom:429.693333pt;}
.y169{bottom:430.146667pt;}
.y2b2{bottom:430.506667pt;}
.y66{bottom:430.946667pt;}
.y213{bottom:431.426667pt;}
.y290{bottom:432.066667pt;}
.y15{bottom:433.346667pt;}
.y44{bottom:434.306667pt;}
.y1ae{bottom:435.106667pt;}
.yd0{bottom:436.226667pt;}
.y235{bottom:437.186667pt;}
.yaf{bottom:437.506667pt;}
.yf9{bottom:437.826667pt;}
.y11f{bottom:437.986667pt;}
.y1cc{bottom:441.666667pt;}
.y267{bottom:443.266667pt;}
.y2e4{bottom:445.546667pt;}
.y91{bottom:445.986667pt;}
.y2b1{bottom:446.186667pt;}
.y146{bottom:446.946667pt;}
.y1e7{bottom:447.106667pt;}
.y28f{bottom:447.746667pt;}
.y168{bottom:448.546667pt;}
.y84{bottom:449.186667pt;}
.y65{bottom:449.346667pt;}
.y234{bottom:450.786667pt;}
.y14{bottom:452.066667pt;}
.y43{bottom:452.706667pt;}
.ycf{bottom:454.626667pt;}
.yae{bottom:455.906667pt;}
.yf8{bottom:456.226667pt;}
.y11e{bottom:456.386667pt;}
.y212{bottom:457.826667pt;}
.y266{bottom:458.786667pt;}
.y2e3{bottom:461.386667pt;}
.y2b0{bottom:462.013333pt;}
.y90{bottom:464.386667pt;}
.y167{bottom:466.946667pt;}
.y64{bottom:467.746667pt;}
.y1ad{bottom:468.706667pt;}
.y233{bottom:469.986667pt;}
.y13{bottom:470.306667pt;}
.y42{bottom:471.106667pt;}
.y211{bottom:471.426667pt;}
.yce{bottom:473.026667pt;}
.yad{bottom:474.306667pt;}
.y265{bottom:474.466667pt;}
.yf7{bottom:474.626667pt;}
.y18c{bottom:474.786667pt;}
.y1cb{bottom:475.266667pt;}
.y2e0{bottom:477.066667pt;}
.y2ae{bottom:477.853333pt;}
.y2a9{bottom:477.866667pt;}
.y28e{bottom:479.426667pt;}
.y1e6{bottom:480.706667pt;}
.y83{bottom:482.786667pt;}
.y210{bottom:485.186667pt;}
.y232{bottom:485.666667pt;}
.y63{bottom:486.146667pt;}
.y1ac{bottom:487.106667pt;}
.y12{bottom:488.706667pt;}
.y41{bottom:489.506667pt;}
.ycd{bottom:491.426667pt;}
.yac{bottom:492.706667pt;}
.y2d3{bottom:492.893333pt;}
.y2de{bottom:492.906667pt;}
.yf6{bottom:493.026667pt;}
.y18b{bottom:493.186667pt;}
.y166{bottom:493.346667pt;}
.y2ad{bottom:493.693333pt;}
.y1ca{bottom:493.826667pt;}
.y11d{bottom:498.786667pt;}
.y20f{bottom:498.946667pt;}
.y1e5{bottom:499.106667pt;}
.y8f{bottom:501.186667pt;}
.y82{bottom:501.346667pt;}
.y62{bottom:504.546667pt;}
.y1ab{bottom:505.506667pt;}
.y28d{bottom:506.146667pt;}
.y11{bottom:507.106667pt;}
.y40{bottom:507.906667pt;}
.y2dd{bottom:508.733333pt;}
.y2ab{bottom:509.386667pt;}
.yab{bottom:511.106667pt;}
.yf5{bottom:511.426667pt;}
.y18a{bottom:511.586667pt;}
.y165{bottom:511.746667pt;}
.y1c9{bottom:512.066667pt;}
.y20d{bottom:512.546667pt;}
.y263{bottom:513.026667pt;}
.y145{bottom:515.586667pt;}
.y11c{bottom:517.186667pt;}
.y231{bottom:517.346667pt;}
.y81{bottom:519.586667pt;}
.y28c{bottom:519.746667pt;}
.y61{bottom:522.786667pt;}
.y1aa{bottom:523.906667pt;}
.y2dc{bottom:524.586667pt;}
.ycc{bottom:525.026667pt;}
.y2a7{bottom:525.213333pt;}
.y3f{bottom:526.306667pt;}
.y262{bottom:526.626667pt;}
.yaa{bottom:529.506667pt;}
.y189{bottom:529.986667pt;}
.y164{bottom:530.146667pt;}
.y1c8{bottom:530.306667pt;}
.y1e4{bottom:532.706667pt;}
.y230{bottom:532.866667pt;}
.y28b{bottom:533.506667pt;}
.y11b{bottom:535.586667pt;}
.yf4{bottom:537.826667pt;}
.y80{bottom:537.986667pt;}
.y144{bottom:538.306667pt;}
.y20b{bottom:539.906667pt;}
.y2db{bottom:540.266667pt;}
.y261{bottom:540.386667pt;}
.y10{bottom:540.706667pt;}
.y2a3{bottom:541.053333pt;}
.y1a9{bottom:542.306667pt;}
.ycb{bottom:543.426667pt;}
.y3e{bottom:544.706667pt;}
.y28a{bottom:547.106667pt;}
.ya9{bottom:547.906667pt;}
.y188{bottom:548.386667pt;}
.y163{bottom:548.546667pt;}
.y1e3{bottom:551.266667pt;}
.y209{bottom:553.666667pt;}
.y11a{bottom:553.986667pt;}
.y260{bottom:554.173333pt;}
.y2d9{bottom:556.093333pt;}
.yf3{bottom:556.253333pt;}
.y60{bottom:556.413333pt;}
.y22f{bottom:559.613333pt;}
.y1a8{bottom:560.733333pt;}
.y289{bottom:560.893333pt;}
.y143{bottom:561.053333pt;}
.yca{bottom:561.853333pt;}
.y3d{bottom:563.133333pt;}
.y1c7{bottom:563.933333pt;}
.ya8{bottom:566.493333pt;}
.y187{bottom:566.813333pt;}
.y162{bottom:566.973333pt;}
.y207{bottom:567.293333pt;}
.y25f{bottom:567.773333pt;}
.y2d8{bottom:571.973333pt;}
.y119{bottom:572.413333pt;}
.y22e{bottom:573.373333pt;}
.y288{bottom:574.493333pt;}
.yf2{bottom:574.653333pt;}
.y5f{bottom:574.813333pt;}
.y2a2{bottom:575.493333pt;}
.y1a7{bottom:579.133333pt;}
.yf{bottom:579.773333pt;}
.yc9{bottom:580.253333pt;}
.y205{bottom:581.053333pt;}
.y3c{bottom:581.533333pt;}
.y1c6{bottom:582.333333pt;}
.y142{bottom:583.613333pt;}
.y1e2{bottom:584.733333pt;}
.ya7{bottom:584.893333pt;}
.y186{bottom:585.213333pt;}
.y161{bottom:585.373333pt;}
.y22d{bottom:586.973333pt;}
.y2d5{bottom:587.813333pt;}
.y287{bottom:588.253333pt;}
.y118{bottom:590.813333pt;}
.yf1{bottom:593.053333pt;}
.y5e{bottom:593.213333pt;}
.y2a1{bottom:593.893333pt;}
.y25e{bottom:595.133333pt;}
.y1a6{bottom:597.533333pt;}
.yc8{bottom:598.653333pt;}
.y3b{bottom:599.933333pt;}
.y204{bottom:600.253333pt;}
.y1c5{bottom:600.733333pt;}
.ye{bottom:602.173333pt;}
.y1e1{bottom:603.133333pt;}
.y185{bottom:603.613333pt;}
.y160{bottom:603.773333pt;}
.y286{bottom:604.893333pt;}
.y13f{bottom:606.333333pt;}
.y29e{bottom:607.173333pt;}
.y8e{bottom:608.413333pt;}
.y25d{bottom:608.893333pt;}
.y117{bottom:609.213333pt;}
.yf0{bottom:611.453333pt;}
.y5d{bottom:611.613333pt;}
.y22c{bottom:614.493333pt;}
.y1a5{bottom:615.933333pt;}
.yc7{bottom:617.053333pt;}
.ya6{bottom:618.333333pt;}
.y1c4{bottom:619.133333pt;}
.y203{bottom:621.213333pt;}
.y184{bottom:622.013333pt;}
.y15f{bottom:622.173333pt;}
.y25c{bottom:622.493333pt;}
.yd{bottom:624.573333pt;}
.y8d{bottom:626.813333pt;}
.y116{bottom:627.613333pt;}
.y136{bottom:629.693333pt;}
.yef{bottom:629.853333pt;}
.y5c{bottom:630.013333pt;}
.y7f{bottom:630.173333pt;}
.y3a{bottom:633.533333pt;}
.y22b{bottom:633.693333pt;}
.y1a4{bottom:634.333333pt;}
.yc6{bottom:635.453333pt;}
.ya5{bottom:636.733333pt;}
.y1c3{bottom:637.533333pt;}
.y183{bottom:640.413333pt;}
.y15e{bottom:640.573333pt;}
.y25b{bottom:641.693333pt;}
.y8c{bottom:645.213333pt;}
.y115{bottom:646.013333pt;}
.yc{bottom:646.973333pt;}
.yee{bottom:648.253333pt;}
.y5b{bottom:648.413333pt;}
.y22a{bottom:649.213333pt;}
.y13c{bottom:650.653333pt;}
.y13a{bottom:650.666667pt;}
.y39{bottom:651.933333pt;}
.y1a3{bottom:652.733333pt;}
.y29d{bottom:653.253333pt;}
.yc5{bottom:653.693333pt;}
.ya4{bottom:655.133333pt;}
.y1c2{bottom:656.093333pt;}
.y25a{bottom:657.373333pt;}
.y202{bottom:658.333333pt;}
.y15d{bottom:658.973333pt;}
.y285{bottom:660.413333pt;}
.y8b{bottom:663.613333pt;}
.y114{bottom:664.413333pt;}
.y229{bottom:664.893333pt;}
.y138{bottom:666.506667pt;}
.y7e{bottom:666.813333pt;}
.yb{bottom:669.373333pt;}
.y1e0{bottom:670.173333pt;}
.y38{bottom:670.333333pt;}
.y1a2{bottom:671.133333pt;}
.y201{bottom:671.293333pt;}
.y259{bottom:673.053333pt;}
.ya3{bottom:673.533333pt;}
.y182{bottom:674.013333pt;}
.y1c1{bottom:674.493333pt;}
.yed{bottom:675.133333pt;}
.y284{bottom:675.466667pt;}
.y15c{bottom:677.373333pt;}
.y5a{bottom:682.013333pt;}
.y113{bottom:682.813333pt;}
.y228{bottom:683.613333pt;}
.y7d{bottom:685.213333pt;}
.yc4{bottom:687.293333pt;}
.y1df{bottom:688.573333pt;}
.y37{bottom:688.733333pt;}
.y135{bottom:691.453333pt;}
.ya{bottom:691.773333pt;}
.ya2{bottom:691.933333pt;}
.y181{bottom:692.413333pt;}
.y15b{bottom:695.773333pt;}
.y283{bottom:696.093333pt;}
.yec{bottom:696.573333pt;}
.y227{bottom:697.386667pt;}
.y200{bottom:699.773333pt;}
.y59{bottom:700.413333pt;}
.y112{bottom:701.213333pt;}
.y7c{bottom:703.773333pt;}
.y1a1{bottom:704.733333pt;}
.y258{bottom:705.546667pt;}
.yc3{bottom:705.693333pt;}
.y36{bottom:707.133333pt;}
.y1c0{bottom:707.933333pt;}
.y134{bottom:709.853333pt;}
.ya1{bottom:710.333333pt;}
.y180{bottom:710.813333pt;}
.y282{bottom:711.773333pt;}
.y1ff{bottom:714.013333pt;}
.y9{bottom:714.173333pt;}
.y58{bottom:718.813333pt;}
.y257{bottom:719.133333pt;}
.y111{bottom:719.613333pt;}
.y7b{bottom:722.013333pt;}
.y15a{bottom:722.173333pt;}
.y1a0{bottom:723.133333pt;}
.yc2{bottom:724.093333pt;}
.y1de{bottom:725.373333pt;}
.y35{bottom:725.533333pt;}
.y1bf{bottom:726.333333pt;}
.y133{bottom:728.253333pt;}
.ya0{bottom:728.733333pt;}
.y17f{bottom:729.213333pt;}
.y281{bottom:730.506667pt;}
.y1fe{bottom:732.093333pt;}
.y8{bottom:732.413333pt;}
.y256{bottom:732.893333pt;}
.y57{bottom:737.213333pt;}
.y110{bottom:738.013333pt;}
.yeb{bottom:738.813333pt;}
.y7a{bottom:740.413333pt;}
.y159{bottom:740.573333pt;}
.y19f{bottom:741.533333pt;}
.yc1{bottom:742.493333pt;}
.y34{bottom:743.933333pt;}
.y280{bottom:744.253333pt;}
.y1fd{bottom:744.573333pt;}
.y1be{bottom:744.893333pt;}
.y255{bottom:746.506667pt;}
.y9f{bottom:746.973333pt;}
.y17e{bottom:747.613333pt;}
.y56{bottom:755.613333pt;}
.y1fb{bottom:757.706667pt;}
.y27f{bottom:757.853333pt;}
.yea{bottom:758.813333pt;}
.y158{bottom:758.973333pt;}
.y19e{bottom:759.933333pt;}
.y254{bottom:760.253333pt;}
.yc0{bottom:760.893333pt;}
.y33{bottom:762.173333pt;}
.y1bd{bottom:763.293333pt;}
.y10f{bottom:764.893333pt;}
.y17d{bottom:766.013333pt;}
.y2a{bottom:770.653333pt;}
.y1f9{bottom:770.973333pt;}
.y27e{bottom:771.613333pt;}
.y8a{bottom:773.853333pt;}
.y253{bottom:773.866667pt;}
.y55{bottom:774.013333pt;}
.y7{bottom:774.173333pt;}
.y1dd{bottom:777.213333pt;}
.y157{bottom:777.373333pt;}
.ye9{bottom:777.693333pt;}
.y19d{bottom:778.173333pt;}
.ybf{bottom:779.293333pt;}
.y32{bottom:780.573333pt;}
.y1bc{bottom:781.533333pt;}
.y17c{bottom:784.453333pt;}
.y27d{bottom:785.253333pt;}
.y29{bottom:789.093333pt;}
.y54{bottom:792.453333pt;}
.y252{bottom:793.093333pt;}
.y6{bottom:794.213333pt;}
.y1f8{bottom:794.533333pt;}
.y156{bottom:795.813333pt;}
.ye6{bottom:796.613333pt;}
.ybe{bottom:797.733333pt;}
.y31{bottom:799.013333pt;}
.y1bb{bottom:799.813333pt;}
.y17b{bottom:802.853333pt;}
.y28{bottom:807.493333pt;}
.y251{bottom:808.773333pt;}
.y53{bottom:810.853333pt;}
.y79{bottom:811.013333pt;}
.y27c{bottom:812.773333pt;}
.y5{bottom:814.213333pt;}
.y19c{bottom:815.013333pt;}
.ye5{bottom:815.653333pt;}
.ybd{bottom:816.133333pt;}
.y30{bottom:817.413333pt;}
.y10e{bottom:817.893333pt;}
.y17a{bottom:821.253333pt;}
.y1f7{bottom:824.613333pt;}
.y27{bottom:825.893333pt;}
.y24f{bottom:827.493333pt;}
.y52{bottom:829.093333pt;}
.y78{bottom:829.253333pt;}
.y27b{bottom:829.413333pt;}
.y155{bottom:832.613333pt;}
.y19b{bottom:833.413333pt;}
.ye3{bottom:834.533333pt;}
.y2f{bottom:835.813333pt;}
.y10d{bottom:836.293333pt;}
.y1f6{bottom:837.733333pt;}
.y179{bottom:839.653333pt;}
.y24e{bottom:842.373333pt;}
.y26{bottom:844.293333pt;}
.y1dc{bottom:847.653333pt;}
.y77{bottom:847.813333pt;}
.y154{bottom:851.013333pt;}
.y19a{bottom:851.813333pt;}
.y2e{bottom:854.213333pt;}
.yda{bottom:854.533333pt;}
.y10c{bottom:854.693333pt;}
.y24d{bottom:856.133333pt;}
.y178{bottom:858.053333pt;}
.ybc{bottom:858.213333pt;}
.y1f5{bottom:858.373333pt;}
.y25{bottom:862.693333pt;}
.y1db{bottom:866.053333pt;}
.y76{bottom:866.213333pt;}
.y153{bottom:869.413333pt;}
.y24c{bottom:869.733333pt;}
.y199{bottom:870.213333pt;}
.y2d{bottom:872.613333pt;}
.y9e{bottom:872.773333pt;}
.y10b{bottom:873.093333pt;}
.ye0{bottom:874.373333pt;}
.y177{bottom:876.293333pt;}
.ybb{bottom:879.653333pt;}
.y24{bottom:881.093333pt;}
.y24b{bottom:883.493333pt;}
.y75{bottom:884.453333pt;}
.y1da{bottom:884.613333pt;}
.y27a{bottom:884.773333pt;}
.y1f4{bottom:887.013333pt;}
.y152{bottom:887.813333pt;}
.y198{bottom:888.613333pt;}
.y1ba{bottom:888.773333pt;}
.y2c{bottom:891.013333pt;}
.y9d{bottom:891.173333pt;}
.y10a{bottom:891.493333pt;}
.yde{bottom:894.373333pt;}
.y24a{bottom:897.093333pt;}
.y23{bottom:899.493333pt;}
.y279{bottom:899.973333pt;}
.y74{bottom:902.693333pt;}
.y1d9{bottom:902.853333pt;}
.y1f3{bottom:905.733333pt;}
.y151{bottom:906.213333pt;}
.y197{bottom:907.013333pt;}
.y1b9{bottom:907.173333pt;}
.y109{bottom:909.893333pt;}
.y249{bottom:910.853333pt;}
.y278{bottom:915.013333pt;}
.y22{bottom:917.893333pt;}
.y248{bottom:924.453333pt;}
.y108{bottom:928.293333pt;}
.y2b{bottom:933.733333pt;}
.y21{bottom:936.293333pt;}
.y247{bottom:943.813333pt;}
.y196{bottom:949.733333pt;}
.y20{bottom:954.693333pt;}
.y1d8{bottom:954.853333pt;}
.y246{bottom:959.333333pt;}
.y2{bottom:1034.400000pt;}
.y1{bottom:1048.320000pt;}
.h22{height:12.466667pt;}
.h21{height:12.480000pt;}
.h28{height:12.946667pt;}
.h24{height:12.960000pt;}
.h2a{height:12.978667pt;}
.h34{height:12.980000pt;}
.h26{height:12.986667pt;}
.h27{height:13.106667pt;}
.h25{height:13.120000pt;}
.h2e{height:13.138667pt;}
.h36{height:13.146667pt;}
.h2d{height:14.226667pt;}
.h33{height:15.026667pt;}
.h35{height:15.040000pt;}
.h50{height:15.072000pt;}
.h32{height:15.186667pt;}
.h17{height:15.200000pt;}
.h4e{height:15.220000pt;}
.h44{height:16.946667pt;}
.h42{height:16.960000pt;}
.h3a{height:16.980000pt;}
.h49{height:17.106667pt;}
.h41{height:17.120000pt;}
.h30{height:17.138667pt;}
.hb{height:18.866667pt;}
.h10{height:18.880000pt;}
.h13{height:18.898667pt;}
.hf{height:18.900000pt;}
.hd{height:19.026667pt;}
.h2f{height:19.186667pt;}
.h18{height:20.160000pt;}
.h15{height:20.306667pt;}
.h2c{height:21.906667pt;}
.h1d{height:22.546667pt;}
.h1a{height:22.560000pt;}
.h1c{height:22.706667pt;}
.h19{height:22.720000pt;}
.h1b{height:22.746667pt;}
.h48{height:24.306667pt;}
.h4b{height:24.338667pt;}
.h47{height:24.466667pt;}
.h2b{height:24.786667pt;}
.h29{height:25.746667pt;}
.h37{height:27.346667pt;}
.h1f{height:30.882812pt;}
.h3b{height:33.252187pt;}
.h43{height:34.706667pt;}
.h40{height:34.752000pt;}
.h20{height:35.363437pt;}
.h16{height:36.146667pt;}
.h31{height:36.786667pt;}
.h12{height:38.546667pt;}
.hc{height:38.866667pt;}
.h8{height:44.718750pt;}
.h23{height:44.722500pt;}
.h1e{height:46.093750pt;}
.h3d{height:46.706667pt;}
.h4a{height:49.458667pt;}
.h2{height:50.062500pt;}
.he{height:55.402500pt;}
.h9{height:56.320000pt;}
.h14{height:57.120000pt;}
.h7{height:57.375000pt;}
.h11{height:58.066667pt;}
.ha{height:58.706667pt;}
.h3e{height:62.546667pt;}
.h4{height:66.750000pt;}
.h46{height:67.186667pt;}
.h3f{height:70.106667pt;}
.h5{height:72.090000pt;}
.h3{height:78.097500pt;}
.h6{height:88.777500pt;}
.h52{height:94.066667pt;}
.h4d{height:109.940000pt;}
.h4f{height:109.952000pt;}
.h3c{height:125.746667pt;}
.h51{height:141.586667pt;}
.h45{height:152.653333pt;}
.h4c{height:220.546667pt;}
.h38{height:793.760000pt;}
.h39{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3e{width:15.506667pt;}
.w45{width:15.826667pt;}
.w3b{width:23.040000pt;}
.w42{width:23.680000pt;}
.w20{width:24.160000pt;}
.w22{width:24.946667pt;}
.w3d{width:25.426667pt;}
.w44{width:26.066667pt;}
.w1f{width:27.360000pt;}
.w1e{width:28.320000pt;}
.w30{width:28.480000pt;}
.w32{width:29.760000pt;}
.w23{width:31.666667pt;}
.w21{width:31.712000pt;}
.w13{width:31.986667pt;}
.w35{width:32.306667pt;}
.w31{width:32.320000pt;}
.w36{width:32.498667pt;}
.w33{width:32.512000pt;}
.w48{width:32.786667pt;}
.w46{width:32.952000pt;}
.w34{width:33.746667pt;}
.w24{width:34.706667pt;}
.w14{width:36.306667pt;}
.w4d{width:36.946667pt;}
.w28{width:37.746667pt;}
.w26{width:37.778667pt;}
.wd{width:37.920000pt;}
.w25{width:38.706667pt;}
.w15{width:39.386667pt;}
.w12{width:41.298667pt;}
.wf{width:41.426667pt;}
.w4e{width:42.546667pt;}
.w4a{width:42.706667pt;}
.we{width:43.552000pt;}
.w11{width:43.666667pt;}
.w38{width:44.306667pt;}
.w10{width:47.186667pt;}
.wc{width:47.200000pt;}
.w27{width:47.346667pt;}
.w1a{width:48.320000pt;}
.w19{width:55.680000pt;}
.w37{width:56.466667pt;}
.wb{width:56.640000pt;}
.w1b{width:56.672000pt;}
.w56{width:56.832000pt;}
.w2c{width:60.800000pt;}
.w2d{width:62.272000pt;}
.w2e{width:66.066667pt;}
.w2f{width:66.258667pt;}
.w1c{width:66.386667pt;}
.w40{width:72.146667pt;}
.w3a{width:75.218667pt;}
.w41{width:75.538667pt;}
.wa{width:75.666667pt;}
.w5{width:75.706667pt;}
.w1d{width:76.498667pt;}
.w3c{width:77.152000pt;}
.w43{width:77.792000pt;}
.w7{width:81.472000pt;}
.w9{width:84.978667pt;}
.w18{width:85.106667pt;}
.w8{width:88.626667pt;}
.w2b{width:100.786667pt;}
.w6{width:103.840000pt;}
.w53{width:115.826667pt;}
.w54{width:122.738667pt;}
.w39{width:122.872000pt;}
.w3{width:122.900000pt;}
.w55{width:155.680000pt;}
.w3f{width:160.973333pt;}
.w16{width:170.098667pt;}
.w29{width:188.978667pt;}
.w50{width:230.413333pt;}
.w4f{width:231.533333pt;}
.w47{width:239.853333pt;}
.w4b{width:240.813333pt;}
.w4c{width:254.893333pt;}
.w2a{width:255.413333pt;}
.w49{width:273.138667pt;}
.w17{width:303.586667pt;}
.w57{width:338.253333pt;}
.w4{width:434.626667pt;}
.w2{width:522.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w51{width:1122.560000pt;}
.w52{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x57{left:4.152000pt;}
.xa{left:5.272000pt;}
.x3c{left:6.240000pt;}
.xf{left:7.360000pt;}
.x11{left:8.960000pt;}
.x2c{left:10.552000pt;}
.x29{left:11.520000pt;}
.x2a{left:13.120000pt;}
.x2b{left:14.240000pt;}
.x28{left:15.520000pt;}
.x3b{left:16.960000pt;}
.x26{left:18.240000pt;}
.x25{left:20.026667pt;}
.x46{left:21.120000pt;}
.x9{left:22.066667pt;}
.x20{left:23.040000pt;}
.x1f{left:24.826667pt;}
.x24{left:25.920000pt;}
.x1a{left:27.066667pt;}
.x18{left:28.640000pt;}
.x69{left:29.746667pt;}
.x17{left:30.720000pt;}
.x1b{left:32.306667pt;}
.x1d{left:34.386667pt;}
.xb{left:36.306667pt;}
.x27{left:38.720000pt;}
.x30{left:44.160000pt;}
.x23{left:45.280000pt;}
.x15{left:47.520000pt;}
.x41{left:49.440000pt;}
.x42{left:50.746667pt;}
.x3f{left:52.960000pt;}
.x2e{left:55.200000pt;}
.x34{left:65.146667pt;}
.x3d{left:67.986667pt;}
.x4b{left:77.426667pt;}
.xd{left:93.920000pt;}
.x4e{left:106.280000pt;}
.x1{left:113.472000pt;}
.x68{left:123.186667pt;}
.x4{left:133.946667pt;}
.x3{left:136.506667pt;}
.x58{left:140.200000pt;}
.x59{left:141.786667pt;}
.x7{left:152.026667pt;}
.x5{left:163.386667pt;}
.x63{left:166.600000pt;}
.x56{left:173.626667pt;}
.x6{left:208.026667pt;}
.x4f{left:229.160000pt;}
.xc{left:236.386667pt;}
.x64{left:282.440000pt;}
.x2d{left:283.586667pt;}
.x16{left:293.026667pt;}
.x3e{left:302.466667pt;}
.x50{left:305.026667pt;}
.x4c{left:310.786667pt;}
.x35{left:311.906667pt;}
.x51{left:328.706667pt;}
.x45{left:330.946667pt;}
.x31{left:339.266667pt;}
.x10{left:340.226667pt;}
.x4d{left:351.266667pt;}
.x36{left:363.426667pt;}
.x19{left:378.146667pt;}
.x2{left:382.626667pt;}
.x32{left:387.586667pt;}
.x47{left:393.026667pt;}
.x5e{left:404.266667pt;}
.x65{left:405.186667pt;}
.x52{left:406.506667pt;}
.x5c{left:408.906667pt;}
.x5a{left:414.186667pt;}
.x37{left:419.306667pt;}
.x12{left:421.706667pt;}
.x43{left:425.546667pt;}
.x53{left:432.586667pt;}
.x33{left:444.266667pt;}
.x54{left:448.106667pt;}
.x5b{left:449.213333pt;}
.x5d{left:451.626667pt;}
.x60{left:456.266667pt;}
.x48{left:459.306667pt;}
.x1c{left:463.146667pt;}
.x38{left:475.946667pt;}
.x44{left:491.626667pt;}
.x13{left:510.346667pt;}
.x49{left:525.386667pt;}
.x62{left:542.626667pt;}
.x39{left:549.386667pt;}
.x1e{left:554.026667pt;}
.x40{left:557.893333pt;}
.x61{left:559.013333pt;}
.x66{left:560.866667pt;}
.x8{left:572.933333pt;}
.x2f{left:587.173333pt;}
.x14{left:595.333333pt;}
.x55{left:609.093333pt;}
.x4a{left:614.373333pt;}
.x67{left:617.706667pt;}
.x21{left:627.333333pt;}
.x3a{left:634.533333pt;}
.x5f{left:659.813333pt;}
.xe{left:671.013333pt;}
.x22{left:707.333333pt;}
}




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