
    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_f225b0d7f8ebdef2068cc1d1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_0073122f59edf8009602945d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_3011134c4a5c521e959d1143.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996094;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_38be8418dc3d55737d1b7978.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_0f3f418c4ca255bbe13eb68b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050781;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_53a8a9a82150b01c749e4de4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.311000;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_a39e5ee0ea6c6646be6bfde0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.078613;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_a240d39f0524b4901366ddad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_393febca380246551055a1c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_9841109857a9287abb70572f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_2cf19c702f96cb717f624ded.woff')format("woff");}.ffb{font-family:ffb;line-height:0.960000;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_997b721f246c5e9e2daea85c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.704590;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_0ec91db69acfb6cae4cf517e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.996094;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:ffe;src:url('chunks/assets/font_ba2dc75c920cd25bebb7e5b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.757812;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:fff;src:url('chunks/assets/font_8af8a1738be32f8dbb4d6fb4.woff')format("woff");}.fff{font-family:fff;line-height:0.728027;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:ff10;src:url('chunks/assets/font_f7b1db9a2fac8d7e651a2f1e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.941406;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:ff11;src:url('chunks/assets/font_7b35fee449e201494056caf2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.123000;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:ff12;src:url('chunks/assets/font_e516db25cc160070933c2dca.woff')format("woff");}.ff12{font-family:ff12;line-height:0.848145;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:ff13;src:url('chunks/assets/font_c63d88109cd259fc98d9920c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.698000;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:ff14;src:url('chunks/assets/font_1579dfd20634c6cac00d64e2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.714844;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:ff15;src:url('chunks/assets/font_9e9b384cd8bf553bfa06baaf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.996094;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:ff16;src:url('chunks/assets/font_8a304de1a5dbb6b5419ed562.woff')format("woff");}.ff16{font-family:ff16;line-height:0.757812;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:ff17;src:url('chunks/assets/font_37f962a8be1219267c8e9bb5.woff')format("woff");}.ff17{font-family:ff17;line-height:1.075684;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:ff18;src:url('chunks/assets/font_e8739b430fe7bd7e7f249c22.woff')format("woff");}.ff18{font-family:ff18;line-height:0.728027;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:ff19;src:url('chunks/assets/font_12bb6d8b9b94394fe9c027ba.woff')format("woff");}.ff19{font-family:ff19;line-height:0.984000;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:ff1a;src:url('chunks/assets/font_eac9acf9d058509b533e8978.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.985000;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:ff1b;src:url('chunks/assets/font_0763334124eb303e286ed9f9.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.955000;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:ff1c;src:url('chunks/assets/font_31d16382f1dc0a3efc6fc316.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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:ff1d;src:url('chunks/assets/font_8a33703cbb9713297106ad2c.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.840332;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:ff1e;src:url('chunks/assets/font_6fab0bee00443c7cd21992e0.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.942383;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:ff1f;src:url('chunks/assets/font_feaf0fea561b792d3c9150db.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.885000;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:ff20;src:url('chunks/assets/font_a2c593a410e7fb6fed64614f.woff')format("woff");}.ff20{font-family:ff20;line-height:0.947266;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:ff21;src:url('chunks/assets/font_480204cf90e0ff42722f6182.woff')format("woff");}.ff21{font-family:ff21;line-height:0.908203;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:ff22;src:url('chunks/assets/font_86362b83e349b7b414afffbd.woff')format("woff");}.ff22{font-family:ff22;line-height:0.947266;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:ff23;src:url('chunks/assets/font_d44e1be8859524cb2ba346cf.woff')format("woff");}.ff23{font-family:ff23;line-height:0.947266;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:ff24;src:url('chunks/assets/font_c7bef80b13c26280b4375055.woff')format("woff");}.ff24{font-family:ff24;line-height:0.947266;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.v8{vertical-align:-151.027488px;}
.v3{vertical-align:-139.200000px;}
.v7{vertical-align:-113.627776px;}
.v6{vertical-align:-38.114032px;}
.v1{vertical-align:-21.780000px;}
.v9{vertical-align:-1.142400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.344000px;}
.v4{vertical-align:18.766200px;}
.v2{vertical-align:21.780000px;}
.ls1b{letter-spacing:-4.896000px;}
.ls15{letter-spacing:-2.832000px;}
.ls4{letter-spacing:-1.680000px;}
.ls7{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.570000px;}
.ls1f{letter-spacing:-0.502247px;}
.ls24{letter-spacing:-0.500900px;}
.ls16{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.357160px;}
.ls2c{letter-spacing:-0.285000px;}
.ls21{letter-spacing:-0.228294px;}
.ls22{letter-spacing:-0.136976px;}
.ls26{letter-spacing:-0.136609px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003600px;}
.ls1d{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.013200px;}
.ls0{letter-spacing:0.031800px;}
.ls1e{letter-spacing:0.078832px;}
.ls27{letter-spacing:0.120956px;}
.ls2a{letter-spacing:0.121280px;}
.ls2b{letter-spacing:0.181921px;}
.ls25{letter-spacing:0.227682px;}
.ls20{letter-spacing:0.228294px;}
.ls28{letter-spacing:0.241913px;}
.lsb{letter-spacing:0.285000px;}
.ls18{letter-spacing:0.306137px;}
.ls1a{letter-spacing:0.357160px;}
.ls2f{letter-spacing:1.653000px;}
.ls2e{letter-spacing:1.937400px;}
.ls2d{letter-spacing:1.938000px;}
.lsa{letter-spacing:2.244000px;}
.ls30{letter-spacing:3.585300px;}
.ls1{letter-spacing:5.725200px;}
.ls2{letter-spacing:5.725800px;}
.ls6{letter-spacing:19.232350px;}
.lsd{letter-spacing:49.824000px;}
.ls14{letter-spacing:72.288000px;}
.ls13{letter-spacing:81.024000px;}
.lsf{letter-spacing:105.984000px;}
.ls10{letter-spacing:141.504000px;}
.ls17{letter-spacing:152.736000px;}
.ls12{letter-spacing:180.384000px;}
.ls29{letter-spacing:196.859400px;}
.ls1c{letter-spacing:198.720000px;}
.lsc{letter-spacing:233.184000px;}
.ls11{letter-spacing:234.624000px;}
.lse{letter-spacing:293.184000px;}
.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;}
}
.ws8e{word-spacing:-50.665640px;}
.ws1{word-spacing:-43.200000px;}
.ws1b{word-spacing:-22.440000px;}
.wsdc{word-spacing:-19.586785px;}
.wsdd{word-spacing:-19.526144px;}
.wsac{word-spacing:-19.483696px;}
.wsab{word-spacing:-19.404864px;}
.wsf0{word-spacing:-19.380000px;}
.ws1c{word-spacing:-16.830000px;}
.wsf1{word-spacing:-14.535000px;}
.wsaa{word-spacing:-14.108569px;}
.wsc5{word-spacing:-14.070748px;}
.ws2{word-spacing:-13.819080px;}
.ws90{word-spacing:-11.424000px;}
.ws1d{word-spacing:-10.579200px;}
.ws3a{word-spacing:-5.016000px;}
.wsc{word-spacing:-4.212000px;}
.ws23{word-spacing:-3.648000px;}
.ws78{word-spacing:-3.591000px;}
.ws51{word-spacing:-3.534000px;}
.ws36{word-spacing:-3.477000px;}
.ws87{word-spacing:-3.420000px;}
.ws50{word-spacing:-3.363000px;}
.ws3b{word-spacing:-3.306000px;}
.wsc3{word-spacing:-3.135000px;}
.wseb{word-spacing:-3.021000px;}
.ws58{word-spacing:-2.964000px;}
.wse0{word-spacing:-2.907000px;}
.wsa7{word-spacing:-2.736000px;}
.ws28{word-spacing:-2.679000px;}
.wsb6{word-spacing:-2.508000px;}
.wsa1{word-spacing:-2.451000px;}
.wsb7{word-spacing:-2.337000px;}
.wsbb{word-spacing:-2.280000px;}
.wse9{word-spacing:-2.166000px;}
.ws31{word-spacing:-2.109000px;}
.wsa8{word-spacing:-2.052000px;}
.ws44{word-spacing:-1.995000px;}
.ws4b{word-spacing:-1.938000px;}
.wsd2{word-spacing:-1.881000px;}
.ws3c{word-spacing:-1.824000px;}
.wscf{word-spacing:-1.767000px;}
.ws6e{word-spacing:-1.710000px;}
.ws5e{word-spacing:-1.653000px;}
.ws9a{word-spacing:-1.596000px;}
.wsb2{word-spacing:-1.539000px;}
.ws5f{word-spacing:-1.482000px;}
.ws69{word-spacing:-1.425000px;}
.ws5d{word-spacing:-1.368000px;}
.wse1{word-spacing:-1.311000px;}
.ws2d{word-spacing:-1.254000px;}
.ws54{word-spacing:-1.197000px;}
.wsf4{word-spacing:-1.140000px;}
.ws9b{word-spacing:-1.083000px;}
.wsb1{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.969000px;}
.wsd1{word-spacing:-0.912000px;}
.ws79{word-spacing:-0.900000px;}
.ws88{word-spacing:-0.855000px;}
.wsc4{word-spacing:-0.798000px;}
.ws86{word-spacing:-0.741000px;}
.wsf2{word-spacing:-0.684000px;}
.wsf{word-spacing:-0.570000px;}
.ws18{word-spacing:-0.513000px;}
.wsb4{word-spacing:-0.456000px;}
.wsb0{word-spacing:-0.399000px;}
.wsb5{word-spacing:-0.342000px;}
.ws99{word-spacing:-0.306137px;}
.wse6{word-spacing:-0.285000px;}
.wsce{word-spacing:-0.241913px;}
.wsad{word-spacing:-0.228294px;}
.ws67{word-spacing:-0.228000px;}
.wscb{word-spacing:-0.227682px;}
.wse5{word-spacing:-0.121280px;}
.wscd{word-spacing:-0.120956px;}
.ws4e{word-spacing:-0.114000px;}
.wsdb{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws62{word-spacing:0.057000px;}
.ws34{word-spacing:0.114000px;}
.wscc{word-spacing:0.136609px;}
.wsaf{word-spacing:0.136976px;}
.ws3d{word-spacing:0.171000px;}
.ws9c{word-spacing:0.228000px;}
.wsae{word-spacing:0.228294px;}
.ws2a{word-spacing:0.285000px;}
.wsd4{word-spacing:0.294000px;}
.ws55{word-spacing:0.342000px;}
.ws57{word-spacing:0.399000px;}
.wsfa{word-spacing:0.432000px;}
.wsf3{word-spacing:0.456000px;}
.wsa0{word-spacing:0.513000px;}
.ws8{word-spacing:0.540000px;}
.ws89{word-spacing:0.570000px;}
.ws3f{word-spacing:0.576000px;}
.ws9{word-spacing:0.594000px;}
.wsa4{word-spacing:0.627000px;}
.ws7e{word-spacing:0.630000px;}
.ws41{word-spacing:0.648000px;}
.wse8{word-spacing:0.684000px;}
.ws45{word-spacing:0.741000px;}
.wsb3{word-spacing:0.798000px;}
.ws37{word-spacing:0.855000px;}
.ws76{word-spacing:0.912000px;}
.ws9f{word-spacing:0.966000px;}
.ws71{word-spacing:0.969000px;}
.ws19{word-spacing:1.008000px;}
.wsa3{word-spacing:1.026000px;}
.ws1f{word-spacing:1.080000px;}
.ws70{word-spacing:1.083000px;}
.ws4{word-spacing:1.152000px;}
.ws4f{word-spacing:1.197000px;}
.wsfe{word-spacing:1.254000px;}
.ws46{word-spacing:1.311000px;}
.ws1e{word-spacing:1.344000px;}
.wsa9{word-spacing:1.368000px;}
.wsef{word-spacing:1.425000px;}
.ws5c{word-spacing:1.440000px;}
.ws3e{word-spacing:1.482000px;}
.ws39{word-spacing:1.539000px;}
.wsf8{word-spacing:1.596000px;}
.wsfc{word-spacing:1.653000px;}
.ws60{word-spacing:1.710000px;}
.wsd{word-spacing:1.728000px;}
.ws2e{word-spacing:1.767000px;}
.ws40{word-spacing:1.800000px;}
.ws17{word-spacing:1.824000px;}
.ws77{word-spacing:1.860000px;}
.ws43{word-spacing:1.881000px;}
.ws2c{word-spacing:1.995000px;}
.ws9d{word-spacing:2.109000px;}
.ws61{word-spacing:2.166000px;}
.wse2{word-spacing:2.223000px;}
.ws42{word-spacing:2.232000px;}
.ws47{word-spacing:2.337000px;}
.ws5{word-spacing:2.352000px;}
.ws6{word-spacing:2.376000px;}
.wsde{word-spacing:2.394000px;}
.ws32{word-spacing:2.451000px;}
.wsf6{word-spacing:2.508000px;}
.ws63{word-spacing:2.565000px;}
.ws4d{word-spacing:2.622000px;}
.wsee{word-spacing:2.679000px;}
.ws26{word-spacing:2.736000px;}
.wsa5{word-spacing:2.793000px;}
.ws21{word-spacing:2.850000px;}
.ws56{word-spacing:2.907000px;}
.wsb9{word-spacing:2.964000px;}
.wsbf{word-spacing:3.021000px;}
.wsf7{word-spacing:3.078000px;}
.ws12{word-spacing:3.192000px;}
.ws6b{word-spacing:3.249000px;}
.wsb{word-spacing:3.294000px;}
.ws10{word-spacing:3.363000px;}
.ws11{word-spacing:3.420000px;}
.wsed{word-spacing:3.477000px;}
.wsa{word-spacing:3.510000px;}
.ws25{word-spacing:3.648000px;}
.ws20{word-spacing:3.705000px;}
.ws64{word-spacing:3.762000px;}
.ws98{word-spacing:3.819000px;}
.ws65{word-spacing:3.876000px;}
.ws24{word-spacing:3.933000px;}
.ws38{word-spacing:3.990000px;}
.ws29{word-spacing:4.104000px;}
.ws96{word-spacing:4.161000px;}
.ws27{word-spacing:4.332000px;}
.wsb8{word-spacing:4.446000px;}
.wse{word-spacing:4.503000px;}
.wsec{word-spacing:4.617000px;}
.ws8a{word-spacing:4.674000px;}
.wse4{word-spacing:4.788000px;}
.ws73{word-spacing:4.845000px;}
.wsea{word-spacing:4.902000px;}
.ws2f{word-spacing:5.016000px;}
.ws35{word-spacing:5.187000px;}
.ws2b{word-spacing:5.244000px;}
.wsdf{word-spacing:5.358000px;}
.wsd8{word-spacing:5.472000px;}
.wsbe{word-spacing:5.529000px;}
.wsd9{word-spacing:5.586000px;}
.wsc2{word-spacing:5.757000px;}
.wsbd{word-spacing:5.814000px;}
.wsfb{word-spacing:5.928000px;}
.ws30{word-spacing:5.985000px;}
.ws4a{word-spacing:6.042000px;}
.wsba{word-spacing:6.099000px;}
.ws97{word-spacing:6.213000px;}
.ws75{word-spacing:6.270000px;}
.wsc0{word-spacing:6.327000px;}
.wsf5{word-spacing:6.384000px;}
.ws5a{word-spacing:6.555000px;}
.wsda{word-spacing:6.726000px;}
.ws49{word-spacing:6.783000px;}
.wsa2{word-spacing:6.897000px;}
.wse3{word-spacing:7.011000px;}
.wsa6{word-spacing:7.125000px;}
.ws15{word-spacing:7.182000px;}
.wsd5{word-spacing:7.239000px;}
.wsc1{word-spacing:7.353000px;}
.wsd7{word-spacing:7.467000px;}
.ws14{word-spacing:7.638000px;}
.ws16{word-spacing:7.695000px;}
.wse7{word-spacing:7.752000px;}
.ws100{word-spacing:7.809000px;}
.ws102{word-spacing:7.866000px;}
.wsd0{word-spacing:8.037000px;}
.ws13{word-spacing:8.151000px;}
.wsff{word-spacing:8.322000px;}
.ws7f{word-spacing:8.379000px;}
.ws101{word-spacing:8.436000px;}
.ws6d{word-spacing:8.493000px;}
.ws48{word-spacing:8.550000px;}
.ws1a{word-spacing:8.592000px;}
.wsd6{word-spacing:8.721000px;}
.ws72{word-spacing:9.177000px;}
.ws7{word-spacing:9.180000px;}
.ws59{word-spacing:9.348000px;}
.wsf9{word-spacing:9.633000px;}
.ws4c{word-spacing:10.032000px;}
.ws68{word-spacing:10.089000px;}
.ws6c{word-spacing:10.203000px;}
.ws106{word-spacing:10.488000px;}
.ws66{word-spacing:10.716000px;}
.ws33{word-spacing:10.944000px;}
.ws6f{word-spacing:11.001000px;}
.ws105{word-spacing:11.172000px;}
.ws53{word-spacing:12.654000px;}
.ws52{word-spacing:13.509000px;}
.ws0{word-spacing:14.196000px;}
.ws22{word-spacing:14.307000px;}
.wsfd{word-spacing:15.276000px;}
.ws104{word-spacing:18.639000px;}
.ws103{word-spacing:19.893000px;}
.ws80{word-spacing:56.928000px;}
.ws7c{word-spacing:58.704000px;}
.ws85{word-spacing:59.040000px;}
.ws7d{word-spacing:73.584000px;}
.ws7a{word-spacing:92.208000px;}
.ws8d{word-spacing:97.014752px;}
.ws8b{word-spacing:97.045366px;}
.ws8c{word-spacing:97.708662px;}
.ws6a{word-spacing:98.685000px;}
.ws8f{word-spacing:100.321029px;}
.ws7b{word-spacing:103.344000px;}
.ws83{word-spacing:107.616000px;}
.ws84{word-spacing:122.496000px;}
.ws81{word-spacing:126.192000px;}
.wsd3{word-spacing:127.296000px;}
.ws9e{word-spacing:134.256000px;}
.wsc8{word-spacing:143.106000px;}
.wsc7{word-spacing:145.881600px;}
.ws94{word-spacing:149.136000px;}
.wsc9{word-spacing:158.916000px;}
.ws93{word-spacing:162.048000px;}
.ws92{word-spacing:167.712000px;}
.wsca{word-spacing:174.726000px;}
.ws95{word-spacing:178.896000px;}
.ws5b{word-spacing:213.792000px;}
.wsc6{word-spacing:315.504000px;}
.wsbc{word-spacing:332.304000px;}
.ws91{word-spacing:344.304000px;}
.ws82{word-spacing:802.752000px;}
._6d{margin-left:-38.589000px;}
._a{margin-left:-27.702000px;}
._6b{margin-left:-22.002000px;}
._69{margin-left:-20.862000px;}
._61{margin-left:-16.530000px;}
._9{margin-left:-14.364000px;}
._6{margin-left:-4.043040px;}
._0{margin-left:-2.520000px;}
._1{margin-left:-1.440360px;}
._4{width:1.824000px;}
._7{width:2.840340px;}
._2{width:3.876000px;}
._6c{width:5.601360px;}
._3{width:8.094000px;}
._8{width:14.250000px;}
._6a{width:18.000000px;}
._5{width:38.016000px;}
._3a{width:45.984000px;}
._38{width:57.504000px;}
._2b{width:61.344000px;}
._45{width:72.384000px;}
._46{width:74.064000px;}
._2a{width:81.984000px;}
._2c{width:86.496000px;}
._29{width:88.944000px;}
._34{width:93.360000px;}
._31{width:96.384000px;}
._11{width:100.368000px;}
._10{width:103.344000px;}
._12{width:106.752000px;}
._44{width:110.304000px;}
._30{width:111.744000px;}
._3f{width:113.184000px;}
._1d{width:115.248000px;}
._5b{width:117.047820px;}
._33{width:118.704000px;}
._13{width:121.632000px;}
._16{width:122.928000px;}
._5c{width:124.532865px;}
._17{width:129.312000px;}
._c{width:130.800000px;}
._3b{width:132.576000px;}
._5a{width:134.187846px;}
._1e{width:136.512000px;}
._1a{width:137.808000px;}
._18{width:144.192000px;}
._24{width:145.824000px;}
._15{width:148.464000px;}
._58{width:149.813145px;}
._23{width:154.032000px;}
._32{width:157.536000px;}
._b{width:166.992000px;}
._59{width:169.380389px;}
._20{width:171.552000px;}
._60{width:175.056000px;}
._5f{width:179.376000px;}
._64{width:181.356000px;}
._1f{width:183.072000px;}
._22{width:184.368000px;}
._68{width:187.476000px;}
._65{width:188.496000px;}
._66{width:190.236000px;}
._5e{width:191.856000px;}
._35{width:193.056000px;}
._67{width:196.656000px;}
._36{width:199.584000px;}
._40{width:206.784000px;}
._1c{width:207.792000px;}
._1b{width:225.072000px;}
._39{width:230.976000px;}
._e{width:238.608000px;}
._21{width:244.272000px;}
._14{width:262.512000px;}
._d{width:264.144000px;}
._28{width:269.904000px;}
._f{width:279.792000px;}
._37{width:286.032000px;}
._27{width:323.904000px;}
._3e{width:329.904000px;}
._43{width:341.184000px;}
._2f{width:344.784000px;}
._63{width:347.424000px;}
._62{width:350.064000px;}
._26{width:351.744000px;}
._19{width:353.712000px;}
._2e{width:360.864000px;}
._5d{width:362.064000px;}
._2d{width:374.304000px;}
._42{width:379.584000px;}
._3d{width:381.984000px;}
._4a{width:565.632000px;}
._4b{width:574.752000px;}
._55{width:595.872000px;}
._56{width:620.832000px;}
._4e{width:629.472000px;}
._4f{width:645.792000px;}
._4c{width:656.832000px;}
._4d{width:666.432000px;}
._50{width:681.312000px;}
._47{width:684.432000px;}
._51{width:687.552000px;}
._25{width:700.704000px;}
._52{width:720.192000px;}
._53{width:733.632000px;}
._49{width:757.152000px;}
._54{width:774.432000px;}
._57{width:815.712000px;}
._48{width:825.312000px;}
._3c{width:1235.952000px;}
._41{width:1250.832000px;}
.fc1{color:rgb(175,128,6);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:33.060000px;}
.fs0{font-size:36.000000px;}
.fs4{font-size:38.280000px;}
.fsf{font-size:42.000000px;}
.fs16{font-size:42.750000px;}
.fs13{font-size:43.350000px;}
.fsd{font-size:45.000000px;}
.fs14{font-size:45.536400px;}
.fs11{font-size:45.658800px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:49.500000px;}
.fs6{font-size:51.000000px;}
.fs10{font-size:51.022800px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fse{font-size:60.000000px;}
.fs15{font-size:60.478200px;}
.fs12{font-size:60.640200px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:135.000000px;}
.fs2{font-size:180.000000px;}
.fsb{font-size:256.426800px;}
.y0{bottom:0.000000px;}
.y246{bottom:5.291400px;}
.y244{bottom:5.469750px;}
.y1b{bottom:32.076000px;}
.y4c{bottom:32.077950px;}
.y2{bottom:42.519750px;}
.y1{bottom:42.572850px;}
.y1a{bottom:42.876000px;}
.y4b{bottom:42.877950px;}
.y2c6{bottom:80.708400px;}
.y277{bottom:80.759550px;}
.y4a{bottom:80.773350px;}
.yc1{bottom:80.784450px;}
.y17{bottom:80.787300px;}
.y125{bottom:80.787450px;}
.y249{bottom:80.787750px;}
.y74{bottom:80.788350px;}
.y18c{bottom:80.821800px;}
.y20c{bottom:80.894700px;}
.y103{bottom:81.260250px;}
.ye2{bottom:83.086050px;}
.yc0{bottom:91.287450px;}
.y1e2{bottom:92.480100px;}
.y49{bottom:95.524350px;}
.y73{bottom:95.539350px;}
.y276{bottom:98.258550px;}
.y2c5{bottom:98.292900px;}
.y248{bottom:98.457750px;}
.y20b{bottom:98.578950px;}
.y18b{bottom:98.734050px;}
.y102{bottom:102.907800px;}
.ye1{bottom:104.733450px;}
.y48{bottom:106.027350px;}
.y275{bottom:115.757550px;}
.y2c4{bottom:115.877400px;}
.y20a{bottom:116.263200px;}
.y47{bottom:116.530350px;}
.y18a{bottom:116.646300px;}
.y101{bottom:117.912300px;}
.y126{bottom:117.991950px;}
.ye0{bottom:119.737950px;}
.y1e1{bottom:120.684000px;}
.y46{bottom:127.033350px;}
.y1ab{bottom:129.202950px;}
.ybf{bottom:129.708750px;}
.y29c{bottom:130.257000px;}
.y274{bottom:133.256550px;}
.y9c{bottom:133.493700px;}
.y209{bottom:133.947450px;}
.y189{bottom:134.558550px;}
.y2c3{bottom:136.853400px;}
.y45{bottom:137.536350px;}
.y247{bottom:138.030000px;}
.y100{bottom:143.464500px;}
.y124{bottom:144.114300px;}
.ydf{bottom:145.284900px;}
.y1aa{bottom:146.602200px;}
.ybe{bottom:147.108000px;}
.y1e0{bottom:147.242250px;}
.y29b{bottom:147.656250px;}
.y44{bottom:148.039350px;}
.y273{bottom:150.755550px;}
.y9b{bottom:150.892950px;}
.y208{bottom:151.631700px;}
.y188{bottom:152.470800px;}
.y2c2{bottom:154.437900px;}
.y243{bottom:159.166500px;}
.y1a9{bottom:164.001450px;}
.ybd{bottom:164.507250px;}
.y29a{bottom:165.055500px;}
.yff{bottom:167.332500px;}
.y272{bottom:168.254550px;}
.y9a{bottom:168.292200px;}
.yde{bottom:169.152900px;}
.y207{bottom:169.315950px;}
.y72{bottom:169.812300px;}
.y123{bottom:170.106300px;}
.y187{bottom:170.383050px;}
.y1df{bottom:173.800500px;}
.y2c1{bottom:175.413900px;}
.y14d{bottom:181.181100px;}
.y1a8{bottom:181.400700px;}
.y299{bottom:182.454750px;}
.y99{bottom:185.691450px;}
.y206{bottom:187.000200px;}
.y71{bottom:187.211550px;}
.y245{bottom:187.822200px;}
.y242{bottom:188.000550px;}
.y186{bottom:188.295300px;}
.ybc{bottom:190.411200px;}
.yfe{bottom:191.200500px;}
.y2c0{bottom:192.998400px;}
.ydd{bottom:193.020900px;}
.y43{bottom:193.363350px;}
.y122{bottom:196.098300px;}
.y14c{bottom:198.580350px;}
.y1a7{bottom:198.799950px;}
.y298{bottom:199.854000px;}
.y1de{bottom:200.358750px;}
.y23b{bottom:202.625550px;}
.y98{bottom:203.090700px;}
.y271{bottom:203.241450px;}
.y70{bottom:204.610800px;}
.y205{bottom:204.684450px;}
.y185{bottom:206.207550px;}
.y2bf{bottom:210.582900px;}
.y42{bottom:210.762600px;}
.yfd{bottom:215.068500px;}
.y14b{bottom:215.979600px;}
.y1a6{bottom:216.199200px;}
.ydc{bottom:216.888900px;}
.y97{bottom:220.489950px;}
.y6f{bottom:222.010050px;}
.y121{bottom:222.090300px;}
.y204{bottom:222.368700px;}
.y184{bottom:224.119800px;}
.ybb{bottom:225.943200px;}
.y1dd{bottom:226.917000px;}
.y41{bottom:228.161850px;}
.y2be{bottom:231.558900px;}
.y14a{bottom:233.378850px;}
.y1a5{bottom:233.598450px;}
.y297{bottom:234.261900px;}
.y23c{bottom:236.161939px;}
.y233{bottom:237.576649px;}
.y96{bottom:237.889200px;}
.yfc{bottom:238.936500px;}
.y6e{bottom:239.409300px;}
.y203{bottom:240.052950px;}
.y270{bottom:240.373950px;}
.ydb{bottom:240.756900px;}
.y183{bottom:242.032050px;}
.yba{bottom:243.342450px;}
.y236{bottom:243.637855px;}
.y239{bottom:244.516786px;}
.y40{bottom:245.561100px;}
.y120{bottom:248.082300px;}
.y2bd{bottom:249.143400px;}
.y234{bottom:249.173984px;}
.y149{bottom:250.778100px;}
.y235{bottom:250.954677px;}
.y1a4{bottom:250.997700px;}
.y1dc{bottom:253.475250px;}
.y6d{bottom:256.808550px;}
.y232{bottom:257.552374px;}
.y26f{bottom:257.716200px;}
.y202{bottom:257.737200px;}
.y182{bottom:259.944300px;}
.yb9{bottom:260.741700px;}
.y23a{bottom:262.346548px;}
.yfb{bottom:262.804500px;}
.y3f{bottom:262.960350px;}
.y16{bottom:263.722950px;}
.yda{bottom:264.624900px;}
.y95{bottom:268.045050px;}
.y148{bottom:268.177350px;}
.y1a3{bottom:268.396950px;}
.y23d{bottom:269.515692px;}
.y2bc{bottom:270.119400px;}
.y230{bottom:271.113038px;}
.y296{bottom:272.925450px;}
.y11f{bottom:274.074300px;}
.y238{bottom:274.126518px;}
.y26e{bottom:275.058450px;}
.y201{bottom:275.421450px;}
.y181{bottom:277.856550px;}
.yb8{bottom:278.140950px;}
.y231{bottom:280.027918px;}
.y1db{bottom:280.319100px;}
.y3e{bottom:280.359600px;}
.y15{bottom:281.122200px;}
.y147{bottom:285.576600px;}
.y1a2{bottom:285.796200px;}
.yfa{bottom:286.672500px;}
.y6c{bottom:286.961550px;}
.y11d{bottom:287.070300px;}
.y2bb{bottom:287.703900px;}
.yd9{bottom:288.492900px;}
.y295{bottom:290.324700px;}
.y26d{bottom:292.400700px;}
.y200{bottom:293.105700px;}
.yb7{bottom:295.540200px;}
.y180{bottom:295.768800px;}
.y237{bottom:297.138554px;}
.y3d{bottom:297.758850px;}
.y11e{bottom:300.078300px;}
.y94{bottom:300.314550px;}
.y23e{bottom:302.869445px;}
.y146{bottom:302.990850px;}
.y1a1{bottom:303.195450px;}
.y2ba{bottom:305.288400px;}
.y1da{bottom:306.599100px;}
.y294{bottom:307.723950px;}
.y6b{bottom:308.308050px;}
.y26c{bottom:309.742950px;}
.yf9{bottom:310.540500px;}
.y1ff{bottom:310.789950px;}
.y14{bottom:311.275200px;}
.yd8{bottom:312.360900px;}
.yb6{bottom:312.939450px;}
.y17f{bottom:313.681050px;}
.y3c{bottom:315.158100px;}
.y22d{bottom:315.881491px;}
.y93{bottom:317.713800px;}
.y1d8{bottom:319.595100px;}
.y145{bottom:320.390100px;}
.y1a0{bottom:320.594700px;}
.y293{bottom:325.123200px;}
.y2b9{bottom:326.264400px;}
.y26b{bottom:327.085200px;}
.y1fe{bottom:328.474200px;}
.y13{bottom:328.674450px;}
.y6a{bottom:329.654550px;}
.yb5{bottom:330.338700px;}
.y17e{bottom:331.593300px;}
.y3b{bottom:332.557350px;}
.y1d9{bottom:332.603100px;}
.yf8{bottom:334.408500px;}
.y92{bottom:335.113050px;}
.yd7{bottom:336.228900px;}
.y23f{bottom:336.405834px;}
.y144{bottom:337.789350px;}
.y19f{bottom:337.993950px;}
.y11c{bottom:341.358600px;}
.y292{bottom:342.522450px;}
.y22c{bottom:343.174039px;}
.y2b8{bottom:343.848900px;}
.y26a{bottom:344.427450px;}
.y12{bottom:346.073700px;}
.y1fd{bottom:346.158450px;}
.yb4{bottom:347.737950px;}
.y17d{bottom:349.505550px;}
.y228{bottom:349.589100px;}
.y3a{bottom:349.956600px;}
.y91{bottom:352.512300px;}
.y143{bottom:355.188600px;}
.y19e{bottom:355.393200px;}
.y22f{bottom:355.832941px;}
.yf7{bottom:358.276500px;}
.y11b{bottom:358.757850px;}
.y69{bottom:359.508300px;}
.y291{bottom:359.945700px;}
.y269{bottom:361.769700px;}
.y11{bottom:363.472950px;}
.y1fc{bottom:363.842700px;}
.y2b7{bottom:364.824900px;}
.yb3{bottom:365.137200px;}
.y39{bottom:367.355850px;}
.y17c{bottom:367.417800px;}
.y22e{bottom:369.382190px;}
.y240{bottom:369.759587px;}
.y90{bottom:369.911550px;}
.y142{bottom:372.587850px;}
.y19d{bottom:372.792450px;}
.y11a{bottom:376.157100px;}
.yd6{bottom:376.232850px;}
.y68{bottom:376.907550px;}
.y290{bottom:377.344950px;}
.y268{bottom:379.111950px;}
.y10{bottom:380.872200px;}
.y1fb{bottom:381.526950px;}
.yf6{bottom:382.144500px;}
.y1d7{bottom:382.389750px;}
.y22a{bottom:382.406363px;}
.y2b6{bottom:382.409400px;}
.yb2{bottom:382.536450px;}
.y38{bottom:384.755100px;}
.y17b{bottom:385.330050px;}
.y8f{bottom:387.310800px;}
.y141{bottom:389.987100px;}
.y119{bottom:393.556350px;}
.yd5{bottom:393.632100px;}
.y67{bottom:394.306800px;}
.y28f{bottom:394.744200px;}
.y267{bottom:396.454200px;}
.yf{bottom:398.271450px;}
.y1fa{bottom:399.211200px;}
.y229{bottom:399.345777px;}
.y1d6{bottom:399.789000px;}
.yb1{bottom:399.935700px;}
.y2b5{bottom:399.993900px;}
.y37{bottom:402.154350px;}
.y241{bottom:403.113341px;}
.y17a{bottom:403.242300px;}
.y8e{bottom:404.710050px;}
.y22b{bottom:405.418398px;}
.yf5{bottom:406.012500px;}
.y140{bottom:407.386350px;}
.y118{bottom:410.955600px;}
.yd4{bottom:411.031350px;}
.y66{bottom:411.709800px;}
.y19c{bottom:411.837450px;}
.y28e{bottom:412.143450px;}
.y266{bottom:413.796450px;}
.ye{bottom:415.670700px;}
.y1f9{bottom:416.895450px;}
.y1d5{bottom:417.188250px;}
.yb0{bottom:417.334950px;}
.y36{bottom:419.553600px;}
.y2b4{bottom:420.969900px;}
.y179{bottom:421.154550px;}
.y8d{bottom:422.109300px;}
.y13f{bottom:424.785600px;}
.y117{bottom:428.354850px;}
.yd3{bottom:428.430600px;}
.y65{bottom:429.109050px;}
.y28d{bottom:429.542700px;}
.y265{bottom:431.138700px;}
.y19b{bottom:433.485000px;}
.y1f8{bottom:434.579700px;}
.y1d4{bottom:434.587500px;}
.yaf{bottom:434.734200px;}
.y35{bottom:436.952850px;}
.y2b3{bottom:438.554400px;}
.y178{bottom:439.066800px;}
.y8c{bottom:439.508550px;}
.y227{bottom:439.631700px;}
.y13e{bottom:442.184850px;}
.y116{bottom:445.754100px;}
.yd2{bottom:445.829850px;}
.yf4{bottom:446.024550px;}
.y64{bottom:446.508300px;}
.y28c{bottom:446.941950px;}
.y264{bottom:448.480950px;}
.y19a{bottom:448.489500px;}
.y1d3{bottom:451.986750px;}
.yae{bottom:452.133450px;}
.y1f7{bottom:452.263950px;}
.y34{bottom:454.352100px;}
.y8b{bottom:456.907800px;}
.y177{bottom:456.979050px;}
.y226{bottom:457.301700px;}
.y2b2{bottom:459.530400px;}
.y13d{bottom:459.584100px;}
.y115{bottom:463.153350px;}
.yd1{bottom:463.229100px;}
.yf3{bottom:463.423800px;}
.y63{bottom:463.907550px;}
.y28b{bottom:464.341200px;}
.y263{bottom:465.823200px;}
.yd{bottom:467.863050px;}
.y1d2{bottom:469.386000px;}
.yad{bottom:469.532700px;}
.y1f6{bottom:469.948200px;}
.y33{bottom:471.751350px;}
.y8a{bottom:474.307050px;}
.y176{bottom:474.891300px;}
.y225{bottom:474.971700px;}
.y199{bottom:475.320450px;}
.y13c{bottom:476.983350px;}
.y2b1{bottom:477.114900px;}
.yf2{bottom:480.823050px;}
.y62{bottom:481.306800px;}
.y28a{bottom:481.740450px;}
.y262{bottom:483.165450px;}
.y1d1{bottom:486.785250px;}
.yac{bottom:486.931950px;}
.y1f5{bottom:487.632450px;}
.y114{bottom:489.057150px;}
.y32{bottom:489.150600px;}
.y89{bottom:491.706300px;}
.y224{bottom:492.641700px;}
.y175{bottom:492.803550px;}
.y13b{bottom:494.382600px;}
.yc{bottom:498.022050px;}
.y2b0{bottom:498.090900px;}
.yf1{bottom:498.222300px;}
.y61{bottom:498.706050px;}
.y289{bottom:499.139700px;}
.yd0{bottom:499.766100px;}
.y261{bottom:500.507700px;}
.y198{bottom:502.164450px;}
.y1d0{bottom:504.184500px;}
.yab{bottom:504.338100px;}
.y1f4{bottom:505.316700px;}
.y31{bottom:506.549850px;}
.y88{bottom:509.105550px;}
.y223{bottom:510.311700px;}
.y174{bottom:510.715800px;}
.y13a{bottom:511.781850px;}
.yb{bottom:515.423550px;}
.yf0{bottom:515.621550px;}
.y2af{bottom:515.675400px;}
.y288{bottom:516.538950px;}
.y260{bottom:517.849950px;}
.ycf{bottom:521.413500px;}
.y1cf{bottom:521.583750px;}
.y1f3{bottom:523.000950px;}
.y30{bottom:523.949100px;}
.y87{bottom:526.504800px;}
.y222{bottom:527.981700px;}
.y173{bottom:528.628050px;}
.y113{bottom:528.829200px;}
.y197{bottom:529.008450px;}
.y139{bottom:529.181100px;}
.ya{bottom:532.825050px;}
.y60{bottom:533.506050px;}
.y287{bottom:533.938200px;}
.y25f{bottom:535.192200px;}
.yce{bottom:536.418000px;}
.y2ae{bottom:536.651400px;}
.y1ce{bottom:538.983000px;}
.y1f2{bottom:540.685200px;}
.y2f{bottom:541.348350px;}
.yaa{bottom:543.383100px;}
.y86{bottom:543.904050px;}
.y221{bottom:545.651700px;}
.y172{bottom:546.540300px;}
.y138{bottom:546.580350px;}
.yef{bottom:547.897800px;}
.y9{bottom:550.226550px;}
.y286{bottom:551.337450px;}
.y25e{bottom:552.534450px;}
.y2ad{bottom:554.235900px;}
.y196{bottom:555.852450px;}
.y1cd{bottom:556.382250px;}
.y112{bottom:558.165843px;}
.y1f1{bottom:558.369450px;}
.y2e{bottom:558.747600px;}
.y85{bottom:561.303300px;}
.ycd{bottom:561.970350px;}
.y220{bottom:563.321700px;}
.y137{bottom:563.979600px;}
.y171{bottom:564.452550px;}
.ya9{bottom:565.035150px;}
.y285{bottom:568.736700px;}
.yee{bottom:569.545350px;}
.y25d{bottom:569.876700px;}
.y5f{bottom:570.428100px;}
.y2ac{bottom:571.820400px;}
.y107{bottom:573.345126px;}
.y1cc{bottom:573.781500px;}
.y1f0{bottom:576.053700px;}
.y2d{bottom:576.146850px;}
.y84{bottom:578.702550px;}
.y21f{bottom:580.991700px;}
.y136{bottom:581.378850px;}
.y170{bottom:582.364800px;}
.y195{bottom:582.696450px;}
.yed{bottom:584.549850px;}
.ycc{bottom:585.838350px;}
.y284{bottom:586.135950px;}
.y25c{bottom:587.218950px;}
.y5e{bottom:587.827350px;}
.ya8{bottom:590.581800px;}
.y1cb{bottom:591.180750px;}
.y2ab{bottom:592.796400px;}
.y2c{bottom:593.546100px;}
.y1ef{bottom:593.737950px;}
.y83{bottom:596.101800px;}
.y108{bottom:596.981438px;}
.y21e{bottom:598.661700px;}
.y135{bottom:598.778100px;}
.y16f{bottom:600.277050px;}
.y283{bottom:603.535200px;}
.y25b{bottom:604.561200px;}
.y5d{bottom:605.226600px;}
.y1ca{bottom:608.580000px;}
.y194{bottom:609.540450px;}
.ycb{bottom:609.706350px;}
.yec{bottom:610.098450px;}
.y8{bottom:610.146300px;}
.y2aa{bottom:610.380900px;}
.y2b{bottom:610.945350px;}
.y1ee{bottom:611.422200px;}
.y82{bottom:613.501050px;}
.ya7{bottom:615.444300px;}
.y134{bottom:616.177350px;}
.y21d{bottom:616.331700px;}
.y109{bottom:620.617750px;}
.y282{bottom:620.934450px;}
.y25a{bottom:621.903450px;}
.y5c{bottom:622.625850px;}
.y106{bottom:624.367926px;}
.y2a{bottom:628.344600px;}
.y1ed{bottom:629.106450px;}
.y2a9{bottom:631.356900px;}
.yca{bottom:633.574350px;}
.y133{bottom:633.584250px;}
.yeb{bottom:633.966450px;}
.y21c{bottom:634.001700px;}
.y193{bottom:636.384450px;}
.y7{bottom:637.243200px;}
.y281{bottom:638.333700px;}
.y259{bottom:639.245700px;}
.y5b{bottom:640.025100px;}
.y16e{bottom:640.048800px;}
.ya6{bottom:640.306800px;}
.y10a{bottom:644.254062px;}
.y29{bottom:645.743850px;}
.y1ec{bottom:646.790700px;}
.y81{bottom:648.301050px;}
.y2a8{bottom:648.941400px;}
.y132{bottom:650.983500px;}
.y21b{bottom:651.671700px;}
.y1c9{bottom:651.885750px;}
.y280{bottom:655.732950px;}
.y258{bottom:656.587950px;}
.y5a{bottom:657.424350px;}
.yc9{bottom:657.442350px;}
.yea{bottom:657.834450px;}
.y28{bottom:663.143100px;}
.y192{bottom:663.228450px;}
.y1eb{bottom:664.474950px;}
.y2a7{bottom:666.525900px;}
.y16c{bottom:667.252800px;}
.y169{bottom:667.431150px;}
.y80{bottom:667.552950px;}
.y10b{bottom:667.890374px;}
.y21a{bottom:669.341700px;}
.y6{bottom:672.916500px;}
.y27f{bottom:673.132200px;}
.y257{bottom:673.930200px;}
.y59{bottom:674.823600px;}
.y1c8{bottom:680.088900px;}
.y1c6{bottom:680.266800px;}
.y27{bottom:680.553300px;}
.ya5{bottom:681.303150px;}
.yc8{bottom:681.310350px;}
.ye9{bottom:681.702450px;}
.y1ea{bottom:682.159200px;}
.y2a6{bottom:684.110400px;}
.y219{bottom:687.011700px;}
.y131{bottom:690.028500px;}
.y191{bottom:690.072450px;}
.y27e{bottom:690.531450px;}
.y16b{bottom:690.617100px;}
.y16a{bottom:690.795450px;}
.y168{bottom:690.973950px;}
.y256{bottom:691.272450px;}
.y10c{bottom:691.526686px;}
.y58{bottom:692.222850px;}
.y7f{bottom:695.500800px;}
.y26{bottom:697.952550px;}
.ya4{bottom:698.702400px;}
.y1e9{bottom:699.843450px;}
.y1c7{bottom:703.390800px;}
.y1c5{bottom:703.568550px;}
.y218{bottom:704.681700px;}
.y2a5{bottom:705.086400px;}
.yc7{bottom:705.178350px;}
.y161{bottom:705.420450px;}
.ye8{bottom:705.570450px;}
.y27d{bottom:707.930700px;}
.y255{bottom:708.614700px;}
.y57{bottom:709.622100px;}
.y130{bottom:711.676050px;}
.y10d{bottom:715.162999px;}
.y25{bottom:715.351800px;}
.ya3{bottom:716.101650px;}
.y190{bottom:716.916450px;}
.y1be{bottom:718.154550px;}
.y7e{bottom:719.368800px;}
.y5{bottom:720.916500px;}
.y217{bottom:722.351700px;}
.y2a4{bottom:722.670900px;}
.y27c{bottom:725.329950px;}
.y254{bottom:725.956950px;}
.y12f{bottom:726.680550px;}
.yc6{bottom:729.046350px;}
.ye7{bottom:729.438450px;}
.y24{bottom:732.751050px;}
.ya2{bottom:733.500900px;}
.y105{bottom:737.638542px;}
.y10e{bottom:738.633487px;}
.y162{bottom:738.956839px;}
.y1e8{bottom:739.472700px;}
.y56{bottom:739.775100px;}
.y216{bottom:740.021700px;}
.y27b{bottom:742.729200px;}
.y7d{bottom:743.236800px;}
.y253{bottom:743.299200px;}
.y2a3{bottom:743.646900px;}
.y18f{bottom:743.760450px;}
.y15c{bottom:746.803451px;}
.y159{bottom:748.047653px;}
.y23{bottom:750.150300px;}
.ya1{bottom:750.900150px;}
.y1bf{bottom:751.601036px;}
.y15a{bottom:751.791675px;}
.yc5{bottom:752.914350px;}
.y12e{bottom:753.090150px;}
.ye6{bottom:753.306450px;}
.y155{bottom:754.999206px;}
.y18d{bottom:757.188450px;}
.y156{bottom:757.670246px;}
.y215{bottom:757.691700px;}
.y15f{bottom:758.937277px;}
.y158{bottom:759.279718px;}
.y1b9{bottom:759.415977px;}
.y1b7{bottom:759.598122px;}
.y27a{bottom:760.128450px;}
.y252{bottom:760.641450px;}
.y55{bottom:761.121600px;}
.y2a2{bottom:761.231400px;}
.y1e7{bottom:761.411400px;}
.y10f{bottom:762.269799px;}
.y15e{bottom:763.400425px;}
.y15b{bottom:765.169703px;}
.y1b5{bottom:765.643079px;}
.y1b8{bottom:765.995986px;}
.y1bb{bottom:766.007371px;}
.y7c{bottom:767.104800px;}
.y22{bottom:767.549550px;}
.ya0{bottom:768.299400px;}
.y4{bottom:768.916500px;}
.y18e{bottom:770.616450px;}
.y1ba{bottom:770.982222px;}
.y163{bottom:772.310592px;}
.y1b4{bottom:772.405235px;}
.y214{bottom:775.361700px;}
.y1e6{bottom:776.699400px;}
.yc4{bottom:776.782350px;}
.ye5{bottom:777.174450px;}
.y279{bottom:777.527700px;}
.y251{bottom:777.983700px;}
.y157{bottom:778.182461px;}
.y2a1{bottom:778.815900px;}
.y160{bottom:778.913002px;}
.y12d{bottom:779.082150px;}
.y54{bottom:782.468100px;}
.y1c0{bottom:784.865376px;}
.y9f{bottom:785.698650px;}
.y110{bottom:785.906111px;}
.y15d{bottom:789.791211px;}
.y1bd{bottom:790.016437px;}
.y7b{bottom:790.972800px;}
.y213{bottom:793.031700px;}
.y104{bottom:794.273850px;}
.y278{bottom:794.926950px;}
.y250{bottom:795.325950px;}
.y21{bottom:797.702550px;}
.yc3{bottom:800.650350px;}
.ye4{bottom:801.042450px;}
.y1b6{bottom:802.106352px;}
.y9e{bottom:803.097900px;}
.y1e5{bottom:803.650650px;}
.y12c{bottom:805.074150px;}
.y164{bottom:805.664345px;}
.y111{bottom:809.542423px;}
.y154{bottom:810.463233px;}
.y212{bottom:810.701700px;}
.y1bc{bottom:811.361625px;}
.y53{bottom:812.326200px;}
.y24f{bottom:812.668200px;}
.y2a0{bottom:813.973050px;}
.y7a{bottom:814.840800px;}
.y1c1{bottom:818.129716px;}
.yc2{bottom:824.518350px;}
.ye3{bottom:824.910450px;}
.y20{bottom:827.556300px;}
.y211{bottom:828.371700px;}
.y9d{bottom:829.001700px;}
.y52{bottom:829.725450px;}
.y1e4{bottom:829.926600px;}
.y24e{bottom:830.010450px;}
.y12b{bottom:831.066150px;}
.y1b2{bottom:838.581008px;}
.y79{bottom:838.708800px;}
.y165{bottom:839.200734px;}
.y1f{bottom:844.955550px;}
.y210{bottom:846.041700px;}
.y51{bottom:847.124700px;}
.y24d{bottom:847.352700px;}
.y1b0{bottom:849.782962px;}
.y29f{bottom:851.214450px;}
.y1c2{bottom:851.576202px;}
.y151{bottom:852.389426px;}
.y1e3{bottom:856.484850px;}
.y12a{bottom:857.058150px;}
.y150{bottom:858.633267px;}
.y1e{bottom:862.354800px;}
.y78{bottom:862.576800px;}
.y1b3{bottom:862.590075px;}
.y20f{bottom:863.711700px;}
.y152{bottom:864.157982px;}
.y50{bottom:864.523950px;}
.y24c{bottom:864.694950px;}
.y153{bottom:864.865693px;}
.y29e{bottom:868.798950px;}
.y166{bottom:872.554487px;}
.y1d{bottom:879.754050px;}
.y14e{bottom:880.207050px;}
.y20e{bottom:881.381700px;}
.y14f{bottom:881.816523px;}
.y4f{bottom:881.923200px;}
.y24b{bottom:882.037200px;}
.y129{bottom:883.050150px;}
.y1c3{bottom:884.840542px;}
.y77{bottom:886.444800px;}
.y1ac{bottom:888.204300px;}
.y1b1{bottom:892.120430px;}
.y1ae{bottom:893.008390px;}
.y127{bottom:896.046150px;}
.y1ad{bottom:898.347533px;}
.y75{bottom:898.384800px;}
.y20d{bottom:899.051700px;}
.y29d{bottom:899.137200px;}
.y4e{bottom:899.322450px;}
.y24a{bottom:899.379450px;}
.y167{bottom:905.908241px;}
.y128{bottom:909.054150px;}
.y76{bottom:910.324800px;}
.y1c{bottom:914.554200px;}
.y4d{bottom:916.721700px;}
.y1c4{bottom:918.104882px;}
.y1af{bottom:920.398535px;}
.y16d{bottom:925.758300px;}
.y3{bottom:952.091850px;}
.y19{bottom:958.780200px;}
.y18{bottom:982.135950px;}
.h2{height:24.480000px;}
.hb{height:24.943359px;}
.h3{height:25.787109px;}
.h6{height:26.030400px;}
.ha{height:27.432000px;}
.he{height:30.621094px;}
.h15{height:30.828000px;}
.h1a{height:31.702546px;}
.h1c{height:31.818900px;}
.h1d{height:32.618115px;}
.h19{height:32.705791px;}
.h12{height:33.030000px;}
.h10{height:35.232000px;}
.h17{height:35.554688px;}
.hf{height:35.568000px;}
.h1f{height:36.291600px;}
.h18{height:36.298935px;}
.h21{height:36.310200px;}
.h20{height:37.434000px;}
.h14{height:37.791000px;}
.h22{height:40.829590px;}
.h16{height:42.237000px;}
.h11{height:43.076040px;}
.h7{height:43.230469px;}
.h1e{height:43.321054px;}
.h1b{height:43.437096px;}
.h13{height:43.740000px;}
.h8{height:45.773438px;}
.hc{height:46.945312px;}
.h9{height:48.316406px;}
.h24{height:51.870000px;}
.hd{height:60.060000px;}
.h4{height:82.154297px;}
.h5{height:153.105469px;}
.h23{height:257.289000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:552.756000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:42.519750px;}
.x9{left:85.039350px;}
.x28{left:86.412586px;}
.x4c{left:87.718988px;}
.x15{left:89.682600px;}
.x1b{left:91.986000px;}
.x1a{left:93.390000px;}
.x19{left:95.214000px;}
.x18{left:97.026000px;}
.x21{left:99.034500px;}
.x22{left:100.954500px;}
.xe{left:102.049350px;}
.x20{left:103.234500px;}
.x1f{left:105.274500px;}
.xd{left:106.295250px;}
.x2c{left:108.481800px;}
.x16{left:110.167350px;}
.x2e{left:112.021650px;}
.x12{left:126.678600px;}
.x4{left:130.660650px;}
.x25{left:139.144650px;}
.x30{left:141.628800px;}
.x2{left:144.992100px;}
.x29{left:146.963894px;}
.xc{left:150.570000px;}
.x42{left:151.795050px;}
.x32{left:161.433305px;}
.x2b{left:169.465800px;}
.x43{left:172.662450px;}
.x4d{left:175.234200px;}
.x36{left:181.066589px;}
.x6{left:189.278400px;}
.x2a{left:190.813800px;}
.x4b{left:192.373650px;}
.x26{left:195.945782px;}
.x5{left:197.111550px;}
.x3a{left:200.871093px;}
.x52{left:217.090650px;}
.x3e{left:220.675597px;}
.x13{left:227.790600px;}
.x1c{left:229.422000px;}
.x1e{left:239.062500px;}
.x17{left:247.374000px;}
.x14{left:255.738600px;}
.x27{left:256.828738px;}
.x31{left:270.226810px;}
.x44{left:278.069400px;}
.x33{left:290.031315px;}
.x4e{left:297.079500px;}
.x45{left:302.325450px;}
.x37{left:309.835819px;}
.x23{left:322.282500px;}
.x7{left:325.105200px;}
.x3b{left:329.640324px;}
.x53{left:334.982400px;}
.x3f{left:349.444828px;}
.x10{left:351.786750px;}
.x8{left:375.125400px;}
.x50{left:398.272820px;}
.x3{left:399.685800px;}
.x46{left:403.452000px;}
.x34{left:418.629325px;}
.x47{left:424.676100px;}
.x4f{left:426.573600px;}
.x38{left:438.433829px;}
.x3c{left:458.238334px;}
.x11{left:460.911750px;}
.x54{left:463.397100px;}
.x40{left:478.042838px;}
.xa{left:502.342950px;}
.x24{left:519.094500px;}
.x51{left:526.870831px;}
.xf{left:527.911650px;}
.x48{left:529.191450px;}
.x1d{left:535.542000px;}
.x35{left:547.227335px;}
.x49{left:553.090800px;}
.x39{left:567.031840px;}
.x2d{left:584.695950px;}
.x3d{left:586.836344px;}
.x41{left:606.640849px;}
.x2f{left:637.795200px;}
.x4a{left:667.319250px;}
.x1{left:673.817100px;}
@media print{
.v8{vertical-align:-134.246656pt;}
.v3{vertical-align:-123.733333pt;}
.v7{vertical-align:-101.002467pt;}
.v6{vertical-align:-33.879139pt;}
.v1{vertical-align:-19.360000pt;}
.v9{vertical-align:-1.015467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.194667pt;}
.v4{vertical-align:16.681067pt;}
.v2{vertical-align:19.360000pt;}
.ls1b{letter-spacing:-4.352000pt;}
.ls15{letter-spacing:-2.517333pt;}
.ls4{letter-spacing:-1.493333pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.506667pt;}
.ls1f{letter-spacing:-0.446442pt;}
.ls24{letter-spacing:-0.445245pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.317475pt;}
.ls2c{letter-spacing:-0.253333pt;}
.ls21{letter-spacing:-0.202928pt;}
.ls22{letter-spacing:-0.121757pt;}
.ls26{letter-spacing:-0.121430pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.003200pt;}
.ls1d{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.011733pt;}
.ls0{letter-spacing:0.028267pt;}
.ls1e{letter-spacing:0.070073pt;}
.ls27{letter-spacing:0.107517pt;}
.ls2a{letter-spacing:0.107805pt;}
.ls2b{letter-spacing:0.161707pt;}
.ls25{letter-spacing:0.202384pt;}
.ls20{letter-spacing:0.202928pt;}
.ls28{letter-spacing:0.215034pt;}
.lsb{letter-spacing:0.253333pt;}
.ls18{letter-spacing:0.272122pt;}
.ls1a{letter-spacing:0.317475pt;}
.ls2f{letter-spacing:1.469333pt;}
.ls2e{letter-spacing:1.722133pt;}
.ls2d{letter-spacing:1.722667pt;}
.lsa{letter-spacing:1.994667pt;}
.ls30{letter-spacing:3.186933pt;}
.ls1{letter-spacing:5.089067pt;}
.ls2{letter-spacing:5.089600pt;}
.ls6{letter-spacing:17.095422pt;}
.lsd{letter-spacing:44.288000pt;}
.ls14{letter-spacing:64.256000pt;}
.ls13{letter-spacing:72.021333pt;}
.lsf{letter-spacing:94.208000pt;}
.ls10{letter-spacing:125.781333pt;}
.ls17{letter-spacing:135.765333pt;}
.ls12{letter-spacing:160.341333pt;}
.ls29{letter-spacing:174.986133pt;}
.ls1c{letter-spacing:176.640000pt;}
.lsc{letter-spacing:207.274667pt;}
.ls11{letter-spacing:208.554667pt;}
.lse{letter-spacing:260.608000pt;}
.ws8e{word-spacing:-45.036125pt;}
.ws1{word-spacing:-38.400000pt;}
.ws1b{word-spacing:-19.946667pt;}
.wsdc{word-spacing:-17.410475pt;}
.wsdd{word-spacing:-17.356573pt;}
.wsac{word-spacing:-17.318841pt;}
.wsab{word-spacing:-17.248768pt;}
.wsf0{word-spacing:-17.226667pt;}
.ws1c{word-spacing:-14.960000pt;}
.wsf1{word-spacing:-12.920000pt;}
.wsaa{word-spacing:-12.540950pt;}
.wsc5{word-spacing:-12.507331pt;}
.ws2{word-spacing:-12.283627pt;}
.ws90{word-spacing:-10.154667pt;}
.ws1d{word-spacing:-9.403733pt;}
.ws3a{word-spacing:-4.458667pt;}
.wsc{word-spacing:-3.744000pt;}
.ws23{word-spacing:-3.242667pt;}
.ws78{word-spacing:-3.192000pt;}
.ws51{word-spacing:-3.141333pt;}
.ws36{word-spacing:-3.090667pt;}
.ws87{word-spacing:-3.040000pt;}
.ws50{word-spacing:-2.989333pt;}
.ws3b{word-spacing:-2.938667pt;}
.wsc3{word-spacing:-2.786667pt;}
.wseb{word-spacing:-2.685333pt;}
.ws58{word-spacing:-2.634667pt;}
.wse0{word-spacing:-2.584000pt;}
.wsa7{word-spacing:-2.432000pt;}
.ws28{word-spacing:-2.381333pt;}
.wsb6{word-spacing:-2.229333pt;}
.wsa1{word-spacing:-2.178667pt;}
.wsb7{word-spacing:-2.077333pt;}
.wsbb{word-spacing:-2.026667pt;}
.wse9{word-spacing:-1.925333pt;}
.ws31{word-spacing:-1.874667pt;}
.wsa8{word-spacing:-1.824000pt;}
.ws44{word-spacing:-1.773333pt;}
.ws4b{word-spacing:-1.722667pt;}
.wsd2{word-spacing:-1.672000pt;}
.ws3c{word-spacing:-1.621333pt;}
.wscf{word-spacing:-1.570667pt;}
.ws6e{word-spacing:-1.520000pt;}
.ws5e{word-spacing:-1.469333pt;}
.ws9a{word-spacing:-1.418667pt;}
.wsb2{word-spacing:-1.368000pt;}
.ws5f{word-spacing:-1.317333pt;}
.ws69{word-spacing:-1.266667pt;}
.ws5d{word-spacing:-1.216000pt;}
.wse1{word-spacing:-1.165333pt;}
.ws2d{word-spacing:-1.114667pt;}
.ws54{word-spacing:-1.064000pt;}
.wsf4{word-spacing:-1.013333pt;}
.ws9b{word-spacing:-0.962667pt;}
.wsb1{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.861333pt;}
.wsd1{word-spacing:-0.810667pt;}
.ws79{word-spacing:-0.800000pt;}
.ws88{word-spacing:-0.760000pt;}
.wsc4{word-spacing:-0.709333pt;}
.ws86{word-spacing:-0.658667pt;}
.wsf2{word-spacing:-0.608000pt;}
.wsf{word-spacing:-0.506667pt;}
.ws18{word-spacing:-0.456000pt;}
.wsb4{word-spacing:-0.405333pt;}
.wsb0{word-spacing:-0.354667pt;}
.wsb5{word-spacing:-0.304000pt;}
.ws99{word-spacing:-0.272122pt;}
.wse6{word-spacing:-0.253333pt;}
.wsce{word-spacing:-0.215034pt;}
.wsad{word-spacing:-0.202928pt;}
.ws67{word-spacing:-0.202667pt;}
.wscb{word-spacing:-0.202384pt;}
.wse5{word-spacing:-0.107805pt;}
.wscd{word-spacing:-0.107517pt;}
.ws4e{word-spacing:-0.101333pt;}
.wsdb{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws62{word-spacing:0.050667pt;}
.ws34{word-spacing:0.101333pt;}
.wscc{word-spacing:0.121430pt;}
.wsaf{word-spacing:0.121757pt;}
.ws3d{word-spacing:0.152000pt;}
.ws9c{word-spacing:0.202667pt;}
.wsae{word-spacing:0.202928pt;}
.ws2a{word-spacing:0.253333pt;}
.wsd4{word-spacing:0.261333pt;}
.ws55{word-spacing:0.304000pt;}
.ws57{word-spacing:0.354667pt;}
.wsfa{word-spacing:0.384000pt;}
.wsf3{word-spacing:0.405333pt;}
.wsa0{word-spacing:0.456000pt;}
.ws8{word-spacing:0.480000pt;}
.ws89{word-spacing:0.506667pt;}
.ws3f{word-spacing:0.512000pt;}
.ws9{word-spacing:0.528000pt;}
.wsa4{word-spacing:0.557333pt;}
.ws7e{word-spacing:0.560000pt;}
.ws41{word-spacing:0.576000pt;}
.wse8{word-spacing:0.608000pt;}
.ws45{word-spacing:0.658667pt;}
.wsb3{word-spacing:0.709333pt;}
.ws37{word-spacing:0.760000pt;}
.ws76{word-spacing:0.810667pt;}
.ws9f{word-spacing:0.858667pt;}
.ws71{word-spacing:0.861333pt;}
.ws19{word-spacing:0.896000pt;}
.wsa3{word-spacing:0.912000pt;}
.ws1f{word-spacing:0.960000pt;}
.ws70{word-spacing:0.962667pt;}
.ws4{word-spacing:1.024000pt;}
.ws4f{word-spacing:1.064000pt;}
.wsfe{word-spacing:1.114667pt;}
.ws46{word-spacing:1.165333pt;}
.ws1e{word-spacing:1.194667pt;}
.wsa9{word-spacing:1.216000pt;}
.wsef{word-spacing:1.266667pt;}
.ws5c{word-spacing:1.280000pt;}
.ws3e{word-spacing:1.317333pt;}
.ws39{word-spacing:1.368000pt;}
.wsf8{word-spacing:1.418667pt;}
.wsfc{word-spacing:1.469333pt;}
.ws60{word-spacing:1.520000pt;}
.wsd{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.570667pt;}
.ws40{word-spacing:1.600000pt;}
.ws17{word-spacing:1.621333pt;}
.ws77{word-spacing:1.653333pt;}
.ws43{word-spacing:1.672000pt;}
.ws2c{word-spacing:1.773333pt;}
.ws9d{word-spacing:1.874667pt;}
.ws61{word-spacing:1.925333pt;}
.wse2{word-spacing:1.976000pt;}
.ws42{word-spacing:1.984000pt;}
.ws47{word-spacing:2.077333pt;}
.ws5{word-spacing:2.090667pt;}
.ws6{word-spacing:2.112000pt;}
.wsde{word-spacing:2.128000pt;}
.ws32{word-spacing:2.178667pt;}
.wsf6{word-spacing:2.229333pt;}
.ws63{word-spacing:2.280000pt;}
.ws4d{word-spacing:2.330667pt;}
.wsee{word-spacing:2.381333pt;}
.ws26{word-spacing:2.432000pt;}
.wsa5{word-spacing:2.482667pt;}
.ws21{word-spacing:2.533333pt;}
.ws56{word-spacing:2.584000pt;}
.wsb9{word-spacing:2.634667pt;}
.wsbf{word-spacing:2.685333pt;}
.wsf7{word-spacing:2.736000pt;}
.ws12{word-spacing:2.837333pt;}
.ws6b{word-spacing:2.888000pt;}
.wsb{word-spacing:2.928000pt;}
.ws10{word-spacing:2.989333pt;}
.ws11{word-spacing:3.040000pt;}
.wsed{word-spacing:3.090667pt;}
.wsa{word-spacing:3.120000pt;}
.ws25{word-spacing:3.242667pt;}
.ws20{word-spacing:3.293333pt;}
.ws64{word-spacing:3.344000pt;}
.ws98{word-spacing:3.394667pt;}
.ws65{word-spacing:3.445333pt;}
.ws24{word-spacing:3.496000pt;}
.ws38{word-spacing:3.546667pt;}
.ws29{word-spacing:3.648000pt;}
.ws96{word-spacing:3.698667pt;}
.ws27{word-spacing:3.850667pt;}
.wsb8{word-spacing:3.952000pt;}
.wse{word-spacing:4.002667pt;}
.wsec{word-spacing:4.104000pt;}
.ws8a{word-spacing:4.154667pt;}
.wse4{word-spacing:4.256000pt;}
.ws73{word-spacing:4.306667pt;}
.wsea{word-spacing:4.357333pt;}
.ws2f{word-spacing:4.458667pt;}
.ws35{word-spacing:4.610667pt;}
.ws2b{word-spacing:4.661333pt;}
.wsdf{word-spacing:4.762667pt;}
.wsd8{word-spacing:4.864000pt;}
.wsbe{word-spacing:4.914667pt;}
.wsd9{word-spacing:4.965333pt;}
.wsc2{word-spacing:5.117333pt;}
.wsbd{word-spacing:5.168000pt;}
.wsfb{word-spacing:5.269333pt;}
.ws30{word-spacing:5.320000pt;}
.ws4a{word-spacing:5.370667pt;}
.wsba{word-spacing:5.421333pt;}
.ws97{word-spacing:5.522667pt;}
.ws75{word-spacing:5.573333pt;}
.wsc0{word-spacing:5.624000pt;}
.wsf5{word-spacing:5.674667pt;}
.ws5a{word-spacing:5.826667pt;}
.wsda{word-spacing:5.978667pt;}
.ws49{word-spacing:6.029333pt;}
.wsa2{word-spacing:6.130667pt;}
.wse3{word-spacing:6.232000pt;}
.wsa6{word-spacing:6.333333pt;}
.ws15{word-spacing:6.384000pt;}
.wsd5{word-spacing:6.434667pt;}
.wsc1{word-spacing:6.536000pt;}
.wsd7{word-spacing:6.637333pt;}
.ws14{word-spacing:6.789333pt;}
.ws16{word-spacing:6.840000pt;}
.wse7{word-spacing:6.890667pt;}
.ws100{word-spacing:6.941333pt;}
.ws102{word-spacing:6.992000pt;}
.wsd0{word-spacing:7.144000pt;}
.ws13{word-spacing:7.245333pt;}
.wsff{word-spacing:7.397333pt;}
.ws7f{word-spacing:7.448000pt;}
.ws101{word-spacing:7.498667pt;}
.ws6d{word-spacing:7.549333pt;}
.ws48{word-spacing:7.600000pt;}
.ws1a{word-spacing:7.637333pt;}
.wsd6{word-spacing:7.752000pt;}
.ws72{word-spacing:8.157333pt;}
.ws7{word-spacing:8.160000pt;}
.ws59{word-spacing:8.309333pt;}
.wsf9{word-spacing:8.562667pt;}
.ws4c{word-spacing:8.917333pt;}
.ws68{word-spacing:8.968000pt;}
.ws6c{word-spacing:9.069333pt;}
.ws106{word-spacing:9.322667pt;}
.ws66{word-spacing:9.525333pt;}
.ws33{word-spacing:9.728000pt;}
.ws6f{word-spacing:9.778667pt;}
.ws105{word-spacing:9.930667pt;}
.ws53{word-spacing:11.248000pt;}
.ws52{word-spacing:12.008000pt;}
.ws0{word-spacing:12.618667pt;}
.ws22{word-spacing:12.717333pt;}
.wsfd{word-spacing:13.578667pt;}
.ws104{word-spacing:16.568000pt;}
.ws103{word-spacing:17.682667pt;}
.ws80{word-spacing:50.602667pt;}
.ws7c{word-spacing:52.181333pt;}
.ws85{word-spacing:52.480000pt;}
.ws7d{word-spacing:65.408000pt;}
.ws7a{word-spacing:81.962667pt;}
.ws8d{word-spacing:86.235335pt;}
.ws8b{word-spacing:86.262547pt;}
.ws8c{word-spacing:86.852144pt;}
.ws6a{word-spacing:87.720000pt;}
.ws8f{word-spacing:89.174248pt;}
.ws7b{word-spacing:91.861333pt;}
.ws83{word-spacing:95.658667pt;}
.ws84{word-spacing:108.885333pt;}
.ws81{word-spacing:112.170667pt;}
.wsd3{word-spacing:113.152000pt;}
.ws9e{word-spacing:119.338667pt;}
.wsc8{word-spacing:127.205333pt;}
.wsc7{word-spacing:129.672533pt;}
.ws94{word-spacing:132.565333pt;}
.wsc9{word-spacing:141.258667pt;}
.ws93{word-spacing:144.042667pt;}
.ws92{word-spacing:149.077333pt;}
.wsca{word-spacing:155.312000pt;}
.ws95{word-spacing:159.018667pt;}
.ws5b{word-spacing:190.037333pt;}
.wsc6{word-spacing:280.448000pt;}
.wsbc{word-spacing:295.381333pt;}
.ws91{word-spacing:306.048000pt;}
.ws82{word-spacing:713.557333pt;}
._6d{margin-left:-34.301333pt;}
._a{margin-left:-24.624000pt;}
._6b{margin-left:-19.557333pt;}
._69{margin-left:-18.544000pt;}
._61{margin-left:-14.693333pt;}
._9{margin-left:-12.768000pt;}
._6{margin-left:-3.593813pt;}
._0{margin-left:-2.240000pt;}
._1{margin-left:-1.280320pt;}
._4{width:1.621333pt;}
._7{width:2.524747pt;}
._2{width:3.445333pt;}
._6c{width:4.978987pt;}
._3{width:7.194667pt;}
._8{width:12.666667pt;}
._6a{width:16.000000pt;}
._5{width:33.792000pt;}
._3a{width:40.874667pt;}
._38{width:51.114667pt;}
._2b{width:54.528000pt;}
._45{width:64.341333pt;}
._46{width:65.834667pt;}
._2a{width:72.874667pt;}
._2c{width:76.885333pt;}
._29{width:79.061333pt;}
._34{width:82.986667pt;}
._31{width:85.674667pt;}
._11{width:89.216000pt;}
._10{width:91.861333pt;}
._12{width:94.890667pt;}
._44{width:98.048000pt;}
._30{width:99.328000pt;}
._3f{width:100.608000pt;}
._1d{width:102.442667pt;}
._5b{width:104.042507pt;}
._33{width:105.514667pt;}
._13{width:108.117333pt;}
._16{width:109.269333pt;}
._5c{width:110.695880pt;}
._17{width:114.944000pt;}
._c{width:116.266667pt;}
._3b{width:117.845333pt;}
._5a{width:119.278085pt;}
._1e{width:121.344000pt;}
._1a{width:122.496000pt;}
._18{width:128.170667pt;}
._24{width:129.621333pt;}
._15{width:131.968000pt;}
._58{width:133.167240pt;}
._23{width:136.917333pt;}
._32{width:140.032000pt;}
._b{width:148.437333pt;}
._59{width:150.560346pt;}
._20{width:152.490667pt;}
._60{width:155.605333pt;}
._5f{width:159.445333pt;}
._64{width:161.205333pt;}
._1f{width:162.730667pt;}
._22{width:163.882667pt;}
._68{width:166.645333pt;}
._65{width:167.552000pt;}
._66{width:169.098667pt;}
._5e{width:170.538667pt;}
._35{width:171.605333pt;}
._67{width:174.805333pt;}
._36{width:177.408000pt;}
._40{width:183.808000pt;}
._1c{width:184.704000pt;}
._1b{width:200.064000pt;}
._39{width:205.312000pt;}
._e{width:212.096000pt;}
._21{width:217.130667pt;}
._14{width:233.344000pt;}
._d{width:234.794667pt;}
._28{width:239.914667pt;}
._f{width:248.704000pt;}
._37{width:254.250667pt;}
._27{width:287.914667pt;}
._3e{width:293.248000pt;}
._43{width:303.274667pt;}
._2f{width:306.474667pt;}
._63{width:308.821333pt;}
._62{width:311.168000pt;}
._26{width:312.661333pt;}
._19{width:314.410667pt;}
._2e{width:320.768000pt;}
._5d{width:321.834667pt;}
._2d{width:332.714667pt;}
._42{width:337.408000pt;}
._3d{width:339.541333pt;}
._4a{width:502.784000pt;}
._4b{width:510.890667pt;}
._55{width:529.664000pt;}
._56{width:551.850667pt;}
._4e{width:559.530667pt;}
._4f{width:574.037333pt;}
._4c{width:583.850667pt;}
._4d{width:592.384000pt;}
._50{width:605.610667pt;}
._47{width:608.384000pt;}
._51{width:611.157333pt;}
._25{width:622.848000pt;}
._52{width:640.170667pt;}
._53{width:652.117333pt;}
._49{width:673.024000pt;}
._54{width:688.384000pt;}
._57{width:725.077333pt;}
._48{width:733.610667pt;}
._3c{width:1098.624000pt;}
._41{width:1111.850667pt;}
.fsc{font-size:29.386667pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:34.026667pt;}
.fsf{font-size:37.333333pt;}
.fs16{font-size:38.000000pt;}
.fs13{font-size:38.533333pt;}
.fsd{font-size:40.000000pt;}
.fs14{font-size:40.476800pt;}
.fs11{font-size:40.585600pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:44.000000pt;}
.fs6{font-size:45.333333pt;}
.fs10{font-size:45.353600pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fse{font-size:53.333333pt;}
.fs15{font-size:53.758400pt;}
.fs12{font-size:53.902400pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:120.000000pt;}
.fs2{font-size:160.000000pt;}
.fsb{font-size:227.934933pt;}
.y0{bottom:0.000000pt;}
.y246{bottom:4.703467pt;}
.y244{bottom:4.862000pt;}
.y1b{bottom:28.512000pt;}
.y4c{bottom:28.513733pt;}
.y2{bottom:37.795333pt;}
.y1{bottom:37.842533pt;}
.y1a{bottom:38.112000pt;}
.y4b{bottom:38.113733pt;}
.y2c6{bottom:71.740800pt;}
.y277{bottom:71.786267pt;}
.y4a{bottom:71.798533pt;}
.yc1{bottom:71.808400pt;}
.y17{bottom:71.810933pt;}
.y125{bottom:71.811067pt;}
.y249{bottom:71.811333pt;}
.y74{bottom:71.811867pt;}
.y18c{bottom:71.841600pt;}
.y20c{bottom:71.906400pt;}
.y103{bottom:72.231333pt;}
.ye2{bottom:73.854267pt;}
.yc0{bottom:81.144400pt;}
.y1e2{bottom:82.204533pt;}
.y49{bottom:84.910533pt;}
.y73{bottom:84.923867pt;}
.y276{bottom:87.340933pt;}
.y2c5{bottom:87.371467pt;}
.y248{bottom:87.518000pt;}
.y20b{bottom:87.625733pt;}
.y18b{bottom:87.763600pt;}
.y102{bottom:91.473600pt;}
.ye1{bottom:93.096400pt;}
.y48{bottom:94.246533pt;}
.y275{bottom:102.895600pt;}
.y2c4{bottom:103.002133pt;}
.y20a{bottom:103.345067pt;}
.y47{bottom:103.582533pt;}
.y18a{bottom:103.685600pt;}
.y101{bottom:104.810933pt;}
.y126{bottom:104.881733pt;}
.ye0{bottom:106.433733pt;}
.y1e1{bottom:107.274667pt;}
.y46{bottom:112.918533pt;}
.y1ab{bottom:114.847067pt;}
.ybf{bottom:115.296667pt;}
.y29c{bottom:115.784000pt;}
.y274{bottom:118.450267pt;}
.y9c{bottom:118.661067pt;}
.y209{bottom:119.064400pt;}
.y189{bottom:119.607600pt;}
.y2c3{bottom:121.647467pt;}
.y45{bottom:122.254533pt;}
.y247{bottom:122.693333pt;}
.y100{bottom:127.524000pt;}
.y124{bottom:128.101600pt;}
.ydf{bottom:129.142133pt;}
.y1aa{bottom:130.313067pt;}
.ybe{bottom:130.762667pt;}
.y1e0{bottom:130.882000pt;}
.y29b{bottom:131.250000pt;}
.y44{bottom:131.590533pt;}
.y273{bottom:134.004933pt;}
.y9b{bottom:134.127067pt;}
.y208{bottom:134.783733pt;}
.y188{bottom:135.529600pt;}
.y2c2{bottom:137.278133pt;}
.y243{bottom:141.481333pt;}
.y1a9{bottom:145.779067pt;}
.ybd{bottom:146.228667pt;}
.y29a{bottom:146.716000pt;}
.yff{bottom:148.740000pt;}
.y272{bottom:149.559600pt;}
.y9a{bottom:149.593067pt;}
.yde{bottom:150.358133pt;}
.y207{bottom:150.503067pt;}
.y72{bottom:150.944267pt;}
.y123{bottom:151.205600pt;}
.y187{bottom:151.451600pt;}
.y1df{bottom:154.489333pt;}
.y2c1{bottom:155.923467pt;}
.y14d{bottom:161.049867pt;}
.y1a8{bottom:161.245067pt;}
.y299{bottom:162.182000pt;}
.y99{bottom:165.059067pt;}
.y206{bottom:166.222400pt;}
.y71{bottom:166.410267pt;}
.y245{bottom:166.953067pt;}
.y242{bottom:167.111600pt;}
.y186{bottom:167.373600pt;}
.ybc{bottom:169.254400pt;}
.yfe{bottom:169.956000pt;}
.y2c0{bottom:171.554133pt;}
.ydd{bottom:171.574133pt;}
.y43{bottom:171.878533pt;}
.y122{bottom:174.309600pt;}
.y14c{bottom:176.515867pt;}
.y1a7{bottom:176.711067pt;}
.y298{bottom:177.648000pt;}
.y1de{bottom:178.096667pt;}
.y23b{bottom:180.111600pt;}
.y98{bottom:180.525067pt;}
.y271{bottom:180.659067pt;}
.y70{bottom:181.876267pt;}
.y205{bottom:181.941733pt;}
.y185{bottom:183.295600pt;}
.y2bf{bottom:187.184800pt;}
.y42{bottom:187.344533pt;}
.yfd{bottom:191.172000pt;}
.y14b{bottom:191.981867pt;}
.y1a6{bottom:192.177067pt;}
.ydc{bottom:192.790133pt;}
.y97{bottom:195.991067pt;}
.y6f{bottom:197.342267pt;}
.y121{bottom:197.413600pt;}
.y204{bottom:197.661067pt;}
.y184{bottom:199.217600pt;}
.ybb{bottom:200.838400pt;}
.y1dd{bottom:201.704000pt;}
.y41{bottom:202.810533pt;}
.y2be{bottom:205.830133pt;}
.y14a{bottom:207.447867pt;}
.y1a5{bottom:207.643067pt;}
.y297{bottom:208.232800pt;}
.y23c{bottom:209.921723pt;}
.y233{bottom:211.179243pt;}
.y96{bottom:211.457067pt;}
.yfc{bottom:212.388000pt;}
.y6e{bottom:212.808267pt;}
.y203{bottom:213.380400pt;}
.y270{bottom:213.665733pt;}
.ydb{bottom:214.006133pt;}
.y183{bottom:215.139600pt;}
.yba{bottom:216.304400pt;}
.y236{bottom:216.566982pt;}
.y239{bottom:217.348255pt;}
.y40{bottom:218.276533pt;}
.y120{bottom:220.517600pt;}
.y2bd{bottom:221.460800pt;}
.y234{bottom:221.487986pt;}
.y149{bottom:222.913867pt;}
.y235{bottom:223.070824pt;}
.y1a4{bottom:223.109067pt;}
.y1dc{bottom:225.311333pt;}
.y6d{bottom:228.274267pt;}
.y232{bottom:228.935443pt;}
.y26f{bottom:229.081067pt;}
.y202{bottom:229.099733pt;}
.y182{bottom:231.061600pt;}
.yb9{bottom:231.770400pt;}
.y23a{bottom:233.196931pt;}
.yfb{bottom:233.604000pt;}
.y3f{bottom:233.742533pt;}
.y16{bottom:234.420400pt;}
.yda{bottom:235.222133pt;}
.y95{bottom:238.262267pt;}
.y148{bottom:238.379867pt;}
.y1a3{bottom:238.575067pt;}
.y23d{bottom:239.569504pt;}
.y2bc{bottom:240.106133pt;}
.y230{bottom:240.989367pt;}
.y296{bottom:242.600400pt;}
.y11f{bottom:243.621600pt;}
.y238{bottom:243.668016pt;}
.y26e{bottom:244.496400pt;}
.y201{bottom:244.819067pt;}
.y181{bottom:246.983600pt;}
.yb8{bottom:247.236400pt;}
.y231{bottom:248.913705pt;}
.y1db{bottom:249.172533pt;}
.y3e{bottom:249.208533pt;}
.y15{bottom:249.886400pt;}
.y147{bottom:253.845867pt;}
.y1a2{bottom:254.041067pt;}
.yfa{bottom:254.820000pt;}
.y6c{bottom:255.076933pt;}
.y11d{bottom:255.173600pt;}
.y2bb{bottom:255.736800pt;}
.yd9{bottom:256.438133pt;}
.y295{bottom:258.066400pt;}
.y26d{bottom:259.911733pt;}
.y200{bottom:260.538400pt;}
.yb7{bottom:262.702400pt;}
.y180{bottom:262.905600pt;}
.y237{bottom:264.123159pt;}
.y3d{bottom:264.674533pt;}
.y11e{bottom:266.736267pt;}
.y94{bottom:266.946267pt;}
.y23e{bottom:269.217285pt;}
.y146{bottom:269.325200pt;}
.y1a1{bottom:269.507067pt;}
.y2ba{bottom:271.367467pt;}
.y1da{bottom:272.532533pt;}
.y294{bottom:273.532400pt;}
.y6b{bottom:274.051600pt;}
.y26c{bottom:275.327067pt;}
.yf9{bottom:276.036000pt;}
.y1ff{bottom:276.257733pt;}
.y14{bottom:276.689067pt;}
.yd8{bottom:277.654133pt;}
.yb6{bottom:278.168400pt;}
.y17f{bottom:278.827600pt;}
.y3c{bottom:280.140533pt;}
.y22d{bottom:280.783547pt;}
.y93{bottom:282.412267pt;}
.y1d8{bottom:284.084533pt;}
.y145{bottom:284.791200pt;}
.y1a0{bottom:284.973067pt;}
.y293{bottom:288.998400pt;}
.y2b9{bottom:290.012800pt;}
.y26b{bottom:290.742400pt;}
.y1fe{bottom:291.977067pt;}
.y13{bottom:292.155067pt;}
.y6a{bottom:293.026267pt;}
.yb5{bottom:293.634400pt;}
.y17e{bottom:294.749600pt;}
.y3b{bottom:295.606533pt;}
.y1d9{bottom:295.647200pt;}
.yf8{bottom:297.252000pt;}
.y92{bottom:297.878267pt;}
.yd7{bottom:298.870133pt;}
.y23f{bottom:299.027408pt;}
.y144{bottom:300.257200pt;}
.y19f{bottom:300.439067pt;}
.y11c{bottom:303.429867pt;}
.y292{bottom:304.464400pt;}
.y22c{bottom:305.043590pt;}
.y2b8{bottom:305.643467pt;}
.y26a{bottom:306.157733pt;}
.y12{bottom:307.621067pt;}
.y1fd{bottom:307.696400pt;}
.yb4{bottom:309.100400pt;}
.y17d{bottom:310.671600pt;}
.y228{bottom:310.745867pt;}
.y3a{bottom:311.072533pt;}
.y91{bottom:313.344267pt;}
.y143{bottom:315.723200pt;}
.y19e{bottom:315.905067pt;}
.y22f{bottom:316.295947pt;}
.yf7{bottom:318.468000pt;}
.y11b{bottom:318.895867pt;}
.y69{bottom:319.562933pt;}
.y291{bottom:319.951733pt;}
.y269{bottom:321.573067pt;}
.y11{bottom:323.087067pt;}
.y1fc{bottom:323.415733pt;}
.y2b7{bottom:324.288800pt;}
.yb3{bottom:324.566400pt;}
.y39{bottom:326.538533pt;}
.y17c{bottom:326.593600pt;}
.y22e{bottom:328.339724pt;}
.y240{bottom:328.675189pt;}
.y90{bottom:328.810267pt;}
.y142{bottom:331.189200pt;}
.y19d{bottom:331.371067pt;}
.y11a{bottom:334.361867pt;}
.yd6{bottom:334.429200pt;}
.y68{bottom:335.028933pt;}
.y290{bottom:335.417733pt;}
.y268{bottom:336.988400pt;}
.y10{bottom:338.553067pt;}
.y1fb{bottom:339.135067pt;}
.yf6{bottom:339.684000pt;}
.y1d7{bottom:339.902000pt;}
.y22a{bottom:339.916767pt;}
.y2b6{bottom:339.919467pt;}
.yb2{bottom:340.032400pt;}
.y38{bottom:342.004533pt;}
.y17b{bottom:342.515600pt;}
.y8f{bottom:344.276267pt;}
.y141{bottom:346.655200pt;}
.y119{bottom:349.827867pt;}
.yd5{bottom:349.895200pt;}
.y67{bottom:350.494933pt;}
.y28f{bottom:350.883733pt;}
.y267{bottom:352.403733pt;}
.yf{bottom:354.019067pt;}
.y1fa{bottom:354.854400pt;}
.y229{bottom:354.974024pt;}
.y1d6{bottom:355.368000pt;}
.yb1{bottom:355.498400pt;}
.y2b5{bottom:355.550133pt;}
.y37{bottom:357.470533pt;}
.y241{bottom:358.322970pt;}
.y17a{bottom:358.437600pt;}
.y8e{bottom:359.742267pt;}
.y22b{bottom:360.371909pt;}
.yf5{bottom:360.900000pt;}
.y140{bottom:362.121200pt;}
.y118{bottom:365.293867pt;}
.yd4{bottom:365.361200pt;}
.y66{bottom:365.964267pt;}
.y19c{bottom:366.077733pt;}
.y28e{bottom:366.349733pt;}
.y266{bottom:367.819067pt;}
.ye{bottom:369.485067pt;}
.y1f9{bottom:370.573733pt;}
.y1d5{bottom:370.834000pt;}
.yb0{bottom:370.964400pt;}
.y36{bottom:372.936533pt;}
.y2b4{bottom:374.195467pt;}
.y179{bottom:374.359600pt;}
.y8d{bottom:375.208267pt;}
.y13f{bottom:377.587200pt;}
.y117{bottom:380.759867pt;}
.yd3{bottom:380.827200pt;}
.y65{bottom:381.430267pt;}
.y28d{bottom:381.815733pt;}
.y265{bottom:383.234400pt;}
.y19b{bottom:385.320000pt;}
.y1f8{bottom:386.293067pt;}
.y1d4{bottom:386.300000pt;}
.yaf{bottom:386.430400pt;}
.y35{bottom:388.402533pt;}
.y2b3{bottom:389.826133pt;}
.y178{bottom:390.281600pt;}
.y8c{bottom:390.674267pt;}
.y227{bottom:390.783733pt;}
.y13e{bottom:393.053200pt;}
.y116{bottom:396.225867pt;}
.yd2{bottom:396.293200pt;}
.yf4{bottom:396.466267pt;}
.y64{bottom:396.896267pt;}
.y28c{bottom:397.281733pt;}
.y264{bottom:398.649733pt;}
.y19a{bottom:398.657333pt;}
.y1d3{bottom:401.766000pt;}
.yae{bottom:401.896400pt;}
.y1f7{bottom:402.012400pt;}
.y34{bottom:403.868533pt;}
.y8b{bottom:406.140267pt;}
.y177{bottom:406.203600pt;}
.y226{bottom:406.490400pt;}
.y2b2{bottom:408.471467pt;}
.y13d{bottom:408.519200pt;}
.y115{bottom:411.691867pt;}
.yd1{bottom:411.759200pt;}
.yf3{bottom:411.932267pt;}
.y63{bottom:412.362267pt;}
.y28b{bottom:412.747733pt;}
.y263{bottom:414.065067pt;}
.yd{bottom:415.878267pt;}
.y1d2{bottom:417.232000pt;}
.yad{bottom:417.362400pt;}
.y1f6{bottom:417.731733pt;}
.y33{bottom:419.334533pt;}
.y8a{bottom:421.606267pt;}
.y176{bottom:422.125600pt;}
.y225{bottom:422.197067pt;}
.y199{bottom:422.507067pt;}
.y13c{bottom:423.985200pt;}
.y2b1{bottom:424.102133pt;}
.yf2{bottom:427.398267pt;}
.y62{bottom:427.828267pt;}
.y28a{bottom:428.213733pt;}
.y262{bottom:429.480400pt;}
.y1d1{bottom:432.698000pt;}
.yac{bottom:432.828400pt;}
.y1f5{bottom:433.451067pt;}
.y114{bottom:434.717467pt;}
.y32{bottom:434.800533pt;}
.y89{bottom:437.072267pt;}
.y224{bottom:437.903733pt;}
.y175{bottom:438.047600pt;}
.y13b{bottom:439.451200pt;}
.yc{bottom:442.686267pt;}
.y2b0{bottom:442.747467pt;}
.yf1{bottom:442.864267pt;}
.y61{bottom:443.294267pt;}
.y289{bottom:443.679733pt;}
.yd0{bottom:444.236533pt;}
.y261{bottom:444.895733pt;}
.y198{bottom:446.368400pt;}
.y1d0{bottom:448.164000pt;}
.yab{bottom:448.300533pt;}
.y1f4{bottom:449.170400pt;}
.y31{bottom:450.266533pt;}
.y88{bottom:452.538267pt;}
.y223{bottom:453.610400pt;}
.y174{bottom:453.969600pt;}
.y13a{bottom:454.917200pt;}
.yb{bottom:458.154267pt;}
.yf0{bottom:458.330267pt;}
.y2af{bottom:458.378133pt;}
.y288{bottom:459.145733pt;}
.y260{bottom:460.311067pt;}
.ycf{bottom:463.478667pt;}
.y1cf{bottom:463.630000pt;}
.y1f3{bottom:464.889733pt;}
.y30{bottom:465.732533pt;}
.y87{bottom:468.004267pt;}
.y222{bottom:469.317067pt;}
.y173{bottom:469.891600pt;}
.y113{bottom:470.070400pt;}
.y197{bottom:470.229733pt;}
.y139{bottom:470.383200pt;}
.ya{bottom:473.622267pt;}
.y60{bottom:474.227600pt;}
.y287{bottom:474.611733pt;}
.y25f{bottom:475.726400pt;}
.yce{bottom:476.816000pt;}
.y2ae{bottom:477.023467pt;}
.y1ce{bottom:479.096000pt;}
.y1f2{bottom:480.609067pt;}
.y2f{bottom:481.198533pt;}
.yaa{bottom:483.007200pt;}
.y86{bottom:483.470267pt;}
.y221{bottom:485.023733pt;}
.y172{bottom:485.813600pt;}
.y138{bottom:485.849200pt;}
.yef{bottom:487.020267pt;}
.y9{bottom:489.090267pt;}
.y286{bottom:490.077733pt;}
.y25e{bottom:491.141733pt;}
.y2ad{bottom:492.654133pt;}
.y196{bottom:494.091067pt;}
.y1cd{bottom:494.562000pt;}
.y112{bottom:496.147416pt;}
.y1f1{bottom:496.328400pt;}
.y2e{bottom:496.664533pt;}
.y85{bottom:498.936267pt;}
.ycd{bottom:499.529200pt;}
.y220{bottom:500.730400pt;}
.y137{bottom:501.315200pt;}
.y171{bottom:501.735600pt;}
.ya9{bottom:502.253467pt;}
.y285{bottom:505.543733pt;}
.yee{bottom:506.262533pt;}
.y25d{bottom:506.557067pt;}
.y5f{bottom:507.047200pt;}
.y2ac{bottom:508.284800pt;}
.y107{bottom:509.640112pt;}
.y1cc{bottom:510.028000pt;}
.y1f0{bottom:512.047733pt;}
.y2d{bottom:512.130533pt;}
.y84{bottom:514.402267pt;}
.y21f{bottom:516.437067pt;}
.y136{bottom:516.781200pt;}
.y170{bottom:517.657600pt;}
.y195{bottom:517.952400pt;}
.yed{bottom:519.599867pt;}
.ycc{bottom:520.745200pt;}
.y284{bottom:521.009733pt;}
.y25c{bottom:521.972400pt;}
.y5e{bottom:522.513200pt;}
.ya8{bottom:524.961600pt;}
.y1cb{bottom:525.494000pt;}
.y2ab{bottom:526.930133pt;}
.y2c{bottom:527.596533pt;}
.y1ef{bottom:527.767067pt;}
.y83{bottom:529.868267pt;}
.y108{bottom:530.650167pt;}
.y21e{bottom:532.143733pt;}
.y135{bottom:532.247200pt;}
.y16f{bottom:533.579600pt;}
.y283{bottom:536.475733pt;}
.y25b{bottom:537.387733pt;}
.y5d{bottom:537.979200pt;}
.y1ca{bottom:540.960000pt;}
.y194{bottom:541.813733pt;}
.ycb{bottom:541.961200pt;}
.yec{bottom:542.309733pt;}
.y8{bottom:542.352267pt;}
.y2aa{bottom:542.560800pt;}
.y2b{bottom:543.062533pt;}
.y1ee{bottom:543.486400pt;}
.y82{bottom:545.334267pt;}
.ya7{bottom:547.061600pt;}
.y134{bottom:547.713200pt;}
.y21d{bottom:547.850400pt;}
.y109{bottom:551.660222pt;}
.y282{bottom:551.941733pt;}
.y25a{bottom:552.803067pt;}
.y5c{bottom:553.445200pt;}
.y106{bottom:554.993712pt;}
.y2a{bottom:558.528533pt;}
.y1ed{bottom:559.205733pt;}
.y2a9{bottom:561.206133pt;}
.yca{bottom:563.177200pt;}
.y133{bottom:563.186000pt;}
.yeb{bottom:563.525733pt;}
.y21c{bottom:563.557067pt;}
.y193{bottom:565.675067pt;}
.y7{bottom:566.438400pt;}
.y281{bottom:567.407733pt;}
.y259{bottom:568.218400pt;}
.y5b{bottom:568.911200pt;}
.y16e{bottom:568.932267pt;}
.ya6{bottom:569.161600pt;}
.y10a{bottom:572.670278pt;}
.y29{bottom:573.994533pt;}
.y1ec{bottom:574.925067pt;}
.y81{bottom:576.267600pt;}
.y2a8{bottom:576.836800pt;}
.y132{bottom:578.652000pt;}
.y21b{bottom:579.263733pt;}
.y1c9{bottom:579.454000pt;}
.y280{bottom:582.873733pt;}
.y258{bottom:583.633733pt;}
.y5a{bottom:584.377200pt;}
.yc9{bottom:584.393200pt;}
.yea{bottom:584.741733pt;}
.y28{bottom:589.460533pt;}
.y192{bottom:589.536400pt;}
.y1eb{bottom:590.644400pt;}
.y2a7{bottom:592.467467pt;}
.y16c{bottom:593.113600pt;}
.y169{bottom:593.272133pt;}
.y80{bottom:593.380400pt;}
.y10b{bottom:593.680333pt;}
.y21a{bottom:594.970400pt;}
.y6{bottom:598.148000pt;}
.y27f{bottom:598.339733pt;}
.y257{bottom:599.049067pt;}
.y59{bottom:599.843200pt;}
.y1c8{bottom:604.523467pt;}
.y1c6{bottom:604.681600pt;}
.y27{bottom:604.936267pt;}
.ya5{bottom:605.602800pt;}
.yc8{bottom:605.609200pt;}
.ye9{bottom:605.957733pt;}
.y1ea{bottom:606.363733pt;}
.y2a6{bottom:608.098133pt;}
.y219{bottom:610.677067pt;}
.y131{bottom:613.358667pt;}
.y191{bottom:613.397733pt;}
.y27e{bottom:613.805733pt;}
.y16b{bottom:613.881867pt;}
.y16a{bottom:614.040400pt;}
.y168{bottom:614.199067pt;}
.y256{bottom:614.464400pt;}
.y10c{bottom:614.690388pt;}
.y58{bottom:615.309200pt;}
.y7f{bottom:618.222933pt;}
.y26{bottom:620.402267pt;}
.ya4{bottom:621.068800pt;}
.y1e9{bottom:622.083067pt;}
.y1c7{bottom:625.236267pt;}
.y1c5{bottom:625.394267pt;}
.y218{bottom:626.383733pt;}
.y2a5{bottom:626.743467pt;}
.yc7{bottom:626.825200pt;}
.y161{bottom:627.040400pt;}
.ye8{bottom:627.173733pt;}
.y27d{bottom:629.271733pt;}
.y255{bottom:629.879733pt;}
.y57{bottom:630.775200pt;}
.y130{bottom:632.600933pt;}
.y10d{bottom:635.700443pt;}
.y25{bottom:635.868267pt;}
.ya3{bottom:636.534800pt;}
.y190{bottom:637.259067pt;}
.y1be{bottom:638.359600pt;}
.y7e{bottom:639.438933pt;}
.y5{bottom:640.814667pt;}
.y217{bottom:642.090400pt;}
.y2a4{bottom:642.374133pt;}
.y27c{bottom:644.737733pt;}
.y254{bottom:645.295067pt;}
.y12f{bottom:645.938267pt;}
.yc6{bottom:648.041200pt;}
.ye7{bottom:648.389733pt;}
.y24{bottom:651.334267pt;}
.ya2{bottom:652.000800pt;}
.y105{bottom:655.678704pt;}
.y10e{bottom:656.563099pt;}
.y162{bottom:656.850523pt;}
.y1e8{bottom:657.309067pt;}
.y56{bottom:657.577867pt;}
.y216{bottom:657.797067pt;}
.y27b{bottom:660.203733pt;}
.y7d{bottom:660.654933pt;}
.y253{bottom:660.710400pt;}
.y2a3{bottom:661.019467pt;}
.y18f{bottom:661.120400pt;}
.y15c{bottom:663.825290pt;}
.y159{bottom:664.931247pt;}
.y23{bottom:666.800267pt;}
.ya1{bottom:667.466800pt;}
.y1bf{bottom:668.089810pt;}
.y15a{bottom:668.259267pt;}
.yc5{bottom:669.257200pt;}
.y12e{bottom:669.413467pt;}
.ye6{bottom:669.605733pt;}
.y155{bottom:671.110405pt;}
.y18d{bottom:673.056400pt;}
.y156{bottom:673.484663pt;}
.y215{bottom:673.503733pt;}
.y15f{bottom:674.610913pt;}
.y158{bottom:674.915305pt;}
.y1b9{bottom:675.036424pt;}
.y1b7{bottom:675.198331pt;}
.y27a{bottom:675.669733pt;}
.y252{bottom:676.125733pt;}
.y55{bottom:676.552533pt;}
.y2a2{bottom:676.650133pt;}
.y1e7{bottom:676.810133pt;}
.y10f{bottom:677.573154pt;}
.y15e{bottom:678.578155pt;}
.y15b{bottom:680.150847pt;}
.y1b5{bottom:680.571626pt;}
.y1b8{bottom:680.885321pt;}
.y1bb{bottom:680.895441pt;}
.y7c{bottom:681.870933pt;}
.y22{bottom:682.266267pt;}
.ya0{bottom:682.932800pt;}
.y4{bottom:683.481333pt;}
.y18e{bottom:684.992400pt;}
.y1ba{bottom:685.317531pt;}
.y163{bottom:686.498304pt;}
.y1b4{bottom:686.582431pt;}
.y214{bottom:689.210400pt;}
.y1e6{bottom:690.399467pt;}
.yc4{bottom:690.473200pt;}
.ye5{bottom:690.821733pt;}
.y279{bottom:691.135733pt;}
.y251{bottom:691.541067pt;}
.y157{bottom:691.717743pt;}
.y2a1{bottom:692.280800pt;}
.y160{bottom:692.367113pt;}
.y12d{bottom:692.517467pt;}
.y54{bottom:695.527200pt;}
.y1c0{bottom:697.658112pt;}
.y9f{bottom:698.398800pt;}
.y110{bottom:698.583210pt;}
.y15d{bottom:702.036632pt;}
.y1bd{bottom:702.236833pt;}
.y7b{bottom:703.086933pt;}
.y213{bottom:704.917067pt;}
.y104{bottom:706.021200pt;}
.y278{bottom:706.601733pt;}
.y250{bottom:706.956400pt;}
.y21{bottom:709.068933pt;}
.yc3{bottom:711.689200pt;}
.ye4{bottom:712.037733pt;}
.y1b6{bottom:712.983424pt;}
.y9e{bottom:713.864800pt;}
.y1e5{bottom:714.356133pt;}
.y12c{bottom:715.621467pt;}
.y164{bottom:716.146085pt;}
.y111{bottom:719.593265pt;}
.y154{bottom:720.411763pt;}
.y212{bottom:720.623733pt;}
.y1bc{bottom:721.210333pt;}
.y53{bottom:722.067733pt;}
.y24f{bottom:722.371733pt;}
.y2a0{bottom:723.531600pt;}
.y7a{bottom:724.302933pt;}
.y1c1{bottom:727.226414pt;}
.yc2{bottom:732.905200pt;}
.ye3{bottom:733.253733pt;}
.y20{bottom:735.605600pt;}
.y211{bottom:736.330400pt;}
.y9d{bottom:736.890400pt;}
.y52{bottom:737.533733pt;}
.y1e4{bottom:737.712533pt;}
.y24e{bottom:737.787067pt;}
.y12b{bottom:738.725467pt;}
.y1b2{bottom:745.405341pt;}
.y79{bottom:745.518933pt;}
.y165{bottom:745.956208pt;}
.y1f{bottom:751.071600pt;}
.y210{bottom:752.037067pt;}
.y51{bottom:752.999733pt;}
.y24d{bottom:753.202400pt;}
.y1b0{bottom:755.362633pt;}
.y29f{bottom:756.635067pt;}
.y1c2{bottom:756.956624pt;}
.y151{bottom:757.679490pt;}
.y1e3{bottom:761.319867pt;}
.y12a{bottom:761.829467pt;}
.y150{bottom:763.229571pt;}
.y1e{bottom:766.537600pt;}
.y78{bottom:766.734933pt;}
.y1b3{bottom:766.746733pt;}
.y20f{bottom:767.743733pt;}
.y152{bottom:768.140428pt;}
.y50{bottom:768.465733pt;}
.y24c{bottom:768.617733pt;}
.y153{bottom:768.769505pt;}
.y29e{bottom:772.265733pt;}
.y166{bottom:775.603989pt;}
.y1d{bottom:782.003600pt;}
.y14e{bottom:782.406267pt;}
.y20e{bottom:783.450400pt;}
.y14f{bottom:783.836909pt;}
.y4f{bottom:783.931733pt;}
.y24b{bottom:784.033067pt;}
.y129{bottom:784.933467pt;}
.y1c3{bottom:786.524926pt;}
.y77{bottom:787.950933pt;}
.y1ac{bottom:789.514933pt;}
.y1b1{bottom:792.995938pt;}
.y1ae{bottom:793.785236pt;}
.y127{bottom:796.485467pt;}
.y1ad{bottom:798.531141pt;}
.y75{bottom:798.564267pt;}
.y20d{bottom:799.157067pt;}
.y29d{bottom:799.233067pt;}
.y4e{bottom:799.397733pt;}
.y24a{bottom:799.448400pt;}
.y167{bottom:805.251770pt;}
.y128{bottom:808.048133pt;}
.y76{bottom:809.177600pt;}
.y1c{bottom:812.937067pt;}
.y4d{bottom:814.863733pt;}
.y1c4{bottom:816.093229pt;}
.y1af{bottom:818.132031pt;}
.y16d{bottom:822.896267pt;}
.y3{bottom:846.303867pt;}
.y19{bottom:852.249067pt;}
.y18{bottom:873.009733pt;}
.h2{height:21.760000pt;}
.hb{height:22.171875pt;}
.h3{height:22.921875pt;}
.h6{height:23.138133pt;}
.ha{height:24.384000pt;}
.he{height:27.218750pt;}
.h15{height:27.402667pt;}
.h1a{height:28.180041pt;}
.h1c{height:28.283467pt;}
.h1d{height:28.993880pt;}
.h19{height:29.071814pt;}
.h12{height:29.360000pt;}
.h10{height:31.317333pt;}
.h17{height:31.604167pt;}
.hf{height:31.616000pt;}
.h1f{height:32.259200pt;}
.h18{height:32.265720pt;}
.h21{height:32.275733pt;}
.h20{height:33.274667pt;}
.h14{height:33.592000pt;}
.h22{height:36.292969pt;}
.h16{height:37.544000pt;}
.h11{height:38.289813pt;}
.h7{height:38.427083pt;}
.h1e{height:38.507604pt;}
.h1b{height:38.610752pt;}
.h13{height:38.880000pt;}
.h8{height:40.687500pt;}
.hc{height:41.729167pt;}
.h9{height:42.947917pt;}
.h24{height:46.106667pt;}
.hd{height:53.386667pt;}
.h4{height:73.026042pt;}
.h5{height:136.093750pt;}
.h23{height:228.701333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:491.338667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:37.795333pt;}
.x9{left:75.590533pt;}
.x28{left:76.811188pt;}
.x4c{left:77.972433pt;}
.x15{left:79.717867pt;}
.x1b{left:81.765333pt;}
.x1a{left:83.013333pt;}
.x19{left:84.634667pt;}
.x18{left:86.245333pt;}
.x21{left:88.030667pt;}
.x22{left:89.737333pt;}
.xe{left:90.710533pt;}
.x20{left:91.764000pt;}
.x1f{left:93.577333pt;}
.xd{left:94.484667pt;}
.x2c{left:96.428267pt;}
.x16{left:97.926533pt;}
.x2e{left:99.574800pt;}
.x12{left:112.603200pt;}
.x4{left:116.142800pt;}
.x25{left:123.684133pt;}
.x30{left:125.892267pt;}
.x2{left:128.881867pt;}
.x29{left:130.634573pt;}
.xc{left:133.840000pt;}
.x42{left:134.928933pt;}
.x32{left:143.496271pt;}
.x2b{left:150.636267pt;}
.x43{left:153.477733pt;}
.x4d{left:155.763733pt;}
.x36{left:160.948079pt;}
.x6{left:168.247467pt;}
.x2a{left:169.612267pt;}
.x4b{left:170.998800pt;}
.x26{left:174.174029pt;}
.x5{left:175.210267pt;}
.x3a{left:178.552083pt;}
.x52{left:192.969467pt;}
.x3e{left:196.156087pt;}
.x13{left:202.480533pt;}
.x1c{left:203.930667pt;}
.x1e{left:212.500000pt;}
.x17{left:219.888000pt;}
.x14{left:227.323200pt;}
.x27{left:228.292212pt;}
.x31{left:240.201609pt;}
.x44{left:247.172800pt;}
.x33{left:257.805613pt;}
.x4e{left:264.070667pt;}
.x45{left:268.733733pt;}
.x37{left:275.409617pt;}
.x23{left:286.473333pt;}
.x7{left:288.982400pt;}
.x3b{left:293.013621pt;}
.x53{left:297.762133pt;}
.x3f{left:310.617625pt;}
.x10{left:312.699333pt;}
.x8{left:333.444800pt;}
.x50{left:354.020285pt;}
.x3{left:355.276267pt;}
.x46{left:358.624000pt;}
.x34{left:372.114955pt;}
.x47{left:377.489867pt;}
.x4f{left:379.176533pt;}
.x38{left:389.718959pt;}
.x3c{left:407.322963pt;}
.x11{left:409.699333pt;}
.x54{left:411.908533pt;}
.x40{left:424.926967pt;}
.xa{left:446.527067pt;}
.x24{left:461.417333pt;}
.x51{left:468.329627pt;}
.xf{left:469.254800pt;}
.x48{left:470.392400pt;}
.x1d{left:476.037333pt;}
.x35{left:486.424298pt;}
.x49{left:491.636267pt;}
.x39{left:504.028302pt;}
.x2d{left:519.729733pt;}
.x3d{left:521.632306pt;}
.x41{left:539.236310pt;}
.x2f{left:566.929067pt;}
.x4a{left:593.172667pt;}
.x1{left:598.948533pt;}
}




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