
    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_c59ebb615cfba8690c7d057c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_36a244abfb9cea6cfb1d2381.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_0c66656175b3abce80d7fde5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_c0d8683be7c0fd0adacfe86e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_eb484f8e8c289896ce44ec7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_ff2af81564e1f9aeb2160410.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_49335fca26614e0570736b9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191406;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_4fb2965369eef082b1f110d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_2a517a0b920c461a5f37bf12.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_0c02da960b47d4efc84f2ccc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a963969033a12c716313af8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8f5605d62a86dc4646f64649.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2c7a0254e79b68e42ec92ac4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_11a102f2d344e5c24161fd4b.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4ab3285684835964f096d7e6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a963969033a12c716313af8d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8f5605d62a86dc4646f64649.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2c7a0254e79b68e42ec92ac4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_11a102f2d344e5c24161fd4b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c3b92c7fa02441b14614349c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ae32d7426d6e7839df0476f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.225182;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_79982cb8de6feb5bb1c306df.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a9685f97110caca5f7c0f5b5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d481a0d9de9a05c77c372b93.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_79982cb8de6feb5bb1c306df.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a9685f97110caca5f7c0f5b5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d481a0d9de9a05c77c372b93.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_75a496858a44291f21f3581c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-29.160000px;}
.vc{vertical-align:-22.680000px;}
.v2{vertical-align:-20.400000px;}
.v4{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.vb{vertical-align:-14.280000px;}
.v6{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.800000px;}
.va{vertical-align:14.382000px;}
.v3{vertical-align:18.204000px;}
.v1{vertical-align:20.400000px;}
.v8{vertical-align:34.860000px;}
.lsa0{letter-spacing:-3.375000px;}
.lsa6{letter-spacing:-3.285000px;}
.ls80{letter-spacing:-1.944000px;}
.lsaa{letter-spacing:-1.485000px;}
.ls59{letter-spacing:-1.404000px;}
.lsa5{letter-spacing:-1.305000px;}
.ls29{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.960000px;}
.lsa4{letter-spacing:-0.855000px;}
.ls65{letter-spacing:-0.840000px;}
.ls40{letter-spacing:-0.810000px;}
.lsa9{letter-spacing:-0.765000px;}
.lsa7{letter-spacing:-0.675000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.594000px;}
.ls63{letter-spacing:-0.588000px;}
.lsab{letter-spacing:-0.585000px;}
.ls64{letter-spacing:-0.546000px;}
.ls31{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.504000px;}
.ls96{letter-spacing:-0.495000px;}
.ls36{letter-spacing:-0.486000px;}
.lsa2{letter-spacing:-0.450000px;}
.ls43{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.420000px;}
.ls5e{letter-spacing:-0.378000px;}
.ls99{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.351000px;}
.ls5c{letter-spacing:-0.324000px;}
.ls6d{letter-spacing:-0.315900px;}
.ls97{letter-spacing:-0.315000px;}
.ls42{letter-spacing:-0.280800px;}
.ls3f{letter-spacing:-0.270000px;}
.ls68{letter-spacing:-0.245700px;}
.ls98{letter-spacing:-0.225000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls62{letter-spacing:-0.210000px;}
.ls1a{letter-spacing:-0.204000px;}
.ls92{letter-spacing:-0.180000px;}
.ls44{letter-spacing:-0.175500px;}
.ls48{letter-spacing:-0.168000px;}
.ls13{letter-spacing:-0.162000px;}
.ls57{letter-spacing:-0.140400px;}
.ls46{letter-spacing:-0.126000px;}
.ls83{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.105300px;}
.ls1c{letter-spacing:-0.102000px;}
.ls94{letter-spacing:-0.090000px;}
.ls69{letter-spacing:-0.081900px;}
.ls2f{letter-spacing:-0.070200px;}
.ls28{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.051000px;}
.ls95{letter-spacing:-0.045000px;}
.ls2b{letter-spacing:-0.035100px;}
.ls11{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000300px;}
.ls5{letter-spacing:0.009600px;}
.ls3{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.013800px;}
.ls41{letter-spacing:0.035100px;}
.lsa1{letter-spacing:0.045000px;}
.ls16{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.070200px;}
.ls7f{letter-spacing:0.083400px;}
.lsa3{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.102000px;}
.ls8e{letter-spacing:0.105300px;}
.ls7{letter-spacing:0.108000px;}
.ls6f{letter-spacing:0.120000px;}
.ls93{letter-spacing:0.135000px;}
.ls17{letter-spacing:0.140400px;}
.ls38{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.175500px;}
.ls77{letter-spacing:0.179400px;}
.ls6a{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.183000px;}
.lsa{letter-spacing:0.200850px;}
.lsd{letter-spacing:0.205650px;}
.ls81{letter-spacing:0.210600px;}
.ls8{letter-spacing:0.216000px;}
.ls89{letter-spacing:0.225000px;}
.ls51{letter-spacing:0.233400px;}
.ls4a{letter-spacing:0.243000px;}
.ls30{letter-spacing:0.245700px;}
.ls4f{letter-spacing:0.246600px;}
.ls8a{letter-spacing:0.247500px;}
.ls67{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.270000px;}
.ls82{letter-spacing:0.280800px;}
.ls5b{letter-spacing:0.286200px;}
.ls10{letter-spacing:0.291450px;}
.ls23{letter-spacing:0.297000px;}
.ls9{letter-spacing:0.306000px;}
.ls91{letter-spacing:0.315000px;}
.ls8f{letter-spacing:0.315900px;}
.ls50{letter-spacing:0.323400px;}
.ls33{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.351000px;}
.lsac{letter-spacing:0.355500px;}
.ls70{letter-spacing:0.356400px;}
.lse{letter-spacing:0.357000px;}
.ls8c{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.378000px;}
.ls54{letter-spacing:0.379500px;}
.ls55{letter-spacing:0.380100px;}
.ls3a{letter-spacing:0.385200px;}
.ls3b{letter-spacing:0.385800px;}
.ls53{letter-spacing:0.386100px;}
.ls3d{letter-spacing:0.391200px;}
.ls9b{letter-spacing:0.405000px;}
.ls7b{letter-spacing:0.408300px;}
.ls76{letter-spacing:0.421200px;}
.ls73{letter-spacing:0.424500px;}
.ls25{letter-spacing:0.432000px;}
.lsa8{letter-spacing:0.450000px;}
.ls72{letter-spacing:0.456300px;}
.lsf{letter-spacing:0.459000px;}
.lsc{letter-spacing:0.464250px;}
.ls37{letter-spacing:0.486000px;}
.ls9a{letter-spacing:0.490500px;}
.ls6e{letter-spacing:0.491400px;}
.ls8b{letter-spacing:0.495000px;}
.ls3c{letter-spacing:0.514200px;}
.ls22{letter-spacing:0.529200px;}
.ls39{letter-spacing:0.534600px;}
.ls26{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.545400px;}
.ls6b{letter-spacing:0.553800px;}
.ls1d{letter-spacing:0.561000px;}
.ls2d{letter-spacing:0.561600px;}
.ls9e{letter-spacing:0.562500px;}
.ls4b{letter-spacing:0.568200px;}
.ls9c{letter-spacing:0.585000px;}
.ls21{letter-spacing:0.594000px;}
.ls75{letter-spacing:0.600000px;}
.ls71{letter-spacing:0.620400px;}
.ls90{letter-spacing:0.630000px;}
.ls4{letter-spacing:0.648000px;}
.ls5d{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.673800px;}
.ls4c{letter-spacing:0.687000px;}
.ls5a{letter-spacing:0.702000px;}
.lsb{letter-spacing:0.714000px;}
.ls24{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.756000px;}
.ls27{letter-spacing:0.810000px;}
.ls84{letter-spacing:0.840000px;}
.ls7d{letter-spacing:0.853800px;}
.ls7c{letter-spacing:0.854400px;}
.ls4e{letter-spacing:0.855000px;}
.ls85{letter-spacing:0.864000px;}
.ls52{letter-spacing:0.880200px;}
.ls79{letter-spacing:0.918000px;}
.ls7e{letter-spacing:0.937800px;}
.ls88{letter-spacing:0.942000px;}
.ls86{letter-spacing:0.972000px;}
.lsad{letter-spacing:1.026000px;}
.ls8d{letter-spacing:1.080000px;}
.ls9d{letter-spacing:1.201500px;}
.ls35{letter-spacing:1.242000px;}
.ls34{letter-spacing:1.260000px;}
.ls78{letter-spacing:1.287600px;}
.ls45{letter-spacing:1.296000px;}
.ls7a{letter-spacing:1.480800px;}
.ls87{letter-spacing:1.944000px;}
.ls0{letter-spacing:2.592000px;}
.ls1f{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls9f{letter-spacing:4.620000px;}
.ls74{letter-spacing:6.120000px;}
.ls5f{letter-spacing:52.480500px;}
.ls60{letter-spacing:72.640500px;}
.ls3e{letter-spacing:342.006000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb5{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws2a{word-spacing:-14.700000px;}
.ws32{word-spacing:-13.596000px;}
.ws5a{word-spacing:-13.500000px;}
.ws55{word-spacing:-13.014000px;}
.ws37{word-spacing:-12.960000px;}
.ws76{word-spacing:-12.798000px;}
.wsc1{word-spacing:-12.690000px;}
.ws39{word-spacing:-12.636000px;}
.ws7c{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws38{word-spacing:-12.420000px;}
.ws75{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.wsad{word-spacing:-12.312000px;}
.ws35{word-spacing:-12.258000px;}
.ws79{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws7d{word-spacing:-12.150000px;}
.ws2d{word-spacing:-12.096000px;}
.wsb3{word-spacing:-12.042000px;}
.wsca{word-spacing:-11.934000px;}
.ws33{word-spacing:-11.880000px;}
.ws34{word-spacing:-11.826000px;}
.ws36{word-spacing:-11.772000px;}
.ws7b{word-spacing:-11.718000px;}
.ws56{word-spacing:-11.556000px;}
.wse0{word-spacing:-10.327500px;}
.wsdf{word-spacing:-10.305000px;}
.ws9{word-spacing:-10.200000px;}
.wsde{word-spacing:-10.125000px;}
.wscc{word-spacing:-9.990000px;}
.wsf8{word-spacing:-9.945000px;}
.wse5{word-spacing:-9.900000px;}
.wse2{word-spacing:-9.855000px;}
.wscb{word-spacing:-9.720000px;}
.wsdb{word-spacing:-9.675000px;}
.wsf5{word-spacing:-9.630000px;}
.ws65{word-spacing:-9.534000px;}
.ws5f{word-spacing:-9.198000px;}
.ws5d{word-spacing:-9.114000px;}
.ws66{word-spacing:-9.030000px;}
.wse1{word-spacing:-9.000000px;}
.ws83{word-spacing:-8.775000px;}
.ws9c{word-spacing:-8.694000px;}
.ws2e{word-spacing:-8.529300px;}
.wsb2{word-spacing:-8.424000px;}
.wsb4{word-spacing:-8.388900px;}
.wsc3{word-spacing:-8.353800px;}
.ws2f{word-spacing:-8.318700px;}
.wsc9{word-spacing:-8.283600px;}
.wsc4{word-spacing:-8.248500px;}
.ws31{word-spacing:-8.213400px;}
.wsc2{word-spacing:-8.178300px;}
.ws77{word-spacing:-8.143200px;}
.ws7{word-spacing:-8.108100px;}
.wsc8{word-spacing:-8.073000px;}
.ws6{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws57{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws2b{word-spacing:-7.932600px;}
.ws30{word-spacing:-7.897500px;}
.ws2c{word-spacing:-7.862400px;}
.ws78{word-spacing:-7.827300px;}
.ws59{word-spacing:-7.792200px;}
.wsae{word-spacing:-7.722000px;}
.ws58{word-spacing:-7.686900px;}
.wsaf{word-spacing:-7.651800px;}
.ws7a{word-spacing:-7.616700px;}
.ws8{word-spacing:-6.630000px;}
.wsa7{word-spacing:-6.197100px;}
.wsb6{word-spacing:-6.120000px;}
.ws69{word-spacing:-5.508000px;}
.wsd{word-spacing:-5.340000px;}
.wsc7{word-spacing:-5.130000px;}
.wse3{word-spacing:-4.620000px;}
.ws72{word-spacing:-4.284000px;}
.ws73{word-spacing:-4.116000px;}
.wsf{word-spacing:-3.840000px;}
.wsa1{word-spacing:-3.780000px;}
.wsc{word-spacing:-3.276000px;}
.wse{word-spacing:-2.400000px;}
.ws15{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.836000px;}
.ws7f{word-spacing:-1.782000px;}
.ws6d{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.674000px;}
.wsf7{word-spacing:-1.665000px;}
.ws6b{word-spacing:-1.620000px;}
.ws18{word-spacing:-1.566000px;}
.ws1e{word-spacing:-1.530000px;}
.ws7e{word-spacing:-1.512000px;}
.ws50{word-spacing:-1.458000px;}
.ws81{word-spacing:-1.404000px;}
.wsfd{word-spacing:-1.395000px;}
.wsbc{word-spacing:-1.386000px;}
.ws3c{word-spacing:-1.350000px;}
.wsec{word-spacing:-1.305000px;}
.ws41{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.275000px;}
.ws10{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.242000px;}
.wse9{word-spacing:-1.215000px;}
.ws74{word-spacing:-1.188000px;}
.wsdd{word-spacing:-1.170000px;}
.ws11{word-spacing:-1.134000px;}
.ws3a{word-spacing:-1.080000px;}
.wsd3{word-spacing:-1.035000px;}
.wsbf{word-spacing:-1.026000px;}
.ws84{word-spacing:-0.972000px;}
.ws71{word-spacing:-0.966000px;}
.wseb{word-spacing:-0.945000px;}
.ws70{word-spacing:-0.924000px;}
.ws100{word-spacing:-0.918000px;}
.wsba{word-spacing:-0.864000px;}
.wsef{word-spacing:-0.855000px;}
.wscd{word-spacing:-0.840000px;}
.ws1c{word-spacing:-0.810000px;}
.wsed{word-spacing:-0.765000px;}
.ws67{word-spacing:-0.756000px;}
.ws4b{word-spacing:-0.720000px;}
.ws23{word-spacing:-0.714000px;}
.ws43{word-spacing:-0.702000px;}
.wsda{word-spacing:-0.675000px;}
.ws88{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.648000px;}
.wsbd{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.594000px;}
.wsea{word-spacing:-0.585000px;}
.ws26{word-spacing:-0.561000px;}
.ws47{word-spacing:-0.540000px;}
.wse7{word-spacing:-0.495000px;}
.ws1d{word-spacing:-0.486000px;}
.ws27{word-spacing:-0.459000px;}
.wsb7{word-spacing:-0.456300px;}
.wsfc{word-spacing:-0.450000px;}
.ws6a{word-spacing:-0.432000px;}
.wsd0{word-spacing:-0.421200px;}
.wsd5{word-spacing:-0.405000px;}
.ws1b{word-spacing:-0.378000px;}
.ws25{word-spacing:-0.357000px;}
.ws3f{word-spacing:-0.351000px;}
.ws44{word-spacing:-0.324000px;}
.wsfb{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.306000px;}
.ws4e{word-spacing:-0.270000px;}
.ws86{word-spacing:-0.245700px;}
.wse6{word-spacing:-0.225000px;}
.ws52{word-spacing:-0.216000px;}
.wsd2{word-spacing:-0.210600px;}
.ws20{word-spacing:-0.204000px;}
.wsb0{word-spacing:-0.180000px;}
.wsb9{word-spacing:-0.175500px;}
.ws6e{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.140400px;}
.wsb8{word-spacing:-0.120000px;}
.ws49{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.102000px;}
.wsdc{word-spacing:-0.090000px;}
.wsb1{word-spacing:-0.070200px;}
.ws4a{word-spacing:-0.054000px;}
.wsd8{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws3b{word-spacing:0.035100px;}
.wse8{word-spacing:0.045000px;}
.ws21{word-spacing:0.051000px;}
.ws51{word-spacing:0.054000px;}
.ws42{word-spacing:0.070200px;}
.wsd6{word-spacing:0.090000px;}
.ws22{word-spacing:0.102000px;}
.ws14{word-spacing:0.105300px;}
.ws3e{word-spacing:0.108000px;}
.wsc6{word-spacing:0.120000px;}
.wsf4{word-spacing:0.135000px;}
.wsbb{word-spacing:0.140400px;}
.ws3d{word-spacing:0.162000px;}
.wsf9{word-spacing:0.180000px;}
.wsa0{word-spacing:0.210000px;}
.ws80{word-spacing:0.216000px;}
.wsd9{word-spacing:0.225000px;}
.ws46{word-spacing:0.270000px;}
.wsd4{word-spacing:0.315000px;}
.ws13{word-spacing:0.324000px;}
.wsd7{word-spacing:0.360000px;}
.wsbe{word-spacing:0.378000px;}
.ws6c{word-spacing:0.432000px;}
.wsf2{word-spacing:0.450000px;}
.ws87{word-spacing:0.486000px;}
.wsf0{word-spacing:0.495000px;}
.ws85{word-spacing:0.540000px;}
.ws4d{word-spacing:0.594000px;}
.wsf3{word-spacing:0.630000px;}
.ws40{word-spacing:0.648000px;}
.ws45{word-spacing:0.702000px;}
.ws68{word-spacing:0.756000px;}
.wsf6{word-spacing:0.765000px;}
.ws54{word-spacing:0.810000px;}
.ws24{word-spacing:0.816000px;}
.ws53{word-spacing:0.864000px;}
.wsb{word-spacing:0.960000px;}
.ws89{word-spacing:1.026000px;}
.wsc0{word-spacing:1.080000px;}
.wsce{word-spacing:1.134000px;}
.ws101{word-spacing:1.188000px;}
.ws102{word-spacing:1.242000px;}
.wsee{word-spacing:1.305000px;}
.wsfe{word-spacing:1.350000px;}
.wscf{word-spacing:1.404000px;}
.wsfa{word-spacing:1.440000px;}
.wsc5{word-spacing:1.458000px;}
.ws4c{word-spacing:1.512000px;}
.ws48{word-spacing:1.782000px;}
.wsff{word-spacing:1.944000px;}
.ws6f{word-spacing:1.998000px;}
.wsf1{word-spacing:3.285000px;}
.wse4{word-spacing:3.375000px;}
.wsd1{word-spacing:3.672000px;}
.ws82{word-spacing:16.146000px;}
.wsa4{word-spacing:48.426000px;}
.ws5c{word-spacing:49.560000px;}
.wsa3{word-spacing:52.836000px;}
.ws8e{word-spacing:56.200200px;}
.wsa6{word-spacing:60.102000px;}
.ws8d{word-spacing:61.404000px;}
.ws5b{word-spacing:62.286000px;}
.ws9b{word-spacing:66.150000px;}
.ws96{word-spacing:72.258300px;}
.wsa9{word-spacing:74.022330px;}
.ws9a{word-spacing:74.088000px;}
.ws93{word-spacing:78.708000px;}
.wsab{word-spacing:80.262000px;}
.wsa2{word-spacing:90.594000px;}
.ws5e{word-spacing:92.064000px;}
.ws95{word-spacing:95.256000px;}
.wsa8{word-spacing:95.805000px;}
.ws91{word-spacing:98.868000px;}
.ws98{word-spacing:99.498000px;}
.ws63{word-spacing:99.750000px;}
.ws9f{word-spacing:106.806000px;}
.wsac{word-spacing:109.018200px;}
.ws9d{word-spacing:111.552000px;}
.ws97{word-spacing:115.416000px;}
.ws99{word-spacing:149.016000px;}
.ws8f{word-spacing:158.466000px;}
.wsa5{word-spacing:161.448000px;}
.ws94{word-spacing:178.626000px;}
.ws8c{word-spacing:185.346000px;}
.ws8a{word-spacing:204.162000px;}
.ws8b{word-spacing:251.160000px;}
.ws92{word-spacing:266.322000px;}
.ws90{word-spacing:294.882000px;}
.ws62{word-spacing:320.880000px;}
.ws60{word-spacing:324.324000px;}
.ws9e{word-spacing:353.304000px;}
.wsaa{word-spacing:414.918000px;}
.ws61{word-spacing:426.426000px;}
.ws64{word-spacing:531.006000px;}
._23{margin-left:-20.082000px;}
._2{margin-left:-12.043200px;}
._4{margin-left:-9.860400px;}
._d{margin-left:-8.602800px;}
._a{margin-left:-7.125000px;}
._b{margin-left:-6.000000px;}
._9{margin-left:-4.512000px;}
._1{margin-left:-3.385200px;}
._0{margin-left:-1.776000px;}
._6{width:1.590000px;}
._8{width:2.872800px;}
._5{width:4.050000px;}
._f{width:5.415600px;}
._3d{width:6.501000px;}
._40{width:8.280000px;}
._3f{width:10.170000px;}
._3e{width:11.790000px;}
._3c{width:12.960000px;}
._22{width:15.420000px;}
._41{width:17.460000px;}
._e{width:41.545200px;}
._3{width:42.850200px;}
._7{width:43.928400px;}
._3b{width:47.133600px;}
._c{width:48.268800px;}
._27{width:56.244000px;}
._11{width:61.152000px;}
._19{width:63.108000px;}
._18{width:77.250000px;}
._13{width:81.486000px;}
._10{width:86.299800px;}
._2b{width:88.258800px;}
._39{width:99.144000px;}
._3a{width:100.200300px;}
._2e{width:104.376000px;}
._25{width:108.012000px;}
._14{width:109.284000px;}
._15{width:113.778000px;}
._36{width:116.340000px;}
._2d{width:118.818000px;}
._1b{width:121.758000px;}
._26{width:124.950000px;}
._2f{width:131.634000px;}
._20{width:133.938000px;}
._30{width:136.500000px;}
._34{width:141.060000px;}
._2a{width:147.840000px;}
._35{width:151.746000px;}
._1a{width:154.854000px;}
._31{width:160.860000px;}
._28{width:168.000000px;}
._37{width:171.246000px;}
._32{width:175.494000px;}
._24{width:178.134000px;}
._38{width:180.432000px;}
._29{width:188.160000px;}
._16{width:209.958000px;}
._33{width:212.886000px;}
._2c{width:215.838000px;}
._1d{width:249.408000px;}
._1e{width:303.720000px;}
._1c{width:311.892000px;}
._21{width:332.490000px;}
._17{width:334.422000px;}
._1f{width:367.638000px;}
._12{width:470.586000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsd{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y2f{bottom:68.313900px;}
.y76{bottom:68.582850px;}
.yf7{bottom:69.823800px;}
.y15e{bottom:70.291800px;}
.ya2{bottom:71.044800px;}
.y288{bottom:71.343300px;}
.y10f{bottom:79.300800px;}
.y1c3{bottom:80.683650px;}
.yd4{bottom:81.027000px;}
.y2e{bottom:83.307900px;}
.y75{bottom:83.581350px;}
.y287{bottom:84.089550px;}
.yf6{bottom:84.822300px;}
.y15d{bottom:85.290300px;}
.y185{bottom:86.046300px;}
.y237{bottom:86.148300px;}
.y11b{bottom:89.790300px;}
.ya1{bottom:90.633300px;}
.y10e{bottom:94.299300px;}
.y1f9{bottom:95.673150px;}
.y1c2{bottom:95.682150px;}
.yd3{bottom:96.027000px;}
.y286{bottom:96.835800px;}
.y2d{bottom:98.313900px;}
.y74{bottom:98.579850px;}
.y236{bottom:98.894550px;}
.yf5{bottom:99.820800px;}
.y15c{bottom:100.288800px;}
.y184{bottom:101.044800px;}
.ya0{bottom:101.059800px;}
.y11a{bottom:104.788800px;}
.y10d{bottom:109.297800px;}
.y285{bottom:109.582050px;}
.y1f8{bottom:110.673150px;}
.y1c1{bottom:110.680650px;}
.yd2{bottom:111.049800px;}
.y235{bottom:111.640800px;}
.y2c{bottom:113.307900px;}
.y73{bottom:113.578350px;}
.yf4{bottom:114.819300px;}
.y15b{bottom:115.287300px;}
.y183{bottom:116.050800px;}
.y9f{bottom:116.058300px;}
.y119{bottom:119.787300px;}
.y284{bottom:122.328300px;}
.y10c{bottom:124.296300px;}
.y234{bottom:124.387050px;}
.y1f7{bottom:125.673150px;}
.y1c0{bottom:125.679150px;}
.yd1{bottom:126.048300px;}
.y2b{bottom:128.307900px;}
.y72{bottom:128.576850px;}
.yf3{bottom:129.825300px;}
.y15a{bottom:130.285800px;}
.y182{bottom:131.049300px;}
.y9e{bottom:131.056800px;}
.y118{bottom:134.785800px;}
.y283{bottom:135.074550px;}
.y233{bottom:137.133300px;}
.y10b{bottom:139.294800px;}
.y1f6{bottom:140.673150px;}
.y1bf{bottom:140.677650px;}
.yd0{bottom:141.046800px;}
.y2a{bottom:143.307900px;}
.yf2{bottom:144.823800px;}
.y159{bottom:145.284300px;}
.y181{bottom:146.047800px;}
.y9d{bottom:146.055300px;}
.y282{bottom:147.820800px;}
.y117{bottom:149.784300px;}
.y232{bottom:149.879550px;}
.y10a{bottom:154.308300px;}
.y1be{bottom:155.676150px;}
.ycf{bottom:156.045300px;}
.y29{bottom:158.307900px;}
.yf1{bottom:159.822300px;}
.y158{bottom:160.282800px;}
.y71{bottom:160.436850px;}
.y281{bottom:160.567050px;}
.y180{bottom:161.046300px;}
.y9c{bottom:161.053800px;}
.y231{bottom:162.625800px;}
.y116{bottom:164.782800px;}
.y109{bottom:169.306800px;}
.y1bd{bottom:170.674650px;}
.yce{bottom:171.043800px;}
.y280{bottom:173.313300px;}
.yf0{bottom:174.820800px;}
.y157{bottom:175.281300px;}
.y230{bottom:175.372050px;}
.y70{bottom:175.435350px;}
.y17f{bottom:176.044800px;}
.y9b{bottom:176.052300px;}
.y28{bottom:177.636900px;}
.y115{bottom:179.781300px;}
.y108{bottom:184.305300px;}
.y1bc{bottom:185.673150px;}
.ycd{bottom:186.042300px;}
.y27f{bottom:186.059550px;}
.y22f{bottom:188.118300px;}
.y27{bottom:188.307900px;}
.yef{bottom:189.819300px;}
.y156{bottom:190.279800px;}
.y6f{bottom:190.433850px;}
.y17e{bottom:191.044800px;}
.y9a{bottom:191.050800px;}
.y114{bottom:194.779800px;}
.y27e{bottom:198.805800px;}
.y107{bottom:199.303800px;}
.y1f5{bottom:200.679150px;}
.y1bb{bottom:200.680650px;}
.y22e{bottom:200.864550px;}
.y26{bottom:203.307900px;}
.yee{bottom:204.817800px;}
.y155{bottom:205.278300px;}
.y6e{bottom:205.432350px;}
.y99{bottom:206.049300px;}
.y17d{bottom:206.053800px;}
.y113{bottom:209.778300px;}
.y27d{bottom:211.552050px;}
.y22d{bottom:213.610800px;}
.y106{bottom:214.302300px;}
.y1f4{bottom:215.677650px;}
.y1ba{bottom:215.679150px;}
.ycc{bottom:220.305300px;}
.y6d{bottom:220.430850px;}
.y98{bottom:221.047800px;}
.y17c{bottom:221.052300px;}
.y25{bottom:222.636900px;}
.y27c{bottom:224.298300px;}
.y22c{bottom:226.357050px;}
.y105{bottom:229.300800px;}
.y1f3{bottom:230.676150px;}
.y1b9{bottom:230.677650px;}
.ycb{bottom:235.303800px;}
.y6c{bottom:235.429350px;}
.y97{bottom:236.046300px;}
.y17b{bottom:236.050800px;}
.y27b{bottom:237.044550px;}
.yed{bottom:237.832800px;}
.y22b{bottom:239.103300px;}
.y104{bottom:244.299300px;}
.y1f2{bottom:245.674650px;}
.y1b8{bottom:245.676150px;}
.y27a{bottom:249.790800px;}
.yca{bottom:250.302300px;}
.y6b{bottom:250.427850px;}
.y96{bottom:251.044800px;}
.y17a{bottom:251.049300px;}
.y22a{bottom:251.849550px;}
.yec{bottom:252.831300px;}
.y24{bottom:257.185800px;}
.y168{bottom:257.217300px;}
.y154{bottom:257.781300px;}
.y103{bottom:259.297800px;}
.y1f1{bottom:260.673150px;}
.y1b7{bottom:260.674650px;}
.y279{bottom:262.537050px;}
.y229{bottom:264.595800px;}
.yc9{bottom:265.300800px;}
.y6a{bottom:265.426350px;}
.y95{bottom:266.044800px;}
.y179{bottom:266.047800px;}
.yeb{bottom:267.829800px;}
.y23{bottom:272.187300px;}
.y167{bottom:272.215800px;}
.y153{bottom:272.779800px;}
.y102{bottom:274.296300px;}
.y278{bottom:275.283300px;}
.y1f0{bottom:275.671650px;}
.y1b6{bottom:275.673150px;}
.y228{bottom:277.342050px;}
.yc8{bottom:280.299300px;}
.y69{bottom:280.424850px;}
.y178{bottom:281.046300px;}
.y94{bottom:281.080800px;}
.yea{bottom:282.828300px;}
.y22{bottom:287.185800px;}
.y152{bottom:287.778300px;}
.y277{bottom:288.029550px;}
.y101{bottom:289.294800px;}
.y227{bottom:290.088300px;}
.y1b5{bottom:290.671650px;}
.yc7{bottom:295.297800px;}
.y68{bottom:295.423350px;}
.y177{bottom:296.044800px;}
.y93{bottom:296.079300px;}
.ye9{bottom:297.826800px;}
.y276{bottom:300.775800px;}
.y21{bottom:302.185800px;}
.y226{bottom:302.834550px;}
.y100{bottom:304.299300px;}
.y166{bottom:305.973300px;}
.y1ef{bottom:308.673150px;}
.yc6{bottom:310.296300px;}
.y67{bottom:310.421850px;}
.y176{bottom:311.056800px;}
.y92{bottom:311.077800px;}
.ye8{bottom:312.825300px;}
.y275{bottom:313.522050px;}
.y225{bottom:315.580800px;}
.y20{bottom:317.187300px;}
.y151{bottom:317.941800px;}
.yff{bottom:319.297800px;}
.y1b4{bottom:320.739900px;}
.y165{bottom:323.410800px;}
.y1ee{bottom:323.673150px;}
.yc5{bottom:325.294800px;}
.y66{bottom:325.420350px;}
.y175{bottom:326.055300px;}
.y91{bottom:326.076300px;}
.y274{bottom:326.268300px;}
.ye7{bottom:327.823800px;}
.y224{bottom:328.327050px;}
.y1f{bottom:332.185800px;}
.yfe{bottom:334.296300px;}
.y150{bottom:335.382300px;}
.y1b3{bottom:335.738400px;}
.y1ed{bottom:338.673150px;}
.y273{bottom:339.014550px;}
.yc4{bottom:340.294800px;}
.y65{bottom:340.418850px;}
.y164{bottom:340.848300px;}
.y174{bottom:341.053800px;}
.y223{bottom:341.073300px;}
.y90{bottom:341.074800px;}
.ye6{bottom:342.822300px;}
.y1e{bottom:347.187300px;}
.yfd{bottom:349.294800px;}
.y1b2{bottom:350.736900px;}
.y272{bottom:351.760800px;}
.y14d{bottom:352.822800px;}
.y1ec{bottom:353.685150px;}
.y222{bottom:353.819550px;}
.y163{bottom:354.717300px;}
.yc3{bottom:355.296300px;}
.y64{bottom:355.417350px;}
.y173{bottom:356.052300px;}
.y8f{bottom:356.073300px;}
.ye5{bottom:357.820800px;}
.y1d{bottom:362.185800px;}
.yfc{bottom:364.293300px;}
.y271{bottom:364.507050px;}
.y1b1{bottom:365.735400px;}
.y221{bottom:366.565800px;}
.y1eb{bottom:368.683650px;}
.y14f{bottom:370.252800px;}
.yc2{bottom:370.294800px;}
.y63{bottom:370.415850px;}
.y172{bottom:371.050800px;}
.y8e{bottom:371.071800px;}
.y162{bottom:372.157800px;}
.ye4{bottom:372.819300px;}
.y1c{bottom:377.187300px;}
.y270{bottom:377.253300px;}
.y220{bottom:379.312050px;}
.y1b0{bottom:380.733900px;}
.y161{bottom:383.403300px;}
.y1ea{bottom:383.682150px;}
.y62{bottom:385.414350px;}
.y171{bottom:386.049300px;}
.y14e{bottom:387.693300px;}
.ye3{bottom:387.822300px;}
.yc1{bottom:389.883300px;}
.y26f{bottom:389.999550px;}
.y21f{bottom:392.058300px;}
.y1b{bottom:392.185800px;}
.y1af{bottom:395.736900px;}
.y1e9{bottom:398.680650px;}
.yc0{bottom:400.294800px;}
.y8d{bottom:400.326300px;}
.y61{bottom:400.412850px;}
.y170{bottom:401.047800px;}
.y26e{bottom:402.745800px;}
.ye2{bottom:402.820800px;}
.y21e{bottom:404.804550px;}
.y14c{bottom:405.133800px;}
.y1a{bottom:407.223300px;}
.y1ae{bottom:410.735400px;}
.y1e8{bottom:413.679150px;}
.y14b{bottom:413.859300px;}
.ybf{bottom:415.296300px;}
.y8c{bottom:415.324800px;}
.y60{bottom:415.411350px;}
.y26d{bottom:415.492050px;}
.y112{bottom:416.035650px;}
.y16f{bottom:416.046300px;}
.y21d{bottom:417.550800px;}
.ye1{bottom:417.819300px;}
.y19{bottom:422.221800px;}
.y1ad{bottom:425.733900px;}
.y2a8{bottom:427.063500px;}
.y26c{bottom:428.238300px;}
.y1e7{bottom:428.677650px;}
.ybe{bottom:430.294800px;}
.y21c{bottom:430.297050px;}
.y8b{bottom:430.323300px;}
.y5f{bottom:430.409850px;}
.y111{bottom:431.034150px;}
.y16e{bottom:431.044800px;}
.y148{bottom:431.299800px;}
.ye0{bottom:432.820800px;}
.y18{bottom:437.220300px;}
.y14a{bottom:440.014800px;}
.y1ac{bottom:440.733900px;}
.y26b{bottom:440.984550px;}
.y2a7{bottom:442.062000px;}
.y160{bottom:442.860450px;}
.y21b{bottom:443.043300px;}
.y1e6{bottom:443.676150px;}
.ybd{bottom:445.294800px;}
.y8a{bottom:445.321800px;}
.y5e{bottom:445.408350px;}
.y110{bottom:446.032650px;}
.y16d{bottom:446.043300px;}
.ydf{bottom:447.819300px;}
.y26a{bottom:453.730800px;}
.y1ab{bottom:455.732400px;}
.y21a{bottom:455.793300px;}
.y2a6{bottom:457.060500px;}
.y149{bottom:457.455300px;}
.y15f{bottom:457.858950px;}
.y1e5{bottom:458.674650px;}
.ybc{bottom:460.294800px;}
.y89{bottom:460.320300px;}
.y5d{bottom:460.406850px;}
.yde{bottom:462.817800px;}
.y269{bottom:466.477050px;}
.y1aa{bottom:470.732400px;}
.y2a5{bottom:472.059000px;}
.y1e4{bottom:473.673150px;}
.y147{bottom:474.895800px;}
.ybb{bottom:475.294800px;}
.y88{bottom:475.318800px;}
.y5c{bottom:475.405350px;}
.ydd{bottom:477.817800px;}
.y16c{bottom:479.047800px;}
.y268{bottom:479.223300px;}
.y146{bottom:483.621300px;}
.y17{bottom:484.470300px;}
.y2a4{bottom:487.057500px;}
.y1e3{bottom:488.676150px;}
.y219{bottom:488.794800px;}
.yba{bottom:490.293300px;}
.y87{bottom:490.317300px;}
.y267{bottom:491.969550px;}
.y16b{bottom:494.046300px;}
.y1a9{bottom:500.799300px;}
.y16{bottom:500.967300px;}
.y143{bottom:501.061800px;}
.y2a3{bottom:502.056000px;}
.y1e2{bottom:503.674650px;}
.y218{bottom:503.797800px;}
.y5b{bottom:504.608250px;}
.y266{bottom:504.715800px;}
.y86{bottom:505.315800px;}
.ydc{bottom:509.044800px;}
.y145{bottom:509.776800px;}
.y1a8{bottom:515.797800px;}
.y2a2{bottom:517.054500px;}
.y265{bottom:517.462050px;}
.y15{bottom:517.464300px;}
.y1e1{bottom:518.673150px;}
.y217{bottom:518.796300px;}
.y5a{bottom:519.606750px;}
.y85{bottom:520.314300px;}
.y16a{bottom:524.046300px;}
.ydb{bottom:524.047800px;}
.y144{bottom:527.217300px;}
.y264{bottom:530.208300px;}
.y1a7{bottom:530.796300px;}
.y2a1{bottom:532.053000px;}
.y1e0{bottom:533.674650px;}
.y216{bottom:533.794800px;}
.y14{bottom:533.961300px;}
.y59{bottom:534.605250px;}
.y84{bottom:535.312800px;}
.y169{bottom:539.044800px;}
.yda{bottom:539.046300px;}
.yd7{bottom:539.875650px;}
.y263{bottom:542.954550px;}
.y142{bottom:544.657800px;}
.y1a6{bottom:545.794800px;}
.y2a0{bottom:547.051500px;}
.y1df{bottom:548.673150px;}
.y215{bottom:548.796300px;}
.y58{bottom:549.603750px;}
.y83{bottom:550.311300px;}
.y13{bottom:550.458300px;}
.yd9{bottom:554.044800px;}
.yd6{bottom:554.874150px;}
.y262{bottom:555.700800px;}
.y141{bottom:555.903300px;}
.y1a5{bottom:560.800800px;}
.y29f{bottom:562.050000px;}
.y1de{bottom:563.673150px;}
.y214{bottom:563.794800px;}
.y57{bottom:564.602250px;}
.y82{bottom:565.309800px;}
.y12{bottom:566.955300px;}
.y261{bottom:568.447050px;}
.yd8{bottom:569.043300px;}
.yd5{bottom:569.872650px;}
.y1a4{bottom:575.799300px;}
.y1dd{bottom:578.671650px;}
.y213{bottom:578.803800px;}
.y56{bottom:579.600750px;}
.y81{bottom:580.308300px;}
.y260{bottom:581.193300px;}
.y11{bottom:583.452300px;}
.y29e{bottom:583.804500px;}
.y1a3{bottom:590.797800px;}
.y212{bottom:593.802300px;}
.y25f{bottom:593.939550px;}
.y55{bottom:594.599250px;}
.y80{bottom:595.306800px;}
.y29d{bottom:598.803000px;}
.y10{bottom:599.949300px;}
.y140{bottom:602.233800px;}
.y1a2{bottom:605.796300px;}
.y25e{bottom:606.685800px;}
.y1dc{bottom:608.744400px;}
.y211{bottom:608.800800px;}
.y54{bottom:609.599250px;}
.y7f{bottom:610.305300px;}
.yf{bottom:616.446300px;}
.y13f{bottom:617.232300px;}
.y25d{bottom:619.432050px;}
.y29c{bottom:620.551500px;}
.y1a1{bottom:620.794800px;}
.y1db{bottom:623.742900px;}
.y210{bottom:623.799300px;}
.y7e{bottom:625.303800px;}
.y188{bottom:627.660450px;}
.yfb{bottom:632.103450px;}
.y25c{bottom:632.178300px;}
.y13e{bottom:632.230800px;}
.ye{bottom:632.943300px;}
.y1a0{bottom:635.802300px;}
.y1da{bottom:638.741400px;}
.y20f{bottom:638.797800px;}
.y53{bottom:638.812800px;}
.y7d{bottom:640.302300px;}
.y29b{bottom:642.300000px;}
.y187{bottom:642.660450px;}
.y25b{bottom:644.924550px;}
.yfa{bottom:647.101950px;}
.yd{bottom:649.440300px;}
.y19f{bottom:650.800800px;}
.y1d9{bottom:653.739900px;}
.y20e{bottom:653.796300px;}
.y52{bottom:653.811300px;}
.y7c{bottom:655.300800px;}
.y29a{bottom:657.300000px;}
.y186{bottom:657.658950px;}
.y25a{bottom:657.670800px;}
.yf9{bottom:662.100450px;}
.y13d{bottom:662.418300px;}
.y19e{bottom:665.799300px;}
.yc{bottom:665.937300px;}
.y1d8{bottom:668.738400px;}
.y20d{bottom:668.794800px;}
.y51{bottom:668.809800px;}
.y7b{bottom:670.299300px;}
.y259{bottom:670.417050px;}
.yf8{bottom:677.098950px;}
.y13c{bottom:679.855800px;}
.y19d{bottom:680.797800px;}
.yb{bottom:682.434300px;}
.y139{bottom:682.954050px;}
.y258{bottom:683.163300px;}
.y1d7{bottom:683.736900px;}
.y20c{bottom:683.796300px;}
.y50{bottom:683.808300px;}
.y7a{bottom:685.297800px;}
.y299{bottom:688.637100px;}
.y138{bottom:694.199550px;}
.y19c{bottom:695.796300px;}
.y257{bottom:695.909550px;}
.y13b{bottom:697.293300px;}
.y1d6{bottom:698.735400px;}
.y20b{bottom:698.794800px;}
.y4f{bottom:698.806800px;}
.y79{bottom:700.296300px;}
.y298{bottom:703.635600px;}
.y256{bottom:708.655800px;}
.y19b{bottom:710.794800px;}
.ya{bottom:712.434300px;}
.y1d5{bottom:713.733900px;}
.y20a{bottom:713.796300px;}
.y4e{bottom:713.805300px;}
.y13a{bottom:714.737550px;}
.y78{bottom:715.294800px;}
.y297{bottom:718.634100px;}
.y255{bottom:721.402050px;}
.y19a{bottom:725.796300px;}
.y1d4{bottom:728.735400px;}
.y209{bottom:728.794800px;}
.y4d{bottom:728.803800px;}
.y77{bottom:730.293300px;}
.y9{bottom:730.434300px;}
.y137{bottom:732.165300px;}
.y296{bottom:733.632600px;}
.y254{bottom:734.148300px;}
.y199{bottom:740.794800px;}
.y1d3{bottom:743.733900px;}
.y208{bottom:743.796300px;}
.y4c{bottom:743.802300px;}
.y253{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y295{bottom:748.631100px;}
.y136{bottom:749.602800px;}
.y198{bottom:755.796300px;}
.y32{bottom:757.145400px;}
.y133{bottom:758.299800px;}
.y1d2{bottom:758.741550px;}
.y207{bottom:758.794800px;}
.y4b{bottom:758.800800px;}
.y252{bottom:759.640800px;}
.y294{bottom:763.631100px;}
.y135{bottom:767.040300px;}
.y197{bottom:770.794800px;}
.y251{bottom:772.387050px;}
.y1d1{bottom:773.740050px;}
.y206{bottom:773.797800px;}
.y4a{bottom:773.799300px;}
.y31{bottom:778.144650px;}
.y7{bottom:781.416300px;}
.y134{bottom:784.455300px;}
.y250{bottom:785.133300px;}
.y196{bottom:785.793300px;}
.yb9{bottom:787.858800px;}
.y1d0{bottom:788.738550px;}
.y205{bottom:788.796300px;}
.y49{bottom:788.797800px;}
.y293{bottom:794.975700px;}
.y24f{bottom:797.879550px;}
.y30{bottom:799.143900px;}
.y132{bottom:801.895800px;}
.yb8{bottom:802.857300px;}
.y1cf{bottom:803.737050px;}
.y204{bottom:803.794800px;}
.y48{bottom:803.796300px;}
.y292{bottom:809.974200px;}
.y24e{bottom:810.625800px;}
.yb7{bottom:817.855800px;}
.y1ce{bottom:818.735550px;}
.y47{bottom:818.794800px;}
.y203{bottom:818.803800px;}
.y195{bottom:818.808300px;}
.y131{bottom:819.336300px;}
.y12e{bottom:822.433800px;}
.y24d{bottom:823.372050px;}
.y291{bottom:824.972700px;}
.y6{bottom:826.422300px;}
.y12d{bottom:833.679300px;}
.y1cd{bottom:833.734050px;}
.y46{bottom:833.796300px;}
.y202{bottom:833.802300px;}
.y194{bottom:833.806800px;}
.y24c{bottom:836.118300px;}
.y130{bottom:836.776800px;}
.y290{bottom:839.971200px;}
.yb6{bottom:848.011800px;}
.y1cc{bottom:848.734050px;}
.y45{bottom:848.794800px;}
.y201{bottom:848.800800px;}
.y193{bottom:848.805300px;}
.y24b{bottom:848.864550px;}
.y12f{bottom:854.217300px;}
.y28f{bottom:854.969700px;}
.yb5{bottom:856.737300px;}
.y24a{bottom:861.610800px;}
.y1cb{bottom:863.734050px;}
.y44{bottom:863.796300px;}
.y200{bottom:863.799300px;}
.y192{bottom:863.803800px;}
.yb2{bottom:868.560300px;}
.y28e{bottom:869.968200px;}
.y5{bottom:871.428300px;}
.y12c{bottom:871.647300px;}
.y249{bottom:874.357050px;}
.y1ca{bottom:878.734050px;}
.y43{bottom:878.794800px;}
.y1ff{bottom:878.797800px;}
.y191{bottom:878.802300px;}
.yb1{bottom:879.805800px;}
.yb4{bottom:882.892800px;}
.y28d{bottom:884.966700px;}
.y248{bottom:887.103300px;}
.y12b{bottom:889.087800px;}
.yb3{bottom:891.618300px;}
.y1c9{bottom:893.737050px;}
.y42{bottom:893.796300px;}
.y190{bottom:893.800800px;}
.y128{bottom:897.813300px;}
.y247{bottom:899.849550px;}
.y28c{bottom:899.965200px;}
.y12a{bottom:906.528300px;}
.y1c8{bottom:908.735550px;}
.y41{bottom:908.794800px;}
.y18f{bottom:908.799300px;}
.y246{bottom:912.595800px;}
.y28b{bottom:914.963700px;}
.y4{bottom:916.434300px;}
.yb0{bottom:917.773800px;}
.y1c7{bottom:923.734050px;}
.y40{bottom:923.794800px;}
.y18e{bottom:923.797800px;}
.y1fe{bottom:923.799300px;}
.y129{bottom:923.968800px;}
.y245{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.yaf{bottom:926.499300px;}
.y28a{bottom:929.962200px;}
.y244{bottom:938.088300px;}
.yac{bottom:938.322300px;}
.y1c6{bottom:938.732550px;}
.y18d{bottom:938.796300px;}
.y1fd{bottom:938.797800px;}
.y3f{bottom:938.799300px;}
.y127{bottom:941.409300px;}
.y289{bottom:944.962200px;}
.yab{bottom:949.567800px;}
.y243{bottom:950.834550px;}
.yae{bottom:952.654800px;}
.y18c{bottom:953.794800px;}
.y1fc{bottom:953.796300px;}
.y3e{bottom:953.797800px;}
.y126{bottom:958.849800px;}
.yad{bottom:961.380300px;}
.y123{bottom:961.947300px;}
.y242{bottom:963.580800px;}
.y1fb{bottom:968.794800px;}
.y3d{bottom:968.796300px;}
.y1c5{bottom:968.805300px;}
.y122{bottom:973.192800px;}
.y125{bottom:976.290300px;}
.y241{bottom:976.327050px;}
.y3c{bottom:983.794800px;}
.y1fa{bottom:983.797800px;}
.y1c4{bottom:983.803800px;}
.yaa{bottom:987.535800px;}
.y240{bottom:989.073300px;}
.y124{bottom:993.730800px;}
.y3b{bottom:998.796300px;}
.y18b{bottom:998.802300px;}
.y23f{bottom:1001.819550px;}
.ya9{bottom:1004.976300px;}
.y121{bottom:1011.160800px;}
.ya8{bottom:1013.701800px;}
.y3a{bottom:1013.794800px;}
.y18a{bottom:1013.800800px;}
.y23e{bottom:1014.565800px;}
.y23d{bottom:1027.312050px;}
.y120{bottom:1028.601300px;}
.y39{bottom:1028.794800px;}
.y189{bottom:1028.799300px;}
.y11d{bottom:1037.326800px;}
.ya7{bottom:1039.857300px;}
.y23c{bottom:1040.058300px;}
.y38{bottom:1043.797800px;}
.y11f{bottom:1046.041800px;}
.ya6{bottom:1048.582800px;}
.y23b{bottom:1052.804550px;}
.ya4{bottom:1057.297800px;}
.y37{bottom:1058.796300px;}
.y11e{bottom:1063.482300px;}
.y23a{bottom:1065.550800px;}
.y36{bottom:1073.794800px;}
.ya5{bottom:1074.738300px;}
.y239{bottom:1078.297050px;}
.y11c{bottom:1080.922800px;}
.y35{bottom:1088.793300px;}
.y238{bottom:1091.043300px;}
.ya3{bottom:1092.168300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.he{height:23.842749px;}
.h21{height:27.258000px;}
.hb{height:31.194668px;}
.h16{height:35.046000px;}
.h12{height:35.411133px;}
.hd{height:36.681152px;}
.h8{height:38.838867px;}
.h10{height:41.134749px;}
.hf{height:41.158749px;}
.h18{height:41.538000px;}
.h20{height:41.550000px;}
.h1f{height:41.640000px;}
.h19{height:42.084000px;}
.h17{height:43.008000px;}
.h4{height:44.233154px;}
.h26{height:44.505000px;}
.h27{height:45.090000px;}
.h3{height:45.744000px;}
.h25{height:46.080000px;}
.h24{height:47.469727px;}
.hc{height:48.510668px;}
.h11{height:48.534668px;}
.h9{height:51.416016px;}
.ha{height:53.406000px;}
.h1e{height:54.010800px;}
.h1d{height:54.102000px;}
.h14{height:54.108000px;}
.h1c{height:55.296000px;}
.h2{height:57.099609px;}
.h7{height:57.128906px;}
.h15{height:62.841797px;}
.h1b{height:76.398000px;}
.h22{height:76.908000px;}
.h23{height:76.938000px;}
.h1a{height:76.944000px;}
.h13{height:77.677734px;}
.h6{height:112.201172px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.078250px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.x8{left:238.143900px;}
.x5{left:251.450400px;}
.x11{left:300.594600px;}
.xd{left:312.756900px;}
.xc{left:326.522400px;}
.x9{left:334.628400px;}
.xe{left:564.777900px;}
.xa{left:567.476400px;}
.x3{left:584.586600px;}
.xf{left:816.003600px;}
.x10{left:817.278150px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v7{vertical-align:-25.920000pt;}
.vc{vertical-align:-20.160000pt;}
.v2{vertical-align:-18.133333pt;}
.v4{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.vb{vertical-align:-12.693333pt;}
.v6{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.600000pt;}
.va{vertical-align:12.784000pt;}
.v3{vertical-align:16.181333pt;}
.v1{vertical-align:18.133333pt;}
.v8{vertical-align:30.986667pt;}
.lsa0{letter-spacing:-3.000000pt;}
.lsa6{letter-spacing:-2.920000pt;}
.ls80{letter-spacing:-1.728000pt;}
.lsaa{letter-spacing:-1.320000pt;}
.ls59{letter-spacing:-1.248000pt;}
.lsa5{letter-spacing:-1.160000pt;}
.ls29{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.853333pt;}
.lsa4{letter-spacing:-0.760000pt;}
.ls65{letter-spacing:-0.746667pt;}
.ls40{letter-spacing:-0.720000pt;}
.lsa9{letter-spacing:-0.680000pt;}
.lsa7{letter-spacing:-0.600000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.528000pt;}
.ls63{letter-spacing:-0.522667pt;}
.lsab{letter-spacing:-0.520000pt;}
.ls64{letter-spacing:-0.485333pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.448000pt;}
.ls96{letter-spacing:-0.440000pt;}
.ls36{letter-spacing:-0.432000pt;}
.lsa2{letter-spacing:-0.400000pt;}
.ls43{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls5e{letter-spacing:-0.336000pt;}
.ls99{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.312000pt;}
.ls5c{letter-spacing:-0.288000pt;}
.ls6d{letter-spacing:-0.280800pt;}
.ls97{letter-spacing:-0.280000pt;}
.ls42{letter-spacing:-0.249600pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls68{letter-spacing:-0.218400pt;}
.ls98{letter-spacing:-0.200000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls62{letter-spacing:-0.186667pt;}
.ls1a{letter-spacing:-0.181333pt;}
.ls92{letter-spacing:-0.160000pt;}
.ls44{letter-spacing:-0.156000pt;}
.ls48{letter-spacing:-0.149333pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls57{letter-spacing:-0.124800pt;}
.ls46{letter-spacing:-0.112000pt;}
.ls83{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.093600pt;}
.ls1c{letter-spacing:-0.090667pt;}
.ls94{letter-spacing:-0.080000pt;}
.ls69{letter-spacing:-0.072800pt;}
.ls2f{letter-spacing:-0.062400pt;}
.ls28{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.045333pt;}
.ls95{letter-spacing:-0.040000pt;}
.ls2b{letter-spacing:-0.031200pt;}
.ls11{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000267pt;}
.ls5{letter-spacing:0.008533pt;}
.ls3{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.012267pt;}
.ls41{letter-spacing:0.031200pt;}
.lsa1{letter-spacing:0.040000pt;}
.ls16{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.062400pt;}
.ls7f{letter-spacing:0.074133pt;}
.lsa3{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.090667pt;}
.ls8e{letter-spacing:0.093600pt;}
.ls7{letter-spacing:0.096000pt;}
.ls6f{letter-spacing:0.106667pt;}
.ls93{letter-spacing:0.120000pt;}
.ls17{letter-spacing:0.124800pt;}
.ls38{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.156000pt;}
.ls77{letter-spacing:0.159467pt;}
.ls6a{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.162667pt;}
.lsa{letter-spacing:0.178533pt;}
.lsd{letter-spacing:0.182800pt;}
.ls81{letter-spacing:0.187200pt;}
.ls8{letter-spacing:0.192000pt;}
.ls89{letter-spacing:0.200000pt;}
.ls51{letter-spacing:0.207467pt;}
.ls4a{letter-spacing:0.216000pt;}
.ls30{letter-spacing:0.218400pt;}
.ls4f{letter-spacing:0.219200pt;}
.ls8a{letter-spacing:0.220000pt;}
.ls67{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.240000pt;}
.ls82{letter-spacing:0.249600pt;}
.ls5b{letter-spacing:0.254400pt;}
.ls10{letter-spacing:0.259067pt;}
.ls23{letter-spacing:0.264000pt;}
.ls9{letter-spacing:0.272000pt;}
.ls91{letter-spacing:0.280000pt;}
.ls8f{letter-spacing:0.280800pt;}
.ls50{letter-spacing:0.287467pt;}
.ls33{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.312000pt;}
.lsac{letter-spacing:0.316000pt;}
.ls70{letter-spacing:0.316800pt;}
.lse{letter-spacing:0.317333pt;}
.ls8c{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.336000pt;}
.ls54{letter-spacing:0.337333pt;}
.ls55{letter-spacing:0.337867pt;}
.ls3a{letter-spacing:0.342400pt;}
.ls3b{letter-spacing:0.342933pt;}
.ls53{letter-spacing:0.343200pt;}
.ls3d{letter-spacing:0.347733pt;}
.ls9b{letter-spacing:0.360000pt;}
.ls7b{letter-spacing:0.362933pt;}
.ls76{letter-spacing:0.374400pt;}
.ls73{letter-spacing:0.377333pt;}
.ls25{letter-spacing:0.384000pt;}
.lsa8{letter-spacing:0.400000pt;}
.ls72{letter-spacing:0.405600pt;}
.lsf{letter-spacing:0.408000pt;}
.lsc{letter-spacing:0.412667pt;}
.ls37{letter-spacing:0.432000pt;}
.ls9a{letter-spacing:0.436000pt;}
.ls6e{letter-spacing:0.436800pt;}
.ls8b{letter-spacing:0.440000pt;}
.ls3c{letter-spacing:0.457067pt;}
.ls22{letter-spacing:0.470400pt;}
.ls39{letter-spacing:0.475200pt;}
.ls26{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.484800pt;}
.ls6b{letter-spacing:0.492267pt;}
.ls1d{letter-spacing:0.498667pt;}
.ls2d{letter-spacing:0.499200pt;}
.ls9e{letter-spacing:0.500000pt;}
.ls4b{letter-spacing:0.505067pt;}
.ls9c{letter-spacing:0.520000pt;}
.ls21{letter-spacing:0.528000pt;}
.ls75{letter-spacing:0.533333pt;}
.ls71{letter-spacing:0.551467pt;}
.ls90{letter-spacing:0.560000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls5d{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.598933pt;}
.ls4c{letter-spacing:0.610667pt;}
.ls5a{letter-spacing:0.624000pt;}
.lsb{letter-spacing:0.634667pt;}
.ls24{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.672000pt;}
.ls27{letter-spacing:0.720000pt;}
.ls84{letter-spacing:0.746667pt;}
.ls7d{letter-spacing:0.758933pt;}
.ls7c{letter-spacing:0.759467pt;}
.ls4e{letter-spacing:0.760000pt;}
.ls85{letter-spacing:0.768000pt;}
.ls52{letter-spacing:0.782400pt;}
.ls79{letter-spacing:0.816000pt;}
.ls7e{letter-spacing:0.833600pt;}
.ls88{letter-spacing:0.837333pt;}
.ls86{letter-spacing:0.864000pt;}
.lsad{letter-spacing:0.912000pt;}
.ls8d{letter-spacing:0.960000pt;}
.ls9d{letter-spacing:1.068000pt;}
.ls35{letter-spacing:1.104000pt;}
.ls34{letter-spacing:1.120000pt;}
.ls78{letter-spacing:1.144533pt;}
.ls45{letter-spacing:1.152000pt;}
.ls7a{letter-spacing:1.316267pt;}
.ls87{letter-spacing:1.728000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls9f{letter-spacing:4.106667pt;}
.ls74{letter-spacing:5.440000pt;}
.ls5f{letter-spacing:46.649333pt;}
.ls60{letter-spacing:64.569333pt;}
.ls3e{letter-spacing:304.005333pt;}
.wsb5{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws32{word-spacing:-12.085333pt;}
.ws5a{word-spacing:-12.000000pt;}
.ws55{word-spacing:-11.568000pt;}
.ws37{word-spacing:-11.520000pt;}
.ws76{word-spacing:-11.376000pt;}
.wsc1{word-spacing:-11.280000pt;}
.ws39{word-spacing:-11.232000pt;}
.ws7c{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws38{word-spacing:-11.040000pt;}
.ws75{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.wsad{word-spacing:-10.944000pt;}
.ws35{word-spacing:-10.896000pt;}
.ws79{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws7d{word-spacing:-10.800000pt;}
.ws2d{word-spacing:-10.752000pt;}
.wsb3{word-spacing:-10.704000pt;}
.wsca{word-spacing:-10.608000pt;}
.ws33{word-spacing:-10.560000pt;}
.ws34{word-spacing:-10.512000pt;}
.ws36{word-spacing:-10.464000pt;}
.ws7b{word-spacing:-10.416000pt;}
.ws56{word-spacing:-10.272000pt;}
.wse0{word-spacing:-9.180000pt;}
.wsdf{word-spacing:-9.160000pt;}
.ws9{word-spacing:-9.066667pt;}
.wsde{word-spacing:-9.000000pt;}
.wscc{word-spacing:-8.880000pt;}
.wsf8{word-spacing:-8.840000pt;}
.wse5{word-spacing:-8.800000pt;}
.wse2{word-spacing:-8.760000pt;}
.wscb{word-spacing:-8.640000pt;}
.wsdb{word-spacing:-8.600000pt;}
.wsf5{word-spacing:-8.560000pt;}
.ws65{word-spacing:-8.474667pt;}
.ws5f{word-spacing:-8.176000pt;}
.ws5d{word-spacing:-8.101333pt;}
.ws66{word-spacing:-8.026667pt;}
.wse1{word-spacing:-8.000000pt;}
.ws83{word-spacing:-7.800000pt;}
.ws9c{word-spacing:-7.728000pt;}
.ws2e{word-spacing:-7.581600pt;}
.wsb2{word-spacing:-7.488000pt;}
.wsb4{word-spacing:-7.456800pt;}
.wsc3{word-spacing:-7.425600pt;}
.ws2f{word-spacing:-7.394400pt;}
.wsc9{word-spacing:-7.363200pt;}
.wsc4{word-spacing:-7.332000pt;}
.ws31{word-spacing:-7.300800pt;}
.wsc2{word-spacing:-7.269600pt;}
.ws77{word-spacing:-7.238400pt;}
.ws7{word-spacing:-7.207200pt;}
.wsc8{word-spacing:-7.176000pt;}
.ws6{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws57{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws2b{word-spacing:-7.051200pt;}
.ws30{word-spacing:-7.020000pt;}
.ws2c{word-spacing:-6.988800pt;}
.ws78{word-spacing:-6.957600pt;}
.ws59{word-spacing:-6.926400pt;}
.wsae{word-spacing:-6.864000pt;}
.ws58{word-spacing:-6.832800pt;}
.wsaf{word-spacing:-6.801600pt;}
.ws7a{word-spacing:-6.770400pt;}
.ws8{word-spacing:-5.893333pt;}
.wsa7{word-spacing:-5.508533pt;}
.wsb6{word-spacing:-5.440000pt;}
.ws69{word-spacing:-4.896000pt;}
.wsd{word-spacing:-4.746667pt;}
.wsc7{word-spacing:-4.560000pt;}
.wse3{word-spacing:-4.106667pt;}
.ws72{word-spacing:-3.808000pt;}
.ws73{word-spacing:-3.658667pt;}
.wsf{word-spacing:-3.413333pt;}
.wsa1{word-spacing:-3.360000pt;}
.wsc{word-spacing:-2.912000pt;}
.wse{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.632000pt;}
.ws7f{word-spacing:-1.584000pt;}
.ws6d{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.488000pt;}
.wsf7{word-spacing:-1.480000pt;}
.ws6b{word-spacing:-1.440000pt;}
.ws18{word-spacing:-1.392000pt;}
.ws1e{word-spacing:-1.360000pt;}
.ws7e{word-spacing:-1.344000pt;}
.ws50{word-spacing:-1.296000pt;}
.ws81{word-spacing:-1.248000pt;}
.wsfd{word-spacing:-1.240000pt;}
.wsbc{word-spacing:-1.232000pt;}
.ws3c{word-spacing:-1.200000pt;}
.wsec{word-spacing:-1.160000pt;}
.ws41{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.104000pt;}
.wse9{word-spacing:-1.080000pt;}
.ws74{word-spacing:-1.056000pt;}
.wsdd{word-spacing:-1.040000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws3a{word-spacing:-0.960000pt;}
.wsd3{word-spacing:-0.920000pt;}
.wsbf{word-spacing:-0.912000pt;}
.ws84{word-spacing:-0.864000pt;}
.ws71{word-spacing:-0.858667pt;}
.wseb{word-spacing:-0.840000pt;}
.ws70{word-spacing:-0.821333pt;}
.ws100{word-spacing:-0.816000pt;}
.wsba{word-spacing:-0.768000pt;}
.wsef{word-spacing:-0.760000pt;}
.wscd{word-spacing:-0.746667pt;}
.ws1c{word-spacing:-0.720000pt;}
.wsed{word-spacing:-0.680000pt;}
.ws67{word-spacing:-0.672000pt;}
.ws4b{word-spacing:-0.640000pt;}
.ws23{word-spacing:-0.634667pt;}
.ws43{word-spacing:-0.624000pt;}
.wsda{word-spacing:-0.600000pt;}
.ws88{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.576000pt;}
.wsbd{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.528000pt;}
.wsea{word-spacing:-0.520000pt;}
.ws26{word-spacing:-0.498667pt;}
.ws47{word-spacing:-0.480000pt;}
.wse7{word-spacing:-0.440000pt;}
.ws1d{word-spacing:-0.432000pt;}
.ws27{word-spacing:-0.408000pt;}
.wsb7{word-spacing:-0.405600pt;}
.wsfc{word-spacing:-0.400000pt;}
.ws6a{word-spacing:-0.384000pt;}
.wsd0{word-spacing:-0.374400pt;}
.wsd5{word-spacing:-0.360000pt;}
.ws1b{word-spacing:-0.336000pt;}
.ws25{word-spacing:-0.317333pt;}
.ws3f{word-spacing:-0.312000pt;}
.ws44{word-spacing:-0.288000pt;}
.wsfb{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.272000pt;}
.ws4e{word-spacing:-0.240000pt;}
.ws86{word-spacing:-0.218400pt;}
.wse6{word-spacing:-0.200000pt;}
.ws52{word-spacing:-0.192000pt;}
.wsd2{word-spacing:-0.187200pt;}
.ws20{word-spacing:-0.181333pt;}
.wsb0{word-spacing:-0.160000pt;}
.wsb9{word-spacing:-0.156000pt;}
.ws6e{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.124800pt;}
.wsb8{word-spacing:-0.106667pt;}
.ws49{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.090667pt;}
.wsdc{word-spacing:-0.080000pt;}
.wsb1{word-spacing:-0.062400pt;}
.ws4a{word-spacing:-0.048000pt;}
.wsd8{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.031200pt;}
.wse8{word-spacing:0.040000pt;}
.ws21{word-spacing:0.045333pt;}
.ws51{word-spacing:0.048000pt;}
.ws42{word-spacing:0.062400pt;}
.wsd6{word-spacing:0.080000pt;}
.ws22{word-spacing:0.090667pt;}
.ws14{word-spacing:0.093600pt;}
.ws3e{word-spacing:0.096000pt;}
.wsc6{word-spacing:0.106667pt;}
.wsf4{word-spacing:0.120000pt;}
.wsbb{word-spacing:0.124800pt;}
.ws3d{word-spacing:0.144000pt;}
.wsf9{word-spacing:0.160000pt;}
.wsa0{word-spacing:0.186667pt;}
.ws80{word-spacing:0.192000pt;}
.wsd9{word-spacing:0.200000pt;}
.ws46{word-spacing:0.240000pt;}
.wsd4{word-spacing:0.280000pt;}
.ws13{word-spacing:0.288000pt;}
.wsd7{word-spacing:0.320000pt;}
.wsbe{word-spacing:0.336000pt;}
.ws6c{word-spacing:0.384000pt;}
.wsf2{word-spacing:0.400000pt;}
.ws87{word-spacing:0.432000pt;}
.wsf0{word-spacing:0.440000pt;}
.ws85{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.528000pt;}
.wsf3{word-spacing:0.560000pt;}
.ws40{word-spacing:0.576000pt;}
.ws45{word-spacing:0.624000pt;}
.ws68{word-spacing:0.672000pt;}
.wsf6{word-spacing:0.680000pt;}
.ws54{word-spacing:0.720000pt;}
.ws24{word-spacing:0.725333pt;}
.ws53{word-spacing:0.768000pt;}
.wsb{word-spacing:0.853333pt;}
.ws89{word-spacing:0.912000pt;}
.wsc0{word-spacing:0.960000pt;}
.wsce{word-spacing:1.008000pt;}
.ws101{word-spacing:1.056000pt;}
.ws102{word-spacing:1.104000pt;}
.wsee{word-spacing:1.160000pt;}
.wsfe{word-spacing:1.200000pt;}
.wscf{word-spacing:1.248000pt;}
.wsfa{word-spacing:1.280000pt;}
.wsc5{word-spacing:1.296000pt;}
.ws4c{word-spacing:1.344000pt;}
.ws48{word-spacing:1.584000pt;}
.wsff{word-spacing:1.728000pt;}
.ws6f{word-spacing:1.776000pt;}
.wsf1{word-spacing:2.920000pt;}
.wse4{word-spacing:3.000000pt;}
.wsd1{word-spacing:3.264000pt;}
.ws82{word-spacing:14.352000pt;}
.wsa4{word-spacing:43.045333pt;}
.ws5c{word-spacing:44.053333pt;}
.wsa3{word-spacing:46.965333pt;}
.ws8e{word-spacing:49.955733pt;}
.wsa6{word-spacing:53.424000pt;}
.ws8d{word-spacing:54.581333pt;}
.ws5b{word-spacing:55.365333pt;}
.ws9b{word-spacing:58.800000pt;}
.ws96{word-spacing:64.229600pt;}
.wsa9{word-spacing:65.797627pt;}
.ws9a{word-spacing:65.856000pt;}
.ws93{word-spacing:69.962667pt;}
.wsab{word-spacing:71.344000pt;}
.wsa2{word-spacing:80.528000pt;}
.ws5e{word-spacing:81.834667pt;}
.ws95{word-spacing:84.672000pt;}
.wsa8{word-spacing:85.160000pt;}
.ws91{word-spacing:87.882667pt;}
.ws98{word-spacing:88.442667pt;}
.ws63{word-spacing:88.666667pt;}
.ws9f{word-spacing:94.938667pt;}
.wsac{word-spacing:96.905067pt;}
.ws9d{word-spacing:99.157333pt;}
.ws97{word-spacing:102.592000pt;}
.ws99{word-spacing:132.458667pt;}
.ws8f{word-spacing:140.858667pt;}
.wsa5{word-spacing:143.509333pt;}
.ws94{word-spacing:158.778667pt;}
.ws8c{word-spacing:164.752000pt;}
.ws8a{word-spacing:181.477333pt;}
.ws8b{word-spacing:223.253333pt;}
.ws92{word-spacing:236.730667pt;}
.ws90{word-spacing:262.117333pt;}
.ws62{word-spacing:285.226667pt;}
.ws60{word-spacing:288.288000pt;}
.ws9e{word-spacing:314.048000pt;}
.wsaa{word-spacing:368.816000pt;}
.ws61{word-spacing:379.045333pt;}
.ws64{word-spacing:472.005333pt;}
._23{margin-left:-17.850667pt;}
._2{margin-left:-10.705067pt;}
._4{margin-left:-8.764800pt;}
._d{margin-left:-7.646933pt;}
._a{margin-left:-6.333333pt;}
._b{margin-left:-5.333333pt;}
._9{margin-left:-4.010667pt;}
._1{margin-left:-3.009067pt;}
._0{margin-left:-1.578667pt;}
._6{width:1.413333pt;}
._8{width:2.553600pt;}
._5{width:3.600000pt;}
._f{width:4.813867pt;}
._3d{width:5.778667pt;}
._40{width:7.360000pt;}
._3f{width:9.040000pt;}
._3e{width:10.480000pt;}
._3c{width:11.520000pt;}
._22{width:13.706667pt;}
._41{width:15.520000pt;}
._e{width:36.929067pt;}
._3{width:38.089067pt;}
._7{width:39.047467pt;}
._3b{width:41.896533pt;}
._c{width:42.905600pt;}
._27{width:49.994667pt;}
._11{width:54.357333pt;}
._19{width:56.096000pt;}
._18{width:68.666667pt;}
._13{width:72.432000pt;}
._10{width:76.710933pt;}
._2b{width:78.452267pt;}
._39{width:88.128000pt;}
._3a{width:89.066933pt;}
._2e{width:92.778667pt;}
._25{width:96.010667pt;}
._14{width:97.141333pt;}
._15{width:101.136000pt;}
._36{width:103.413333pt;}
._2d{width:105.616000pt;}
._1b{width:108.229333pt;}
._26{width:111.066667pt;}
._2f{width:117.008000pt;}
._20{width:119.056000pt;}
._30{width:121.333333pt;}
._34{width:125.386667pt;}
._2a{width:131.413333pt;}
._35{width:134.885333pt;}
._1a{width:137.648000pt;}
._31{width:142.986667pt;}
._28{width:149.333333pt;}
._37{width:152.218667pt;}
._32{width:155.994667pt;}
._24{width:158.341333pt;}
._38{width:160.384000pt;}
._29{width:167.253333pt;}
._16{width:186.629333pt;}
._33{width:189.232000pt;}
._2c{width:191.856000pt;}
._1d{width:221.696000pt;}
._1e{width:269.973333pt;}
._1c{width:277.237333pt;}
._21{width:295.546667pt;}
._17{width:297.264000pt;}
._1f{width:326.789333pt;}
._12{width:418.298667pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsd{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y2f{bottom:60.723467pt;}
.y76{bottom:60.962533pt;}
.yf7{bottom:62.065600pt;}
.y15e{bottom:62.481600pt;}
.ya2{bottom:63.150933pt;}
.y288{bottom:63.416267pt;}
.y10f{bottom:70.489600pt;}
.y1c3{bottom:71.718800pt;}
.yd4{bottom:72.024000pt;}
.y2e{bottom:74.051467pt;}
.y75{bottom:74.294533pt;}
.y287{bottom:74.746267pt;}
.yf6{bottom:75.397600pt;}
.y15d{bottom:75.813600pt;}
.y185{bottom:76.485600pt;}
.y237{bottom:76.576267pt;}
.y11b{bottom:79.813600pt;}
.ya1{bottom:80.562933pt;}
.y10e{bottom:83.821600pt;}
.y1f9{bottom:85.042800pt;}
.y1c2{bottom:85.050800pt;}
.yd3{bottom:85.357333pt;}
.y286{bottom:86.076267pt;}
.y2d{bottom:87.390133pt;}
.y74{bottom:87.626533pt;}
.y236{bottom:87.906267pt;}
.yf5{bottom:88.729600pt;}
.y15c{bottom:89.145600pt;}
.y184{bottom:89.817600pt;}
.ya0{bottom:89.830933pt;}
.y11a{bottom:93.145600pt;}
.y10d{bottom:97.153600pt;}
.y285{bottom:97.406267pt;}
.y1f8{bottom:98.376133pt;}
.y1c1{bottom:98.382800pt;}
.yd2{bottom:98.710933pt;}
.y235{bottom:99.236267pt;}
.y2c{bottom:100.718133pt;}
.y73{bottom:100.958533pt;}
.yf4{bottom:102.061600pt;}
.y15b{bottom:102.477600pt;}
.y183{bottom:103.156267pt;}
.y9f{bottom:103.162933pt;}
.y119{bottom:106.477600pt;}
.y284{bottom:108.736267pt;}
.y10c{bottom:110.485600pt;}
.y234{bottom:110.566267pt;}
.y1f7{bottom:111.709467pt;}
.y1c0{bottom:111.714800pt;}
.yd1{bottom:112.042933pt;}
.y2b{bottom:114.051467pt;}
.y72{bottom:114.290533pt;}
.yf3{bottom:115.400267pt;}
.y15a{bottom:115.809600pt;}
.y182{bottom:116.488267pt;}
.y9e{bottom:116.494933pt;}
.y118{bottom:119.809600pt;}
.y283{bottom:120.066267pt;}
.y233{bottom:121.896267pt;}
.y10b{bottom:123.817600pt;}
.y1f6{bottom:125.042800pt;}
.y1bf{bottom:125.046800pt;}
.yd0{bottom:125.374933pt;}
.y2a{bottom:127.384800pt;}
.yf2{bottom:128.732267pt;}
.y159{bottom:129.141600pt;}
.y181{bottom:129.820267pt;}
.y9d{bottom:129.826933pt;}
.y282{bottom:131.396267pt;}
.y117{bottom:133.141600pt;}
.y232{bottom:133.226267pt;}
.y10a{bottom:137.162933pt;}
.y1be{bottom:138.378800pt;}
.ycf{bottom:138.706933pt;}
.y29{bottom:140.718133pt;}
.yf1{bottom:142.064267pt;}
.y158{bottom:142.473600pt;}
.y71{bottom:142.610533pt;}
.y281{bottom:142.726267pt;}
.y180{bottom:143.152267pt;}
.y9c{bottom:143.158933pt;}
.y231{bottom:144.556267pt;}
.y116{bottom:146.473600pt;}
.y109{bottom:150.494933pt;}
.y1bd{bottom:151.710800pt;}
.yce{bottom:152.038933pt;}
.y280{bottom:154.056267pt;}
.yf0{bottom:155.396267pt;}
.y157{bottom:155.805600pt;}
.y230{bottom:155.886267pt;}
.y70{bottom:155.942533pt;}
.y17f{bottom:156.484267pt;}
.y9b{bottom:156.490933pt;}
.y28{bottom:157.899467pt;}
.y115{bottom:159.805600pt;}
.y108{bottom:163.826933pt;}
.y1bc{bottom:165.042800pt;}
.ycd{bottom:165.370933pt;}
.y27f{bottom:165.386267pt;}
.y22f{bottom:167.216267pt;}
.y27{bottom:167.384800pt;}
.yef{bottom:168.728267pt;}
.y156{bottom:169.137600pt;}
.y6f{bottom:169.274533pt;}
.y17e{bottom:169.817600pt;}
.y9a{bottom:169.822933pt;}
.y114{bottom:173.137600pt;}
.y27e{bottom:176.716267pt;}
.y107{bottom:177.158933pt;}
.y1f5{bottom:178.381467pt;}
.y1bb{bottom:178.382800pt;}
.y22e{bottom:178.546267pt;}
.y26{bottom:180.718133pt;}
.yee{bottom:182.060267pt;}
.y155{bottom:182.469600pt;}
.y6e{bottom:182.606533pt;}
.y99{bottom:183.154933pt;}
.y17d{bottom:183.158933pt;}
.y113{bottom:186.469600pt;}
.y27d{bottom:188.046267pt;}
.y22d{bottom:189.876267pt;}
.y106{bottom:190.490933pt;}
.y1f4{bottom:191.713467pt;}
.y1ba{bottom:191.714800pt;}
.ycc{bottom:195.826933pt;}
.y6d{bottom:195.938533pt;}
.y98{bottom:196.486933pt;}
.y17c{bottom:196.490933pt;}
.y25{bottom:197.899467pt;}
.y27c{bottom:199.376267pt;}
.y22c{bottom:201.206267pt;}
.y105{bottom:203.822933pt;}
.y1f3{bottom:205.045467pt;}
.y1b9{bottom:205.046800pt;}
.ycb{bottom:209.158933pt;}
.y6c{bottom:209.270533pt;}
.y97{bottom:209.818933pt;}
.y17b{bottom:209.822933pt;}
.y27b{bottom:210.706267pt;}
.yed{bottom:211.406933pt;}
.y22b{bottom:212.536267pt;}
.y104{bottom:217.154933pt;}
.y1f2{bottom:218.377467pt;}
.y1b8{bottom:218.378800pt;}
.y27a{bottom:222.036267pt;}
.yca{bottom:222.490933pt;}
.y6b{bottom:222.602533pt;}
.y96{bottom:223.150933pt;}
.y17a{bottom:223.154933pt;}
.y22a{bottom:223.866267pt;}
.yec{bottom:224.738933pt;}
.y24{bottom:228.609600pt;}
.y168{bottom:228.637600pt;}
.y154{bottom:229.138933pt;}
.y103{bottom:230.486933pt;}
.y1f1{bottom:231.709467pt;}
.y1b7{bottom:231.710800pt;}
.y279{bottom:233.366267pt;}
.y229{bottom:235.196267pt;}
.yc9{bottom:235.822933pt;}
.y6a{bottom:235.934533pt;}
.y95{bottom:236.484267pt;}
.y179{bottom:236.486933pt;}
.yeb{bottom:238.070933pt;}
.y23{bottom:241.944267pt;}
.y167{bottom:241.969600pt;}
.y153{bottom:242.470933pt;}
.y102{bottom:243.818933pt;}
.y278{bottom:244.696267pt;}
.y1f0{bottom:245.041467pt;}
.y1b6{bottom:245.042800pt;}
.y228{bottom:246.526267pt;}
.yc8{bottom:249.154933pt;}
.y69{bottom:249.266533pt;}
.y178{bottom:249.818933pt;}
.y94{bottom:249.849600pt;}
.yea{bottom:251.402933pt;}
.y22{bottom:255.276267pt;}
.y152{bottom:255.802933pt;}
.y277{bottom:256.026267pt;}
.y101{bottom:257.150933pt;}
.y227{bottom:257.856267pt;}
.y1b5{bottom:258.374800pt;}
.yc7{bottom:262.486933pt;}
.y68{bottom:262.598533pt;}
.y177{bottom:263.150933pt;}
.y93{bottom:263.181600pt;}
.ye9{bottom:264.734933pt;}
.y276{bottom:267.356267pt;}
.y21{bottom:268.609600pt;}
.y226{bottom:269.186267pt;}
.y100{bottom:270.488267pt;}
.y166{bottom:271.976267pt;}
.y1ef{bottom:274.376133pt;}
.yc6{bottom:275.818933pt;}
.y67{bottom:275.930533pt;}
.y176{bottom:276.494933pt;}
.y92{bottom:276.513600pt;}
.ye8{bottom:278.066933pt;}
.y275{bottom:278.686267pt;}
.y225{bottom:280.516267pt;}
.y20{bottom:281.944267pt;}
.y151{bottom:282.614933pt;}
.yff{bottom:283.820267pt;}
.y1b4{bottom:285.102133pt;}
.y165{bottom:287.476267pt;}
.y1ee{bottom:287.709467pt;}
.yc5{bottom:289.150933pt;}
.y66{bottom:289.262533pt;}
.y175{bottom:289.826933pt;}
.y91{bottom:289.845600pt;}
.y274{bottom:290.016267pt;}
.ye7{bottom:291.398933pt;}
.y224{bottom:291.846267pt;}
.y1f{bottom:295.276267pt;}
.yfe{bottom:297.152267pt;}
.y150{bottom:298.117600pt;}
.y1b3{bottom:298.434133pt;}
.y1ed{bottom:301.042800pt;}
.y273{bottom:301.346267pt;}
.yc4{bottom:302.484267pt;}
.y65{bottom:302.594533pt;}
.y164{bottom:302.976267pt;}
.y174{bottom:303.158933pt;}
.y223{bottom:303.176267pt;}
.y90{bottom:303.177600pt;}
.ye6{bottom:304.730933pt;}
.y1e{bottom:308.610933pt;}
.yfd{bottom:310.484267pt;}
.y1b2{bottom:311.766133pt;}
.y272{bottom:312.676267pt;}
.y14d{bottom:313.620267pt;}
.y1ec{bottom:314.386800pt;}
.y222{bottom:314.506267pt;}
.y163{bottom:315.304267pt;}
.yc3{bottom:315.818933pt;}
.y64{bottom:315.926533pt;}
.y173{bottom:316.490933pt;}
.y8f{bottom:316.509600pt;}
.ye5{bottom:318.062933pt;}
.y1d{bottom:321.942933pt;}
.yfc{bottom:323.816267pt;}
.y271{bottom:324.006267pt;}
.y1b1{bottom:325.098133pt;}
.y221{bottom:325.836267pt;}
.y1eb{bottom:327.718800pt;}
.y14f{bottom:329.113600pt;}
.yc2{bottom:329.150933pt;}
.y63{bottom:329.258533pt;}
.y172{bottom:329.822933pt;}
.y8e{bottom:329.841600pt;}
.y162{bottom:330.806933pt;}
.ye4{bottom:331.394933pt;}
.y1c{bottom:335.277600pt;}
.y270{bottom:335.336267pt;}
.y220{bottom:337.166267pt;}
.y1b0{bottom:338.430133pt;}
.y161{bottom:340.802933pt;}
.y1ea{bottom:341.050800pt;}
.y62{bottom:342.590533pt;}
.y171{bottom:343.154933pt;}
.y14e{bottom:344.616267pt;}
.ye3{bottom:344.730933pt;}
.yc1{bottom:346.562933pt;}
.y26f{bottom:346.666267pt;}
.y21f{bottom:348.496267pt;}
.y1b{bottom:348.609600pt;}
.y1af{bottom:351.766133pt;}
.y1e9{bottom:354.382800pt;}
.yc0{bottom:355.817600pt;}
.y8d{bottom:355.845600pt;}
.y61{bottom:355.922533pt;}
.y170{bottom:356.486933pt;}
.y26e{bottom:357.996267pt;}
.ye2{bottom:358.062933pt;}
.y21e{bottom:359.826267pt;}
.y14c{bottom:360.118933pt;}
.y1a{bottom:361.976267pt;}
.y1ae{bottom:365.098133pt;}
.y1e8{bottom:367.714800pt;}
.y14b{bottom:367.874933pt;}
.ybf{bottom:369.152267pt;}
.y8c{bottom:369.177600pt;}
.y60{bottom:369.254533pt;}
.y26d{bottom:369.326267pt;}
.y112{bottom:369.809467pt;}
.y16f{bottom:369.818933pt;}
.y21d{bottom:371.156267pt;}
.ye1{bottom:371.394933pt;}
.y19{bottom:375.308267pt;}
.y1ad{bottom:378.430133pt;}
.y2a8{bottom:379.612000pt;}
.y26c{bottom:380.656267pt;}
.y1e7{bottom:381.046800pt;}
.ybe{bottom:382.484267pt;}
.y21c{bottom:382.486267pt;}
.y8b{bottom:382.509600pt;}
.y5f{bottom:382.586533pt;}
.y111{bottom:383.141467pt;}
.y16e{bottom:383.150933pt;}
.y148{bottom:383.377600pt;}
.ye0{bottom:384.729600pt;}
.y18{bottom:388.640267pt;}
.y14a{bottom:391.124267pt;}
.y1ac{bottom:391.763467pt;}
.y26b{bottom:391.986267pt;}
.y2a7{bottom:392.944000pt;}
.y160{bottom:393.653733pt;}
.y21b{bottom:393.816267pt;}
.y1e6{bottom:394.378800pt;}
.ybd{bottom:395.817600pt;}
.y8a{bottom:395.841600pt;}
.y5e{bottom:395.918533pt;}
.y110{bottom:396.473467pt;}
.y16d{bottom:396.482933pt;}
.ydf{bottom:398.061600pt;}
.y26a{bottom:403.316267pt;}
.y1ab{bottom:405.095467pt;}
.y21a{bottom:405.149600pt;}
.y2a6{bottom:406.276000pt;}
.y149{bottom:406.626933pt;}
.y15f{bottom:406.985733pt;}
.y1e5{bottom:407.710800pt;}
.ybc{bottom:409.150933pt;}
.y89{bottom:409.173600pt;}
.y5d{bottom:409.250533pt;}
.yde{bottom:411.393600pt;}
.y269{bottom:414.646267pt;}
.y1aa{bottom:418.428800pt;}
.y2a5{bottom:419.608000pt;}
.y1e4{bottom:421.042800pt;}
.y147{bottom:422.129600pt;}
.ybb{bottom:422.484267pt;}
.y88{bottom:422.505600pt;}
.y5c{bottom:422.582533pt;}
.ydd{bottom:424.726933pt;}
.y16c{bottom:425.820267pt;}
.y268{bottom:425.976267pt;}
.y146{bottom:429.885600pt;}
.y17{bottom:430.640267pt;}
.y2a4{bottom:432.940000pt;}
.y1e3{bottom:434.378800pt;}
.y219{bottom:434.484267pt;}
.yba{bottom:435.816267pt;}
.y87{bottom:435.837600pt;}
.y267{bottom:437.306267pt;}
.y16b{bottom:439.152267pt;}
.y1a9{bottom:445.154933pt;}
.y16{bottom:445.304267pt;}
.y143{bottom:445.388267pt;}
.y2a3{bottom:446.272000pt;}
.y1e2{bottom:447.710800pt;}
.y218{bottom:447.820267pt;}
.y5b{bottom:448.540667pt;}
.y266{bottom:448.636267pt;}
.y86{bottom:449.169600pt;}
.ydc{bottom:452.484267pt;}
.y145{bottom:453.134933pt;}
.y1a8{bottom:458.486933pt;}
.y2a2{bottom:459.604000pt;}
.y265{bottom:459.966267pt;}
.y15{bottom:459.968267pt;}
.y1e1{bottom:461.042800pt;}
.y217{bottom:461.152267pt;}
.y5a{bottom:461.872667pt;}
.y85{bottom:462.501600pt;}
.y16a{bottom:465.818933pt;}
.ydb{bottom:465.820267pt;}
.y144{bottom:468.637600pt;}
.y264{bottom:471.296267pt;}
.y1a7{bottom:471.818933pt;}
.y2a1{bottom:472.936000pt;}
.y1e0{bottom:474.377467pt;}
.y216{bottom:474.484267pt;}
.y14{bottom:474.632267pt;}
.y59{bottom:475.204667pt;}
.y84{bottom:475.833600pt;}
.y169{bottom:479.150933pt;}
.yda{bottom:479.152267pt;}
.yd7{bottom:479.889467pt;}
.y263{bottom:482.626267pt;}
.y142{bottom:484.140267pt;}
.y1a6{bottom:485.150933pt;}
.y2a0{bottom:486.268000pt;}
.y1df{bottom:487.709467pt;}
.y215{bottom:487.818933pt;}
.y58{bottom:488.536667pt;}
.y83{bottom:489.165600pt;}
.y13{bottom:489.296267pt;}
.yd9{bottom:492.484267pt;}
.yd6{bottom:493.221467pt;}
.y262{bottom:493.956267pt;}
.y141{bottom:494.136267pt;}
.y1a5{bottom:498.489600pt;}
.y29f{bottom:499.600000pt;}
.y1de{bottom:501.042800pt;}
.y214{bottom:501.150933pt;}
.y57{bottom:501.868667pt;}
.y82{bottom:502.497600pt;}
.y12{bottom:503.960267pt;}
.y261{bottom:505.286267pt;}
.yd8{bottom:505.816267pt;}
.yd5{bottom:506.553467pt;}
.y1a4{bottom:511.821600pt;}
.y1dd{bottom:514.374800pt;}
.y213{bottom:514.492267pt;}
.y56{bottom:515.200667pt;}
.y81{bottom:515.829600pt;}
.y260{bottom:516.616267pt;}
.y11{bottom:518.624267pt;}
.y29e{bottom:518.937333pt;}
.y1a3{bottom:525.153600pt;}
.y212{bottom:527.824267pt;}
.y25f{bottom:527.946267pt;}
.y55{bottom:528.532667pt;}
.y80{bottom:529.161600pt;}
.y29d{bottom:532.269333pt;}
.y10{bottom:533.288267pt;}
.y140{bottom:535.318933pt;}
.y1a2{bottom:538.485600pt;}
.y25e{bottom:539.276267pt;}
.y1dc{bottom:541.106133pt;}
.y211{bottom:541.156267pt;}
.y54{bottom:541.866000pt;}
.y7f{bottom:542.493600pt;}
.yf{bottom:547.952267pt;}
.y13f{bottom:548.650933pt;}
.y25d{bottom:550.606267pt;}
.y29c{bottom:551.601333pt;}
.y1a1{bottom:551.817600pt;}
.y1db{bottom:554.438133pt;}
.y210{bottom:554.488267pt;}
.y7e{bottom:555.825600pt;}
.y188{bottom:557.920400pt;}
.yfb{bottom:561.869733pt;}
.y25c{bottom:561.936267pt;}
.y13e{bottom:561.982933pt;}
.ye{bottom:562.616267pt;}
.y1a0{bottom:565.157600pt;}
.y1da{bottom:567.770133pt;}
.y20f{bottom:567.820267pt;}
.y53{bottom:567.833600pt;}
.y7d{bottom:569.157600pt;}
.y29b{bottom:570.933333pt;}
.y187{bottom:571.253733pt;}
.y25b{bottom:573.266267pt;}
.yfa{bottom:575.201733pt;}
.yd{bottom:577.280267pt;}
.y19f{bottom:578.489600pt;}
.y1d9{bottom:581.102133pt;}
.y20e{bottom:581.152267pt;}
.y52{bottom:581.165600pt;}
.y7c{bottom:582.489600pt;}
.y29a{bottom:584.266667pt;}
.y186{bottom:584.585733pt;}
.y25a{bottom:584.596267pt;}
.yf9{bottom:588.533733pt;}
.y13d{bottom:588.816267pt;}
.y19e{bottom:591.821600pt;}
.yc{bottom:591.944267pt;}
.y1d8{bottom:594.434133pt;}
.y20d{bottom:594.484267pt;}
.y51{bottom:594.497600pt;}
.y7b{bottom:595.821600pt;}
.y259{bottom:595.926267pt;}
.yf8{bottom:601.865733pt;}
.y13c{bottom:604.316267pt;}
.y19d{bottom:605.153600pt;}
.yb{bottom:606.608267pt;}
.y139{bottom:607.070267pt;}
.y258{bottom:607.256267pt;}
.y1d7{bottom:607.766133pt;}
.y20c{bottom:607.818933pt;}
.y50{bottom:607.829600pt;}
.y7a{bottom:609.153600pt;}
.y299{bottom:612.121867pt;}
.y138{bottom:617.066267pt;}
.y19c{bottom:618.485600pt;}
.y257{bottom:618.586267pt;}
.y13b{bottom:619.816267pt;}
.y1d6{bottom:621.098133pt;}
.y20b{bottom:621.150933pt;}
.y4f{bottom:621.161600pt;}
.y79{bottom:622.485600pt;}
.y298{bottom:625.453867pt;}
.y256{bottom:629.916267pt;}
.y19b{bottom:631.817600pt;}
.ya{bottom:633.274933pt;}
.y1d5{bottom:634.430133pt;}
.y20a{bottom:634.485600pt;}
.y4e{bottom:634.493600pt;}
.y13a{bottom:635.322267pt;}
.y78{bottom:635.817600pt;}
.y297{bottom:638.785867pt;}
.y255{bottom:641.246267pt;}
.y19a{bottom:645.152267pt;}
.y1d4{bottom:647.764800pt;}
.y209{bottom:647.817600pt;}
.y4d{bottom:647.825600pt;}
.y77{bottom:649.149600pt;}
.y9{bottom:649.274933pt;}
.y137{bottom:650.813600pt;}
.y296{bottom:652.117867pt;}
.y254{bottom:652.576267pt;}
.y199{bottom:658.484267pt;}
.y1d3{bottom:661.096800pt;}
.y208{bottom:661.152267pt;}
.y4c{bottom:661.157600pt;}
.y253{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y295{bottom:665.449867pt;}
.y136{bottom:666.313600pt;}
.y198{bottom:671.818933pt;}
.y32{bottom:673.018133pt;}
.y133{bottom:674.044267pt;}
.y1d2{bottom:674.436933pt;}
.y207{bottom:674.484267pt;}
.y4b{bottom:674.489600pt;}
.y252{bottom:675.236267pt;}
.y294{bottom:678.783200pt;}
.y135{bottom:681.813600pt;}
.y197{bottom:685.150933pt;}
.y251{bottom:686.566267pt;}
.y1d1{bottom:687.768933pt;}
.y206{bottom:687.820267pt;}
.y4a{bottom:687.821600pt;}
.y31{bottom:691.684133pt;}
.y7{bottom:694.592267pt;}
.y134{bottom:697.293600pt;}
.y250{bottom:697.896267pt;}
.y196{bottom:698.482933pt;}
.yb9{bottom:700.318933pt;}
.y1d0{bottom:701.100933pt;}
.y205{bottom:701.152267pt;}
.y49{bottom:701.153600pt;}
.y293{bottom:706.645067pt;}
.y24f{bottom:709.226267pt;}
.y30{bottom:710.350133pt;}
.y132{bottom:712.796267pt;}
.yb8{bottom:713.650933pt;}
.y1cf{bottom:714.432933pt;}
.y204{bottom:714.484267pt;}
.y48{bottom:714.485600pt;}
.y292{bottom:719.977067pt;}
.y24e{bottom:720.556267pt;}
.yb7{bottom:726.982933pt;}
.y1ce{bottom:727.764933pt;}
.y47{bottom:727.817600pt;}
.y203{bottom:727.825600pt;}
.y195{bottom:727.829600pt;}
.y131{bottom:728.298933pt;}
.y12e{bottom:731.052267pt;}
.y24d{bottom:731.886267pt;}
.y291{bottom:733.309067pt;}
.y6{bottom:734.597600pt;}
.y12d{bottom:741.048267pt;}
.y1cd{bottom:741.096933pt;}
.y46{bottom:741.152267pt;}
.y202{bottom:741.157600pt;}
.y194{bottom:741.161600pt;}
.y24c{bottom:743.216267pt;}
.y130{bottom:743.801600pt;}
.y290{bottom:746.641067pt;}
.yb6{bottom:753.788267pt;}
.y1cc{bottom:754.430267pt;}
.y45{bottom:754.484267pt;}
.y201{bottom:754.489600pt;}
.y193{bottom:754.493600pt;}
.y24b{bottom:754.546267pt;}
.y12f{bottom:759.304267pt;}
.y28f{bottom:759.973067pt;}
.yb5{bottom:761.544267pt;}
.y24a{bottom:765.876267pt;}
.y1cb{bottom:767.763600pt;}
.y44{bottom:767.818933pt;}
.y200{bottom:767.821600pt;}
.y192{bottom:767.825600pt;}
.yb2{bottom:772.053600pt;}
.y28e{bottom:773.305067pt;}
.y5{bottom:774.602933pt;}
.y12c{bottom:774.797600pt;}
.y249{bottom:777.206267pt;}
.y1ca{bottom:781.096933pt;}
.y43{bottom:781.150933pt;}
.y1ff{bottom:781.153600pt;}
.y191{bottom:781.157600pt;}
.yb1{bottom:782.049600pt;}
.yb4{bottom:784.793600pt;}
.y28d{bottom:786.637067pt;}
.y248{bottom:788.536267pt;}
.y12b{bottom:790.300267pt;}
.yb3{bottom:792.549600pt;}
.y1c9{bottom:794.432933pt;}
.y42{bottom:794.485600pt;}
.y190{bottom:794.489600pt;}
.y128{bottom:798.056267pt;}
.y247{bottom:799.866267pt;}
.y28c{bottom:799.969067pt;}
.y12a{bottom:805.802933pt;}
.y1c8{bottom:807.764933pt;}
.y41{bottom:807.817600pt;}
.y18f{bottom:807.821600pt;}
.y246{bottom:811.196267pt;}
.y28b{bottom:813.301067pt;}
.y4{bottom:814.608267pt;}
.yb0{bottom:815.798933pt;}
.y1c7{bottom:821.096933pt;}
.y40{bottom:821.150933pt;}
.y18e{bottom:821.153600pt;}
.y1fe{bottom:821.154933pt;}
.y129{bottom:821.305600pt;}
.y245{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.yaf{bottom:823.554933pt;}
.y28a{bottom:826.633067pt;}
.y244{bottom:833.856267pt;}
.yac{bottom:834.064267pt;}
.y1c6{bottom:834.428933pt;}
.y18d{bottom:834.485600pt;}
.y1fd{bottom:834.486933pt;}
.y3f{bottom:834.488267pt;}
.y127{bottom:836.808267pt;}
.y289{bottom:839.966400pt;}
.yab{bottom:844.060267pt;}
.y243{bottom:845.186267pt;}
.yae{bottom:846.804267pt;}
.y18c{bottom:847.817600pt;}
.y1fc{bottom:847.818933pt;}
.y3e{bottom:847.820267pt;}
.y126{bottom:852.310933pt;}
.yad{bottom:854.560267pt;}
.y123{bottom:855.064267pt;}
.y242{bottom:856.516267pt;}
.y1fb{bottom:861.150933pt;}
.y3d{bottom:861.152267pt;}
.y1c5{bottom:861.160267pt;}
.y122{bottom:865.060267pt;}
.y125{bottom:867.813600pt;}
.y241{bottom:867.846267pt;}
.y3c{bottom:874.484267pt;}
.y1fa{bottom:874.486933pt;}
.y1c4{bottom:874.492267pt;}
.yaa{bottom:877.809600pt;}
.y240{bottom:879.176267pt;}
.y124{bottom:883.316267pt;}
.y3b{bottom:887.818933pt;}
.y18b{bottom:887.824267pt;}
.y23f{bottom:890.506267pt;}
.ya9{bottom:893.312267pt;}
.y121{bottom:898.809600pt;}
.ya8{bottom:901.068267pt;}
.y3a{bottom:901.150933pt;}
.y18a{bottom:901.156267pt;}
.y23e{bottom:901.836267pt;}
.y23d{bottom:913.166267pt;}
.y120{bottom:914.312267pt;}
.y39{bottom:914.484267pt;}
.y189{bottom:914.488267pt;}
.y11d{bottom:922.068267pt;}
.ya7{bottom:924.317600pt;}
.y23c{bottom:924.496267pt;}
.y38{bottom:927.820267pt;}
.y11f{bottom:929.814933pt;}
.ya6{bottom:932.073600pt;}
.y23b{bottom:935.826267pt;}
.ya4{bottom:939.820267pt;}
.y37{bottom:941.152267pt;}
.y11e{bottom:945.317600pt;}
.y23a{bottom:947.156267pt;}
.y36{bottom:954.484267pt;}
.ya5{bottom:955.322933pt;}
.y239{bottom:958.486267pt;}
.y11c{bottom:960.820267pt;}
.y35{bottom:967.816267pt;}
.y238{bottom:969.816267pt;}
.ya3{bottom:970.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.he{height:21.193555pt;}
.h21{height:24.229333pt;}
.hb{height:27.728594pt;}
.h16{height:31.152000pt;}
.h12{height:31.476562pt;}
.hd{height:32.605469pt;}
.h8{height:34.523438pt;}
.h10{height:36.564221pt;}
.hf{height:36.585555pt;}
.h18{height:36.922667pt;}
.h20{height:36.933333pt;}
.h1f{height:37.013333pt;}
.h19{height:37.408000pt;}
.h17{height:38.229333pt;}
.h4{height:39.318359pt;}
.h26{height:39.560000pt;}
.h27{height:40.080000pt;}
.h3{height:40.661333pt;}
.h25{height:40.960000pt;}
.h24{height:42.195312pt;}
.hc{height:43.120594pt;}
.h11{height:43.141927pt;}
.h9{height:45.703125pt;}
.ha{height:47.472000pt;}
.h1e{height:48.009600pt;}
.h1d{height:48.090667pt;}
.h14{height:48.096000pt;}
.h1c{height:49.152000pt;}
.h2{height:50.755208pt;}
.h7{height:50.781250pt;}
.h15{height:55.859375pt;}
.h1b{height:67.909333pt;}
.h22{height:68.362667pt;}
.h23{height:68.389333pt;}
.h1a{height:68.394667pt;}
.h13{height:69.046875pt;}
.h6{height:99.734375pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.514000pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.x8{left:211.683467pt;}
.x5{left:223.511467pt;}
.x11{left:267.195200pt;}
.xd{left:278.006133pt;}
.xc{left:290.242133pt;}
.x9{left:297.447467pt;}
.xe{left:502.024800pt;}
.xa{left:504.423467pt;}
.x3{left:519.632533pt;}
.xf{left:725.336533pt;}
.x10{left:726.469467pt;}
.xb{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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