
    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_251d6b95312500ad4c49f090.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ecc2c4325b96e5c9ec3d6bc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_253aa617c89a5e522e02f525.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;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_b35fb0783975fa32f177e65d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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_d455185d77f2bb1420c911b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090000;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_24d33b57cd572e128c61db3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_f809e8dd119b23f4d031888d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;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_a87813a3066489dd6c5de616.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.328000;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_670389eb141d073dba6f6312.woff2')format("woff");}.fff{font-family:fff;line-height:0.878000;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_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.607000;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_3085295cbe21511ffa0fee7b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.872000;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_bf929cab333a58f5e3d7c2aa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.889000;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_f363d6eb2bdca550631e99ad.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.886000;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_07771b76fdcd6792fd9153fe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.701000;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_e356ab04e025b1cb051570cc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.665000;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_f2d8d184c06ae8a5c44fed87.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.665000;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_b06f2938bf61530c9627bbc3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.684000;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_31f5f15a68ec41c5f1261285.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3bc355a115d492dd5dce7b6a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.451000;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_7f1c1dd74d88d34a256f0acc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.665000;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_3a3b77b216df58eddaea227c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.672000;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_eb219b1fbc40d9724fa6e938.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.889000;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_3dee23128245408c37b762a9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.767000;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_7efa914d6f4fcd50e51925bb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.855000;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_2b4b9b9fcd639775d15cd068.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.817000;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_5aa332e762232e1dc6c28dad.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.451000;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_576a8e7f74d2e28e53d98fe4.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.674000;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_2e197be90e85ad4e938bf0e9.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.851000;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_5238cef4ccb72656cb072024.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.676000;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_d6650d7b2f3af7481336d596.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.680000;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_a45777ef3fcafdca6c611e75.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.679000;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_57663c3114397784ce10158b.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.677000;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_edab9505456ab4e414517a32.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.665000;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_0be51a8944257f19171d0612.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.889000;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_97b73e142f5ed000c970d941.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.894000;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_1424e5ebb9f5224175d4a19d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.817000;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_ca1b850caca59b9c9047dbe9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v3{vertical-align:-15.011999px;}
.v7{vertical-align:-13.278809px;}
.v5{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.310307px;}
.v4{vertical-align:15.011993px;}
.va{vertical-align:16.768218px;}
.v8{vertical-align:18.578662px;}
.v6{vertical-align:21.205444px;}
.v1{vertical-align:24.000000px;}
.vb{vertical-align:54.012000px;}
.ls2a{letter-spacing:-3.168000px;}
.ls27{letter-spacing:-2.772000px;}
.ls2d{letter-spacing:-2.544000px;}
.ls2{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.200000px;}
.ls26{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.840210px;}
.lse{letter-spacing:-0.780000px;}
.ls22{letter-spacing:-0.743089px;}
.ls3{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.336000px;}
.ls28{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.002265px;}
.ls7{letter-spacing:0.004281px;}
.lsf{letter-spacing:0.004556px;}
.ls29{letter-spacing:0.004846px;}
.ls21{letter-spacing:0.012376px;}
.ls19{letter-spacing:0.014140px;}
.ls10{letter-spacing:0.015847px;}
.ls1b{letter-spacing:0.019705px;}
.ls11{letter-spacing:0.024305px;}
.ls2b{letter-spacing:0.672000px;}
.ls2c{letter-spacing:2.064000px;}
.ls1f{letter-spacing:2.123112px;}
.ls9{letter-spacing:2.400600px;}
.ls1c{letter-spacing:2.623862px;}
.ls17{letter-spacing:2.623954px;}
.ls1d{letter-spacing:2.657599px;}
.ls15{letter-spacing:2.678135px;}
.ls1{letter-spacing:3.360000px;}
.ls20{letter-spacing:4.246224px;}
.lsa{letter-spacing:4.801200px;}
.ls14{letter-spacing:11.783272px;}
.ls13{letter-spacing:11.836349px;}
.lsd{letter-spacing:13.323329px;}
.lsc{letter-spacing:13.383344px;}
.ls1a{letter-spacing:14.433666px;}
.ls1e{letter-spacing:14.528095px;}
.ls18{letter-spacing:14.587150px;}
.ls12{letter-spacing:14.755628px;}
.ls8{letter-spacing:16.347745px;}
.ls23{letter-spacing:161.520619px;}
.ls25{letter-spacing:185.520436px;}
.ls24{letter-spacing:185.520619px;}
.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;}
}
.ws14{word-spacing:-15.000000px;}
.ws11c{word-spacing:-14.880000px;}
.wsf9{word-spacing:-14.220000px;}
.wse6{word-spacing:-13.383344px;}
.ws12b{word-spacing:-13.332000px;}
.wse7{word-spacing:-13.323329px;}
.ws159{word-spacing:-12.672000px;}
.wsdf{word-spacing:-12.480000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws7c{word-spacing:-12.000000px;}
.ws10e{word-spacing:-11.783272px;}
.ws6{word-spacing:-11.520000px;}
.wsa0{word-spacing:-11.424000px;}
.wsdc{word-spacing:-11.340000px;}
.ws13{word-spacing:-10.500000px;}
.ws167{word-spacing:-9.456000px;}
.ws2{word-spacing:-9.408000px;}
.ws143{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.wsc9{word-spacing:-8.064000px;}
.wsfa{word-spacing:-7.500000px;}
.wsf8{word-spacing:-6.000000px;}
.ws11b{word-spacing:-5.250000px;}
.ws15{word-spacing:-1.890000px;}
.ws12e{word-spacing:-1.260000px;}
.wsbe{word-spacing:-1.140000px;}
.wsba{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.020000px;}
.ws11e{word-spacing:-0.780000px;}
.ws15f{word-spacing:-0.768000px;}
.ws12d{word-spacing:-0.720000px;}
.ws164{word-spacing:-0.672000px;}
.ws55{word-spacing:-0.660000px;}
.ws15a{word-spacing:-0.624000px;}
.wsdd{word-spacing:-0.600000px;}
.ws43{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.wsac{word-spacing:-0.420000px;}
.wsce{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.300000px;}
.wsa9{word-spacing:-0.240000px;}
.wsbb{word-spacing:-0.180000px;}
.ws15e{word-spacing:-0.144000px;}
.ws3b{word-spacing:-0.120000px;}
.wsd5{word-spacing:-0.060015px;}
.ws106{word-spacing:-0.053078px;}
.ws1{word-spacing:-0.048000px;}
.ws107{word-spacing:-0.037154px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.048000px;}
.wse2{word-spacing:0.060000px;}
.ws90{word-spacing:0.096000px;}
.wsb5{word-spacing:0.120000px;}
.ws146{word-spacing:0.144000px;}
.ws77{word-spacing:0.180000px;}
.ws8a{word-spacing:0.192000px;}
.ws9d{word-spacing:0.240000px;}
.ws123{word-spacing:0.288000px;}
.ws25{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.wsd2{word-spacing:0.384000px;}
.ws4b{word-spacing:0.420000px;}
.ws147{word-spacing:0.432000px;}
.ws52{word-spacing:0.480000px;}
.ws160{word-spacing:0.528000px;}
.ws24{word-spacing:0.540000px;}
.ws151{word-spacing:0.576000px;}
.ws3f{word-spacing:0.600000px;}
.wsf0{word-spacing:0.624000px;}
.ws11{word-spacing:0.660000px;}
.ws174{word-spacing:0.672000px;}
.ws109{word-spacing:0.690011px;}
.ws12c{word-spacing:0.720000px;}
.ws173{word-spacing:0.768000px;}
.wsb3{word-spacing:0.780000px;}
.wsd6{word-spacing:0.780195px;}
.wse8{word-spacing:0.816000px;}
.ws2e{word-spacing:0.840000px;}
.ws129{word-spacing:0.864000px;}
.ws38{word-spacing:0.900000px;}
.wsa7{word-spacing:0.912000px;}
.ws19{word-spacing:0.960000px;}
.wsf3{word-spacing:1.008000px;}
.ws56{word-spacing:1.020000px;}
.ws125{word-spacing:1.056000px;}
.ws102{word-spacing:1.080000px;}
.ws128{word-spacing:1.104000px;}
.wsa8{word-spacing:1.140000px;}
.wsc5{word-spacing:1.200000px;}
.ws8b{word-spacing:1.248000px;}
.ws59{word-spacing:1.260000px;}
.ws98{word-spacing:1.320000px;}
.wsc1{word-spacing:1.344000px;}
.ws60{word-spacing:1.380000px;}
.ws144{word-spacing:1.392000px;}
.ws2c{word-spacing:1.440000px;}
.ws122{word-spacing:1.488000px;}
.ws4c{word-spacing:1.500000px;}
.ws92{word-spacing:1.536000px;}
.ws1a{word-spacing:1.560000px;}
.ws14e{word-spacing:1.584000px;}
.wsb6{word-spacing:1.620000px;}
.ws121{word-spacing:1.632000px;}
.ws58{word-spacing:1.680000px;}
.ws9c{word-spacing:1.740000px;}
.wsd4{word-spacing:1.776000px;}
.wsf{word-spacing:1.800000px;}
.ws145{word-spacing:1.824000px;}
.ws10{word-spacing:1.860000px;}
.ws1f{word-spacing:1.920000px;}
.ws152{word-spacing:1.968000px;}
.ws48{word-spacing:1.980000px;}
.ws8f{word-spacing:2.016000px;}
.wsc{word-spacing:2.040000px;}
.ws5d{word-spacing:2.100000px;}
.wsf2{word-spacing:2.112000px;}
.ws1b{word-spacing:2.160000px;}
.ws163{word-spacing:2.208000px;}
.ws3c{word-spacing:2.220000px;}
.wsf5{word-spacing:2.256000px;}
.ws42{word-spacing:2.280000px;}
.wsf1{word-spacing:2.304000px;}
.wsb1{word-spacing:2.340000px;}
.ws176{word-spacing:2.352000px;}
.ws36{word-spacing:2.400000px;}
.ws47{word-spacing:2.460000px;}
.ws6f{word-spacing:2.520000px;}
.ws16f{word-spacing:2.544000px;}
.wsae{word-spacing:2.580000px;}
.wsc4{word-spacing:2.640000px;}
.wsb7{word-spacing:2.688000px;}
.ws78{word-spacing:2.700000px;}
.wsc8{word-spacing:2.736000px;}
.ws4d{word-spacing:2.760000px;}
.ws33{word-spacing:2.820000px;}
.ws7b{word-spacing:2.832000px;}
.ws4e{word-spacing:2.880000px;}
.ws66{word-spacing:2.940000px;}
.ws3a{word-spacing:3.000000px;}
.ws7a{word-spacing:3.024000px;}
.ws83{word-spacing:3.060000px;}
.wsc6{word-spacing:3.072000px;}
.wsbf{word-spacing:3.120000px;}
.ws79{word-spacing:3.168000px;}
.ws5e{word-spacing:3.180000px;}
.ws14d{word-spacing:3.216000px;}
.wse5{word-spacing:3.240000px;}
.wsc7{word-spacing:3.264000px;}
.ws2a{word-spacing:3.300000px;}
.ws103{word-spacing:3.312000px;}
.ws9f{word-spacing:3.360000px;}
.ws161{word-spacing:3.408000px;}
.ws13b{word-spacing:3.420000px;}
.ws14b{word-spacing:3.456000px;}
.ws46{word-spacing:3.480000px;}
.ws166{word-spacing:3.504000px;}
.wse9{word-spacing:3.540000px;}
.ws4a{word-spacing:3.600000px;}
.ws6c{word-spacing:3.660000px;}
.ws171{word-spacing:3.696000px;}
.wsd{word-spacing:3.720000px;}
.wsa3{word-spacing:3.744000px;}
.wsad{word-spacing:3.780000px;}
.ws104{word-spacing:3.792000px;}
.ws32{word-spacing:3.840000px;}
.ws124{word-spacing:3.888000px;}
.ws26{word-spacing:3.900000px;}
.ws13f{word-spacing:3.936000px;}
.ws64{word-spacing:3.960000px;}
.ws1d{word-spacing:4.020000px;}
.wsd1{word-spacing:4.032000px;}
.ws95{word-spacing:4.080000px;}
.ws127{word-spacing:4.128000px;}
.ws57{word-spacing:4.140000px;}
.ws91{word-spacing:4.176000px;}
.ws37{word-spacing:4.200000px;}
.ws169{word-spacing:4.224000px;}
.wsc3{word-spacing:4.260000px;}
.wsd0{word-spacing:4.272000px;}
.wscd{word-spacing:4.320000px;}
.ws14c{word-spacing:4.368000px;}
.wse0{word-spacing:4.380000px;}
.wscc{word-spacing:4.440000px;}
.ws5a{word-spacing:4.500000px;}
.ws20{word-spacing:4.560000px;}
.ws2b{word-spacing:4.620000px;}
.ws8c{word-spacing:4.656000px;}
.ws2f{word-spacing:4.680000px;}
.wsb4{word-spacing:4.740000px;}
.ws75{word-spacing:4.800000px;}
.wsa6{word-spacing:4.848000px;}
.ws1e{word-spacing:4.860000px;}
.wsab{word-spacing:4.920000px;}
.ws86{word-spacing:4.944000px;}
.ws9e{word-spacing:4.980000px;}
.ws12f{word-spacing:4.992000px;}
.wsaf{word-spacing:5.040000px;}
.ws89{word-spacing:5.088000px;}
.ws76{word-spacing:5.100000px;}
.ws4f{word-spacing:5.160000px;}
.ws84{word-spacing:5.184000px;}
.ws11f{word-spacing:5.220000px;}
.ws97{word-spacing:5.280000px;}
.ws16e{word-spacing:5.328000px;}
.wsfb{word-spacing:5.400000px;}
.wsa1{word-spacing:5.424000px;}
.ws6d{word-spacing:5.460000px;}
.wsf4{word-spacing:5.472000px;}
.ws68{word-spacing:5.520000px;}
.ws13c{word-spacing:5.580000px;}
.ws8d{word-spacing:5.616000px;}
.ws9a{word-spacing:5.640000px;}
.ws165{word-spacing:5.664000px;}
.wsb0{word-spacing:5.700000px;}
.ws50{word-spacing:5.760000px;}
.wsa5{word-spacing:5.808000px;}
.wsb2{word-spacing:5.820000px;}
.ws153{word-spacing:5.856000px;}
.ws21{word-spacing:5.880000px;}
.wsc2{word-spacing:5.904000px;}
.wsb{word-spacing:5.940000px;}
.ws158{word-spacing:5.952000px;}
.ws74{word-spacing:6.000000px;}
.ws172{word-spacing:6.048000px;}
.ws5c{word-spacing:6.060000px;}
.ws88{word-spacing:6.096000px;}
.ws5f{word-spacing:6.120000px;}
.wse3{word-spacing:6.180000px;}
.ws28{word-spacing:6.240000px;}
.ws22{word-spacing:6.300000px;}
.ws157{word-spacing:6.336000px;}
.ws39{word-spacing:6.360000px;}
.wsa2{word-spacing:6.384000px;}
.ws3d{word-spacing:6.420000px;}
.ws80{word-spacing:6.480000px;}
.ws93{word-spacing:6.540000px;}
.wsd3{word-spacing:6.624000px;}
.ws5b{word-spacing:6.660000px;}
.ws175{word-spacing:6.672000px;}
.ws81{word-spacing:6.720000px;}
.ws105{word-spacing:6.768000px;}
.ws99{word-spacing:6.780000px;}
.ws85{word-spacing:6.816000px;}
.ws6b{word-spacing:6.840000px;}
.ws120{word-spacing:6.864000px;}
.ws54{word-spacing:6.900000px;}
.ws170{word-spacing:6.960000px;}
.wsef{word-spacing:7.008000px;}
.ws13e{word-spacing:7.020000px;}
.ws162{word-spacing:7.056000px;}
.wsb9{word-spacing:7.080000px;}
.wsc0{word-spacing:7.104000px;}
.ws18{word-spacing:7.140000px;}
.wscf{word-spacing:7.200000px;}
.ws14f{word-spacing:7.296000px;}
.ws100{word-spacing:7.380000px;}
.wsee{word-spacing:7.440000px;}
.ws10d{word-spacing:7.500000px;}
.ws51{word-spacing:7.560000px;}
.ws31{word-spacing:7.620000px;}
.ws3e{word-spacing:7.680000px;}
.ws2d{word-spacing:7.800000px;}
.ws141{word-spacing:7.860000px;}
.ws150{word-spacing:7.872000px;}
.wsfd{word-spacing:7.920000px;}
.wse1{word-spacing:7.980000px;}
.ws62{word-spacing:8.040000px;}
.ws44{word-spacing:8.100000px;}
.ws126{word-spacing:8.112000px;}
.ws7e{word-spacing:8.160000px;}
.ws16c{word-spacing:8.256000px;}
.ws6e{word-spacing:8.280000px;}
.ws10c{word-spacing:8.340000px;}
.ws94{word-spacing:8.400000px;}
.wsa{word-spacing:8.460000px;}
.ws17{word-spacing:8.520000px;}
.ws149{word-spacing:8.544000px;}
.ws101{word-spacing:8.580000px;}
.ws45{word-spacing:8.640000px;}
.ws82{word-spacing:8.700000px;}
.ws49{word-spacing:8.760000px;}
.ws13d{word-spacing:8.820000px;}
.ws142{word-spacing:8.880000px;}
.ws7d{word-spacing:8.940000px;}
.ws9{word-spacing:9.060000px;}
.wse{word-spacing:9.120000px;}
.ws12a{word-spacing:9.180000px;}
.wscb{word-spacing:9.240000px;}
.ws14a{word-spacing:9.264000px;}
.ws1c{word-spacing:9.300000px;}
.ws53{word-spacing:9.360000px;}
.ws15c{word-spacing:9.456000px;}
.wsea{word-spacing:9.540000px;}
.ws148{word-spacing:9.552000px;}
.ws67{word-spacing:9.600000px;}
.ws30{word-spacing:9.660000px;}
.ws16b{word-spacing:9.696000px;}
.wsbd{word-spacing:9.720000px;}
.wsaa{word-spacing:9.840000px;}
.wsff{word-spacing:10.080000px;}
.ws140{word-spacing:10.140000px;}
.ws40{word-spacing:10.320000px;}
.ws65{word-spacing:10.380000px;}
.wsa4{word-spacing:10.464000px;}
.ws41{word-spacing:10.680000px;}
.ws34{word-spacing:10.860000px;}
.wsb8{word-spacing:10.920000px;}
.ws87{word-spacing:10.944000px;}
.ws69{word-spacing:11.040000px;}
.ws96{word-spacing:11.100000px;}
.ws7f{word-spacing:11.400000px;}
.ws35{word-spacing:11.460000px;}
.ws73{word-spacing:11.640000px;}
.ws23{word-spacing:11.700000px;}
.ws154{word-spacing:11.808000px;}
.ws71{word-spacing:11.940000px;}
.ws61{word-spacing:12.000000px;}
.ws155{word-spacing:12.048000px;}
.wseb{word-spacing:12.060000px;}
.wsec{word-spacing:12.240000px;}
.ws168{word-spacing:12.384000px;}
.ws9b{word-spacing:12.960000px;}
.ws15b{word-spacing:14.544000px;}
.wsfc{word-spacing:14.580000px;}
.ws6a{word-spacing:14.820000px;}
.wsfe{word-spacing:15.000000px;}
.ws10a{word-spacing:15.076392px;}
.ws108{word-spacing:15.076484px;}
.wse4{word-spacing:15.180000px;}
.ws10b{word-spacing:15.780000px;}
.wsde{word-spacing:15.900000px;}
.ws72{word-spacing:16.500000px;}
.wsda{word-spacing:16.992292px;}
.wsd8{word-spacing:16.992378px;}
.wsdb{word-spacing:17.046302px;}
.wsd9{word-spacing:17.046852px;}
.ws16d{word-spacing:17.232000px;}
.wsed{word-spacing:17.880000px;}
.ws70{word-spacing:18.000000px;}
.ws16{word-spacing:19.668000px;}
.ws15d{word-spacing:20.064000px;}
.ws63{word-spacing:20.160000px;}
.wsd7{word-spacing:20.393699px;}
.ws16a{word-spacing:20.880000px;}
.wsca{word-spacing:21.660000px;}
.ws11d{word-spacing:21.780000px;}
.ws156{word-spacing:38.448000px;}
.ws12{word-spacing:73.056000px;}
.ws118{word-spacing:74.298000px;}
.wsf7{word-spacing:87.071995px;}
.wsf6{word-spacing:89.856000px;}
.ws117{word-spacing:95.298000px;}
.ws112{word-spacing:109.326000px;}
.ws115{word-spacing:116.298000px;}
.ws116{word-spacing:140.280000px;}
.ws11a{word-spacing:147.798000px;}
.ws119{word-spacing:153.804000px;}
.ws114{word-spacing:158.298000px;}
.ws10f{word-spacing:161.826000px;}
.ws110{word-spacing:164.094000px;}
.ws135{word-spacing:225.648000px;}
.ws132{word-spacing:229.632000px;}
.ws138{word-spacing:233.616000px;}
.ws131{word-spacing:248.592000px;}
.ws13a{word-spacing:269.616000px;}
.ws139{word-spacing:276.480000px;}
.ws137{word-spacing:281.616000px;}
.ws130{word-spacing:285.648000px;}
.ws111{word-spacing:287.200189px;}
.ws133{word-spacing:288.240000px;}
.ws113{word-spacing:398.243989px;}
.ws134{word-spacing:491.476800px;}
.ws136{word-spacing:618.384000px;}
._19{margin-left:-16.711150px;}
._6{margin-left:-15.600000px;}
._10{margin-left:-13.332000px;}
._12{margin-left:-11.340000px;}
._4a{margin-left:-10.019997px;}
._4b{margin-left:-8.040000px;}
._17{margin-left:-6.988800px;}
._5{margin-left:-5.028000px;}
._1{margin-left:-3.892800px;}
._b{margin-left:-2.815200px;}
._0{margin-left:-1.632000px;}
._4{width:1.099200px;}
._2{width:2.544600px;}
._c{width:4.138800px;}
._15{width:5.820000px;}
._13{width:6.852000px;}
._d{width:8.476200px;}
._e{width:9.599991px;}
._14{width:10.750800px;}
._6d{width:12.159600px;}
._1d{width:13.293598px;}
._16{width:14.784000px;}
._11{width:16.860000px;}
._18{width:18.660000px;}
._f{width:19.668000px;}
._7{width:22.320000px;}
._1a{width:30.000000px;}
._1c{width:31.176000px;}
._6c{width:33.000000px;}
._1b{width:35.489373px;}
._3{width:40.215569px;}
._9{width:56.255991px;}
._8{width:73.056000px;}
._59{width:84.178200px;}
._57{width:85.417800px;}
._58{width:87.780000px;}
._36{width:91.344000px;}
._20{width:97.872000px;}
._2b{width:99.647995px;}
._2d{width:101.856000px;}
._3e{width:105.967200px;}
._35{width:116.719200px;}
._46{width:119.311200px;}
._21{width:120.528000px;}
._27{width:121.872000px;}
._26{width:123.168000px;}
._64{width:125.783989px;}
._24{width:127.245600px;}
._25{width:128.788800px;}
._1f{width:135.216000px;}
._51{width:139.650000px;}
._5a{width:143.808000px;}
._33{width:145.536000px;}
._22{width:146.736000px;}
._54{width:148.140000px;}
._4f{width:151.326000px;}
._3f{width:154.800000px;}
._5c{width:156.143989px;}
._34{width:160.756800px;}
._3b{width:161.856000px;}
._52{width:163.632000px;}
._2c{width:166.752000px;}
._47{width:167.952000px;}
._40{width:169.872000px;}
._66{width:171.493189px;}
._67{width:172.731622px;}
._30{width:174.240000px;}
._4e{width:175.308000px;}
._6b{width:179.070033px;}
._6a{width:180.077989px;}
._69{width:181.344000px;}
._28{width:183.216000px;}
._65{width:185.020800px;}
._43{width:186.768000px;}
._5b{width:192.780000px;}
._4d{width:196.308000px;}
._56{width:198.576000px;}
._6e{width:201.211200px;}
._37{width:202.752000px;}
._38{width:204.576000px;}
._2a{width:208.512000px;}
._29{width:213.792000px;}
._32{width:219.792000px;}
._50{width:223.397989px;}
._2f{width:226.800000px;}
._48{width:248.356800px;}
._39{width:249.792000px;}
._2e{width:268.560000px;}
._72{width:269.616000px;}
._23{width:278.016000px;}
._53{width:283.961989px;}
._3d{width:285.840000px;}
._41{width:287.136000px;}
._45{width:292.560000px;}
._79{width:305.616000px;}
._3c{width:308.112000px;}
._76{width:310.464000px;}
._71{width:311.935200px;}
._3a{width:315.072000px;}
._5d{width:316.679989px;}
._49{width:318.816000px;}
._44{width:321.264000px;}
._68{width:329.489989px;}
._42{width:340.080000px;}
._6f{width:341.232000px;}
._75{width:355.951200px;}
._4c{width:364.475989px;}
._78{width:385.152000px;}
._74{width:391.204800px;}
._73{width:413.760000px;}
._31{width:426.816000px;}
._1e{width:428.116800px;}
._55{width:441.419989px;}
._70{width:518.688000px;}
._77{width:539.808000px;}
._60{width:770.820000px;}
._61{width:1041.893967px;}
._5f{width:1076.921967px;}
._5e{width:1083.893967px;}
._63{width:1125.893967px;}
._62{width:1249.794000px;}
._a{width:1547.760091px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.400000px;}
.fs8{font-size:33.600000px;}
.fse{font-size:37.154400px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:53.077800px;}
.fsc{font-size:56.399998px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1cb{bottom:0.005859px;}
.y199{bottom:0.044998px;}
.y158{bottom:0.178345px;}
.y19d{bottom:3.794678px;}
.y157{bottom:3.931183px;}
.y144{bottom:3.944550px;}
.y196{bottom:3.945007px;}
.ye7{bottom:4.914619px;}
.y155{bottom:26.354530px;}
.y44{bottom:49.625399px;}
.y23{bottom:49.625999px;}
.y20{bottom:50.758198px;}
.y1c7{bottom:55.727875px;}
.y187{bottom:89.279653px;}
.y186{bottom:89.327677px;}
.y185{bottom:89.375700px;}
.y184{bottom:89.423723px;}
.y183{bottom:89.471747px;}
.y182{bottom:89.519770px;}
.y181{bottom:89.567793px;}
.y1f7{bottom:89.598900px;}
.y180{bottom:89.615816px;}
.y17f{bottom:89.663840px;}
.y126{bottom:89.692355px;}
.y17e{bottom:89.711863px;}
.y17d{bottom:89.759886px;}
.y17c{bottom:89.807909px;}
.y17b{bottom:89.855933px;}
.y17a{bottom:89.903956px;}
.y179{bottom:89.951978px;}
.y178{bottom:90.000000px;}
.y103{bottom:90.006000px;}
.ybe{bottom:90.012000px;}
.y227{bottom:90.018000px;}
.y1ce{bottom:90.031511px;}
.y1d2{bottom:90.063011px;}
.y1cf{bottom:90.063023px;}
.y1d0{bottom:90.094534px;}
.y1d4{bottom:90.126023px;}
.y1d6{bottom:90.189034px;}
.y1d8{bottom:90.210000px;}
.y1da{bottom:90.230965px;}
.y1dc{bottom:90.251944px;}
.y1dd{bottom:90.283455px;}
.y1de{bottom:90.314967px;}
.y1df{bottom:90.346478px;}
.y1e0{bottom:90.377989px;}
.y1e1{bottom:90.409501px;}
.y1e2{bottom:90.441012px;}
.y1e3{bottom:90.472523px;}
.y177{bottom:90.732448px;}
.y98{bottom:90.797550px;}
.ya5{bottom:91.202516px;}
.y133{bottom:91.633056px;}
.y41{bottom:94.800000px;}
.y1b5{bottom:94.972321px;}
.y10c{bottom:96.811355px;}
.y4{bottom:97.125005px;}
.y152{bottom:98.212050px;}
.y276{bottom:98.243543px;}
.y1f6{bottom:103.842900px;}
.y125{bottom:103.936355px;}
.ybd{bottom:104.256000px;}
.y226{bottom:104.262000px;}
.ye4{bottom:104.297516px;}
.y2af{bottom:105.379084px;}
.y6d{bottom:105.515995px;}
.y132{bottom:105.877056px;}
.y97{bottom:108.797550px;}
.y102{bottom:109.049995px;}
.ya4{bottom:109.202516px;}
.y176{bottom:109.776295px;}
.y40{bottom:111.803253px;}
.y275{bottom:112.487543px;}
.y10b{bottom:115.855350px;}
.y151{bottom:116.212050px;}
.y1f5{bottom:118.086900px;}
.y225{bottom:118.506000px;}
.y2ae{bottom:119.623084px;}
.y101{bottom:119.765995px;}
.y1cd{bottom:119.777995px;}
.y175{bottom:120.492305px;}
.ye3{bottom:122.297516px;}
.y124{bottom:122.980350px;}
.ybc{bottom:123.299995px;}
.y193{bottom:124.025554px;}
.y6c{bottom:124.560000px;}
.y131{bottom:124.921050px;}
.y274{bottom:126.731543px;}
.ya3{bottom:127.202516px;}
.y3f{bottom:130.847248px;}
.y1f4{bottom:132.330900px;}
.y2ad{bottom:133.867084px;}
.ybb{bottom:134.015995px;}
.yce{bottom:134.021995px;}
.y150{bottom:134.212050px;}
.y224{bottom:137.549995px;}
.y100{bottom:138.810000px;}
.y1f{bottom:139.264499px;}
.y174{bottom:139.536300px;}
.ye2{bottom:140.297516px;}
.y273{bottom:140.975543px;}
.y192{bottom:143.069550px;}
.y96{bottom:144.797550px;}
.y22c{bottom:144.797562px;}
.ya2{bottom:145.202516px;}
.y242{bottom:145.697548px;}
.y1f3{bottom:146.574900px;}
.y130{bottom:147.949654px;}
.y2db{bottom:148.103516px;}
.y2ac{bottom:148.111084px;}
.ycd{bottom:148.265995px;}
.y10a{bottom:151.293153px;}
.yba{bottom:153.060000px;}
.y191{bottom:153.791549px;}
.y3e{bottom:154.721093px;}
.y272{bottom:155.219543px;}
.y173{bottom:155.593493px;}
.ye1{bottom:158.297516px;}
.y12f{bottom:158.665653px;}
.y2da{bottom:162.347516px;}
.y2ab{bottom:162.355084px;}
.y22b{bottom:162.797562px;}
.ya1{bottom:163.202516px;}
.y109{bottom:165.537153px;}
.y1f2{bottom:165.618896px;}
.ycc{bottom:167.310000px;}
.y190{bottom:168.035549px;}
.y3d{bottom:168.965093px;}
.y271{bottom:169.463543px;}
.y172{bottom:169.837493px;}
.y14f{bottom:170.212050px;}
.yef{bottom:171.133942px;}
.y241{bottom:174.197548px;}
.ye0{bottom:176.297516px;}
.y1f1{bottom:176.334896px;}
.y2aa{bottom:176.599084px;}
.y12e{bottom:177.709648px;}
.y108{bottom:179.781153px;}
.y95{bottom:180.797550px;}
.y22a{bottom:180.797562px;}
.ya0{bottom:181.202516px;}
.y270{bottom:183.707543px;}
.y171{bottom:184.081493px;}
.yee{bottom:185.377942px;}
.y123{bottom:186.187042px;}
.y18f{bottom:187.079556px;}
.y3c{bottom:190.757093px;}
.y2a9{bottom:190.843084px;}
.y2d9{bottom:190.847516px;}
.y139{bottom:192.679655px;}
.y107{bottom:194.025153px;}
.ydf{bottom:194.297516px;}
.y1f0{bottom:195.378891px;}
.y16{bottom:196.933500px;}
.y6b{bottom:197.672516px;}
.y18e{bottom:197.795406px;}
.y26f{bottom:197.951543px;}
.y170{bottom:198.325493px;}
.y229{bottom:198.797562px;}
.y9f{bottom:199.202516px;}
.yed{bottom:199.621942px;}
.y223{bottom:201.702759px;}
.y122{bottom:204.187042px;}
.y3b{bottom:205.001093px;}
.y2a8{bottom:205.087084px;}
.y2d8{bottom:205.091516px;}
.y1ef{bottom:206.094890px;}
.y240{bottom:206.501562px;}
.y14e{bottom:206.770500px;}
.y138{bottom:206.923655px;}
.y106{bottom:208.269153px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y14d{bottom:210.712050px;}
.y26e{bottom:212.195543px;}
.yde{bottom:212.297516px;}
.yff{bottom:212.297562px;}
.y16f{bottom:212.569493px;}
.yec{bottom:213.865942px;}
.y6a{bottom:215.672516px;}
.y228{bottom:216.797562px;}
.y18d{bottom:216.839400px;}
.y9e{bottom:217.202516px;}
.y2a7{bottom:219.331084px;}
.y2d7{bottom:219.335516px;}
.y222{bottom:219.702759px;}
.y23f{bottom:220.745562px;}
.y137{bottom:221.167655px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y121{bottom:222.187042px;}
.y105{bottom:222.513153px;}
.y1ee{bottom:225.138908px;}
.y26d{bottom:226.439543px;}
.y3a{bottom:226.793093px;}
.y16e{bottom:226.813493px;}
.y18c{bottom:227.555400px;}
.y1d1{bottom:227.812497px;}
.y1d3{bottom:227.875509px;}
.y1d5{bottom:227.938520px;}
.y1d7{bottom:227.980504px;}
.yeb{bottom:228.109942px;}
.y14c{bottom:228.712050px;}
.ydd{bottom:230.297516px;}
.yfe{bottom:230.297562px;}
.ycb{bottom:231.691949px;}
.y2a6{bottom:233.575084px;}
.y2d6{bottom:233.579516px;}
.y69{bottom:233.672516px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y94{bottom:234.797516px;}
.yb9{bottom:234.797539px;}
.y1fa{bottom:234.797562px;}
.y9d{bottom:235.202516px;}
.y136{bottom:235.411655px;}
.y1ed{bottom:235.878907px;}
.y221{bottom:237.702759px;}
.y120{bottom:240.187042px;}
.y26c{bottom:240.683543px;}
.y39{bottom:241.037093px;}
.y16d{bottom:241.057493px;}
.yea{bottom:242.353942px;}
.yca{bottom:245.935949px;}
.y18b{bottom:246.599396px;}
.y14b{bottom:246.712050px;}
.y2a5{bottom:247.819084px;}
.y2d5{bottom:247.823516px;}
.ydc{bottom:248.297516px;}
.yfd{bottom:248.297562px;}
.y23e{bottom:249.221562px;}
.y1ec{bottom:250.122907px;}
.y68{bottom:251.672516px;}
.y93{bottom:252.797516px;}
.yb8{bottom:252.797539px;}
.y1f9{bottom:252.797562px;}
.y9c{bottom:253.202516px;}
.y135{bottom:254.455650px;}
.y26b{bottom:254.927543px;}
.y16c{bottom:255.301493px;}
.y220{bottom:255.702759px;}
.ye9{bottom:256.597942px;}
.y18a{bottom:257.321395px;}
.y11f{bottom:258.187042px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yc9{bottom:260.179949px;}
.y14a{bottom:260.770500px;}
.y2a4{bottom:262.063084px;}
.y2d4{bottom:262.067516px;}
.y23d{bottom:263.465562px;}
.y1eb{bottom:264.366907px;}
.y149{bottom:264.712050px;}
.ydb{bottom:266.297516px;}
.yfc{bottom:266.297562px;}
.y26a{bottom:269.171543px;}
.y16b{bottom:269.545493px;}
.y67{bottom:269.672516px;}
.y134{bottom:269.965645px;}
.y92{bottom:270.797516px;}
.yb7{bottom:270.797539px;}
.y1f8{bottom:270.797562px;}
.ye8{bottom:270.841942px;}
.y38{bottom:271.109093px;}
.y189{bottom:271.565395px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y21f{bottom:273.702759px;}
.yc8{bottom:274.423949px;}
.y11e{bottom:276.187042px;}
.y2a3{bottom:276.307084px;}
.y2d3{bottom:276.311516px;}
.y23c{bottom:277.709562px;}
.y1ea{bottom:278.610907px;}
.y148{bottom:282.712050px;}
.y269{bottom:283.415543px;}
.y16a{bottom:283.789493px;}
.yda{bottom:284.297516px;}
.yfb{bottom:284.297562px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y66{bottom:287.672516px;}
.yc7{bottom:288.667949px;}
.y91{bottom:288.797516px;}
.yb6{bottom:288.797539px;}
.y12d{bottom:288.797562px;}
.y9b{bottom:289.202516px;}
.y2a2{bottom:290.551084px;}
.y2d2{bottom:290.555516px;}
.y188{bottom:290.609390px;}
.y1b2{bottom:290.975830px;}
.y21e{bottom:291.702759px;}
.y23b{bottom:291.953562px;}
.y1e9{bottom:292.854907px;}
.y11d{bottom:294.187042px;}
.y146{bottom:296.770500px;}
.ye6{bottom:296.849991px;}
.y268{bottom:297.659543px;}
.y147{bottom:300.712050px;}
.yd9{bottom:302.297516px;}
.yfa{bottom:302.297562px;}
.y169{bottom:302.833511px;}
.yc6{bottom:302.911949px;}
.y2a1{bottom:304.795084px;}
.y2d1{bottom:304.799516px;}
.y65{bottom:305.672516px;}
.y23a{bottom:306.197562px;}
.y90{bottom:306.797516px;}
.yb5{bottom:306.797539px;}
.y12c{bottom:306.797562px;}
.y1b1{bottom:308.975830px;}
.y21d{bottom:309.702759px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y1e8{bottom:311.898903px;}
.y267{bottom:311.903543px;}
.y11c{bottom:312.187042px;}
.y143{bottom:314.770500px;}
.yc5{bottom:317.155949px;}
.y142{bottom:318.712042px;}
.y145{bottom:318.712050px;}
.y2a0{bottom:319.039084px;}
.y2d0{bottom:319.043516px;}
.yd8{bottom:320.297516px;}
.yf9{bottom:320.297562px;}
.y239{bottom:320.441562px;}
.y1e7{bottom:322.614902px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y64{bottom:323.672516px;}
.y8f{bottom:324.797516px;}
.yb4{bottom:324.797562px;}
.y266{bottom:326.147543px;}
.y1b0{bottom:326.975830px;}
.y21c{bottom:327.702759px;}
.y11b{bottom:330.187042px;}
.yc4{bottom:331.399949px;}
.y29f{bottom:333.283084px;}
.y2cf{bottom:333.287516px;}
.y238{bottom:334.685562px;}
.yd7{bottom:338.297516px;}
.y265{bottom:340.391543px;}
.y1e6{bottom:341.658897px;}
.y63{bottom:341.672516px;}
.y8e{bottom:342.797516px;}
.yb3{bottom:342.797562px;}
.y1d9{bottom:344.645973px;}
.y1af{bottom:344.975830px;}
.yc3{bottom:345.643949px;}
.y21b{bottom:345.702759px;}
.y154{bottom:345.712509px;}
.y29e{bottom:347.527084px;}
.y2ce{bottom:347.531516px;}
.yd{bottom:348.133500px;}
.y11a{bottom:348.187042px;}
.y237{bottom:348.929562px;}
.y159{bottom:349.643692px;}
.y264{bottom:354.635543px;}
.yd6{bottom:356.297516px;}
.yf8{bottom:356.297562px;}
.y153{bottom:358.387040px;}
.y62{bottom:359.672516px;}
.yc2{bottom:359.887949px;}
.y8d{bottom:360.797516px;}
.yb2{bottom:360.797562px;}
.y29d{bottom:361.771084px;}
.y2cd{bottom:361.775516px;}
.y1ae{bottom:362.975830px;}
.y236{bottom:363.173562px;}
.y21a{bottom:363.702759px;}
.y119{bottom:366.187042px;}
.y1e5{bottom:366.624896px;}
.y156{bottom:368.314041px;}
.y263{bottom:368.879543px;}
.yc1{bottom:374.131949px;}
.yd5{bottom:374.297516px;}
.y168{bottom:374.297562px;}
.y29c{bottom:376.015084px;}
.y2cc{bottom:376.019516px;}
.y61{bottom:377.672516px;}
.y8c{bottom:378.797516px;}
.yb1{bottom:378.797562px;}
.y1ad{bottom:380.975830px;}
.y219{bottom:381.702759px;}
.y262{bottom:383.123543px;}
.y118{bottom:384.187042px;}
.y1e4{bottom:385.668915px;}
.yc{bottom:386.785499px;}
.yc0{bottom:388.375949px;}
.y29b{bottom:390.259084px;}
.y2cb{bottom:390.263516px;}
.y235{bottom:391.649562px;}
.yd4{bottom:392.297516px;}
.y167{bottom:392.297562px;}
.y60{bottom:395.672516px;}
.y8b{bottom:396.797516px;}
.yb0{bottom:396.797562px;}
.y261{bottom:397.367543px;}
.y1ac{bottom:398.975830px;}
.y218{bottom:399.702759px;}
.y141{bottom:400.312042px;}
.y117{bottom:402.187042px;}
.ybf{bottom:402.619949px;}
.y29a{bottom:404.503084px;}
.y2ca{bottom:404.507516px;}
.yb{bottom:408.044999px;}
.yd3{bottom:410.297516px;}
.y166{bottom:410.297562px;}
.y260{bottom:411.611543px;}
.y37{bottom:413.567093px;}
.y5f{bottom:413.672516px;}
.y8a{bottom:414.797516px;}
.yaf{bottom:414.797562px;}
.y1ab{bottom:416.975830px;}
.y217{bottom:417.702759px;}
.y140{bottom:418.312042px;}
.y299{bottom:418.747084px;}
.y2c9{bottom:418.751516px;}
.y234{bottom:420.125562px;}
.y116{bottom:420.187042px;}
.y25f{bottom:425.855543px;}
.yd2{bottom:428.297516px;}
.y165{bottom:428.297562px;}
.y5e{bottom:431.672516px;}
.y89{bottom:432.797516px;}
.yae{bottom:432.797562px;}
.y298{bottom:432.991084px;}
.y2c8{bottom:432.995516px;}
.y233{bottom:434.369562px;}
.y1aa{bottom:434.975830px;}
.y13f{bottom:436.312042px;}
.y115{bottom:438.187042px;}
.y25e{bottom:440.099543px;}
.yd1{bottom:446.297516px;}
.y297{bottom:447.235084px;}
.y2c7{bottom:447.239516px;}
.y232{bottom:448.613562px;}
.y5d{bottom:449.672516px;}
.y36{bottom:450.317093px;}
.y88{bottom:450.797516px;}
.yad{bottom:450.797562px;}
.y1a9{bottom:452.975830px;}
.y13e{bottom:454.312042px;}
.y25d{bottom:454.343543px;}
.y114{bottom:456.187042px;}
.y1db{bottom:461.300938px;}
.y296{bottom:461.479084px;}
.y2c6{bottom:461.483516px;}
.y231{bottom:462.857562px;}
.yd0{bottom:464.297516px;}
.y164{bottom:464.297562px;}
.y5c{bottom:467.672516px;}
.y35{bottom:468.317093px;}
.y25c{bottom:468.587543px;}
.y87{bottom:468.797516px;}
.yac{bottom:468.797562px;}
.y201{bottom:470.959094px;}
.y1a8{bottom:470.975830px;}
.y13d{bottom:472.312042px;}
.y113{bottom:474.187180px;}
.y295{bottom:475.723084px;}
.y2c5{bottom:475.727516px;}
.y25b{bottom:482.831543px;}
.y200{bottom:485.203094px;}
.y5b{bottom:485.672516px;}
.y86{bottom:486.797516px;}
.yab{bottom:486.797562px;}
.y1a7{bottom:488.975830px;}
.y294{bottom:489.967084px;}
.y2c4{bottom:489.971516px;}
.y13c{bottom:490.312042px;}
.y230{bottom:491.333562px;}
.y112{bottom:492.187180px;}
.y25a{bottom:497.075543px;}
.ycf{bottom:500.297516px;}
.y5a{bottom:503.672516px;}
.y293{bottom:504.211084px;}
.y2c3{bottom:504.215516px;}
.y85{bottom:504.797516px;}
.yaa{bottom:504.797562px;}
.y34{bottom:505.067093px;}
.y22f{bottom:505.577562px;}
.y1a6{bottom:506.975830px;}
.y111{bottom:510.187180px;}
.y259{bottom:511.319543px;}
.y216{bottom:513.621417px;}
.y292{bottom:518.455084px;}
.y2c2{bottom:518.459516px;}
.ya{bottom:520.864502px;}
.y59{bottom:521.672516px;}
.y84{bottom:522.797516px;}
.ya9{bottom:522.797562px;}
.y33{bottom:523.067093px;}
.y1a5{bottom:524.975830px;}
.y258{bottom:525.563543px;}
.y13b{bottom:526.312042px;}
.y110{bottom:528.187180px;}
.y215{bottom:531.849417px;}
.y291{bottom:532.699084px;}
.y2c1{bottom:532.703516px;}
.y22e{bottom:534.053562px;}
.y9{bottom:538.864499px;}
.y58{bottom:539.672516px;}
.y257{bottom:539.807543px;}
.y83{bottom:540.797516px;}
.ya8{bottom:540.797562px;}
.y32{bottom:541.067093px;}
.y1a4{bottom:542.975830px;}
.y10f{bottom:546.187180px;}
.y290{bottom:546.943084px;}
.y2c0{bottom:546.947516px;}
.y22d{bottom:548.297562px;}
.y214{bottom:549.993417px;}
.y256{bottom:554.051543px;}
.y8{bottom:556.864499px;}
.y57{bottom:557.672516px;}
.y82{bottom:558.797516px;}
.yf7{bottom:558.797562px;}
.y31{bottom:559.067093px;}
.y1a3{bottom:560.975830px;}
.y28f{bottom:561.187084px;}
.y2bf{bottom:561.191516px;}
.y13a{bottom:562.312180px;}
.y10e{bottom:564.187180px;}
.y213{bottom:568.137417px;}
.y255{bottom:568.295543px;}
.y28e{bottom:575.431084px;}
.y2be{bottom:575.435516px;}
.y56{bottom:575.672516px;}
.y81{bottom:576.797516px;}
.ya7{bottom:576.797562px;}
.y30{bottom:577.067093px;}
.y1a2{bottom:578.975830px;}
.y10d{bottom:582.187180px;}
.y254{bottom:582.539543px;}
.y212{bottom:586.281417px;}
.y28d{bottom:589.675084px;}
.y2bd{bottom:589.679516px;}
.y1a1{bottom:593.033981px;}
.y55{bottom:593.672516px;}
.y80{bottom:594.797516px;}
.yf6{bottom:594.797562px;}
.y2f{bottom:595.067093px;}
.y253{bottom:596.783543px;}
.y1a0{bottom:596.975830px;}
.y160{bottom:603.115056px;}
.y28c{bottom:603.919084px;}
.y2bc{bottom:603.923516px;}
.y211{bottom:604.425417px;}
.y252{bottom:611.027543px;}
.y54{bottom:611.672516px;}
.y7f{bottom:612.797516px;}
.ya6{bottom:612.797562px;}
.y2e{bottom:613.067093px;}
.y19f{bottom:614.975830px;}
.y15f{bottom:617.359056px;}
.y28b{bottom:618.163084px;}
.y2bb{bottom:618.167516px;}
.y210{bottom:622.569417px;}
.y251{bottom:625.271543px;}
.y12b{bottom:628.543043px;}
.y53{bottom:629.672516px;}
.y7e{bottom:630.797516px;}
.yf5{bottom:630.797562px;}
.y2d{bottom:631.067093px;}
.y15e{bottom:631.603056px;}
.y28a{bottom:632.407084px;}
.y2ba{bottom:632.411516px;}
.y19e{bottom:632.975830px;}
.y250{bottom:639.515543px;}
.y20f{bottom:640.713417px;}
.ye5{bottom:641.978119px;}
.y12a{bottom:642.787043px;}
.y7{bottom:645.510000px;}
.y15d{bottom:645.847056px;}
.y289{bottom:646.651084px;}
.y2b9{bottom:646.655516px;}
.y19c{bottom:647.169022px;}
.y52{bottom:647.672516px;}
.y7d{bottom:648.797516px;}
.yf4{bottom:648.797562px;}
.y2c{bottom:649.067093px;}
.y163{bottom:649.697571px;}
.y19b{bottom:650.975830px;}
.y24f{bottom:653.759543px;}
.y129{bottom:657.031043px;}
.y20e{bottom:658.857417px;}
.y15c{bottom:660.091056px;}
.y288{bottom:660.895084px;}
.y2b8{bottom:660.899516px;}
.y51{bottom:665.672516px;}
.y6{bottom:666.771000px;}
.y7c{bottom:666.797516px;}
.yf3{bottom:666.797562px;}
.y2b{bottom:667.067093px;}
.y24e{bottom:668.003543px;}
.y19a{bottom:668.975830px;}
.y128{bottom:671.275043px;}
.y15b{bottom:674.335056px;}
.y287{bottom:675.139084px;}
.y2b7{bottom:675.143516px;}
.y24d{bottom:682.247543px;}
.y195{bottom:683.033981px;}
.y50{bottom:683.672516px;}
.y20d{bottom:684.585417px;}
.y7b{bottom:684.797516px;}
.yf2{bottom:684.797562px;}
.y2a{bottom:685.067093px;}
.y127{bottom:685.519043px;}
.y162{bottom:685.697571px;}
.y198{bottom:686.932480px;}
.y194{bottom:686.972516px;}
.y197{bottom:686.975830px;}
.y15a{bottom:688.579056px;}
.y286{bottom:689.383084px;}
.y2b6{bottom:689.387516px;}
.y4f{bottom:701.672516px;}
.y20c{bottom:702.729417px;}
.y7a{bottom:702.797516px;}
.yf1{bottom:702.797562px;}
.y29{bottom:703.067093px;}
.y285{bottom:703.627084px;}
.y2b5{bottom:703.631516px;}
.y1b3{bottom:708.725830px;}
.y24c{bottom:714.797562px;}
.y284{bottom:717.871084px;}
.y2b4{bottom:717.875516px;}
.y4e{bottom:719.672516px;}
.y79{bottom:720.797516px;}
.yf0{bottom:720.797562px;}
.y20b{bottom:720.873417px;}
.y1b4{bottom:722.976013px;}
.y5{bottom:726.298500px;}
.y283{bottom:732.115084px;}
.y2b3{bottom:732.119516px;}
.y1cc{bottom:732.937118px;}
.y1c8{bottom:737.583893px;}
.y4d{bottom:737.672516px;}
.y78{bottom:738.797516px;}
.y104{bottom:738.797562px;}
.y20a{bottom:739.017417px;}
.y282{bottom:746.359084px;}
.y2b2{bottom:746.363516px;}
.y1ca{bottom:749.678833px;}
.y28{bottom:751.559696px;}
.y3{bottom:752.599495px;}
.y1c9{bottom:754.538269px;}
.y4c{bottom:755.672516px;}
.y77{bottom:756.797516px;}
.y209{bottom:757.161417px;}
.y161{bottom:757.697571px;}
.y281{bottom:760.603084px;}
.y2b1{bottom:760.607516px;}
.y27{bottom:765.803696px;}
.y1bb{bottom:768.746063px;}
.y1bf{bottom:768.746246px;}
.y1c4{bottom:768.746429px;}
.y4b{bottom:773.672516px;}
.y76{bottom:774.797516px;}
.y280{bottom:774.847084px;}
.y2b0{bottom:774.851516px;}
.y208{bottom:775.305417px;}
.y1bc{bottom:778.703509px;}
.y1c1{bottom:778.703601px;}
.y1c6{bottom:778.703876px;}
.y1b8{bottom:783.348175px;}
.y1c0{bottom:783.348267px;}
.y1c5{bottom:783.348633px;}
.y27f{bottom:789.091084px;}
.y24b{bottom:789.095516px;}
.y4a{bottom:791.672516px;}
.y75{bottom:792.797516px;}
.y207{bottom:793.449417px;}
.y1ba{bottom:795.442657px;}
.y1be{bottom:795.442841px;}
.y1c3{bottom:795.442932px;}
.y1b9{bottom:800.301727px;}
.y1bd{bottom:800.302093px;}
.y1c2{bottom:800.302185px;}
.y27e{bottom:803.335084px;}
.y24a{bottom:803.339516px;}
.y26{bottom:803.652191px;}
.y49{bottom:809.672516px;}
.y74{bottom:810.797516px;}
.y206{bottom:811.593417px;}
.y1b6{bottom:813.304230px;}
.y1b7{bottom:814.629272px;}
.y27d{bottom:817.579084px;}
.y249{bottom:817.583516px;}
.y48{bottom:827.672516px;}
.y73{bottom:828.797516px;}
.y205{bottom:829.737417px;}
.y27c{bottom:831.823084px;}
.y248{bottom:831.827516px;}
.y1ff{bottom:842.887084px;}
.y47{bottom:845.672516px;}
.y27b{bottom:846.067084px;}
.y247{bottom:846.071516px;}
.y25{bottom:846.398529px;}
.y72{bottom:846.797516px;}
.y204{bottom:847.881417px;}
.y1fe{bottom:857.131084px;}
.y27a{bottom:860.311084px;}
.y246{bottom:860.315516px;}
.y46{bottom:863.672516px;}
.y71{bottom:864.797516px;}
.y203{bottom:866.025417px;}
.y1fd{bottom:871.375084px;}
.y279{bottom:874.555084px;}
.y245{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y70{bottom:882.797516px;}
.y1fc{bottom:885.619084px;}
.y278{bottom:888.799084px;}
.y244{bottom:888.803516px;}
.y202{bottom:894.033417px;}
.y45{bottom:899.672516px;}
.y24{bottom:899.785217px;}
.y1fb{bottom:899.863084px;}
.y6f{bottom:900.797516px;}
.y277{bottom:903.043084px;}
.y243{bottom:903.047516px;}
.y22{bottom:925.867084px;}
.y6e{bottom:939.670349px;}
.y9a{bottom:940.110892px;}
.y43{bottom:940.111075px;}
.y21{bottom:940.111084px;}
.y99{bottom:940.626892px;}
.y42{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h3d{height:3.503135px;}
.h34{height:10.200000px;}
.h2a{height:10.650000px;}
.h26{height:13.800000px;}
.h36{height:13.801500px;}
.h21{height:13.950000px;}
.h28{height:14.099999px;}
.h23{height:14.248499px;}
.h3c{height:25.116374px;}
.h3a{height:25.376455px;}
.h2b{height:26.466614px;}
.h37{height:27.606899px;}
.h2f{height:28.398895px;}
.h32{height:28.692967px;}
.h14{height:29.299200px;}
.h7{height:32.130000px;}
.h30{height:32.828204px;}
.ha{height:33.840000px;}
.h3b{height:35.774437px;}
.h2c{height:36.599999px;}
.h43{height:36.624000px;}
.h27{height:39.249808px;}
.h22{height:40.030003px;}
.h2e{height:40.090018px;}
.h35{height:40.450108px;}
.h29{height:40.570138px;}
.h1d{height:40.680000px;}
.h25{height:40.930228px;}
.h24{height:40.990243px;}
.h13{height:41.856000px;}
.hb{height:42.048000px;}
.h44{height:42.405018px;}
.h1b{height:42.528000px;}
.h46{height:42.966000px;}
.h45{height:44.310000px;}
.h6{height:45.900000px;}
.h41{height:46.247327px;}
.h39{height:46.247510px;}
.h40{height:46.292554px;}
.h3e{height:46.292920px;}
.hd{height:46.704000px;}
.h31{height:47.839556px;}
.h2d{height:47.840197px;}
.h3{height:48.195000px;}
.h1c{height:49.104000px;}
.h33{height:49.180798px;}
.h1f{height:50.640000px;}
.h11{height:52.320000px;}
.h12{height:53.160000px;}
.h17{height:53.640000px;}
.h3f{height:54.353100px;}
.h42{height:54.839239px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h10{height:59.340000px;}
.h20{height:60.623451px;}
.h19{height:60.623908px;}
.h16{height:60.624000px;}
.h1a{height:60.624183px;}
.h18{height:61.380000px;}
.hf{height:64.866000px;}
.h15{height:65.274000px;}
.he{height:69.108000px;}
.h5{height:78.030000px;}
.h47{height:98.322000px;}
.h38{height:104.696995px;}
.h4{height:119.055004px;}
.h1e{height:615.197983px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w10{width:9.405000px;}
.wd{width:10.020000px;}
.w13{width:10.485000px;}
.w11{width:11.158500px;}
.w12{width:11.475000px;}
.w15{width:12.900000px;}
.w14{width:13.034999px;}
.wa{width:14.460000px;}
.we{width:15.795000px;}
.wb{width:28.155000px;}
.wc{width:43.995000px;}
.w9{width:50.415000px;}
.w6{width:53.848497px;}
.w8{width:57.001499px;}
.w7{width:95.294998px;}
.wf{width:381.870003px;}
.w16{width:475.232986px;}
.w5{width:505.984497px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x12{left:-1.536598px;}
.x0{left:0.000000px;}
.x5b{left:51.730803px;}
.x24{left:73.219654px;}
.x6{left:76.535402px;}
.xa{left:77.598450px;}
.xb{left:78.746400px;}
.x8{left:80.907303px;}
.x6f{left:88.094250px;}
.x59{left:91.910997px;}
.xc{left:93.543138px;}
.x2f{left:95.899807px;}
.x9{left:97.799400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4c{left:107.917500px;}
.x31{left:110.250605px;}
.x27{left:115.083149px;}
.x4d{left:117.937798px;}
.x10{left:120.878998px;}
.x39{left:130.988846px;}
.x5a{left:133.970398px;}
.x71{left:135.232055px;}
.x22{left:138.592495px;}
.x3f{left:152.371799px;}
.x67{left:156.178196px;}
.x33{left:164.074802px;}
.x68{left:168.714752px;}
.x13{left:171.830395px;}
.x11{left:174.728405px;}
.x40{left:180.379799px;}
.x14{left:181.987495px;}
.x23{left:186.418797px;}
.x5c{left:188.152496px;}
.x5d{left:190.551893px;}
.x69{left:193.477500px;}
.x41{left:198.523799px;}
.x4{left:203.484001px;}
.x1a{left:210.274498px;}
.x5f{left:214.526396px;}
.x42{left:216.667799px;}
.x25{left:219.668999px;}
.x6e{left:228.674917px;}
.x35{left:234.383251px;}
.x72{left:237.367504px;}
.x15{left:238.988548px;}
.x30{left:240.499947px;}
.x2a{left:243.117016px;}
.x26{left:247.681503px;}
.x16{left:249.147011px;}
.x80{left:250.871401px;}
.x43{left:252.955799px;}
.x73{left:254.388004px;}
.xf{left:262.268400px;}
.x50{left:264.370491px;}
.x37{left:268.106266px;}
.x44{left:271.099799px;}
.x32{left:272.562447px;}
.x51{left:275.530060px;}
.x52{left:283.967995px;}
.x45{left:289.255799px;}
.x61{left:291.942450px;}
.x57{left:293.409004px;}
.x53{left:295.442848px;}
.x17{left:299.561850px;}
.x5e{left:301.136100px;}
.x54{left:303.880508px;}
.x58{left:306.309608px;}
.x46{left:307.399799px;}
.xe{left:312.572411px;}
.x55{left:314.365791px;}
.x2c{left:317.690998px;}
.x74{left:322.470004px;}
.x34{left:326.386642px;}
.x2e{left:330.637974px;}
.x4e{left:332.558990px;}
.x6a{left:334.626457px;}
.x75{left:335.973004px;}
.x18{left:337.162491px;}
.x63{left:340.846785px;}
.x4f{left:341.963997px;}
.x28{left:344.490143px;}
.x19{left:351.622948px;}
.x76{left:352.993504px;}
.x56{left:357.186447px;}
.x47{left:361.831799px;}
.x65{left:366.457197px;}
.x77{left:370.014004px;}
.x29{left:375.715942px;}
.x60{left:378.552589px;}
.x48{left:379.975799px;}
.x78{left:387.034504px;}
.x36{left:396.695114px;}
.x49{left:398.119799px;}
.x79{left:408.633004px;}
.x38{left:413.489227px;}
.x4a{left:416.263799px;}
.x62{left:423.826950px;}
.x7a{left:425.653504px;}
.x6b{left:428.125488px;}
.x2b{left:432.564148px;}
.x4b{left:434.491799px;}
.x7b{left:442.674004px;}
.x81{left:449.143478px;}
.x64{left:453.055069px;}
.x3{left:454.959000px;}
.x3a{left:460.352846px;}
.x2d{left:463.236282px;}
.x66{left:465.746979px;}
.x6d{left:470.856886px;}
.x3b{left:474.596846px;}
.x7c{left:476.715004px;}
.x5{left:485.858414px;}
.x3c{left:488.840846px;}
.x7d{left:493.735504px;}
.x3d{left:503.084846px;}
.x7e{left:510.756004px;}
.x1d{left:515.054993px;}
.x7{left:521.631592px;}
.x1e{left:525.074570px;}
.x7f{left:527.860504px;}
.x3e{left:535.832846px;}
.x1b{left:538.523987px;}
.x6c{left:551.079163px;}
.x70{left:552.950237px;}
.x1f{left:554.234985px;}
.x21{left:565.019256px;}
.x20{left:570.029250px;}
.xd{left:571.119919px;}
.x1c{left:582.519745px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-13.343999pt;}
.v7{vertical-align:-11.803385pt;}
.v5{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.720273pt;}
.v4{vertical-align:13.343994pt;}
.va{vertical-align:14.905083pt;}
.v8{vertical-align:16.514367pt;}
.v6{vertical-align:18.849284pt;}
.v1{vertical-align:21.333333pt;}
.vb{vertical-align:48.010667pt;}
.ls2a{letter-spacing:-2.816000pt;}
.ls27{letter-spacing:-2.464000pt;}
.ls2d{letter-spacing:-2.261333pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls26{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.746853pt;}
.lse{letter-spacing:-0.693333pt;}
.ls22{letter-spacing:-0.660524pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.298667pt;}
.ls28{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.002013pt;}
.ls7{letter-spacing:0.003805pt;}
.lsf{letter-spacing:0.004050pt;}
.ls29{letter-spacing:0.004307pt;}
.ls21{letter-spacing:0.011001pt;}
.ls19{letter-spacing:0.012568pt;}
.ls10{letter-spacing:0.014086pt;}
.ls1b{letter-spacing:0.017516pt;}
.ls11{letter-spacing:0.021604pt;}
.ls2b{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:1.834667pt;}
.ls1f{letter-spacing:1.887211pt;}
.ls9{letter-spacing:2.133867pt;}
.ls1c{letter-spacing:2.332322pt;}
.ls17{letter-spacing:2.332403pt;}
.ls1d{letter-spacing:2.362311pt;}
.ls15{letter-spacing:2.380565pt;}
.ls1{letter-spacing:2.986667pt;}
.ls20{letter-spacing:3.774421pt;}
.lsa{letter-spacing:4.267733pt;}
.ls14{letter-spacing:10.474019pt;}
.ls13{letter-spacing:10.521199pt;}
.lsd{letter-spacing:11.842960pt;}
.lsc{letter-spacing:11.896306pt;}
.ls1a{letter-spacing:12.829926pt;}
.ls1e{letter-spacing:12.913862pt;}
.ls18{letter-spacing:12.966356pt;}
.ls12{letter-spacing:13.116114pt;}
.ls8{letter-spacing:14.531329pt;}
.ls23{letter-spacing:143.573883pt;}
.ls25{letter-spacing:164.907054pt;}
.ls24{letter-spacing:164.907217pt;}
.ws14{word-spacing:-13.333333pt;}
.ws11c{word-spacing:-13.226667pt;}
.wsf9{word-spacing:-12.640000pt;}
.wse6{word-spacing:-11.896306pt;}
.ws12b{word-spacing:-11.850667pt;}
.wse7{word-spacing:-11.842960pt;}
.ws159{word-spacing:-11.264000pt;}
.wsdf{word-spacing:-11.093333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws7c{word-spacing:-10.666667pt;}
.ws10e{word-spacing:-10.474019pt;}
.ws6{word-spacing:-10.240000pt;}
.wsa0{word-spacing:-10.154667pt;}
.wsdc{word-spacing:-10.080000pt;}
.ws13{word-spacing:-9.333333pt;}
.ws167{word-spacing:-8.405333pt;}
.ws2{word-spacing:-8.362667pt;}
.ws143{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsc9{word-spacing:-7.168000pt;}
.wsfa{word-spacing:-6.666667pt;}
.wsf8{word-spacing:-5.333333pt;}
.ws11b{word-spacing:-4.666667pt;}
.ws15{word-spacing:-1.680000pt;}
.ws12e{word-spacing:-1.120000pt;}
.wsbe{word-spacing:-1.013333pt;}
.wsba{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.906667pt;}
.ws11e{word-spacing:-0.693333pt;}
.ws15f{word-spacing:-0.682667pt;}
.ws12d{word-spacing:-0.640000pt;}
.ws164{word-spacing:-0.597333pt;}
.ws55{word-spacing:-0.586667pt;}
.ws15a{word-spacing:-0.554667pt;}
.wsdd{word-spacing:-0.533333pt;}
.ws43{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.wsac{word-spacing:-0.373333pt;}
.wsce{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.266667pt;}
.wsa9{word-spacing:-0.213333pt;}
.wsbb{word-spacing:-0.160000pt;}
.ws15e{word-spacing:-0.128000pt;}
.ws3b{word-spacing:-0.106667pt;}
.wsd5{word-spacing:-0.053347pt;}
.ws106{word-spacing:-0.047180pt;}
.ws1{word-spacing:-0.042667pt;}
.ws107{word-spacing:-0.033026pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.042667pt;}
.wse2{word-spacing:0.053333pt;}
.ws90{word-spacing:0.085333pt;}
.wsb5{word-spacing:0.106667pt;}
.ws146{word-spacing:0.128000pt;}
.ws77{word-spacing:0.160000pt;}
.ws8a{word-spacing:0.170667pt;}
.ws9d{word-spacing:0.213333pt;}
.ws123{word-spacing:0.256000pt;}
.ws25{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.wsd2{word-spacing:0.341333pt;}
.ws4b{word-spacing:0.373333pt;}
.ws147{word-spacing:0.384000pt;}
.ws52{word-spacing:0.426667pt;}
.ws160{word-spacing:0.469333pt;}
.ws24{word-spacing:0.480000pt;}
.ws151{word-spacing:0.512000pt;}
.ws3f{word-spacing:0.533333pt;}
.wsf0{word-spacing:0.554667pt;}
.ws11{word-spacing:0.586667pt;}
.ws174{word-spacing:0.597333pt;}
.ws109{word-spacing:0.613343pt;}
.ws12c{word-spacing:0.640000pt;}
.ws173{word-spacing:0.682667pt;}
.wsb3{word-spacing:0.693333pt;}
.wsd6{word-spacing:0.693507pt;}
.wse8{word-spacing:0.725333pt;}
.ws2e{word-spacing:0.746667pt;}
.ws129{word-spacing:0.768000pt;}
.ws38{word-spacing:0.800000pt;}
.wsa7{word-spacing:0.810667pt;}
.ws19{word-spacing:0.853333pt;}
.wsf3{word-spacing:0.896000pt;}
.ws56{word-spacing:0.906667pt;}
.ws125{word-spacing:0.938667pt;}
.ws102{word-spacing:0.960000pt;}
.ws128{word-spacing:0.981333pt;}
.wsa8{word-spacing:1.013333pt;}
.wsc5{word-spacing:1.066667pt;}
.ws8b{word-spacing:1.109333pt;}
.ws59{word-spacing:1.120000pt;}
.ws98{word-spacing:1.173333pt;}
.wsc1{word-spacing:1.194667pt;}
.ws60{word-spacing:1.226667pt;}
.ws144{word-spacing:1.237333pt;}
.ws2c{word-spacing:1.280000pt;}
.ws122{word-spacing:1.322667pt;}
.ws4c{word-spacing:1.333333pt;}
.ws92{word-spacing:1.365333pt;}
.ws1a{word-spacing:1.386667pt;}
.ws14e{word-spacing:1.408000pt;}
.wsb6{word-spacing:1.440000pt;}
.ws121{word-spacing:1.450667pt;}
.ws58{word-spacing:1.493333pt;}
.ws9c{word-spacing:1.546667pt;}
.wsd4{word-spacing:1.578667pt;}
.wsf{word-spacing:1.600000pt;}
.ws145{word-spacing:1.621333pt;}
.ws10{word-spacing:1.653333pt;}
.ws1f{word-spacing:1.706667pt;}
.ws152{word-spacing:1.749333pt;}
.ws48{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.792000pt;}
.wsc{word-spacing:1.813333pt;}
.ws5d{word-spacing:1.866667pt;}
.wsf2{word-spacing:1.877333pt;}
.ws1b{word-spacing:1.920000pt;}
.ws163{word-spacing:1.962667pt;}
.ws3c{word-spacing:1.973333pt;}
.wsf5{word-spacing:2.005333pt;}
.ws42{word-spacing:2.026667pt;}
.wsf1{word-spacing:2.048000pt;}
.wsb1{word-spacing:2.080000pt;}
.ws176{word-spacing:2.090667pt;}
.ws36{word-spacing:2.133333pt;}
.ws47{word-spacing:2.186667pt;}
.ws6f{word-spacing:2.240000pt;}
.ws16f{word-spacing:2.261333pt;}
.wsae{word-spacing:2.293333pt;}
.wsc4{word-spacing:2.346667pt;}
.wsb7{word-spacing:2.389333pt;}
.ws78{word-spacing:2.400000pt;}
.wsc8{word-spacing:2.432000pt;}
.ws4d{word-spacing:2.453333pt;}
.ws33{word-spacing:2.506667pt;}
.ws7b{word-spacing:2.517333pt;}
.ws4e{word-spacing:2.560000pt;}
.ws66{word-spacing:2.613333pt;}
.ws3a{word-spacing:2.666667pt;}
.ws7a{word-spacing:2.688000pt;}
.ws83{word-spacing:2.720000pt;}
.wsc6{word-spacing:2.730667pt;}
.wsbf{word-spacing:2.773333pt;}
.ws79{word-spacing:2.816000pt;}
.ws5e{word-spacing:2.826667pt;}
.ws14d{word-spacing:2.858667pt;}
.wse5{word-spacing:2.880000pt;}
.wsc7{word-spacing:2.901333pt;}
.ws2a{word-spacing:2.933333pt;}
.ws103{word-spacing:2.944000pt;}
.ws9f{word-spacing:2.986667pt;}
.ws161{word-spacing:3.029333pt;}
.ws13b{word-spacing:3.040000pt;}
.ws14b{word-spacing:3.072000pt;}
.ws46{word-spacing:3.093333pt;}
.ws166{word-spacing:3.114667pt;}
.wse9{word-spacing:3.146667pt;}
.ws4a{word-spacing:3.200000pt;}
.ws6c{word-spacing:3.253333pt;}
.ws171{word-spacing:3.285333pt;}
.wsd{word-spacing:3.306667pt;}
.wsa3{word-spacing:3.328000pt;}
.wsad{word-spacing:3.360000pt;}
.ws104{word-spacing:3.370667pt;}
.ws32{word-spacing:3.413333pt;}
.ws124{word-spacing:3.456000pt;}
.ws26{word-spacing:3.466667pt;}
.ws13f{word-spacing:3.498667pt;}
.ws64{word-spacing:3.520000pt;}
.ws1d{word-spacing:3.573333pt;}
.wsd1{word-spacing:3.584000pt;}
.ws95{word-spacing:3.626667pt;}
.ws127{word-spacing:3.669333pt;}
.ws57{word-spacing:3.680000pt;}
.ws91{word-spacing:3.712000pt;}
.ws37{word-spacing:3.733333pt;}
.ws169{word-spacing:3.754667pt;}
.wsc3{word-spacing:3.786667pt;}
.wsd0{word-spacing:3.797333pt;}
.wscd{word-spacing:3.840000pt;}
.ws14c{word-spacing:3.882667pt;}
.wse0{word-spacing:3.893333pt;}
.wscc{word-spacing:3.946667pt;}
.ws5a{word-spacing:4.000000pt;}
.ws20{word-spacing:4.053333pt;}
.ws2b{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.138667pt;}
.ws2f{word-spacing:4.160000pt;}
.wsb4{word-spacing:4.213333pt;}
.ws75{word-spacing:4.266667pt;}
.wsa6{word-spacing:4.309333pt;}
.ws1e{word-spacing:4.320000pt;}
.wsab{word-spacing:4.373333pt;}
.ws86{word-spacing:4.394667pt;}
.ws9e{word-spacing:4.426667pt;}
.ws12f{word-spacing:4.437333pt;}
.wsaf{word-spacing:4.480000pt;}
.ws89{word-spacing:4.522667pt;}
.ws76{word-spacing:4.533333pt;}
.ws4f{word-spacing:4.586667pt;}
.ws84{word-spacing:4.608000pt;}
.ws11f{word-spacing:4.640000pt;}
.ws97{word-spacing:4.693333pt;}
.ws16e{word-spacing:4.736000pt;}
.wsfb{word-spacing:4.800000pt;}
.wsa1{word-spacing:4.821333pt;}
.ws6d{word-spacing:4.853333pt;}
.wsf4{word-spacing:4.864000pt;}
.ws68{word-spacing:4.906667pt;}
.ws13c{word-spacing:4.960000pt;}
.ws8d{word-spacing:4.992000pt;}
.ws9a{word-spacing:5.013333pt;}
.ws165{word-spacing:5.034667pt;}
.wsb0{word-spacing:5.066667pt;}
.ws50{word-spacing:5.120000pt;}
.wsa5{word-spacing:5.162667pt;}
.wsb2{word-spacing:5.173333pt;}
.ws153{word-spacing:5.205333pt;}
.ws21{word-spacing:5.226667pt;}
.wsc2{word-spacing:5.248000pt;}
.wsb{word-spacing:5.280000pt;}
.ws158{word-spacing:5.290667pt;}
.ws74{word-spacing:5.333333pt;}
.ws172{word-spacing:5.376000pt;}
.ws5c{word-spacing:5.386667pt;}
.ws88{word-spacing:5.418667pt;}
.ws5f{word-spacing:5.440000pt;}
.wse3{word-spacing:5.493333pt;}
.ws28{word-spacing:5.546667pt;}
.ws22{word-spacing:5.600000pt;}
.ws157{word-spacing:5.632000pt;}
.ws39{word-spacing:5.653333pt;}
.wsa2{word-spacing:5.674667pt;}
.ws3d{word-spacing:5.706667pt;}
.ws80{word-spacing:5.760000pt;}
.ws93{word-spacing:5.813333pt;}
.wsd3{word-spacing:5.888000pt;}
.ws5b{word-spacing:5.920000pt;}
.ws175{word-spacing:5.930667pt;}
.ws81{word-spacing:5.973333pt;}
.ws105{word-spacing:6.016000pt;}
.ws99{word-spacing:6.026667pt;}
.ws85{word-spacing:6.058667pt;}
.ws6b{word-spacing:6.080000pt;}
.ws120{word-spacing:6.101333pt;}
.ws54{word-spacing:6.133333pt;}
.ws170{word-spacing:6.186667pt;}
.wsef{word-spacing:6.229333pt;}
.ws13e{word-spacing:6.240000pt;}
.ws162{word-spacing:6.272000pt;}
.wsb9{word-spacing:6.293333pt;}
.wsc0{word-spacing:6.314667pt;}
.ws18{word-spacing:6.346667pt;}
.wscf{word-spacing:6.400000pt;}
.ws14f{word-spacing:6.485333pt;}
.ws100{word-spacing:6.560000pt;}
.wsee{word-spacing:6.613333pt;}
.ws10d{word-spacing:6.666667pt;}
.ws51{word-spacing:6.720000pt;}
.ws31{word-spacing:6.773333pt;}
.ws3e{word-spacing:6.826667pt;}
.ws2d{word-spacing:6.933333pt;}
.ws141{word-spacing:6.986667pt;}
.ws150{word-spacing:6.997333pt;}
.wsfd{word-spacing:7.040000pt;}
.wse1{word-spacing:7.093333pt;}
.ws62{word-spacing:7.146667pt;}
.ws44{word-spacing:7.200000pt;}
.ws126{word-spacing:7.210667pt;}
.ws7e{word-spacing:7.253333pt;}
.ws16c{word-spacing:7.338667pt;}
.ws6e{word-spacing:7.360000pt;}
.ws10c{word-spacing:7.413333pt;}
.ws94{word-spacing:7.466667pt;}
.wsa{word-spacing:7.520000pt;}
.ws17{word-spacing:7.573333pt;}
.ws149{word-spacing:7.594667pt;}
.ws101{word-spacing:7.626667pt;}
.ws45{word-spacing:7.680000pt;}
.ws82{word-spacing:7.733333pt;}
.ws49{word-spacing:7.786667pt;}
.ws13d{word-spacing:7.840000pt;}
.ws142{word-spacing:7.893333pt;}
.ws7d{word-spacing:7.946667pt;}
.ws9{word-spacing:8.053333pt;}
.wse{word-spacing:8.106667pt;}
.ws12a{word-spacing:8.160000pt;}
.wscb{word-spacing:8.213333pt;}
.ws14a{word-spacing:8.234667pt;}
.ws1c{word-spacing:8.266667pt;}
.ws53{word-spacing:8.320000pt;}
.ws15c{word-spacing:8.405333pt;}
.wsea{word-spacing:8.480000pt;}
.ws148{word-spacing:8.490667pt;}
.ws67{word-spacing:8.533333pt;}
.ws30{word-spacing:8.586667pt;}
.ws16b{word-spacing:8.618667pt;}
.wsbd{word-spacing:8.640000pt;}
.wsaa{word-spacing:8.746667pt;}
.wsff{word-spacing:8.960000pt;}
.ws140{word-spacing:9.013333pt;}
.ws40{word-spacing:9.173333pt;}
.ws65{word-spacing:9.226667pt;}
.wsa4{word-spacing:9.301333pt;}
.ws41{word-spacing:9.493333pt;}
.ws34{word-spacing:9.653333pt;}
.wsb8{word-spacing:9.706667pt;}
.ws87{word-spacing:9.728000pt;}
.ws69{word-spacing:9.813333pt;}
.ws96{word-spacing:9.866667pt;}
.ws7f{word-spacing:10.133333pt;}
.ws35{word-spacing:10.186667pt;}
.ws73{word-spacing:10.346667pt;}
.ws23{word-spacing:10.400000pt;}
.ws154{word-spacing:10.496000pt;}
.ws71{word-spacing:10.613333pt;}
.ws61{word-spacing:10.666667pt;}
.ws155{word-spacing:10.709333pt;}
.wseb{word-spacing:10.720000pt;}
.wsec{word-spacing:10.880000pt;}
.ws168{word-spacing:11.008000pt;}
.ws9b{word-spacing:11.520000pt;}
.ws15b{word-spacing:12.928000pt;}
.wsfc{word-spacing:12.960000pt;}
.ws6a{word-spacing:13.173333pt;}
.wsfe{word-spacing:13.333333pt;}
.ws10a{word-spacing:13.401237pt;}
.ws108{word-spacing:13.401319pt;}
.wse4{word-spacing:13.493333pt;}
.ws10b{word-spacing:14.026667pt;}
.wsde{word-spacing:14.133333pt;}
.ws72{word-spacing:14.666667pt;}
.wsda{word-spacing:15.104260pt;}
.wsd8{word-spacing:15.104336pt;}
.wsdb{word-spacing:15.152269pt;}
.wsd9{word-spacing:15.152757pt;}
.ws16d{word-spacing:15.317333pt;}
.wsed{word-spacing:15.893333pt;}
.ws70{word-spacing:16.000000pt;}
.ws16{word-spacing:17.482667pt;}
.ws15d{word-spacing:17.834667pt;}
.ws63{word-spacing:17.920000pt;}
.wsd7{word-spacing:18.127733pt;}
.ws16a{word-spacing:18.560000pt;}
.wsca{word-spacing:19.253333pt;}
.ws11d{word-spacing:19.360000pt;}
.ws156{word-spacing:34.176000pt;}
.ws12{word-spacing:64.938667pt;}
.ws118{word-spacing:66.042667pt;}
.wsf7{word-spacing:77.397329pt;}
.wsf6{word-spacing:79.872000pt;}
.ws117{word-spacing:84.709333pt;}
.ws112{word-spacing:97.178667pt;}
.ws115{word-spacing:103.376000pt;}
.ws116{word-spacing:124.693333pt;}
.ws11a{word-spacing:131.376000pt;}
.ws119{word-spacing:136.714667pt;}
.ws114{word-spacing:140.709333pt;}
.ws10f{word-spacing:143.845333pt;}
.ws110{word-spacing:145.861333pt;}
.ws135{word-spacing:200.576000pt;}
.ws132{word-spacing:204.117333pt;}
.ws138{word-spacing:207.658667pt;}
.ws131{word-spacing:220.970667pt;}
.ws13a{word-spacing:239.658667pt;}
.ws139{word-spacing:245.760000pt;}
.ws137{word-spacing:250.325333pt;}
.ws130{word-spacing:253.909333pt;}
.ws111{word-spacing:255.289057pt;}
.ws133{word-spacing:256.213333pt;}
.ws113{word-spacing:353.994657pt;}
.ws134{word-spacing:436.868267pt;}
.ws136{word-spacing:549.674667pt;}
._19{margin-left:-14.854356pt;}
._6{margin-left:-13.866667pt;}
._10{margin-left:-11.850667pt;}
._12{margin-left:-10.080000pt;}
._4a{margin-left:-8.906664pt;}
._4b{margin-left:-7.146667pt;}
._17{margin-left:-6.212267pt;}
._5{margin-left:-4.469333pt;}
._1{margin-left:-3.460267pt;}
._b{margin-left:-2.502400pt;}
._0{margin-left:-1.450667pt;}
._4{width:0.977067pt;}
._2{width:2.261867pt;}
._c{width:3.678933pt;}
._15{width:5.173333pt;}
._13{width:6.090667pt;}
._d{width:7.534400pt;}
._e{width:8.533325pt;}
._14{width:9.556267pt;}
._6d{width:10.808534pt;}
._1d{width:11.816532pt;}
._16{width:13.141333pt;}
._11{width:14.986667pt;}
._18{width:16.586667pt;}
._f{width:17.482667pt;}
._7{width:19.840000pt;}
._1a{width:26.666667pt;}
._1c{width:27.712000pt;}
._6c{width:29.333333pt;}
._1b{width:31.546109pt;}
._3{width:35.747172pt;}
._9{width:50.005325pt;}
._8{width:64.938667pt;}
._59{width:74.825067pt;}
._57{width:75.926933pt;}
._58{width:78.026667pt;}
._36{width:81.194667pt;}
._20{width:86.997333pt;}
._2b{width:88.575995pt;}
._2d{width:90.538667pt;}
._3e{width:94.193067pt;}
._35{width:103.750400pt;}
._46{width:106.054400pt;}
._21{width:107.136000pt;}
._27{width:108.330667pt;}
._26{width:109.482667pt;}
._64{width:111.807990pt;}
._24{width:113.107200pt;}
._25{width:114.478933pt;}
._1f{width:120.192000pt;}
._51{width:124.133333pt;}
._5a{width:127.829333pt;}
._33{width:129.365333pt;}
._22{width:130.432000pt;}
._54{width:131.680000pt;}
._4f{width:134.512000pt;}
._3f{width:137.600000pt;}
._5c{width:138.794657pt;}
._34{width:142.894933pt;}
._3b{width:143.872000pt;}
._52{width:145.450667pt;}
._2c{width:148.224000pt;}
._47{width:149.290667pt;}
._40{width:150.997333pt;}
._66{width:152.438390pt;}
._67{width:153.539219pt;}
._30{width:154.880000pt;}
._4e{width:155.829333pt;}
._6b{width:159.173362pt;}
._6a{width:160.069324pt;}
._69{width:161.194667pt;}
._28{width:162.858667pt;}
._65{width:164.462933pt;}
._43{width:166.016000pt;}
._5b{width:171.360000pt;}
._4d{width:174.496000pt;}
._56{width:176.512000pt;}
._6e{width:178.854400pt;}
._37{width:180.224000pt;}
._38{width:181.845333pt;}
._2a{width:185.344000pt;}
._29{width:190.037333pt;}
._32{width:195.370667pt;}
._50{width:198.575990pt;}
._2f{width:201.600000pt;}
._48{width:220.761600pt;}
._39{width:222.037333pt;}
._2e{width:238.720000pt;}
._72{width:239.658667pt;}
._23{width:247.125333pt;}
._53{width:252.410657pt;}
._3d{width:254.080000pt;}
._41{width:255.232000pt;}
._45{width:260.053333pt;}
._79{width:271.658667pt;}
._3c{width:273.877333pt;}
._76{width:275.968000pt;}
._71{width:277.275733pt;}
._3a{width:280.064000pt;}
._5d{width:281.493324pt;}
._49{width:283.392000pt;}
._44{width:285.568000pt;}
._68{width:292.879990pt;}
._42{width:302.293333pt;}
._6f{width:303.317333pt;}
._75{width:316.401067pt;}
._4c{width:323.978657pt;}
._78{width:342.357333pt;}
._74{width:347.737600pt;}
._73{width:367.786667pt;}
._31{width:379.392000pt;}
._1e{width:380.548267pt;}
._55{width:392.373324pt;}
._70{width:461.056000pt;}
._77{width:479.829333pt;}
._60{width:685.173333pt;}
._61{width:926.127970pt;}
._5f{width:957.263970pt;}
._5e{width:963.461304pt;}
._63{width:1000.794637pt;}
._62{width:1110.928000pt;}
._a{width:1375.786747pt;}
.fsf{font-size:26.133333pt;}
.fs8{font-size:29.866667pt;}
.fse{font-size:33.026133pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:47.180267pt;}
.fsc{font-size:50.133331pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1cb{bottom:0.005208pt;}
.y199{bottom:0.039998pt;}
.y158{bottom:0.158529pt;}
.y19d{bottom:3.373047pt;}
.y157{bottom:3.494385pt;}
.y144{bottom:3.506266pt;}
.y196{bottom:3.506673pt;}
.ye7{bottom:4.368551pt;}
.y155{bottom:23.426249pt;}
.y44{bottom:44.111465pt;}
.y23{bottom:44.112000pt;}
.y20{bottom:45.118398pt;}
.y1c7{bottom:49.535889pt;}
.y187{bottom:79.359692pt;}
.y186{bottom:79.402379pt;}
.y185{bottom:79.445067pt;}
.y184{bottom:79.487754pt;}
.y183{bottom:79.530441pt;}
.y182{bottom:79.573129pt;}
.y181{bottom:79.615816pt;}
.y1f7{bottom:79.643467pt;}
.y180{bottom:79.658503pt;}
.y17f{bottom:79.701191pt;}
.y126{bottom:79.726538pt;}
.y17e{bottom:79.743878pt;}
.y17d{bottom:79.786566pt;}
.y17c{bottom:79.829253pt;}
.y17b{bottom:79.871940pt;}
.y17a{bottom:79.914628pt;}
.y179{bottom:79.957314pt;}
.y178{bottom:80.000000pt;}
.y103{bottom:80.005333pt;}
.ybe{bottom:80.010667pt;}
.y227{bottom:80.016000pt;}
.y1ce{bottom:80.028010pt;}
.y1d2{bottom:80.056010pt;}
.y1cf{bottom:80.056020pt;}
.y1d0{bottom:80.084030pt;}
.y1d4{bottom:80.112020pt;}
.y1d6{bottom:80.168030pt;}
.y1d8{bottom:80.186667pt;}
.y1da{bottom:80.205302pt;}
.y1dc{bottom:80.223950pt;}
.y1dd{bottom:80.251960pt;}
.y1de{bottom:80.279970pt;}
.y1df{bottom:80.307980pt;}
.y1e0{bottom:80.335991pt;}
.y1e1{bottom:80.364001pt;}
.y1e2{bottom:80.392011pt;}
.y1e3{bottom:80.420021pt;}
.y177{bottom:80.651065pt;}
.y98{bottom:80.708933pt;}
.ya5{bottom:81.068903pt;}
.y133{bottom:81.451605pt;}
.y41{bottom:84.266667pt;}
.y1b5{bottom:84.419840pt;}
.y10c{bottom:86.054538pt;}
.y4{bottom:86.333337pt;}
.y152{bottom:87.299600pt;}
.y276{bottom:87.327594pt;}
.y1f6{bottom:92.304800pt;}
.y125{bottom:92.387871pt;}
.ybd{bottom:92.672000pt;}
.y226{bottom:92.677333pt;}
.ye4{bottom:92.708903pt;}
.y2af{bottom:93.670297pt;}
.y6d{bottom:93.791995pt;}
.y132{bottom:94.112938pt;}
.y97{bottom:96.708933pt;}
.y102{bottom:96.933329pt;}
.ya4{bottom:97.068903pt;}
.y176{bottom:97.578929pt;}
.y40{bottom:99.380669pt;}
.y275{bottom:99.988927pt;}
.y10b{bottom:102.982533pt;}
.y151{bottom:103.299600pt;}
.y1f5{bottom:104.966133pt;}
.y225{bottom:105.338667pt;}
.y2ae{bottom:106.331630pt;}
.y101{bottom:106.458662pt;}
.y1cd{bottom:106.469328pt;}
.y175{bottom:107.104271pt;}
.ye3{bottom:108.708903pt;}
.y124{bottom:109.315867pt;}
.ybc{bottom:109.599996pt;}
.y193{bottom:110.244937pt;}
.y6c{bottom:110.720000pt;}
.y131{bottom:111.040933pt;}
.y274{bottom:112.650261pt;}
.ya3{bottom:113.068903pt;}
.y3f{bottom:116.308665pt;}
.y1f4{bottom:117.627467pt;}
.y2ad{bottom:118.992964pt;}
.ybb{bottom:119.125328pt;}
.yce{bottom:119.130662pt;}
.y150{bottom:119.299600pt;}
.y224{bottom:122.266663pt;}
.y100{bottom:123.386667pt;}
.y1f{bottom:123.790666pt;}
.y174{bottom:124.032267pt;}
.ye2{bottom:124.708903pt;}
.y273{bottom:125.311594pt;}
.y192{bottom:127.172933pt;}
.y96{bottom:128.708933pt;}
.y22c{bottom:128.708944pt;}
.ya2{bottom:129.068903pt;}
.y242{bottom:129.508931pt;}
.y1f3{bottom:130.288800pt;}
.y130{bottom:131.510803pt;}
.y2db{bottom:131.647570pt;}
.y2ac{bottom:131.654297pt;}
.ycd{bottom:131.791995pt;}
.y10a{bottom:134.482803pt;}
.yba{bottom:136.053333pt;}
.y191{bottom:136.703599pt;}
.y3e{bottom:137.529860pt;}
.y272{bottom:137.972927pt;}
.y173{bottom:138.305327pt;}
.ye1{bottom:140.708903pt;}
.y12f{bottom:141.036136pt;}
.y2da{bottom:144.308903pt;}
.y2ab{bottom:144.315630pt;}
.y22b{bottom:144.708944pt;}
.ya1{bottom:145.068903pt;}
.y109{bottom:147.144136pt;}
.y1f2{bottom:147.216797pt;}
.ycc{bottom:148.720000pt;}
.y190{bottom:149.364932pt;}
.y3d{bottom:150.191194pt;}
.y271{bottom:150.634261pt;}
.y172{bottom:150.966660pt;}
.y14f{bottom:151.299600pt;}
.yef{bottom:152.119059pt;}
.y241{bottom:154.842265pt;}
.ye0{bottom:156.708903pt;}
.y1f1{bottom:156.742129pt;}
.y2aa{bottom:156.976964pt;}
.y12e{bottom:157.964132pt;}
.y108{bottom:159.805469pt;}
.y95{bottom:160.708933pt;}
.y22a{bottom:160.708944pt;}
.ya0{bottom:161.068903pt;}
.y270{bottom:163.295594pt;}
.y171{bottom:163.627994pt;}
.yee{bottom:164.780393pt;}
.y123{bottom:165.499593pt;}
.y18f{bottom:166.292938pt;}
.y3c{bottom:169.561860pt;}
.y2a9{bottom:169.638297pt;}
.y2d9{bottom:169.642236pt;}
.y139{bottom:171.270804pt;}
.y107{bottom:172.466803pt;}
.ydf{bottom:172.708903pt;}
.y1f0{bottom:173.670125pt;}
.y16{bottom:175.052000pt;}
.y6b{bottom:175.708903pt;}
.y18e{bottom:175.818139pt;}
.y26f{bottom:175.956927pt;}
.y170{bottom:176.289327pt;}
.y229{bottom:176.708944pt;}
.y9f{bottom:177.068903pt;}
.yed{bottom:177.441726pt;}
.y223{bottom:179.291341pt;}
.y122{bottom:181.499593pt;}
.y3b{bottom:182.223194pt;}
.y2a8{bottom:182.299630pt;}
.y2d8{bottom:182.303570pt;}
.y1ef{bottom:183.195458pt;}
.y240{bottom:183.556944pt;}
.y14e{bottom:183.796000pt;}
.y138{bottom:183.932138pt;}
.y106{bottom:185.128136pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y14d{bottom:187.299600pt;}
.y26e{bottom:188.618261pt;}
.yde{bottom:188.708903pt;}
.yff{bottom:188.708944pt;}
.y16f{bottom:188.950660pt;}
.yec{bottom:190.103059pt;}
.y6a{bottom:191.708903pt;}
.y228{bottom:192.708944pt;}
.y18d{bottom:192.746133pt;}
.y9e{bottom:193.068903pt;}
.y2a7{bottom:194.960964pt;}
.y2d7{bottom:194.964903pt;}
.y222{bottom:195.291341pt;}
.y23f{bottom:196.218277pt;}
.y137{bottom:196.593471pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y121{bottom:197.499593pt;}
.y105{bottom:197.789469pt;}
.y1ee{bottom:200.123474pt;}
.y26d{bottom:201.279594pt;}
.y3a{bottom:201.593860pt;}
.y16e{bottom:201.611994pt;}
.y18c{bottom:202.271467pt;}
.y1d1{bottom:202.499998pt;}
.y1d3{bottom:202.556008pt;}
.y1d5{bottom:202.612018pt;}
.y1d7{bottom:202.649337pt;}
.yeb{bottom:202.764393pt;}
.y14c{bottom:203.299600pt;}
.ydd{bottom:204.708903pt;}
.yfe{bottom:204.708944pt;}
.ycb{bottom:205.948399pt;}
.y2a6{bottom:207.622297pt;}
.y2d6{bottom:207.626236pt;}
.y69{bottom:207.708903pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y94{bottom:208.708903pt;}
.yb9{bottom:208.708923pt;}
.y1fa{bottom:208.708944pt;}
.y9d{bottom:209.068903pt;}
.y136{bottom:209.254804pt;}
.y1ed{bottom:209.670140pt;}
.y221{bottom:211.291341pt;}
.y120{bottom:213.499593pt;}
.y26c{bottom:213.940927pt;}
.y39{bottom:214.255194pt;}
.y16d{bottom:214.273327pt;}
.yea{bottom:215.425726pt;}
.yca{bottom:218.609733pt;}
.y18b{bottom:219.199463pt;}
.y14b{bottom:219.299600pt;}
.y2a5{bottom:220.283630pt;}
.y2d5{bottom:220.287570pt;}
.ydc{bottom:220.708903pt;}
.yfd{bottom:220.708944pt;}
.y23e{bottom:221.530277pt;}
.y1ec{bottom:222.331473pt;}
.y68{bottom:223.708903pt;}
.y93{bottom:224.708903pt;}
.yb8{bottom:224.708923pt;}
.y1f9{bottom:224.708944pt;}
.y9c{bottom:225.068903pt;}
.y135{bottom:226.182800pt;}
.y26b{bottom:226.602261pt;}
.y16c{bottom:226.934660pt;}
.y220{bottom:227.291341pt;}
.ye9{bottom:228.087059pt;}
.y18a{bottom:228.730129pt;}
.y11f{bottom:229.499593pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yc9{bottom:231.271066pt;}
.y14a{bottom:231.796000pt;}
.y2a4{bottom:232.944964pt;}
.y2d4{bottom:232.948903pt;}
.y23d{bottom:234.191610pt;}
.y1eb{bottom:234.992807pt;}
.y149{bottom:235.299600pt;}
.ydb{bottom:236.708903pt;}
.yfc{bottom:236.708944pt;}
.y26a{bottom:239.263594pt;}
.y16b{bottom:239.595994pt;}
.y67{bottom:239.708903pt;}
.y134{bottom:239.969462pt;}
.y92{bottom:240.708903pt;}
.yb7{bottom:240.708923pt;}
.y1f8{bottom:240.708944pt;}
.ye8{bottom:240.748393pt;}
.y38{bottom:240.985860pt;}
.y189{bottom:241.391462pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y21f{bottom:243.291341pt;}
.yc8{bottom:243.932399pt;}
.y11e{bottom:245.499593pt;}
.y2a3{bottom:245.606297pt;}
.y2d3{bottom:245.610236pt;}
.y23c{bottom:246.852944pt;}
.y1ea{bottom:247.654140pt;}
.y148{bottom:251.299600pt;}
.y269{bottom:251.924927pt;}
.y16a{bottom:252.257327pt;}
.yda{bottom:252.708903pt;}
.yfb{bottom:252.708944pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y66{bottom:255.708903pt;}
.yc7{bottom:256.593733pt;}
.y91{bottom:256.708903pt;}
.yb6{bottom:256.708923pt;}
.y12d{bottom:256.708944pt;}
.y9b{bottom:257.068903pt;}
.y2a2{bottom:258.267630pt;}
.y2d2{bottom:258.271570pt;}
.y188{bottom:258.319458pt;}
.y1b2{bottom:258.645182pt;}
.y21e{bottom:259.291341pt;}
.y23b{bottom:259.514277pt;}
.y1e9{bottom:260.315473pt;}
.y11d{bottom:261.499593pt;}
.y146{bottom:263.796000pt;}
.ye6{bottom:263.866659pt;}
.y268{bottom:264.586261pt;}
.y147{bottom:267.299600pt;}
.yd9{bottom:268.708903pt;}
.yfa{bottom:268.708944pt;}
.y169{bottom:269.185343pt;}
.yc6{bottom:269.255066pt;}
.y2a1{bottom:270.928964pt;}
.y2d1{bottom:270.932903pt;}
.y65{bottom:271.708903pt;}
.y23a{bottom:272.175610pt;}
.y90{bottom:272.708903pt;}
.yb5{bottom:272.708923pt;}
.y12c{bottom:272.708944pt;}
.y1b1{bottom:274.645182pt;}
.y21d{bottom:275.291341pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y1e8{bottom:277.243469pt;}
.y267{bottom:277.247594pt;}
.y11c{bottom:277.499593pt;}
.y143{bottom:279.796000pt;}
.yc5{bottom:281.916399pt;}
.y142{bottom:283.299593pt;}
.y145{bottom:283.299600pt;}
.y2a0{bottom:283.590297pt;}
.y2d0{bottom:283.594236pt;}
.yd8{bottom:284.708903pt;}
.yf9{bottom:284.708944pt;}
.y239{bottom:284.836944pt;}
.y1e7{bottom:286.768802pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y64{bottom:287.708903pt;}
.y8f{bottom:288.708903pt;}
.yb4{bottom:288.708944pt;}
.y266{bottom:289.908927pt;}
.y1b0{bottom:290.645182pt;}
.y21c{bottom:291.291341pt;}
.y11b{bottom:293.499593pt;}
.yc4{bottom:294.577733pt;}
.y29f{bottom:296.251630pt;}
.y2cf{bottom:296.255570pt;}
.y238{bottom:297.498277pt;}
.yd7{bottom:300.708903pt;}
.y265{bottom:302.570261pt;}
.y1e6{bottom:303.696798pt;}
.y63{bottom:303.708903pt;}
.y8e{bottom:304.708903pt;}
.yb3{bottom:304.708944pt;}
.y1d9{bottom:306.351976pt;}
.y1af{bottom:306.645182pt;}
.yc3{bottom:307.239066pt;}
.y21b{bottom:307.291341pt;}
.y154{bottom:307.300008pt;}
.y29e{bottom:308.912964pt;}
.y2ce{bottom:308.916903pt;}
.yd{bottom:309.452000pt;}
.y11a{bottom:309.499593pt;}
.y237{bottom:310.159610pt;}
.y159{bottom:310.794393pt;}
.y264{bottom:315.231594pt;}
.yd6{bottom:316.708903pt;}
.yf8{bottom:316.708944pt;}
.y153{bottom:318.566258pt;}
.y62{bottom:319.708903pt;}
.yc2{bottom:319.900399pt;}
.y8d{bottom:320.708903pt;}
.yb2{bottom:320.708944pt;}
.y29d{bottom:321.574297pt;}
.y2cd{bottom:321.578236pt;}
.y1ae{bottom:322.645182pt;}
.y236{bottom:322.820944pt;}
.y21a{bottom:323.291341pt;}
.y119{bottom:325.499593pt;}
.y1e5{bottom:325.888797pt;}
.y156{bottom:327.390259pt;}
.y263{bottom:327.892927pt;}
.yc1{bottom:332.561733pt;}
.yd5{bottom:332.708903pt;}
.y168{bottom:332.708944pt;}
.y29c{bottom:334.235630pt;}
.y2cc{bottom:334.239570pt;}
.y61{bottom:335.708903pt;}
.y8c{bottom:336.708903pt;}
.yb1{bottom:336.708944pt;}
.y1ad{bottom:338.645182pt;}
.y219{bottom:339.291341pt;}
.y262{bottom:340.554261pt;}
.y118{bottom:341.499593pt;}
.y1e4{bottom:342.816813pt;}
.yc{bottom:343.809333pt;}
.yc0{bottom:345.223066pt;}
.y29b{bottom:346.896964pt;}
.y2cb{bottom:346.900903pt;}
.y235{bottom:348.132944pt;}
.yd4{bottom:348.708903pt;}
.y167{bottom:348.708944pt;}
.y60{bottom:351.708903pt;}
.y8b{bottom:352.708903pt;}
.yb0{bottom:352.708944pt;}
.y261{bottom:353.215594pt;}
.y1ac{bottom:354.645182pt;}
.y218{bottom:355.291341pt;}
.y141{bottom:355.832926pt;}
.y117{bottom:357.499593pt;}
.ybf{bottom:357.884399pt;}
.y29a{bottom:359.558297pt;}
.y2ca{bottom:359.562236pt;}
.yb{bottom:362.706666pt;}
.yd3{bottom:364.708903pt;}
.y166{bottom:364.708944pt;}
.y260{bottom:365.876927pt;}
.y37{bottom:367.615194pt;}
.y5f{bottom:367.708903pt;}
.y8a{bottom:368.708903pt;}
.yaf{bottom:368.708944pt;}
.y1ab{bottom:370.645182pt;}
.y217{bottom:371.291341pt;}
.y140{bottom:371.832926pt;}
.y299{bottom:372.219630pt;}
.y2c9{bottom:372.223570pt;}
.y234{bottom:373.444944pt;}
.y116{bottom:373.499593pt;}
.y25f{bottom:378.538261pt;}
.yd2{bottom:380.708903pt;}
.y165{bottom:380.708944pt;}
.y5e{bottom:383.708903pt;}
.y89{bottom:384.708903pt;}
.yae{bottom:384.708944pt;}
.y298{bottom:384.880964pt;}
.y2c8{bottom:384.884903pt;}
.y233{bottom:386.106277pt;}
.y1aa{bottom:386.645182pt;}
.y13f{bottom:387.832926pt;}
.y115{bottom:389.499593pt;}
.y25e{bottom:391.199594pt;}
.yd1{bottom:396.708903pt;}
.y297{bottom:397.542297pt;}
.y2c7{bottom:397.546236pt;}
.y232{bottom:398.767610pt;}
.y5d{bottom:399.708903pt;}
.y36{bottom:400.281860pt;}
.y88{bottom:400.708903pt;}
.yad{bottom:400.708944pt;}
.y1a9{bottom:402.645182pt;}
.y13e{bottom:403.832926pt;}
.y25d{bottom:403.860927pt;}
.y114{bottom:405.499593pt;}
.y1db{bottom:410.045278pt;}
.y296{bottom:410.203630pt;}
.y2c6{bottom:410.207570pt;}
.y231{bottom:411.428944pt;}
.yd0{bottom:412.708903pt;}
.y164{bottom:412.708944pt;}
.y5c{bottom:415.708903pt;}
.y35{bottom:416.281860pt;}
.y25c{bottom:416.522261pt;}
.y87{bottom:416.708903pt;}
.yac{bottom:416.708944pt;}
.y201{bottom:418.630305pt;}
.y1a8{bottom:418.645182pt;}
.y13d{bottom:419.832926pt;}
.y113{bottom:421.499715pt;}
.y295{bottom:422.864964pt;}
.y2c5{bottom:422.868903pt;}
.y25b{bottom:429.183594pt;}
.y200{bottom:431.291639pt;}
.y5b{bottom:431.708903pt;}
.y86{bottom:432.708903pt;}
.yab{bottom:432.708944pt;}
.y1a7{bottom:434.645182pt;}
.y294{bottom:435.526297pt;}
.y2c4{bottom:435.530236pt;}
.y13c{bottom:435.832926pt;}
.y230{bottom:436.740944pt;}
.y112{bottom:437.499715pt;}
.y25a{bottom:441.844927pt;}
.ycf{bottom:444.708903pt;}
.y5a{bottom:447.708903pt;}
.y293{bottom:448.187630pt;}
.y2c3{bottom:448.191570pt;}
.y85{bottom:448.708903pt;}
.yaa{bottom:448.708944pt;}
.y34{bottom:448.948527pt;}
.y22f{bottom:449.402277pt;}
.y1a6{bottom:450.645182pt;}
.y111{bottom:453.499715pt;}
.y259{bottom:454.506261pt;}
.y216{bottom:456.552370pt;}
.y292{bottom:460.848964pt;}
.y2c2{bottom:460.852903pt;}
.ya{bottom:462.990669pt;}
.y59{bottom:463.708903pt;}
.y84{bottom:464.708903pt;}
.ya9{bottom:464.708944pt;}
.y33{bottom:464.948527pt;}
.y1a5{bottom:466.645182pt;}
.y258{bottom:467.167594pt;}
.y13b{bottom:467.832926pt;}
.y110{bottom:469.499715pt;}
.y215{bottom:472.755037pt;}
.y291{bottom:473.510297pt;}
.y2c1{bottom:473.514236pt;}
.y22e{bottom:474.714277pt;}
.y9{bottom:478.990666pt;}
.y58{bottom:479.708903pt;}
.y257{bottom:479.828927pt;}
.y83{bottom:480.708903pt;}
.ya8{bottom:480.708944pt;}
.y32{bottom:480.948527pt;}
.y1a4{bottom:482.645182pt;}
.y10f{bottom:485.499715pt;}
.y290{bottom:486.171630pt;}
.y2c0{bottom:486.175570pt;}
.y22d{bottom:487.375610pt;}
.y214{bottom:488.883037pt;}
.y256{bottom:492.490261pt;}
.y8{bottom:494.990666pt;}
.y57{bottom:495.708903pt;}
.y82{bottom:496.708903pt;}
.yf7{bottom:496.708944pt;}
.y31{bottom:496.948527pt;}
.y1a3{bottom:498.645182pt;}
.y28f{bottom:498.832964pt;}
.y2bf{bottom:498.836903pt;}
.y13a{bottom:499.833049pt;}
.y10e{bottom:501.499715pt;}
.y213{bottom:505.011037pt;}
.y255{bottom:505.151594pt;}
.y28e{bottom:511.494297pt;}
.y2be{bottom:511.498236pt;}
.y56{bottom:511.708903pt;}
.y81{bottom:512.708903pt;}
.ya7{bottom:512.708944pt;}
.y30{bottom:512.948527pt;}
.y1a2{bottom:514.645182pt;}
.y10d{bottom:517.499715pt;}
.y254{bottom:517.812927pt;}
.y212{bottom:521.139037pt;}
.y28d{bottom:524.155630pt;}
.y2bd{bottom:524.159570pt;}
.y1a1{bottom:527.141317pt;}
.y55{bottom:527.708903pt;}
.y80{bottom:528.708903pt;}
.yf6{bottom:528.708944pt;}
.y2f{bottom:528.948527pt;}
.y253{bottom:530.474261pt;}
.y1a0{bottom:530.645182pt;}
.y160{bottom:536.102272pt;}
.y28c{bottom:536.816964pt;}
.y2bc{bottom:536.820903pt;}
.y211{bottom:537.267037pt;}
.y252{bottom:543.135594pt;}
.y54{bottom:543.708903pt;}
.y7f{bottom:544.708903pt;}
.ya6{bottom:544.708944pt;}
.y2e{bottom:544.948527pt;}
.y19f{bottom:546.645182pt;}
.y15f{bottom:548.763605pt;}
.y28b{bottom:549.478297pt;}
.y2bb{bottom:549.482236pt;}
.y210{bottom:553.395037pt;}
.y251{bottom:555.796927pt;}
.y12b{bottom:558.704927pt;}
.y53{bottom:559.708903pt;}
.y7e{bottom:560.708903pt;}
.yf5{bottom:560.708944pt;}
.y2d{bottom:560.948527pt;}
.y15e{bottom:561.424938pt;}
.y28a{bottom:562.139630pt;}
.y2ba{bottom:562.143570pt;}
.y19e{bottom:562.645182pt;}
.y250{bottom:568.458261pt;}
.y20f{bottom:569.523037pt;}
.ye5{bottom:570.647217pt;}
.y12a{bottom:571.366260pt;}
.y7{bottom:573.786667pt;}
.y15d{bottom:574.086272pt;}
.y289{bottom:574.800964pt;}
.y2b9{bottom:574.804903pt;}
.y19c{bottom:575.261353pt;}
.y52{bottom:575.708903pt;}
.y7d{bottom:576.708903pt;}
.yf4{bottom:576.708944pt;}
.y2c{bottom:576.948527pt;}
.y163{bottom:577.508952pt;}
.y19b{bottom:578.645182pt;}
.y24f{bottom:581.119594pt;}
.y129{bottom:584.027594pt;}
.y20e{bottom:585.651037pt;}
.y15c{bottom:586.747605pt;}
.y288{bottom:587.462297pt;}
.y2b8{bottom:587.466236pt;}
.y51{bottom:591.708903pt;}
.y6{bottom:592.685334pt;}
.y7c{bottom:592.708903pt;}
.yf3{bottom:592.708944pt;}
.y2b{bottom:592.948527pt;}
.y24e{bottom:593.780927pt;}
.y19a{bottom:594.645182pt;}
.y128{bottom:596.688927pt;}
.y15b{bottom:599.408938pt;}
.y287{bottom:600.123630pt;}
.y2b7{bottom:600.127570pt;}
.y24d{bottom:606.442261pt;}
.y195{bottom:607.141317pt;}
.y50{bottom:607.708903pt;}
.y20d{bottom:608.520370pt;}
.y7b{bottom:608.708903pt;}
.yf2{bottom:608.708944pt;}
.y2a{bottom:608.948527pt;}
.y127{bottom:609.350260pt;}
.y162{bottom:609.508952pt;}
.y198{bottom:610.606649pt;}
.y194{bottom:610.642236pt;}
.y197{bottom:610.645182pt;}
.y15a{bottom:612.070272pt;}
.y286{bottom:612.784964pt;}
.y2b6{bottom:612.788903pt;}
.y4f{bottom:623.708903pt;}
.y20c{bottom:624.648370pt;}
.y7a{bottom:624.708903pt;}
.yf1{bottom:624.708944pt;}
.y29{bottom:624.948527pt;}
.y285{bottom:625.446297pt;}
.y2b5{bottom:625.450236pt;}
.y1b3{bottom:629.978516pt;}
.y24c{bottom:635.375610pt;}
.y284{bottom:638.107630pt;}
.y2b4{bottom:638.111570pt;}
.y4e{bottom:639.708903pt;}
.y79{bottom:640.708903pt;}
.yf0{bottom:640.708944pt;}
.y20b{bottom:640.776370pt;}
.y1b4{bottom:642.645345pt;}
.y5{bottom:645.598667pt;}
.y283{bottom:650.768964pt;}
.y2b3{bottom:650.772903pt;}
.y1cc{bottom:651.499660pt;}
.y1c8{bottom:655.630127pt;}
.y4d{bottom:655.708903pt;}
.y78{bottom:656.708903pt;}
.y104{bottom:656.708944pt;}
.y20a{bottom:656.904370pt;}
.y282{bottom:663.430297pt;}
.y2b2{bottom:663.434236pt;}
.y1ca{bottom:666.381185pt;}
.y28{bottom:668.053063pt;}
.y3{bottom:668.977329pt;}
.y1c9{bottom:670.700684pt;}
.y4c{bottom:671.708903pt;}
.y77{bottom:672.708903pt;}
.y209{bottom:673.032370pt;}
.y161{bottom:673.508952pt;}
.y281{bottom:676.091630pt;}
.y2b1{bottom:676.095570pt;}
.y27{bottom:680.714396pt;}
.y1bb{bottom:683.329834pt;}
.y1bf{bottom:683.329997pt;}
.y1c4{bottom:683.330160pt;}
.y4b{bottom:687.708903pt;}
.y76{bottom:688.708903pt;}
.y280{bottom:688.752964pt;}
.y2b0{bottom:688.756903pt;}
.y208{bottom:689.160370pt;}
.y1bc{bottom:692.180897pt;}
.y1c1{bottom:692.180979pt;}
.y1c6{bottom:692.181223pt;}
.y1b8{bottom:696.309489pt;}
.y1c0{bottom:696.309570pt;}
.y1c5{bottom:696.309896pt;}
.y27f{bottom:701.414297pt;}
.y24b{bottom:701.418236pt;}
.y4a{bottom:703.708903pt;}
.y75{bottom:704.708903pt;}
.y207{bottom:705.288370pt;}
.y1ba{bottom:707.060140pt;}
.y1be{bottom:707.060303pt;}
.y1c3{bottom:707.060384pt;}
.y1b9{bottom:711.379313pt;}
.y1bd{bottom:711.379639pt;}
.y1c2{bottom:711.379720pt;}
.y27e{bottom:714.075630pt;}
.y24a{bottom:714.079570pt;}
.y26{bottom:714.357503pt;}
.y49{bottom:719.708903pt;}
.y74{bottom:720.708903pt;}
.y206{bottom:721.416370pt;}
.y1b6{bottom:722.937093pt;}
.y1b7{bottom:724.114909pt;}
.y27d{bottom:726.736964pt;}
.y249{bottom:726.740903pt;}
.y48{bottom:735.708903pt;}
.y73{bottom:736.708903pt;}
.y205{bottom:737.544370pt;}
.y27c{bottom:739.398297pt;}
.y248{bottom:739.402236pt;}
.y1ff{bottom:749.232964pt;}
.y47{bottom:751.708903pt;}
.y27b{bottom:752.059630pt;}
.y247{bottom:752.063570pt;}
.y25{bottom:752.354248pt;}
.y72{bottom:752.708903pt;}
.y204{bottom:753.672370pt;}
.y1fe{bottom:761.894297pt;}
.y27a{bottom:764.720964pt;}
.y246{bottom:764.724903pt;}
.y46{bottom:767.708903pt;}
.y71{bottom:768.708903pt;}
.y203{bottom:769.800370pt;}
.y1fd{bottom:774.555630pt;}
.y279{bottom:777.382297pt;}
.y245{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y70{bottom:784.708903pt;}
.y1fc{bottom:787.216964pt;}
.y278{bottom:790.043630pt;}
.y244{bottom:790.047570pt;}
.y202{bottom:794.696370pt;}
.y45{bottom:799.708903pt;}
.y24{bottom:799.809082pt;}
.y1fb{bottom:799.878297pt;}
.y6f{bottom:800.708903pt;}
.y277{bottom:802.704964pt;}
.y243{bottom:802.708903pt;}
.y22{bottom:822.992964pt;}
.y6e{bottom:835.262533pt;}
.y9a{bottom:835.654126pt;}
.y43{bottom:835.654289pt;}
.y21{bottom:835.654297pt;}
.y99{bottom:836.112793pt;}
.y42{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h3d{height:3.113898pt;}
.h34{height:9.066667pt;}
.h2a{height:9.466667pt;}
.h26{height:12.266666pt;}
.h36{height:12.268000pt;}
.h21{height:12.400000pt;}
.h28{height:12.533333pt;}
.h23{height:12.665333pt;}
.h3c{height:22.325666pt;}
.h3a{height:22.556849pt;}
.h2b{height:23.525879pt;}
.h37{height:24.539466pt;}
.h2f{height:25.243462pt;}
.h32{height:25.504859pt;}
.h14{height:26.043733pt;}
.h7{height:28.560000pt;}
.h30{height:29.180625pt;}
.ha{height:30.080000pt;}
.h3b{height:31.799500pt;}
.h2c{height:32.533333pt;}
.h43{height:32.554667pt;}
.h27{height:34.888719pt;}
.h22{height:35.582225pt;}
.h2e{height:35.635572pt;}
.h35{height:35.955652pt;}
.h29{height:36.062345pt;}
.h1d{height:36.160000pt;}
.h25{height:36.382425pt;}
.h24{height:36.435772pt;}
.h13{height:37.205333pt;}
.hb{height:37.376000pt;}
.h44{height:37.693350pt;}
.h1b{height:37.802667pt;}
.h46{height:38.192000pt;}
.h45{height:39.386667pt;}
.h6{height:40.800000pt;}
.h41{height:41.108735pt;}
.h39{height:41.108898pt;}
.h40{height:41.148937pt;}
.h3e{height:41.149262pt;}
.hd{height:41.514667pt;}
.h31{height:42.524050pt;}
.h2d{height:42.524620pt;}
.h3{height:42.840000pt;}
.h1c{height:43.648000pt;}
.h33{height:43.716265pt;}
.h1f{height:45.013333pt;}
.h11{height:46.506667pt;}
.h12{height:47.253333pt;}
.h17{height:47.680000pt;}
.h3f{height:48.313866pt;}
.h42{height:48.745990pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h10{height:52.746667pt;}
.h20{height:53.887512pt;}
.h19{height:53.887919pt;}
.h16{height:53.888000pt;}
.h1a{height:53.888163pt;}
.h18{height:54.560000pt;}
.hf{height:57.658667pt;}
.h15{height:58.021333pt;}
.he{height:61.429333pt;}
.h5{height:69.360000pt;}
.h47{height:87.397333pt;}
.h38{height:93.063995pt;}
.h4{height:105.826671pt;}
.h1e{height:546.842651pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w10{width:8.360000pt;}
.wd{width:8.906666pt;}
.w13{width:9.320000pt;}
.w11{width:9.918667pt;}
.w12{width:10.200000pt;}
.w15{width:11.466667pt;}
.w14{width:11.586666pt;}
.wa{width:12.853333pt;}
.we{width:14.040000pt;}
.wb{width:25.026667pt;}
.wc{width:39.106667pt;}
.w9{width:44.813333pt;}
.w6{width:47.865331pt;}
.w8{width:50.667999pt;}
.w7{width:84.706665pt;}
.wf{width:339.440002pt;}
.w16{width:422.429321pt;}
.w5{width:449.763997pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x12{left:-1.365865pt;}
.x0{left:0.000000pt;}
.x5b{left:45.982936pt;}
.x24{left:65.084137pt;}
.x6{left:68.031469pt;}
.xa{left:68.976400pt;}
.xb{left:69.996800pt;}
.x8{left:71.917603pt;}
.x6f{left:78.306000pt;}
.x59{left:81.698664pt;}
.xc{left:83.149456pt;}
.x2f{left:85.244273pt;}
.x9{left:86.932800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4c{left:95.926666pt;}
.x31{left:98.000538pt;}
.x27{left:102.296132pt;}
.x4d{left:104.833598pt;}
.x10{left:107.447998pt;}
.x39{left:116.434530pt;}
.x5a{left:119.084798pt;}
.x71{left:120.206271pt;}
.x22{left:123.193329pt;}
.x3f{left:135.441600pt;}
.x67{left:138.825063pt;}
.x33{left:145.844269pt;}
.x68{left:149.968669pt;}
.x13{left:152.738129pt;}
.x11{left:155.314138pt;}
.x40{left:160.337600pt;}
.x14{left:161.766663pt;}
.x23{left:165.705597pt;}
.x5c{left:167.246663pt;}
.x5d{left:169.379461pt;}
.x69{left:171.980000pt;}
.x41{left:176.465600pt;}
.x4{left:180.874667pt;}
.x1a{left:186.910665pt;}
.x5f{left:190.690130pt;}
.x42{left:192.593600pt;}
.x25{left:195.261332pt;}
.x6e{left:203.266593pt;}
.x35{left:208.340668pt;}
.x72{left:210.993337pt;}
.x15{left:212.434265pt;}
.x30{left:213.777730pt;}
.x2a{left:216.104014pt;}
.x26{left:220.161336pt;}
.x16{left:221.464010pt;}
.x80{left:222.996801pt;}
.x43{left:224.849600pt;}
.x73{left:226.122670pt;}
.xf{left:233.127467pt;}
.x50{left:234.995992pt;}
.x37{left:238.316681pt;}
.x44{left:240.977600pt;}
.x32{left:242.277730pt;}
.x51{left:244.915609pt;}
.x52{left:252.415995pt;}
.x45{left:257.116266pt;}
.x61{left:259.504400pt;}
.x57{left:260.808004pt;}
.x53{left:262.615865pt;}
.x17{left:266.277200pt;}
.x5e{left:267.676533pt;}
.x54{left:270.116007pt;}
.x58{left:272.275208pt;}
.x46{left:273.244266pt;}
.xe{left:277.842143pt;}
.x55{left:279.436259pt;}
.x2c{left:282.391998pt;}
.x74{left:286.640003pt;}
.x34{left:290.121460pt;}
.x2e{left:293.900421pt;}
.x4e{left:295.607992pt;}
.x6a{left:297.445740pt;}
.x75{left:298.642670pt;}
.x18{left:299.699992pt;}
.x63{left:302.974920pt;}
.x4f{left:303.967997pt;}
.x28{left:306.213460pt;}
.x19{left:312.553731pt;}
.x76{left:313.772003pt;}
.x56{left:317.499064pt;}
.x47{left:321.628266pt;}
.x65{left:325.739731pt;}
.x77{left:328.901337pt;}
.x29{left:333.969727pt;}
.x60{left:336.491191pt;}
.x48{left:337.756266pt;}
.x78{left:344.030670pt;}
.x36{left:352.617879pt;}
.x49{left:353.884266pt;}
.x79{left:363.229337pt;}
.x38{left:367.545980pt;}
.x4a{left:370.012266pt;}
.x62{left:376.735067pt;}
.x7a{left:378.358670pt;}
.x6b{left:380.555990pt;}
.x2b{left:384.501465pt;}
.x4b{left:386.214933pt;}
.x7b{left:393.488003pt;}
.x81{left:399.238647pt;}
.x64{left:402.715617pt;}
.x3{left:404.408000pt;}
.x3a{left:409.202530pt;}
.x2d{left:411.765584pt;}
.x66{left:413.997314pt;}
.x6d{left:418.539454pt;}
.x3b{left:421.863863pt;}
.x7c{left:423.746670pt;}
.x5{left:431.874146pt;}
.x3c{left:434.525196pt;}
.x7d{left:438.876003pt;}
.x3d{left:447.186530pt;}
.x7e{left:454.005337pt;}
.x1d{left:457.826660pt;}
.x7{left:463.672526pt;}
.x1e{left:466.732951pt;}
.x7f{left:469.209337pt;}
.x3e{left:476.295863pt;}
.x1b{left:478.687988pt;}
.x6c{left:489.848145pt;}
.x70{left:491.511322pt;}
.x1f{left:492.653320pt;}
.x21{left:502.239338pt;}
.x20{left:506.692667pt;}
.xd{left:507.662150pt;}
.x1c{left:517.795329pt;}
}




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