
    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_b52f92b761524bc403cb6dd5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_56d204cd4425fa8315bb2fbd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_d493ef82f0a7a3051d4d25b5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_14816a21286f9d37f6772daf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_206e2a9474eef3ee66860776.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_680f5d57ca51d521d88ef051.woff')format("woff");}.ff6{font-family:ff6;line-height:1.211426;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_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_dcb33d29810b1e050a351c06.woff')format("woff");}.ff8{font-family:ff8;line-height:0.745117;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_173aeb2af1735f08b2bb7b1c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_14816a21286f9d37f6772daf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_1319f1e58a83d1292ab6aa76.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_915390e34e89a1000d734c5a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.211426;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_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_14816a21286f9d37f6772daf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_1319f1e58a83d1292ab6aa76.woff')format("woff");}.fff{font-family:fff;line-height:1.006836;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_915390e34e89a1000d734c5a.woff')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.727539;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_a9f1f96c04d11f22cfd00ee0.woff')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_603126dc4ae7aca387b1b5b7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.006836;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_255905bf2cbbf2878314def5.woff')format("woff");}.ff14{font-family:ff14;line-height:1.211426;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_dcb33d29810b1e050a351c06.woff')format("woff");}.ff15{font-family:ff15;line-height:0.745117;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_a9f1f96c04d11f22cfd00ee0.woff')format("woff");}.ff16{font-family:ff16;line-height:1.006348;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_603126dc4ae7aca387b1b5b7.woff')format("woff");}.ff17{font-family:ff17;line-height:1.006836;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_255905bf2cbbf2878314def5.woff')format("woff");}.ff18{font-family:ff18;line-height:1.211426;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_dcb33d29810b1e050a351c06.woff')format("woff");}.ff19{font-family:ff19;line-height:0.745117;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_32577921128803f01d3bc099.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_4ec108c198c2d848f8971465.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.006836;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_cfe6bcbab841e6ee5cead61c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.211426;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_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.727539;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_2337a78a766ecf643a78952c.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.745117;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_173aeb2af1735f08b2bb7b1c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_32577921128803f01d3bc099.woff')format("woff");}.ff20{font-family:ff20;line-height:1.006348;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_4ec108c198c2d848f8971465.woff')format("woff");}.ff21{font-family:ff21;line-height:1.006836;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_cfe6bcbab841e6ee5cead61c.woff')format("woff");}.ff22{font-family:ff22;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ff23{font-family:ff23;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2337a78a766ecf643a78952c.woff')format("woff");}.ff24{font-family:ff24;line-height:0.745117;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:ff25;src:url('chunks/assets/font_173aeb2af1735f08b2bb7b1c.woff')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_1abfece87dac6eeea193da87.woff')format("woff");}.ff26{font-family:ff26;line-height:1.006348;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:ff27;src:url('chunks/assets/font_738b37937f21e0c95844ec50.woff')format("woff");}.ff27{font-family:ff27;line-height:1.006836;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:ff28;src:url('chunks/assets/font_dcd4fd779fd03eba10d21376.woff')format("woff");}.ff28{font-family:ff28;line-height:1.211426;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:ff29;src:url('chunks/assets/font_87a66d102de4a198a823811e.woff')format("woff");}.ff29{font-family:ff29;line-height:0.745117;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:ff2a;src:url('chunks/assets/font_89e4c27e3caa5b6aa9d8f5d7.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.727539;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:ff2b;src:url('chunks/assets/font_f33644d38b82c807798b273a.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.388000;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:ff2c;src:url('chunks/assets/font_7d010e702090dcc587c75dde.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.726000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.880000px;}
.v5{vertical-align:65.754000px;}
.ls63{letter-spacing:-0.559116px;}
.ls59{letter-spacing:-0.216432px;}
.ls4a{letter-spacing:-0.174348px;}
.ls44{letter-spacing:-0.170861px;}
.ls5d{letter-spacing:-0.162324px;}
.ls5c{letter-spacing:-0.156312px;}
.ls16{letter-spacing:-0.144288px;}
.ls61{letter-spacing:-0.138276px;}
.ls5a{letter-spacing:-0.126252px;}
.ls56{letter-spacing:-0.120240px;}
.ls48{letter-spacing:-0.114228px;}
.ls42{letter-spacing:-0.111943px;}
.ls62{letter-spacing:-0.102204px;}
.ls1a{letter-spacing:-0.096192px;}
.ls3d{letter-spacing:-0.094268px;}
.ls4b{letter-spacing:-0.090180px;}
.ls1d{letter-spacing:-0.084168px;}
.ls3f{letter-spacing:-0.082485px;}
.ls22{letter-spacing:-0.078156px;}
.ls47{letter-spacing:-0.072144px;}
.ls41{letter-spacing:-0.070701px;}
.ls1f{letter-spacing:-0.066132px;}
.ls57{letter-spacing:-0.060120px;}
.ls46{letter-spacing:-0.054108px;}
.ls40{letter-spacing:-0.053026px;}
.ls17{letter-spacing:-0.048096px;}
.ls18{letter-spacing:-0.042084px;}
.ls49{letter-spacing:-0.036072px;}
.ls43{letter-spacing:-0.035351px;}
.ls1e{letter-spacing:-0.030060px;}
.ls1b{letter-spacing:-0.024048px;}
.ls3e{letter-spacing:-0.023567px;}
.ls23{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.017675px;}
.ls45{letter-spacing:-0.016200px;}
.ls39{letter-spacing:-0.015876px;}
.ls55{letter-spacing:-0.014364px;}
.ls21{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.011784px;}
.ls19{letter-spacing:-0.006012px;}
.ls3c{letter-spacing:-0.005892px;}
.ls64{letter-spacing:-0.005400px;}
.ls15{letter-spacing:-0.004788px;}
.ls38{letter-spacing:-0.004692px;}
.ls7{letter-spacing:0.000000px;}
.ls70{letter-spacing:0.000800px;}
.ls6d{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.006012px;}
.ls29{letter-spacing:0.011784px;}
.ls30{letter-spacing:0.012024px;}
.ls2d{letter-spacing:0.017675px;}
.ls33{letter-spacing:0.018036px;}
.ls2f{letter-spacing:0.023567px;}
.lsc{letter-spacing:0.024048px;}
.ls28{letter-spacing:0.026460px;}
.ls14{letter-spacing:0.027000px;}
.ls2c{letter-spacing:0.029459px;}
.lsf{letter-spacing:0.030060px;}
.ls27{letter-spacing:0.031752px;}
.ls13{letter-spacing:0.032400px;}
.ls2e{letter-spacing:0.035351px;}
.ls34{letter-spacing:0.036072px;}
.ls2b{letter-spacing:0.037044px;}
.ls32{letter-spacing:0.037800px;}
.ls37{letter-spacing:0.042084px;}
.ls52{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.048096px;}
.ls4f{letter-spacing:0.052668px;}
.ls10{letter-spacing:0.054108px;}
.ls24{letter-spacing:0.056307px;}
.ls8{letter-spacing:0.057456px;}
.lsd{letter-spacing:0.060120px;}
.ls36{letter-spacing:0.066132px;}
.ls35{letter-spacing:0.070200px;}
.ls60{letter-spacing:0.072144px;}
.ls2a{letter-spacing:0.074088px;}
.ls31{letter-spacing:0.075600px;}
.ls1c{letter-spacing:0.084168px;}
.ls5e{letter-spacing:0.102204px;}
.lse{letter-spacing:0.120240px;}
.ls53{letter-spacing:0.126252px;}
.ls5f{letter-spacing:0.168336px;}
.ls51{letter-spacing:0.172368px;}
.ls26{letter-spacing:0.173613px;}
.lsa{letter-spacing:0.177156px;}
.ls58{letter-spacing:0.180360px;}
.ls50{letter-spacing:0.181944px;}
.ls25{letter-spacing:0.187690px;}
.ls9{letter-spacing:0.191520px;}
.ls20{letter-spacing:0.192384px;}
.ls2{letter-spacing:2.989200px;}
.ls5b{letter-spacing:3.691368px;}
.ls0{letter-spacing:8.367300px;}
.ls6{letter-spacing:11.954850px;}
.ls6a{letter-spacing:13.448400px;}
.ls6b{letter-spacing:13.454400px;}
.ls71{letter-spacing:13.756282px;}
.ls6e{letter-spacing:14.673929px;}
.ls4c{letter-spacing:14.704798px;}
.ls67{letter-spacing:14.943900px;}
.ls6f{letter-spacing:15.179812px;}
.ls4e{letter-spacing:15.183002px;}
.ls6c{letter-spacing:16.437428px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls54{letter-spacing:65.729196px;}
.ls11{letter-spacing:65.759256px;}
.ls3{letter-spacing:72.361200px;}
.ls65{letter-spacing:91.298700px;}
.ls68{letter-spacing:91.958700px;}
.ls69{letter-spacing:92.438700px;}
.ls66{letter-spacing:94.292700px;}
.ls4d{letter-spacing:325.720800px;}
.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;}
}
.ws83{word-spacing:-60.120000px;}
.ws58{word-spacing:-15.222384px;}
.wse2{word-spacing:-15.210360px;}
.ws43{word-spacing:-14.943900px;}
.ws16f{word-spacing:-13.449600px;}
.ws55{word-spacing:-12.161520px;}
.wse1{word-spacing:-12.151944px;}
.ws56{word-spacing:-11.970000px;}
.ws26{word-spacing:-11.955150px;}
.ws80{word-spacing:-11.918290px;}
.ws81{word-spacing:-11.730600px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws124{word-spacing:-3.859704px;}
.wsad{word-spacing:-3.535056px;}
.ws134{word-spacing:-3.526760px;}
.wsae{word-spacing:-3.523032px;}
.wsac{word-spacing:-3.492972px;}
.ws90{word-spacing:-3.464355px;}
.ws91{word-spacing:-3.452571px;}
.ws8f{word-spacing:-3.423113px;}
.ws156{word-spacing:-3.227882px;}
.ws11f{word-spacing:-3.210408px;}
.ws4b{word-spacing:-3.108331px;}
.ws11e{word-spacing:-3.090168px;}
.ws15d{word-spacing:-2.809453px;}
.ws16a{word-spacing:-2.797517px;}
.ws120{word-spacing:-2.783556px;}
.ws121{word-spacing:-2.765520px;}
.ws155{word-spacing:-2.749678px;}
.ws1f{word-spacing:-2.689902px;}
.ws4e{word-spacing:-2.570351px;}
.ws53{word-spacing:-2.510575px;}
.wsb0{word-spacing:-2.422836px;}
.wsaf{word-spacing:-2.416824px;}
.ws93{word-spacing:-2.374379px;}
.wsb6{word-spacing:-2.368728px;}
.ws92{word-spacing:-2.368488px;}
.wsb7{word-spacing:-2.350692px;}
.wsb5{word-spacing:-2.338668px;}
.ws52{word-spacing:-2.331248px;}
.ws99{word-spacing:-2.321353px;}
.ws174{word-spacing:-2.313331px;}
.ws9a{word-spacing:-2.303678px;}
.ws98{word-spacing:-2.291895px;}
.ws115{word-spacing:-2.266524px;}
.ws175{word-spacing:-2.259533px;}
.ws18{word-spacing:-2.151922px;}
.ws153{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws117{word-spacing:-2.044080px;}
.ws165{word-spacing:-2.032370px;}
.ws2{word-spacing:-2.008454px;}
.ws116{word-spacing:-1.911816px;}
.ws1d{word-spacing:-1.793268px;}
.ws110{word-spacing:-1.761516px;}
.wsc6{word-spacing:-1.755504px;}
.ws72{word-spacing:-1.737468px;}
.wsc5{word-spacing:-1.671336px;}
.wsea{word-spacing:-1.635264px;}
.ws159{word-spacing:-1.554166px;}
.ws13a{word-spacing:-1.494390px;}
.ws17c{word-spacing:-1.452557px;}
.ws15e{word-spacing:-1.434614px;}
.ws18a{word-spacing:-1.398758px;}
.wscf{word-spacing:-1.364724px;}
.wsca{word-spacing:-1.352700px;}
.wsce{word-spacing:-1.340676px;}
.ws78{word-spacing:-1.322640px;}
.ws46{word-spacing:-1.315063px;}
.wscb{word-spacing:-1.256508px;}
.ws166{word-spacing:-1.255288px;}
.ws151{word-spacing:-1.195512px;}
.ws103{word-spacing:-1.135736px;}
.wsb{word-spacing:-1.075961px;}
.ws2e{word-spacing:-1.016185px;}
.ws7c{word-spacing:-1.010016px;}
.wsbb{word-spacing:-0.997992px;}
.ws9e{word-spacing:-0.978032px;}
.ws122{word-spacing:-0.973944px;}
.ws16e{word-spacing:-0.968371px;}
.ws2f{word-spacing:-0.956410px;}
.ws48{word-spacing:-0.896634px;}
.wsdb{word-spacing:-0.860774px;}
.ws123{word-spacing:-0.853704px;}
.ws10{word-spacing:-0.836858px;}
.ws147{word-spacing:-0.777083px;}
.ws162{word-spacing:-0.717307px;}
.wsc4{word-spacing:-0.691380px;}
.ws6e{word-spacing:-0.685368px;}
.ws37{word-spacing:-0.657532px;}
.ws195{word-spacing:-0.645581px;}
.ws76{word-spacing:-0.613224px;}
.wsf4{word-spacing:-0.601200px;}
.ws22{word-spacing:-0.597756px;}
.ws10f{word-spacing:-0.595188px;}
.wsf5{word-spacing:-0.571140px;}
.ws36{word-spacing:-0.537980px;}
.ws129{word-spacing:-0.529056px;}
.ws18d{word-spacing:-0.484186px;}
.ws19{word-spacing:-0.478205px;}
.ws101{word-spacing:-0.418429px;}
.ws18c{word-spacing:-0.376589px;}
.ws21{word-spacing:-0.358654px;}
.ws12d{word-spacing:-0.336672px;}
.ws187{word-spacing:-0.322790px;}
.ws77{word-spacing:-0.318636px;}
.ws7d{word-spacing:-0.312624px;}
.ws2d{word-spacing:-0.298878px;}
.ws5f{word-spacing:-0.277704px;}
.wse3{word-spacing:-0.272916px;}
.ws85{word-spacing:-0.272150px;}
.ws19b{word-spacing:-0.268992px;}
.ws12e{word-spacing:-0.252504px;}
.wscc{word-spacing:-0.240480px;}
.ws1c{word-spacing:-0.239102px;}
.ws113{word-spacing:-0.234468px;}
.ws75{word-spacing:-0.222444px;}
.ws63{word-spacing:-0.216432px;}
.ws16b{word-spacing:-0.215194px;}
.ws7f{word-spacing:-0.199800px;}
.ws2b{word-spacing:-0.179327px;}
.ws12f{word-spacing:-0.172800px;}
.ws16c{word-spacing:-0.161395px;}
.ws5e{word-spacing:-0.143640px;}
.ws84{word-spacing:-0.140767px;}
.ws62{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.119551px;}
.ws173{word-spacing:-0.107597px;}
.ws60{word-spacing:-0.081396px;}
.ws86{word-spacing:-0.079768px;}
.wse4{word-spacing:-0.076608px;}
.ws12a{word-spacing:-0.072144px;}
.ws57{word-spacing:-0.060120px;}
.ws29{word-spacing:-0.059776px;}
.ws82{word-spacing:-0.058918px;}
.ws167{word-spacing:-0.053798px;}
.ws1a6{word-spacing:-0.027898px;}
.ws19e{word-spacing:-0.009859px;}
.ws186{word-spacing:-0.007488px;}
.ws19c{word-spacing:-0.006259px;}
.ws181{word-spacing:-0.006221px;}
.ws190{word-spacing:-0.003859px;}
.ws178{word-spacing:-0.003821px;}
.ws13d{word-spacing:-0.003360px;}
.ws7{word-spacing:-0.002966px;}
.ws199{word-spacing:-0.000845px;}
.ws6{word-spacing:0.000000px;}
.ws25{word-spacing:0.003599px;}
.wseb{word-spacing:0.030060px;}
.ws71{word-spacing:0.042084px;}
.ws16d{word-spacing:0.053798px;}
.ws14{word-spacing:0.059776px;}
.wsef{word-spacing:0.066132px;}
.ws69{word-spacing:0.072144px;}
.wsc9{word-spacing:0.084168px;}
.ws74{word-spacing:0.102204px;}
.ws8d{word-spacing:0.105840px;}
.wsde{word-spacing:0.107597px;}
.wsaa{word-spacing:0.108000px;}
.wsd4{word-spacing:0.108216px;}
.ws8c{word-spacing:0.111943px;}
.wsc3{word-spacing:0.113400px;}
.wsa9{word-spacing:0.114228px;}
.ws1e{word-spacing:0.119551px;}
.ws12c{word-spacing:0.126252px;}
.wsf1{word-spacing:0.132264px;}
.wse7{word-spacing:0.135000px;}
.ws7b{word-spacing:0.138276px;}
.ws8e{word-spacing:0.142884px;}
.ws15a{word-spacing:0.144248px;}
.wsab{word-spacing:0.145800px;}
.ws88{word-spacing:0.148176px;}
.ws7e{word-spacing:0.151200px;}
.ws89{word-spacing:0.153468px;}
.wsa6{word-spacing:0.156600px;}
.wsdc{word-spacing:0.161395px;}
.ws73{word-spacing:0.162324px;}
.wscd{word-spacing:0.168336px;}
.wse6{word-spacing:0.178200px;}
.ws1b{word-spacing:0.179327px;}
.ws1a5{word-spacing:0.187992px;}
.ws8a{word-spacing:0.195804px;}
.wsa7{word-spacing:0.199800px;}
.wsf0{word-spacing:0.204408px;}
.wsda{word-spacing:0.215194px;}
.wsf3{word-spacing:0.216432px;}
.ws1a{word-spacing:0.239102px;}
.wsd9{word-spacing:0.268992px;}
.ws14f{word-spacing:0.285721px;}
.ws33{word-spacing:0.298878px;}
.ws18b{word-spacing:0.322790px;}
.ws34{word-spacing:0.358654px;}
.ws6a{word-spacing:0.372744px;}
.wsee{word-spacing:0.402804px;}
.ws3{word-spacing:0.418117px;}
.ws42{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.ws6b{word-spacing:0.432864px;}
.wsa1{word-spacing:0.465449px;}
.wsbe{word-spacing:0.474948px;}
.ws35{word-spacing:0.478205px;}
.wsa2{word-spacing:0.483124px;}
.wsbf{word-spacing:0.492984px;}
.ws148{word-spacing:0.537980px;}
.ws6d{word-spacing:0.541080px;}
.ws18f{word-spacing:0.591782px;}
.ws2c{word-spacing:0.597756px;}
.ws3d{word-spacing:0.657532px;}
.wsed{word-spacing:0.685368px;}
.ws14c{word-spacing:0.717307px;}
.ws10b{word-spacing:0.757512px;}
.ws59{word-spacing:0.777083px;}
.ws10a{word-spacing:0.829656px;}
.wsd6{word-spacing:0.836858px;}
.ws6c{word-spacing:0.841680px;}
.wsec{word-spacing:0.871740px;}
.ws176{word-spacing:0.914573px;}
.ws15b{word-spacing:0.956410px;}
.wsff{word-spacing:1.016185px;}
.wsd7{word-spacing:1.075961px;}
.ws3f{word-spacing:1.135736px;}
.wsd2{word-spacing:1.160316px;}
.wsd3{word-spacing:1.190376px;}
.ws4d{word-spacing:1.195512px;}
.ws19f{word-spacing:1.237363px;}
.ws38{word-spacing:1.255288px;}
.ws32{word-spacing:1.315063px;}
.ws1a1{word-spacing:1.344960px;}
.ws136{word-spacing:1.374839px;}
.ws131{word-spacing:1.434614px;}
.ws169{word-spacing:1.452557px;}
.ws31{word-spacing:1.494390px;}
.ws114{word-spacing:1.533060px;}
.ws14d{word-spacing:1.554166px;}
.ws2a{word-spacing:1.613941px;}
.wsfc{word-spacing:1.673717px;}
.ws1a3{word-spacing:1.721549px;}
.wsf{word-spacing:1.793268px;}
.ws4a{word-spacing:1.853044px;}
.ws19d{word-spacing:1.882944px;}
.ws79{word-spacing:1.905804px;}
.ws7a{word-spacing:1.911816px;}
.ws102{word-spacing:1.972595px;}
.ws24{word-spacing:2.032370px;}
.ws170{word-spacing:2.044339px;}
.ws5b{word-spacing:2.151922px;}
.ws18e{word-spacing:2.205734px;}
.wsa5{word-spacing:2.209410px;}
.wsfb{word-spacing:2.211697px;}
.ws95{word-spacing:2.232977px;}
.wsc2{word-spacing:2.254500px;}
.ws11c{word-spacing:2.260512px;}
.ws49{word-spacing:2.271473px;}
.wsb2{word-spacing:2.278548px;}
.ws11d{word-spacing:2.284560px;}
.ws94{word-spacing:2.303678px;}
.wsd5{word-spacing:2.331248px;}
.wsb1{word-spacing:2.350692px;}
.wsa4{word-spacing:2.380271px;}
.wsfa{word-spacing:2.410812px;}
.wsc1{word-spacing:2.428848px;}
.ws3e{word-spacing:2.450800px;}
.ws158{word-spacing:2.510575px;}
.ws9b{word-spacing:2.527565px;}
.ws127{word-spacing:2.537064px;}
.ws3c{word-spacing:2.570351px;}
.wsb8{word-spacing:2.579148px;}
.ws111{word-spacing:2.627244px;}
.ws125{word-spacing:2.663316px;}
.ws126{word-spacing:2.699388px;}
.wsf9{word-spacing:2.765520px;}
.ws15f{word-spacing:2.809453px;}
.ws164{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.wsa3{word-spacing:2.881071px;}
.wse9{word-spacing:2.927844px;}
.ws163{word-spacing:2.929004px;}
.wsc0{word-spacing:2.939868px;}
.ws4f{word-spacing:2.988780px;}
.ws106{word-spacing:2.993976px;}
.ws105{word-spacing:3.030048px;}
.wse8{word-spacing:3.090168px;}
.ws47{word-spacing:3.108331px;}
.ws196{word-spacing:3.120307px;}
.ws20{word-spacing:3.168107px;}
.ws180{word-spacing:3.219830px;}
.ws1ac{word-spacing:3.220320px;}
.ws17a{word-spacing:3.220829px;}
.ws188{word-spacing:3.220973px;}
.ws177{word-spacing:3.221443px;}
.ws17f{word-spacing:3.222173px;}
.ws192{word-spacing:3.222586px;}
.ws183{word-spacing:3.223056px;}
.ws1ab{word-spacing:3.223104px;}
.ws1a8{word-spacing:3.223229px;}
.ws17e{word-spacing:3.224102px;}
.ws189{word-spacing:3.225082px;}
.ws1a4{word-spacing:3.225629px;}
.ws17b{word-spacing:3.226118px;}
.ws179{word-spacing:3.227904px;}
.ws8b{word-spacing:3.258143px;}
.ws182{word-spacing:3.281702px;}
.ws51{word-spacing:3.287658px;}
.ws10c{word-spacing:3.288564px;}
.wsa{word-spacing:3.288835px;}
.wsa8{word-spacing:3.324636px;}
.ws12{word-spacing:3.407209px;}
.ws19a{word-spacing:3.443098px;}
.ws1ad{word-spacing:3.496896px;}
.ws45{word-spacing:3.526760px;}
.ws198{word-spacing:3.550694px;}
.ws1a7{word-spacing:3.575641px;}
.ws16{word-spacing:3.583475px;}
.ws15{word-spacing:3.586536px;}
.ws146{word-spacing:3.646312px;}
.wsfd{word-spacing:3.706087px;}
.wsf6{word-spacing:3.709404px;}
.ws107{word-spacing:3.715416px;}
.ws109{word-spacing:3.757500px;}
.ws135{word-spacing:3.765863px;}
.ws172{word-spacing:3.873485px;}
.ws100{word-spacing:3.885414px;}
.ws3a{word-spacing:3.945190px;}
.wsa0{word-spacing:3.965154px;}
.ws9f{word-spacing:3.994613px;}
.ws137{word-spacing:4.004965px;}
.wsbd{word-spacing:4.046076px;}
.ws15c{word-spacing:4.064741px;}
.wsbc{word-spacing:4.076136px;}
.ws17d{word-spacing:4.088678px;}
.ws108{word-spacing:4.112208px;}
.ws138{word-spacing:4.184292px;}
.wsfe{word-spacing:4.244068px;}
.ws17{word-spacing:4.303872px;}
.wsc{word-spacing:4.363619px;}
.ws27{word-spacing:4.423394px;}
.wsf2{word-spacing:4.442868px;}
.wsf8{word-spacing:4.460904px;}
.ws161{word-spacing:4.483170px;}
.wsf7{word-spacing:4.502988px;}
.ws191{word-spacing:4.572864px;}
.ws13{word-spacing:4.602721px;}
.ws4c{word-spacing:4.662497px;}
.ws150{word-spacing:4.683982px;}
.ws44{word-spacing:4.722272px;}
.wsd0{word-spacing:4.785552px;}
.wsd1{word-spacing:4.821624px;}
.ws104{word-spacing:4.841824px;}
.ws23{word-spacing:4.901599px;}
.ws28{word-spacing:4.961375px;}
.ws30{word-spacing:5.140702px;}
.ws68{word-spacing:5.164308px;}
.ws130{word-spacing:5.200477px;}
.ws128{word-spacing:5.230440px;}
.ws67{word-spacing:5.236452px;}
.ws39{word-spacing:5.260253px;}
.ws132{word-spacing:5.320028px;}
.ws157{word-spacing:5.439580px;}
.ws118{word-spacing:5.458896px;}
.wse{word-spacing:5.499355px;}
.ws5c{word-spacing:5.559131px;}
.ws193{word-spacing:5.595034px;}
.ws5a{word-spacing:5.618906px;}
.ws194{word-spacing:5.639393px;}
.ws149{word-spacing:5.678682px;}
.ws139{word-spacing:5.738458px;}
.ws66{word-spacing:5.849676px;}
.ws133{word-spacing:5.858009px;}
.ws65{word-spacing:5.861700px;}
.ws64{word-spacing:5.897772px;}
.ws50{word-spacing:5.917784px;}
.ws184{word-spacing:5.971622px;}
.ws154{word-spacing:5.977560px;}
.ws40{word-spacing:6.156887px;}
.ws54{word-spacing:6.336214px;}
.ws168{word-spacing:6.343528px;}
.ws96{word-spacing:6.427910px;}
.ws97{word-spacing:6.433802px;}
.ws3b{word-spacing:6.455765px;}
.wsb3{word-spacing:6.559092px;}
.wsb4{word-spacing:6.565104px;}
.ws13b{word-spacing:6.814418px;}
.wsd{word-spacing:6.874194px;}
.ws14a{word-spacing:6.933970px;}
.ws14b{word-spacing:6.966568px;}
.ws14e{word-spacing:7.053521px;}
.ws152{word-spacing:7.173072px;}
.ws12b{word-spacing:7.358688px;}
.ws185{word-spacing:7.531776px;}
.ws1a0{word-spacing:7.585574px;}
.ws1a2{word-spacing:7.693171px;}
.ws41{word-spacing:7.711052px;}
.ws119{word-spacing:7.971912px;}
.wsc7{word-spacing:7.977924px;}
.wsc8{word-spacing:8.044056px;}
.ws5d{word-spacing:8.368584px;}
.ws10e{word-spacing:8.380728px;}
.ws10d{word-spacing:8.422812px;}
.ws160{word-spacing:8.428360px;}
.ws9d{word-spacing:9.597677px;}
.ws9c{word-spacing:9.733188px;}
.wsba{word-spacing:9.793548px;}
.wsb9{word-spacing:9.931824px;}
.ws70{word-spacing:10.148256px;}
.ws6f{word-spacing:10.208376px;}
.ws112{word-spacing:10.514988px;}
.ws11a{word-spacing:10.557072px;}
.ws11b{word-spacing:10.617192px;}
.ws171{word-spacing:11.137752px;}
.ws87{word-spacing:11.388066px;}
.wse5{word-spacing:11.615688px;}
.ws61{word-spacing:11.620476px;}
.ws1aa{word-spacing:12.266035px;}
.ws1a9{word-spacing:12.268597px;}
.ws197{word-spacing:13.019213px;}
.ws1{word-spacing:22.477404px;}
.wse0{word-spacing:216.108000px;}
.wsd8{word-spacing:255.485155px;}
.wsdd{word-spacing:267.134899px;}
.wsdf{word-spacing:308.370000px;}
.ws145{word-spacing:352.648886px;}
.ws13c{word-spacing:361.604554px;}
.ws144{word-spacing:364.372886px;}
.ws140{word-spacing:374.598259px;}
.ws141{word-spacing:375.056554px;}
.ws142{word-spacing:393.373901px;}
.ws143{word-spacing:407.656512px;}
.ws13e{word-spacing:434.771002px;}
.ws13f{word-spacing:440.393002px;}
._59{margin-left:-24.747264px;}
._57{margin-left:-20.916187px;}
._54{margin-left:-19.911409px;}
._10{margin-left:-7.442069px;}
._4{margin-left:-5.917824px;}
._55{margin-left:-4.895654px;}
._1{margin-left:-3.891380px;}
._2{margin-left:-2.301354px;}
._8{margin-left:-1.111804px;}
._17{width:1.046066px;}
._6{width:3.001320px;}
._58{width:6.832397px;}
._5a{width:7.854664px;}
._52{width:9.629914px;}
._0{width:10.879128px;}
._3{width:12.971268px;}
._16{width:14.525471px;}
._11{width:15.631326px;}
._f{width:17.215373px;}
._b{width:18.602123px;}
._1e{width:19.785724px;}
._d{width:20.801909px;}
._15{width:22.033304px;}
._a{width:23.563498px;}
._12{width:25.165528px;}
._1b{width:26.480591px;}
._c{width:28.369478px;}
._36{width:29.744317px;}
._e{width:30.760612px;}
._9{width:31.800619px;}
._5{width:33.355008px;}
._18{width:34.550297px;}
._19{width:35.602325px;}
._50{width:37.060872px;}
._4f{width:39.930101px;}
._1c{width:42.022247px;}
._7{width:54.401760px;}
._56{width:61.868160px;}
._53{width:88.767360px;}
._51{width:91.217566px;}
._1d{width:93.548814px;}
._1f{width:94.684550px;}
._33{width:109.823654px;}
._41{width:160.657325px;}
._49{width:166.632499px;}
._4a{width:169.622525px;}
._43{width:171.126499px;}
._4e{width:175.614499px;}
._37{width:180.516490px;}
._24{width:185.291261px;}
._3c{width:194.988499px;}
._2e{width:200.775514px;}
._4c{width:208.541741px;}
._45{width:211.472141px;}
._32{width:228.159014px;}
._31{width:233.451677px;}
._47{width:238.372541px;}
._3e{width:247.275725px;}
._27{width:311.223744px;}
._25{width:316.226995px;}
._30{width:321.553037px;}
._2f{width:324.619546px;}
._4b{width:332.303654px;}
._29{width:334.088064px;}
._28{width:336.885581px;}
._2d{width:347.268672px;}
._39{width:358.076352px;}
._26{width:365.990515px;}
._2a{width:388.047859px;}
._38{width:397.918262px;}
._3a{width:402.431635px;}
._42{width:405.421622px;}
._2b{width:406.823501px;}
._4d{width:425.486525px;}
._2c{width:449.700826px;}
._3b{width:452.559767px;}
._3d{width:456.124214px;}
._48{width:471.988387px;}
._40{width:474.216596px;}
._23{width:479.343744px;}
._46{width:481.191514px;}
._3f{width:482.754422px;}
._44{width:540.746342px;}
._22{width:542.825856px;}
._13{width:1833.755760px;}
._21{width:2062.831005px;}
._34{width:2080.230502px;}
._20{width:2104.950946px;}
._35{width:2491.579615px;}
._14{width:2514.383760px;}
._1a{width:2515.489615px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsb{font-size:46.922400px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:47.880000px;}
.fsc{font-size:52.920000px;}
.fsa{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fsd{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y1c3{bottom:-735.068790px;}
.y126{bottom:-720.866982px;}
.y1c2{bottom:-714.098934px;}
.y125{bottom:-699.897126px;}
.y1c1{bottom:-693.129078px;}
.y124{bottom:-678.837090px;}
.y1c0{bottom:-672.069042px;}
.y123{bottom:-657.867234px;}
.y1bf{bottom:-651.099186px;}
.y122{bottom:-636.897378px;}
.y1be{bottom:-630.129330px;}
.y121{bottom:-615.837342px;}
.y1bd{bottom:-609.069294px;}
.y120{bottom:-594.867486px;}
.y1bc{bottom:-588.099438px;}
.y11f{bottom:-573.897630px;}
.y1bb{bottom:-562.629600px;}
.y11e{bottom:-552.837594px;}
.y1ba{bottom:-541.569564px;}
.yfc{bottom:-534.302411px;}
.y11d{bottom:-531.867738px;}
.y1b9{bottom:-516.099726px;}
.yfb{bottom:-513.663576px;}
.y11c{bottom:-506.397900px;}
.yfa{bottom:-493.113117px;}
.y1b8{bottom:-477.129942px;}
.yf9{bottom:-472.562658px;}
.y11b{bottom:-467.788050px;}
.y1b7{bottom:-456.069906px;}
.yf8{bottom:-451.923823px;}
.y11a{bottom:-441.868050px;}
.y1b6{bottom:-435.100050px;}
.yf7{bottom:-431.373364px;}
.yf6{bottom:-410.822905px;}
.y1b5{bottom:-396.579900px;}
.yf5{bottom:-390.184070px;}
.y1b4{bottom:-370.660050px;}
.yf4{bottom:-369.633611px;}
.y1dc{bottom:-360.022290px;}
.yf3{bottom:-349.083152px;}
.y1db{bottom:-339.052434px;}
.yf2{bottom:-328.444317px;}
.y1da{bottom:-318.082578px;}
.y113{bottom:-310.711542px;}
.yf1{bottom:-307.893858px;}
.y1d9{bottom:-297.022542px;}
.y112{bottom:-289.651506px;}
.yf0{bottom:-287.343399px;}
.y139{bottom:-286.103982px;}
.y1d8{bottom:-276.052686px;}
.y111{bottom:-268.681650px;}
.y138{bottom:-265.134126px;}
.y1d7{bottom:-255.082830px;}
.yef{bottom:-249.505599px;}
.y110{bottom:-247.711794px;}
.y137{bottom:-244.074090px;}
.y1d6{bottom:-234.022794px;}
.y10f{bottom:-226.651758px;}
.yee{bottom:-224.103311px;}
.y136{bottom:-223.104234px;}
.y1d5{bottom:-213.052938px;}
.y10e{bottom:-205.681902px;}
.y135{bottom:-202.134378px;}
.y1d4{bottom:-187.583100px;}
.y10d{bottom:-184.712046px;}
.y134{bottom:-181.074342px;}
.y1d3{bottom:-166.523064px;}
.y10c{bottom:-163.652010px;}
.y133{bottom:-160.104486px;}
.y10b{bottom:-142.682154px;}
.y1d2{bottom:-141.053226px;}
.y132{bottom:-139.134630px;}
.y10a{bottom:-121.712298px;}
.y131{bottom:-118.074594px;}
.y1d1{bottom:-102.083442px;}
.y109{bottom:-100.652262px;}
.y130{bottom:-97.104738px;}
.yed{bottom:-87.393858px;}
.y1d0{bottom:-81.023406px;}
.y108{bottom:-79.682406px;}
.y12f{bottom:-71.634900px;}
.yec{bottom:-66.843399px;}
.y1cf{bottom:-60.053550px;}
.y107{bottom:-58.712550px;}
.y12e{bottom:-33.025050px;}
.y119{bottom:-32.818050px;}
.y1b3{bottom:-30.370050px;}
.yeb{bottom:-29.006040px;}
.yd9{bottom:-21.818550px;}
.y1ce{bottom:-21.533400px;}
.y221{bottom:-20.865600px;}
.y106{bottom:-20.102550px;}
.y12d{bottom:-7.105050px;}
.y118{bottom:-6.898050px;}
.y1b2{bottom:-4.450050px;}
.y0{bottom:0.000000px;}
.yd8{bottom:4.102926px;}
.y1cd{bottom:4.386450px;}
.y220{bottom:5.056749px;}
.yea{bottom:5.216001px;}
.y105{bottom:5.818152px;}
.y41{bottom:45.921000px;}
.y16{bottom:100.260000px;}
.y28e{bottom:100.572000px;}
.y1fe{bottom:102.462000px;}
.ye6{bottom:103.945500px;}
.yba{bottom:105.348000px;}
.y2d9{bottom:107.440500px;}
.y2e6{bottom:110.400000px;}
.y30b{bottom:112.312500px;}
.y40{bottom:112.659000px;}
.y15{bottom:118.147500px;}
.y94{bottom:118.365000px;}
.y71{bottom:118.797000px;}
.y236{bottom:119.238000px;}
.y28d{bottom:121.464000px;}
.y265{bottom:123.267000px;}
.y1fd{bottom:123.354000px;}
.ye5{bottom:124.836000px;}
.y36b{bottom:125.112000px;}
.yb9{bottom:126.240000px;}
.y2d8{bottom:128.332500px;}
.y2e5{bottom:131.290500px;}
.y30a{bottom:131.811000px;}
.y3f{bottom:133.549500px;}
.y14{bottom:136.035000px;}
.y2f2{bottom:137.298000px;}
.y1a6{bottom:138.034500px;}
.y93{bottom:139.255500px;}
.y70{bottom:139.689000px;}
.y235{bottom:140.130000px;}
.y28c{bottom:142.356000px;}
.y264{bottom:144.159000px;}
.y1fc{bottom:144.244500px;}
.y36a{bottom:144.262500px;}
.y104{bottom:145.317594px;}
.ye4{bottom:145.728000px;}
.yb8{bottom:147.130500px;}
.y2d7{bottom:149.223000px;}
.y309{bottom:151.309500px;}
.y2e4{bottom:152.182500px;}
.y13{bottom:153.924000px;}
.y3e{bottom:154.441500px;}
.y1a5{bottom:154.473000px;}
.y2f1{bottom:158.190000px;}
.y33a{bottom:158.929500px;}
.y92{bottom:160.147500px;}
.y6f{bottom:160.581000px;}
.y234{bottom:161.022000px;}
.y28b{bottom:163.246500px;}
.y369{bottom:163.413000px;}
.y263{bottom:165.051000px;}
.y1fb{bottom:165.136500px;}
.y103{bottom:166.287450px;}
.ye3{bottom:166.620000px;}
.yb7{bottom:168.022500px;}
.y2d6{bottom:170.115000px;}
.y1a1{bottom:170.911500px;}
.y12{bottom:171.811500px;}
.y2e3{bottom:173.074500px;}
.y2b5{bottom:174.598500px;}
.y3d{bottom:175.333500px;}
.y339{bottom:178.080000px;}
.y2f0{bottom:179.082000px;}
.y1a0{bottom:179.130000px;}
.y308{bottom:179.775000px;}
.y1c7{bottom:180.220500px;}
.y127{bottom:180.825000px;}
.y91{bottom:181.039500px;}
.y6e{bottom:181.471500px;}
.y233{bottom:181.912500px;}
.y368{bottom:182.563500px;}
.y28a{bottom:184.138500px;}
.y262{bottom:185.941500px;}
.y1fa{bottom:186.028500px;}
.y1a4{bottom:187.348500px;}
.ye2{bottom:187.510500px;}
.yb6{bottom:188.914500px;}
.y11{bottom:189.699000px;}
.y2d5{bottom:191.007000px;}
.y15e{bottom:192.849000px;}
.y2e2{bottom:193.965000px;}
.y2b4{bottom:195.490500px;}
.y3c{bottom:196.224000px;}
.y338{bottom:197.230500px;}
.y307{bottom:199.273500px;}
.y2ef{bottom:199.972500px;}
.y1c6{bottom:201.112500px;}
.y367{bottom:201.714000px;}
.y90{bottom:201.930000px;}
.y6d{bottom:202.363500px;}
.y232{bottom:202.804500px;}
.y115{bottom:203.254500px;}
.y1a3{bottom:203.787000px;}
.y102{bottom:204.897000px;}
.y261{bottom:206.833500px;}
.y1f9{bottom:206.919000px;}
.y10{bottom:207.586500px;}
.ye1{bottom:208.402500px;}
.y15d{bottom:209.287500px;}
.y289{bottom:209.514000px;}
.yb5{bottom:209.805000px;}
.y2d4{bottom:211.899000px;}
.y2e1{bottom:214.857000px;}
.y2b3{bottom:216.381000px;}
.y3b{bottom:217.116000px;}
.y158{bottom:217.507500px;}
.y306{bottom:218.772000px;}
.y1a2{bottom:220.225500px;}
.y2ee{bottom:220.864500px;}
.y1c5{bottom:222.004500px;}
.y8f{bottom:222.822000px;}
.y6c{bottom:223.255500px;}
.y231{bottom:223.696500px;}
.yf{bottom:225.475500px;}
.y15c{bottom:225.726000px;}
.y260{bottom:227.725500px;}
.y1f8{bottom:227.811000px;}
.ye0{bottom:229.294500px;}
.y288{bottom:230.404500px;}
.yb4{bottom:230.697000px;}
.y2d3{bottom:232.789500px;}
.y156{bottom:233.946000px;}
.y337{bottom:235.531500px;}
.y2e0{bottom:235.749000px;}
.y2b2{bottom:237.273000px;}
.y3a{bottom:238.008000px;}
.y305{bottom:238.270500px;}
.y101{bottom:239.817450px;}
.y366{bottom:240.015000px;}
.y2ed{bottom:241.756500px;}
.y15b{bottom:242.164500px;}
.y8e{bottom:243.714000px;}
.y19f{bottom:243.867000px;}
.y6b{bottom:244.147500px;}
.y230{bottom:244.587000px;}
.y25f{bottom:248.616000px;}
.y1f7{bottom:248.703000px;}
.ydf{bottom:250.185000px;}
.y157{bottom:250.384500px;}
.y287{bottom:251.296500px;}
.yb3{bottom:251.589000px;}
.ye{bottom:252.330000px;}
.y2d2{bottom:253.681500px;}
.y336{bottom:254.682000px;}
.y2df{bottom:256.639500px;}
.y1c4{bottom:257.632500px;}
.y2b1{bottom:258.165000px;}
.y15a{bottom:258.603000px;}
.y39{bottom:258.900000px;}
.y365{bottom:259.165500px;}
.y19e{bottom:260.305500px;}
.y2ec{bottom:262.647000px;}
.y8d{bottom:264.606000px;}
.y6a{bottom:265.038000px;}
.y22f{bottom:265.479000px;}
.y304{bottom:266.736000px;}
.y25e{bottom:269.508000px;}
.y1f6{bottom:269.595000px;}
.yd{bottom:270.217500px;}
.yde{bottom:271.077000px;}
.y286{bottom:272.188500px;}
.yb2{bottom:272.481000px;}
.y335{bottom:273.832500px;}
.y2d1{bottom:274.573500px;}
.y159{bottom:275.041500px;}
.y19a{bottom:276.744000px;}
.y2de{bottom:277.531500px;}
.y364{bottom:278.316000px;}
.y2b0{bottom:279.055500px;}
.y38{bottom:279.790500px;}
.y1af{bottom:283.050000px;}
.y2eb{bottom:283.539000px;}
.y199{bottom:284.962500px;}
.y8c{bottom:285.496500px;}
.y69{bottom:285.930000px;}
.y303{bottom:286.234500px;}
.yc{bottom:288.105000px;}
.y25d{bottom:290.400000px;}
.y1f5{bottom:290.485500px;}
.y22e{bottom:290.853000px;}
.ydd{bottom:291.969000px;}
.y334{bottom:292.984500px;}
.y19d{bottom:293.181000px;}
.yb1{bottom:293.371500px;}
.y2d0{bottom:295.464000px;}
.y363{bottom:297.466500px;}
.y285{bottom:297.562500px;}
.y2dd{bottom:298.423500px;}
.y14f{bottom:298.681500px;}
.y2af{bottom:299.947500px;}
.y37{bottom:300.682500px;}
.y2ea{bottom:304.431000px;}
.y302{bottom:305.734500px;}
.yb{bottom:305.994000px;}
.y8b{bottom:306.388500px;}
.y155{bottom:306.901500px;}
.y19c{bottom:309.619500px;}
.y25c{bottom:311.292000px;}
.y68{bottom:311.304000px;}
.y1f4{bottom:311.377500px;}
.y333{bottom:312.135000px;}
.ydc{bottom:312.861000px;}
.yb0{bottom:314.263500px;}
.y14e{bottom:315.120000px;}
.y2cf{bottom:316.356000px;}
.y362{bottom:316.617000px;}
.y2dc{bottom:319.315500px;}
.y2ae{bottom:320.839500px;}
.y36{bottom:321.574500px;}
.y154{bottom:323.340000px;}
.ya{bottom:323.881500px;}
.y301{bottom:325.233000px;}
.y2e9{bottom:325.323000px;}
.y19b{bottom:326.058000px;}
.y22d{bottom:326.196000px;}
.y8a{bottom:327.280500px;}
.y332{bottom:331.285500px;}
.y14d{bottom:331.558500px;}
.y25b{bottom:332.182500px;}
.y1f3{bottom:332.269500px;}
.ydb{bottom:333.751500px;}
.yaf{bottom:335.155500px;}
.y361{bottom:335.767500px;}
.y2ce{bottom:337.248000px;}
.y153{bottom:339.778500px;}
.y2db{bottom:340.206000px;}
.y2ad{bottom:341.730000px;}
.y9{bottom:341.769000px;}
.y35{bottom:342.465000px;}
.y284{bottom:344.593500px;}
.y1cc{bottom:344.676450px;}
.y2e8{bottom:346.213500px;}
.y67{bottom:346.647000px;}
.y22c{bottom:347.088000px;}
.y149{bottom:347.997000px;}
.y198{bottom:349.699500px;}
.y331{bottom:350.436000px;}
.y89{bottom:352.654500px;}
.y283{bottom:352.813500px;}
.y25a{bottom:353.074500px;}
.y1f2{bottom:353.160000px;}
.y300{bottom:353.697000px;}
.y360{bottom:354.918000px;}
.y117{bottom:355.622085px;}
.yae{bottom:356.046000px;}
.y152{bottom:356.217000px;}
.y2cd{bottom:358.138500px;}
.y8{bottom:359.658000px;}
.y2ac{bottom:362.622000px;}
.y34{bottom:363.357000px;}
.y14c{bottom:364.435500px;}
.y116{bottom:365.251950px;}
.y2da{bottom:365.581500px;}
.y197{bottom:366.138000px;}
.y2e7{bottom:367.105500px;}
.y66{bottom:367.539000px;}
.y22b{bottom:367.978500px;}
.yda{bottom:369.379500px;}
.y330{bottom:369.586500px;}
.y1cb{bottom:370.596450px;}
.y151{bottom:372.655500px;}
.y1b1{bottom:373.100085px;}
.y259{bottom:373.966500px;}
.y1f1{bottom:374.052000px;}
.y35f{bottom:374.070000px;}
.y7{bottom:377.545500px;}
.y2cc{bottom:379.030500px;}
.y14b{bottom:380.874000px;}
.yad{bottom:381.421500px;}
.y2ff{bottom:382.162500px;}
.y193{bottom:382.576500px;}
.y1b0{bottom:382.729950px;}
.y2ab{bottom:383.514000px;}
.y33{bottom:384.249000px;}
.y282{bottom:384.672000px;}
.y88{bottom:387.997500px;}
.y65{bottom:388.429500px;}
.y32f{bottom:388.737000px;}
.y22a{bottom:388.870500px;}
.y150{bottom:389.092500px;}
.y192{bottom:390.795000px;}
.yc2{bottom:391.809000px;}
.y281{bottom:392.892000px;}
.y35e{bottom:393.220500px;}
.y258{bottom:394.857000px;}
.y1f0{bottom:394.944000px;}
.y14a{bottom:397.312500px;}
.y196{bottom:399.013500px;}
.y2cb{bottom:399.922500px;}
.ye9{bottom:401.322333px;}
.y6{bottom:401.410500px;}
.y2fe{bottom:401.661000px;}
.y12c{bottom:401.944950px;}
.y2aa{bottom:404.406000px;}
.y32{bottom:405.139500px;}
.yd7{bottom:406.942998px;}
.y32e{bottom:407.887500px;}
.y87{bottom:408.888000px;}
.y64{bottom:409.321500px;}
.y229{bottom:409.762500px;}
.ye8{bottom:410.759601px;}
.y35d{bottom:412.371000px;}
.y195{bottom:415.452000px;}
.y257{bottom:415.749000px;}
.y1ef{bottom:415.834500px;}
.yac{bottom:416.763000px;}
.y5{bottom:419.299500px;}
.y2ca{bottom:420.813000px;}
.y148{bottom:420.952500px;}
.y2fd{bottom:421.161000px;}
.y21f{bottom:423.646758px;}
.y280{bottom:424.752000px;}
.y2a9{bottom:425.296500px;}
.y31{bottom:426.031500px;}
.y32d{bottom:427.038000px;}
.y12b{bottom:427.864950px;}
.yd6{bottom:427.912854px;}
.y86{bottom:429.780000px;}
.y63{bottom:430.213500px;}
.y228{bottom:430.654500px;}
.y35c{bottom:431.521500px;}
.y194{bottom:431.890500px;}
.y27f{bottom:432.970500px;}
.y256{bottom:436.641000px;}
.y1ee{bottom:436.726500px;}
.y4{bottom:437.187000px;}
.y147{bottom:437.391000px;}
.yab{bottom:437.655000px;}
.y2c9{bottom:441.705000px;}
.y2a8{bottom:446.188500px;}
.y21e{bottom:449.116596px;}
.y2fc{bottom:449.625000px;}
.y85{bottom:450.672000px;}
.y62{bottom:451.104000px;}
.y30{bottom:451.407000px;}
.y227{bottom:451.545000px;}
.yd5{bottom:453.382692px;}
.y3{bottom:455.074500px;}
.y191{bottom:455.532000px;}
.y255{bottom:457.531500px;}
.y1ed{bottom:457.618500px;}
.yaa{bottom:458.547000px;}
.y2c8{bottom:462.597000px;}
.y27e{bottom:464.830500px;}
.y32c{bottom:465.339000px;}
.y2a7{bottom:467.080500px;}
.y2fb{bottom:469.123500px;}
.y35b{bottom:469.822500px;}
.y84{bottom:471.562500px;}
.y190{bottom:471.970500px;}
.y61{bottom:471.996000px;}
.y146{bottom:471.999000px;}
.y226{bottom:472.437000px;}
.y27d{bottom:473.050500px;}
.yd4{bottom:474.442728px;}
.y254{bottom:478.423500px;}
.y1ec{bottom:478.509000px;}
.y2{bottom:478.941000px;}
.ya9{bottom:479.437500px;}
.y2c7{bottom:483.489000px;}
.y32b{bottom:484.489500px;}
.y2a6{bottom:487.971000px;}
.y21d{bottom:488.086380px;}
.y18f{bottom:488.409000px;}
.y2fa{bottom:488.623500px;}
.y35a{bottom:488.973000px;}
.y83{bottom:492.454500px;}
.y225{bottom:493.329000px;}
.yd3{bottom:495.412584px;}
.y18b{bottom:496.627500px;}
.y1{bottom:496.828500px;}
.y60{bottom:497.371500px;}
.y253{bottom:499.315500px;}
.y1eb{bottom:499.401000px;}
.ya8{bottom:500.329500px;}
.y32a{bottom:503.640000px;}
.y2c6{bottom:504.379500px;}
.y18e{bottom:504.846000px;}
.y27c{bottom:504.910500px;}
.y2f9{bottom:508.122000px;}
.y359{bottom:508.123500px;}
.y2a5{bottom:508.863000px;}
.y145{bottom:509.104500px;}
.y21c{bottom:509.146416px;}
.y27b{bottom:513.129000px;}
.y82{bottom:513.346500px;}
.y224{bottom:514.219500px;}
.yd2{bottom:516.382440px;}
.y252{bottom:520.206000px;}
.y1ea{bottom:520.293000px;}
.ya7{bottom:521.221500px;}
.y18d{bottom:521.284500px;}
.y329{bottom:522.790500px;}
.y114{bottom:523.893000px;}
.y2c5{bottom:525.271500px;}
.y358{bottom:527.274000px;}
.y2a4{bottom:529.755000px;}
.y144{bottom:529.995000px;}
.y21b{bottom:530.116272px;}
.y2f{bottom:530.617500px;}
.y5f{bottom:532.713000px;}
.y81{bottom:534.237000px;}
.y2f8{bottom:536.587500px;}
.yd1{bottom:537.442476px;}
.y18c{bottom:537.723000px;}
.y223{bottom:539.595000px;}
.y251{bottom:541.098000px;}
.y1e9{bottom:541.183500px;}
.y328{bottom:541.941000px;}
.ya6{bottom:542.113500px;}
.y27a{bottom:544.989000px;}
.y2c4{bottom:546.163500px;}
.yfe{bottom:546.322500px;}
.y357{bottom:546.424500px;}
.y2a3{bottom:550.645500px;}
.y143{bottom:550.887000px;}
.y21a{bottom:551.086128px;}
.y279{bottom:553.207500px;}
.y5e{bottom:553.605000px;}
.y80{bottom:555.129000px;}
.y2f7{bottom:556.086000px;}
.yd0{bottom:558.412332px;}
.y327{bottom:561.091500px;}
.y18a{bottom:561.364500px;}
.y250{bottom:561.990000px;}
.y1e8{bottom:562.075500px;}
.ya5{bottom:563.004000px;}
.y356{bottom:565.575000px;}
.y2c3{bottom:567.054000px;}
.y2e{bottom:569.442000px;}
.y185{bottom:569.583000px;}
.y2a2{bottom:571.537500px;}
.y222{bottom:571.740000px;}
.y142{bottom:571.779000px;}
.y219{bottom:572.146164px;}
.y5d{bottom:574.497000px;}
.y2f6{bottom:575.584500px;}
.y7f{bottom:576.021000px;}
.y189{bottom:577.803000px;}
.y326{bottom:580.242000px;}
.y24f{bottom:582.882000px;}
.y1e7{bottom:582.967500px;}
.ycf{bottom:583.882170px;}
.ya4{bottom:583.896000px;}
.y355{bottom:584.725500px;}
.y278{bottom:585.067500px;}
.y184{bottom:586.021500px;}
.y2c2{bottom:587.946000px;}
.y2d{bottom:590.334000px;}
.y2a1{bottom:592.429500px;}
.y141{bottom:592.669500px;}
.y218{bottom:593.116020px;}
.y277{bottom:593.287500px;}
.y201{bottom:594.170550px;}
.y181{bottom:594.241500px;}
.y2f5{bottom:595.083000px;}
.y5c{bottom:595.387500px;}
.y7e{bottom:596.913000px;}
.y325{bottom:599.392500px;}
.y180{bottom:602.460000px;}
.y24e{bottom:603.772500px;}
.y1e6{bottom:603.859500px;}
.y354{bottom:603.876000px;}
.yce{bottom:604.942206px;}
.y2c1{bottom:608.838000px;}
.ya3{bottom:609.270000px;}
.y188{bottom:610.678500px;}
.y2c{bottom:611.226000px;}
.y2a0{bottom:613.320000px;}
.y140{bottom:613.561500px;}
.y217{bottom:614.085876px;}
.y2f4{bottom:614.581500px;}
.y5b{bottom:616.279500px;}
.y7d{bottom:617.803500px;}
.y324{bottom:618.543000px;}
.y183{bottom:618.898500px;}
.y353{bottom:623.026500px;}
.y1ae{bottom:623.289000px;}
.y24d{bottom:624.664500px;}
.y1e5{bottom:624.750000px;}
.y276{bottom:625.147500px;}
.ycd{bottom:625.912062px;}
.y187{bottom:627.117000px;}
.y2c0{bottom:629.728500px;}
.y2b{bottom:632.116500px;}
.y275{bottom:633.366000px;}
.y2f3{bottom:634.080000px;}
.y29f{bottom:634.212000px;}
.y13f{bottom:634.453500px;}
.y216{bottom:635.145912px;}
.y182{bottom:635.337000px;}
.y5a{bottom:637.171500px;}
.y323{bottom:637.693500px;}
.y7c{bottom:638.695500px;}
.y352{bottom:642.177000px;}
.y186{bottom:643.555500px;}
.y100{bottom:644.007585px;}
.y1ad{bottom:644.181000px;}
.ya2{bottom:644.613000px;}
.y24c{bottom:645.556500px;}
.y1e4{bottom:645.642000px;}
.ycc{bottom:646.881918px;}
.y2bf{bottom:650.620500px;}
.y2a{bottom:653.008500px;}
.yff{bottom:653.637450px;}
.y29e{bottom:655.104000px;}
.y13e{bottom:655.344000px;}
.y215{bottom:656.115768px;}
.y322{bottom:656.844000px;}
.y59{bottom:658.062000px;}
.y7b{bottom:659.587500px;}
.y351{bottom:661.327500px;}
.y1ac{bottom:665.071500px;}
.y274{bottom:665.226000px;}
.ya1{bottom:665.505000px;}
.y24b{bottom:666.447000px;}
.y1e3{bottom:666.534000px;}
.y17f{bottom:667.197000px;}
.ycb{bottom:667.941954px;}
.y2be{bottom:671.512500px;}
.y273{bottom:673.446000px;}
.y29{bottom:673.900500px;}
.y29d{bottom:675.996000px;}
.y13d{bottom:676.236000px;}
.y214{bottom:677.085624px;}
.y58{bottom:678.954000px;}
.y7a{bottom:680.478000px;}
.y17e{bottom:683.635500px;}
.y1ab{bottom:685.963500px;}
.ya0{bottom:686.395500px;}
.y24a{bottom:687.339000px;}
.y1e2{bottom:687.424500px;}
.yca{bottom:688.911810px;}
.yfd{bottom:691.452000px;}
.y2bd{bottom:692.403000px;}
.y28{bottom:694.791000px;}
.y321{bottom:695.146500px;}
.y29c{bottom:696.886500px;}
.y13c{bottom:697.128000px;}
.y213{bottom:698.145660px;}
.y350{bottom:699.628500px;}
.y57{bottom:699.846000px;}
.y17a{bottom:700.074000px;}
.y79{bottom:701.370000px;}
.y272{bottom:705.306000px;}
.y1aa{bottom:706.855500px;}
.y9f{bottom:707.287500px;}
.y249{bottom:708.231000px;}
.y179{bottom:708.292500px;}
.y1e1{bottom:708.316500px;}
.yc9{bottom:709.881666px;}
.y2bc{bottom:713.295000px;}
.y271{bottom:713.524500px;}
.ye7{bottom:713.881500px;}
.y320{bottom:714.297000px;}
.y27{bottom:715.683000px;}
.y17d{bottom:716.511000px;}
.y29b{bottom:717.778500px;}
.y34f{bottom:718.779000px;}
.y212{bottom:719.115516px;}
.y56{bottom:720.736500px;}
.y78{bottom:722.262000px;}
.y13b{bottom:722.502000px;}
.y1a9{bottom:727.746000px;}
.y9e{bottom:728.179500px;}
.y248{bottom:729.121500px;}
.yc8{bottom:730.941702px;}
.y17c{bottom:732.949500px;}
.y31f{bottom:733.447500px;}
.y1e0{bottom:733.692000px;}
.y2bb{bottom:734.187000px;}
.y26{bottom:736.575000px;}
.y34e{bottom:737.929500px;}
.y29a{bottom:738.670500px;}
.y211{bottom:740.085372px;}
.y55{bottom:741.628500px;}
.y77{bottom:743.152500px;}
.y270{bottom:745.384500px;}
.y1ca{bottom:748.146585px;}
.y17b{bottom:749.388000px;}
.y247{bottom:750.013500px;}
.yc7{bottom:751.911558px;}
.y31e{bottom:752.598000px;}
.y9d{bottom:753.553500px;}
.y26f{bottom:753.603000px;}
.y1df{bottom:754.582500px;}
.y13a{bottom:754.648500px;}
.y2ba{bottom:755.077500px;}
.y34d{bottom:757.081500px;}
.y25{bottom:757.465500px;}
.y1c9{bottom:757.776450px;}
.y299{bottom:759.561000px;}
.y210{bottom:761.145408px;}
.y54{bottom:762.520500px;}
.y76{bottom:764.044500px;}
.y246{bottom:770.905500px;}
.y31d{bottom:771.748500px;}
.yc6{bottom:772.881414px;}
.y178{bottom:773.029500px;}
.y2b9{bottom:775.969500px;}
.y34c{bottom:776.232000px;}
.y128{bottom:777.078000px;}
.y24{bottom:778.357500px;}
.y1de{bottom:779.958000px;}
.y298{bottom:780.453000px;}
.y20f{bottom:782.115264px;}
.y53{bottom:783.411000px;}
.y75{bottom:784.936500px;}
.y26e{bottom:785.463000px;}
.y176{bottom:789.468000px;}
.y12a{bottom:790.385085px;}
.y31c{bottom:790.899000px;}
.y245{bottom:791.796000px;}
.y9c{bottom:792.378000px;}
.y26d{bottom:793.683000px;}
.yc5{bottom:793.941450px;}
.y34b{bottom:795.382500px;}
.yc1{bottom:796.861500px;}
.y1a8{bottom:797.686500px;}
.y23{bottom:799.249500px;}
.y129{bottom:800.014950px;}
.y297{bottom:801.345000px;}
.y20e{bottom:803.085120px;}
.y52{bottom:804.303000px;}
.y74{bottom:805.827000px;}
.y175{bottom:805.906500px;}
.y31b{bottom:810.049500px;}
.y1dd{bottom:812.103000px;}
.y244{bottom:812.688000px;}
.y9b{bottom:813.270000px;}
.y172{bottom:814.125000px;}
.y34a{bottom:814.533000px;}
.yc0{bottom:817.753500px;}
.y296{bottom:822.235500px;}
.y174{bottom:822.343500px;}
.y20d{bottom:824.145156px;}
.y26c{bottom:825.543000px;}
.y73{bottom:826.719000px;}
.y31a{bottom:829.200000px;}
.y51{bottom:829.678500px;}
.y1a7{bottom:830.563500px;}
.y243{bottom:833.580000px;}
.y349{bottom:833.683500px;}
.y26b{bottom:833.761500px;}
.y9a{bottom:834.160500px;}
.y1c8{bottom:837.522000px;}
.y2b8{bottom:838.644000px;}
.y173{bottom:838.782000px;}
.y22{bottom:839.269500px;}
.ybf{bottom:843.127500px;}
.y20c{bottom:845.115012px;}
.y72{bottom:847.611000px;}
.y319{bottom:848.350500px;}
.yc4{bottom:850.101585px;}
.y348{bottom:852.834000px;}
.y242{bottom:854.472000px;}
.y99{bottom:855.052500px;}
.y177{bottom:855.220500px;}
.y21{bottom:855.408000px;}
.y2b7{bottom:859.536000px;}
.yc3{bottom:859.731450px;}
.ybe{bottom:864.019500px;}
.y26a{bottom:865.621500px;}
.y20b{bottom:866.084868px;}
.y318{bottom:867.501000px;}
.y50{bottom:868.503000px;}
.y347{bottom:871.984500px;}
.y269{bottom:873.841500px;}
.y241{bottom:875.362500px;}
.y20{bottom:875.887500px;}
.y171{bottom:878.862000px;}
.y98{bottom:880.428000px;}
.ybd{bottom:884.910000px;}
.y317{bottom:886.651500px;}
.y20a{bottom:887.144904px;}
.y1f{bottom:887.688000px;}
.y4f{bottom:889.393500px;}
.y346{bottom:891.135000px;}
.y170{bottom:895.300500px;}
.y240{bottom:900.738000px;}
.y97{bottom:901.318500px;}
.y268{bottom:905.700000px;}
.ybc{bottom:905.802000px;}
.y209{bottom:908.114760px;}
.y1e{bottom:908.167500px;}
.y4e{bottom:910.285500px;}
.y16d{bottom:911.739000px;}
.y16b{bottom:919.957500px;}
.y1d{bottom:919.966500px;}
.y267{bottom:922.138500px;}
.y96{bottom:922.210500px;}
.y316{bottom:924.952500px;}
.y23f{bottom:925.170000px;}
.ybb{bottom:926.694000px;}
.y16c{bottom:928.176000px;}
.y208{bottom:929.084616px;}
.y345{bottom:929.436000px;}
.y4d{bottom:931.177500px;}
.y1c{bottom:940.446000px;}
.y2b6{bottom:943.102500px;}
.y315{bottom:944.103000px;}
.y16f{bottom:944.614500px;}
.y295{bottom:947.584500px;}
.y95{bottom:947.586000px;}
.y344{bottom:948.586500px;}
.y207{bottom:950.144652px;}
.y4c{bottom:952.068000px;}
.y1b{bottom:956.586000px;}
.y266{bottom:956.748000px;}
.y16e{bottom:961.053000px;}
.y314{bottom:963.253500px;}
.y23e{bottom:963.993000px;}
.y343{bottom:967.737000px;}
.y294{bottom:968.476500px;}
.y206{bottom:971.114508px;}
.y4b{bottom:972.960000px;}
.y313{bottom:982.404000px;}
.y16a{bottom:984.694500px;}
.y23d{bottom:984.885000px;}
.y342{bottom:986.887500px;}
.y293{bottom:989.368500px;}
.y205{bottom:992.084364px;}
.y4a{bottom:993.852000px;}
.y169{bottom:1001.133000px;}
.y1a{bottom:1001.262000px;}
.y312{bottom:1001.554500px;}
.y23c{bottom:1005.777000px;}
.y341{bottom:1006.038000px;}
.y164{bottom:1009.351500px;}
.y292{bottom:1010.260500px;}
.y204{bottom:1013.144400px;}
.y49{bottom:1014.742500px;}
.y200{bottom:1016.700000px;}
.y168{bottom:1017.571500px;}
.y36e{bottom:1020.459000px;}
.y311{bottom:1020.705000px;}
.y340{bottom:1025.188500px;}
.y162{bottom:1025.790000px;}
.y23b{bottom:1026.667500px;}
.y291{bottom:1031.151000px;}
.y167{bottom:1034.008500px;}
.y48{bottom:1035.634500px;}
.y36d{bottom:1039.609500px;}
.y310{bottom:1039.855500px;}
.y19{bottom:1040.086500px;}
.y1ff{bottom:1042.075500px;}
.y163{bottom:1042.228500px;}
.y33f{bottom:1044.339000px;}
.y23a{bottom:1047.559500px;}
.y166{bottom:1050.447000px;}
.y290{bottom:1052.043000px;}
.y47{bottom:1056.526500px;}
.y36c{bottom:1058.760000px;}
.y30f{bottom:1059.007500px;}
.y33e{bottom:1063.489500px;}
.y165{bottom:1066.885500px;}
.y239{bottom:1068.451500px;}
.y203{bottom:1069.304535px;}
.y18{bottom:1071.424500px;}
.y28f{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y30e{bottom:1078.158000px;}
.y202{bottom:1078.934400px;}
.y33d{bottom:1082.640000px;}
.y161{bottom:1090.527000px;}
.y238{bottom:1093.825500px;}
.y30d{bottom:1097.308500px;}
.y45{bottom:1098.309000px;}
.y33c{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.y160{bottom:1106.965500px;}
.y237{bottom:1114.717500px;}
.y30c{bottom:1116.459000px;}
.y44{bottom:1119.201000px;}
.y33b{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y15f{bottom:1141.573500px;}
.y42{bottom:1200.196500px;}
.h20{height:27.655250px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h19{height:38.734848px;}
.h11{height:38.966484px;}
.h1b{height:39.488026px;}
.h15{height:39.761719px;}
.h7{height:43.421105px;}
.h17{height:43.622227px;}
.h10{height:43.646080px;}
.h3{height:43.875290px;}
.hb{height:44.536816px;}
.he{height:48.848947px;}
.h12{height:49.224902px;}
.hd{height:50.229492px;}
.h25{height:50.242615px;}
.h9{height:51.646464px;}
.h8{height:54.276245px;}
.h5{height:54.411312px;}
.h13{height:54.803725px;}
.hc{height:55.922168px;}
.h23{height:71.608848px;}
.h21{height:71.614848px;}
.h4{height:77.469696px;}
.h1c{height:81.722947px;}
.h22{height:81.728947px;}
.h1a{height:104.488848px;}
.h24{height:114.602947px;}
.h14{height:128.899500px;}
.h16{height:304.408500px;}
.h1e{height:317.515500px;}
.h1d{height:324.070500px;}
.hf{height:368.261460px;}
.h18{height:377.959500px;}
.ha{height:388.884000px;}
.h1f{height:406.362450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:540.358500px;}
.w5{width:544.000500px;}
.w4{width:546.186000px;}
.w2{width:549.099000px;}
.w6{width:573.858000px;}
.w3{width:587.360550px;}
.w7{width:624.836550px;}
.w8{width:633.576300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x59{left:-191.419500px;}
.x8e{left:-189.235500px;}
.x5c{left:-185.450790px;}
.x85{left:-79.269450px;}
.x8a{left:-75.628200px;}
.x0{left:0.000000px;}
.x5a{left:4.150500px;}
.x5d{left:6.206878px;}
.x5b{left:36.010394px;}
.x5e{left:37.430610px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x66{left:66.594000px;}
.xa6{left:85.323000px;}
.x67{left:86.761500px;}
.x7f{left:98.341500px;}
.x69{left:101.703000px;}
.x87{left:116.300550px;}
.x8c{left:119.941800px;}
.x89{left:129.457200px;}
.x84{left:133.825950px;}
.x88{left:148.160550px;}
.x8d{left:151.801800px;}
.x7c{left:188.485500px;}
.x81{left:192.420000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x6{left:281.479500px;}
.x4d{left:284.184000px;}
.xf{left:295.696500px;}
.x10{left:303.168000px;}
.x6a{left:311.736000px;}
.x7d{left:313.749000px;}
.x82{left:314.973000px;}
.x4f{left:316.801500px;}
.x6b{left:318.147000px;}
.x75{left:319.975500px;}
.x73{left:321.462000px;}
.x6d{left:322.612500px;}
.x4e{left:324.390000px;}
.x76{left:329.175000px;}
.x6c{left:330.904500px;}
.x53{left:333.171000px;}
.x78{left:334.353000px;}
.x15{left:337.128000px;}
.x98{left:340.848000px;}
.x22{left:344.187000px;}
.x8f{left:346.743000px;}
.x2f{left:349.033500px;}
.x16{left:352.072500px;}
.x79{left:356.074500px;}
.x23{left:359.131500px;}
.x24{left:362.941500px;}
.x30{left:363.978000px;}
.x21{left:366.057000px;}
.x2a{left:370.597500px;}
.x25{left:377.886000px;}
.x3b{left:382.830000px;}
.x18{left:386.142000px;}
.x7a{left:388.474500px;}
.x3c{left:397.774500px;}
.x19{left:401.086500px;}
.x50{left:407.250000px;}
.x3d{left:414.436500px;}
.x80{left:419.407500px;}
.x39{left:424.932000px;}
.x3e{left:429.379500px;}
.x3f{left:433.161000px;}
.x28{left:437.943000px;}
.x3a{left:439.876500px;}
.x40{left:448.104000px;}
.x29{left:452.886000px;}
.x44{left:464.280000px;}
.x45{left:479.224500px;}
.x46{left:483.034500px;}
.x47{left:497.979000px;}
.x9c{left:505.566000px;}
.x9a{left:508.207500px;}
.x99{left:509.883000px;}
.x1a{left:511.197000px;}
.x9b{left:512.290500px;}
.x9d{left:516.439500px;}
.x1b{left:526.140000px;}
.x1c{left:529.854000px;}
.x5f{left:533.200975px;}
.x61{left:541.898628px;}
.x1d{left:544.798500px;}
.x95{left:547.780500px;}
.xa1{left:549.802500px;}
.x62{left:552.421350px;}
.x31{left:562.452000px;}
.xa2{left:564.745500px;}
.x63{left:568.171350px;}
.xa3{left:572.254500px;}
.x32{left:577.395000px;}
.x9{left:578.569500px;}
.x48{left:579.796500px;}
.x33{left:581.206500px;}
.xa{left:586.041000px;}
.xa4{left:587.199000px;}
.x60{left:591.580500px;}
.x49{left:594.741000px;}
.x34{left:596.149500px;}
.x64{left:607.093500px;}
.x2b{left:615.994500px;}
.x71{left:618.205500px;}
.x11{left:620.296500px;}
.x65{left:622.038000px;}
.x74{left:623.047500px;}
.x6e{left:624.762000px;}
.x4a{left:626.091000px;}
.x12{left:627.769500px;}
.x77{left:629.644500px;}
.x2c{left:630.939000px;}
.x6f{left:633.907500px;}
.x86{left:635.960400px;}
.x70{left:637.122000px;}
.x8b{left:639.601650px;}
.x4b{left:641.035500px;}
.x17{left:643.903500px;}
.x92{left:647.995500px;}
.x13{left:651.276000px;}
.xb{left:659.761500px;}
.x26{left:663.799500px;}
.x14{left:666.219000px;}
.xc{left:667.233000px;}
.x96{left:675.840000px;}
.x27{left:678.742500px;}
.x93{left:680.943000px;}
.x97{left:692.962500px;}
.x94{left:698.067000px;}
.x9f{left:707.151000px;}
.xa0{left:712.741500px;}
.x35{left:723.498000px;}
.x1e{left:728.671500px;}
.x90{left:729.703500px;}
.x36{left:738.442500px;}
.xd{left:739.677000px;}
.x37{left:742.252500px;}
.x1f{left:743.616000px;}
.x51{left:745.935000px;}
.xe{left:747.148500px;}
.x68{left:751.140000px;}
.x20{left:754.119000px;}
.x38{left:757.197000px;}
.x52{left:760.878000px;}
.x7b{left:761.973000px;}
.x83{left:763.096500px;}
.x9e{left:766.495500px;}
.x72{left:767.938500px;}
.x4c{left:772.471500px;}
.x7e{left:773.916000px;}
.x2d{left:776.197500px;}
.x54{left:777.825000px;}
.x58{left:785.841000px;}
.x2e{left:791.142000px;}
.x55{left:792.769500px;}
.x56{left:796.561500px;}
.x41{left:799.441500px;}
.x57{left:811.504500px;}
.x42{left:814.384500px;}
.x43{left:818.046000px;}
.x7{left:824.770500px;}
.x8{left:832.243500px;}
.xa5{left:833.962500px;}
.x91{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.226667pt;}
.v5{vertical-align:58.448000pt;}
.ls63{letter-spacing:-0.496992pt;}
.ls59{letter-spacing:-0.192384pt;}
.ls4a{letter-spacing:-0.154976pt;}
.ls44{letter-spacing:-0.151876pt;}
.ls5d{letter-spacing:-0.144288pt;}
.ls5c{letter-spacing:-0.138944pt;}
.ls16{letter-spacing:-0.128256pt;}
.ls61{letter-spacing:-0.122912pt;}
.ls5a{letter-spacing:-0.112224pt;}
.ls56{letter-spacing:-0.106880pt;}
.ls48{letter-spacing:-0.101536pt;}
.ls42{letter-spacing:-0.099505pt;}
.ls62{letter-spacing:-0.090848pt;}
.ls1a{letter-spacing:-0.085504pt;}
.ls3d{letter-spacing:-0.083794pt;}
.ls4b{letter-spacing:-0.080160pt;}
.ls1d{letter-spacing:-0.074816pt;}
.ls3f{letter-spacing:-0.073320pt;}
.ls22{letter-spacing:-0.069472pt;}
.ls47{letter-spacing:-0.064128pt;}
.ls41{letter-spacing:-0.062845pt;}
.ls1f{letter-spacing:-0.058784pt;}
.ls57{letter-spacing:-0.053440pt;}
.ls46{letter-spacing:-0.048096pt;}
.ls40{letter-spacing:-0.047134pt;}
.ls17{letter-spacing:-0.042752pt;}
.ls18{letter-spacing:-0.037408pt;}
.ls49{letter-spacing:-0.032064pt;}
.ls43{letter-spacing:-0.031423pt;}
.ls1e{letter-spacing:-0.026720pt;}
.ls1b{letter-spacing:-0.021376pt;}
.ls3e{letter-spacing:-0.020948pt;}
.ls23{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.015711pt;}
.ls45{letter-spacing:-0.014400pt;}
.ls39{letter-spacing:-0.014112pt;}
.ls55{letter-spacing:-0.012768pt;}
.ls21{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.010474pt;}
.ls19{letter-spacing:-0.005344pt;}
.ls3c{letter-spacing:-0.005237pt;}
.ls64{letter-spacing:-0.004800pt;}
.ls15{letter-spacing:-0.004256pt;}
.ls38{letter-spacing:-0.004171pt;}
.ls7{letter-spacing:0.000000pt;}
.ls70{letter-spacing:0.000711pt;}
.ls6d{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.005344pt;}
.ls29{letter-spacing:0.010474pt;}
.ls30{letter-spacing:0.010688pt;}
.ls2d{letter-spacing:0.015711pt;}
.ls33{letter-spacing:0.016032pt;}
.ls2f{letter-spacing:0.020948pt;}
.lsc{letter-spacing:0.021376pt;}
.ls28{letter-spacing:0.023520pt;}
.ls14{letter-spacing:0.024000pt;}
.ls2c{letter-spacing:0.026186pt;}
.lsf{letter-spacing:0.026720pt;}
.ls27{letter-spacing:0.028224pt;}
.ls13{letter-spacing:0.028800pt;}
.ls2e{letter-spacing:0.031423pt;}
.ls34{letter-spacing:0.032064pt;}
.ls2b{letter-spacing:0.032928pt;}
.ls32{letter-spacing:0.033600pt;}
.ls37{letter-spacing:0.037408pt;}
.ls52{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.042752pt;}
.ls4f{letter-spacing:0.046816pt;}
.ls10{letter-spacing:0.048096pt;}
.ls24{letter-spacing:0.050051pt;}
.ls8{letter-spacing:0.051072pt;}
.lsd{letter-spacing:0.053440pt;}
.ls36{letter-spacing:0.058784pt;}
.ls35{letter-spacing:0.062400pt;}
.ls60{letter-spacing:0.064128pt;}
.ls2a{letter-spacing:0.065856pt;}
.ls31{letter-spacing:0.067200pt;}
.ls1c{letter-spacing:0.074816pt;}
.ls5e{letter-spacing:0.090848pt;}
.lse{letter-spacing:0.106880pt;}
.ls53{letter-spacing:0.112224pt;}
.ls5f{letter-spacing:0.149632pt;}
.ls51{letter-spacing:0.153216pt;}
.ls26{letter-spacing:0.154323pt;}
.lsa{letter-spacing:0.157472pt;}
.ls58{letter-spacing:0.160320pt;}
.ls50{letter-spacing:0.161728pt;}
.ls25{letter-spacing:0.166835pt;}
.ls9{letter-spacing:0.170240pt;}
.ls20{letter-spacing:0.171008pt;}
.ls2{letter-spacing:2.657067pt;}
.ls5b{letter-spacing:3.281216pt;}
.ls0{letter-spacing:7.437600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls6a{letter-spacing:11.954133pt;}
.ls6b{letter-spacing:11.959467pt;}
.ls71{letter-spacing:12.227807pt;}
.ls6e{letter-spacing:13.043493pt;}
.ls4c{letter-spacing:13.070931pt;}
.ls67{letter-spacing:13.283467pt;}
.ls6f{letter-spacing:13.493166pt;}
.ls4e{letter-spacing:13.496002pt;}
.ls6c{letter-spacing:14.611047pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls54{letter-spacing:58.425952pt;}
.ls11{letter-spacing:58.452672pt;}
.ls3{letter-spacing:64.321067pt;}
.ls65{letter-spacing:81.154400pt;}
.ls68{letter-spacing:81.741067pt;}
.ls69{letter-spacing:82.167733pt;}
.ls66{letter-spacing:83.815733pt;}
.ls4d{letter-spacing:289.529600pt;}
.ws83{word-spacing:-53.440000pt;}
.ws58{word-spacing:-13.531008pt;}
.wse2{word-spacing:-13.520320pt;}
.ws43{word-spacing:-13.283467pt;}
.ws16f{word-spacing:-11.955200pt;}
.ws55{word-spacing:-10.810240pt;}
.wse1{word-spacing:-10.801728pt;}
.ws56{word-spacing:-10.640000pt;}
.ws26{word-spacing:-10.626800pt;}
.ws80{word-spacing:-10.594035pt;}
.ws81{word-spacing:-10.427200pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws124{word-spacing:-3.430848pt;}
.wsad{word-spacing:-3.142272pt;}
.ws134{word-spacing:-3.134898pt;}
.wsae{word-spacing:-3.131584pt;}
.wsac{word-spacing:-3.104864pt;}
.ws90{word-spacing:-3.079427pt;}
.ws91{word-spacing:-3.068952pt;}
.ws8f{word-spacing:-3.042767pt;}
.ws156{word-spacing:-2.869229pt;}
.ws11f{word-spacing:-2.853696pt;}
.ws4b{word-spacing:-2.762961pt;}
.ws11e{word-spacing:-2.746816pt;}
.ws15d{word-spacing:-2.497292pt;}
.ws16a{word-spacing:-2.486682pt;}
.ws120{word-spacing:-2.474272pt;}
.ws121{word-spacing:-2.458240pt;}
.ws155{word-spacing:-2.444158pt;}
.ws1f{word-spacing:-2.391024pt;}
.ws4e{word-spacing:-2.284756pt;}
.ws53{word-spacing:-2.231622pt;}
.wsb0{word-spacing:-2.153632pt;}
.wsaf{word-spacing:-2.148288pt;}
.ws93{word-spacing:-2.110559pt;}
.wsb6{word-spacing:-2.105536pt;}
.ws92{word-spacing:-2.105322pt;}
.wsb7{word-spacing:-2.089504pt;}
.wsb5{word-spacing:-2.078816pt;}
.ws52{word-spacing:-2.072221pt;}
.ws99{word-spacing:-2.063425pt;}
.ws174{word-spacing:-2.056294pt;}
.ws9a{word-spacing:-2.047714pt;}
.ws98{word-spacing:-2.037240pt;}
.ws115{word-spacing:-2.014688pt;}
.ws175{word-spacing:-2.008474pt;}
.ws18{word-spacing:-1.912819pt;}
.ws153{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws117{word-spacing:-1.816960pt;}
.ws165{word-spacing:-1.806551pt;}
.ws2{word-spacing:-1.785293pt;}
.ws116{word-spacing:-1.699392pt;}
.ws1d{word-spacing:-1.594016pt;}
.ws110{word-spacing:-1.565792pt;}
.wsc6{word-spacing:-1.560448pt;}
.ws72{word-spacing:-1.544416pt;}
.wsc5{word-spacing:-1.485632pt;}
.wsea{word-spacing:-1.453568pt;}
.ws159{word-spacing:-1.381481pt;}
.ws13a{word-spacing:-1.328347pt;}
.ws17c{word-spacing:-1.291162pt;}
.ws15e{word-spacing:-1.275213pt;}
.ws18a{word-spacing:-1.243341pt;}
.wscf{word-spacing:-1.213088pt;}
.wsca{word-spacing:-1.202400pt;}
.wsce{word-spacing:-1.191712pt;}
.ws78{word-spacing:-1.175680pt;}
.ws46{word-spacing:-1.168945pt;}
.wscb{word-spacing:-1.116896pt;}
.ws166{word-spacing:-1.115811pt;}
.ws151{word-spacing:-1.062677pt;}
.ws103{word-spacing:-1.009543pt;}
.wsb{word-spacing:-0.956410pt;}
.ws2e{word-spacing:-0.903276pt;}
.ws7c{word-spacing:-0.897792pt;}
.wsbb{word-spacing:-0.887104pt;}
.ws9e{word-spacing:-0.869362pt;}
.ws122{word-spacing:-0.865728pt;}
.ws16e{word-spacing:-0.860774pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws48{word-spacing:-0.797008pt;}
.wsdb{word-spacing:-0.765133pt;}
.ws123{word-spacing:-0.758848pt;}
.ws10{word-spacing:-0.743874pt;}
.ws147{word-spacing:-0.690740pt;}
.ws162{word-spacing:-0.637606pt;}
.wsc4{word-spacing:-0.614560pt;}
.ws6e{word-spacing:-0.609216pt;}
.ws37{word-spacing:-0.584473pt;}
.ws195{word-spacing:-0.573850pt;}
.ws76{word-spacing:-0.545088pt;}
.wsf4{word-spacing:-0.534400pt;}
.ws22{word-spacing:-0.531339pt;}
.ws10f{word-spacing:-0.529056pt;}
.wsf5{word-spacing:-0.507680pt;}
.ws36{word-spacing:-0.478205pt;}
.ws129{word-spacing:-0.470272pt;}
.ws18d{word-spacing:-0.430387pt;}
.ws19{word-spacing:-0.425071pt;}
.ws101{word-spacing:-0.371937pt;}
.ws18c{word-spacing:-0.334746pt;}
.ws21{word-spacing:-0.318803pt;}
.ws12d{word-spacing:-0.299264pt;}
.ws187{word-spacing:-0.286925pt;}
.ws77{word-spacing:-0.283232pt;}
.ws7d{word-spacing:-0.277888pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws5f{word-spacing:-0.246848pt;}
.wse3{word-spacing:-0.242592pt;}
.ws85{word-spacing:-0.241911pt;}
.ws19b{word-spacing:-0.239104pt;}
.ws12e{word-spacing:-0.224448pt;}
.wscc{word-spacing:-0.213760pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws113{word-spacing:-0.208416pt;}
.ws75{word-spacing:-0.197728pt;}
.ws63{word-spacing:-0.192384pt;}
.ws16b{word-spacing:-0.191283pt;}
.ws7f{word-spacing:-0.177600pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws12f{word-spacing:-0.153600pt;}
.ws16c{word-spacing:-0.143462pt;}
.ws5e{word-spacing:-0.127680pt;}
.ws84{word-spacing:-0.125126pt;}
.ws62{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.106268pt;}
.ws173{word-spacing:-0.095642pt;}
.ws60{word-spacing:-0.072352pt;}
.ws86{word-spacing:-0.070905pt;}
.wse4{word-spacing:-0.068096pt;}
.ws12a{word-spacing:-0.064128pt;}
.ws57{word-spacing:-0.053440pt;}
.ws29{word-spacing:-0.053134pt;}
.ws82{word-spacing:-0.052371pt;}
.ws167{word-spacing:-0.047821pt;}
.ws1a6{word-spacing:-0.024798pt;}
.ws19e{word-spacing:-0.008764pt;}
.ws186{word-spacing:-0.006656pt;}
.ws19c{word-spacing:-0.005564pt;}
.ws181{word-spacing:-0.005530pt;}
.ws190{word-spacing:-0.003430pt;}
.ws178{word-spacing:-0.003396pt;}
.ws13d{word-spacing:-0.002987pt;}
.ws7{word-spacing:-0.002637pt;}
.ws199{word-spacing:-0.000751pt;}
.ws6{word-spacing:0.000000pt;}
.ws25{word-spacing:0.003199pt;}
.wseb{word-spacing:0.026720pt;}
.ws71{word-spacing:0.037408pt;}
.ws16d{word-spacing:0.047821pt;}
.ws14{word-spacing:0.053134pt;}
.wsef{word-spacing:0.058784pt;}
.ws69{word-spacing:0.064128pt;}
.wsc9{word-spacing:0.074816pt;}
.ws74{word-spacing:0.090848pt;}
.ws8d{word-spacing:0.094080pt;}
.wsde{word-spacing:0.095642pt;}
.wsaa{word-spacing:0.096000pt;}
.wsd4{word-spacing:0.096192pt;}
.ws8c{word-spacing:0.099505pt;}
.wsc3{word-spacing:0.100800pt;}
.wsa9{word-spacing:0.101536pt;}
.ws1e{word-spacing:0.106268pt;}
.ws12c{word-spacing:0.112224pt;}
.wsf1{word-spacing:0.117568pt;}
.wse7{word-spacing:0.120000pt;}
.ws7b{word-spacing:0.122912pt;}
.ws8e{word-spacing:0.127008pt;}
.ws15a{word-spacing:0.128221pt;}
.wsab{word-spacing:0.129600pt;}
.ws88{word-spacing:0.131712pt;}
.ws7e{word-spacing:0.134400pt;}
.ws89{word-spacing:0.136416pt;}
.wsa6{word-spacing:0.139200pt;}
.wsdc{word-spacing:0.143462pt;}
.ws73{word-spacing:0.144288pt;}
.wscd{word-spacing:0.149632pt;}
.wse6{word-spacing:0.158400pt;}
.ws1b{word-spacing:0.159402pt;}
.ws1a5{word-spacing:0.167104pt;}
.ws8a{word-spacing:0.174048pt;}
.wsa7{word-spacing:0.177600pt;}
.wsf0{word-spacing:0.181696pt;}
.wsda{word-spacing:0.191283pt;}
.wsf3{word-spacing:0.192384pt;}
.ws1a{word-spacing:0.212535pt;}
.wsd9{word-spacing:0.239104pt;}
.ws14f{word-spacing:0.253975pt;}
.ws33{word-spacing:0.265669pt;}
.ws18b{word-spacing:0.286925pt;}
.ws34{word-spacing:0.318803pt;}
.ws6a{word-spacing:0.331328pt;}
.wsee{word-spacing:0.358048pt;}
.ws3{word-spacing:0.371660pt;}
.ws42{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.ws6b{word-spacing:0.384768pt;}
.wsa1{word-spacing:0.413732pt;}
.wsbe{word-spacing:0.422176pt;}
.ws35{word-spacing:0.425071pt;}
.wsa2{word-spacing:0.429444pt;}
.wsbf{word-spacing:0.438208pt;}
.ws148{word-spacing:0.478205pt;}
.ws6d{word-spacing:0.480960pt;}
.ws18f{word-spacing:0.526029pt;}
.ws2c{word-spacing:0.531339pt;}
.ws3d{word-spacing:0.584473pt;}
.wsed{word-spacing:0.609216pt;}
.ws14c{word-spacing:0.637606pt;}
.ws10b{word-spacing:0.673344pt;}
.ws59{word-spacing:0.690740pt;}
.ws10a{word-spacing:0.737472pt;}
.wsd6{word-spacing:0.743874pt;}
.ws6c{word-spacing:0.748160pt;}
.wsec{word-spacing:0.774880pt;}
.ws176{word-spacing:0.812954pt;}
.ws15b{word-spacing:0.850142pt;}
.wsff{word-spacing:0.903276pt;}
.wsd7{word-spacing:0.956410pt;}
.ws3f{word-spacing:1.009543pt;}
.wsd2{word-spacing:1.031392pt;}
.wsd3{word-spacing:1.058112pt;}
.ws4d{word-spacing:1.062677pt;}
.ws19f{word-spacing:1.099878pt;}
.ws38{word-spacing:1.115811pt;}
.ws32{word-spacing:1.168945pt;}
.ws1a1{word-spacing:1.195520pt;}
.ws136{word-spacing:1.222079pt;}
.ws131{word-spacing:1.275213pt;}
.ws169{word-spacing:1.291162pt;}
.ws31{word-spacing:1.328347pt;}
.ws114{word-spacing:1.362720pt;}
.ws14d{word-spacing:1.381481pt;}
.ws2a{word-spacing:1.434614pt;}
.wsfc{word-spacing:1.487748pt;}
.ws1a3{word-spacing:1.530266pt;}
.wsf{word-spacing:1.594016pt;}
.ws4a{word-spacing:1.647150pt;}
.ws19d{word-spacing:1.673728pt;}
.ws79{word-spacing:1.694048pt;}
.ws7a{word-spacing:1.699392pt;}
.ws102{word-spacing:1.753418pt;}
.ws24{word-spacing:1.806551pt;}
.ws170{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.912819pt;}
.ws18e{word-spacing:1.960653pt;}
.wsa5{word-spacing:1.963920pt;}
.wsfb{word-spacing:1.965953pt;}
.ws95{word-spacing:1.984868pt;}
.wsc2{word-spacing:2.004000pt;}
.ws11c{word-spacing:2.009344pt;}
.ws49{word-spacing:2.019087pt;}
.wsb2{word-spacing:2.025376pt;}
.ws11d{word-spacing:2.030720pt;}
.ws94{word-spacing:2.047714pt;}
.wsd5{word-spacing:2.072221pt;}
.wsb1{word-spacing:2.089504pt;}
.wsa4{word-spacing:2.115796pt;}
.wsfa{word-spacing:2.142944pt;}
.wsc1{word-spacing:2.158976pt;}
.ws3e{word-spacing:2.178489pt;}
.ws158{word-spacing:2.231622pt;}
.ws9b{word-spacing:2.246724pt;}
.ws127{word-spacing:2.255168pt;}
.ws3c{word-spacing:2.284756pt;}
.wsb8{word-spacing:2.292576pt;}
.ws111{word-spacing:2.335328pt;}
.ws125{word-spacing:2.367392pt;}
.ws126{word-spacing:2.399456pt;}
.wsf9{word-spacing:2.458240pt;}
.ws15f{word-spacing:2.497292pt;}
.ws164{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.wsa3{word-spacing:2.560952pt;}
.wse9{word-spacing:2.602528pt;}
.ws163{word-spacing:2.603559pt;}
.wsc0{word-spacing:2.613216pt;}
.ws4f{word-spacing:2.656693pt;}
.ws106{word-spacing:2.661312pt;}
.ws105{word-spacing:2.693376pt;}
.wse8{word-spacing:2.746816pt;}
.ws47{word-spacing:2.762961pt;}
.ws196{word-spacing:2.773606pt;}
.ws20{word-spacing:2.816095pt;}
.ws180{word-spacing:2.862071pt;}
.ws1ac{word-spacing:2.862507pt;}
.ws17a{word-spacing:2.862959pt;}
.ws188{word-spacing:2.863087pt;}
.ws177{word-spacing:2.863505pt;}
.ws17f{word-spacing:2.864154pt;}
.ws192{word-spacing:2.864521pt;}
.ws183{word-spacing:2.864939pt;}
.ws1ab{word-spacing:2.864981pt;}
.ws1a8{word-spacing:2.865092pt;}
.ws17e{word-spacing:2.865869pt;}
.ws189{word-spacing:2.866739pt;}
.ws1a4{word-spacing:2.867226pt;}
.ws17b{word-spacing:2.867661pt;}
.ws179{word-spacing:2.869248pt;}
.ws8b{word-spacing:2.896127pt;}
.ws182{word-spacing:2.917069pt;}
.ws51{word-spacing:2.922363pt;}
.ws10c{word-spacing:2.923168pt;}
.wsa{word-spacing:2.923409pt;}
.wsa8{word-spacing:2.955232pt;}
.ws12{word-spacing:3.028630pt;}
.ws19a{word-spacing:3.060531pt;}
.ws1ad{word-spacing:3.108352pt;}
.ws45{word-spacing:3.134898pt;}
.ws198{word-spacing:3.156173pt;}
.ws1a7{word-spacing:3.178348pt;}
.ws16{word-spacing:3.185311pt;}
.ws15{word-spacing:3.188032pt;}
.ws146{word-spacing:3.241166pt;}
.wsfd{word-spacing:3.294300pt;}
.wsf6{word-spacing:3.297248pt;}
.ws107{word-spacing:3.302592pt;}
.ws109{word-spacing:3.340000pt;}
.ws135{word-spacing:3.347434pt;}
.ws172{word-spacing:3.443098pt;}
.ws100{word-spacing:3.453701pt;}
.ws3a{word-spacing:3.506835pt;}
.wsa0{word-spacing:3.524582pt;}
.ws9f{word-spacing:3.550767pt;}
.ws137{word-spacing:3.559969pt;}
.wsbd{word-spacing:3.596512pt;}
.ws15c{word-spacing:3.613103pt;}
.wsbc{word-spacing:3.623232pt;}
.ws17d{word-spacing:3.634381pt;}
.ws108{word-spacing:3.655296pt;}
.ws138{word-spacing:3.719371pt;}
.wsfe{word-spacing:3.772505pt;}
.ws17{word-spacing:3.825664pt;}
.wsc{word-spacing:3.878772pt;}
.ws27{word-spacing:3.931906pt;}
.wsf2{word-spacing:3.949216pt;}
.wsf8{word-spacing:3.965248pt;}
.ws161{word-spacing:3.985040pt;}
.wsf7{word-spacing:4.002656pt;}
.ws191{word-spacing:4.064768pt;}
.ws13{word-spacing:4.091308pt;}
.ws4c{word-spacing:4.144442pt;}
.ws150{word-spacing:4.163540pt;}
.ws44{word-spacing:4.197575pt;}
.wsd0{word-spacing:4.253824pt;}
.wsd1{word-spacing:4.285888pt;}
.ws104{word-spacing:4.303843pt;}
.ws23{word-spacing:4.356977pt;}
.ws28{word-spacing:4.410111pt;}
.ws30{word-spacing:4.569513pt;}
.ws68{word-spacing:4.590496pt;}
.ws130{word-spacing:4.622646pt;}
.ws128{word-spacing:4.649280pt;}
.ws67{word-spacing:4.654624pt;}
.ws39{word-spacing:4.675780pt;}
.ws132{word-spacing:4.728914pt;}
.ws157{word-spacing:4.835182pt;}
.ws118{word-spacing:4.852352pt;}
.wse{word-spacing:4.888316pt;}
.ws5c{word-spacing:4.941450pt;}
.ws193{word-spacing:4.973363pt;}
.ws5a{word-spacing:4.994583pt;}
.ws194{word-spacing:5.012794pt;}
.ws149{word-spacing:5.047717pt;}
.ws139{word-spacing:5.100851pt;}
.ws66{word-spacing:5.199712pt;}
.ws133{word-spacing:5.207119pt;}
.ws65{word-spacing:5.210400pt;}
.ws64{word-spacing:5.242464pt;}
.ws50{word-spacing:5.260253pt;}
.ws184{word-spacing:5.308109pt;}
.ws154{word-spacing:5.313387pt;}
.ws40{word-spacing:5.472788pt;}
.ws54{word-spacing:5.632190pt;}
.ws168{word-spacing:5.638692pt;}
.ws96{word-spacing:5.713698pt;}
.ws97{word-spacing:5.718935pt;}
.ws3b{word-spacing:5.738458pt;}
.wsb3{word-spacing:5.830304pt;}
.wsb4{word-spacing:5.835648pt;}
.ws13b{word-spacing:6.057261pt;}
.wsd{word-spacing:6.110395pt;}
.ws14a{word-spacing:6.163529pt;}
.ws14b{word-spacing:6.192505pt;}
.ws14e{word-spacing:6.269796pt;}
.ws152{word-spacing:6.376064pt;}
.ws12b{word-spacing:6.541056pt;}
.ws185{word-spacing:6.694912pt;}
.ws1a0{word-spacing:6.742733pt;}
.ws1a2{word-spacing:6.838374pt;}
.ws41{word-spacing:6.854269pt;}
.ws119{word-spacing:7.086144pt;}
.wsc7{word-spacing:7.091488pt;}
.wsc8{word-spacing:7.150272pt;}
.ws5d{word-spacing:7.438741pt;}
.ws10e{word-spacing:7.449536pt;}
.ws10d{word-spacing:7.486944pt;}
.ws160{word-spacing:7.491875pt;}
.ws9d{word-spacing:8.531268pt;}
.ws9c{word-spacing:8.651722pt;}
.wsba{word-spacing:8.705376pt;}
.wsb9{word-spacing:8.828288pt;}
.ws70{word-spacing:9.020672pt;}
.ws6f{word-spacing:9.074112pt;}
.ws112{word-spacing:9.346656pt;}
.ws11a{word-spacing:9.384064pt;}
.ws11b{word-spacing:9.437504pt;}
.ws171{word-spacing:9.900224pt;}
.ws87{word-spacing:10.122726pt;}
.wse5{word-spacing:10.325056pt;}
.ws61{word-spacing:10.329312pt;}
.ws1aa{word-spacing:10.903142pt;}
.ws1a9{word-spacing:10.905419pt;}
.ws197{word-spacing:11.572634pt;}
.ws1{word-spacing:19.979915pt;}
.wse0{word-spacing:192.096000pt;}
.wsd8{word-spacing:227.097916pt;}
.wsdd{word-spacing:237.453244pt;}
.wsdf{word-spacing:274.106667pt;}
.ws145{word-spacing:313.465677pt;}
.ws13c{word-spacing:321.426270pt;}
.ws144{word-spacing:323.887010pt;}
.ws140{word-spacing:332.976230pt;}
.ws141{word-spacing:333.383603pt;}
.ws142{word-spacing:349.665690pt;}
.ws143{word-spacing:362.361344pt;}
.ws13e{word-spacing:386.463113pt;}
.ws13f{word-spacing:391.460446pt;}
._59{margin-left:-21.997568pt;}
._57{margin-left:-18.592166pt;}
._54{margin-left:-17.699030pt;}
._10{margin-left:-6.615172pt;}
._4{margin-left:-5.260288pt;}
._55{margin-left:-4.351693pt;}
._1{margin-left:-3.459005pt;}
._2{margin-left:-2.045648pt;}
._8{margin-left:-0.988270pt;}
._17{width:0.929837pt;}
._6{width:2.667840pt;}
._58{width:6.073242pt;}
._5a{width:6.981923pt;}
._52{width:8.559923pt;}
._0{width:9.670336pt;}
._3{width:11.530016pt;}
._16{width:12.911530pt;}
._11{width:13.894512pt;}
._f{width:15.302554pt;}
._b{width:16.535220pt;}
._1e{width:17.587310pt;}
._d{width:18.490586pt;}
._15{width:19.585159pt;}
._a{width:20.945331pt;}
._12{width:22.369358pt;}
._1b{width:23.538303pt;}
._c{width:25.217314pt;}
._36{width:26.439393pt;}
._e{width:27.342766pt;}
._9{width:28.267217pt;}
._5{width:29.648896pt;}
._18{width:30.711375pt;}
._19{width:31.646511pt;}
._50{width:32.942997pt;}
._4f{width:35.493423pt;}
._1c{width:37.353108pt;}
._7{width:48.357120pt;}
._56{width:54.993920pt;}
._53{width:78.904320pt;}
._51{width:81.082281pt;}
._1d{width:83.154501pt;}
._1f{width:84.164045pt;}
._33{width:97.621026pt;}
._41{width:142.806511pt;}
._49{width:148.117777pt;}
._4a{width:150.775578pt;}
._43{width:152.112444pt;}
._4e{width:156.101777pt;}
._37{width:160.459102pt;}
._24{width:164.703343pt;}
._3c{width:173.323110pt;}
._2e{width:178.467123pt;}
._4c{width:185.370436pt;}
._45{width:187.975236pt;}
._32{width:202.808013pt;}
._31{width:207.512602pt;}
._47{width:211.886703pt;}
._3e{width:219.800644pt;}
._27{width:276.643328pt;}
._25{width:281.090662pt;}
._30{width:285.824922pt;}
._2f{width:288.550707pt;}
._4b{width:295.381026pt;}
._29{width:296.967168pt;}
._28{width:299.453850pt;}
._2d{width:308.683264pt;}
._39{width:318.290091pt;}
._26{width:325.324902pt;}
._2a{width:344.931430pt;}
._38{width:353.705122pt;}
._3a{width:357.717009pt;}
._42{width:360.374775pt;}
._2b{width:361.620890pt;}
._4d{width:378.210244pt;}
._2c{width:399.734067pt;}
._3b{width:402.275348pt;}
._3d{width:405.443746pt;}
._48{width:419.545233pt;}
._40{width:421.525863pt;}
._23{width:426.083328pt;}
._46{width:427.725790pt;}
._3f{width:429.115042pt;}
._44{width:480.663415pt;}
._22{width:482.511872pt;}
._13{width:1630.005120pt;}
._21{width:1833.627560pt;}
._34{width:1849.093779pt;}
._20{width:1871.067507pt;}
._35{width:2214.737436pt;}
._14{width:2235.007787pt;}
._1a{width:2235.990769pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsb{font-size:41.708800pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.560000pt;}
.fsc{font-size:47.040000pt;}
.fsa{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fsd{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y1c3{bottom:-653.394480pt;}
.y126{bottom:-640.770651pt;}
.y1c2{bottom:-634.754608pt;}
.y125{bottom:-622.130779pt;}
.y1c1{bottom:-616.114736pt;}
.y124{bottom:-603.410747pt;}
.y1c0{bottom:-597.394704pt;}
.y123{bottom:-584.770875pt;}
.y1bf{bottom:-578.754832pt;}
.y122{bottom:-566.131003pt;}
.y1be{bottom:-560.114960pt;}
.y121{bottom:-547.410971pt;}
.y1bd{bottom:-541.394928pt;}
.y120{bottom:-528.771099pt;}
.y1bc{bottom:-522.755056pt;}
.y11f{bottom:-510.131227pt;}
.y1bb{bottom:-500.115200pt;}
.y11e{bottom:-491.411195pt;}
.y1ba{bottom:-481.395168pt;}
.yfc{bottom:-474.935477pt;}
.y11d{bottom:-472.771323pt;}
.y1b9{bottom:-458.755312pt;}
.yfb{bottom:-456.589845pt;}
.y11c{bottom:-450.131467pt;}
.yfa{bottom:-438.322771pt;}
.y1b8{bottom:-424.115504pt;}
.yf9{bottom:-420.055696pt;}
.y11b{bottom:-415.811600pt;}
.y1b7{bottom:-405.395472pt;}
.yf8{bottom:-401.710065pt;}
.y11a{bottom:-392.771600pt;}
.y1b6{bottom:-386.755600pt;}
.yf7{bottom:-383.442990pt;}
.yf6{bottom:-365.175916pt;}
.y1b5{bottom:-352.515467pt;}
.yf5{bottom:-346.830284pt;}
.y1b4{bottom:-329.475600pt;}
.yf4{bottom:-328.563210pt;}
.y1dc{bottom:-320.019813pt;}
.yf3{bottom:-310.296135pt;}
.y1db{bottom:-301.379941pt;}
.yf2{bottom:-291.950504pt;}
.y1da{bottom:-282.740069pt;}
.y113{bottom:-276.188037pt;}
.yf1{bottom:-273.683429pt;}
.y1d9{bottom:-264.020037pt;}
.y112{bottom:-257.468005pt;}
.yf0{bottom:-255.416355pt;}
.y139{bottom:-254.314651pt;}
.y1d8{bottom:-245.380165pt;}
.y111{bottom:-238.828133pt;}
.y138{bottom:-235.674779pt;}
.y1d7{bottom:-226.740293pt;}
.yef{bottom:-221.782755pt;}
.y110{bottom:-220.188261pt;}
.y137{bottom:-216.954747pt;}
.y1d6{bottom:-208.020261pt;}
.y10f{bottom:-201.468229pt;}
.yee{bottom:-199.202943pt;}
.y136{bottom:-198.314875pt;}
.y1d5{bottom:-189.380389pt;}
.y10e{bottom:-182.828357pt;}
.y135{bottom:-179.675003pt;}
.y1d4{bottom:-166.740533pt;}
.y10d{bottom:-164.188485pt;}
.y134{bottom:-160.954971pt;}
.y1d3{bottom:-148.020501pt;}
.y10c{bottom:-145.468453pt;}
.y133{bottom:-142.315099pt;}
.y10b{bottom:-126.828581pt;}
.y1d2{bottom:-125.380645pt;}
.y132{bottom:-123.675227pt;}
.y10a{bottom:-108.188709pt;}
.y131{bottom:-104.955195pt;}
.y1d1{bottom:-90.740837pt;}
.y109{bottom:-89.468677pt;}
.y130{bottom:-86.315323pt;}
.yed{bottom:-77.683429pt;}
.y1d0{bottom:-72.020805pt;}
.y108{bottom:-70.828805pt;}
.y12f{bottom:-63.675467pt;}
.yec{bottom:-59.416355pt;}
.y1cf{bottom:-53.380933pt;}
.y107{bottom:-52.188933pt;}
.y12e{bottom:-29.355600pt;}
.y119{bottom:-29.171600pt;}
.y1b3{bottom:-26.995600pt;}
.yeb{bottom:-25.783147pt;}
.yd9{bottom:-19.394267pt;}
.y1ce{bottom:-19.140800pt;}
.y221{bottom:-18.547200pt;}
.y106{bottom:-17.868933pt;}
.y12d{bottom:-6.315600pt;}
.y118{bottom:-6.131600pt;}
.y1b2{bottom:-3.955600pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.647045pt;}
.y1cd{bottom:3.899067pt;}
.y220{bottom:4.494888pt;}
.yea{bottom:4.636445pt;}
.y105{bottom:5.171691pt;}
.y41{bottom:40.818667pt;}
.y16{bottom:89.120000pt;}
.y28e{bottom:89.397333pt;}
.y1fe{bottom:91.077333pt;}
.ye6{bottom:92.396000pt;}
.yba{bottom:93.642667pt;}
.y2d9{bottom:95.502667pt;}
.y2e6{bottom:98.133333pt;}
.y30b{bottom:99.833333pt;}
.y40{bottom:100.141333pt;}
.y15{bottom:105.020000pt;}
.y94{bottom:105.213333pt;}
.y71{bottom:105.597333pt;}
.y236{bottom:105.989333pt;}
.y28d{bottom:107.968000pt;}
.y265{bottom:109.570667pt;}
.y1fd{bottom:109.648000pt;}
.ye5{bottom:110.965333pt;}
.y36b{bottom:111.210667pt;}
.yb9{bottom:112.213333pt;}
.y2d8{bottom:114.073333pt;}
.y2e5{bottom:116.702667pt;}
.y30a{bottom:117.165333pt;}
.y3f{bottom:118.710667pt;}
.y14{bottom:120.920000pt;}
.y2f2{bottom:122.042667pt;}
.y1a6{bottom:122.697333pt;}
.y93{bottom:123.782667pt;}
.y70{bottom:124.168000pt;}
.y235{bottom:124.560000pt;}
.y28c{bottom:126.538667pt;}
.y264{bottom:128.141333pt;}
.y1fc{bottom:128.217333pt;}
.y36a{bottom:128.233333pt;}
.y104{bottom:129.171195pt;}
.ye4{bottom:129.536000pt;}
.yb8{bottom:130.782667pt;}
.y2d7{bottom:132.642667pt;}
.y309{bottom:134.497333pt;}
.y2e4{bottom:135.273333pt;}
.y13{bottom:136.821333pt;}
.y3e{bottom:137.281333pt;}
.y1a5{bottom:137.309333pt;}
.y2f1{bottom:140.613333pt;}
.y33a{bottom:141.270667pt;}
.y92{bottom:142.353333pt;}
.y6f{bottom:142.738667pt;}
.y234{bottom:143.130667pt;}
.y28b{bottom:145.108000pt;}
.y369{bottom:145.256000pt;}
.y263{bottom:146.712000pt;}
.y1fb{bottom:146.788000pt;}
.y103{bottom:147.811067pt;}
.ye3{bottom:148.106667pt;}
.yb7{bottom:149.353333pt;}
.y2d6{bottom:151.213333pt;}
.y1a1{bottom:151.921333pt;}
.y12{bottom:152.721333pt;}
.y2e3{bottom:153.844000pt;}
.y2b5{bottom:155.198667pt;}
.y3d{bottom:155.852000pt;}
.y339{bottom:158.293333pt;}
.y2f0{bottom:159.184000pt;}
.y1a0{bottom:159.226667pt;}
.y308{bottom:159.800000pt;}
.y1c7{bottom:160.196000pt;}
.y127{bottom:160.733333pt;}
.y91{bottom:160.924000pt;}
.y6e{bottom:161.308000pt;}
.y233{bottom:161.700000pt;}
.y368{bottom:162.278667pt;}
.y28a{bottom:163.678667pt;}
.y262{bottom:165.281333pt;}
.y1fa{bottom:165.358667pt;}
.y1a4{bottom:166.532000pt;}
.ye2{bottom:166.676000pt;}
.yb6{bottom:167.924000pt;}
.y11{bottom:168.621333pt;}
.y2d5{bottom:169.784000pt;}
.y15e{bottom:171.421333pt;}
.y2e2{bottom:172.413333pt;}
.y2b4{bottom:173.769333pt;}
.y3c{bottom:174.421333pt;}
.y338{bottom:175.316000pt;}
.y307{bottom:177.132000pt;}
.y2ef{bottom:177.753333pt;}
.y1c6{bottom:178.766667pt;}
.y367{bottom:179.301333pt;}
.y90{bottom:179.493333pt;}
.y6d{bottom:179.878667pt;}
.y232{bottom:180.270667pt;}
.y115{bottom:180.670667pt;}
.y1a3{bottom:181.144000pt;}
.y102{bottom:182.130667pt;}
.y261{bottom:183.852000pt;}
.y1f9{bottom:183.928000pt;}
.y10{bottom:184.521333pt;}
.ye1{bottom:185.246667pt;}
.y15d{bottom:186.033333pt;}
.y289{bottom:186.234667pt;}
.yb5{bottom:186.493333pt;}
.y2d4{bottom:188.354667pt;}
.y2e1{bottom:190.984000pt;}
.y2b3{bottom:192.338667pt;}
.y3b{bottom:192.992000pt;}
.y158{bottom:193.340000pt;}
.y306{bottom:194.464000pt;}
.y1a2{bottom:195.756000pt;}
.y2ee{bottom:196.324000pt;}
.y1c5{bottom:197.337333pt;}
.y8f{bottom:198.064000pt;}
.y6c{bottom:198.449333pt;}
.y231{bottom:198.841333pt;}
.yf{bottom:200.422667pt;}
.y15c{bottom:200.645333pt;}
.y260{bottom:202.422667pt;}
.y1f8{bottom:202.498667pt;}
.ye0{bottom:203.817333pt;}
.y288{bottom:204.804000pt;}
.yb4{bottom:205.064000pt;}
.y2d3{bottom:206.924000pt;}
.y156{bottom:207.952000pt;}
.y337{bottom:209.361333pt;}
.y2e0{bottom:209.554667pt;}
.y2b2{bottom:210.909333pt;}
.y3a{bottom:211.562667pt;}
.y305{bottom:211.796000pt;}
.y101{bottom:213.171067pt;}
.y366{bottom:213.346667pt;}
.y2ed{bottom:214.894667pt;}
.y15b{bottom:215.257333pt;}
.y8e{bottom:216.634667pt;}
.y19f{bottom:216.770667pt;}
.y6b{bottom:217.020000pt;}
.y230{bottom:217.410667pt;}
.y25f{bottom:220.992000pt;}
.y1f7{bottom:221.069333pt;}
.ydf{bottom:222.386667pt;}
.y157{bottom:222.564000pt;}
.y287{bottom:223.374667pt;}
.yb3{bottom:223.634667pt;}
.ye{bottom:224.293333pt;}
.y2d2{bottom:225.494667pt;}
.y336{bottom:226.384000pt;}
.y2df{bottom:228.124000pt;}
.y1c4{bottom:229.006667pt;}
.y2b1{bottom:229.480000pt;}
.y15a{bottom:229.869333pt;}
.y39{bottom:230.133333pt;}
.y365{bottom:230.369333pt;}
.y19e{bottom:231.382667pt;}
.y2ec{bottom:233.464000pt;}
.y8d{bottom:235.205333pt;}
.y6a{bottom:235.589333pt;}
.y22f{bottom:235.981333pt;}
.y304{bottom:237.098667pt;}
.y25e{bottom:239.562667pt;}
.y1f6{bottom:239.640000pt;}
.yd{bottom:240.193333pt;}
.yde{bottom:240.957333pt;}
.y286{bottom:241.945333pt;}
.yb2{bottom:242.205333pt;}
.y335{bottom:243.406667pt;}
.y2d1{bottom:244.065333pt;}
.y159{bottom:244.481333pt;}
.y19a{bottom:245.994667pt;}
.y2de{bottom:246.694667pt;}
.y364{bottom:247.392000pt;}
.y2b0{bottom:248.049333pt;}
.y38{bottom:248.702667pt;}
.y1af{bottom:251.600000pt;}
.y2eb{bottom:252.034667pt;}
.y199{bottom:253.300000pt;}
.y8c{bottom:253.774667pt;}
.y69{bottom:254.160000pt;}
.y303{bottom:254.430667pt;}
.yc{bottom:256.093333pt;}
.y25d{bottom:258.133333pt;}
.y1f5{bottom:258.209333pt;}
.y22e{bottom:258.536000pt;}
.ydd{bottom:259.528000pt;}
.y334{bottom:260.430667pt;}
.y19d{bottom:260.605333pt;}
.yb1{bottom:260.774667pt;}
.y2d0{bottom:262.634667pt;}
.y363{bottom:264.414667pt;}
.y285{bottom:264.500000pt;}
.y2dd{bottom:265.265333pt;}
.y14f{bottom:265.494667pt;}
.y2af{bottom:266.620000pt;}
.y37{bottom:267.273333pt;}
.y2ea{bottom:270.605333pt;}
.y302{bottom:271.764000pt;}
.yb{bottom:271.994667pt;}
.y8b{bottom:272.345333pt;}
.y155{bottom:272.801333pt;}
.y19c{bottom:275.217333pt;}
.y25c{bottom:276.704000pt;}
.y68{bottom:276.714667pt;}
.y1f4{bottom:276.780000pt;}
.y333{bottom:277.453333pt;}
.ydc{bottom:278.098667pt;}
.yb0{bottom:279.345333pt;}
.y14e{bottom:280.106667pt;}
.y2cf{bottom:281.205333pt;}
.y362{bottom:281.437333pt;}
.y2dc{bottom:283.836000pt;}
.y2ae{bottom:285.190667pt;}
.y36{bottom:285.844000pt;}
.y154{bottom:287.413333pt;}
.ya{bottom:287.894667pt;}
.y301{bottom:289.096000pt;}
.y2e9{bottom:289.176000pt;}
.y19b{bottom:289.829333pt;}
.y22d{bottom:289.952000pt;}
.y8a{bottom:290.916000pt;}
.y332{bottom:294.476000pt;}
.y14d{bottom:294.718667pt;}
.y25b{bottom:295.273333pt;}
.y1f3{bottom:295.350667pt;}
.ydb{bottom:296.668000pt;}
.yaf{bottom:297.916000pt;}
.y361{bottom:298.460000pt;}
.y2ce{bottom:299.776000pt;}
.y153{bottom:302.025333pt;}
.y2db{bottom:302.405333pt;}
.y2ad{bottom:303.760000pt;}
.y9{bottom:303.794667pt;}
.y35{bottom:304.413333pt;}
.y284{bottom:306.305333pt;}
.y1cc{bottom:306.379067pt;}
.y2e8{bottom:307.745333pt;}
.y67{bottom:308.130667pt;}
.y22c{bottom:308.522667pt;}
.y149{bottom:309.330667pt;}
.y198{bottom:310.844000pt;}
.y331{bottom:311.498667pt;}
.y89{bottom:313.470667pt;}
.y283{bottom:313.612000pt;}
.y25a{bottom:313.844000pt;}
.y1f2{bottom:313.920000pt;}
.y300{bottom:314.397333pt;}
.y360{bottom:315.482667pt;}
.y117{bottom:316.108520pt;}
.yae{bottom:316.485333pt;}
.y152{bottom:316.637333pt;}
.y2cd{bottom:318.345333pt;}
.y8{bottom:319.696000pt;}
.y2ac{bottom:322.330667pt;}
.y34{bottom:322.984000pt;}
.y14c{bottom:323.942667pt;}
.y116{bottom:324.668400pt;}
.y2da{bottom:324.961333pt;}
.y197{bottom:325.456000pt;}
.y2e7{bottom:326.316000pt;}
.y66{bottom:326.701333pt;}
.y22b{bottom:327.092000pt;}
.yda{bottom:328.337333pt;}
.y330{bottom:328.521333pt;}
.y1cb{bottom:329.419067pt;}
.y151{bottom:331.249333pt;}
.y1b1{bottom:331.644520pt;}
.y259{bottom:332.414667pt;}
.y1f1{bottom:332.490667pt;}
.y35f{bottom:332.506667pt;}
.y7{bottom:335.596000pt;}
.y2cc{bottom:336.916000pt;}
.y14b{bottom:338.554667pt;}
.yad{bottom:339.041333pt;}
.y2ff{bottom:339.700000pt;}
.y193{bottom:340.068000pt;}
.y1b0{bottom:340.204400pt;}
.y2ab{bottom:340.901333pt;}
.y33{bottom:341.554667pt;}
.y282{bottom:341.930667pt;}
.y88{bottom:344.886667pt;}
.y65{bottom:345.270667pt;}
.y32f{bottom:345.544000pt;}
.y22a{bottom:345.662667pt;}
.y150{bottom:345.860000pt;}
.y192{bottom:347.373333pt;}
.yc2{bottom:348.274667pt;}
.y281{bottom:349.237333pt;}
.y35e{bottom:349.529333pt;}
.y258{bottom:350.984000pt;}
.y1f0{bottom:351.061333pt;}
.y14a{bottom:353.166667pt;}
.y196{bottom:354.678667pt;}
.y2cb{bottom:355.486667pt;}
.ye9{bottom:356.730963pt;}
.y6{bottom:356.809333pt;}
.y2fe{bottom:357.032000pt;}
.y12c{bottom:357.284400pt;}
.y2aa{bottom:359.472000pt;}
.y32{bottom:360.124000pt;}
.yd7{bottom:361.727109pt;}
.y32e{bottom:362.566667pt;}
.y87{bottom:363.456000pt;}
.y64{bottom:363.841333pt;}
.y229{bottom:364.233333pt;}
.ye8{bottom:365.119645pt;}
.y35d{bottom:366.552000pt;}
.y195{bottom:369.290667pt;}
.y257{bottom:369.554667pt;}
.y1ef{bottom:369.630667pt;}
.yac{bottom:370.456000pt;}
.y5{bottom:372.710667pt;}
.y2ca{bottom:374.056000pt;}
.y148{bottom:374.180000pt;}
.y2fd{bottom:374.365333pt;}
.y21f{bottom:376.574896pt;}
.y280{bottom:377.557333pt;}
.y2a9{bottom:378.041333pt;}
.y31{bottom:378.694667pt;}
.y32d{bottom:379.589333pt;}
.y12b{bottom:380.324400pt;}
.yd6{bottom:380.366981pt;}
.y86{bottom:382.026667pt;}
.y63{bottom:382.412000pt;}
.y228{bottom:382.804000pt;}
.y35c{bottom:383.574667pt;}
.y194{bottom:383.902667pt;}
.y27f{bottom:384.862667pt;}
.y256{bottom:388.125333pt;}
.y1ee{bottom:388.201333pt;}
.y4{bottom:388.610667pt;}
.y147{bottom:388.792000pt;}
.yab{bottom:389.026667pt;}
.y2c9{bottom:392.626667pt;}
.y2a8{bottom:396.612000pt;}
.y21e{bottom:399.214752pt;}
.y2fc{bottom:399.666667pt;}
.y85{bottom:400.597333pt;}
.y62{bottom:400.981333pt;}
.y30{bottom:401.250667pt;}
.y227{bottom:401.373333pt;}
.yd5{bottom:403.006837pt;}
.y3{bottom:404.510667pt;}
.y191{bottom:404.917333pt;}
.y255{bottom:406.694667pt;}
.y1ed{bottom:406.772000pt;}
.yaa{bottom:407.597333pt;}
.y2c8{bottom:411.197333pt;}
.y27e{bottom:413.182667pt;}
.y32c{bottom:413.634667pt;}
.y2a7{bottom:415.182667pt;}
.y2fb{bottom:416.998667pt;}
.y35b{bottom:417.620000pt;}
.y84{bottom:419.166667pt;}
.y190{bottom:419.529333pt;}
.y61{bottom:419.552000pt;}
.y146{bottom:419.554667pt;}
.y226{bottom:419.944000pt;}
.y27d{bottom:420.489333pt;}
.yd4{bottom:421.726869pt;}
.y254{bottom:425.265333pt;}
.y1ec{bottom:425.341333pt;}
.y2{bottom:425.725333pt;}
.ya9{bottom:426.166667pt;}
.y2c7{bottom:429.768000pt;}
.y32b{bottom:430.657333pt;}
.y2a6{bottom:433.752000pt;}
.y21d{bottom:433.854560pt;}
.y18f{bottom:434.141333pt;}
.y2fa{bottom:434.332000pt;}
.y35a{bottom:434.642667pt;}
.y83{bottom:437.737333pt;}
.y225{bottom:438.514667pt;}
.yd3{bottom:440.366741pt;}
.y18b{bottom:441.446667pt;}
.y1{bottom:441.625333pt;}
.y60{bottom:442.108000pt;}
.y253{bottom:443.836000pt;}
.y1eb{bottom:443.912000pt;}
.ya8{bottom:444.737333pt;}
.y32a{bottom:447.680000pt;}
.y2c6{bottom:448.337333pt;}
.y18e{bottom:448.752000pt;}
.y27c{bottom:448.809333pt;}
.y2f9{bottom:451.664000pt;}
.y359{bottom:451.665333pt;}
.y2a5{bottom:452.322667pt;}
.y145{bottom:452.537333pt;}
.y21c{bottom:452.574592pt;}
.y27b{bottom:456.114667pt;}
.y82{bottom:456.308000pt;}
.y224{bottom:457.084000pt;}
.yd2{bottom:459.006613pt;}
.y252{bottom:462.405333pt;}
.y1ea{bottom:462.482667pt;}
.ya7{bottom:463.308000pt;}
.y18d{bottom:463.364000pt;}
.y329{bottom:464.702667pt;}
.y114{bottom:465.682667pt;}
.y2c5{bottom:466.908000pt;}
.y358{bottom:468.688000pt;}
.y2a4{bottom:470.893333pt;}
.y144{bottom:471.106667pt;}
.y21b{bottom:471.214464pt;}
.y2f{bottom:471.660000pt;}
.y5f{bottom:473.522667pt;}
.y81{bottom:474.877333pt;}
.y2f8{bottom:476.966667pt;}
.yd1{bottom:477.726645pt;}
.y18c{bottom:477.976000pt;}
.y223{bottom:479.640000pt;}
.y251{bottom:480.976000pt;}
.y1e9{bottom:481.052000pt;}
.y328{bottom:481.725333pt;}
.ya6{bottom:481.878667pt;}
.y27a{bottom:484.434667pt;}
.y2c4{bottom:485.478667pt;}
.yfe{bottom:485.620000pt;}
.y357{bottom:485.710667pt;}
.y2a3{bottom:489.462667pt;}
.y143{bottom:489.677333pt;}
.y21a{bottom:489.854336pt;}
.y279{bottom:491.740000pt;}
.y5e{bottom:492.093333pt;}
.y80{bottom:493.448000pt;}
.y2f7{bottom:494.298667pt;}
.yd0{bottom:496.366517pt;}
.y327{bottom:498.748000pt;}
.y18a{bottom:498.990667pt;}
.y250{bottom:499.546667pt;}
.y1e8{bottom:499.622667pt;}
.ya5{bottom:500.448000pt;}
.y356{bottom:502.733333pt;}
.y2c3{bottom:504.048000pt;}
.y2e{bottom:506.170667pt;}
.y185{bottom:506.296000pt;}
.y2a2{bottom:508.033333pt;}
.y222{bottom:508.213333pt;}
.y142{bottom:508.248000pt;}
.y219{bottom:508.574368pt;}
.y5d{bottom:510.664000pt;}
.y2f6{bottom:511.630667pt;}
.y7f{bottom:512.018667pt;}
.y189{bottom:513.602667pt;}
.y326{bottom:515.770667pt;}
.y24f{bottom:518.117333pt;}
.y1e7{bottom:518.193333pt;}
.ycf{bottom:519.006373pt;}
.ya4{bottom:519.018667pt;}
.y355{bottom:519.756000pt;}
.y278{bottom:520.060000pt;}
.y184{bottom:520.908000pt;}
.y2c2{bottom:522.618667pt;}
.y2d{bottom:524.741333pt;}
.y2a1{bottom:526.604000pt;}
.y141{bottom:526.817333pt;}
.y218{bottom:527.214240pt;}
.y277{bottom:527.366667pt;}
.y201{bottom:528.151600pt;}
.y181{bottom:528.214667pt;}
.y2f5{bottom:528.962667pt;}
.y5c{bottom:529.233333pt;}
.y7e{bottom:530.589333pt;}
.y325{bottom:532.793333pt;}
.y180{bottom:535.520000pt;}
.y24e{bottom:536.686667pt;}
.y1e6{bottom:536.764000pt;}
.y354{bottom:536.778667pt;}
.yce{bottom:537.726405pt;}
.y2c1{bottom:541.189333pt;}
.ya3{bottom:541.573333pt;}
.y188{bottom:542.825333pt;}
.y2c{bottom:543.312000pt;}
.y2a0{bottom:545.173333pt;}
.y140{bottom:545.388000pt;}
.y217{bottom:545.854112pt;}
.y2f4{bottom:546.294667pt;}
.y5b{bottom:547.804000pt;}
.y7d{bottom:549.158667pt;}
.y324{bottom:549.816000pt;}
.y183{bottom:550.132000pt;}
.y353{bottom:553.801333pt;}
.y1ae{bottom:554.034667pt;}
.y24d{bottom:555.257333pt;}
.y1e5{bottom:555.333333pt;}
.y276{bottom:555.686667pt;}
.ycd{bottom:556.366277pt;}
.y187{bottom:557.437333pt;}
.y2c0{bottom:559.758667pt;}
.y2b{bottom:561.881333pt;}
.y275{bottom:562.992000pt;}
.y2f3{bottom:563.626667pt;}
.y29f{bottom:563.744000pt;}
.y13f{bottom:563.958667pt;}
.y216{bottom:564.574144pt;}
.y182{bottom:564.744000pt;}
.y5a{bottom:566.374667pt;}
.y323{bottom:566.838667pt;}
.y7c{bottom:567.729333pt;}
.y352{bottom:570.824000pt;}
.y186{bottom:572.049333pt;}
.y100{bottom:572.451187pt;}
.y1ad{bottom:572.605333pt;}
.ya2{bottom:572.989333pt;}
.y24c{bottom:573.828000pt;}
.y1e4{bottom:573.904000pt;}
.ycc{bottom:575.006149pt;}
.y2bf{bottom:578.329333pt;}
.y2a{bottom:580.452000pt;}
.yff{bottom:581.011067pt;}
.y29e{bottom:582.314667pt;}
.y13e{bottom:582.528000pt;}
.y215{bottom:583.214016pt;}
.y322{bottom:583.861333pt;}
.y59{bottom:584.944000pt;}
.y7b{bottom:586.300000pt;}
.y351{bottom:587.846667pt;}
.y1ac{bottom:591.174667pt;}
.y274{bottom:591.312000pt;}
.ya1{bottom:591.560000pt;}
.y24b{bottom:592.397333pt;}
.y1e3{bottom:592.474667pt;}
.y17f{bottom:593.064000pt;}
.ycb{bottom:593.726181pt;}
.y2be{bottom:596.900000pt;}
.y273{bottom:598.618667pt;}
.y29{bottom:599.022667pt;}
.y29d{bottom:600.885333pt;}
.y13d{bottom:601.098667pt;}
.y214{bottom:601.853888pt;}
.y58{bottom:603.514667pt;}
.y7a{bottom:604.869333pt;}
.y17e{bottom:607.676000pt;}
.y1ab{bottom:609.745333pt;}
.ya0{bottom:610.129333pt;}
.y24a{bottom:610.968000pt;}
.y1e2{bottom:611.044000pt;}
.yca{bottom:612.366053pt;}
.yfd{bottom:614.624000pt;}
.y2bd{bottom:615.469333pt;}
.y28{bottom:617.592000pt;}
.y321{bottom:617.908000pt;}
.y29c{bottom:619.454667pt;}
.y13c{bottom:619.669333pt;}
.y213{bottom:620.573920pt;}
.y350{bottom:621.892000pt;}
.y57{bottom:622.085333pt;}
.y17a{bottom:622.288000pt;}
.y79{bottom:623.440000pt;}
.y272{bottom:626.938667pt;}
.y1aa{bottom:628.316000pt;}
.y9f{bottom:628.700000pt;}
.y249{bottom:629.538667pt;}
.y179{bottom:629.593333pt;}
.y1e1{bottom:629.614667pt;}
.yc9{bottom:631.005925pt;}
.y2bc{bottom:634.040000pt;}
.y271{bottom:634.244000pt;}
.ye7{bottom:634.561333pt;}
.y320{bottom:634.930667pt;}
.y27{bottom:636.162667pt;}
.y17d{bottom:636.898667pt;}
.y29b{bottom:638.025333pt;}
.y34f{bottom:638.914667pt;}
.y212{bottom:639.213792pt;}
.y56{bottom:640.654667pt;}
.y78{bottom:642.010667pt;}
.y13b{bottom:642.224000pt;}
.y1a9{bottom:646.885333pt;}
.y9e{bottom:647.270667pt;}
.y248{bottom:648.108000pt;}
.yc8{bottom:649.725957pt;}
.y17c{bottom:651.510667pt;}
.y31f{bottom:651.953333pt;}
.y1e0{bottom:652.170667pt;}
.y2bb{bottom:652.610667pt;}
.y26{bottom:654.733333pt;}
.y34e{bottom:655.937333pt;}
.y29a{bottom:656.596000pt;}
.y211{bottom:657.853664pt;}
.y55{bottom:659.225333pt;}
.y77{bottom:660.580000pt;}
.y270{bottom:662.564000pt;}
.y1ca{bottom:665.019187pt;}
.y17b{bottom:666.122667pt;}
.y247{bottom:666.678667pt;}
.yc7{bottom:668.365829pt;}
.y31e{bottom:668.976000pt;}
.y9d{bottom:669.825333pt;}
.y26f{bottom:669.869333pt;}
.y1df{bottom:670.740000pt;}
.y13a{bottom:670.798667pt;}
.y2ba{bottom:671.180000pt;}
.y34d{bottom:672.961333pt;}
.y25{bottom:673.302667pt;}
.y1c9{bottom:673.579067pt;}
.y299{bottom:675.165333pt;}
.y210{bottom:676.573696pt;}
.y54{bottom:677.796000pt;}
.y76{bottom:679.150667pt;}
.y246{bottom:685.249333pt;}
.y31d{bottom:685.998667pt;}
.yc6{bottom:687.005701pt;}
.y178{bottom:687.137333pt;}
.y2b9{bottom:689.750667pt;}
.y34c{bottom:689.984000pt;}
.y128{bottom:690.736000pt;}
.y24{bottom:691.873333pt;}
.y1de{bottom:693.296000pt;}
.y298{bottom:693.736000pt;}
.y20f{bottom:695.213568pt;}
.y53{bottom:696.365333pt;}
.y75{bottom:697.721333pt;}
.y26e{bottom:698.189333pt;}
.y176{bottom:701.749333pt;}
.y12a{bottom:702.564520pt;}
.y31c{bottom:703.021333pt;}
.y245{bottom:703.818667pt;}
.y9c{bottom:704.336000pt;}
.y26d{bottom:705.496000pt;}
.yc5{bottom:705.725733pt;}
.y34b{bottom:707.006667pt;}
.yc1{bottom:708.321333pt;}
.y1a8{bottom:709.054667pt;}
.y23{bottom:710.444000pt;}
.y129{bottom:711.124400pt;}
.y297{bottom:712.306667pt;}
.y20e{bottom:713.853440pt;}
.y52{bottom:714.936000pt;}
.y74{bottom:716.290667pt;}
.y175{bottom:716.361333pt;}
.y31b{bottom:720.044000pt;}
.y1dd{bottom:721.869333pt;}
.y244{bottom:722.389333pt;}
.y9b{bottom:722.906667pt;}
.y172{bottom:723.666667pt;}
.y34a{bottom:724.029333pt;}
.yc0{bottom:726.892000pt;}
.y296{bottom:730.876000pt;}
.y174{bottom:730.972000pt;}
.y20d{bottom:732.573472pt;}
.y26c{bottom:733.816000pt;}
.y73{bottom:734.861333pt;}
.y31a{bottom:737.066667pt;}
.y51{bottom:737.492000pt;}
.y1a7{bottom:738.278667pt;}
.y243{bottom:740.960000pt;}
.y349{bottom:741.052000pt;}
.y26b{bottom:741.121333pt;}
.y9a{bottom:741.476000pt;}
.y1c8{bottom:744.464000pt;}
.y2b8{bottom:745.461333pt;}
.y173{bottom:745.584000pt;}
.y22{bottom:746.017333pt;}
.ybf{bottom:749.446667pt;}
.y20c{bottom:751.213344pt;}
.y72{bottom:753.432000pt;}
.y319{bottom:754.089333pt;}
.yc4{bottom:755.645853pt;}
.y348{bottom:758.074667pt;}
.y242{bottom:759.530667pt;}
.y99{bottom:760.046667pt;}
.y177{bottom:760.196000pt;}
.y21{bottom:760.362667pt;}
.y2b7{bottom:764.032000pt;}
.yc3{bottom:764.205733pt;}
.ybe{bottom:768.017333pt;}
.y26a{bottom:769.441333pt;}
.y20b{bottom:769.853216pt;}
.y318{bottom:771.112000pt;}
.y50{bottom:772.002667pt;}
.y347{bottom:775.097333pt;}
.y269{bottom:776.748000pt;}
.y241{bottom:778.100000pt;}
.y20{bottom:778.566667pt;}
.y171{bottom:781.210667pt;}
.y98{bottom:782.602667pt;}
.ybd{bottom:786.586667pt;}
.y317{bottom:788.134667pt;}
.y20a{bottom:788.573248pt;}
.y1f{bottom:789.056000pt;}
.y4f{bottom:790.572000pt;}
.y346{bottom:792.120000pt;}
.y170{bottom:795.822667pt;}
.y240{bottom:800.656000pt;}
.y97{bottom:801.172000pt;}
.y268{bottom:805.066667pt;}
.ybc{bottom:805.157333pt;}
.y209{bottom:807.213120pt;}
.y1e{bottom:807.260000pt;}
.y4e{bottom:809.142667pt;}
.y16d{bottom:810.434667pt;}
.y16b{bottom:817.740000pt;}
.y1d{bottom:817.748000pt;}
.y267{bottom:819.678667pt;}
.y96{bottom:819.742667pt;}
.y316{bottom:822.180000pt;}
.y23f{bottom:822.373333pt;}
.ybb{bottom:823.728000pt;}
.y16c{bottom:825.045333pt;}
.y208{bottom:825.852992pt;}
.y345{bottom:826.165333pt;}
.y4d{bottom:827.713333pt;}
.y1c{bottom:835.952000pt;}
.y2b6{bottom:838.313333pt;}
.y315{bottom:839.202667pt;}
.y16f{bottom:839.657333pt;}
.y295{bottom:842.297333pt;}
.y95{bottom:842.298667pt;}
.y344{bottom:843.188000pt;}
.y207{bottom:844.573024pt;}
.y4c{bottom:846.282667pt;}
.y1b{bottom:850.298667pt;}
.y266{bottom:850.442667pt;}
.y16e{bottom:854.269333pt;}
.y314{bottom:856.225333pt;}
.y23e{bottom:856.882667pt;}
.y343{bottom:860.210667pt;}
.y294{bottom:860.868000pt;}
.y206{bottom:863.212896pt;}
.y4b{bottom:864.853333pt;}
.y313{bottom:873.248000pt;}
.y16a{bottom:875.284000pt;}
.y23d{bottom:875.453333pt;}
.y342{bottom:877.233333pt;}
.y293{bottom:879.438667pt;}
.y205{bottom:881.852768pt;}
.y4a{bottom:883.424000pt;}
.y169{bottom:889.896000pt;}
.y1a{bottom:890.010667pt;}
.y312{bottom:890.270667pt;}
.y23c{bottom:894.024000pt;}
.y341{bottom:894.256000pt;}
.y164{bottom:897.201333pt;}
.y292{bottom:898.009333pt;}
.y204{bottom:900.572800pt;}
.y49{bottom:901.993333pt;}
.y200{bottom:903.733333pt;}
.y168{bottom:904.508000pt;}
.y36e{bottom:907.074667pt;}
.y311{bottom:907.293333pt;}
.y340{bottom:911.278667pt;}
.y162{bottom:911.813333pt;}
.y23b{bottom:912.593333pt;}
.y291{bottom:916.578667pt;}
.y167{bottom:919.118667pt;}
.y48{bottom:920.564000pt;}
.y36d{bottom:924.097333pt;}
.y310{bottom:924.316000pt;}
.y19{bottom:924.521333pt;}
.y1ff{bottom:926.289333pt;}
.y163{bottom:926.425333pt;}
.y33f{bottom:928.301333pt;}
.y23a{bottom:931.164000pt;}
.y166{bottom:933.730667pt;}
.y290{bottom:935.149333pt;}
.y47{bottom:939.134667pt;}
.y36c{bottom:941.120000pt;}
.y30f{bottom:941.340000pt;}
.y33e{bottom:945.324000pt;}
.y165{bottom:948.342667pt;}
.y239{bottom:949.734667pt;}
.y203{bottom:950.492920pt;}
.y18{bottom:952.377333pt;}
.y28f{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y30e{bottom:958.362667pt;}
.y202{bottom:959.052800pt;}
.y33d{bottom:962.346667pt;}
.y161{bottom:969.357333pt;}
.y238{bottom:972.289333pt;}
.y30d{bottom:975.385333pt;}
.y45{bottom:976.274667pt;}
.y33c{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.y160{bottom:983.969333pt;}
.y237{bottom:990.860000pt;}
.y30c{bottom:992.408000pt;}
.y44{bottom:994.845333pt;}
.y33b{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y15f{bottom:1014.732000pt;}
.y42{bottom:1066.841333pt;}
.h20{height:24.582445pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h19{height:34.430976pt;}
.h11{height:34.636875pt;}
.h1b{height:35.100467pt;}
.h15{height:35.343750pt;}
.h7{height:38.596538pt;}
.h17{height:38.775312pt;}
.h10{height:38.796516pt;}
.h3{height:39.000258pt;}
.hb{height:39.588281pt;}
.he{height:43.421286pt;}
.h12{height:43.755469pt;}
.hd{height:44.648438pt;}
.h25{height:44.660102pt;}
.h9{height:45.907968pt;}
.h8{height:48.245551pt;}
.h5{height:48.365611pt;}
.h13{height:48.714422pt;}
.hc{height:49.708594pt;}
.h23{height:63.652309pt;}
.h21{height:63.657643pt;}
.h4{height:68.861952pt;}
.h1c{height:72.642620pt;}
.h22{height:72.647953pt;}
.h1a{height:92.878976pt;}
.h24{height:101.869286pt;}
.h14{height:114.577333pt;}
.h16{height:270.585333pt;}
.h1e{height:282.236000pt;}
.h1d{height:288.062667pt;}
.hf{height:327.343520pt;}
.h18{height:335.964000pt;}
.ha{height:345.674667pt;}
.h1f{height:361.211067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:480.318667pt;}
.w5{width:483.556000pt;}
.w4{width:485.498667pt;}
.w2{width:488.088000pt;}
.w6{width:510.096000pt;}
.w3{width:522.098267pt;}
.w7{width:555.410267pt;}
.w8{width:563.178933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x59{left:-170.150667pt;}
.x8e{left:-168.209333pt;}
.x5c{left:-164.845147pt;}
.x85{left:-70.461733pt;}
.x8a{left:-67.225067pt;}
.x0{left:0.000000pt;}
.x5a{left:3.689333pt;}
.x5d{left:5.517225pt;}
.x5b{left:32.009239pt;}
.x5e{left:33.271653pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x66{left:59.194667pt;}
.xa6{left:75.842667pt;}
.x67{left:77.121333pt;}
.x7f{left:87.414667pt;}
.x69{left:90.402667pt;}
.x87{left:103.378267pt;}
.x8c{left:106.614933pt;}
.x89{left:115.073067pt;}
.x84{left:118.956400pt;}
.x88{left:131.698267pt;}
.x8d{left:134.934933pt;}
.x7c{left:167.542667pt;}
.x81{left:171.040000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x6{left:250.204000pt;}
.x4d{left:252.608000pt;}
.xf{left:262.841333pt;}
.x10{left:269.482667pt;}
.x6a{left:277.098667pt;}
.x7d{left:278.888000pt;}
.x82{left:279.976000pt;}
.x4f{left:281.601333pt;}
.x6b{left:282.797333pt;}
.x75{left:284.422667pt;}
.x73{left:285.744000pt;}
.x6d{left:286.766667pt;}
.x4e{left:288.346667pt;}
.x76{left:292.600000pt;}
.x6c{left:294.137333pt;}
.x53{left:296.152000pt;}
.x78{left:297.202667pt;}
.x15{left:299.669333pt;}
.x98{left:302.976000pt;}
.x22{left:305.944000pt;}
.x8f{left:308.216000pt;}
.x2f{left:310.252000pt;}
.x16{left:312.953333pt;}
.x79{left:316.510667pt;}
.x23{left:319.228000pt;}
.x24{left:322.614667pt;}
.x30{left:323.536000pt;}
.x21{left:325.384000pt;}
.x2a{left:329.420000pt;}
.x25{left:335.898667pt;}
.x3b{left:340.293333pt;}
.x18{left:343.237333pt;}
.x7a{left:345.310667pt;}
.x3c{left:353.577333pt;}
.x19{left:356.521333pt;}
.x50{left:362.000000pt;}
.x3d{left:368.388000pt;}
.x80{left:372.806667pt;}
.x39{left:377.717333pt;}
.x3e{left:381.670667pt;}
.x3f{left:385.032000pt;}
.x28{left:389.282667pt;}
.x3a{left:391.001333pt;}
.x40{left:398.314667pt;}
.x29{left:402.565333pt;}
.x44{left:412.693333pt;}
.x45{left:425.977333pt;}
.x46{left:429.364000pt;}
.x47{left:442.648000pt;}
.x9c{left:449.392000pt;}
.x9a{left:451.740000pt;}
.x99{left:453.229333pt;}
.x1a{left:454.397333pt;}
.x9b{left:455.369333pt;}
.x9d{left:459.057333pt;}
.x1b{left:467.680000pt;}
.x1c{left:470.981333pt;}
.x5f{left:473.956423pt;}
.x61{left:481.687669pt;}
.x1d{left:484.265333pt;}
.x95{left:486.916000pt;}
.xa1{left:488.713333pt;}
.x62{left:491.041200pt;}
.x31{left:499.957333pt;}
.xa2{left:501.996000pt;}
.x63{left:505.041200pt;}
.xa3{left:508.670667pt;}
.x32{left:513.240000pt;}
.x9{left:514.284000pt;}
.x48{left:515.374667pt;}
.x33{left:516.628000pt;}
.xa{left:520.925333pt;}
.xa4{left:521.954667pt;}
.x60{left:525.849333pt;}
.x49{left:528.658667pt;}
.x34{left:529.910667pt;}
.x64{left:539.638667pt;}
.x2b{left:547.550667pt;}
.x71{left:549.516000pt;}
.x11{left:551.374667pt;}
.x65{left:552.922667pt;}
.x74{left:553.820000pt;}
.x6e{left:555.344000pt;}
.x4a{left:556.525333pt;}
.x12{left:558.017333pt;}
.x77{left:559.684000pt;}
.x2c{left:560.834667pt;}
.x6f{left:563.473333pt;}
.x86{left:565.298133pt;}
.x70{left:566.330667pt;}
.x8b{left:568.534800pt;}
.x4b{left:569.809333pt;}
.x17{left:572.358667pt;}
.x92{left:575.996000pt;}
.x13{left:578.912000pt;}
.xb{left:586.454667pt;}
.x26{left:590.044000pt;}
.x14{left:592.194667pt;}
.xc{left:593.096000pt;}
.x96{left:600.746667pt;}
.x27{left:603.326667pt;}
.x93{left:605.282667pt;}
.x97{left:615.966667pt;}
.x94{left:620.504000pt;}
.x9f{left:628.578667pt;}
.xa0{left:633.548000pt;}
.x35{left:643.109333pt;}
.x1e{left:647.708000pt;}
.x90{left:648.625333pt;}
.x36{left:656.393333pt;}
.xd{left:657.490667pt;}
.x37{left:659.780000pt;}
.x1f{left:660.992000pt;}
.x51{left:663.053333pt;}
.xe{left:664.132000pt;}
.x68{left:667.680000pt;}
.x20{left:670.328000pt;}
.x38{left:673.064000pt;}
.x52{left:676.336000pt;}
.x7b{left:677.309333pt;}
.x83{left:678.308000pt;}
.x9e{left:681.329333pt;}
.x72{left:682.612000pt;}
.x4c{left:686.641333pt;}
.x7e{left:687.925333pt;}
.x2d{left:689.953333pt;}
.x54{left:691.400000pt;}
.x58{left:698.525333pt;}
.x2e{left:703.237333pt;}
.x55{left:704.684000pt;}
.x56{left:708.054667pt;}
.x41{left:710.614667pt;}
.x57{left:721.337333pt;}
.x42{left:723.897333pt;}
.x43{left:727.152000pt;}
.x7{left:733.129333pt;}
.x8{left:739.772000pt;}
.xa5{left:741.300000pt;}
.x91{left:744.106667pt;}
}




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