
    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_125f892d660a64ae08230e0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_400b53e2a920bf4acd65a319.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_1ccb6cb0ebf18d0de7036402.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142090;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_fe9e8b3d86bbc148aefcbf36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_7f11f39d0f06799a59067fae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_e57927a41dad6f6b243e9796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_bcfdc4cd3869b764c85243f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_073a426e82dfbd10aeb1ba82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_0f06e35def91aa6e6c43d545.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_06d9ab04e18947bd9fe99f45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.667000;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_7a1c86239fed10097b650d52.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_ff2d54d692fad419235a1836.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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);}
.m3{transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.163953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163953,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.240002,0.000000,-0.079993,0.236857,0,0);-ms-transform:matrix(0.240002,0.000000,-0.079993,0.236857,0,0);-webkit-transform:matrix(0.240002,0.000000,-0.079993,0.236857,0,0);}
.m13{transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246592,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m15{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255085,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.260740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260740,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-84.555672px;}
.v13{vertical-align:-71.217656px;}
.v14{vertical-align:-65.026967px;}
.v1{vertical-align:-58.032000px;}
.v12{vertical-align:-48.612765px;}
.v11{vertical-align:-43.489710px;}
.vf{vertical-align:-31.146124px;}
.vc{vertical-align:-26.781331px;}
.v7{vertical-align:-23.040000px;}
.v6{vertical-align:-17.280000px;}
.v3{vertical-align:-14.400000px;}
.v9{vertical-align:-11.520000px;}
.vd{vertical-align:-5.187605px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.360000px;}
.v10{vertical-align:17.280000px;}
.vb{vertical-align:26.781331px;}
.ve{vertical-align:31.146124px;}
.v5{vertical-align:32.700000px;}
.v8{vertical-align:43.080000px;}
.v4{vertical-align:59.340000px;}
.lse6{letter-spacing:-6.540000px;}
.lse3{letter-spacing:-4.752000px;}
.lsd1{letter-spacing:-3.699156px;}
.lsc0{letter-spacing:-3.692606px;}
.lsc6{letter-spacing:-3.612934px;}
.ls52{letter-spacing:-1.254000px;}
.lsa{letter-spacing:-0.864000px;}
.ls65{letter-spacing:-0.840000px;}
.ls9b{letter-spacing:-0.828000px;}
.ls9c{letter-spacing:-0.774000px;}
.ls64{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.684000px;}
.lsd4{letter-spacing:-0.646648px;}
.lsd{letter-spacing:-0.618000px;}
.ls9{letter-spacing:-0.576000px;}
.ls9a{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.511800px;}
.ls8{letter-spacing:-0.432000px;}
.lsd0{letter-spacing:-0.431863px;}
.lsbf{letter-spacing:-0.431098px;}
.ls72{letter-spacing:-0.350400px;}
.ls71{letter-spacing:-0.341400px;}
.ls98{letter-spacing:-0.306600px;}
.ls7a{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.277200px;}
.ls7d{letter-spacing:-0.273000px;}
.ls31{letter-spacing:-0.264000px;}
.ls11{letter-spacing:-0.259800px;}
.ls53{letter-spacing:-0.256200px;}
.ls30{letter-spacing:-0.247800px;}
.lsa2{letter-spacing:-0.223800px;}
.ls60{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.208200px;}
.ls81{letter-spacing:-0.205800px;}
.lsb0{letter-spacing:-0.200222px;}
.ls29{letter-spacing:-0.189600px;}
.ls7b{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.175800px;}
.ls2f{letter-spacing:-0.160200px;}
.ls82{letter-spacing:-0.154800px;}
.lsc{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.122400px;}
.ls67{letter-spacing:-0.117600px;}
.lsbc{letter-spacing:-0.112078px;}
.ls7{letter-spacing:-0.106800px;}
.ls89{letter-spacing:-0.100200px;}
.ls5f{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.053400px;}
.lsba{letter-spacing:-0.045600px;}
.ls24{letter-spacing:-0.042600px;}
.ls15{letter-spacing:-0.040200px;}
.ls63{letter-spacing:-0.037200px;}
.lsd2{letter-spacing:-0.030000px;}
.ls74{letter-spacing:-0.028200px;}
.ls3c{letter-spacing:-0.021600px;}
.ls2a{letter-spacing:-0.018600px;}
.ls0{letter-spacing:0.000000px;}
.lse5{letter-spacing:0.000024px;}
.lsc1{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.018600px;}
.ls8f{letter-spacing:0.028200px;}
.ls1c{letter-spacing:0.037200px;}
.lscc{letter-spacing:0.037800px;}
.ls10{letter-spacing:0.053400px;}
.lscb{letter-spacing:0.067968px;}
.lsc9{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.081216px;}
.ls32{letter-spacing:0.103800px;}
.ls5e{letter-spacing:0.103968px;}
.ls70{letter-spacing:0.104472px;}
.lsdf{letter-spacing:0.105600px;}
.lsbd{letter-spacing:0.108000px;}
.lsbb{letter-spacing:0.112078px;}
.lsc5{letter-spacing:0.113724px;}
.ls5a{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.133200px;}
.lsd3{letter-spacing:0.136200px;}
.lsb{letter-spacing:0.144000px;}
.ls7c{letter-spacing:0.186000px;}
.ls92{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.208200px;}
.ls7e{letter-spacing:0.211968px;}
.lsa4{letter-spacing:0.212553px;}
.ls2d{letter-spacing:0.216000px;}
.lsad{letter-spacing:0.217215px;}
.ls7f{letter-spacing:0.223920px;}
.lse4{letter-spacing:0.228024px;}
.ls83{letter-spacing:0.236400px;}
.lsb8{letter-spacing:0.251663px;}
.ls5{letter-spacing:0.259680px;}
.ls95{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls69{letter-spacing:0.264000px;}
.lse2{letter-spacing:0.273600px;}
.ls1{letter-spacing:0.288000px;}
.ls45{letter-spacing:0.309600px;}
.lse1{letter-spacing:0.324000px;}
.ls73{letter-spacing:0.334800px;}
.ls20{letter-spacing:0.341400px;}
.ls26{letter-spacing:0.360000px;}
.lsa6{letter-spacing:0.394895px;}
.lsb3{letter-spacing:0.408000px;}
.lsdb{letter-spacing:0.413400px;}
.ls6f{letter-spacing:0.492000px;}
.lsaa{letter-spacing:0.573238px;}
.lsac{letter-spacing:0.575910px;}
.lse0{letter-spacing:0.612000px;}
.lsbe{letter-spacing:0.648000px;}
.lsb5{letter-spacing:0.663894px;}
.lsb7{letter-spacing:0.666566px;}
.ls90{letter-spacing:0.666720px;}
.ls91{letter-spacing:0.667200px;}
.ls37{letter-spacing:0.677952px;}
.ls42{letter-spacing:0.678000px;}
.ls38{letter-spacing:0.698616px;}
.ls39{letter-spacing:0.698688px;}
.ls48{letter-spacing:0.720480px;}
.ls21{letter-spacing:0.738000px;}
.ls49{letter-spacing:0.738720px;}
.ls4a{letter-spacing:0.739080px;}
.ls22{letter-spacing:0.756000px;}
.ls47{letter-spacing:0.776520px;}
.ls2c{letter-spacing:0.823968px;}
.ls2b{letter-spacing:0.824400px;}
.ls5b{letter-spacing:0.864000px;}
.lsda{letter-spacing:0.924000px;}
.ls75{letter-spacing:1.044000px;}
.lscf{letter-spacing:1.152000px;}
.lsaf{letter-spacing:1.366325px;}
.ls14{letter-spacing:1.458720px;}
.ls19{letter-spacing:1.477200px;}
.ls51{letter-spacing:1.477680px;}
.lsab{letter-spacing:1.567355px;}
.ls9f{letter-spacing:1.584000px;}
.ls8d{letter-spacing:1.781280px;}
.lsb6{letter-spacing:1.822801px;}
.ls99{letter-spacing:1.908000px;}
.lsa3{letter-spacing:1.984999px;}
.ls97{letter-spacing:2.106720px;}
.ls3f{letter-spacing:2.178720px;}
.ls28{letter-spacing:2.179440px;}
.lsae{letter-spacing:2.189186px;}
.lscd{letter-spacing:2.227968px;}
.ls5d{letter-spacing:2.304000px;}
.lsa5{letter-spacing:2.475857px;}
.lsb9{letter-spacing:2.536368px;}
.ls96{letter-spacing:2.826720px;}
.ls50{letter-spacing:2.898720px;}
.ls3a{letter-spacing:2.936520px;}
.ls2{letter-spacing:3.024000px;}
.lsa7{letter-spacing:3.330630px;}
.lsd8{letter-spacing:3.546960px;}
.ls12{letter-spacing:3.618720px;}
.ls4{letter-spacing:3.703968px;}
.ls57{letter-spacing:3.744000px;}
.lsb1{letter-spacing:3.873452px;}
.lsa9{letter-spacing:4.246206px;}
.lsd6{letter-spacing:4.266720px;}
.ls86{letter-spacing:4.320480px;}
.ls1d{letter-spacing:4.357680px;}
.lsb4{letter-spacing:4.937525px;}
.lsd7{letter-spacing:4.986720px;}
.ls1b{letter-spacing:5.058720px;}
.lsca{letter-spacing:5.184000px;}
.ls4b{letter-spacing:5.778720px;}
.lsc2{letter-spacing:5.904000px;}
.ls4c{letter-spacing:5.941200px;}
.ls33{letter-spacing:6.480480px;}
.ls34{letter-spacing:7.938720px;}
.lsd9{letter-spacing:8.587440px;}
.ls18{letter-spacing:8.640480px;}
.ls17{letter-spacing:8.658720px;}
.ls16{letter-spacing:8.677200px;}
.lsa0{letter-spacing:8.784000px;}
.ls94{letter-spacing:9.306720px;}
.ls4e{letter-spacing:9.378720px;}
.ls68{letter-spacing:10.183968px;}
.ls58{letter-spacing:10.224000px;}
.ls8e{letter-spacing:10.601280px;}
.lsdc{letter-spacing:10.746720px;}
.lsdd{letter-spacing:10.747440px;}
.ls6a{letter-spacing:10.920000px;}
.ls59{letter-spacing:10.944000px;}
.ls35{letter-spacing:11.520480px;}
.ls6d{letter-spacing:11.640000px;}
.lsde{letter-spacing:12.186720px;}
.ls8c{letter-spacing:12.259200px;}
.ls36{letter-spacing:12.296520px;}
.ls85{letter-spacing:12.938688px;}
.ls44{letter-spacing:14.418720px;}
.ls87{letter-spacing:15.138720px;}
.ls27{letter-spacing:17.298720px;}
.ls5c{letter-spacing:17.424000px;}
.ls3d{letter-spacing:18.738720px;}
.ls3e{letter-spacing:18.840480px;}
.ls25{letter-spacing:19.458720px;}
.ls6b{letter-spacing:19.560000px;}
.ls93{letter-spacing:22.284000px;}
.ls6c{letter-spacing:22.440000px;}
.ls80{letter-spacing:23.058240px;}
.ls1f{letter-spacing:23.059680px;}
.ls1e{letter-spacing:23.077200px;}
.ls40{letter-spacing:23.738688px;}
.ls41{letter-spacing:24.458688px;}
.ls8a{letter-spacing:25.218720px;}
.ls8b{letter-spacing:25.938720px;}
.ls84{letter-spacing:27.558720px;}
.lsc7{letter-spacing:29.664000px;}
.lsce{letter-spacing:52.308501px;}
.ls2e{letter-spacing:52.560000px;}
.lsa8{letter-spacing:53.294661px;}
.ls9e{letter-spacing:58.320000px;}
.ls9d{letter-spacing:60.480000px;}
.lsb2{letter-spacing:61.746618px;}
.lsd5{letter-spacing:64.764000px;}
.lsc8{letter-spacing:82.944000px;}
.ls88{letter-spacing:102.978720px;}
.ls13{letter-spacing:127.764000px;}
.ls56{letter-spacing:138.657600px;}
.ls55{letter-spacing:138.708000px;}
.ls62{letter-spacing:141.876000px;}
.lsc4{letter-spacing:149.884053px;}
.lsa1{letter-spacing:174.929138px;}
.ls54{letter-spacing:188.981280px;}
.ls78{letter-spacing:251.646720px;}
.ls79{letter-spacing:251.706720px;}
.ls76{letter-spacing:251.766720px;}
.ls77{letter-spacing:251.826720px;}
.lsc3{letter-spacing:397.974639px;}
.ls61{letter-spacing:2210.298720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(51,51,204),0 0.015em rgb(51,51,204),0.015em 0 rgb(51,51,204),0 -0.015em  rgb(51,51,204);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(51,51,204);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5a{word-spacing:-59.592434px;}
.ws56{word-spacing:-59.450015px;}
.ws4e{word-spacing:-52.651296px;}
.ws4f{word-spacing:-52.572240px;}
.ws87{word-spacing:-49.597118px;}
.ws8d{word-spacing:-49.580595px;}
.ws79{word-spacing:-49.492801px;}
.ws41{word-spacing:-39.888000px;}
.ws37{word-spacing:-39.528000px;}
.ws36{word-spacing:-30.024000px;}
.ws95{word-spacing:-29.725056px;}
.ws80{word-spacing:-29.646000px;}
.ws12{word-spacing:-27.377280px;}
.ws1f{word-spacing:-27.339312px;}
.ws55{word-spacing:-27.071956px;}
.ws16{word-spacing:-26.981280px;}
.ws21{word-spacing:-26.970912px;}
.wsf{word-spacing:-26.962680px;}
.ws1d{word-spacing:-26.829480px;}
.ws35{word-spacing:-26.794512px;}
.ws34{word-spacing:-26.661312px;}
.ws10{word-spacing:-26.658480px;}
.ws11{word-spacing:-26.639880px;}
.ws1e{word-spacing:-26.639712px;}
.wse{word-spacing:-26.621280px;}
.ws14{word-spacing:-26.618712px;}
.ws17{word-spacing:-26.602680px;}
.ws20{word-spacing:-26.538912px;}
.ws15{word-spacing:-26.431680px;}
.ws23{word-spacing:-26.413080px;}
.ws25{word-spacing:-26.405112px;}
.ws1c{word-spacing:-26.384112px;}
.ws13{word-spacing:-25.937280px;}
.ws24{word-spacing:-25.407312px;}
.ws2c{word-spacing:-23.760120px;}
.ws3a{word-spacing:-23.753520px;}
.ws9a{word-spacing:-23.458752px;}
.ws46{word-spacing:-23.446920px;}
.ws2d{word-spacing:-23.437320px;}
.ws38{word-spacing:-23.418720px;}
.ws3b{word-spacing:-23.390520px;}
.ws2b{word-spacing:-23.381520px;}
.ws39{word-spacing:-23.068320px;}
.ws30{word-spacing:-22.716720px;}
.ws2e{word-spacing:-22.662720px;}
.ws2f{word-spacing:-22.618752px;}
.ws86{word-spacing:-22.585209px;}
.ws92{word-spacing:-22.577684px;}
.ws7e{word-spacing:-22.537705px;}
.ws6d{word-spacing:-22.133660px;}
.ws8a{word-spacing:-21.168000px;}
.ws76{word-spacing:-20.664000px;}
.ws5{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.264232px;}
.wsa0{word-spacing:-20.244024px;}
.ws1b{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws1a{word-spacing:-20.159832px;}
.ws89{word-spacing:-20.088000px;}
.wsa{word-spacing:-20.056032px;}
.ws2{word-spacing:-20.016000px;}
.ws28{word-spacing:-19.944000px;}
.ws2a{word-spacing:-19.895832px;}
.wsd{word-spacing:-19.880232px;}
.ws8{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.808232px;}
.ws29{word-spacing:-19.800000px;}
.ws19{word-spacing:-19.792032px;}
.ws3{word-spacing:-19.584000px;}
.wsc{word-spacing:-19.544232px;}
.ws4{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.438032px;}
.ws6{word-spacing:-19.152000px;}
.ws5d{word-spacing:-19.031867px;}
.ws49{word-spacing:-18.521280px;}
.ws71{word-spacing:-18.442946px;}
.ws9e{word-spacing:-18.414720px;}
.ws6c{word-spacing:-18.263906px;}
.ws3e{word-spacing:-18.000240px;}
.ws52{word-spacing:-17.799114px;}
.ws9f{word-spacing:-17.586720px;}
.ws3f{word-spacing:-17.541240px;}
.ws98{word-spacing:-17.537280px;}
.ws9c{word-spacing:-17.225280px;}
.ws64{word-spacing:-17.205809px;}
.ws99{word-spacing:-17.026680px;}
.ws45{word-spacing:-16.973280px;}
.ws4a{word-spacing:-16.873080px;}
.ws48{word-spacing:-16.819680px;}
.ws9b{word-spacing:-16.718880px;}
.ws3d{word-spacing:-16.666680px;}
.ws31{word-spacing:-16.653312px;}
.ws22{word-spacing:-16.613280px;}
.ws42{word-spacing:-16.559880px;}
.ws43{word-spacing:-16.513080px;}
.ws1{word-spacing:-16.506480px;}
.ws3c{word-spacing:-16.466712px;}
.ws44{word-spacing:-16.353480px;}
.ws47{word-spacing:-16.306680px;}
.ws58{word-spacing:-16.210650px;}
.ws4b{word-spacing:-16.099680px;}
.ws53{word-spacing:-16.026668px;}
.ws61{word-spacing:-15.918452px;}
.ws66{word-spacing:-15.839484px;}
.ws4d{word-spacing:-15.839280px;}
.ws59{word-spacing:-15.815755px;}
.ws54{word-spacing:-15.814115px;}
.ws4c{word-spacing:-15.785280px;}
.ws5c{word-spacing:-15.706715px;}
.ws74{word-spacing:-15.690903px;}
.ws65{word-spacing:-15.639262px;}
.ws73{word-spacing:-15.578826px;}
.ws75{word-spacing:-15.466748px;}
.ws9d{word-spacing:-15.264000px;}
.ws81{word-spacing:-15.228000px;}
.ws94{word-spacing:-15.089832px;}
.ws96{word-spacing:-15.052032px;}
.ws7f{word-spacing:-15.030000px;}
.ws93{word-spacing:-15.022032px;}
.ws82{word-spacing:-15.012000px;}
.ws40{word-spacing:-13.410720px;}
.ws72{word-spacing:-13.365120px;}
.ws50{word-spacing:-13.186920px;}
.ws84{word-spacing:-11.433666px;}
.ws8f{word-spacing:-11.289948px;}
.ws7b{word-spacing:-11.269957px;}
.ws32{word-spacing:-11.248992px;}
.ws70{word-spacing:-10.040334px;}
.ws60{word-spacing:-8.633290px;}
.ws90{word-spacing:-7.590792px;}
.ws7c{word-spacing:-7.577351px;}
.wsa2{word-spacing:-2.808000px;}
.wsa5{word-spacing:-2.016000px;}
.wsa7{word-spacing:-1.152000px;}
.wsa9{word-spacing:-1.068000px;}
.wsa1{word-spacing:-0.648000px;}
.wsa8{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.108547px;}
.ws57{word-spacing:-0.108288px;}
.ws33{word-spacing:-0.108000px;}
.ws88{word-spacing:-0.090341px;}
.ws8c{word-spacing:-0.090311px;}
.ws78{word-spacing:-0.090151px;}
.ws6b{word-spacing:-0.063358px;}
.ws0{word-spacing:0.000000px;}
.wsa6{word-spacing:0.216000px;}
.ws77{word-spacing:0.340948px;}
.ws8b{word-spacing:0.341552px;}
.wsaa{word-spacing:0.408000px;}
.ws97{word-spacing:0.556497px;}
.wsa4{word-spacing:0.576000px;}
.wsa3{word-spacing:2.172000px;}
.ws26{word-spacing:55.403280px;}
.ws27{word-spacing:55.482552px;}
.ws5e{word-spacing:94.481905px;}
.ws6e{word-spacing:109.880466px;}
.ws63{word-spacing:239.853092px;}
.ws83{word-spacing:255.508208px;}
.ws5f{word-spacing:265.254223px;}
.ws7a{word-spacing:298.932048px;}
.ws8e{word-spacing:299.462318px;}
.ws62{word-spacing:301.501479px;}
.ws6f{word-spacing:308.485075px;}
.ws51{word-spacing:313.315631px;}
.ws7d{word-spacing:471.083450px;}
.ws91{word-spacing:471.919096px;}
.ws85{word-spacing:488.093439px;}
.ws69{word-spacing:777.581033px;}
.ws6a{word-spacing:805.743500px;}
.ws67{word-spacing:1212.034188px;}
.ws68{word-spacing:1231.410709px;}
._72{margin-left:-1009.673124px;}
._70{margin-left:-861.252883px;}
._63{margin-left:-747.358842px;}
._6c{margin-left:-627.712850px;}
._68{margin-left:-517.013923px;}
._6e{margin-left:-467.482270px;}
._6d{margin-left:-458.734398px;}
._92{margin-left:-443.541048px;}
._69{margin-left:-440.804734px;}
._5d{margin-left:-438.828477px;}
._75{margin-left:-371.500678px;}
._8f{margin-left:-363.276346px;}
._67{margin-left:-357.029704px;}
._74{margin-left:-345.771421px;}
._90{margin-left:-342.842490px;}
._91{margin-left:-332.886594px;}
._65{margin-left:-322.845414px;}
._60{margin-left:-319.438870px;}
._93{margin-left:-304.424358px;}
._5f{margin-left:-297.315290px;}
._6a{margin-left:-293.477832px;}
._61{margin-left:-277.740419px;}
._8e{margin-left:-255.572950px;}
._7e{margin-left:-254.112176px;}
._81{margin-left:-233.650980px;}
._5a{margin-left:-226.533241px;}
._55{margin-left:-223.369896px;}
._56{margin-left:-221.591865px;}
._53{margin-left:-218.817695px;}
._6b{margin-left:-217.351251px;}
._7f{margin-left:-215.129609px;}
._57{margin-left:-213.410286px;}
._80{margin-left:-212.115416px;}
._6f{margin-left:-209.668104px;}
._58{margin-left:-208.104400px;}
._71{margin-left:-204.549012px;}
._5b{margin-left:-194.788778px;}
._73{margin-left:-186.952964px;}
._59{margin-left:-181.521668px;}
._54{margin-left:-179.164185px;}
._82{margin-left:-176.819540px;}
._66{margin-left:-175.126681px;}
._85{margin-left:-169.935668px;}
._8a{margin-left:-166.084135px;}
._8b{margin-left:-162.265528px;}
._5e{margin-left:-160.753525px;}
._94{margin-left:-159.709346px;}
._22{margin-left:-157.227600px;}
._8c{margin-left:-155.459592px;}
._76{margin-left:-139.758736px;}
._89{margin-left:-130.702840px;}
._7d{margin-left:-129.594495px;}
._62{margin-left:-120.628379px;}
._8d{margin-left:-116.765396px;}
._7b{margin-left:-111.506097px;}
._5c{margin-left:-90.839167px;}
._7c{margin-left:-67.397114px;}
._46{margin-left:-12.319920px;}
._12{margin-left:-10.932480px;}
._44{margin-left:-9.732024px;}
._1b{margin-left:-8.644741px;}
._13{margin-left:-7.488000px;}
._6{margin-left:-6.480000px;}
._7{margin-left:-5.232000px;}
._5{margin-left:-3.897684px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.152000px;}
._4{width:1.152000px;}
._3{width:2.232000px;}
._1{width:3.960000px;}
._e{width:5.256000px;}
._b{width:7.068000px;}
._a{width:8.352000px;}
._9{width:9.408024px;}
._38{width:10.619810px;}
._1a{width:11.664047px;}
._16{width:12.918485px;}
._15{width:13.949455px;}
._10{width:15.371976px;}
._f{width:16.464024px;}
._19{width:17.773683px;}
._17{width:19.459198px;}
._18{width:20.768747px;}
._4d{width:22.126741px;}
._14{width:23.203223px;}
._c{width:24.708000px;}
._d{width:26.052000px;}
._3d{width:28.184971px;}
._42{width:30.876000px;}
._25{width:32.443680px;}
._88{width:34.068024px;}
._87{width:35.352000px;}
._96{width:36.912024px;}
._3f{width:39.648024px;}
._39{width:41.236140px;}
._1d{width:42.323324px;}
._1c{width:43.415949px;}
._83{width:46.884063px;}
._95{width:47.928000px;}
._1e{width:49.283937px;}
._86{width:51.852000px;}
._40{width:53.472024px;}
._50{width:56.880000px;}
._52{width:58.320000px;}
._51{width:60.480000px;}
._28{width:63.251874px;}
._3c{width:65.211360px;}
._43{width:71.483976px;}
._84{width:72.513684px;}
._7a{width:80.496000px;}
._3a{width:82.422690px;}
._3b{width:84.014441px;}
._35{width:87.138394px;}
._2b{width:88.358994px;}
._2e{width:90.847846px;}
._49{width:103.552087px;}
._45{width:104.820000px;}
._1f{width:105.858562px;}
._77{width:109.180294px;}
._23{width:116.356871px;}
._27{width:117.478751px;}
._31{width:118.837440px;}
._11{width:127.763950px;}
._2f{width:138.563954px;}
._33{width:145.458720px;}
._21{width:184.892165px;}
._20{width:185.922541px;}
._3e{width:192.384000px;}
._2d{width:223.964158px;}
._4f{width:241.834320px;}
._2a{width:275.958918px;}
._29{width:313.209215px;}
._47{width:317.960160px;}
._2c{width:398.753166px;}
._24{width:405.518329px;}
._26{width:412.104000px;}
._32{width:478.818720px;}
._8{width:494.592000px;}
._34{width:745.916088px;}
._41{width:864.204000px;}
._64{width:879.166595px;}
._78{width:887.447040px;}
._79{width:888.897360px;}
._4a{width:892.425600px;}
._30{width:931.280782px;}
._36{width:1007.769406px;}
._4b{width:1035.956400px;}
._4e{width:1168.943280px;}
._48{width:1226.861280px;}
._4c{width:1393.359360px;}
._37{width:1804.818720px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,128,0);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,204);}
.fc7{color:rgb(204,0,153);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:30.240000px;}
.fs16{font-size:31.680000px;}
.fsf{font-size:36.000000px;}
.fs12{font-size:40.464000px;}
.fs34{font-size:45.079827px;}
.fs39{font-size:45.159794px;}
.fs36{font-size:45.279768px;}
.fsd{font-size:48.240000px;}
.fs15{font-size:54.000000px;}
.fs3a{font-size:54.144000px;}
.fs32{font-size:56.038941px;}
.fs4{font-size:59.760000px;}
.fs11{font-size:59.904000px;}
.fs1f{font-size:62.804947px;}
.fs1c{font-size:62.826860px;}
.fs21{font-size:63.119736px;}
.fs18{font-size:63.256461px;}
.fs1a{font-size:63.263020px;}
.fs26{font-size:63.357936px;}
.fs13{font-size:64.080000px;}
.fs3c{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs2a{font-size:72.762748px;}
.fs2f{font-size:72.765133px;}
.fs2d{font-size:73.040831px;}
.fs28{font-size:73.055624px;}
.fs3{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs33{font-size:90.150821px;}
.fs38{font-size:90.310738px;}
.fs37{font-size:90.340835px;}
.fs3b{font-size:95.153283px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs1d{font-size:107.607346px;}
.fs20{font-size:107.730119px;}
.fs1e{font-size:107.811164px;}
.fs23{font-size:107.934556px;}
.fs1{font-size:108.000000px;}
.fs22{font-size:108.108972px;}
.fs2{font-size:108.144000px;}
.fs19{font-size:108.287824px;}
.fs1b{font-size:108.547238px;}
.fs27{font-size:108.678668px;}
.fs6{font-size:120.240000px;}
.fs14{font-size:120.384000px;}
.fs2b{font-size:124.625140px;}
.fs30{font-size:125.051810px;}
.fs29{font-size:125.126766px;}
.fs2e{font-size:125.287859px;}
.fs2c{font-size:125.363767px;}
.fs31{font-size:130.570732px;}
.fs35{font-size:141.175597px;}
.fs25{font-size:143.498465px;}
.fsc{font-size:144.000000px;}
.fsb{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fs17{font-size:169.831565px;}
.fs24{font-size:170.352330px;}
.fsa{font-size:360.144000px;}
.y1cf{bottom:-15.264000px;}
.y6a{bottom:-15.048000px;}
.y34d{bottom:-10.872000px;}
.y0{bottom:0.000000px;}
.y2aa{bottom:2.445860px;}
.y283{bottom:2.914258px;}
.y24c{bottom:3.391450px;}
.y253{bottom:3.391471px;}
.y248{bottom:3.392633px;}
.y243{bottom:3.392655px;}
.y24f{bottom:3.408470px;}
.y232{bottom:3.415866px;}
.y23b{bottom:3.416194px;}
.y25d{bottom:3.421376px;}
.y263{bottom:3.929193px;}
.y26f{bottom:3.929322px;}
.y26b{bottom:3.944185px;}
.y267{bottom:3.944984px;}
.y25f{bottom:3.945009px;}
.y2d7{bottom:4.867040px;}
.y2e0{bottom:4.868144px;}
.y29f{bottom:4.868166px;}
.y2ca{bottom:4.876802px;}
.y69{bottom:6.552000px;}
.y2a9{bottom:8.415073px;}
.y17e{bottom:8.670000px;}
.y254{bottom:10.086804px;}
.y249{bottom:10.120747px;}
.y244{bottom:10.120768px;}
.y235{bottom:10.159153px;}
.y250{bottom:10.167947px;}
.y23f{bottom:10.175993px;}
.y25c{bottom:10.333131px;}
.y231{bottom:10.586454px;}
.y25b{bottom:10.595010px;}
.y34c{bottom:10.728000px;}
.y245{bottom:11.362783px;}
.y24d{bottom:11.385814px;}
.y255{bottom:11.385835px;}
.y24a{bottom:11.413716px;}
.y251{bottom:11.415752px;}
.y270{bottom:11.686462px;}
.y264{bottom:11.721338px;}
.y268{bottom:11.768493px;}
.y260{bottom:11.768517px;}
.ya{bottom:12.636000px;}
.y265{bottom:13.159774px;}
.y271{bottom:13.191505px;}
.y261{bottom:13.212744px;}
.y26c{bottom:13.241462px;}
.y269{bottom:13.271969px;}
.yc{bottom:14.508000px;}
.y1ce{bottom:19.296000px;}
.y2ac{bottom:20.195599px;}
.y17f{bottom:21.750000px;}
.y282{bottom:22.247693px;}
.y23a{bottom:24.560809px;}
.y2ae{bottom:25.846822px;}
.y68{bottom:28.152000px;}
.y9{bottom:30.636000px;}
.y238{bottom:31.298071px;}
.y23e{bottom:31.318389px;}
.y34b{bottom:32.328000px;}
.yb{bottom:32.508000px;}
.y2ab{bottom:35.014750px;}
.y2de{bottom:35.119023px;}
.y2a1{bottom:35.281370px;}
.y2cc{bottom:35.343955px;}
.y2d9{bottom:35.763904px;}
.y2e5{bottom:35.766113px;}
.y281{bottom:38.358888px;}
.y2ad{bottom:40.611298px;}
.y2a3{bottom:40.879908px;}
.y2ce{bottom:40.952424px;}
.y2e1{bottom:41.364651px;}
.y233{bottom:41.627090px;}
.y2e9{bottom:42.979062px;}
.y17c{bottom:43.485000px;}
.y234{bottom:44.090772px;}
.y23c{bottom:44.134719px;}
.y236{bottom:48.425271px;}
.y2dc{bottom:49.544921px;}
.y67{bottom:49.752000px;}
.y31{bottom:50.400000px;}
.y237{bottom:50.886758px;}
.y240{bottom:50.894518px;}
.y6{bottom:51.264000px;}
.y1cd{bottom:53.856000px;}
.y34a{bottom:53.928000px;}
.y2a0{bottom:58.645053px;}
.y2cb{bottom:58.749082px;}
.y2d8{bottom:59.125378px;}
.y2dd{bottom:60.956222px;}
.y1a8{bottom:61.416000px;}
.y176{bottom:61.635000px;}
.y9c{bottom:66.888000px;}
.yd1{bottom:67.212000px;}
.yb3{bottom:68.184000px;}
.y2e6{bottom:68.279596px;}
.ye5{bottom:69.228000px;}
.y2a2{bottom:69.517480px;}
.y2cd{bottom:69.640796px;}
.y2da{bottom:70.053018px;}
.y2e7{bottom:70.055227px;}
.y2db{bottom:70.591891px;}
.y2e8{bottom:70.594100px;}
.y37b{bottom:71.100000px;}
.y30{bottom:71.280000px;}
.ya1{bottom:71.892000px;}
.y95{bottom:72.180000px;}
.y66{bottom:72.432000px;}
.y20c{bottom:73.044000px;}
.y274{bottom:73.284915px;}
.y2e2{bottom:73.878134px;}
.y2a4{bottom:75.169022px;}
.y2cf{bottom:75.302363px;}
.y2df{bottom:75.382120px;}
.y349{bottom:75.528000px;}
.y2ea{bottom:75.545549px;}
.y2e3{bottom:75.653765px;}
.y2e4{bottom:76.245642px;}
.y131{bottom:76.860000px;}
.y2d6{bottom:77.144074px;}
.y211{bottom:77.580000px;}
.y2fb{bottom:78.480000px;}
.y2d5{bottom:78.948000px;}
.y194{bottom:79.524000px;}
.y295{bottom:79.596000px;}
.y1ac{bottom:80.964000px;}
.y2c8{bottom:81.396000px;}
.y14c{bottom:81.576000px;}
.y129{bottom:82.404000px;}
.y364{bottom:82.728000px;}
.y209{bottom:82.764000px;}
.y1da{bottom:82.980000px;}
.y262{bottom:84.201449px;}
.y5{bottom:84.924000px;}
.y1d8{bottom:86.220000px;}
.y199{bottom:86.652000px;}
.yfb{bottom:87.660000px;}
.y1cc{bottom:88.416000px;}
.ye7{bottom:88.488000px;}
.y81{bottom:88.596000px;}
.y23d{bottom:88.635803px;}
.y2f{bottom:89.280000px;}
.y294{bottom:89.316000px;}
.y1b0{bottom:89.532000px;}
.ye4{bottom:91.908000px;}
.y174{bottom:92.052000px;}
.yd0{bottom:92.412000px;}
.y37a{bottom:92.700000px;}
.y22c{bottom:92.808000px;}
.y333{bottom:94.896000px;}
.y2d4{bottom:95.184000px;}
.y35b{bottom:95.328000px;}
.y304{bottom:95.364000px;}
.y241{bottom:95.395602px;}
.y9b{bottom:95.724000px;}
.y65{bottom:96.192000px;}
.y2fa{bottom:96.480000px;}
.y348{bottom:97.128000px;}
.y70{bottom:97.164000px;}
.y94{bottom:98.100000px;}
.y130{bottom:98.460000px;}
.y208{bottom:100.800000px;}
.y1d6{bottom:102.060000px;}
.y1ab{bottom:102.564000px;}
.yb2{bottom:102.744000px;}
.y2c7{bottom:102.996000px;}
.y363{bottom:103.608000px;}
.y1af{bottom:104.400000px;}
.y293{bottom:104.472000px;}
.y210{bottom:106.380000px;}
.y42{bottom:106.452000px;}
.y2e{bottom:107.280000px;}
.y128{bottom:107.640000px;}
.y186{bottom:109.080000px;}
.y1c0{bottom:109.512000px;}
.y45{bottom:110.088000px;}
.ye3{bottom:110.268000px;}
.y315{bottom:110.484000px;}
.y1ff{bottom:111.168000px;}
.y40{bottom:111.816000px;}
.y173{bottom:113.652000px;}
.yfa{bottom:113.760000px;}
.y379{bottom:114.300000px;}
.y22b{bottom:114.408000px;}
.y2f9{bottom:114.480000px;}
.y1d7{bottom:115.020000px;}
.y332{bottom:116.496000px;}
.y80{bottom:116.676000px;}
.y2d3{bottom:116.856000px;}
.y166{bottom:116.892000px;}
.y35a{bottom:116.928000px;}
.y303{bottom:116.964000px;}
.ycf{bottom:117.612000px;}
.y64{bottom:117.828000px;}
.y4{bottom:118.584000px;}
.y1cb{bottom:118.656000px;}
.y347{bottom:118.728000px;}
.y6f{bottom:118.764000px;}
.y207{bottom:118.800000px;}
.y12f{bottom:120.060000px;}
.yc8{bottom:121.788000px;}
.y362{bottom:122.328000px;}
.y292{bottom:122.472000px;}
.y111{bottom:122.652000px;}
.y93{bottom:124.020000px;}
.y1aa{bottom:124.164000px;}
.y9a{bottom:124.524000px;}
.y2c6{bottom:124.596000px;}
.y2d{bottom:125.316000px;}
.y177{bottom:126.870000px;}
.yf9{bottom:130.860000px;}
.y2f8{bottom:132.480000px;}
.y127{bottom:132.840000px;}
.y43{bottom:133.128000px;}
.y16c{bottom:134.244000px;}
.y18d{bottom:134.496000px;}
.y20f{bottom:135.180000px;}
.y185{bottom:135.360000px;}
.y378{bottom:135.936000px;}
.y22a{bottom:136.008000px;}
.y206{bottom:136.800000px;}
.yb1{bottom:137.304000px;}
.y331{bottom:138.096000px;}
.y165{bottom:138.492000px;}
.y302{bottom:138.564000px;}
.y1b3{bottom:139.536000px;}
.y1ca{bottom:140.292000px;}
.y6e{bottom:140.364000px;}
.y1fe{bottom:141.408000px;}
.y12e{bottom:141.660000px;}
.ye2{bottom:142.704000px;}
.yce{bottom:142.812000px;}
.y1a7{bottom:143.100000px;}
.y1ee{bottom:143.244000px;}
.y2c{bottom:143.316000px;}
.y361{bottom:143.964000px;}
.y110{bottom:144.252000px;}
.y46{bottom:144.684000px;}
.y314{bottom:145.044000px;}
.y2c5{bottom:146.232000px;}
.y16b{bottom:146.484000px;}
.y3f{bottom:146.556000px;}
.y92{bottom:149.940000px;}
.yc3{bottom:150.840000px;}
.y7f{bottom:151.275000px;}
.y63{bottom:152.385000px;}
.y99{bottom:153.330000px;}
.y175{bottom:153.360000px;}
.y1df{bottom:153.615000px;}
.y205{bottom:154.800000px;}
.y18c{bottom:156.090000px;}
.y377{bottom:157.530000px;}
.y229{bottom:157.605000px;}
.y56{bottom:157.785000px;}
.y126{bottom:158.040000px;}
.yf8{bottom:159.660000px;}
.y330{bottom:159.690000px;}
.y164{bottom:160.095000px;}
.y301{bottom:160.170000px;}
.y184{bottom:160.950000px;}
.y2b{bottom:161.310000px;}
.y6d{bottom:161.970000px;}
.y246{bottom:162.725461px;}
.y12d{bottom:163.290000px;}
.y10f{bottom:163.695000px;}
.y20e{bottom:164.010000px;}
.y143{bottom:165.165000px;}
.y360{bottom:165.570000px;}
.y2c4{bottom:167.835000px;}
.ycd{bottom:168.045000px;}
.ye1{bottom:170.790000px;}
.y1fd{bottom:171.645000px;}
.y16a{bottom:171.690000px;}
.yb0{bottom:171.870000px;}
.y204{bottom:172.800000px;}
.y1c9{bottom:174.855000px;}
.y2f5{bottom:175.290000px;}
.y91{bottom:175.890000px;}
.y10e{bottom:176.685000px;}
.yc2{bottom:176.760000px;}
.y18b{bottom:177.690000px;}
.y1ed{bottom:177.840000px;}
.y376{bottom:179.130000px;}
.y228{bottom:179.250000px;}
.y2a{bottom:179.310000px;}
.y313{bottom:179.610000px;}
.y55{bottom:180.465000px;}
.y1a6{bottom:180.540000px;}
.y32f{bottom:181.290000px;}
.y3e{bottom:181.470000px;}
.y163{bottom:181.695000px;}
.y300{bottom:181.770000px;}
.y98{bottom:182.130000px;}
.y125{bottom:183.240000px;}
.y6c{bottom:183.570000px;}
.y12c{bottom:184.890000px;}
.y7e{bottom:185.835000px;}
.y183{bottom:186.555000px;}
.y142{bottom:186.765000px;}
.y62{bottom:186.945000px;}
.y35f{bottom:187.170000px;}
.yf7{bottom:188.490000px;}
.y37f{bottom:188.817000px;}
.y2c3{bottom:189.435000px;}
.y1de{bottom:189.615000px;}
.y203{bottom:190.800000px;}
.y1a4{bottom:191.055000px;}
.y178{bottom:192.135000px;}
.y272{bottom:195.270000px;}
.y2af{bottom:195.450000px;}
.y259{bottom:196.192917px;}
.y169{bottom:196.890000px;}
.y29{bottom:197.310000px;}
.y18a{bottom:199.290000px;}
.y26d{bottom:200.723494px;}
.y375{bottom:200.730000px;}
.y227{bottom:200.850000px;}
.y90{bottom:201.810000px;}
.y1fc{bottom:201.885000px;}
.y32e{bottom:202.935000px;}
.y162{bottom:203.295000px;}
.y2ff{bottom:203.370000px;}
.y54{bottom:204.225000px;}
.yc1{bottom:204.870000px;}
.y6b{bottom:205.170000px;}
.ye0{bottom:205.350000px;}
.yaf{bottom:206.460000px;}
.y12b{bottom:206.490000px;}
.y8{bottom:207.810000px;}
.y141{bottom:208.365000px;}
.y124{bottom:208.440000px;}
.y35e{bottom:208.770000px;}
.y202{bottom:208.800000px;}
.y239{bottom:209.122921px;}
.y1c8{bottom:209.415000px;}
.y1c1{bottom:210.240000px;}
.y97{bottom:210.930000px;}
.y2c2{bottom:211.035000px;}
.y182{bottom:212.145000px;}
.y1ec{bottom:212.400000px;}
.y1a3{bottom:212.655000px;}
.y312{bottom:214.200000px;}
.y1bf{bottom:214.230000px;}
.y28c{bottom:214.890000px;}
.y28{bottom:215.310000px;}
.y3d{bottom:216.255000px;}
.y299{bottom:216.900000px;}
.y2a7{bottom:217.050000px;}
.yf6{bottom:217.290000px;}
.y1a5{bottom:218.010000px;}
.y7d{bottom:220.395000px;}
.ycc{bottom:220.965000px;}
.y61{bottom:221.505000px;}
.y168{bottom:222.120000px;}
.y374{bottom:222.330000px;}
.y226{bottom:222.450000px;}
.y32d{bottom:224.535000px;}
.y161{bottom:224.895000px;}
.y359{bottom:224.970000px;}
.y2fe{bottom:225.000000px;}
.y1dd{bottom:225.645000px;}
.y53{bottom:225.825000px;}
.y13e{bottom:226.335000px;}
.y346{bottom:226.770000px;}
.y201{bottom:226.800000px;}
.y8f{bottom:227.730000px;}
.y35d{bottom:229.650000px;}
.y10d{bottom:231.015000px;}
.y112{bottom:231.270000px;}
.y37e{bottom:232.000500px;}
.y1fb{bottom:232.125000px;}
.y2c1{bottom:232.635000px;}
.y123{bottom:233.640000px;}
.y1a2{bottom:234.255000px;}
.y298{bottom:235.620000px;}
.y181{bottom:237.750000px;}
.y27{bottom:238.530000px;}
.y29d{bottom:238.650000px;}
.yc0{bottom:239.430000px;}
.y96{bottom:239.760000px;}
.yae{bottom:241.020000px;}
.ydf{bottom:242.070000px;}
.y28b{bottom:243.690000px;}
.y373{bottom:243.930000px;}
.y1c7{bottom:243.975000px;}
.y225{bottom:244.050000px;}
.y200{bottom:244.830000px;}
.yf5{bottom:246.090000px;}
.y32c{bottom:246.135000px;}
.y160{bottom:246.525000px;}
.y358{bottom:246.570000px;}
.y2fd{bottom:246.600000px;}
.y1eb{bottom:246.960000px;}
.y167{bottom:247.320000px;}
.y13d{bottom:247.935000px;}
.y26a{bottom:248.314782px;}
.y345{bottom:248.370000px;}
.y311{bottom:248.760000px;}
.y1be{bottom:248.835000px;}
.y3c{bottom:250.995000px;}
.y31e{bottom:251.460000px;}
.y10c{bottom:252.615000px;}
.y7c{bottom:252.795000px;}
.y8e{bottom:253.650000px;}
.y2c0{bottom:254.235000px;}
.y256{bottom:255.750000px;}
.y12a{bottom:255.990000px;}
.y60{bottom:256.110000px;}
.y297{bottom:257.220000px;}
.y179{bottom:257.370000px;}
.y122{bottom:258.870000px;}
.y26{bottom:260.130000px;}
.y29c{bottom:260.250000px;}
.y52{bottom:260.430000px;}
.y1dc{bottom:261.645000px;}
.y1fa{bottom:262.410000px;}
.y24e{bottom:263.136011px;}
.y180{bottom:263.340000px;}
.y372{bottom:265.575000px;}
.y224{bottom:265.650000px;}
.y32b{bottom:267.735000px;}
.y15f{bottom:268.125000px;}
.y357{bottom:268.170000px;}
.y2fc{bottom:268.200000px;}
.y1c2{bottom:268.560000px;}
.y13c{bottom:269.535000px;}
.y344{bottom:269.970000px;}
.y1b2{bottom:270.465000px;}
.y28a{bottom:272.490000px;}
.ybf{bottom:273.990000px;}
.y10b{bottom:274.245000px;}
.yf4{bottom:274.890000px;}
.yad{bottom:275.580000px;}
.y2bf{bottom:275.835000px;}
.y1b1{bottom:276.585000px;}
.y17d{bottom:277.380000px;}
.ya0{bottom:278.175000px;}
.y14e{bottom:278.490000px;}
.y1c6{bottom:278.565000px;}
.y8d{bottom:279.570000px;}
.y7b{bottom:280.875000px;}
.y1ea{bottom:281.520000px;}
.y29b{bottom:281.850000px;}
.yde{bottom:283.140000px;}
.y310{bottom:283.320000px;}
.y1bd{bottom:283.395000px;}
.y121{bottom:284.070000px;}
.y3b{bottom:285.915000px;}
.y31d{bottom:286.200000px;}
.y25{bottom:286.275000px;}
.y371{bottom:287.175000px;}
.y223{bottom:287.250000px;}
.y32a{bottom:289.335000px;}
.y15e{bottom:289.725000px;}
.y356{bottom:289.800000px;}
.y20d{bottom:290.370000px;}
.y5f{bottom:290.670000px;}
.y13b{bottom:291.165000px;}
.y343{bottom:291.600000px;}
.y1f9{bottom:292.650000px;}
.y51{bottom:294.990000px;}
.y10a{bottom:295.845000px;}
.y9f{bottom:296.175000px;}
.y2f4{bottom:296.640000px;}
.y2be{bottom:297.465000px;}
.y1db{bottom:297.645000px;}
.y266{bottom:300.006816px;}
.y213{bottom:300.675000px;}
.y1d4{bottom:300.885000px;}
.y296{bottom:301.035000px;}
.y289{bottom:301.290000px;}
.y29a{bottom:303.450000px;}
.yf3{bottom:303.690000px;}
.y24b{bottom:304.343896px;}
.y8c{bottom:305.490000px;}
.y24{bottom:307.875000px;}
.ybe{bottom:308.550000px;}
.y370{bottom:308.775000px;}
.y222{bottom:308.850000px;}
.y120{bottom:309.270000px;}
.yac{bottom:310.140000px;}
.y329{bottom:310.935000px;}
.y16e{bottom:311.040000px;}
.y15d{bottom:311.325000px;}
.y355{bottom:311.400000px;}
.y13a{bottom:312.765000px;}
.y35c{bottom:312.840000px;}
.y1c5{bottom:313.125000px;}
.y342{bottom:313.200000px;}
.y9e{bottom:314.175000px;}
.y9d{bottom:315.285000px;}
.y7a{bottom:315.465000px;}
.y1e9{bottom:316.110000px;}
.y7{bottom:316.155000px;}
.ycb{bottom:316.800000px;}
.y109{bottom:317.445000px;}
.ydd{bottom:317.700000px;}
.y30f{bottom:317.880000px;}
.y1bc{bottom:317.955000px;}
.y37d{bottom:318.367500px;}
.y2bd{bottom:319.065000px;}
.y305{bottom:319.110000px;}
.y3a{bottom:320.655000px;}
.y31c{bottom:321.120000px;}
.y17a{bottom:322.635000px;}
.y1f8{bottom:322.890000px;}
.y5e{bottom:325.230000px;}
.y50{bottom:326.310000px;}
.y212{bottom:329.475000px;}
.y288{bottom:330.120000px;}
.y36f{bottom:330.375000px;}
.y221{bottom:330.480000px;}
.yf2{bottom:332.535000px;}
.y15c{bottom:332.925000px;}
.y20b{bottom:332.970000px;}
.y354{bottom:333.000000px;}
.y8b{bottom:333.615000px;}
.y23{bottom:333.975000px;}
.y139{bottom:334.365000px;}
.y11f{bottom:334.470000px;}
.y341{bottom:334.800000px;}
.y1d3{bottom:337.470000px;}
.y108{bottom:339.045000px;}
.y37c{bottom:339.915000px;}
.y2bc{bottom:340.665000px;}
.y280{bottom:342.399329px;}
.ybd{bottom:343.110000px;}
.yab{bottom:344.730000px;}
.y1c4{bottom:347.685000px;}
.y247{bottom:348.897408px;}
.y1d5{bottom:349.020000px;}
.y79{bottom:350.025000px;}
.ydc{bottom:350.100000px;}
.y1e8{bottom:350.670000px;}
.y4f{bottom:351.150000px;}
.y36e{bottom:351.975000px;}
.y220{bottom:352.080000px;}
.y30e{bottom:352.470000px;}
.y1bb{bottom:352.515000px;}
.y1f7{bottom:353.130000px;}
.y328{bottom:354.165000px;}
.y15b{bottom:354.525000px;}
.y353{bottom:354.600000px;}
.y148{bottom:355.140000px;}
.y39{bottom:355.425000px;}
.y1d2{bottom:355.470000px;}
.y22{bottom:355.575000px;}
.y31b{bottom:355.890000px;}
.y138{bottom:355.965000px;}
.y340{bottom:356.400000px;}
.y11e{bottom:356.430000px;}
.y5d{bottom:357.630000px;}
.y287{bottom:358.920000px;}
.y107{bottom:360.645000px;}
.y146{bottom:360.975000px;}
.yf1{bottom:361.335000px;}
.y27f{bottom:361.756113px;}
.y258{bottom:362.202148px;}
.y2bb{bottom:362.265000px;}
.y2a6{bottom:363.600000px;}
.y8a{bottom:368.175000px;}
.y11d{bottom:368.670000px;}
.yca{bottom:373.170000px;}
.y36d{bottom:373.575000px;}
.y21f{bottom:373.680000px;}
.y22d{bottom:374.295000px;}
.y230{bottom:375.132140px;}
.y327{bottom:375.765000px;}
.y15a{bottom:376.170000px;}
.y352{bottom:376.200000px;}
.y137{bottom:377.565000px;}
.ybc{bottom:377.715000px;}
.y33f{bottom:378.000000px;}
.ydb{bottom:378.180000px;}
.yaa{bottom:379.290000px;}
.y2a5{bottom:379.800000px;}
.y27e{bottom:381.089547px;}
.y21{bottom:381.675000px;}
.y106{bottom:382.245000px;}
.y5c{bottom:382.470000px;}
.y1f6{bottom:383.370000px;}
.y2ba{bottom:383.865000px;}
.y78{bottom:384.585000px;}
.y1e7{bottom:385.230000px;}
.y4e{bottom:385.710000px;}
.y30d{bottom:387.030000px;}
.y1ba{bottom:387.105000px;}
.y286{bottom:387.720000px;}
.y17b{bottom:387.900000px;}
.y189{bottom:388.440000px;}
.yf0{bottom:390.135000px;}
.y38{bottom:390.345000px;}
.y31a{bottom:390.630000px;}
.yc7{bottom:392.835000px;}
.y11c{bottom:393.915000px;}
.y36c{bottom:395.175000px;}
.y21e{bottom:395.280000px;}
.y1e0{bottom:395.925000px;}
.y326{bottom:397.365000px;}
.y159{bottom:397.770000px;}
.y351{bottom:397.800000px;}
.y136{bottom:399.165000px;}
.y33e{bottom:399.600000px;}
.y193{bottom:399.885000px;}
.y27d{bottom:400.422982px;}
.y19d{bottom:402.585000px;}
.y89{bottom:402.735000px;}
.y105{bottom:403.890000px;}
.y1d0{bottom:404.490000px;}
.y29e{bottom:404.848791px;}
.y2b9{bottom:405.465000px;}
.y5b{bottom:407.340000px;}
.y20{bottom:407.775000px;}
.yda{bottom:410.580000px;}
.ybb{bottom:412.275000px;}
.y1c3{bottom:412.590000px;}
.ya9{bottom:413.850000px;}
.y285{bottom:416.520000px;}
.y36b{bottom:416.805000px;}
.y21d{bottom:416.880000px;}
.y158{bottom:417.210000px;}
.y188{bottom:417.240000px;}
.y11b{bottom:417.525000px;}
.y2f3{bottom:417.960000px;}
.yc6{bottom:418.755000px;}
.yef{bottom:418.935000px;}
.y325{bottom:418.965000px;}
.y77{bottom:419.145000px;}
.y350{bottom:419.400000px;}
.y3{bottom:419.685000px;}
.y27c{bottom:419.756416px;}
.y1e6{bottom:419.790000px;}
.y192{bottom:420.090000px;}
.y4d{bottom:420.300000px;}
.y135{bottom:420.765000px;}
.y33d{bottom:421.200000px;}
.y30c{bottom:421.590000px;}
.y1b9{bottom:421.665000px;}
.yc9{bottom:424.830000px;}
.y37{bottom:425.085000px;}
.y104{bottom:425.490000px;}
.y319{bottom:425.550000px;}
.y2b8{bottom:427.065000px;}
.y26e{bottom:427.733539px;}
.y1f{bottom:429.405000px;}
.y157{bottom:430.170000px;}
.y25e{bottom:431.918478px;}
.y88{bottom:437.295000px;}
.y36a{bottom:438.405000px;}
.y21c{bottom:438.480000px;}
.yd9{bottom:438.690000px;}
.y27b{bottom:439.089851px;}
.y324{bottom:440.565000px;}
.y20a{bottom:440.820000px;}
.y34f{bottom:441.030000px;}
.y191{bottom:441.690000px;}
.y5a{bottom:441.900000px;}
.y134{bottom:442.410000px;}
.y33c{bottom:442.830000px;}
.y291{bottom:444.165000px;}
.y197{bottom:444.450000px;}
.y284{bottom:445.320000px;}
.y11a{bottom:446.370000px;}
.y145{bottom:446.505000px;}
.yba{bottom:446.835000px;}
.y103{bottom:447.090000px;}
.y1f5{bottom:447.405000px;}
.yee{bottom:447.735000px;}
.ya8{bottom:448.410000px;}
.y2b7{bottom:448.710000px;}
.y1e{bottom:451.005000px;}
.y156{bottom:451.770000px;}
.y14b{bottom:453.030000px;}
.y76{bottom:453.750000px;}
.y1e5{bottom:454.395000px;}
.y4c{bottom:454.860000px;}
.y30b{bottom:456.150000px;}
.y1b8{bottom:456.225000px;}
.y27a{bottom:458.423286px;}
.y252{bottom:458.850626px;}
.y36{bottom:459.825000px;}
.y369{bottom:460.005000px;}
.y21b{bottom:460.080000px;}
.y318{bottom:460.290000px;}
.y41{bottom:460.830000px;}
.y190{bottom:461.130000px;}
.y2{bottom:461.850000px;}
.y290{bottom:462.165000px;}
.y242{bottom:462.590478px;}
.y34e{bottom:462.630000px;}
.y133{bottom:464.010000px;}
.y33b{bottom:464.070000px;}
.y196{bottom:466.050000px;}
.y19c{bottom:468.390000px;}
.y102{bottom:468.690000px;}
.y2b6{bottom:470.310000px;}
.yd8{bottom:471.090000px;}
.y87{bottom:471.885000px;}
.y1d{bottom:472.605000px;}
.y25a{bottom:472.887400px;}
.y155{bottom:473.370000px;}
.y18f{bottom:474.090000px;}
.y119{bottom:474.630000px;}
.y59{bottom:476.460000px;}
.yed{bottom:476.565000px;}
.y2f2{bottom:477.390000px;}
.y1f4{bottom:477.645000px;}
.y279{bottom:477.756720px;}
.yb9{bottom:481.395000px;}
.y368{bottom:481.605000px;}
.y21a{bottom:481.710000px;}
.y1a1{bottom:481.860000px;}
.ya7{bottom:483.015000px;}
.y323{bottom:483.765000px;}
.y33a{bottom:484.230000px;}
.y75{bottom:488.310000px;}
.y1e4{bottom:488.955000px;}
.y4b{bottom:489.420000px;}
.y1ad{bottom:489.930000px;}
.y101{bottom:490.290000px;}
.y30a{bottom:490.755000px;}
.y1b7{bottom:490.785000px;}
.y2b5{bottom:491.910000px;}
.y1c{bottom:494.205000px;}
.y35{bottom:494.745000px;}
.y154{bottom:494.970000px;}
.y317{bottom:495.075000px;}
.y2f1{bottom:495.390000px;}
.y18e{bottom:495.690000px;}
.y278{bottom:497.090155px;}
.y118{bottom:497.670000px;}
.y273{bottom:498.675000px;}
.yd7{bottom:499.170000px;}
.y367{bottom:503.205000px;}
.y219{bottom:503.310000px;}
.yec{bottom:505.365000px;}
.y322{bottom:505.410000px;}
.y339{bottom:505.830000px;}
.y86{bottom:506.445000px;}
.y1f3{bottom:507.885000px;}
.y14a{bottom:508.710000px;}
.y58{bottom:508.860000px;}
.y1a0{bottom:510.660000px;}
.y100{bottom:511.890000px;}
.y2f0{bottom:513.390000px;}
.y2b4{bottom:513.510000px;}
.y117{bottom:514.770000px;}
.yb8{bottom:515.985000px;}
.y153{bottom:516.570000px;}
.ya6{bottom:517.575000px;}
.y1e3{bottom:520.275000px;}
.y1b{bottom:520.305000px;}
.y28f{bottom:520.920000px;}
.y74{bottom:522.870000px;}
.y4a{bottom:523.980000px;}
.y277{bottom:524.689333px;}
.y366{bottom:524.805000px;}
.y218{bottom:524.910000px;}
.y309{bottom:525.315000px;}
.y1b6{bottom:525.345000px;}
.y321{bottom:527.010000px;}
.y338{bottom:527.430000px;}
.y44{bottom:527.550000px;}
.y34{bottom:529.530000px;}
.y144{bottom:530.895000px;}
.y2ef{bottom:531.390000px;}
.yff{bottom:533.490000px;}
.y57{bottom:533.700000px;}
.yd6{bottom:533.730000px;}
.y16f{bottom:534.135000px;}
.yeb{bottom:534.165000px;}
.y15{bottom:534.630000px;}
.y1f2{bottom:538.125000px;}
.y152{bottom:538.200000px;}
.y19f{bottom:539.490000px;}
.y85{bottom:541.005000px;}
.y1a{bottom:541.905000px;}
.y116{bottom:543.570000px;}
.y1e2{bottom:545.115000px;}
.y365{bottom:546.405000px;}
.y217{bottom:546.510000px;}
.y2d1{bottom:547.815000px;}
.y320{bottom:548.610000px;}
.y132{bottom:548.745000px;}
.y170{bottom:548.895000px;}
.y337{bottom:549.030000px;}
.y2ee{bottom:549.390000px;}
.yb7{bottom:550.545000px;}
.ya5{bottom:552.135000px;}
.y11{bottom:552.630000px;}
.yfe{bottom:555.120000px;}
.y73{bottom:557.430000px;}
.y49{bottom:558.570000px;}
.y151{bottom:559.800000px;}
.y308{bottom:559.875000px;}
.y1b5{bottom:559.950000px;}
.y187{bottom:560.625000px;}
.y257{bottom:561.525000px;}
.y276{bottom:561.569961px;}
.y14{bottom:562.170000px;}
.yea{bottom:562.965000px;}
.y22f{bottom:563.505000px;}
.y2d0{bottom:564.015000px;}
.y33{bottom:564.270000px;}
.y2a8{bottom:564.694153px;}
.y2ed{bottom:567.390000px;}
.y19{bottom:568.050000px;}
.y216{bottom:568.110000px;}
.yd5{bottom:568.290000px;}
.y1f1{bottom:568.365000px;}
.y31f{bottom:570.210000px;}
.y336{bottom:570.675000px;}
.y1{bottom:571.755000px;}
.y115{bottom:572.370000px;}
.y2b3{bottom:574.170000px;}
.y149{bottom:574.455000px;}
.y84{bottom:575.565000px;}
.yfd{bottom:576.720000px;}
.y19a{bottom:577.905000px;}
.y1e1{bottom:579.675000px;}
.y10{bottom:580.215000px;}
.yb6{bottom:580.785000px;}
.y150{bottom:581.400000px;}
.y316{bottom:581.940000px;}
.y275{bottom:582.164272px;}
.ya4{bottom:582.375000px;}
.yc5{bottom:585.105000px;}
.y2ec{bottom:585.390000px;}
.y1d9{bottom:588.420000px;}
.y1d1{bottom:588.960000px;}
.y2c9{bottom:588.986162px;}
.y16d{bottom:589.395000px;}
.y18{bottom:589.650000px;}
.y215{bottom:589.710000px;}
.y13{bottom:589.755000px;}
.ye9{bottom:591.765000px;}
.y72{bottom:592.020000px;}
.y335{bottom:592.275000px;}
.y48{bottom:593.130000px;}
.y307{bottom:594.435000px;}
.y1b4{bottom:594.510000px;}
.y2b2{bottom:595.770000px;}
.y19e{bottom:597.090000px;}
.y114{bottom:598.500000px;}
.y1f0{bottom:598.650000px;}
.yd2{bottom:600.015000px;}
.y140{bottom:600.300000px;}
.y172{bottom:600.630000px;}
.yb5{bottom:602.385000px;}
.yd4{bottom:602.895000px;}
.ya3{bottom:603.975000px;}
.y2eb{bottom:605.370000px;}
.y83{bottom:605.850000px;}
.y2d2{bottom:606.345000px;}
.y22e{bottom:606.705000px;}
.yf{bottom:607.755000px;}
.y2f6{bottom:607.830000px;}
.y2f7{bottom:608.400000px;}
.y17{bottom:611.250000px;}
.y214{bottom:611.355000px;}
.y19b{bottom:611.670000px;}
.y334{bottom:613.875000px;}
.y32{bottom:614.775000px;}
.y28d{bottom:615.210000px;}
.yc4{bottom:615.345000px;}
.y113{bottom:615.600000px;}
.y2b1{bottom:617.370000px;}
.y12{bottom:617.475000px;}
.y147{bottom:617.835000px;}
.yfc{bottom:619.920000px;}
.ye8{bottom:620.610000px;}
.y195{bottom:625.890000px;}
.y71{bottom:626.580000px;}
.y82{bottom:627.450000px;}
.y47{bottom:627.690000px;}
.y1ef{bottom:628.890000px;}
.y306{bottom:629.025000px;}
.y13f{bottom:629.100000px;}
.y1a9{bottom:630.720000px;}
.y16{bottom:632.850000px;}
.y171{bottom:635.190000px;}
.ye{bottom:635.475000px;}
.yb4{bottom:636.945000px;}
.yd3{bottom:637.455000px;}
.y14d{bottom:637.710000px;}
.ya2{bottom:638.565000px;}
.y2b0{bottom:638.970000px;}
.y14f{bottom:640.335000px;}
.ye6{bottom:642.210000px;}
.y1ae{bottom:643.110000px;}
.y28e{bottom:644.250000px;}
.y198{bottom:661.890000px;}
.yd{bottom:685.050000px;}
.h1b{height:22.045078px;}
.h2b{height:26.208984px;}
.h19{height:26.244141px;}
.h68{height:31.300544px;}
.h72{height:31.356068px;}
.h6d{height:31.439370px;}
.h3a{height:32.884252px;}
.h41{height:32.931837px;}
.h48{height:32.972746px;}
.h3e{height:32.975949px;}
.h44{height:33.037546px;}
.h1a{height:35.120039px;}
.h10{height:35.167148px;}
.h54{height:38.084803px;}
.h24{height:38.160000px;}
.h5e{height:38.201867px;}
.h50{height:38.238097px;}
.h5b{height:38.299033px;}
.h58{height:38.344723px;}
.h2e{height:39.313477px;}
.h4c{height:40.108483px;}
.h64{height:40.797881px;}
.h65{height:40.852607px;}
.h23{height:43.506914px;}
.h6{height:43.565273px;}
.h49{height:43.607732px;}
.h1d{height:43.611750px;}
.h3b{height:43.622947px;}
.h21{height:43.670250px;}
.h45{height:43.826301px;}
.h33{height:43.921234px;}
.h37{height:43.925788px;}
.h78{height:48.289219px;}
.h6a{height:50.018555px;}
.h74{height:50.151937px;}
.h55{height:50.521791px;}
.h5f{height:50.523447px;}
.h51{height:50.725145px;}
.h1{height:52.417969px;}
.h4{height:52.488281px;}
.h11{height:52.522805px;}
.h7{height:52.593258px;}
.h6b{height:56.285349px;}
.h77{height:60.130598px;}
.h15{height:61.329023px;}
.h16{height:61.411289px;}
.h1c{height:61.433859px;}
.h17{height:61.516266px;}
.h67{height:62.594955px;}
.h71{height:62.705991px;}
.h6e{height:62.726888px;}
.h12{height:66.691406px;}
.h76{height:67.369268px;}
.h31{height:69.674638px;}
.hf{height:69.715898px;}
.h9{height:69.809414px;}
.h13{height:69.820734px;}
.ha{height:69.914391px;}
.h3d{height:71.774100px;}
.h40{height:71.910047px;}
.h4b{height:71.992349px;}
.h47{height:72.108684px;}
.h3c{height:74.715648px;}
.h3f{height:74.857166px;}
.h4a{height:74.942841px;}
.h1e{height:74.988281px;}
.h46{height:75.063944px;}
.h34{height:75.188128px;}
.h38{height:75.368248px;}
.h2c{height:78.247148px;}
.h2{height:78.626953px;}
.h3{height:78.731789px;}
.h5{height:78.732422px;}
.h57{height:83.124968px;}
.h61{height:83.409557px;}
.h53{height:83.459553px;}
.h69{height:83.503959px;}
.h5a{height:83.617632px;}
.h73{height:83.652085px;}
.h6f{height:83.679963px;}
.h56{height:86.531713px;}
.h60{height:86.827966px;}
.h52{height:86.880010px;}
.h59{height:87.044569px;}
.h8{height:87.538008px;}
.h18{height:87.655430px;}
.h2d{height:87.760406px;}
.h30{height:88.699570px;}
.h2f{height:88.832953px;}
.h66{height:90.810256px;}
.h70{height:90.971343px;}
.h75{height:93.575713px;}
.h43{height:94.599521px;}
.h63{height:95.059063px;}
.h35{height:100.303712px;}
.h39{height:100.543999px;}
.h42{height:101.582224px;}
.he{height:104.835938px;}
.hd{height:104.940773px;}
.h5d{height:110.017251px;}
.h36{height:114.228530px;}
.h5c{height:118.137987px;}
.hb{height:122.133867px;}
.h14{height:122.297695px;}
.h4f{height:127.682876px;}
.h6c{height:130.766654px;}
.h4e{height:132.918256px;}
.h1f{height:138.072422px;}
.h2a{height:149.580000px;}
.h32{height:157.309804px;}
.h4d{height:157.792173px;}
.h29{height:175.140000px;}
.h28{height:200.700000px;}
.h22{height:211.500000px;}
.h27{height:226.260000px;}
.h26{height:251.820000px;}
.hc{height:262.546383px;}
.h25{height:277.560000px;}
.h20{height:409.500000px;}
.h62{height:626.098801px;}
.h0{height:810.000000px;}
.wd{width:31.218593px;}
.w13{width:35.865501px;}
.we{width:36.473523px;}
.w14{width:41.837873px;}
.wc{width:42.448411px;}
.w12{width:48.743159px;}
.w10{width:49.885383px;}
.w16{width:57.263833px;}
.w4{width:83.340000px;}
.w5{width:96.480000px;}
.w6{width:98.280000px;}
.wf{width:123.216308px;}
.w8{width:124.020000px;}
.w7{width:124.200000px;}
.w15{width:141.528232px;}
.w3{width:154.800000px;}
.w9{width:157.320000px;}
.wb{width:164.432510px;}
.w2{width:173.520000px;}
.w19{width:185.734702px;}
.w18{width:214.665949px;}
.wa{width:253.172146px;}
.w1a{width:370.402417px;}
.w11{width:400.214826px;}
.w17{width:530.930269px;}
.w1{width:868.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x72{left:3.680872px;}
.x7d{left:6.588636px;}
.x8d{left:7.618270px;}
.x38{left:8.745000px;}
.x36{left:16.236000px;}
.x7c{left:18.984137px;}
.x87{left:21.799327px;}
.x9b{left:34.749347px;}
.x80{left:37.399150px;}
.x9a{left:38.503117px;}
.x32{left:40.500000px;}
.x8c{left:42.930786px;}
.x2a{left:44.388000px;}
.x34{left:45.504000px;}
.xaa{left:46.848751px;}
.x33{left:48.780000px;}
.x7a{left:49.940799px;}
.x1c{left:52.056000px;}
.xd{left:53.568000px;}
.x77{left:54.881335px;}
.x6{left:62.172000px;}
.x92{left:65.556000px;}
.x7f{left:69.020965px;}
.x27{left:70.452000px;}
.x1{left:72.504000px;}
.x9{left:73.656000px;}
.x2{left:75.528000px;}
.x2f{left:76.644000px;}
.x3{left:78.252000px;}
.x8b{left:79.278590px;}
.x81{left:81.324000px;}
.x10{left:83.196000px;}
.x66{left:84.996000px;}
.x17{left:86.184000px;}
.x35{left:91.800000px;}
.x15{left:94.500000px;}
.x44{left:96.696000px;}
.xc{left:99.720000px;}
.x78{left:101.402869px;}
.x21{left:105.120000px;}
.xb3{left:107.057428px;}
.xa0{left:108.998638px;}
.x85{left:110.334833px;}
.x79{left:111.552981px;}
.x8a{left:114.752777px;}
.xe{left:116.568000px;}
.xb2{left:117.875074px;}
.xb1{left:121.043833px;}
.x9f{left:126.449483px;}
.x55{left:130.248000px;}
.x59{left:132.372000px;}
.x9e{left:137.106589px;}
.x6d{left:138.198767px;}
.x74{left:145.015114px;}
.x76{left:149.987777px;}
.x18{left:157.935000px;}
.x73{left:160.664573px;}
.x1f{left:161.670000px;}
.x31{left:165.525000px;}
.xad{left:169.613584px;}
.x1a{left:172.185000px;}
.x96{left:174.345000px;}
.x5f{left:179.355000px;}
.x71{left:181.437459px;}
.x4f{left:188.280000px;}
.x99{left:192.135749px;}
.x6f{left:193.598341px;}
.xa9{left:197.094073px;}
.x43{left:199.830000px;}
.xb0{left:203.433830px;}
.xb5{left:212.970000px;}
.x70{left:223.050233px;}
.xa8{left:232.487510px;}
.x1d{left:233.610000px;}
.x6e{left:235.266950px;}
.x62{left:236.625000px;}
.x5d{left:245.085000px;}
.x30{left:253.545000px;}
.x3c{left:256.830000px;}
.xa2{left:258.150000px;}
.xac{left:264.287001px;}
.xab{left:267.464713px;}
.x61{left:270.285000px;}
.x28{left:273.525000px;}
.xaf{left:280.578366px;}
.xae{left:283.756077px;}
.x7e{left:295.447006px;}
.x5e{left:297.825000px;}
.x3a{left:304.770000px;}
.x60{left:306.645000px;}
.x57{left:313.230000px;}
.x86{left:319.571115px;}
.x54{left:323.430000px;}
.x7b{left:326.908308px;}
.x47{left:333.255000px;}
.x65{left:344.985000px;}
.xa7{left:347.892137px;}
.x4e{left:351.000000px;}
.x37{left:352.440000px;}
.x4d{left:361.980000px;}
.x8e{left:366.735000px;}
.x2e{left:374.610000px;}
.x4{left:386.790000px;}
.xb4{left:390.750000px;}
.x5{left:398.310000px;}
.x25{left:399.930000px;}
.xb9{left:407.520000px;}
.x3b{left:411.690000px;}
.x58{left:412.890000px;}
.xa{left:417.750000px;}
.x48{left:433.950000px;}
.xb7{left:435.060000px;}
.x50{left:436.710000px;}
.x64{left:449.250000px;}
.x63{left:450.330000px;}
.x90{left:455.004586px;}
.xa6{left:462.061053px;}
.x84{left:471.860840px;}
.x82{left:475.882894px;}
.x83{left:478.441372px;}
.x26{left:484.485000px;}
.x40{left:491.790000px;}
.x8f{left:500.756314px;}
.x20{left:505.875000px;}
.x2d{left:516.960000px;}
.x91{left:532.473569px;}
.x19{left:539.970000px;}
.xb8{left:541.290000px;}
.x53{left:542.625000px;}
.x13{left:544.290000px;}
.x3e{left:549.000000px;}
.x95{left:554.940000px;}
.x69{left:558.720000px;}
.x4a{left:561.960000px;}
.x4c{left:575.790000px;}
.x6a{left:577.980000px;}
.xa5{left:586.230000px;}
.x68{left:597.780000px;}
.x5a{left:606.390000px;}
.x89{left:614.176455px;}
.x88{left:616.712276px;}
.x24{left:633.030000px;}
.x12{left:642.525000px;}
.x29{left:651.030000px;}
.x8{left:698.040000px;}
.x22{left:699.405000px;}
.x56{left:708.585000px;}
.x49{left:753.630000px;}
.x2b{left:760.110000px;}
.x93{left:766.080000px;}
.x39{left:779.760000px;}
.x3d{left:783.000000px;}
.x51{left:786.240000px;}
.x4b{left:787.470000px;}
.x94{left:810.510000px;}
.x6c{left:811.702901px;}
.x1b{left:815.730000px;}
.x52{left:826.740000px;}
.xa3{left:836.220212px;}
.x6b{left:839.130000px;}
.xa4{left:841.065000px;}
.x41{left:848.085000px;}
.x98{left:850.290219px;}
.x11{left:852.150000px;}
.xb{left:853.740000px;}
.x9c{left:855.150000px;}
.x75{left:856.441372px;}
.x9d{left:859.427034px;}
.x7{left:860.430000px;}
.x45{left:867.810000px;}
.x67{left:872.490000px;}
.xf{left:891.825000px;}
.xb6{left:893.055000px;}
.x42{left:899.280000px;}
.xa1{left:902.010000px;}
.x97{left:904.290000px;}
.x5b{left:919.950000px;}
.x5c{left:929.415000px;}
.x16{left:935.070000px;}
.x1e{left:937.440000px;}
.x14{left:941.070000px;}
.x23{left:958.785000px;}
.x3f{left:966.450000px;}
.x2c{left:973.005000px;}
.x46{left:979.950000px;}
@media print{
.va{vertical-align:-75.160597pt;}
.v13{vertical-align:-63.304583pt;}
.v14{vertical-align:-57.801748pt;}
.v1{vertical-align:-51.584000pt;}
.v12{vertical-align:-43.211346pt;}
.v11{vertical-align:-38.657520pt;}
.vf{vertical-align:-27.685443pt;}
.vc{vertical-align:-23.805628pt;}
.v7{vertical-align:-20.480000pt;}
.v6{vertical-align:-15.360000pt;}
.v3{vertical-align:-12.800000pt;}
.v9{vertical-align:-10.240000pt;}
.vd{vertical-align:-4.611205pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.653333pt;}
.v10{vertical-align:15.360000pt;}
.vb{vertical-align:23.805628pt;}
.ve{vertical-align:27.685443pt;}
.v5{vertical-align:29.066667pt;}
.v8{vertical-align:38.293333pt;}
.v4{vertical-align:52.746667pt;}
.lse6{letter-spacing:-5.813333pt;}
.lse3{letter-spacing:-4.224000pt;}
.lsd1{letter-spacing:-3.288139pt;}
.lsc0{letter-spacing:-3.282316pt;}
.lsc6{letter-spacing:-3.211496pt;}
.ls52{letter-spacing:-1.114667pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls65{letter-spacing:-0.746667pt;}
.ls9b{letter-spacing:-0.736000pt;}
.ls9c{letter-spacing:-0.688000pt;}
.ls64{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.608000pt;}
.lsd4{letter-spacing:-0.574798pt;}
.lsd{letter-spacing:-0.549333pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls9a{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.454933pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsd0{letter-spacing:-0.383878pt;}
.lsbf{letter-spacing:-0.383199pt;}
.ls72{letter-spacing:-0.311467pt;}
.ls71{letter-spacing:-0.303467pt;}
.ls98{letter-spacing:-0.272533pt;}
.ls7a{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.246400pt;}
.ls7d{letter-spacing:-0.242667pt;}
.ls31{letter-spacing:-0.234667pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls53{letter-spacing:-0.227733pt;}
.ls30{letter-spacing:-0.220267pt;}
.lsa2{letter-spacing:-0.198933pt;}
.ls60{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.185067pt;}
.ls81{letter-spacing:-0.182933pt;}
.lsb0{letter-spacing:-0.177975pt;}
.ls29{letter-spacing:-0.168533pt;}
.ls7b{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.156267pt;}
.ls2f{letter-spacing:-0.142400pt;}
.ls82{letter-spacing:-0.137600pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.108800pt;}
.ls67{letter-spacing:-0.104533pt;}
.lsbc{letter-spacing:-0.099625pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls89{letter-spacing:-0.089067pt;}
.ls5f{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.047467pt;}
.lsba{letter-spacing:-0.040533pt;}
.ls24{letter-spacing:-0.037867pt;}
.ls15{letter-spacing:-0.035733pt;}
.ls63{letter-spacing:-0.033067pt;}
.lsd2{letter-spacing:-0.026667pt;}
.ls74{letter-spacing:-0.025067pt;}
.ls3c{letter-spacing:-0.019200pt;}
.ls2a{letter-spacing:-0.016533pt;}
.ls0{letter-spacing:0.000000pt;}
.lse5{letter-spacing:0.000021pt;}
.lsc1{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.016533pt;}
.ls8f{letter-spacing:0.025067pt;}
.ls1c{letter-spacing:0.033067pt;}
.lscc{letter-spacing:0.033600pt;}
.ls10{letter-spacing:0.047467pt;}
.lscb{letter-spacing:0.060416pt;}
.lsc9{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.072192pt;}
.ls32{letter-spacing:0.092267pt;}
.ls5e{letter-spacing:0.092416pt;}
.ls70{letter-spacing:0.092864pt;}
.lsdf{letter-spacing:0.093867pt;}
.lsbd{letter-spacing:0.096000pt;}
.lsbb{letter-spacing:0.099625pt;}
.lsc5{letter-spacing:0.101088pt;}
.ls5a{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.118400pt;}
.lsd3{letter-spacing:0.121067pt;}
.lsb{letter-spacing:0.128000pt;}
.ls7c{letter-spacing:0.165333pt;}
.ls92{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.185067pt;}
.ls7e{letter-spacing:0.188416pt;}
.lsa4{letter-spacing:0.188936pt;}
.ls2d{letter-spacing:0.192000pt;}
.lsad{letter-spacing:0.193080pt;}
.ls7f{letter-spacing:0.199040pt;}
.lse4{letter-spacing:0.202688pt;}
.ls83{letter-spacing:0.210133pt;}
.lsb8{letter-spacing:0.223700pt;}
.ls5{letter-spacing:0.230827pt;}
.ls95{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls69{letter-spacing:0.234667pt;}
.lse2{letter-spacing:0.243200pt;}
.ls1{letter-spacing:0.256000pt;}
.ls45{letter-spacing:0.275200pt;}
.lse1{letter-spacing:0.288000pt;}
.ls73{letter-spacing:0.297600pt;}
.ls20{letter-spacing:0.303467pt;}
.ls26{letter-spacing:0.320000pt;}
.lsa6{letter-spacing:0.351018pt;}
.lsb3{letter-spacing:0.362667pt;}
.lsdb{letter-spacing:0.367467pt;}
.ls6f{letter-spacing:0.437333pt;}
.lsaa{letter-spacing:0.509545pt;}
.lsac{letter-spacing:0.511920pt;}
.lse0{letter-spacing:0.544000pt;}
.lsbe{letter-spacing:0.576000pt;}
.lsb5{letter-spacing:0.590128pt;}
.lsb7{letter-spacing:0.592503pt;}
.ls90{letter-spacing:0.592640pt;}
.ls91{letter-spacing:0.593067pt;}
.ls37{letter-spacing:0.602624pt;}
.ls42{letter-spacing:0.602667pt;}
.ls38{letter-spacing:0.620992pt;}
.ls39{letter-spacing:0.621056pt;}
.ls48{letter-spacing:0.640427pt;}
.ls21{letter-spacing:0.656000pt;}
.ls49{letter-spacing:0.656640pt;}
.ls4a{letter-spacing:0.656960pt;}
.ls22{letter-spacing:0.672000pt;}
.ls47{letter-spacing:0.690240pt;}
.ls2c{letter-spacing:0.732416pt;}
.ls2b{letter-spacing:0.732800pt;}
.ls5b{letter-spacing:0.768000pt;}
.lsda{letter-spacing:0.821333pt;}
.ls75{letter-spacing:0.928000pt;}
.lscf{letter-spacing:1.024000pt;}
.lsaf{letter-spacing:1.214511pt;}
.ls14{letter-spacing:1.296640pt;}
.ls19{letter-spacing:1.313067pt;}
.ls51{letter-spacing:1.313493pt;}
.lsab{letter-spacing:1.393205pt;}
.ls9f{letter-spacing:1.408000pt;}
.ls8d{letter-spacing:1.583360pt;}
.lsb6{letter-spacing:1.620268pt;}
.ls99{letter-spacing:1.696000pt;}
.lsa3{letter-spacing:1.764443pt;}
.ls97{letter-spacing:1.872640pt;}
.ls3f{letter-spacing:1.936640pt;}
.ls28{letter-spacing:1.937280pt;}
.lsae{letter-spacing:1.945943pt;}
.lscd{letter-spacing:1.980416pt;}
.ls5d{letter-spacing:2.048000pt;}
.lsa5{letter-spacing:2.200762pt;}
.lsb9{letter-spacing:2.254549pt;}
.ls96{letter-spacing:2.512640pt;}
.ls50{letter-spacing:2.576640pt;}
.ls3a{letter-spacing:2.610240pt;}
.ls2{letter-spacing:2.688000pt;}
.lsa7{letter-spacing:2.960560pt;}
.lsd8{letter-spacing:3.152853pt;}
.ls12{letter-spacing:3.216640pt;}
.ls4{letter-spacing:3.292416pt;}
.ls57{letter-spacing:3.328000pt;}
.lsb1{letter-spacing:3.443069pt;}
.lsa9{letter-spacing:3.774405pt;}
.lsd6{letter-spacing:3.792640pt;}
.ls86{letter-spacing:3.840427pt;}
.ls1d{letter-spacing:3.873493pt;}
.lsb4{letter-spacing:4.388911pt;}
.lsd7{letter-spacing:4.432640pt;}
.ls1b{letter-spacing:4.496640pt;}
.lsca{letter-spacing:4.608000pt;}
.ls4b{letter-spacing:5.136640pt;}
.lsc2{letter-spacing:5.248000pt;}
.ls4c{letter-spacing:5.281067pt;}
.ls33{letter-spacing:5.760427pt;}
.ls34{letter-spacing:7.056640pt;}
.lsd9{letter-spacing:7.633280pt;}
.ls18{letter-spacing:7.680427pt;}
.ls17{letter-spacing:7.696640pt;}
.ls16{letter-spacing:7.713067pt;}
.lsa0{letter-spacing:7.808000pt;}
.ls94{letter-spacing:8.272640pt;}
.ls4e{letter-spacing:8.336640pt;}
.ls68{letter-spacing:9.052416pt;}
.ls58{letter-spacing:9.088000pt;}
.ls8e{letter-spacing:9.423360pt;}
.lsdc{letter-spacing:9.552640pt;}
.lsdd{letter-spacing:9.553280pt;}
.ls6a{letter-spacing:9.706667pt;}
.ls59{letter-spacing:9.728000pt;}
.ls35{letter-spacing:10.240427pt;}
.ls6d{letter-spacing:10.346667pt;}
.lsde{letter-spacing:10.832640pt;}
.ls8c{letter-spacing:10.897067pt;}
.ls36{letter-spacing:10.930240pt;}
.ls85{letter-spacing:11.501056pt;}
.ls44{letter-spacing:12.816640pt;}
.ls87{letter-spacing:13.456640pt;}
.ls27{letter-spacing:15.376640pt;}
.ls5c{letter-spacing:15.488000pt;}
.ls3d{letter-spacing:16.656640pt;}
.ls3e{letter-spacing:16.747093pt;}
.ls25{letter-spacing:17.296640pt;}
.ls6b{letter-spacing:17.386667pt;}
.ls93{letter-spacing:19.808000pt;}
.ls6c{letter-spacing:19.946667pt;}
.ls80{letter-spacing:20.496213pt;}
.ls1f{letter-spacing:20.497493pt;}
.ls1e{letter-spacing:20.513067pt;}
.ls40{letter-spacing:21.101056pt;}
.ls41{letter-spacing:21.741056pt;}
.ls8a{letter-spacing:22.416640pt;}
.ls8b{letter-spacing:23.056640pt;}
.ls84{letter-spacing:24.496640pt;}
.lsc7{letter-spacing:26.368000pt;}
.lsce{letter-spacing:46.496445pt;}
.ls2e{letter-spacing:46.720000pt;}
.lsa8{letter-spacing:47.373032pt;}
.ls9e{letter-spacing:51.840000pt;}
.ls9d{letter-spacing:53.760000pt;}
.lsb2{letter-spacing:54.885883pt;}
.lsd5{letter-spacing:57.568000pt;}
.lsc8{letter-spacing:73.728000pt;}
.ls88{letter-spacing:91.536640pt;}
.ls13{letter-spacing:113.568000pt;}
.ls56{letter-spacing:123.251200pt;}
.ls55{letter-spacing:123.296000pt;}
.ls62{letter-spacing:126.112000pt;}
.lsc4{letter-spacing:133.230269pt;}
.lsa1{letter-spacing:155.492567pt;}
.ls54{letter-spacing:167.983360pt;}
.ls78{letter-spacing:223.685973pt;}
.ls79{letter-spacing:223.739307pt;}
.ls76{letter-spacing:223.792640pt;}
.ls77{letter-spacing:223.845973pt;}
.lsc3{letter-spacing:353.755234pt;}
.ls61{letter-spacing:1964.709973pt;}
.ws5a{word-spacing:-52.971052pt;}
.ws56{word-spacing:-52.844458pt;}
.ws4e{word-spacing:-46.801152pt;}
.ws4f{word-spacing:-46.730880pt;}
.ws87{word-spacing:-44.086327pt;}
.ws8d{word-spacing:-44.071640pt;}
.ws79{word-spacing:-43.993601pt;}
.ws41{word-spacing:-35.456000pt;}
.ws37{word-spacing:-35.136000pt;}
.ws36{word-spacing:-26.688000pt;}
.ws95{word-spacing:-26.422272pt;}
.ws80{word-spacing:-26.352000pt;}
.ws12{word-spacing:-24.335360pt;}
.ws1f{word-spacing:-24.301611pt;}
.ws55{word-spacing:-24.063961pt;}
.ws16{word-spacing:-23.983360pt;}
.ws21{word-spacing:-23.974144pt;}
.wsf{word-spacing:-23.966827pt;}
.ws1d{word-spacing:-23.848427pt;}
.ws35{word-spacing:-23.817344pt;}
.ws34{word-spacing:-23.698944pt;}
.ws10{word-spacing:-23.696427pt;}
.ws11{word-spacing:-23.679893pt;}
.ws1e{word-spacing:-23.679744pt;}
.wse{word-spacing:-23.663360pt;}
.ws14{word-spacing:-23.661077pt;}
.ws17{word-spacing:-23.646827pt;}
.ws20{word-spacing:-23.590144pt;}
.ws15{word-spacing:-23.494827pt;}
.ws23{word-spacing:-23.478293pt;}
.ws25{word-spacing:-23.471211pt;}
.ws1c{word-spacing:-23.452544pt;}
.ws13{word-spacing:-23.055360pt;}
.ws24{word-spacing:-22.584277pt;}
.ws2c{word-spacing:-21.120107pt;}
.ws3a{word-spacing:-21.114240pt;}
.ws9a{word-spacing:-20.852224pt;}
.ws46{word-spacing:-20.841707pt;}
.ws2d{word-spacing:-20.833173pt;}
.ws38{word-spacing:-20.816640pt;}
.ws3b{word-spacing:-20.791573pt;}
.ws2b{word-spacing:-20.783573pt;}
.ws39{word-spacing:-20.505173pt;}
.ws30{word-spacing:-20.192640pt;}
.ws2e{word-spacing:-20.144640pt;}
.ws2f{word-spacing:-20.105557pt;}
.ws86{word-spacing:-20.075741pt;}
.ws92{word-spacing:-20.069053pt;}
.ws7e{word-spacing:-20.033516pt;}
.ws6d{word-spacing:-19.674365pt;}
.ws8a{word-spacing:-18.816000pt;}
.ws76{word-spacing:-18.368000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws9{word-spacing:-18.012651pt;}
.wsa0{word-spacing:-17.994688pt;}
.ws1b{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws1a{word-spacing:-17.919851pt;}
.ws89{word-spacing:-17.856000pt;}
.wsa{word-spacing:-17.827584pt;}
.ws2{word-spacing:-17.792000pt;}
.ws28{word-spacing:-17.728000pt;}
.ws2a{word-spacing:-17.685184pt;}
.wsd{word-spacing:-17.671317pt;}
.ws8{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.607317pt;}
.ws29{word-spacing:-17.600000pt;}
.ws19{word-spacing:-17.592917pt;}
.ws3{word-spacing:-17.408000pt;}
.wsc{word-spacing:-17.372651pt;}
.ws4{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.278251pt;}
.ws6{word-spacing:-17.024000pt;}
.ws5d{word-spacing:-16.917215pt;}
.ws49{word-spacing:-16.463360pt;}
.ws71{word-spacing:-16.393730pt;}
.ws9e{word-spacing:-16.368640pt;}
.ws6c{word-spacing:-16.234583pt;}
.ws3e{word-spacing:-16.000213pt;}
.ws52{word-spacing:-15.821435pt;}
.ws9f{word-spacing:-15.632640pt;}
.ws3f{word-spacing:-15.592213pt;}
.ws98{word-spacing:-15.588693pt;}
.ws9c{word-spacing:-15.311360pt;}
.ws64{word-spacing:-15.294052pt;}
.ws99{word-spacing:-15.134827pt;}
.ws45{word-spacing:-15.087360pt;}
.ws4a{word-spacing:-14.998293pt;}
.ws48{word-spacing:-14.950827pt;}
.ws9b{word-spacing:-14.861227pt;}
.ws3d{word-spacing:-14.814827pt;}
.ws31{word-spacing:-14.802944pt;}
.ws22{word-spacing:-14.767360pt;}
.ws42{word-spacing:-14.719893pt;}
.ws43{word-spacing:-14.678293pt;}
.ws1{word-spacing:-14.672427pt;}
.ws3c{word-spacing:-14.637077pt;}
.ws44{word-spacing:-14.536427pt;}
.ws47{word-spacing:-14.494827pt;}
.ws58{word-spacing:-14.409466pt;}
.ws4b{word-spacing:-14.310827pt;}
.ws53{word-spacing:-14.245927pt;}
.ws61{word-spacing:-14.149735pt;}
.ws66{word-spacing:-14.079541pt;}
.ws4d{word-spacing:-14.079360pt;}
.ws59{word-spacing:-14.058449pt;}
.ws54{word-spacing:-14.056991pt;}
.ws4c{word-spacing:-14.031360pt;}
.ws5c{word-spacing:-13.961525pt;}
.ws74{word-spacing:-13.947470pt;}
.ws65{word-spacing:-13.901566pt;}
.ws73{word-spacing:-13.847845pt;}
.ws75{word-spacing:-13.748220pt;}
.ws9d{word-spacing:-13.568000pt;}
.ws81{word-spacing:-13.536000pt;}
.ws94{word-spacing:-13.413184pt;}
.ws96{word-spacing:-13.379584pt;}
.ws7f{word-spacing:-13.360000pt;}
.ws93{word-spacing:-13.352917pt;}
.ws82{word-spacing:-13.344000pt;}
.ws40{word-spacing:-11.920640pt;}
.ws72{word-spacing:-11.880107pt;}
.ws50{word-spacing:-11.721707pt;}
.ws84{word-spacing:-10.163259pt;}
.ws8f{word-spacing:-10.035510pt;}
.ws7b{word-spacing:-10.017739pt;}
.ws32{word-spacing:-9.999104pt;}
.ws70{word-spacing:-8.924742pt;}
.ws60{word-spacing:-7.674035pt;}
.ws90{word-spacing:-6.747371pt;}
.ws7c{word-spacing:-6.735423pt;}
.wsa2{word-spacing:-2.496000pt;}
.wsa5{word-spacing:-1.792000pt;}
.wsa7{word-spacing:-1.024000pt;}
.wsa9{word-spacing:-0.949333pt;}
.wsa1{word-spacing:-0.576000pt;}
.wsa8{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.096486pt;}
.ws57{word-spacing:-0.096256pt;}
.ws33{word-spacing:-0.096000pt;}
.ws88{word-spacing:-0.080303pt;}
.ws8c{word-spacing:-0.080276pt;}
.ws78{word-spacing:-0.080134pt;}
.ws6b{word-spacing:-0.056318pt;}
.ws0{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.192000pt;}
.ws77{word-spacing:0.303065pt;}
.ws8b{word-spacing:0.303602pt;}
.wsaa{word-spacing:0.362667pt;}
.ws97{word-spacing:0.494664pt;}
.wsa4{word-spacing:0.512000pt;}
.wsa3{word-spacing:1.930667pt;}
.ws26{word-spacing:49.247360pt;}
.ws27{word-spacing:49.317824pt;}
.ws5e{word-spacing:83.983916pt;}
.ws6e{word-spacing:97.671526pt;}
.ws63{word-spacing:213.202748pt;}
.ws83{word-spacing:227.118407pt;}
.ws5f{word-spacing:235.781532pt;}
.ws7a{word-spacing:265.717376pt;}
.ws8e{word-spacing:266.188727pt;}
.ws62{word-spacing:268.001315pt;}
.ws6f{word-spacing:274.208956pt;}
.ws51{word-spacing:278.502783pt;}
.ws7d{word-spacing:418.740844pt;}
.ws91{word-spacing:419.483641pt;}
.ws85{word-spacing:433.860835pt;}
.ws69{word-spacing:691.183141pt;}
.ws6a{word-spacing:716.216445pt;}
.ws67{word-spacing:1077.363722pt;}
.ws68{word-spacing:1094.587297pt;}
._72{margin-left:-897.487221pt;}
._70{margin-left:-765.558118pt;}
._63{margin-left:-664.318970pt;}
._6c{margin-left:-557.966978pt;}
._68{margin-left:-459.567931pt;}
._6e{margin-left:-415.539796pt;}
._6d{margin-left:-407.763910pt;}
._92{margin-left:-394.258709pt;}
._69{margin-left:-391.826430pt;}
._5d{margin-left:-390.069757pt;}
._75{margin-left:-330.222825pt;}
._8f{margin-left:-322.912308pt;}
._67{margin-left:-317.359737pt;}
._74{margin-left:-307.352374pt;}
._90{margin-left:-304.748880pt;}
._91{margin-left:-295.899195pt;}
._65{margin-left:-286.973701pt;}
._60{margin-left:-283.945662pt;}
._93{margin-left:-270.599429pt;}
._5f{margin-left:-264.280258pt;}
._6a{margin-left:-260.869184pt;}
._61{margin-left:-246.880373pt;}
._8e{margin-left:-227.175956pt;}
._7e{margin-left:-225.877490pt;}
._81{margin-left:-207.689760pt;}
._5a{margin-left:-201.362881pt;}
._55{margin-left:-198.551019pt;}
._56{margin-left:-196.970546pt;}
._53{margin-left:-194.504618pt;}
._6b{margin-left:-193.201112pt;}
._7f{margin-left:-191.226319pt;}
._57{margin-left:-189.698032pt;}
._80{margin-left:-188.547036pt;}
._6f{margin-left:-186.371648pt;}
._58{margin-left:-184.981689pt;}
._71{margin-left:-181.821344pt;}
._5b{margin-left:-173.145580pt;}
._73{margin-left:-166.180413pt;}
._59{margin-left:-161.352594pt;}
._54{margin-left:-159.257054pt;}
._82{margin-left:-157.172924pt;}
._66{margin-left:-155.668161pt;}
._85{margin-left:-151.053927pt;}
._8a{margin-left:-147.630342pt;}
._8b{margin-left:-144.236025pt;}
._5e{margin-left:-142.892022pt;}
._94{margin-left:-141.963863pt;}
._22{margin-left:-139.757867pt;}
._8c{margin-left:-138.186304pt;}
._76{margin-left:-124.229987pt;}
._89{margin-left:-116.180302pt;}
._7d{margin-left:-115.195107pt;}
._62{margin-left:-107.225226pt;}
._8d{margin-left:-103.791463pt;}
._7b{margin-left:-99.116531pt;}
._5c{margin-left:-80.745926pt;}
._7c{margin-left:-59.908546pt;}
._46{margin-left:-10.951040pt;}
._12{margin-left:-9.717760pt;}
._44{margin-left:-8.650688pt;}
._1b{margin-left:-7.684214pt;}
._13{margin-left:-6.656000pt;}
._6{margin-left:-5.760000pt;}
._7{margin-left:-4.650667pt;}
._5{margin-left:-3.464608pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.024000pt;}
._4{width:1.024000pt;}
._3{width:1.984000pt;}
._1{width:3.520000pt;}
._e{width:4.672000pt;}
._b{width:6.282667pt;}
._a{width:7.424000pt;}
._9{width:8.362688pt;}
._38{width:9.439831pt;}
._1a{width:10.368042pt;}
._16{width:11.483098pt;}
._15{width:12.399516pt;}
._10{width:13.663979pt;}
._f{width:14.634688pt;}
._19{width:15.798829pt;}
._17{width:17.297065pt;}
._18{width:18.461108pt;}
._4d{width:19.668214pt;}
._14{width:20.625087pt;}
._c{width:21.962667pt;}
._d{width:23.157333pt;}
._3d{width:25.053308pt;}
._42{width:27.445333pt;}
._25{width:28.838826pt;}
._88{width:30.282688pt;}
._87{width:31.424000pt;}
._96{width:32.810688pt;}
._3f{width:35.242688pt;}
._39{width:36.654347pt;}
._1d{width:37.620732pt;}
._1c{width:38.591955pt;}
._83{width:41.674722pt;}
._95{width:42.602667pt;}
._1e{width:43.807944pt;}
._86{width:46.090667pt;}
._40{width:47.530688pt;}
._50{width:50.560000pt;}
._52{width:51.840000pt;}
._51{width:53.760000pt;}
._28{width:56.223888pt;}
._3c{width:57.965653pt;}
._43{width:63.541312pt;}
._84{width:64.456608pt;}
._7a{width:71.552000pt;}
._3a{width:73.264614pt;}
._3b{width:74.679503pt;}
._35{width:77.456350pt;}
._2b{width:78.541328pt;}
._2e{width:80.753641pt;}
._49{width:92.046300pt;}
._45{width:93.173333pt;}
._1f{width:94.096500pt;}
._77{width:97.049150pt;}
._23{width:103.428329pt;}
._27{width:104.425556pt;}
._31{width:105.633280pt;}
._11{width:113.567955pt;}
._2f{width:123.167959pt;}
._33{width:129.296640pt;}
._21{width:164.348591pt;}
._20{width:165.264481pt;}
._3e{width:171.008000pt;}
._2d{width:199.079252pt;}
._4f{width:214.963840pt;}
._2a{width:245.296816pt;}
._29{width:278.408191pt;}
._47{width:282.631253pt;}
._2c{width:354.447258pt;}
._24{width:360.460737pt;}
._26{width:366.314667pt;}
._32{width:425.616640pt;}
._8{width:439.637333pt;}
._34{width:663.036522pt;}
._41{width:768.181333pt;}
._64{width:781.481418pt;}
._78{width:788.841813pt;}
._79{width:790.130987pt;}
._4a{width:793.267200pt;}
._30{width:827.805140pt;}
._36{width:895.795028pt;}
._4b{width:920.850133pt;}
._4e{width:1039.060693pt;}
._48{width:1090.543360pt;}
._4c{width:1238.541653pt;}
._37{width:1604.283307pt;}
.fs10{font-size:26.880000pt;}
.fs16{font-size:28.160000pt;}
.fsf{font-size:32.000000pt;}
.fs12{font-size:35.968000pt;}
.fs34{font-size:40.070958pt;}
.fs39{font-size:40.142039pt;}
.fs36{font-size:40.248682pt;}
.fsd{font-size:42.880000pt;}
.fs15{font-size:48.000000pt;}
.fs3a{font-size:48.128000pt;}
.fs32{font-size:49.812392pt;}
.fs4{font-size:53.120000pt;}
.fs11{font-size:53.248000pt;}
.fs1f{font-size:55.826620pt;}
.fs1c{font-size:55.846098pt;}
.fs21{font-size:56.106432pt;}
.fs18{font-size:56.227965pt;}
.fs1a{font-size:56.233795pt;}
.fs26{font-size:56.318166pt;}
.fs13{font-size:56.960000pt;}
.fs3c{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs2a{font-size:64.677999pt;}
.fs2f{font-size:64.680118pt;}
.fs2d{font-size:64.925183pt;}
.fs28{font-size:64.938332pt;}
.fs3{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs33{font-size:80.134063pt;}
.fs38{font-size:80.276211pt;}
.fs37{font-size:80.302964pt;}
.fs3b{font-size:84.580696pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs1d{font-size:95.650975pt;}
.fs20{font-size:95.760105pt;}
.fs1e{font-size:95.832146pt;}
.fs23{font-size:95.941828pt;}
.fs1{font-size:96.000000pt;}
.fs22{font-size:96.096864pt;}
.fs2{font-size:96.128000pt;}
.fs19{font-size:96.255843pt;}
.fs1b{font-size:96.486434pt;}
.fs27{font-size:96.603261pt;}
.fs6{font-size:106.880000pt;}
.fs14{font-size:107.008000pt;}
.fs2b{font-size:110.777902pt;}
.fs30{font-size:111.157165pt;}
.fs29{font-size:111.223792pt;}
.fs2e{font-size:111.366986pt;}
.fs2c{font-size:111.434459pt;}
.fs31{font-size:116.062873pt;}
.fs35{font-size:125.489420pt;}
.fs25{font-size:127.554191pt;}
.fsc{font-size:128.000000pt;}
.fsb{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fs17{font-size:150.961391pt;}
.fs24{font-size:151.424294pt;}
.fsa{font-size:320.128000pt;}
.y1cf{bottom:-13.568000pt;}
.y6a{bottom:-13.376000pt;}
.y34d{bottom:-9.664000pt;}
.y0{bottom:0.000000pt;}
.y2aa{bottom:2.174098pt;}
.y283{bottom:2.590452pt;}
.y24c{bottom:3.014622pt;}
.y253{bottom:3.014641pt;}
.y248{bottom:3.015674pt;}
.y243{bottom:3.015693pt;}
.y24f{bottom:3.029751pt;}
.y232{bottom:3.036326pt;}
.y23b{bottom:3.036617pt;}
.y25d{bottom:3.041223pt;}
.y263{bottom:3.492616pt;}
.y26f{bottom:3.492731pt;}
.y26b{bottom:3.505942pt;}
.y267{bottom:3.506652pt;}
.y25f{bottom:3.506674pt;}
.y2d7{bottom:4.326258pt;}
.y2e0{bottom:4.327239pt;}
.y29f{bottom:4.327259pt;}
.y2ca{bottom:4.334935pt;}
.y69{bottom:5.824000pt;}
.y2a9{bottom:7.480065pt;}
.y17e{bottom:7.706667pt;}
.y254{bottom:8.966048pt;}
.y249{bottom:8.996219pt;}
.y244{bottom:8.996238pt;}
.y235{bottom:9.030358pt;}
.y250{bottom:9.038175pt;}
.y23f{bottom:9.045327pt;}
.y25c{bottom:9.185006pt;}
.y231{bottom:9.410182pt;}
.y25b{bottom:9.417787pt;}
.y34c{bottom:9.536000pt;}
.y245{bottom:10.100251pt;}
.y24d{bottom:10.120723pt;}
.y255{bottom:10.120742pt;}
.y24a{bottom:10.145525pt;}
.y251{bottom:10.147335pt;}
.y270{bottom:10.387966pt;}
.y264{bottom:10.418967pt;}
.y268{bottom:10.460882pt;}
.y260{bottom:10.460904pt;}
.ya{bottom:11.232000pt;}
.y265{bottom:11.697577pt;}
.y271{bottom:11.725783pt;}
.y261{bottom:11.744661pt;}
.y26c{bottom:11.770188pt;}
.y269{bottom:11.797306pt;}
.yc{bottom:12.896000pt;}
.y1ce{bottom:17.152000pt;}
.y2ac{bottom:17.951643pt;}
.y17f{bottom:19.333333pt;}
.y282{bottom:19.775727pt;}
.y23a{bottom:21.831830pt;}
.y2ae{bottom:22.974953pt;}
.y68{bottom:25.024000pt;}
.y9{bottom:27.232000pt;}
.y238{bottom:27.820507pt;}
.y23e{bottom:27.838568pt;}
.y34b{bottom:28.736000pt;}
.yb{bottom:28.896000pt;}
.y2ab{bottom:31.124222pt;}
.y2de{bottom:31.216909pt;}
.y2a1{bottom:31.361217pt;}
.y2cc{bottom:31.416849pt;}
.y2d9{bottom:31.790137pt;}
.y2e5{bottom:31.792100pt;}
.y281{bottom:34.096790pt;}
.y2ad{bottom:36.098931pt;}
.y2a3{bottom:36.337696pt;}
.y2ce{bottom:36.402155pt;}
.y2e1{bottom:36.768578pt;}
.y233{bottom:37.001858pt;}
.y2e9{bottom:38.203610pt;}
.y17c{bottom:38.653333pt;}
.y234{bottom:39.191797pt;}
.y23c{bottom:39.230862pt;}
.y236{bottom:43.044686pt;}
.y2dc{bottom:44.039930pt;}
.y67{bottom:44.224000pt;}
.y31{bottom:44.800000pt;}
.y237{bottom:45.232673pt;}
.y240{bottom:45.239572pt;}
.y6{bottom:45.568000pt;}
.y1cd{bottom:47.872000pt;}
.y34a{bottom:47.936000pt;}
.y2a0{bottom:52.128936pt;}
.y2cb{bottom:52.221406pt;}
.y2d8{bottom:52.555892pt;}
.y2dd{bottom:54.183308pt;}
.y1a8{bottom:54.592000pt;}
.y176{bottom:54.786667pt;}
.y9c{bottom:59.456000pt;}
.yd1{bottom:59.744000pt;}
.yb3{bottom:60.608000pt;}
.y2e6{bottom:60.692974pt;}
.ye5{bottom:61.536000pt;}
.y2a2{bottom:61.793316pt;}
.y2cd{bottom:61.902930pt;}
.y2da{bottom:62.269350pt;}
.y2e7{bottom:62.271313pt;}
.y2db{bottom:62.748348pt;}
.y2e8{bottom:62.750311pt;}
.y37b{bottom:63.200000pt;}
.y30{bottom:63.360000pt;}
.ya1{bottom:63.904000pt;}
.y95{bottom:64.160000pt;}
.y66{bottom:64.384000pt;}
.y20c{bottom:64.928000pt;}
.y274{bottom:65.142146pt;}
.y2e2{bottom:65.669452pt;}
.y2a4{bottom:66.816909pt;}
.y2cf{bottom:66.935434pt;}
.y2df{bottom:67.006329pt;}
.y349{bottom:67.136000pt;}
.y2ea{bottom:67.151599pt;}
.y2e3{bottom:67.247791pt;}
.y2e4{bottom:67.773904pt;}
.y131{bottom:68.320000pt;}
.y2d6{bottom:68.572510pt;}
.y211{bottom:68.960000pt;}
.y2fb{bottom:69.760000pt;}
.y2d5{bottom:70.176000pt;}
.y194{bottom:70.688000pt;}
.y295{bottom:70.752000pt;}
.y1ac{bottom:71.968000pt;}
.y2c8{bottom:72.352000pt;}
.y14c{bottom:72.512000pt;}
.y129{bottom:73.248000pt;}
.y364{bottom:73.536000pt;}
.y209{bottom:73.568000pt;}
.y1da{bottom:73.760000pt;}
.y262{bottom:74.845732pt;}
.y5{bottom:75.488000pt;}
.y1d8{bottom:76.640000pt;}
.y199{bottom:77.024000pt;}
.yfb{bottom:77.920000pt;}
.y1cc{bottom:78.592000pt;}
.ye7{bottom:78.656000pt;}
.y81{bottom:78.752000pt;}
.y23d{bottom:78.787381pt;}
.y2f{bottom:79.360000pt;}
.y294{bottom:79.392000pt;}
.y1b0{bottom:79.584000pt;}
.ye4{bottom:81.696000pt;}
.y174{bottom:81.824000pt;}
.yd0{bottom:82.144000pt;}
.y37a{bottom:82.400000pt;}
.y22c{bottom:82.496000pt;}
.y333{bottom:84.352000pt;}
.y2d4{bottom:84.608000pt;}
.y35b{bottom:84.736000pt;}
.y304{bottom:84.768000pt;}
.y241{bottom:84.796091pt;}
.y9b{bottom:85.088000pt;}
.y65{bottom:85.504000pt;}
.y2fa{bottom:85.760000pt;}
.y348{bottom:86.336000pt;}
.y70{bottom:86.368000pt;}
.y94{bottom:87.200000pt;}
.y130{bottom:87.520000pt;}
.y208{bottom:89.600000pt;}
.y1d6{bottom:90.720000pt;}
.y1ab{bottom:91.168000pt;}
.yb2{bottom:91.328000pt;}
.y2c7{bottom:91.552000pt;}
.y363{bottom:92.096000pt;}
.y1af{bottom:92.800000pt;}
.y293{bottom:92.864000pt;}
.y210{bottom:94.560000pt;}
.y42{bottom:94.624000pt;}
.y2e{bottom:95.360000pt;}
.y128{bottom:95.680000pt;}
.y186{bottom:96.960000pt;}
.y1c0{bottom:97.344000pt;}
.y45{bottom:97.856000pt;}
.ye3{bottom:98.016000pt;}
.y315{bottom:98.208000pt;}
.y1ff{bottom:98.816000pt;}
.y40{bottom:99.392000pt;}
.y173{bottom:101.024000pt;}
.yfa{bottom:101.120000pt;}
.y379{bottom:101.600000pt;}
.y22b{bottom:101.696000pt;}
.y2f9{bottom:101.760000pt;}
.y1d7{bottom:102.240000pt;}
.y332{bottom:103.552000pt;}
.y80{bottom:103.712000pt;}
.y2d3{bottom:103.872000pt;}
.y166{bottom:103.904000pt;}
.y35a{bottom:103.936000pt;}
.y303{bottom:103.968000pt;}
.ycf{bottom:104.544000pt;}
.y64{bottom:104.736000pt;}
.y4{bottom:105.408000pt;}
.y1cb{bottom:105.472000pt;}
.y347{bottom:105.536000pt;}
.y6f{bottom:105.568000pt;}
.y207{bottom:105.600000pt;}
.y12f{bottom:106.720000pt;}
.yc8{bottom:108.256000pt;}
.y362{bottom:108.736000pt;}
.y292{bottom:108.864000pt;}
.y111{bottom:109.024000pt;}
.y93{bottom:110.240000pt;}
.y1aa{bottom:110.368000pt;}
.y9a{bottom:110.688000pt;}
.y2c6{bottom:110.752000pt;}
.y2d{bottom:111.392000pt;}
.y177{bottom:112.773333pt;}
.yf9{bottom:116.320000pt;}
.y2f8{bottom:117.760000pt;}
.y127{bottom:118.080000pt;}
.y43{bottom:118.336000pt;}
.y16c{bottom:119.328000pt;}
.y18d{bottom:119.552000pt;}
.y20f{bottom:120.160000pt;}
.y185{bottom:120.320000pt;}
.y378{bottom:120.832000pt;}
.y22a{bottom:120.896000pt;}
.y206{bottom:121.600000pt;}
.yb1{bottom:122.048000pt;}
.y331{bottom:122.752000pt;}
.y165{bottom:123.104000pt;}
.y302{bottom:123.168000pt;}
.y1b3{bottom:124.032000pt;}
.y1ca{bottom:124.704000pt;}
.y6e{bottom:124.768000pt;}
.y1fe{bottom:125.696000pt;}
.y12e{bottom:125.920000pt;}
.ye2{bottom:126.848000pt;}
.yce{bottom:126.944000pt;}
.y1a7{bottom:127.200000pt;}
.y1ee{bottom:127.328000pt;}
.y2c{bottom:127.392000pt;}
.y361{bottom:127.968000pt;}
.y110{bottom:128.224000pt;}
.y46{bottom:128.608000pt;}
.y314{bottom:128.928000pt;}
.y2c5{bottom:129.984000pt;}
.y16b{bottom:130.208000pt;}
.y3f{bottom:130.272000pt;}
.y92{bottom:133.280000pt;}
.yc3{bottom:134.080000pt;}
.y7f{bottom:134.466667pt;}
.y63{bottom:135.453333pt;}
.y99{bottom:136.293333pt;}
.y175{bottom:136.320000pt;}
.y1df{bottom:136.546667pt;}
.y205{bottom:137.600000pt;}
.y18c{bottom:138.746667pt;}
.y377{bottom:140.026667pt;}
.y229{bottom:140.093333pt;}
.y56{bottom:140.253333pt;}
.y126{bottom:140.480000pt;}
.yf8{bottom:141.920000pt;}
.y330{bottom:141.946667pt;}
.y164{bottom:142.306667pt;}
.y301{bottom:142.373333pt;}
.y184{bottom:143.066667pt;}
.y2b{bottom:143.386667pt;}
.y6d{bottom:143.973333pt;}
.y246{bottom:144.644855pt;}
.y12d{bottom:145.146667pt;}
.y10f{bottom:145.506667pt;}
.y20e{bottom:145.786667pt;}
.y143{bottom:146.813333pt;}
.y360{bottom:147.173333pt;}
.y2c4{bottom:149.186667pt;}
.ycd{bottom:149.373333pt;}
.ye1{bottom:151.813333pt;}
.y1fd{bottom:152.573333pt;}
.y16a{bottom:152.613333pt;}
.yb0{bottom:152.773333pt;}
.y204{bottom:153.600000pt;}
.y1c9{bottom:155.426667pt;}
.y2f5{bottom:155.813333pt;}
.y91{bottom:156.346667pt;}
.y10e{bottom:157.053333pt;}
.yc2{bottom:157.120000pt;}
.y18b{bottom:157.946667pt;}
.y1ed{bottom:158.080000pt;}
.y376{bottom:159.226667pt;}
.y228{bottom:159.333333pt;}
.y2a{bottom:159.386667pt;}
.y313{bottom:159.653333pt;}
.y55{bottom:160.413333pt;}
.y1a6{bottom:160.480000pt;}
.y32f{bottom:161.146667pt;}
.y3e{bottom:161.306667pt;}
.y163{bottom:161.506667pt;}
.y300{bottom:161.573333pt;}
.y98{bottom:161.893333pt;}
.y125{bottom:162.880000pt;}
.y6c{bottom:163.173333pt;}
.y12c{bottom:164.346667pt;}
.y7e{bottom:165.186667pt;}
.y183{bottom:165.826667pt;}
.y142{bottom:166.013333pt;}
.y62{bottom:166.173333pt;}
.y35f{bottom:166.373333pt;}
.yf7{bottom:167.546667pt;}
.y37f{bottom:167.837333pt;}
.y2c3{bottom:168.386667pt;}
.y1de{bottom:168.546667pt;}
.y203{bottom:169.600000pt;}
.y1a4{bottom:169.826667pt;}
.y178{bottom:170.786667pt;}
.y272{bottom:173.573333pt;}
.y2af{bottom:173.733333pt;}
.y259{bottom:174.393704pt;}
.y169{bottom:175.013333pt;}
.y29{bottom:175.386667pt;}
.y18a{bottom:177.146667pt;}
.y26d{bottom:178.420883pt;}
.y375{bottom:178.426667pt;}
.y227{bottom:178.533333pt;}
.y90{bottom:179.386667pt;}
.y1fc{bottom:179.453333pt;}
.y32e{bottom:180.386667pt;}
.y162{bottom:180.706667pt;}
.y2ff{bottom:180.773333pt;}
.y54{bottom:181.533333pt;}
.yc1{bottom:182.106667pt;}
.y6b{bottom:182.373333pt;}
.ye0{bottom:182.533333pt;}
.yaf{bottom:183.520000pt;}
.y12b{bottom:183.546667pt;}
.y8{bottom:184.720000pt;}
.y141{bottom:185.213333pt;}
.y124{bottom:185.280000pt;}
.y35e{bottom:185.573333pt;}
.y202{bottom:185.600000pt;}
.y239{bottom:185.887041pt;}
.y1c8{bottom:186.146667pt;}
.y1c1{bottom:186.880000pt;}
.y97{bottom:187.493333pt;}
.y2c2{bottom:187.586667pt;}
.y182{bottom:188.573333pt;}
.y1ec{bottom:188.800000pt;}
.y1a3{bottom:189.026667pt;}
.y312{bottom:190.400000pt;}
.y1bf{bottom:190.426667pt;}
.y28c{bottom:191.013333pt;}
.y28{bottom:191.386667pt;}
.y3d{bottom:192.226667pt;}
.y299{bottom:192.800000pt;}
.y2a7{bottom:192.933333pt;}
.yf6{bottom:193.146667pt;}
.y1a5{bottom:193.786667pt;}
.y7d{bottom:195.906667pt;}
.ycc{bottom:196.413333pt;}
.y61{bottom:196.893333pt;}
.y168{bottom:197.440000pt;}
.y374{bottom:197.626667pt;}
.y226{bottom:197.733333pt;}
.y32d{bottom:199.586667pt;}
.y161{bottom:199.906667pt;}
.y359{bottom:199.973333pt;}
.y2fe{bottom:200.000000pt;}
.y1dd{bottom:200.573333pt;}
.y53{bottom:200.733333pt;}
.y13e{bottom:201.186667pt;}
.y346{bottom:201.573333pt;}
.y201{bottom:201.600000pt;}
.y8f{bottom:202.426667pt;}
.y35d{bottom:204.133333pt;}
.y10d{bottom:205.346667pt;}
.y112{bottom:205.573333pt;}
.y37e{bottom:206.222667pt;}
.y1fb{bottom:206.333333pt;}
.y2c1{bottom:206.786667pt;}
.y123{bottom:207.680000pt;}
.y1a2{bottom:208.226667pt;}
.y298{bottom:209.440000pt;}
.y181{bottom:211.333333pt;}
.y27{bottom:212.026667pt;}
.y29d{bottom:212.133333pt;}
.yc0{bottom:212.826667pt;}
.y96{bottom:213.120000pt;}
.yae{bottom:214.240000pt;}
.ydf{bottom:215.173333pt;}
.y28b{bottom:216.613333pt;}
.y373{bottom:216.826667pt;}
.y1c7{bottom:216.866667pt;}
.y225{bottom:216.933333pt;}
.y200{bottom:217.626667pt;}
.yf5{bottom:218.746667pt;}
.y32c{bottom:218.786667pt;}
.y160{bottom:219.133333pt;}
.y358{bottom:219.173333pt;}
.y2fd{bottom:219.200000pt;}
.y1eb{bottom:219.520000pt;}
.y167{bottom:219.840000pt;}
.y13d{bottom:220.386667pt;}
.y26a{bottom:220.724251pt;}
.y345{bottom:220.773333pt;}
.y311{bottom:221.120000pt;}
.y1be{bottom:221.186667pt;}
.y3c{bottom:223.106667pt;}
.y31e{bottom:223.520000pt;}
.y10c{bottom:224.546667pt;}
.y7c{bottom:224.706667pt;}
.y8e{bottom:225.466667pt;}
.y2c0{bottom:225.986667pt;}
.y256{bottom:227.333333pt;}
.y12a{bottom:227.546667pt;}
.y60{bottom:227.653333pt;}
.y297{bottom:228.640000pt;}
.y179{bottom:228.773333pt;}
.y122{bottom:230.106667pt;}
.y26{bottom:231.226667pt;}
.y29c{bottom:231.333333pt;}
.y52{bottom:231.493333pt;}
.y1dc{bottom:232.573333pt;}
.y1fa{bottom:233.253333pt;}
.y24e{bottom:233.898676pt;}
.y180{bottom:234.080000pt;}
.y372{bottom:236.066667pt;}
.y224{bottom:236.133333pt;}
.y32b{bottom:237.986667pt;}
.y15f{bottom:238.333333pt;}
.y357{bottom:238.373333pt;}
.y2fc{bottom:238.400000pt;}
.y1c2{bottom:238.720000pt;}
.y13c{bottom:239.586667pt;}
.y344{bottom:239.973333pt;}
.y1b2{bottom:240.413333pt;}
.y28a{bottom:242.213333pt;}
.ybf{bottom:243.546667pt;}
.y10b{bottom:243.773333pt;}
.yf4{bottom:244.346667pt;}
.yad{bottom:244.960000pt;}
.y2bf{bottom:245.186667pt;}
.y1b1{bottom:245.853333pt;}
.y17d{bottom:246.560000pt;}
.ya0{bottom:247.266667pt;}
.y14e{bottom:247.546667pt;}
.y1c6{bottom:247.613333pt;}
.y8d{bottom:248.506667pt;}
.y7b{bottom:249.666667pt;}
.y1ea{bottom:250.240000pt;}
.y29b{bottom:250.533333pt;}
.yde{bottom:251.680000pt;}
.y310{bottom:251.840000pt;}
.y1bd{bottom:251.906667pt;}
.y121{bottom:252.506667pt;}
.y3b{bottom:254.146667pt;}
.y31d{bottom:254.400000pt;}
.y25{bottom:254.466667pt;}
.y371{bottom:255.266667pt;}
.y223{bottom:255.333333pt;}
.y32a{bottom:257.186667pt;}
.y15e{bottom:257.533333pt;}
.y356{bottom:257.600000pt;}
.y20d{bottom:258.106667pt;}
.y5f{bottom:258.373333pt;}
.y13b{bottom:258.813333pt;}
.y343{bottom:259.200000pt;}
.y1f9{bottom:260.133333pt;}
.y51{bottom:262.213333pt;}
.y10a{bottom:262.973333pt;}
.y9f{bottom:263.266667pt;}
.y2f4{bottom:263.680000pt;}
.y2be{bottom:264.413333pt;}
.y1db{bottom:264.573333pt;}
.y266{bottom:266.672725pt;}
.y213{bottom:267.266667pt;}
.y1d4{bottom:267.453333pt;}
.y296{bottom:267.586667pt;}
.y289{bottom:267.813333pt;}
.y29a{bottom:269.733333pt;}
.yf3{bottom:269.946667pt;}
.y24b{bottom:270.527908pt;}
.y8c{bottom:271.546667pt;}
.y24{bottom:273.666667pt;}
.ybe{bottom:274.266667pt;}
.y370{bottom:274.466667pt;}
.y222{bottom:274.533333pt;}
.y120{bottom:274.906667pt;}
.yac{bottom:275.680000pt;}
.y329{bottom:276.386667pt;}
.y16e{bottom:276.480000pt;}
.y15d{bottom:276.733333pt;}
.y355{bottom:276.800000pt;}
.y13a{bottom:278.013333pt;}
.y35c{bottom:278.080000pt;}
.y1c5{bottom:278.333333pt;}
.y342{bottom:278.400000pt;}
.y9e{bottom:279.266667pt;}
.y9d{bottom:280.253333pt;}
.y7a{bottom:280.413333pt;}
.y1e9{bottom:280.986667pt;}
.y7{bottom:281.026667pt;}
.ycb{bottom:281.600000pt;}
.y109{bottom:282.173333pt;}
.ydd{bottom:282.400000pt;}
.y30f{bottom:282.560000pt;}
.y1bc{bottom:282.626667pt;}
.y37d{bottom:282.993333pt;}
.y2bd{bottom:283.613333pt;}
.y305{bottom:283.653333pt;}
.y3a{bottom:285.026667pt;}
.y31c{bottom:285.440000pt;}
.y17a{bottom:286.786667pt;}
.y1f8{bottom:287.013333pt;}
.y5e{bottom:289.093333pt;}
.y50{bottom:290.053333pt;}
.y212{bottom:292.866667pt;}
.y288{bottom:293.440000pt;}
.y36f{bottom:293.666667pt;}
.y221{bottom:293.760000pt;}
.yf2{bottom:295.586667pt;}
.y15c{bottom:295.933333pt;}
.y20b{bottom:295.973333pt;}
.y354{bottom:296.000000pt;}
.y8b{bottom:296.546667pt;}
.y23{bottom:296.866667pt;}
.y139{bottom:297.213333pt;}
.y11f{bottom:297.306667pt;}
.y341{bottom:297.600000pt;}
.y1d3{bottom:299.973333pt;}
.y108{bottom:301.373333pt;}
.y37c{bottom:302.146667pt;}
.y2bc{bottom:302.813333pt;}
.y280{bottom:304.354959pt;}
.ybd{bottom:304.986667pt;}
.yab{bottom:306.426667pt;}
.y1c4{bottom:309.053333pt;}
.y247{bottom:310.131029pt;}
.y1d5{bottom:310.240000pt;}
.y79{bottom:311.133333pt;}
.ydc{bottom:311.200000pt;}
.y1e8{bottom:311.706667pt;}
.y4f{bottom:312.133333pt;}
.y36e{bottom:312.866667pt;}
.y220{bottom:312.960000pt;}
.y30e{bottom:313.306667pt;}
.y1bb{bottom:313.346667pt;}
.y1f7{bottom:313.893333pt;}
.y328{bottom:314.813333pt;}
.y15b{bottom:315.133333pt;}
.y353{bottom:315.200000pt;}
.y148{bottom:315.680000pt;}
.y39{bottom:315.933333pt;}
.y1d2{bottom:315.973333pt;}
.y22{bottom:316.066667pt;}
.y31b{bottom:316.346667pt;}
.y138{bottom:316.413333pt;}
.y340{bottom:316.800000pt;}
.y11e{bottom:316.826667pt;}
.y5d{bottom:317.893333pt;}
.y287{bottom:319.040000pt;}
.y107{bottom:320.573333pt;}
.y146{bottom:320.866667pt;}
.yf1{bottom:321.186667pt;}
.y27f{bottom:321.560989pt;}
.y258{bottom:321.957465pt;}
.y2bb{bottom:322.013333pt;}
.y2a6{bottom:323.200000pt;}
.y8a{bottom:327.266667pt;}
.y11d{bottom:327.706667pt;}
.yca{bottom:331.706667pt;}
.y36d{bottom:332.066667pt;}
.y21f{bottom:332.160000pt;}
.y22d{bottom:332.706667pt;}
.y230{bottom:333.450792pt;}
.y327{bottom:334.013333pt;}
.y15a{bottom:334.373333pt;}
.y352{bottom:334.400000pt;}
.y137{bottom:335.613333pt;}
.ybc{bottom:335.746667pt;}
.y33f{bottom:336.000000pt;}
.ydb{bottom:336.160000pt;}
.yaa{bottom:337.146667pt;}
.y2a5{bottom:337.600000pt;}
.y27e{bottom:338.746264pt;}
.y21{bottom:339.266667pt;}
.y106{bottom:339.773333pt;}
.y5c{bottom:339.973333pt;}
.y1f6{bottom:340.773333pt;}
.y2ba{bottom:341.213333pt;}
.y78{bottom:341.853333pt;}
.y1e7{bottom:342.426667pt;}
.y4e{bottom:342.853333pt;}
.y30d{bottom:344.026667pt;}
.y1ba{bottom:344.093333pt;}
.y286{bottom:344.640000pt;}
.y17b{bottom:344.800000pt;}
.y189{bottom:345.280000pt;}
.yf0{bottom:346.786667pt;}
.y38{bottom:346.973333pt;}
.y31a{bottom:347.226667pt;}
.yc7{bottom:349.186667pt;}
.y11c{bottom:350.146667pt;}
.y36c{bottom:351.266667pt;}
.y21e{bottom:351.360000pt;}
.y1e0{bottom:351.933333pt;}
.y326{bottom:353.213333pt;}
.y159{bottom:353.573333pt;}
.y351{bottom:353.600000pt;}
.y136{bottom:354.813333pt;}
.y33e{bottom:355.200000pt;}
.y193{bottom:355.453333pt;}
.y27d{bottom:355.931539pt;}
.y19d{bottom:357.853333pt;}
.y89{bottom:357.986667pt;}
.y105{bottom:359.013333pt;}
.y1d0{bottom:359.546667pt;}
.y29e{bottom:359.865592pt;}
.y2b9{bottom:360.413333pt;}
.y5b{bottom:362.080000pt;}
.y20{bottom:362.466667pt;}
.yda{bottom:364.960000pt;}
.ybb{bottom:366.466667pt;}
.y1c3{bottom:366.746667pt;}
.ya9{bottom:367.866667pt;}
.y285{bottom:370.240000pt;}
.y36b{bottom:370.493333pt;}
.y21d{bottom:370.560000pt;}
.y158{bottom:370.853333pt;}
.y188{bottom:370.880000pt;}
.y11b{bottom:371.133333pt;}
.y2f3{bottom:371.520000pt;}
.yc6{bottom:372.226667pt;}
.yef{bottom:372.386667pt;}
.y325{bottom:372.413333pt;}
.y77{bottom:372.573333pt;}
.y350{bottom:372.800000pt;}
.y3{bottom:373.053333pt;}
.y27c{bottom:373.116815pt;}
.y1e6{bottom:373.146667pt;}
.y192{bottom:373.413333pt;}
.y4d{bottom:373.600000pt;}
.y135{bottom:374.013333pt;}
.y33d{bottom:374.400000pt;}
.y30c{bottom:374.746667pt;}
.y1b9{bottom:374.813333pt;}
.yc9{bottom:377.626667pt;}
.y37{bottom:377.853333pt;}
.y104{bottom:378.213333pt;}
.y319{bottom:378.266667pt;}
.y2b8{bottom:379.613333pt;}
.y26e{bottom:380.207590pt;}
.y1f{bottom:381.693333pt;}
.y157{bottom:382.373333pt;}
.y25e{bottom:383.927536pt;}
.y88{bottom:388.706667pt;}
.y36a{bottom:389.693333pt;}
.y21c{bottom:389.760000pt;}
.yd9{bottom:389.946667pt;}
.y27b{bottom:390.302090pt;}
.y324{bottom:391.613333pt;}
.y20a{bottom:391.840000pt;}
.y34f{bottom:392.026667pt;}
.y191{bottom:392.613333pt;}
.y5a{bottom:392.800000pt;}
.y134{bottom:393.253333pt;}
.y33c{bottom:393.626667pt;}
.y291{bottom:394.813333pt;}
.y197{bottom:395.066667pt;}
.y284{bottom:395.840000pt;}
.y11a{bottom:396.773333pt;}
.y145{bottom:396.893333pt;}
.yba{bottom:397.186667pt;}
.y103{bottom:397.413333pt;}
.y1f5{bottom:397.693333pt;}
.yee{bottom:397.986667pt;}
.ya8{bottom:398.586667pt;}
.y2b7{bottom:398.853333pt;}
.y1e{bottom:400.893333pt;}
.y156{bottom:401.573333pt;}
.y14b{bottom:402.693333pt;}
.y76{bottom:403.333333pt;}
.y1e5{bottom:403.906667pt;}
.y4c{bottom:404.320000pt;}
.y30b{bottom:405.466667pt;}
.y1b8{bottom:405.533333pt;}
.y27a{bottom:407.487365pt;}
.y252{bottom:407.867223pt;}
.y36{bottom:408.733333pt;}
.y369{bottom:408.893333pt;}
.y21b{bottom:408.960000pt;}
.y318{bottom:409.146667pt;}
.y41{bottom:409.626667pt;}
.y190{bottom:409.893333pt;}
.y2{bottom:410.533333pt;}
.y290{bottom:410.813333pt;}
.y242{bottom:411.191536pt;}
.y34e{bottom:411.226667pt;}
.y133{bottom:412.453333pt;}
.y33b{bottom:412.506667pt;}
.y196{bottom:414.266667pt;}
.y19c{bottom:416.346667pt;}
.y102{bottom:416.613333pt;}
.y2b6{bottom:418.053333pt;}
.yd8{bottom:418.746667pt;}
.y87{bottom:419.453333pt;}
.y1d{bottom:420.093333pt;}
.y25a{bottom:420.344355pt;}
.y155{bottom:420.773333pt;}
.y18f{bottom:421.413333pt;}
.y119{bottom:421.893333pt;}
.y59{bottom:423.520000pt;}
.yed{bottom:423.613333pt;}
.y2f2{bottom:424.346667pt;}
.y1f4{bottom:424.573333pt;}
.y279{bottom:424.672640pt;}
.yb9{bottom:427.906667pt;}
.y368{bottom:428.093333pt;}
.y21a{bottom:428.186667pt;}
.y1a1{bottom:428.320000pt;}
.ya7{bottom:429.346667pt;}
.y323{bottom:430.013333pt;}
.y33a{bottom:430.426667pt;}
.y75{bottom:434.053333pt;}
.y1e4{bottom:434.626667pt;}
.y4b{bottom:435.040000pt;}
.y1ad{bottom:435.493333pt;}
.y101{bottom:435.813333pt;}
.y30a{bottom:436.226667pt;}
.y1b7{bottom:436.253333pt;}
.y2b5{bottom:437.253333pt;}
.y1c{bottom:439.293333pt;}
.y35{bottom:439.773333pt;}
.y154{bottom:439.973333pt;}
.y317{bottom:440.066667pt;}
.y2f1{bottom:440.346667pt;}
.y18e{bottom:440.613333pt;}
.y278{bottom:441.857915pt;}
.y118{bottom:442.373333pt;}
.y273{bottom:443.266667pt;}
.yd7{bottom:443.706667pt;}
.y367{bottom:447.293333pt;}
.y219{bottom:447.386667pt;}
.yec{bottom:449.213333pt;}
.y322{bottom:449.253333pt;}
.y339{bottom:449.626667pt;}
.y86{bottom:450.173333pt;}
.y1f3{bottom:451.453333pt;}
.y14a{bottom:452.186667pt;}
.y58{bottom:452.320000pt;}
.y1a0{bottom:453.920000pt;}
.y100{bottom:455.013333pt;}
.y2f0{bottom:456.346667pt;}
.y2b4{bottom:456.453333pt;}
.y117{bottom:457.573333pt;}
.yb8{bottom:458.653333pt;}
.y153{bottom:459.173333pt;}
.ya6{bottom:460.066667pt;}
.y1e3{bottom:462.466667pt;}
.y1b{bottom:462.493333pt;}
.y28f{bottom:463.040000pt;}
.y74{bottom:464.773333pt;}
.y4a{bottom:465.760000pt;}
.y277{bottom:466.390518pt;}
.y366{bottom:466.493333pt;}
.y218{bottom:466.586667pt;}
.y309{bottom:466.946667pt;}
.y1b6{bottom:466.973333pt;}
.y321{bottom:468.453333pt;}
.y338{bottom:468.826667pt;}
.y44{bottom:468.933333pt;}
.y34{bottom:470.693333pt;}
.y144{bottom:471.906667pt;}
.y2ef{bottom:472.346667pt;}
.yff{bottom:474.213333pt;}
.y57{bottom:474.400000pt;}
.yd6{bottom:474.426667pt;}
.y16f{bottom:474.786667pt;}
.yeb{bottom:474.813333pt;}
.y15{bottom:475.226667pt;}
.y1f2{bottom:478.333333pt;}
.y152{bottom:478.400000pt;}
.y19f{bottom:479.546667pt;}
.y85{bottom:480.893333pt;}
.y1a{bottom:481.693333pt;}
.y116{bottom:483.173333pt;}
.y1e2{bottom:484.546667pt;}
.y365{bottom:485.693333pt;}
.y217{bottom:485.786667pt;}
.y2d1{bottom:486.946667pt;}
.y320{bottom:487.653333pt;}
.y132{bottom:487.773333pt;}
.y170{bottom:487.906667pt;}
.y337{bottom:488.026667pt;}
.y2ee{bottom:488.346667pt;}
.yb7{bottom:489.373333pt;}
.ya5{bottom:490.786667pt;}
.y11{bottom:491.226667pt;}
.yfe{bottom:493.440000pt;}
.y73{bottom:495.493333pt;}
.y49{bottom:496.506667pt;}
.y151{bottom:497.600000pt;}
.y308{bottom:497.666667pt;}
.y1b5{bottom:497.733333pt;}
.y187{bottom:498.333333pt;}
.y257{bottom:499.133333pt;}
.y276{bottom:499.173298pt;}
.y14{bottom:499.706667pt;}
.yea{bottom:500.413333pt;}
.y22f{bottom:500.893333pt;}
.y2d0{bottom:501.346667pt;}
.y33{bottom:501.573333pt;}
.y2a8{bottom:501.950358pt;}
.y2ed{bottom:504.346667pt;}
.y19{bottom:504.933333pt;}
.y216{bottom:504.986667pt;}
.yd5{bottom:505.146667pt;}
.y1f1{bottom:505.213333pt;}
.y31f{bottom:506.853333pt;}
.y336{bottom:507.266667pt;}
.y1{bottom:508.226667pt;}
.y115{bottom:508.773333pt;}
.y2b3{bottom:510.373333pt;}
.y149{bottom:510.626667pt;}
.y84{bottom:511.613333pt;}
.yfd{bottom:512.640000pt;}
.y19a{bottom:513.693333pt;}
.y1e1{bottom:515.266667pt;}
.y10{bottom:515.746667pt;}
.yb6{bottom:516.253333pt;}
.y150{bottom:516.800000pt;}
.y316{bottom:517.280000pt;}
.y275{bottom:517.479352pt;}
.ya4{bottom:517.666667pt;}
.yc5{bottom:520.093333pt;}
.y2ec{bottom:520.346667pt;}
.y1d9{bottom:523.040000pt;}
.y1d1{bottom:523.520000pt;}
.y2c9{bottom:523.543255pt;}
.y16d{bottom:523.906667pt;}
.y18{bottom:524.133333pt;}
.y215{bottom:524.186667pt;}
.y13{bottom:524.226667pt;}
.ye9{bottom:526.013333pt;}
.y72{bottom:526.240000pt;}
.y335{bottom:526.466667pt;}
.y48{bottom:527.226667pt;}
.y307{bottom:528.386667pt;}
.y1b4{bottom:528.453333pt;}
.y2b2{bottom:529.573333pt;}
.y19e{bottom:530.746667pt;}
.y114{bottom:532.000000pt;}
.y1f0{bottom:532.133333pt;}
.yd2{bottom:533.346667pt;}
.y140{bottom:533.600000pt;}
.y172{bottom:533.893333pt;}
.yb5{bottom:535.453333pt;}
.yd4{bottom:535.906667pt;}
.ya3{bottom:536.866667pt;}
.y2eb{bottom:538.106667pt;}
.y83{bottom:538.533333pt;}
.y2d2{bottom:538.973333pt;}
.y22e{bottom:539.293333pt;}
.yf{bottom:540.226667pt;}
.y2f6{bottom:540.293333pt;}
.y2f7{bottom:540.800000pt;}
.y17{bottom:543.333333pt;}
.y214{bottom:543.426667pt;}
.y19b{bottom:543.706667pt;}
.y334{bottom:545.666667pt;}
.y32{bottom:546.466667pt;}
.y28d{bottom:546.853333pt;}
.yc4{bottom:546.973333pt;}
.y113{bottom:547.200000pt;}
.y2b1{bottom:548.773333pt;}
.y12{bottom:548.866667pt;}
.y147{bottom:549.186667pt;}
.yfc{bottom:551.040000pt;}
.ye8{bottom:551.653333pt;}
.y195{bottom:556.346667pt;}
.y71{bottom:556.960000pt;}
.y82{bottom:557.733333pt;}
.y47{bottom:557.946667pt;}
.y1ef{bottom:559.013333pt;}
.y306{bottom:559.133333pt;}
.y13f{bottom:559.200000pt;}
.y1a9{bottom:560.640000pt;}
.y16{bottom:562.533333pt;}
.y171{bottom:564.613333pt;}
.ye{bottom:564.866667pt;}
.yb4{bottom:566.173333pt;}
.yd3{bottom:566.626667pt;}
.y14d{bottom:566.853333pt;}
.ya2{bottom:567.613333pt;}
.y2b0{bottom:567.973333pt;}
.y14f{bottom:569.186667pt;}
.ye6{bottom:570.853333pt;}
.y1ae{bottom:571.653333pt;}
.y28e{bottom:572.666667pt;}
.y198{bottom:588.346667pt;}
.yd{bottom:608.933333pt;}
.h1b{height:19.595625pt;}
.h2b{height:23.296875pt;}
.h19{height:23.328125pt;}
.h68{height:27.822706pt;}
.h72{height:27.872060pt;}
.h6d{height:27.946107pt;}
.h3a{height:29.230446pt;}
.h41{height:29.272744pt;}
.h48{height:29.309108pt;}
.h3e{height:29.311955pt;}
.h44{height:29.366708pt;}
.h1a{height:31.217812pt;}
.h10{height:31.259687pt;}
.h54{height:33.853158pt;}
.h24{height:33.920000pt;}
.h5e{height:33.957215pt;}
.h50{height:33.989419pt;}
.h5b{height:34.043585pt;}
.h58{height:34.084198pt;}
.h2e{height:34.945312pt;}
.h4c{height:35.651985pt;}
.h64{height:36.264783pt;}
.h65{height:36.313428pt;}
.h23{height:38.672812pt;}
.h6{height:38.724688pt;}
.h49{height:38.762428pt;}
.h1d{height:38.766000pt;}
.h3b{height:38.775953pt;}
.h21{height:38.818000pt;}
.h45{height:38.956712pt;}
.h33{height:39.041097pt;}
.h37{height:39.045145pt;}
.h78{height:42.923750pt;}
.h6a{height:44.460938pt;}
.h74{height:44.579500pt;}
.h55{height:44.908259pt;}
.h5f{height:44.909730pt;}
.h51{height:45.089018pt;}
.h1{height:46.593750pt;}
.h4{height:46.656250pt;}
.h11{height:46.686937pt;}
.h7{height:46.749562pt;}
.h6b{height:50.031422pt;}
.h77{height:53.449420pt;}
.h15{height:54.514687pt;}
.h16{height:54.587812pt;}
.h1c{height:54.607875pt;}
.h17{height:54.681125pt;}
.h67{height:55.639960pt;}
.h71{height:55.738659pt;}
.h6e{height:55.757234pt;}
.h12{height:59.281250pt;}
.h76{height:59.883793pt;}
.h31{height:61.933011pt;}
.hf{height:61.969687pt;}
.h9{height:62.052813pt;}
.h13{height:62.062875pt;}
.ha{height:62.146125pt;}
.h3d{height:63.799200pt;}
.h40{height:63.920041pt;}
.h4b{height:63.993199pt;}
.h47{height:64.096608pt;}
.h3c{height:66.413909pt;}
.h3f{height:66.539703pt;}
.h4a{height:66.615859pt;}
.h1e{height:66.656250pt;}
.h46{height:66.723506pt;}
.h34{height:66.833891pt;}
.h38{height:66.993998pt;}
.h2c{height:69.553021pt;}
.h2{height:69.890625pt;}
.h3{height:69.983812pt;}
.h5{height:69.984375pt;}
.h57{height:73.888861pt;}
.h61{height:74.141829pt;}
.h53{height:74.186269pt;}
.h69{height:74.225741pt;}
.h5a{height:74.326784pt;}
.h73{height:74.357409pt;}
.h6f{height:74.382189pt;}
.h56{height:76.917079pt;}
.h60{height:77.180414pt;}
.h52{height:77.226676pt;}
.h59{height:77.372950pt;}
.h8{height:77.811562pt;}
.h18{height:77.915937pt;}
.h2d{height:78.009250pt;}
.h30{height:78.844062pt;}
.h2f{height:78.962625pt;}
.h66{height:80.720227pt;}
.h70{height:80.863416pt;}
.h75{height:83.178412pt;}
.h43{height:84.088463pt;}
.h63{height:84.496945pt;}
.h35{height:89.158855pt;}
.h39{height:89.372444pt;}
.h42{height:90.295310pt;}
.he{height:93.187500pt;}
.hd{height:93.280687pt;}
.h5d{height:97.793112pt;}
.h36{height:101.536471pt;}
.h5c{height:105.011544pt;}
.hb{height:108.563437pt;}
.h14{height:108.709062pt;}
.h4f{height:113.495890pt;}
.h6c{height:116.237026pt;}
.h4e{height:118.149561pt;}
.h1f{height:122.731042pt;}
.h2a{height:132.960000pt;}
.h32{height:139.830937pt;}
.h4d{height:140.259710pt;}
.h29{height:155.680000pt;}
.h28{height:178.400000pt;}
.h22{height:188.000000pt;}
.h27{height:201.120000pt;}
.h26{height:223.840000pt;}
.hc{height:233.374562pt;}
.h25{height:246.720000pt;}
.h20{height:364.000000pt;}
.h62{height:556.532268pt;}
.h0{height:720.000000pt;}
.wd{width:27.749860pt;}
.w13{width:31.880445pt;}
.we{width:32.420909pt;}
.w14{width:37.189221pt;}
.wc{width:37.731921pt;}
.w12{width:43.327252pt;}
.w10{width:44.342562pt;}
.w16{width:50.901185pt;}
.w4{width:74.080000pt;}
.w5{width:85.760000pt;}
.w6{width:87.360000pt;}
.wf{width:109.525607pt;}
.w8{width:110.240000pt;}
.w7{width:110.400000pt;}
.w15{width:125.802873pt;}
.w3{width:137.600000pt;}
.w9{width:139.840000pt;}
.wb{width:146.162231pt;}
.w2{width:154.240000pt;}
.w19{width:165.097513pt;}
.w18{width:190.814177pt;}
.wa{width:225.041908pt;}
.w1a{width:329.246593pt;}
.w11{width:355.746512pt;}
.w17{width:471.938017pt;}
.w1{width:772.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x72{left:3.271887pt;}
.x7d{left:5.856565pt;}
.x8d{left:6.771796pt;}
.x38{left:7.773333pt;}
.x36{left:14.432000pt;}
.x7c{left:16.874788pt;}
.x87{left:19.377180pt;}
.x9b{left:30.888308pt;}
.x80{left:33.243689pt;}
.x9a{left:34.224993pt;}
.x32{left:36.000000pt;}
.x8c{left:38.160698pt;}
.x2a{left:39.456000pt;}
.x34{left:40.448000pt;}
.xaa{left:41.643334pt;}
.x33{left:43.360000pt;}
.x7a{left:44.391821pt;}
.x1c{left:46.272000pt;}
.xd{left:47.616000pt;}
.x77{left:48.783409pt;}
.x6{left:55.264000pt;}
.x92{left:58.272000pt;}
.x7f{left:61.351969pt;}
.x27{left:62.624000pt;}
.x1{left:64.448000pt;}
.x9{left:65.472000pt;}
.x2{left:67.136000pt;}
.x2f{left:68.128000pt;}
.x3{left:69.557333pt;}
.x8b{left:70.469858pt;}
.x81{left:72.288000pt;}
.x10{left:73.952000pt;}
.x66{left:75.552000pt;}
.x17{left:76.608000pt;}
.x35{left:81.600000pt;}
.x15{left:84.000000pt;}
.x44{left:85.952000pt;}
.xc{left:88.640000pt;}
.x78{left:90.135884pt;}
.x21{left:93.440000pt;}
.xb3{left:95.162158pt;}
.xa0{left:96.887679pt;}
.x85{left:98.075407pt;}
.x79{left:99.158206pt;}
.x8a{left:102.002468pt;}
.xe{left:103.616000pt;}
.xb2{left:104.777843pt;}
.xb1{left:107.594519pt;}
.x9f{left:112.399540pt;}
.x55{left:115.776000pt;}
.x59{left:117.664000pt;}
.x9e{left:121.872524pt;}
.x6d{left:122.843348pt;}
.x74{left:128.902324pt;}
.x76{left:133.322469pt;}
.x18{left:140.386667pt;}
.x73{left:142.812953pt;}
.x1f{left:143.706667pt;}
.x31{left:147.133333pt;}
.xad{left:150.767630pt;}
.x1a{left:153.053333pt;}
.x96{left:154.973333pt;}
.x5f{left:159.426667pt;}
.x71{left:161.277741pt;}
.x4f{left:167.360000pt;}
.x99{left:170.787332pt;}
.x6f{left:172.087414pt;}
.xa9{left:175.194731pt;}
.x43{left:177.626667pt;}
.xb0{left:180.830072pt;}
.xb5{left:189.306667pt;}
.x70{left:198.266874pt;}
.xa8{left:206.655565pt;}
.x1d{left:207.653333pt;}
.x6e{left:209.126178pt;}
.x62{left:210.333333pt;}
.x5d{left:217.853333pt;}
.x30{left:225.373333pt;}
.x3c{left:228.293333pt;}
.xa2{left:229.466667pt;}
.xac{left:234.921779pt;}
.xab{left:237.746411pt;}
.x61{left:240.253333pt;}
.x28{left:243.133333pt;}
.xaf{left:249.402992pt;}
.xae{left:252.227624pt;}
.x7e{left:262.619561pt;}
.x5e{left:264.733333pt;}
.x3a{left:270.906667pt;}
.x60{left:272.573333pt;}
.x57{left:278.426667pt;}
.x86{left:284.063214pt;}
.x54{left:287.493333pt;}
.x7b{left:290.585163pt;}
.x47{left:296.226667pt;}
.x65{left:306.653333pt;}
.xa7{left:309.237455pt;}
.x4e{left:312.000000pt;}
.x37{left:313.280000pt;}
.x4d{left:321.760000pt;}
.x8e{left:325.986667pt;}
.x2e{left:332.986667pt;}
.x4{left:343.813333pt;}
.xb4{left:347.333333pt;}
.x5{left:354.053333pt;}
.x25{left:355.493333pt;}
.xb9{left:362.240000pt;}
.x3b{left:365.946667pt;}
.x58{left:367.013333pt;}
.xa{left:371.333333pt;}
.x48{left:385.733333pt;}
.xb7{left:386.720000pt;}
.x50{left:388.186667pt;}
.x64{left:399.333333pt;}
.x63{left:400.293333pt;}
.x90{left:404.448521pt;}
.xa6{left:410.720936pt;}
.x84{left:419.431857pt;}
.x82{left:423.007016pt;}
.x83{left:425.281220pt;}
.x26{left:430.653333pt;}
.x40{left:437.146667pt;}
.x8f{left:445.116723pt;}
.x20{left:449.666667pt;}
.x2d{left:459.520000pt;}
.x91{left:473.309839pt;}
.x19{left:479.973333pt;}
.xb8{left:481.146667pt;}
.x53{left:482.333333pt;}
.x13{left:483.813333pt;}
.x3e{left:488.000000pt;}
.x95{left:493.280000pt;}
.x69{left:496.640000pt;}
.x4a{left:499.520000pt;}
.x4c{left:511.813333pt;}
.x6a{left:513.760000pt;}
.xa5{left:521.093333pt;}
.x68{left:531.360000pt;}
.x5a{left:539.013333pt;}
.x89{left:545.934627pt;}
.x88{left:548.188690pt;}
.x24{left:562.693333pt;}
.x12{left:571.133333pt;}
.x29{left:578.693333pt;}
.x8{left:620.480000pt;}
.x22{left:621.693333pt;}
.x56{left:629.853333pt;}
.x49{left:669.893333pt;}
.x2b{left:675.653333pt;}
.x93{left:680.960000pt;}
.x39{left:693.120000pt;}
.x3d{left:696.000000pt;}
.x51{left:698.880000pt;}
.x4b{left:699.973333pt;}
.x94{left:720.453333pt;}
.x6c{left:721.513690pt;}
.x1b{left:725.093333pt;}
.x52{left:734.880000pt;}
.xa3{left:743.306855pt;}
.x6b{left:745.893333pt;}
.xa4{left:747.613333pt;}
.x41{left:753.853333pt;}
.x98{left:755.813528pt;}
.x11{left:757.466667pt;}
.xb{left:758.880000pt;}
.x9c{left:760.133333pt;}
.x75{left:761.281220pt;}
.x9d{left:763.935141pt;}
.x7{left:764.826667pt;}
.x45{left:771.386667pt;}
.x67{left:775.546667pt;}
.xf{left:792.733333pt;}
.xb6{left:793.826667pt;}
.x42{left:799.360000pt;}
.xa1{left:801.786667pt;}
.x97{left:803.813333pt;}
.x5b{left:817.733333pt;}
.x5c{left:826.146667pt;}
.x16{left:831.173333pt;}
.x1e{left:833.280000pt;}
.x14{left:836.506667pt;}
.x23{left:852.253333pt;}
.x3f{left:859.066667pt;}
.x2c{left:864.893333pt;}
.x46{left:871.066667pt;}
}




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