
    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_b6c10b3c74fe549b764c25e0.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_86555b0d3b0cd41f16dd3329.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_d69c0b9f8721ac7dbc328076.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_cb26f764e43c82613e1e0b17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_a45008a961cccb77119e389b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_94fed4ae215240943d512154.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_df8ceae1192de82ff7c7a547.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_0e37d79e606cbddfa56fbc87.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_dc5f1f213c742c8253f1f1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_d008f6618ee5d7d13ca5cc05.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6deb633ff42a71b4f0c4cfb2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_e9708a304a969a8d8c5bd733.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.745117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_83446e75f56442635cd87421.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.752441;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_bc900d9a650a1d286bb08943.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_12905ce0a31c853270037c01.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0e37d79e606cbddfa56fbc87.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_dc5f1f213c742c8253f1f1df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_78bae82ecf4d358e76a02a52.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_490b050b5c918c78f3765742.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;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_2c3d68edbf5b66bf21b97914.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.745117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bc900d9a650a1d286bb08943.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_83446e75f56442635cd87421.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.752441;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_51b753933bad48e70f1899ca.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.724000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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:-17.364000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.ls5a{letter-spacing:-4.785552px;}
.lsb9{letter-spacing:-4.336200px;}
.ls5c{letter-spacing:-4.325400px;}
.lscf{letter-spacing:-3.961908px;}
.lsbf{letter-spacing:-1.923840px;}
.ls57{letter-spacing:-1.551096px;}
.lscc{letter-spacing:-1.539072px;}
.lsb2{letter-spacing:-1.178352px;}
.lsd0{letter-spacing:-0.498996px;}
.lsc5{letter-spacing:-0.486972px;}
.ls41{letter-spacing:-0.442800px;}
.lsc7{letter-spacing:-0.432864px;}
.lsbe{letter-spacing:-0.420840px;}
.lsb0{letter-spacing:-0.366732px;}
.ls44{letter-spacing:-0.361800px;}
.ls5d{letter-spacing:-0.351000px;}
.lsc1{letter-spacing:-0.342684px;}
.lsc6{letter-spacing:-0.312624px;}
.lsbd{letter-spacing:-0.300600px;}
.lsa9{letter-spacing:-0.282564px;}
.lsba{letter-spacing:-0.276552px;}
.lsc4{letter-spacing:-0.264528px;}
.ls59{letter-spacing:-0.258516px;}
.lsb5{letter-spacing:-0.240480px;}
.lsb4{letter-spacing:-0.222444px;}
.lsc3{letter-spacing:-0.216432px;}
.ls4f{letter-spacing:-0.210420px;}
.lsb7{letter-spacing:-0.198396px;}
.ls4e{letter-spacing:-0.192384px;}
.lsca{letter-spacing:-0.186372px;}
.ls45{letter-spacing:-0.183600px;}
.lsaf{letter-spacing:-0.180360px;}
.lsac{letter-spacing:-0.168336px;}
.lscb{letter-spacing:-0.162324px;}
.lsce{letter-spacing:-0.156312px;}
.lsc0{letter-spacing:-0.150300px;}
.lsc8{letter-spacing:-0.144288px;}
.lsb1{letter-spacing:-0.138276px;}
.lsb3{letter-spacing:-0.132264px;}
.lscd{letter-spacing:-0.126252px;}
.lsa8{letter-spacing:-0.120240px;}
.ls55{letter-spacing:-0.114228px;}
.ls53{letter-spacing:-0.108216px;}
.ls42{letter-spacing:-0.108000px;}
.lsaa{letter-spacing:-0.102204px;}
.lsc2{letter-spacing:-0.096192px;}
.ls5e{letter-spacing:-0.091800px;}
.lsc9{letter-spacing:-0.090180px;}
.lsa6{letter-spacing:-0.086184px;}
.ls46{letter-spacing:-0.084168px;}
.ls3b{letter-spacing:-0.076608px;}
.lsae{letter-spacing:-0.072144px;}
.ls47{letter-spacing:-0.066132px;}
.ls4b{letter-spacing:-0.060120px;}
.ls58{letter-spacing:-0.054108px;}
.ls62{letter-spacing:-0.054000px;}
.ls5f{letter-spacing:-0.048600px;}
.ls4c{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.043200px;}
.lsa4{letter-spacing:-0.043092px;}
.ls50{letter-spacing:-0.042084px;}
.ls63{letter-spacing:-0.037800px;}
.ls4d{letter-spacing:-0.036072px;}
.ls60{letter-spacing:-0.032400px;}
.ls48{letter-spacing:-0.030060px;}
.ls39{letter-spacing:-0.028728px;}
.ls3f{letter-spacing:-0.027000px;}
.lsad{letter-spacing:-0.024048px;}
.lsb8{letter-spacing:-0.021600px;}
.ls54{letter-spacing:-0.018036px;}
.lsab{letter-spacing:-0.012024px;}
.ls3e{letter-spacing:-0.010800px;}
.ls49{letter-spacing:-0.006012px;}
.ls43{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000106px;}
.lsd2{letter-spacing:0.002045px;}
.lsd5{letter-spacing:0.002074px;}
.lsd3{letter-spacing:0.003239px;}
.ls81{letter-spacing:0.005400px;}
.ls6b{letter-spacing:0.006012px;}
.ls29{letter-spacing:0.010800px;}
.ls77{letter-spacing:0.012024px;}
.ls2d{letter-spacing:0.016200px;}
.ls76{letter-spacing:0.018036px;}
.ls2a{letter-spacing:0.021600px;}
.ls79{letter-spacing:0.024048px;}
.ls17{letter-spacing:0.027000px;}
.ls93{letter-spacing:0.030060px;}
.ls31{letter-spacing:0.032400px;}
.ls6f{letter-spacing:0.036072px;}
.ls7e{letter-spacing:0.037800px;}
.ls8b{letter-spacing:0.042084px;}
.ls1b{letter-spacing:0.043200px;}
.ls52{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.048600px;}
.ls2f{letter-spacing:0.054000px;}
.ls73{letter-spacing:0.054108px;}
.ls28{letter-spacing:0.059400px;}
.ls1f{letter-spacing:0.060120px;}
.ls2b{letter-spacing:0.064800px;}
.ls21{letter-spacing:0.066132px;}
.ls20{letter-spacing:0.072144px;}
.ls32{letter-spacing:0.075600px;}
.ls72{letter-spacing:0.078156px;}
.lsa0{letter-spacing:0.084168px;}
.ls68{letter-spacing:0.086184px;}
.ls36{letter-spacing:0.086400px;}
.ls82{letter-spacing:0.090180px;}
.ls80{letter-spacing:0.091800px;}
.ls24{letter-spacing:0.096192px;}
.ls7f{letter-spacing:0.097200px;}
.ls12{letter-spacing:0.100548px;}
.ls56{letter-spacing:0.102204px;}
.ls18{letter-spacing:0.102600px;}
.ls27{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.108216px;}
.ls8f{letter-spacing:0.120240px;}
.lsbc{letter-spacing:0.132264px;}
.ls67{letter-spacing:0.134064px;}
.ls61{letter-spacing:0.135000px;}
.ls4a{letter-spacing:0.138276px;}
.ls11{letter-spacing:0.143640px;}
.lsb6{letter-spacing:0.144288px;}
.ls51{letter-spacing:0.150300px;}
.ls3d{letter-spacing:0.153216px;}
.ls7c{letter-spacing:0.162324px;}
.ls7d{letter-spacing:0.178200px;}
.ls8e{letter-spacing:0.180360px;}
.ls66{letter-spacing:0.181944px;}
.ls1c{letter-spacing:0.183600px;}
.ls10{letter-spacing:0.191520px;}
.ls5b{letter-spacing:0.192384px;}
.lsa5{letter-spacing:0.392616px;}
.ls3a{letter-spacing:0.406980px;}
.lsa7{letter-spacing:0.416556px;}
.ls3c{letter-spacing:0.430920px;}
.ls9b{letter-spacing:0.450900px;}
.ls96{letter-spacing:0.811620px;}
.ls95{letter-spacing:1.172340px;}
.ls89{letter-spacing:2.609208px;}
.ls8a{letter-spacing:2.969928px;}
.ls97{letter-spacing:3.330648px;}
.ls65{letter-spacing:3.507350px;}
.ls98{letter-spacing:3.691368px;}
.ls91{letter-spacing:4.767516px;}
.ls90{letter-spacing:5.128236px;}
.ls8d{letter-spacing:5.849676px;}
.ls8c{letter-spacing:6.210396px;}
.ls9d{letter-spacing:6.571116px;}
.ls9c{letter-spacing:6.931836px;}
.ls92{letter-spacing:8.729424px;}
.ls94{letter-spacing:9.090144px;}
.ls6e{letter-spacing:10.172304px;}
.ls6d{letter-spacing:10.527012px;}
.ls6c{letter-spacing:10.533024px;}
.ls23{letter-spacing:10.899756px;}
.ls22{letter-spacing:11.260476px;}
.ls26{letter-spacing:11.350800px;}
.ls9f{letter-spacing:11.609172px;}
.ls19{letter-spacing:11.712600px;}
.ls6a{letter-spacing:11.788056px;}
.ls14{letter-spacing:11.797632px;}
.ls15{letter-spacing:11.802420px;}
.ls7{letter-spacing:11.954850px;}
.ls9e{letter-spacing:11.969892px;}
.ls16{letter-spacing:12.069000px;}
.ls9a{letter-spacing:13.052052px;}
.lse{letter-spacing:13.270183px;}
.lsf{letter-spacing:13.389734px;}
.ls99{letter-spacing:13.412772px;}
.ls1e{letter-spacing:13.418784px;}
.lsd4{letter-spacing:13.454074px;}
.ls1d{letter-spacing:13.779504px;}
.ls8{letter-spacing:14.704798px;}
.ls5{letter-spacing:14.824349px;}
.lsbb{letter-spacing:14.849640px;}
.ls64{letter-spacing:14.884124px;}
.ls6{letter-spacing:14.943900px;}
.lsd1{letter-spacing:15.123227px;}
.lsb{letter-spacing:15.233951px;}
.lsc{letter-spacing:15.302554px;}
.ls75{letter-spacing:16.292520px;}
.ls74{letter-spacing:16.647228px;}
.ls9{letter-spacing:18.291334px;}
.lsa2{letter-spacing:18.450828px;}
.lsa1{letter-spacing:18.811548px;}
.lsa3{letter-spacing:18.816084px;}
.lsa{letter-spacing:23.671138px;}
.ls2e{letter-spacing:30.080802px;}
.ls7a{letter-spacing:30.691260px;}
.ls78{letter-spacing:31.051980px;}
.ls7b{letter-spacing:31.076568px;}
.ls71{letter-spacing:37.532916px;}
.ls70{letter-spacing:37.887624px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls30{letter-spacing:77.251964px;}
.ls83{letter-spacing:92.608848px;}
.ls85{letter-spacing:236.247552px;}
.ls2c{letter-spacing:327.917254px;}
.ls35{letter-spacing:329.362200px;}
.ls37{letter-spacing:338.007600px;}
.ls33{letter-spacing:356.373000px;}
.ls38{letter-spacing:360.693000px;}
.ls34{letter-spacing:418.316400px;}
.ls88{letter-spacing:483.569208px;}
.ls87{letter-spacing:652.049496px;}
.ls86{letter-spacing:694.169568px;}
.ls84{letter-spacing:922.775076px;}
.ls69{letter-spacing:2079.988596px;}
.ls13{letter-spacing:2080.855224px;}
.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;}
}
.wsb4{word-spacing:-60.120000px;}
.wsd1{word-spacing:-54.000000px;}
.ws99{word-spacing:-47.880000px;}
.wsd{word-spacing:-22.718660px;}
.ws64{word-spacing:-14.943900px;}
.wsdc{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws13a{word-spacing:-3.347434px;}
.ws138{word-spacing:-3.048556px;}
.ws37{word-spacing:-2.749678px;}
.ws7a{word-spacing:-2.689902px;}
.ws7c{word-spacing:-2.630126px;}
.ws7b{word-spacing:-2.570351px;}
.wsdb{word-spacing:-2.474726px;}
.ws7e{word-spacing:-2.450800px;}
.ws12d{word-spacing:-2.391024px;}
.ws17{word-spacing:-2.367130px;}
.ws51{word-spacing:-2.151922px;}
.ws132{word-spacing:-1.912819px;}
.ws8a{word-spacing:-1.853044px;}
.ws50{word-spacing:-1.793268px;}
.ws3a{word-spacing:-1.733492px;}
.ws66{word-spacing:-1.613941px;}
.wse6{word-spacing:-1.494390px;}
.ws13d{word-spacing:-1.315063px;}
.ws155{word-spacing:-1.237363px;}
.ws4c{word-spacing:-1.195512px;}
.ws168{word-spacing:-1.075968px;}
.ws12f{word-spacing:-1.075961px;}
.ws157{word-spacing:-1.022170px;}
.ws4e{word-spacing:-1.016185px;}
.ws4d{word-spacing:-0.956410px;}
.ws141{word-spacing:-0.914573px;}
.ws12a{word-spacing:-0.896634px;}
.ws43{word-spacing:-0.836858px;}
.ws69{word-spacing:-0.657532px;}
.ws144{word-spacing:-0.645581px;}
.ws65{word-spacing:-0.537980px;}
.ws9f{word-spacing:-0.478800px;}
.wsed{word-spacing:-0.464436px;}
.ws9a{word-spacing:-0.454860px;}
.wse9{word-spacing:-0.440496px;}
.ws67{word-spacing:-0.418429px;}
.ws13e{word-spacing:-0.376589px;}
.ws1c{word-spacing:-0.358654px;}
.ws13f{word-spacing:-0.322790px;}
.ws44{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.wsc7{word-spacing:-0.252504px;}
.wsf9{word-spacing:-0.240480px;}
.ws9b{word-spacing:-0.239400px;}
.ws1e{word-spacing:-0.239102px;}
.wsea{word-spacing:-0.229824px;}
.ws106{word-spacing:-0.222444px;}
.ws15c{word-spacing:-0.215194px;}
.wsbb{word-spacing:-0.210420px;}
.ws105{word-spacing:-0.204408px;}
.wsa0{word-spacing:-0.201096px;}
.wsb0{word-spacing:-0.198396px;}
.ws110{word-spacing:-0.192384px;}
.wsee{word-spacing:-0.191520px;}
.wsd0{word-spacing:-0.189000px;}
.ws111{word-spacing:-0.180360px;}
.ws1d{word-spacing:-0.179327px;}
.wsc4{word-spacing:-0.168336px;}
.wsc1{word-spacing:-0.162324px;}
.wscd{word-spacing:-0.162000px;}
.ws14{word-spacing:-0.161395px;}
.wsbf{word-spacing:-0.156312px;}
.ws10a{word-spacing:-0.151200px;}
.ws121{word-spacing:-0.150300px;}
.ws9d{word-spacing:-0.148428px;}
.ws122{word-spacing:-0.144288px;}
.wsd9{word-spacing:-0.140400px;}
.wsfb{word-spacing:-0.138276px;}
.wseb{word-spacing:-0.134064px;}
.wsb9{word-spacing:-0.132264px;}
.wsd8{word-spacing:-0.129600px;}
.wsba{word-spacing:-0.126252px;}
.wsb6{word-spacing:-0.120240px;}
.ws1f{word-spacing:-0.119551px;}
.wsd5{word-spacing:-0.118800px;}
.wsfc{word-spacing:-0.114228px;}
.wscf{word-spacing:-0.113400px;}
.wsbc{word-spacing:-0.108216px;}
.wscb{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.107597px;}
.wsa7{word-spacing:-0.102600px;}
.ws10f{word-spacing:-0.102204px;}
.wsab{word-spacing:-0.097200px;}
.wsf7{word-spacing:-0.096192px;}
.ws109{word-spacing:-0.091800px;}
.ws116{word-spacing:-0.090180px;}
.wsd7{word-spacing:-0.086400px;}
.ws100{word-spacing:-0.084168px;}
.wsfd{word-spacing:-0.078156px;}
.wsd3{word-spacing:-0.075600px;}
.wsff{word-spacing:-0.072144px;}
.wsd6{word-spacing:-0.070200px;}
.wsef{word-spacing:-0.066132px;}
.wsa2{word-spacing:-0.064800px;}
.wsb8{word-spacing:-0.060120px;}
.ws2d{word-spacing:-0.059776px;}
.ws10c{word-spacing:-0.059400px;}
.wsaf{word-spacing:-0.054108px;}
.wsd2{word-spacing:-0.054000px;}
.ws16{word-spacing:-0.053798px;}
.wsa8{word-spacing:-0.048600px;}
.wsf3{word-spacing:-0.048096px;}
.ws9c{word-spacing:-0.047880px;}
.wsa1{word-spacing:-0.043200px;}
.wsbe{word-spacing:-0.042084px;}
.wsf5{word-spacing:-0.036072px;}
.ws108{word-spacing:-0.032400px;}
.wsae{word-spacing:-0.030060px;}
.wsa3{word-spacing:-0.027000px;}
.wsb2{word-spacing:-0.024048px;}
.wsce{word-spacing:-0.021600px;}
.ws98{word-spacing:-0.019152px;}
.wsb7{word-spacing:-0.018036px;}
.wsd4{word-spacing:-0.016200px;}
.wsb1{word-spacing:-0.012024px;}
.wsa4{word-spacing:-0.010800px;}
.ws149{word-spacing:-0.009302px;}
.ws15b{word-spacing:-0.008755px;}
.ws15d{word-spacing:-0.008016px;}
.ws161{word-spacing:-0.007363px;}
.ws160{word-spacing:-0.007354px;}
.ws162{word-spacing:-0.006653px;}
.ws164{word-spacing:-0.006355px;}
.ws4{word-spacing:-0.006026px;}
.wsc3{word-spacing:-0.006012px;}
.wscc{word-spacing:-0.005400px;}
.wse8{word-spacing:-0.004788px;}
.ws14b{word-spacing:-0.004378px;}
.ws14f{word-spacing:-0.003888px;}
.ws14c{word-spacing:-0.003466px;}
.ws151{word-spacing:-0.003302px;}
.ws16c{word-spacing:-0.000845px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.003599px;}
.wsad{word-spacing:0.006012px;}
.wsf6{word-spacing:0.012024px;}
.wsac{word-spacing:0.024048px;}
.ws9e{word-spacing:0.028728px;}
.ws11f{word-spacing:0.030060px;}
.ws118{word-spacing:0.036072px;}
.wsca{word-spacing:0.037800px;}
.wsec{word-spacing:0.038304px;}
.wsf2{word-spacing:0.042084px;}
.wsbd{word-spacing:0.048096px;}
.wse4{word-spacing:0.053798px;}
.wsa6{word-spacing:0.054000px;}
.wsc0{word-spacing:0.054108px;}
.ws38{word-spacing:0.059776px;}
.wsf0{word-spacing:0.060120px;}
.ws125{word-spacing:0.066132px;}
.ws102{word-spacing:0.072144px;}
.wsfe{word-spacing:0.078156px;}
.ws2{word-spacing:0.083686px;}
.ws11e{word-spacing:0.084168px;}
.ws115{word-spacing:0.090180px;}
.ws126{word-spacing:0.096192px;}
.ws123{word-spacing:0.102204px;}
.wse{word-spacing:0.107597px;}
.wsf4{word-spacing:0.108216px;}
.ws26{word-spacing:0.119551px;}
.wsf8{word-spacing:0.120240px;}
.ws120{word-spacing:0.126252px;}
.wsaa{word-spacing:0.129600px;}
.wsb3{word-spacing:0.132264px;}
.ws107{word-spacing:0.138276px;}
.wsb5{word-spacing:0.150300px;}
.ws119{word-spacing:0.156312px;}
.ws142{word-spacing:0.161395px;}
.ws103{word-spacing:0.162324px;}
.ws39{word-spacing:0.179327px;}
.ws104{word-spacing:0.180360px;}
.wsc5{word-spacing:0.198396px;}
.ws11a{word-spacing:0.204408px;}
.ws154{word-spacing:0.215194px;}
.ws10d{word-spacing:0.216432px;}
.wsf1{word-spacing:0.222444px;}
.ws2e{word-spacing:0.239102px;}
.ws112{word-spacing:0.240480px;}
.ws11c{word-spacing:0.252504px;}
.ws148{word-spacing:0.268992px;}
.ws117{word-spacing:0.282564px;}
.wsc9{word-spacing:0.297000px;}
.ws2b{word-spacing:0.298878px;}
.wsfa{word-spacing:0.306612px;}
.wsa9{word-spacing:0.307800px;}
.ws13{word-spacing:0.322790px;}
.ws25{word-spacing:0.358654px;}
.ws113{word-spacing:0.360720px;}
.ws11d{word-spacing:0.372744px;}
.wsa5{word-spacing:0.388800px;}
.ws12c{word-spacing:0.418429px;}
.ws11b{word-spacing:0.426852px;}
.ws128{word-spacing:0.438876px;}
.ws4a{word-spacing:0.478205px;}
.ws33{word-spacing:0.537980px;}
.ws21{word-spacing:0.597756px;}
.ws62{word-spacing:0.657532px;}
.ws150{word-spacing:0.699379px;}
.ws86{word-spacing:0.717307px;}
.ws5b{word-spacing:0.777083px;}
.ws32{word-spacing:0.836858px;}
.ws8d{word-spacing:0.896634px;}
.ws58{word-spacing:0.956410px;}
.ws6c{word-spacing:1.016185px;}
.ws84{word-spacing:1.075961px;}
.ws101{word-spacing:1.118232px;}
.ws6a{word-spacing:1.135736px;}
.ws14d{word-spacing:1.183565px;}
.ws96{word-spacing:1.195512px;}
.ws87{word-spacing:1.255288px;}
.ws48{word-spacing:1.315063px;}
.ws14a{word-spacing:1.344960px;}
.ws13c{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws57{word-spacing:1.434614px;}
.ws124{word-spacing:1.478952px;}
.wsc2{word-spacing:1.490976px;}
.ws15f{word-spacing:1.506355px;}
.ws16a{word-spacing:1.544661px;}
.ws20{word-spacing:1.554166px;}
.ws15{word-spacing:1.560154px;}
.ws5a{word-spacing:1.613941px;}
.ws15e{word-spacing:1.613952px;}
.ws147{word-spacing:1.667750px;}
.ws2c{word-spacing:1.673717px;}
.ws27{word-spacing:1.733492px;}
.ws80{word-spacing:1.853044px;}
.ws114{word-spacing:1.863720px;}
.ws60{word-spacing:2.032370px;}
.ws31{word-spacing:2.092146px;}
.ws30{word-spacing:2.151922px;}
.ws49{word-spacing:2.211697px;}
.ws14e{word-spacing:2.259533px;}
.ws5e{word-spacing:2.271473px;}
.ws3b{word-spacing:2.331248px;}
.ws5d{word-spacing:2.391024px;}
.ws1{word-spacing:2.511541px;}
.ws3{word-spacing:2.513461px;}
.ws145{word-spacing:2.582323px;}
.ws82{word-spacing:2.630126px;}
.ws13b{word-spacing:2.689902px;}
.ws163{word-spacing:2.689920px;}
.ws83{word-spacing:2.749678px;}
.ws40{word-spacing:2.809453px;}
.ws8c{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws1a{word-spacing:2.915612px;}
.wse7{word-spacing:2.929004px;}
.ws54{word-spacing:2.988780px;}
.ws7f{word-spacing:3.048556px;}
.ws2f{word-spacing:3.108331px;}
.ws158{word-spacing:3.120307px;}
.ws166{word-spacing:3.218870px;}
.ws169{word-spacing:3.219168px;}
.ws167{word-spacing:3.220454px;}
.ws156{word-spacing:3.223296px;}
.ws143{word-spacing:3.224822px;}
.ws45{word-spacing:3.227882px;}
.ws146{word-spacing:3.227904px;}
.ws135{word-spacing:3.347434px;}
.ws85{word-spacing:3.407209px;}
.ws16d{word-spacing:3.496896px;}
.ws3f{word-spacing:3.526760px;}
.ws140{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.ws159{word-spacing:3.604493px;}
.ws6b{word-spacing:3.646312px;}
.ws4b{word-spacing:3.706087px;}
.ws61{word-spacing:3.765863px;}
.ws46{word-spacing:3.885414px;}
.ws127{word-spacing:3.901788px;}
.ws5f{word-spacing:4.004965px;}
.ws136{word-spacing:4.064741px;}
.ws129{word-spacing:4.124516px;}
.ws4f{word-spacing:4.184292px;}
.ws165{word-spacing:4.196275px;}
.wsc8{word-spacing:4.271400px;}
.ws10b{word-spacing:4.282200px;}
.ws8b{word-spacing:4.542946px;}
.ws7d{word-spacing:4.602721px;}
.ws47{word-spacing:4.662497px;}
.ws59{word-spacing:4.722272px;}
.wsc6{word-spacing:4.725432px;}
.ws42{word-spacing:4.841824px;}
.ws41{word-spacing:4.901599px;}
.ws63{word-spacing:4.961375px;}
.ws88{word-spacing:5.080926px;}
.ws35{word-spacing:5.140702px;}
.ws2a{word-spacing:5.320028px;}
.ws97{word-spacing:5.379804px;}
.wsa{word-spacing:5.481407px;}
.wse5{word-spacing:5.559131px;}
.ws12{word-spacing:5.595034px;}
.ws133{word-spacing:5.618906px;}
.wsda{word-spacing:5.648832px;}
.ws34{word-spacing:5.678682px;}
.ws3d{word-spacing:5.738458px;}
.ws3c{word-spacing:5.798233px;}
.ws81{word-spacing:5.858009px;}
.ws95{word-spacing:6.097111px;}
.ws152{word-spacing:6.133018px;}
.ws22{word-spacing:6.156887px;}
.ws23{word-spacing:6.276438px;}
.ws56{word-spacing:6.336214px;}
.ws5c{word-spacing:6.455765px;}
.ws16b{word-spacing:6.509606px;}
.ws94{word-spacing:6.694867px;}
.ws12e{word-spacing:6.814418px;}
.ws130{word-spacing:6.933970px;}
.ws36{word-spacing:7.173072px;}
.ws139{word-spacing:7.292623px;}
.ws131{word-spacing:7.471950px;}
.ws24{word-spacing:7.531726px;}
.ws89{word-spacing:7.651277px;}
.ws3e{word-spacing:7.890379px;}
.ws137{word-spacing:8.009930px;}
.ws12b{word-spacing:8.129482px;}
.ws53{word-spacing:8.249033px;}
.ws134{word-spacing:8.308808px;}
.ws8{word-spacing:9.833058px;}
.ws52{word-spacing:10.400954px;}
.ws15a{word-spacing:10.598285px;}
.ws153{word-spacing:11.243866px;}
.ws9{word-spacing:11.841512px;}
.ws55{word-spacing:13.090856px;}
.ws11{word-spacing:14.627684px;}
.ws5{word-spacing:15.481836px;}
.ws68{word-spacing:18.351109px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wse3{word-spacing:142.565760px;}
.ws91{word-spacing:176.484787px;}
.ws8f{word-spacing:181.111450px;}
.ws8e{word-spacing:188.133005px;}
.wsdf{word-spacing:248.064422px;}
.wse0{word-spacing:256.564570px;}
.wse2{word-spacing:274.587034px;}
.wsdd{word-spacing:274.963622px;}
.wse1{word-spacing:279.213696px;}
.wsde{word-spacing:293.739264px;}
.ws6d{word-spacing:392.861789px;}
.ws6e{word-spacing:487.305907px;}
.ws10e{word-spacing:540.268380px;}
.ws75{word-spacing:602.273088px;}
.ws73{word-spacing:613.032768px;}
.ws77{word-spacing:615.292301px;}
.ws72{word-spacing:625.513997px;}
.ws71{word-spacing:628.042522px;}
.ws78{word-spacing:633.583757px;}
.ws76{word-spacing:634.659725px;}
.ws74{word-spacing:645.150413px;}
.ws79{word-spacing:654.296141px;}
.ws6f{word-spacing:671.780621px;}
.ws70{word-spacing:679.366195px;}
.ws92{word-spacing:1120.178381px;}
.ws93{word-spacing:1121.308147px;}
.ws90{word-spacing:1223.794099px;}
._44{margin-left:-1810.255946px;}
._59{margin-left:-20.886434px;}
._5{margin-left:-12.050842px;}
._4{margin-left:-7.962163px;}
._6{margin-left:-6.635016px;}
._8{margin-left:-5.170745px;}
._0{margin-left:-3.933223px;}
._4e{margin-left:-2.633256px;}
._3{margin-left:-1.464498px;}
._42{width:1.398600px;}
._7{width:2.992796px;}
._43{width:4.822129px;}
._1{width:12.218098px;}
._22{width:13.628761px;}
._f{width:14.824386px;}
._a{width:16.480192px;}
._13{width:17.843004px;}
._c{width:18.859198px;}
._23{width:20.263928px;}
._9{width:21.417862px;}
._b{width:22.774536px;}
._12{width:24.209118px;}
._2{width:25.314894px;}
._16{width:27.138122px;}
._18{width:28.602620px;}
._15{width:30.186678px;}
._21{width:32.051408px;}
._14{width:33.653663px;}
._57{width:35.943430px;}
._d{width:37.568885px;}
._17{width:39.123126px;}
._e{width:41.633861px;}
._24{width:42.829213px;}
._56{width:44.114317px;}
._58{width:51.168377px;}
._48{width:86.998435px;}
._46{width:97.096747px;}
._4d{width:115.287395px;}
._4a{width:139.553050px;}
._55{width:153.056448px;}
._32{width:163.439539px;}
._3e{width:170.606668px;}
._34{width:171.939686px;}
._49{width:181.408205px;}
._27{width:190.338739px;}
._39{width:194.588813px;}
._3d{width:237.956422px;}
._3b{width:251.065229px;}
._31{width:276.308582px;}
._28{width:278.412818px;}
._26{width:303.207782px;}
._54{width:304.229952px;}
._52{width:311.277542px;}
._29{width:314.941932px;}
._53{width:341.835034px;}
._47{width:360.449280px;}
._2e{width:395.585734px;}
._4b{width:446.472922px;}
._37{width:509.913176px;}
._36{width:512.065112px;}
._1a{width:514.205107px;}
._50{width:546.699341px;}
._2b{width:564.560410px;}
._35{width:566.024908px;}
._3f{width:576.354200px;}
._2d{width:588.662093px;}
._33{width:622.286093px;}
._4f{width:630.355853px;}
._19{width:637.134451px;}
._1c{width:639.931968px;}
._1f{width:642.191501px;}
._4c{width:652.843584px;}
._1b{width:654.941722px;}
._30{width:656.663270px;}
._1e{width:661.505126px;}
._1d{width:672.049613px;}
._20{width:681.141542px;}
._51{width:758.880230px;}
._2a{width:776.000063px;}
._2c{width:781.744550px;}
._3c{width:811.967347px;}
._38{width:852.704640px;}
._10{width:881.284037px;}
._3a{width:918.338688px;}
._41{width:931.142707px;}
._40{width:967.618022px;}
._2f{width:1050.628954px;}
._25{width:1312.358170px;}
._45{width:2512.803000px;}
._11{width:2536.713000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.874640px;}
.fs8{font-size:107.596800px;}
.y1d0{bottom:-719.014050px;}
.y1f5{bottom:-650.973492px;}
.y1f4{bottom:-631.710750px;}
.y153{bottom:-623.785050px;}
.y1f3{bottom:-612.541488px;}
.y1f2{bottom:-593.282046px;}
.y1f1{bottom:-574.112784px;}
.y170{bottom:-563.665050px;}
.y1f0{bottom:-554.853342px;}
.y16e{bottom:-544.675050px;}
.y1ef{bottom:-535.592943px;}
.y16f{bottom:-525.775050px;}
.y1ee{bottom:-516.423681px;}
.y16d{bottom:-506.785050px;}
.y1ed{bottom:-497.164239px;}
.y16c{bottom:-487.795050px;}
.y1ec{bottom:-477.993474px;}
.y169{bottom:-468.805050px;}
.y1eb{bottom:-454.234050px;}
.y16b{bottom:-449.905050px;}
.y16a{bottom:-430.914600px;}
.y1ea{bottom:-416.972604px;}
.y168{bottom:-411.925050px;}
.y1e9{bottom:-397.803342px;}
.y167{bottom:-393.025050px;}
.y1e8{bottom:-378.541308px;}
.y166{bottom:-374.035050px;}
.y1e7{bottom:-359.281866px;}
.y165{bottom:-355.045050px;}
.y1e6{bottom:-340.112604px;}
.y164{bottom:-336.145050px;}
.y15e{bottom:-326.605050px;}
.y1e5{bottom:-320.853162px;}
.y163{bottom:-317.155050px;}
.y1e4{bottom:-301.683699px;}
.y162{bottom:-298.165050px;}
.y1e3{bottom:-282.424257px;}
.y161{bottom:-279.175050px;}
.y1e2{bottom:-263.164815px;}
.y160{bottom:-260.274900px;}
.y1e1{bottom:-243.994050px;}
.y15f{bottom:-241.285050px;}
.y15d{bottom:-222.295050px;}
.y1e0{bottom:-207.184050px;}
.y15c{bottom:-193.855500px;}
.y1df{bottom:-187.654050px;}
.y15b{bottom:-176.485050px;}
.y1de{bottom:-166.684050px;}
.y1dd{bottom:-145.714050px;}
.y15a{bottom:-140.845050px;}
.y1dc{bottom:-124.744050px;}
.y159{bottom:-121.673934px;}
.y1db{bottom:-103.774050px;}
.y158{bottom:-102.414492px;}
.y157{bottom:-83.155050px;}
.y1da{bottom:-73.714050px;}
.y156{bottom:-46.345500px;}
.y1d9{bottom:-38.344050px;}
.y155{bottom:-28.975050px;}
.y1d8{bottom:-15.842664px;}
.y154{bottom:-6.565050px;}
.y0{bottom:0.000000px;}
.y3c{bottom:9.233944px;}
.y3b{bottom:26.903761px;}
.y69{bottom:31.890000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y39{bottom:104.646000px;}
.yfc{bottom:105.538500px;}
.y266{bottom:111.930000px;}
.y14e{bottom:113.262000px;}
.y68{bottom:113.299500px;}
.y225{bottom:113.901000px;}
.y9f{bottom:117.802500px;}
.y23f{bottom:117.804000px;}
.y123{bottom:118.251000px;}
.yca{bottom:118.699500px;}
.yd0{bottom:119.148000px;}
.y38{bottom:122.535000px;}
.y1a8{bottom:122.539500px;}
.yfb{bottom:124.368000px;}
.y10f{bottom:129.010500px;}
.y265{bottom:129.190500px;}
.y14d{bottom:132.091500px;}
.y67{bottom:132.129000px;}
.y224{bottom:132.730500px;}
.y29c{bottom:133.719000px;}
.y172{bottom:134.584500px;}
.y9e{bottom:136.632000px;}
.y122{bottom:137.080500px;}
.yc9{bottom:137.529000px;}
.ycf{bottom:137.977500px;}
.y23{bottom:139.264499px;}
.y37{bottom:140.422500px;}
.y1a7{bottom:141.369000px;}
.yfa{bottom:143.197500px;}
.y264{bottom:146.451000px;}
.y10e{bottom:147.840000px;}
.y14c{bottom:150.921000px;}
.y66{bottom:150.958500px;}
.y29b{bottom:150.978000px;}
.y223{bottom:151.560000px;}
.y171{bottom:153.817500px;}
.y9d{bottom:155.461500px;}
.y121{bottom:155.910000px;}
.yc8{bottom:156.358500px;}
.yce{bottom:156.807000px;}
.y36{bottom:158.310000px;}
.y1a6{bottom:160.198500px;}
.yf9{bottom:162.027000px;}
.y263{bottom:163.711500px;}
.y1f6{bottom:166.642500px;}
.y10d{bottom:166.669500px;}
.y29a{bottom:168.238500px;}
.y14b{bottom:169.750500px;}
.y65{bottom:169.788000px;}
.y222{bottom:170.389500px;}
.y9c{bottom:174.291000px;}
.y120{bottom:174.739500px;}
.ycd{bottom:175.636500px;}
.y35{bottom:176.199000px;}
.y150{bottom:176.247000px;}
.y1a5{bottom:179.028000px;}
.yc7{bottom:179.671500px;}
.yf8{bottom:180.856500px;}
.y262{bottom:180.972000px;}
.y10c{bottom:185.499000px;}
.y14a{bottom:188.580000px;}
.y64{bottom:188.617500px;}
.y1cd{bottom:189.072000px;}
.y221{bottom:189.219000px;}
.y9b{bottom:193.120500px;}
.y11f{bottom:193.569000px;}
.y34{bottom:194.086500px;}
.ycc{bottom:194.466000px;}
.y1a{bottom:196.933500px;}
.y23e{bottom:197.604000px;}
.y1a4{bottom:197.857500px;}
.y261{bottom:198.232500px;}
.yf7{bottom:199.686000px;}
.y299{bottom:202.759500px;}
.y10b{bottom:204.328500px;}
.y63{bottom:207.447000px;}
.y220{bottom:208.048500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y9a{bottom:211.950000px;}
.y33{bottom:211.974000px;}
.yc6{bottom:213.295500px;}
.y260{bottom:215.493000px;}
.y1a3{bottom:216.687000px;}
.y11e{bottom:216.882000px;}
.yf6{bottom:218.514000px;}
.y149{bottom:219.747000px;}
.y298{bottom:220.020000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y10a{bottom:223.158000px;}
.y62{bottom:226.275000px;}
.y21f{bottom:226.878000px;}
.y32{bottom:229.863000px;}
.y99{bottom:230.779500px;}
.y23d{bottom:231.228000px;}
.yc5{bottom:232.125000px;}
.y25f{bottom:232.752000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1a2{bottom:235.516500px;}
.y297{bottom:237.280500px;}
.yf5{bottom:237.343500px;}
.y148{bottom:238.590000px;}
.y109{bottom:241.987500px;}
.y61{bottom:245.104500px;}
.y21e{bottom:245.707500px;}
.y147{bottom:246.810000px;}
.y1d7{bottom:247.137246px;}
.y98{bottom:249.609000px;}
.y25e{bottom:250.012500px;}
.y23c{bottom:250.057500px;}
.y11d{bottom:250.506000px;}
.yc4{bottom:250.954500px;}
.y1a1{bottom:254.346000px;}
.y296{bottom:254.541000px;}
.yf4{bottom:256.173000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y108{bottom:260.817000px;}
.y60{bottom:263.934000px;}
.y21d{bottom:264.537000px;}
.y1d6{bottom:266.306508px;}
.y25d{bottom:267.273000px;}
.y97{bottom:268.438500px;}
.y23b{bottom:268.887000px;}
.y11c{bottom:269.335500px;}
.yc3{bottom:269.784000px;}
.y295{bottom:271.801500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1a0{bottom:273.175500px;}
.yf3{bottom:275.002500px;}
.y146{bottom:278.670000px;}
.y107{bottom:279.646500px;}
.y5f{bottom:282.763500px;}
.y21c{bottom:283.366500px;}
.y25c{bottom:284.533500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1d5{bottom:285.567039px;}
.y96{bottom:287.268000px;}
.y23a{bottom:287.716500px;}
.y11b{bottom:288.165000px;}
.yc2{bottom:288.613500px;}
.y294{bottom:289.062000px;}
.y19f{bottom:292.003500px;}
.yf2{bottom:293.832000px;}
.y106{bottom:298.476000px;}
.y31{bottom:299.892000px;}
.y5e{bottom:301.593000px;}
.y25b{bottom:301.794000px;}
.y21b{bottom:302.196000px;}
.y145{bottom:302.310000px;}
.y1d4{bottom:304.736301px;}
.y95{bottom:306.097500px;}
.y293{bottom:306.321000px;}
.y239{bottom:306.546000px;}
.y11a{bottom:306.994500px;}
.yc1{bottom:307.443000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yf1{bottom:312.661500px;}
.y30{bottom:317.779500px;}
.y25a{bottom:319.054500px;}
.y5d{bottom:320.422500px;}
.y21a{bottom:321.025500px;}
.y105{bottom:321.789000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y19e{bottom:323.172000px;}
.y292{bottom:323.581500px;}
.y1d3{bottom:323.995743px;}
.y94{bottom:324.927000px;}
.y238{bottom:325.375500px;}
.y119{bottom:325.824000px;}
.y144{bottom:325.951500px;}
.yc0{bottom:326.272500px;}
.yf0{bottom:331.491000px;}
.y2f{bottom:335.667000px;}
.y259{bottom:336.315000px;}
.y5c{bottom:339.252000px;}
.y219{bottom:339.855000px;}
.y104{bottom:340.618500px;}
.y291{bottom:340.842000px;}
.y19d{bottom:342.015000px;}
.y1d2{bottom:343.255185px;}
.y93{bottom:343.756500px;}
.y237{bottom:344.205000px;}
.y118{bottom:344.653500px;}
.ybf{bottom:345.102000px;}
.y11{bottom:348.133500px;}
.y143{bottom:349.591500px;}
.yef{bottom:350.320500px;}
.y2e{bottom:353.554500px;}
.y258{bottom:353.575500px;}
.y5b{bottom:358.081500px;}
.y290{bottom:358.102500px;}
.y218{bottom:358.683000px;}
.y103{bottom:359.448000px;}
.y1d1{bottom:362.425950px;}
.y92{bottom:362.586000px;}
.y236{bottom:363.034500px;}
.y117{bottom:363.483000px;}
.ybe{bottom:363.931500px;}
.y19c{bottom:365.655000px;}
.yee{bottom:369.150000px;}
.y257{bottom:370.836000px;}
.y142{bottom:373.233000px;}
.y28f{bottom:375.363000px;}
.y5a{bottom:376.911000px;}
.y217{bottom:377.512500px;}
.y102{bottom:378.277500px;}
.y2d{bottom:380.409000px;}
.y91{bottom:381.415500px;}
.y141{bottom:381.451500px;}
.y235{bottom:381.864000px;}
.y116{bottom:382.312500px;}
.ybd{bottom:382.761000px;}
.y10{bottom:386.785499px;}
.yed{bottom:387.979500px;}
.y256{bottom:388.095000px;}
.y19b{bottom:389.296500px;}
.y28e{bottom:392.623500px;}
.y196{bottom:393.289500px;}
.y59{bottom:395.740500px;}
.y216{bottom:396.342000px;}
.y101{bottom:397.107000px;}
.y2c{bottom:398.298000px;}
.y90{bottom:400.245000px;}
.y234{bottom:400.693500px;}
.y115{bottom:401.142000px;}
.ybc{bottom:401.589000px;}
.y198{bottom:404.445000px;}
.y255{bottom:405.355500px;}
.yec{bottom:406.809000px;}
.yf{bottom:408.044999px;}
.y195{bottom:409.728000px;}
.y28d{bottom:409.884000px;}
.y19a{bottom:412.936500px;}
.y140{bottom:413.311500px;}
.y58{bottom:414.570000px;}
.y215{bottom:415.171500px;}
.y100{bottom:415.936500px;}
.y2b{bottom:416.185500px;}
.y1cf{bottom:417.146085px;}
.y8f{bottom:419.074500px;}
.y233{bottom:419.523000px;}
.y114{bottom:419.971500px;}
.ybb{bottom:420.418500px;}
.y254{bottom:422.616000px;}
.y1cc{bottom:425.242500px;}
.yeb{bottom:425.638500px;}
.y1ce{bottom:426.775950px;}
.y28c{bottom:427.144500px;}
.y214{bottom:434.001000px;}
.y2a{bottom:434.073000px;}
.yff{bottom:434.766000px;}
.y199{bottom:436.578000px;}
.y13f{bottom:436.951500px;}
.y57{bottom:437.883000px;}
.y8e{bottom:437.904000px;}
.y113{bottom:438.801000px;}
.yba{bottom:439.248000px;}
.y253{bottom:439.876500px;}
.y232{bottom:442.836000px;}
.y1cb{bottom:444.072000px;}
.y28b{bottom:444.403500px;}
.yea{bottom:444.468000px;}
.y29{bottom:451.962000px;}
.y213{bottom:452.830500px;}
.yfe{bottom:453.595500px;}
.y252{bottom:457.137000px;}
.y112{bottom:457.630500px;}
.yb9{bottom:458.077500px;}
.y197{bottom:460.218000px;}
.y13e{bottom:460.593000px;}
.y8d{bottom:461.217000px;}
.y28a{bottom:461.664000px;}
.y1ca{bottom:462.901500px;}
.ye9{bottom:463.297500px;}
.y13d{bottom:468.811500px;}
.y28{bottom:469.849500px;}
.y212{bottom:471.660000px;}
.y251{bottom:474.397500px;}
.y231{bottom:476.458500px;}
.yb8{bottom:476.907000px;}
.y289{bottom:478.924500px;}
.y111{bottom:480.942000px;}
.y8c{bottom:481.390500px;}
.y1c9{bottom:481.731000px;}
.ye8{bottom:482.127000px;}
.y194{bottom:483.859500px;}
.ye{bottom:484.864502px;}
.y27{bottom:487.737000px;}
.y211{bottom:490.489500px;}
.y250{bottom:491.658000px;}
.y230{bottom:495.288000px;}
.yb7{bottom:495.736500px;}
.y288{bottom:496.185000px;}
.y1c8{bottom:500.560500px;}
.y13c{bottom:500.671500px;}
.ye7{bottom:500.956500px;}
.yd{bottom:502.864502px;}
.y26{bottom:505.626000px;}
.y193{bottom:507.499500px;}
.y13b{bottom:508.891500px;}
.y24f{bottom:508.918500px;}
.y210{bottom:509.319000px;}
.y56{bottom:509.529000px;}
.y152{bottom:512.375085px;}
.y287{bottom:513.445500px;}
.y22f{bottom:514.117500px;}
.yb6{bottom:514.566000px;}
.y8b{bottom:515.014500px;}
.y1c7{bottom:519.390000px;}
.y18e{bottom:519.712500px;}
.ye6{bottom:519.786000px;}
.yc{bottom:520.864502px;}
.y151{bottom:522.004950px;}
.y25{bottom:523.513500px;}
.y24e{bottom:526.177500px;}
.y20f{bottom:528.148500px;}
.y55{bottom:528.987000px;}
.y286{bottom:530.706000px;}
.y190{bottom:530.868000px;}
.y192{bottom:531.141000px;}
.y22e{bottom:532.947000px;}
.yb5{bottom:533.395500px;}
.y8a{bottom:533.844000px;}
.y18d{bottom:536.151000px;}
.y1c6{bottom:538.219500px;}
.ye5{bottom:538.615500px;}
.yb{bottom:538.864499px;}
.y13a{bottom:540.751500px;}
.y24{bottom:541.401000px;}
.y20e{bottom:546.978000px;}
.y24d{bottom:547.921500px;}
.y285{bottom:547.966500px;}
.y139{bottom:548.970000px;}
.y22d{bottom:551.776500px;}
.yb4{bottom:552.225000px;}
.y89{bottom:552.673500px;}
.y191{bottom:554.781000px;}
.yfd{bottom:556.708500px;}
.ya{bottom:556.864499px;}
.y1c5{bottom:557.049000px;}
.ye4{bottom:557.445000px;}
.y29f{bottom:560.668500px;}
.y284{bottom:565.227000px;}
.y20d{bottom:565.807500px;}
.y54{bottom:566.376000px;}
.y22c{bottom:570.606000px;}
.yb3{bottom:571.054500px;}
.y88{bottom:571.503000px;}
.y1c4{bottom:575.878500px;}
.ye3{bottom:576.274500px;}
.y29e{bottom:577.929000px;}
.y18f{bottom:578.422500px;}
.y138{bottom:580.830000px;}
.y24c{bottom:581.545500px;}
.y283{bottom:582.487500px;}
.y20c{bottom:584.637000px;}
.y53{bottom:585.832500px;}
.y22b{bottom:589.435500px;}
.yb2{bottom:589.884000px;}
.y87{bottom:590.332500px;}
.y1c3{bottom:594.708000px;}
.ye2{bottom:595.104000px;}
.y29d{bottom:595.189500px;}
.y282{bottom:599.746500px;}
.y18c{bottom:602.062500px;}
.y20b{bottom:603.466500px;}
.y137{bottom:604.471500px;}
.y52{bottom:605.290500px;}
.y24b{bottom:608.086500px;}
.y22a{bottom:608.265000px;}
.yb1{bottom:608.713500px;}
.y86{bottom:609.162000px;}
.y1c2{bottom:613.537500px;}
.y281{bottom:617.007000px;}
.ye1{bottom:618.415500px;}
.y20a{bottom:622.296000px;}
.y51{bottom:624.747000px;}
.y24a{bottom:625.660500px;}
.y18b{bottom:625.704000px;}
.y229{bottom:627.094500px;}
.yb0{bottom:627.543000px;}
.y85{bottom:627.991500px;}
.y136{bottom:628.111500px;}
.y110{bottom:632.026500px;}
.y1c1{bottom:632.367000px;}
.y280{bottom:634.267500px;}
.y186{bottom:637.915500px;}
.y209{bottom:641.125500px;}
.y50{bottom:644.205000px;}
.y9{bottom:645.510000px;}
.y228{bottom:645.924000px;}
.yaf{bottom:646.372500px;}
.y84{bottom:646.821000px;}
.y188{bottom:649.071000px;}
.y18a{bottom:649.344000px;}
.y1c0{bottom:651.196500px;}
.y27f{bottom:651.528000px;}
.y135{bottom:651.753000px;}
.y249{bottom:652.201500px;}
.y185{bottom:654.354000px;}
.ye0{bottom:654.544500px;}
.y208{bottom:659.955000px;}
.y4f{bottom:663.661500px;}
.yae{bottom:665.202000px;}
.y83{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y27e{bottom:668.788500px;}
.y227{bottom:669.237000px;}
.y1bf{bottom:670.026000px;}
.y189{bottom:672.985500px;}
.ydf{bottom:673.389000px;}
.y134{bottom:675.393000px;}
.y248{bottom:678.741000px;}
.y207{bottom:678.784500px;}
.y4e{bottom:683.118000px;}
.yad{bottom:684.031500px;}
.y82{bottom:684.480000px;}
.y27d{bottom:686.049000px;}
.y1be{bottom:688.855500px;}
.y247{bottom:696.315000px;}
.y187{bottom:696.625500px;}
.yde{bottom:697.029000px;}
.y206{bottom:697.614000px;}
.y133{bottom:699.033000px;}
.y4d{bottom:702.576000px;}
.yac{bottom:702.861000px;}
.y81{bottom:703.309500px;}
.y1bd{bottom:707.685000px;}
.y246{bottom:713.889000px;}
.y205{bottom:716.443500px;}
.y184{bottom:720.267000px;}
.y27c{bottom:720.570000px;}
.ydd{bottom:720.670500px;}
.yab{bottom:721.690500px;}
.y4c{bottom:722.032500px;}
.y80{bottom:722.139000px;}
.y132{bottom:722.674500px;}
.ycb{bottom:726.174000px;}
.y7{bottom:726.298500px;}
.y1bc{bottom:726.514500px;}
.y27b{bottom:737.829000px;}
.y204{bottom:739.756500px;}
.y245{bottom:740.430000px;}
.yaa{bottom:740.520000px;}
.y7f{bottom:740.968500px;}
.y4b{bottom:741.490500px;}
.y183{bottom:743.907000px;}
.ydc{bottom:744.310500px;}
.y1bb{bottom:745.344000px;}
.y131{bottom:746.314500px;}
.y3{bottom:752.599495px;}
.y27a{bottom:755.089500px;}
.ya9{bottom:759.349500px;}
.y7e{bottom:759.798000px;}
.y4a{bottom:760.947000px;}
.y1ba{bottom:764.173500px;}
.y244{bottom:766.971000px;}
.y182{bottom:767.548500px;}
.ydb{bottom:767.952000px;}
.y130{bottom:769.956000px;}
.y279{bottom:772.350000px;}
.y203{bottom:773.380500px;}
.ya8{bottom:778.179000px;}
.y7d{bottom:778.627500px;}
.y49{bottom:780.403500px;}
.y1b9{bottom:783.003000px;}
.y243{bottom:784.545000px;}
.y278{bottom:789.610500px;}
.y181{bottom:791.188500px;}
.yda{bottom:791.592000px;}
.y202{bottom:792.208500px;}
.y12f{bottom:793.596000px;}
.ya7{bottom:797.008500px;}
.y7c{bottom:797.457000px;}
.y48{bottom:799.861500px;}
.y1b8{bottom:801.832500px;}
.y242{bottom:802.119000px;}
.y277{bottom:806.871000px;}
.y201{bottom:811.038000px;}
.y180{bottom:814.830000px;}
.yd9{bottom:815.232000px;}
.ya6{bottom:815.838000px;}
.y7b{bottom:816.286500px;}
.y12e{bottom:817.237500px;}
.y47{bottom:819.318000px;}
.y241{bottom:819.693000px;}
.y179{bottom:819.777000px;}
.y14f{bottom:820.320000px;}
.y1b7{bottom:820.660500px;}
.y276{bottom:824.131500px;}
.y17b{bottom:826.450500px;}
.y200{bottom:829.867500px;}
.ya5{bottom:834.667500px;}
.y7a{bottom:835.114500px;}
.y178{bottom:836.215500px;}
.y240{bottom:837.267000px;}
.y17f{bottom:838.470000px;}
.yd8{bottom:838.873500px;}
.y1b6{bottom:839.490000px;}
.y12d{bottom:840.877500px;}
.y275{bottom:841.392000px;}
.y1ff{bottom:848.697000px;}
.ya4{bottom:853.497000px;}
.y79{bottom:853.944000px;}
.y46{bottom:857.904000px;}
.y1b5{bottom:858.319500px;}
.y274{bottom:858.652500px;}
.y17e{bottom:862.111500px;}
.yd7{bottom:862.513500px;}
.y12c{bottom:864.519000px;}
.y1fe{bottom:867.526500px;}
.ya3{bottom:872.326500px;}
.y78{bottom:872.773500px;}
.y273{bottom:875.913000px;}
.y1b4{bottom:877.149000px;}
.y45{bottom:878.382000px;}
.y2{bottom:879.369000px;}
.y17d{bottom:885.751500px;}
.yd6{bottom:886.155000px;}
.y1fd{bottom:886.356000px;}
.y12b{bottom:888.159000px;}
.y44{bottom:890.182500px;}
.ya2{bottom:891.156000px;}
.y77{bottom:891.603000px;}
.y272{bottom:893.172000px;}
.y1b3{bottom:895.978500px;}
.y1fc{bottom:905.185500px;}
.y43{bottom:906.322500px;}
.y17c{bottom:909.391500px;}
.yd5{bottom:909.795000px;}
.ya1{bottom:909.984000px;}
.y76{bottom:910.432500px;}
.y12a{bottom:911.800500px;}
.y226{bottom:914.467500px;}
.y1b2{bottom:914.808000px;}
.y1fb{bottom:924.015000px;}
.y42{bottom:926.802000px;}
.y271{bottom:927.693000px;}
.y75{bottom:929.262000px;}
.y17a{bottom:933.033000px;}
.ya0{bottom:933.297000px;}
.yd4{bottom:933.436500px;}
.y1b1{bottom:933.637500px;}
.y129{bottom:935.440500px;}
.y1fa{bottom:942.844500px;}
.y270{bottom:944.953500px;}
.y74{bottom:948.091500px;}
.y1b0{bottom:952.467000px;}
.y176{bottom:956.673000px;}
.yd3{bottom:957.076500px;}
.y128{bottom:959.082000px;}
.y26f{bottom:962.214000px;}
.y175{bottom:964.893000px;}
.yd2{bottom:965.296500px;}
.y1{bottom:966.726000px;}
.y73{bottom:966.921000px;}
.y1af{bottom:971.296500px;}
.y41{bottom:971.478000px;}
.y177{bottom:973.111500px;}
.y1f9{bottom:974.011500px;}
.y26e{bottom:979.474500px;}
.y127{bottom:982.722000px;}
.y72{bottom:985.750500px;}
.y1ae{bottom:990.126000px;}
.y1f8{bottom:992.856000px;}
.y26d{bottom:996.735000px;}
.y71{bottom:1004.580000px;}
.y174{bottom:1004.731500px;}
.yd1{bottom:1005.135000px;}
.y126{bottom:1006.363500px;}
.y40{bottom:1008.240000px;}
.y26c{bottom:1013.995500px;}
.y1f7{bottom:1016.496000px;}
.y1ad{bottom:1021.293000px;}
.y70{bottom:1023.409500px;}
.y173{bottom:1023.964500px;}
.y125{bottom:1030.003500px;}
.y26b{bottom:1031.254500px;}
.y3f{bottom:1036.485000px;}
.y1ac{bottom:1040.137500px;}
.y6f{bottom:1042.239000px;}
.y26a{bottom:1048.515000px;}
.y6e{bottom:1061.068500px;}
.y124{bottom:1061.623500px;}
.y1ab{bottom:1063.777500px;}
.y3e{bottom:1064.728500px;}
.y269{bottom:1065.775500px;}
.y6d{bottom:1079.898000px;}
.y268{bottom:1083.036000px;}
.y1aa{bottom:1087.419000px;}
.y3d{bottom:1092.972000px;}
.y6c{bottom:1098.727500px;}
.y267{bottom:1100.296500px;}
.y6b{bottom:1117.557000px;}
.y1a9{bottom:1119.037500px;}
.y3a{bottom:1136.460000px;}
.y6a{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h11{height:34.813397px;}
.h1d{height:34.951465px;}
.h15{height:35.052500px;}
.h18{height:38.896243px;}
.h22{height:39.148273px;}
.h12{height:39.165235px;}
.h25{height:39.434227px;}
.h21{height:39.761719px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.hd{height:43.815515px;}
.h1e{height:43.886426px;}
.h24{height:44.268047px;}
.h1c{height:44.279648px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h26{height:49.117939px;}
.h1f{height:49.939453px;}
.hb{height:50.930649px;}
.hf{height:54.541601px;}
.h16{height:54.575123px;}
.h2{height:55.080000px;}
.h20{height:55.599258px;}
.hc{height:61.613006px;}
.h5{height:64.260000px;}
.h17{height:71.770243px;}
.h1a{height:72.039235px;}
.h19{height:72.045235px;}
.he{height:77.792486px;}
.h4{height:119.055004px;}
.h23{height:212.530500px;}
.h1b{height:469.207500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w6{width:471.729000px;}
.w5{width:545.517000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x1f{left:-198.262500px;}
.x14{left:-113.754000px;}
.x20{left:-2.692500px;}
.x0{left:0.000000px;}
.x21{left:29.167500px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x18{left:67.055437px;}
.x16{left:81.816000px;}
.x22{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x17{left:113.676000px;}
.x4{left:203.484001px;}
.x10{left:247.348500px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x12{left:258.556500px;}
.x9{left:269.316000px;}
.xb{left:281.479500px;}
.x11{left:284.184000px;}
.xc{left:336.789000px;}
.xf{left:341.086500px;}
.xe{left:344.448000px;}
.x19{left:354.066195px;}
.x1a{left:375.897000px;}
.x13{left:423.616500px;}
.x3{left:454.959000px;}
.x1b{left:483.484500px;}
.x15{left:597.606000px;}
.x1c{left:601.350000px;}
.xd{left:687.634500px;}
.x1d{left:708.414000px;}
.x1e{left:740.815500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.ls5a{letter-spacing:-4.253824pt;}
.lsb9{letter-spacing:-3.854400pt;}
.ls5c{letter-spacing:-3.844800pt;}
.lscf{letter-spacing:-3.521696pt;}
.lsbf{letter-spacing:-1.710080pt;}
.ls57{letter-spacing:-1.378752pt;}
.lscc{letter-spacing:-1.368064pt;}
.lsb2{letter-spacing:-1.047424pt;}
.lsd0{letter-spacing:-0.443552pt;}
.lsc5{letter-spacing:-0.432864pt;}
.ls41{letter-spacing:-0.393600pt;}
.lsc7{letter-spacing:-0.384768pt;}
.lsbe{letter-spacing:-0.374080pt;}
.lsb0{letter-spacing:-0.325984pt;}
.ls44{letter-spacing:-0.321600pt;}
.ls5d{letter-spacing:-0.312000pt;}
.lsc1{letter-spacing:-0.304608pt;}
.lsc6{letter-spacing:-0.277888pt;}
.lsbd{letter-spacing:-0.267200pt;}
.lsa9{letter-spacing:-0.251168pt;}
.lsba{letter-spacing:-0.245824pt;}
.lsc4{letter-spacing:-0.235136pt;}
.ls59{letter-spacing:-0.229792pt;}
.lsb5{letter-spacing:-0.213760pt;}
.lsb4{letter-spacing:-0.197728pt;}
.lsc3{letter-spacing:-0.192384pt;}
.ls4f{letter-spacing:-0.187040pt;}
.lsb7{letter-spacing:-0.176352pt;}
.ls4e{letter-spacing:-0.171008pt;}
.lsca{letter-spacing:-0.165664pt;}
.ls45{letter-spacing:-0.163200pt;}
.lsaf{letter-spacing:-0.160320pt;}
.lsac{letter-spacing:-0.149632pt;}
.lscb{letter-spacing:-0.144288pt;}
.lsce{letter-spacing:-0.138944pt;}
.lsc0{letter-spacing:-0.133600pt;}
.lsc8{letter-spacing:-0.128256pt;}
.lsb1{letter-spacing:-0.122912pt;}
.lsb3{letter-spacing:-0.117568pt;}
.lscd{letter-spacing:-0.112224pt;}
.lsa8{letter-spacing:-0.106880pt;}
.ls55{letter-spacing:-0.101536pt;}
.ls53{letter-spacing:-0.096192pt;}
.ls42{letter-spacing:-0.096000pt;}
.lsaa{letter-spacing:-0.090848pt;}
.lsc2{letter-spacing:-0.085504pt;}
.ls5e{letter-spacing:-0.081600pt;}
.lsc9{letter-spacing:-0.080160pt;}
.lsa6{letter-spacing:-0.076608pt;}
.ls46{letter-spacing:-0.074816pt;}
.ls3b{letter-spacing:-0.068096pt;}
.lsae{letter-spacing:-0.064128pt;}
.ls47{letter-spacing:-0.058784pt;}
.ls4b{letter-spacing:-0.053440pt;}
.ls58{letter-spacing:-0.048096pt;}
.ls62{letter-spacing:-0.048000pt;}
.ls5f{letter-spacing:-0.043200pt;}
.ls4c{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.038400pt;}
.lsa4{letter-spacing:-0.038304pt;}
.ls50{letter-spacing:-0.037408pt;}
.ls63{letter-spacing:-0.033600pt;}
.ls4d{letter-spacing:-0.032064pt;}
.ls60{letter-spacing:-0.028800pt;}
.ls48{letter-spacing:-0.026720pt;}
.ls39{letter-spacing:-0.025536pt;}
.ls3f{letter-spacing:-0.024000pt;}
.lsad{letter-spacing:-0.021376pt;}
.lsb8{letter-spacing:-0.019200pt;}
.ls54{letter-spacing:-0.016032pt;}
.lsab{letter-spacing:-0.010688pt;}
.ls3e{letter-spacing:-0.009600pt;}
.ls49{letter-spacing:-0.005344pt;}
.ls43{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000094pt;}
.lsd2{letter-spacing:0.001818pt;}
.lsd5{letter-spacing:0.001843pt;}
.lsd3{letter-spacing:0.002879pt;}
.ls81{letter-spacing:0.004800pt;}
.ls6b{letter-spacing:0.005344pt;}
.ls29{letter-spacing:0.009600pt;}
.ls77{letter-spacing:0.010688pt;}
.ls2d{letter-spacing:0.014400pt;}
.ls76{letter-spacing:0.016032pt;}
.ls2a{letter-spacing:0.019200pt;}
.ls79{letter-spacing:0.021376pt;}
.ls17{letter-spacing:0.024000pt;}
.ls93{letter-spacing:0.026720pt;}
.ls31{letter-spacing:0.028800pt;}
.ls6f{letter-spacing:0.032064pt;}
.ls7e{letter-spacing:0.033600pt;}
.ls8b{letter-spacing:0.037408pt;}
.ls1b{letter-spacing:0.038400pt;}
.ls52{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.043200pt;}
.ls2f{letter-spacing:0.048000pt;}
.ls73{letter-spacing:0.048096pt;}
.ls28{letter-spacing:0.052800pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls21{letter-spacing:0.058784pt;}
.ls20{letter-spacing:0.064128pt;}
.ls32{letter-spacing:0.067200pt;}
.ls72{letter-spacing:0.069472pt;}
.lsa0{letter-spacing:0.074816pt;}
.ls68{letter-spacing:0.076608pt;}
.ls36{letter-spacing:0.076800pt;}
.ls82{letter-spacing:0.080160pt;}
.ls80{letter-spacing:0.081600pt;}
.ls24{letter-spacing:0.085504pt;}
.ls7f{letter-spacing:0.086400pt;}
.ls12{letter-spacing:0.089376pt;}
.ls56{letter-spacing:0.090848pt;}
.ls18{letter-spacing:0.091200pt;}
.ls27{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.096192pt;}
.ls8f{letter-spacing:0.106880pt;}
.lsbc{letter-spacing:0.117568pt;}
.ls67{letter-spacing:0.119168pt;}
.ls61{letter-spacing:0.120000pt;}
.ls4a{letter-spacing:0.122912pt;}
.ls11{letter-spacing:0.127680pt;}
.lsb6{letter-spacing:0.128256pt;}
.ls51{letter-spacing:0.133600pt;}
.ls3d{letter-spacing:0.136192pt;}
.ls7c{letter-spacing:0.144288pt;}
.ls7d{letter-spacing:0.158400pt;}
.ls8e{letter-spacing:0.160320pt;}
.ls66{letter-spacing:0.161728pt;}
.ls1c{letter-spacing:0.163200pt;}
.ls10{letter-spacing:0.170240pt;}
.ls5b{letter-spacing:0.171008pt;}
.lsa5{letter-spacing:0.348992pt;}
.ls3a{letter-spacing:0.361760pt;}
.lsa7{letter-spacing:0.370272pt;}
.ls3c{letter-spacing:0.383040pt;}
.ls9b{letter-spacing:0.400800pt;}
.ls96{letter-spacing:0.721440pt;}
.ls95{letter-spacing:1.042080pt;}
.ls89{letter-spacing:2.319296pt;}
.ls8a{letter-spacing:2.639936pt;}
.ls97{letter-spacing:2.960576pt;}
.ls65{letter-spacing:3.117645pt;}
.ls98{letter-spacing:3.281216pt;}
.ls91{letter-spacing:4.237792pt;}
.ls90{letter-spacing:4.558432pt;}
.ls8d{letter-spacing:5.199712pt;}
.ls8c{letter-spacing:5.520352pt;}
.ls9d{letter-spacing:5.840992pt;}
.ls9c{letter-spacing:6.161632pt;}
.ls92{letter-spacing:7.759488pt;}
.ls94{letter-spacing:8.080128pt;}
.ls6e{letter-spacing:9.042048pt;}
.ls6d{letter-spacing:9.357344pt;}
.ls6c{letter-spacing:9.362688pt;}
.ls23{letter-spacing:9.688672pt;}
.ls22{letter-spacing:10.009312pt;}
.ls26{letter-spacing:10.089600pt;}
.ls9f{letter-spacing:10.319264pt;}
.ls19{letter-spacing:10.411200pt;}
.ls6a{letter-spacing:10.478272pt;}
.ls14{letter-spacing:10.486784pt;}
.ls15{letter-spacing:10.491040pt;}
.ls7{letter-spacing:10.626533pt;}
.ls9e{letter-spacing:10.639904pt;}
.ls16{letter-spacing:10.728000pt;}
.ls9a{letter-spacing:11.601824pt;}
.lse{letter-spacing:11.795718pt;}
.lsf{letter-spacing:11.901986pt;}
.ls99{letter-spacing:11.922464pt;}
.ls1e{letter-spacing:11.927808pt;}
.lsd4{letter-spacing:11.959177pt;}
.ls1d{letter-spacing:12.248448pt;}
.ls8{letter-spacing:13.070931pt;}
.ls5{letter-spacing:13.177199pt;}
.lsbb{letter-spacing:13.199680pt;}
.ls64{letter-spacing:13.230333pt;}
.ls6{letter-spacing:13.283467pt;}
.lsd1{letter-spacing:13.442868pt;}
.lsb{letter-spacing:13.541290pt;}
.lsc{letter-spacing:13.602270pt;}
.ls75{letter-spacing:14.482240pt;}
.ls74{letter-spacing:14.797536pt;}
.ls9{letter-spacing:16.258963pt;}
.lsa2{letter-spacing:16.400736pt;}
.lsa1{letter-spacing:16.721376pt;}
.lsa3{letter-spacing:16.725408pt;}
.lsa{letter-spacing:21.041011pt;}
.ls2e{letter-spacing:26.738491pt;}
.ls7a{letter-spacing:27.281120pt;}
.ls78{letter-spacing:27.601760pt;}
.ls7b{letter-spacing:27.623616pt;}
.ls71{letter-spacing:33.362592pt;}
.ls70{letter-spacing:33.677888pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls30{letter-spacing:68.668412pt;}
.ls83{letter-spacing:82.318976pt;}
.ls85{letter-spacing:209.997824pt;}
.ls2c{letter-spacing:291.482004pt;}
.ls35{letter-spacing:292.766400pt;}
.ls37{letter-spacing:300.451200pt;}
.ls33{letter-spacing:316.776000pt;}
.ls38{letter-spacing:320.616000pt;}
.ls34{letter-spacing:371.836800pt;}
.ls88{letter-spacing:429.839296pt;}
.ls87{letter-spacing:579.599552pt;}
.ls86{letter-spacing:617.039616pt;}
.ls84{letter-spacing:820.244512pt;}
.ls69{letter-spacing:1848.878752pt;}
.ls13{letter-spacing:1849.649088pt;}
.wsb4{word-spacing:-53.440000pt;}
.wsd1{word-spacing:-48.000000pt;}
.ws99{word-spacing:-42.560000pt;}
.wsd{word-spacing:-20.194365pt;}
.ws64{word-spacing:-13.283467pt;}
.wsdc{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws13a{word-spacing:-2.975497pt;}
.ws138{word-spacing:-2.709827pt;}
.ws37{word-spacing:-2.444158pt;}
.ws7a{word-spacing:-2.391024pt;}
.ws7c{word-spacing:-2.337890pt;}
.ws7b{word-spacing:-2.284756pt;}
.wsdb{word-spacing:-2.199757pt;}
.ws7e{word-spacing:-2.178489pt;}
.ws12d{word-spacing:-2.125355pt;}
.ws17{word-spacing:-2.104115pt;}
.ws51{word-spacing:-1.912819pt;}
.ws132{word-spacing:-1.700284pt;}
.ws8a{word-spacing:-1.647150pt;}
.ws50{word-spacing:-1.594016pt;}
.ws3a{word-spacing:-1.540882pt;}
.ws66{word-spacing:-1.434614pt;}
.wse6{word-spacing:-1.328347pt;}
.ws13d{word-spacing:-1.168945pt;}
.ws155{word-spacing:-1.099878pt;}
.ws4c{word-spacing:-1.062677pt;}
.ws168{word-spacing:-0.956416pt;}
.ws12f{word-spacing:-0.956410pt;}
.ws157{word-spacing:-0.908595pt;}
.ws4e{word-spacing:-0.903276pt;}
.ws4d{word-spacing:-0.850142pt;}
.ws141{word-spacing:-0.812954pt;}
.ws12a{word-spacing:-0.797008pt;}
.ws43{word-spacing:-0.743874pt;}
.ws69{word-spacing:-0.584473pt;}
.ws144{word-spacing:-0.573850pt;}
.ws65{word-spacing:-0.478205pt;}
.ws9f{word-spacing:-0.425600pt;}
.wsed{word-spacing:-0.412832pt;}
.ws9a{word-spacing:-0.404320pt;}
.wse9{word-spacing:-0.391552pt;}
.ws67{word-spacing:-0.371937pt;}
.ws13e{word-spacing:-0.334746pt;}
.ws1c{word-spacing:-0.318803pt;}
.ws13f{word-spacing:-0.286925pt;}
.ws44{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.wsc7{word-spacing:-0.224448pt;}
.wsf9{word-spacing:-0.213760pt;}
.ws9b{word-spacing:-0.212800pt;}
.ws1e{word-spacing:-0.212535pt;}
.wsea{word-spacing:-0.204288pt;}
.ws106{word-spacing:-0.197728pt;}
.ws15c{word-spacing:-0.191283pt;}
.wsbb{word-spacing:-0.187040pt;}
.ws105{word-spacing:-0.181696pt;}
.wsa0{word-spacing:-0.178752pt;}
.wsb0{word-spacing:-0.176352pt;}
.ws110{word-spacing:-0.171008pt;}
.wsee{word-spacing:-0.170240pt;}
.wsd0{word-spacing:-0.168000pt;}
.ws111{word-spacing:-0.160320pt;}
.ws1d{word-spacing:-0.159402pt;}
.wsc4{word-spacing:-0.149632pt;}
.wsc1{word-spacing:-0.144288pt;}
.wscd{word-spacing:-0.144000pt;}
.ws14{word-spacing:-0.143462pt;}
.wsbf{word-spacing:-0.138944pt;}
.ws10a{word-spacing:-0.134400pt;}
.ws121{word-spacing:-0.133600pt;}
.ws9d{word-spacing:-0.131936pt;}
.ws122{word-spacing:-0.128256pt;}
.wsd9{word-spacing:-0.124800pt;}
.wsfb{word-spacing:-0.122912pt;}
.wseb{word-spacing:-0.119168pt;}
.wsb9{word-spacing:-0.117568pt;}
.wsd8{word-spacing:-0.115200pt;}
.wsba{word-spacing:-0.112224pt;}
.wsb6{word-spacing:-0.106880pt;}
.ws1f{word-spacing:-0.106268pt;}
.wsd5{word-spacing:-0.105600pt;}
.wsfc{word-spacing:-0.101536pt;}
.wscf{word-spacing:-0.100800pt;}
.wsbc{word-spacing:-0.096192pt;}
.wscb{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.095642pt;}
.wsa7{word-spacing:-0.091200pt;}
.ws10f{word-spacing:-0.090848pt;}
.wsab{word-spacing:-0.086400pt;}
.wsf7{word-spacing:-0.085504pt;}
.ws109{word-spacing:-0.081600pt;}
.ws116{word-spacing:-0.080160pt;}
.wsd7{word-spacing:-0.076800pt;}
.ws100{word-spacing:-0.074816pt;}
.wsfd{word-spacing:-0.069472pt;}
.wsd3{word-spacing:-0.067200pt;}
.wsff{word-spacing:-0.064128pt;}
.wsd6{word-spacing:-0.062400pt;}
.wsef{word-spacing:-0.058784pt;}
.wsa2{word-spacing:-0.057600pt;}
.wsb8{word-spacing:-0.053440pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws10c{word-spacing:-0.052800pt;}
.wsaf{word-spacing:-0.048096pt;}
.wsd2{word-spacing:-0.048000pt;}
.ws16{word-spacing:-0.047821pt;}
.wsa8{word-spacing:-0.043200pt;}
.wsf3{word-spacing:-0.042752pt;}
.ws9c{word-spacing:-0.042560pt;}
.wsa1{word-spacing:-0.038400pt;}
.wsbe{word-spacing:-0.037408pt;}
.wsf5{word-spacing:-0.032064pt;}
.ws108{word-spacing:-0.028800pt;}
.wsae{word-spacing:-0.026720pt;}
.wsa3{word-spacing:-0.024000pt;}
.wsb2{word-spacing:-0.021376pt;}
.wsce{word-spacing:-0.019200pt;}
.ws98{word-spacing:-0.017024pt;}
.wsb7{word-spacing:-0.016032pt;}
.wsd4{word-spacing:-0.014400pt;}
.wsb1{word-spacing:-0.010688pt;}
.wsa4{word-spacing:-0.009600pt;}
.ws149{word-spacing:-0.008269pt;}
.ws15b{word-spacing:-0.007782pt;}
.ws15d{word-spacing:-0.007125pt;}
.ws161{word-spacing:-0.006545pt;}
.ws160{word-spacing:-0.006537pt;}
.ws162{word-spacing:-0.005914pt;}
.ws164{word-spacing:-0.005649pt;}
.ws4{word-spacing:-0.005357pt;}
.wsc3{word-spacing:-0.005344pt;}
.wscc{word-spacing:-0.004800pt;}
.wse8{word-spacing:-0.004256pt;}
.ws14b{word-spacing:-0.003891pt;}
.ws14f{word-spacing:-0.003456pt;}
.ws14c{word-spacing:-0.003081pt;}
.ws151{word-spacing:-0.002935pt;}
.ws16c{word-spacing:-0.000751pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.003199pt;}
.wsad{word-spacing:0.005344pt;}
.wsf6{word-spacing:0.010688pt;}
.wsac{word-spacing:0.021376pt;}
.ws9e{word-spacing:0.025536pt;}
.ws11f{word-spacing:0.026720pt;}
.ws118{word-spacing:0.032064pt;}
.wsca{word-spacing:0.033600pt;}
.wsec{word-spacing:0.034048pt;}
.wsf2{word-spacing:0.037408pt;}
.wsbd{word-spacing:0.042752pt;}
.wse4{word-spacing:0.047821pt;}
.wsa6{word-spacing:0.048000pt;}
.wsc0{word-spacing:0.048096pt;}
.ws38{word-spacing:0.053134pt;}
.wsf0{word-spacing:0.053440pt;}
.ws125{word-spacing:0.058784pt;}
.ws102{word-spacing:0.064128pt;}
.wsfe{word-spacing:0.069472pt;}
.ws2{word-spacing:0.074387pt;}
.ws11e{word-spacing:0.074816pt;}
.ws115{word-spacing:0.080160pt;}
.ws126{word-spacing:0.085504pt;}
.ws123{word-spacing:0.090848pt;}
.wse{word-spacing:0.095642pt;}
.wsf4{word-spacing:0.096192pt;}
.ws26{word-spacing:0.106268pt;}
.wsf8{word-spacing:0.106880pt;}
.ws120{word-spacing:0.112224pt;}
.wsaa{word-spacing:0.115200pt;}
.wsb3{word-spacing:0.117568pt;}
.ws107{word-spacing:0.122912pt;}
.wsb5{word-spacing:0.133600pt;}
.ws119{word-spacing:0.138944pt;}
.ws142{word-spacing:0.143462pt;}
.ws103{word-spacing:0.144288pt;}
.ws39{word-spacing:0.159402pt;}
.ws104{word-spacing:0.160320pt;}
.wsc5{word-spacing:0.176352pt;}
.ws11a{word-spacing:0.181696pt;}
.ws154{word-spacing:0.191283pt;}
.ws10d{word-spacing:0.192384pt;}
.wsf1{word-spacing:0.197728pt;}
.ws2e{word-spacing:0.212535pt;}
.ws112{word-spacing:0.213760pt;}
.ws11c{word-spacing:0.224448pt;}
.ws148{word-spacing:0.239104pt;}
.ws117{word-spacing:0.251168pt;}
.wsc9{word-spacing:0.264000pt;}
.ws2b{word-spacing:0.265669pt;}
.wsfa{word-spacing:0.272544pt;}
.wsa9{word-spacing:0.273600pt;}
.ws13{word-spacing:0.286925pt;}
.ws25{word-spacing:0.318803pt;}
.ws113{word-spacing:0.320640pt;}
.ws11d{word-spacing:0.331328pt;}
.wsa5{word-spacing:0.345600pt;}
.ws12c{word-spacing:0.371937pt;}
.ws11b{word-spacing:0.379424pt;}
.ws128{word-spacing:0.390112pt;}
.ws4a{word-spacing:0.425071pt;}
.ws33{word-spacing:0.478205pt;}
.ws21{word-spacing:0.531339pt;}
.ws62{word-spacing:0.584473pt;}
.ws150{word-spacing:0.621670pt;}
.ws86{word-spacing:0.637606pt;}
.ws5b{word-spacing:0.690740pt;}
.ws32{word-spacing:0.743874pt;}
.ws8d{word-spacing:0.797008pt;}
.ws58{word-spacing:0.850142pt;}
.ws6c{word-spacing:0.903276pt;}
.ws84{word-spacing:0.956410pt;}
.ws101{word-spacing:0.993984pt;}
.ws6a{word-spacing:1.009543pt;}
.ws14d{word-spacing:1.052058pt;}
.ws96{word-spacing:1.062677pt;}
.ws87{word-spacing:1.115811pt;}
.ws48{word-spacing:1.168945pt;}
.ws14a{word-spacing:1.195520pt;}
.ws13c{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws57{word-spacing:1.275213pt;}
.ws124{word-spacing:1.314624pt;}
.wsc2{word-spacing:1.325312pt;}
.ws15f{word-spacing:1.338982pt;}
.ws16a{word-spacing:1.373032pt;}
.ws20{word-spacing:1.381481pt;}
.ws15{word-spacing:1.386803pt;}
.ws5a{word-spacing:1.434614pt;}
.ws15e{word-spacing:1.434624pt;}
.ws147{word-spacing:1.482445pt;}
.ws2c{word-spacing:1.487748pt;}
.ws27{word-spacing:1.540882pt;}
.ws80{word-spacing:1.647150pt;}
.ws114{word-spacing:1.656640pt;}
.ws60{word-spacing:1.806551pt;}
.ws31{word-spacing:1.859685pt;}
.ws30{word-spacing:1.912819pt;}
.ws49{word-spacing:1.965953pt;}
.ws14e{word-spacing:2.008474pt;}
.ws5e{word-spacing:2.019087pt;}
.ws3b{word-spacing:2.072221pt;}
.ws5d{word-spacing:2.125355pt;}
.ws1{word-spacing:2.232481pt;}
.ws3{word-spacing:2.234188pt;}
.ws145{word-spacing:2.295398pt;}
.ws82{word-spacing:2.337890pt;}
.ws13b{word-spacing:2.391024pt;}
.ws163{word-spacing:2.391040pt;}
.ws83{word-spacing:2.444158pt;}
.ws40{word-spacing:2.497292pt;}
.ws8c{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws1a{word-spacing:2.591655pt;}
.wse7{word-spacing:2.603559pt;}
.ws54{word-spacing:2.656693pt;}
.ws7f{word-spacing:2.709827pt;}
.ws2f{word-spacing:2.762961pt;}
.ws158{word-spacing:2.773606pt;}
.ws166{word-spacing:2.861218pt;}
.ws169{word-spacing:2.861483pt;}
.ws167{word-spacing:2.862626pt;}
.ws156{word-spacing:2.865152pt;}
.ws143{word-spacing:2.866509pt;}
.ws45{word-spacing:2.869229pt;}
.ws146{word-spacing:2.869248pt;}
.ws135{word-spacing:2.975497pt;}
.ws85{word-spacing:3.028630pt;}
.ws16d{word-spacing:3.108352pt;}
.ws3f{word-spacing:3.134898pt;}
.ws140{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.ws159{word-spacing:3.203994pt;}
.ws6b{word-spacing:3.241166pt;}
.ws4b{word-spacing:3.294300pt;}
.ws61{word-spacing:3.347434pt;}
.ws46{word-spacing:3.453701pt;}
.ws127{word-spacing:3.468256pt;}
.ws5f{word-spacing:3.559969pt;}
.ws136{word-spacing:3.613103pt;}
.ws129{word-spacing:3.666237pt;}
.ws4f{word-spacing:3.719371pt;}
.ws165{word-spacing:3.730022pt;}
.wsc8{word-spacing:3.796800pt;}
.ws10b{word-spacing:3.806400pt;}
.ws8b{word-spacing:4.038174pt;}
.ws7d{word-spacing:4.091308pt;}
.ws47{word-spacing:4.144442pt;}
.ws59{word-spacing:4.197575pt;}
.wsc6{word-spacing:4.200384pt;}
.ws42{word-spacing:4.303843pt;}
.ws41{word-spacing:4.356977pt;}
.ws63{word-spacing:4.410111pt;}
.ws88{word-spacing:4.516379pt;}
.ws35{word-spacing:4.569513pt;}
.ws2a{word-spacing:4.728914pt;}
.ws97{word-spacing:4.782048pt;}
.wsa{word-spacing:4.872362pt;}
.wse5{word-spacing:4.941450pt;}
.ws12{word-spacing:4.973363pt;}
.ws133{word-spacing:4.994583pt;}
.wsda{word-spacing:5.021184pt;}
.ws34{word-spacing:5.047717pt;}
.ws3d{word-spacing:5.100851pt;}
.ws3c{word-spacing:5.153985pt;}
.ws81{word-spacing:5.207119pt;}
.ws95{word-spacing:5.419654pt;}
.ws152{word-spacing:5.451571pt;}
.ws22{word-spacing:5.472788pt;}
.ws23{word-spacing:5.579056pt;}
.ws56{word-spacing:5.632190pt;}
.ws5c{word-spacing:5.738458pt;}
.ws16b{word-spacing:5.786317pt;}
.ws94{word-spacing:5.950993pt;}
.ws12e{word-spacing:6.057261pt;}
.ws130{word-spacing:6.163529pt;}
.ws36{word-spacing:6.376064pt;}
.ws139{word-spacing:6.482332pt;}
.ws131{word-spacing:6.641733pt;}
.ws24{word-spacing:6.694867pt;}
.ws89{word-spacing:6.801135pt;}
.ws3e{word-spacing:7.013670pt;}
.ws137{word-spacing:7.119938pt;}
.ws12b{word-spacing:7.226206pt;}
.ws53{word-spacing:7.332474pt;}
.ws134{word-spacing:7.385607pt;}
.ws8{word-spacing:8.740496pt;}
.ws52{word-spacing:9.245293pt;}
.ws15a{word-spacing:9.420698pt;}
.ws153{word-spacing:9.994547pt;}
.ws9{word-spacing:10.525789pt;}
.ws55{word-spacing:11.636317pt;}
.ws11{word-spacing:13.002386pt;}
.ws5{word-spacing:13.761632pt;}
.ws68{word-spacing:16.312097pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wse3{word-spacing:126.725120pt;}
.ws91{word-spacing:156.875366pt;}
.ws8f{word-spacing:160.987955pt;}
.ws8e{word-spacing:167.229338pt;}
.wsdf{word-spacing:220.501709pt;}
.wse0{word-spacing:228.057395pt;}
.wse2{word-spacing:244.077363pt;}
.wsdd{word-spacing:244.412109pt;}
.wse1{word-spacing:248.189952pt;}
.wsde{word-spacing:261.101568pt;}
.ws6d{word-spacing:349.210479pt;}
.ws6e{word-spacing:433.160806pt;}
.ws10e{word-spacing:480.238560pt;}
.ws75{word-spacing:535.353856pt;}
.ws73{word-spacing:544.918016pt;}
.ws77{word-spacing:546.926490pt;}
.ws72{word-spacing:556.012442pt;}
.ws71{word-spacing:558.260019pt;}
.ws78{word-spacing:563.185562pt;}
.ws76{word-spacing:564.141978pt;}
.ws74{word-spacing:573.467034pt;}
.ws79{word-spacing:581.596570pt;}
.ws6f{word-spacing:597.138330pt;}
.ws70{word-spacing:603.881062pt;}
.ws92{word-spacing:995.714116pt;}
.ws93{word-spacing:996.718353pt;}
.ws90{word-spacing:1087.816977pt;}
._44{margin-left:-1609.116396pt;}
._59{margin-left:-18.565719pt;}
._5{margin-left:-10.711859pt;}
._4{margin-left:-7.077478pt;}
._6{margin-left:-5.897792pt;}
._8{margin-left:-4.596218pt;}
._0{margin-left:-3.496198pt;}
._4e{margin-left:-2.340672pt;}
._3{margin-left:-1.301776pt;}
._42{width:1.243200pt;}
._7{width:2.660263pt;}
._43{width:4.286337pt;}
._1{width:10.860531pt;}
._22{width:12.114454pt;}
._f{width:13.177232pt;}
._a{width:14.649059pt;}
._13{width:15.860448pt;}
._c{width:16.763731pt;}
._23{width:18.012381pt;}
._9{width:19.038099pt;}
._b{width:20.244032pt;}
._12{width:21.519216pt;}
._2{width:22.502128pt;}
._16{width:24.122775pt;}
._18{width:25.424551pt;}
._15{width:26.832603pt;}
._21{width:28.490141pt;}
._14{width:29.914367pt;}
._57{width:31.949715pt;}
._d{width:33.394564pt;}
._17{width:34.776112pt;}
._e{width:37.007876pt;}
._24{width:38.070412pt;}
._56{width:39.212726pt;}
._58{width:45.483002pt;}
._48{width:77.331942pt;}
._46{width:86.308220pt;}
._4d{width:102.477684pt;}
._4a{width:124.047155pt;}
._55{width:136.050176pt;}
._32{width:145.279590pt;}
._3e{width:151.650371pt;}
._34{width:152.835277pt;}
._49{width:161.251738pt;}
._27{width:169.189990pt;}
._39{width:172.967834pt;}
._3d{width:211.516819pt;}
._3b{width:223.169092pt;}
._31{width:245.607629pt;}
._28{width:247.478061pt;}
._26{width:269.518029pt;}
._54{width:270.426624pt;}
._52{width:276.691149pt;}
._29{width:279.948384pt;}
._53{width:303.853363pt;}
._47{width:320.399360pt;}
._2e{width:351.631763pt;}
._4b{width:396.864819pt;}
._37{width:453.256157pt;}
._36{width:455.168989pt;}
._1a{width:457.071206pt;}
._50{width:485.954970pt;}
._2b{width:501.831475pt;}
._35{width:503.133251pt;}
._3f{width:512.314845pt;}
._2d{width:523.255194pt;}
._33{width:553.143194pt;}
._4f{width:560.316314pt;}
._19{width:566.341734pt;}
._1c{width:568.828416pt;}
._1f{width:570.836890pt;}
._4c{width:580.305408pt;}
._1b{width:582.170419pt;}
._30{width:583.700685pt;}
._1e{width:588.004557pt;}
._1d{width:597.377434pt;}
._20{width:605.459149pt;}
._51{width:674.560205pt;}
._2a{width:689.777834pt;}
._2c{width:694.884045pt;}
._3c{width:721.748753pt;}
._38{width:757.959680pt;}
._10{width:783.363589pt;}
._3a{width:816.301056pt;}
._41{width:827.682406pt;}
._40{width:860.104909pt;}
._2f{width:933.892403pt;}
._25{width:1166.540595pt;}
._45{width:2233.602667pt;}
._11{width:2254.856000pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.777458pt;}
.fs8{font-size:95.641600pt;}
.y1d0{bottom:-639.123600pt;}
.y1f5{bottom:-578.643104pt;}
.y1f4{bottom:-561.520667pt;}
.y153{bottom:-554.475600pt;}
.y1f3{bottom:-544.481323pt;}
.y1f2{bottom:-527.361819pt;}
.y1f1{bottom:-510.322475pt;}
.y170{bottom:-501.035600pt;}
.y1f0{bottom:-493.202971pt;}
.y16e{bottom:-484.155600pt;}
.y1ef{bottom:-476.082616pt;}
.y16f{bottom:-467.355600pt;}
.y1ee{bottom:-459.043272pt;}
.y16d{bottom:-450.475600pt;}
.y1ed{bottom:-441.923768pt;}
.y16c{bottom:-433.595600pt;}
.y1ec{bottom:-424.883088pt;}
.y169{bottom:-416.715600pt;}
.y1eb{bottom:-403.763600pt;}
.y16b{bottom:-399.915600pt;}
.y16a{bottom:-383.035200pt;}
.y1ea{bottom:-370.642315pt;}
.y168{bottom:-366.155600pt;}
.y1e9{bottom:-353.602971pt;}
.y167{bottom:-349.355600pt;}
.y1e8{bottom:-336.481163pt;}
.y166{bottom:-332.475600pt;}
.y1e7{bottom:-319.361659pt;}
.y165{bottom:-315.595600pt;}
.y1e6{bottom:-302.322315pt;}
.y164{bottom:-298.795600pt;}
.y15e{bottom:-290.315600pt;}
.y1e5{bottom:-285.202811pt;}
.y163{bottom:-281.915600pt;}
.y1e4{bottom:-268.163288pt;}
.y162{bottom:-265.035600pt;}
.y1e3{bottom:-251.043784pt;}
.y161{bottom:-248.155600pt;}
.y1e2{bottom:-233.924280pt;}
.y160{bottom:-231.355467pt;}
.y1e1{bottom:-216.883600pt;}
.y15f{bottom:-214.475600pt;}
.y15d{bottom:-197.595600pt;}
.y1e0{bottom:-184.163600pt;}
.y15c{bottom:-172.316000pt;}
.y1df{bottom:-166.803600pt;}
.y15b{bottom:-156.875600pt;}
.y1de{bottom:-148.163600pt;}
.y1dd{bottom:-129.523600pt;}
.y15a{bottom:-125.195600pt;}
.y1dc{bottom:-110.883600pt;}
.y159{bottom:-108.154608pt;}
.y1db{bottom:-92.243600pt;}
.y158{bottom:-91.035104pt;}
.y157{bottom:-73.915600pt;}
.y1da{bottom:-65.523600pt;}
.y156{bottom:-41.196000pt;}
.y1d9{bottom:-34.083600pt;}
.y155{bottom:-25.755600pt;}
.y1d8{bottom:-14.082368pt;}
.y154{bottom:-5.835600pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:8.207950pt;}
.y3b{bottom:23.914454pt;}
.y69{bottom:28.346667pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y39{bottom:93.018667pt;}
.yfc{bottom:93.812000pt;}
.y266{bottom:99.493333pt;}
.y14e{bottom:100.677333pt;}
.y68{bottom:100.710667pt;}
.y225{bottom:101.245333pt;}
.y9f{bottom:104.713333pt;}
.y23f{bottom:104.714667pt;}
.y123{bottom:105.112000pt;}
.yca{bottom:105.510667pt;}
.yd0{bottom:105.909333pt;}
.y38{bottom:108.920000pt;}
.y1a8{bottom:108.924000pt;}
.yfb{bottom:110.549333pt;}
.y10f{bottom:114.676000pt;}
.y265{bottom:114.836000pt;}
.y14d{bottom:117.414667pt;}
.y67{bottom:117.448000pt;}
.y224{bottom:117.982667pt;}
.y29c{bottom:118.861333pt;}
.y172{bottom:119.630667pt;}
.y9e{bottom:121.450667pt;}
.y122{bottom:121.849333pt;}
.yc9{bottom:122.248000pt;}
.ycf{bottom:122.646667pt;}
.y23{bottom:123.790666pt;}
.y37{bottom:124.820000pt;}
.y1a7{bottom:125.661333pt;}
.yfa{bottom:127.286667pt;}
.y264{bottom:130.178667pt;}
.y10e{bottom:131.413333pt;}
.y14c{bottom:134.152000pt;}
.y66{bottom:134.185333pt;}
.y29b{bottom:134.202667pt;}
.y223{bottom:134.720000pt;}
.y171{bottom:136.726667pt;}
.y9d{bottom:138.188000pt;}
.y121{bottom:138.586667pt;}
.yc8{bottom:138.985333pt;}
.yce{bottom:139.384000pt;}
.y36{bottom:140.720000pt;}
.y1a6{bottom:142.398667pt;}
.yf9{bottom:144.024000pt;}
.y263{bottom:145.521333pt;}
.y1f6{bottom:148.126667pt;}
.y10d{bottom:148.150667pt;}
.y29a{bottom:149.545333pt;}
.y14b{bottom:150.889333pt;}
.y65{bottom:150.922667pt;}
.y222{bottom:151.457333pt;}
.y9c{bottom:154.925333pt;}
.y120{bottom:155.324000pt;}
.ycd{bottom:156.121333pt;}
.y35{bottom:156.621333pt;}
.y150{bottom:156.664000pt;}
.y1a5{bottom:159.136000pt;}
.yc7{bottom:159.708000pt;}
.yf8{bottom:160.761333pt;}
.y262{bottom:160.864000pt;}
.y10c{bottom:164.888000pt;}
.y14a{bottom:167.626667pt;}
.y64{bottom:167.660000pt;}
.y1cd{bottom:168.064000pt;}
.y221{bottom:168.194667pt;}
.y9b{bottom:171.662667pt;}
.y11f{bottom:172.061333pt;}
.y34{bottom:172.521333pt;}
.ycc{bottom:172.858667pt;}
.y1a{bottom:175.052000pt;}
.y23e{bottom:175.648000pt;}
.y1a4{bottom:175.873333pt;}
.y261{bottom:176.206667pt;}
.yf7{bottom:177.498667pt;}
.y299{bottom:180.230667pt;}
.y10b{bottom:181.625333pt;}
.y63{bottom:184.397333pt;}
.y220{bottom:184.932000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y9a{bottom:188.400000pt;}
.y33{bottom:188.421333pt;}
.yc6{bottom:189.596000pt;}
.y260{bottom:191.549333pt;}
.y1a3{bottom:192.610667pt;}
.y11e{bottom:192.784000pt;}
.yf6{bottom:194.234667pt;}
.y149{bottom:195.330667pt;}
.y298{bottom:195.573333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y10a{bottom:198.362667pt;}
.y62{bottom:201.133333pt;}
.y21f{bottom:201.669333pt;}
.y32{bottom:204.322667pt;}
.y99{bottom:205.137333pt;}
.y23d{bottom:205.536000pt;}
.yc5{bottom:206.333333pt;}
.y25f{bottom:206.890667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1a2{bottom:209.348000pt;}
.y297{bottom:210.916000pt;}
.yf5{bottom:210.972000pt;}
.y148{bottom:212.080000pt;}
.y109{bottom:215.100000pt;}
.y61{bottom:217.870667pt;}
.y21e{bottom:218.406667pt;}
.y147{bottom:219.386667pt;}
.y1d7{bottom:219.677552pt;}
.y98{bottom:221.874667pt;}
.y25e{bottom:222.233333pt;}
.y23c{bottom:222.273333pt;}
.y11d{bottom:222.672000pt;}
.yc4{bottom:223.070667pt;}
.y1a1{bottom:226.085333pt;}
.y296{bottom:226.258667pt;}
.yf4{bottom:227.709333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y108{bottom:231.837333pt;}
.y60{bottom:234.608000pt;}
.y21d{bottom:235.144000pt;}
.y1d6{bottom:236.716896pt;}
.y25d{bottom:237.576000pt;}
.y97{bottom:238.612000pt;}
.y23b{bottom:239.010667pt;}
.y11c{bottom:239.409333pt;}
.yc3{bottom:239.808000pt;}
.y295{bottom:241.601333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1a0{bottom:242.822667pt;}
.yf3{bottom:244.446667pt;}
.y146{bottom:247.706667pt;}
.y107{bottom:248.574667pt;}
.y5f{bottom:251.345333pt;}
.y21c{bottom:251.881333pt;}
.y25c{bottom:252.918667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1d5{bottom:253.837368pt;}
.y96{bottom:255.349333pt;}
.y23a{bottom:255.748000pt;}
.y11b{bottom:256.146667pt;}
.yc2{bottom:256.545333pt;}
.y294{bottom:256.944000pt;}
.y19f{bottom:259.558667pt;}
.yf2{bottom:261.184000pt;}
.y106{bottom:265.312000pt;}
.y31{bottom:266.570667pt;}
.y5e{bottom:268.082667pt;}
.y25b{bottom:268.261333pt;}
.y21b{bottom:268.618667pt;}
.y145{bottom:268.720000pt;}
.y1d4{bottom:270.876712pt;}
.y95{bottom:272.086667pt;}
.y293{bottom:272.285333pt;}
.y239{bottom:272.485333pt;}
.y11a{bottom:272.884000pt;}
.yc1{bottom:273.282667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yf1{bottom:277.921333pt;}
.y30{bottom:282.470667pt;}
.y25a{bottom:283.604000pt;}
.y5d{bottom:284.820000pt;}
.y21a{bottom:285.356000pt;}
.y105{bottom:286.034667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y19e{bottom:287.264000pt;}
.y292{bottom:287.628000pt;}
.y1d3{bottom:287.996216pt;}
.y94{bottom:288.824000pt;}
.y238{bottom:289.222667pt;}
.y119{bottom:289.621333pt;}
.y144{bottom:289.734667pt;}
.yc0{bottom:290.020000pt;}
.yf0{bottom:294.658667pt;}
.y2f{bottom:298.370667pt;}
.y259{bottom:298.946667pt;}
.y5c{bottom:301.557333pt;}
.y219{bottom:302.093333pt;}
.y104{bottom:302.772000pt;}
.y291{bottom:302.970667pt;}
.y19d{bottom:304.013333pt;}
.y1d2{bottom:305.115720pt;}
.y93{bottom:305.561333pt;}
.y237{bottom:305.960000pt;}
.y118{bottom:306.358667pt;}
.ybf{bottom:306.757333pt;}
.y11{bottom:309.452000pt;}
.y143{bottom:310.748000pt;}
.yef{bottom:311.396000pt;}
.y2e{bottom:314.270667pt;}
.y258{bottom:314.289333pt;}
.y5b{bottom:318.294667pt;}
.y290{bottom:318.313333pt;}
.y218{bottom:318.829333pt;}
.y103{bottom:319.509333pt;}
.y1d1{bottom:322.156400pt;}
.y92{bottom:322.298667pt;}
.y236{bottom:322.697333pt;}
.y117{bottom:323.096000pt;}
.ybe{bottom:323.494667pt;}
.y19c{bottom:325.026667pt;}
.yee{bottom:328.133333pt;}
.y257{bottom:329.632000pt;}
.y142{bottom:331.762667pt;}
.y28f{bottom:333.656000pt;}
.y5a{bottom:335.032000pt;}
.y217{bottom:335.566667pt;}
.y102{bottom:336.246667pt;}
.y2d{bottom:338.141333pt;}
.y91{bottom:339.036000pt;}
.y141{bottom:339.068000pt;}
.y235{bottom:339.434667pt;}
.y116{bottom:339.833333pt;}
.ybd{bottom:340.232000pt;}
.y10{bottom:343.809333pt;}
.yed{bottom:344.870667pt;}
.y256{bottom:344.973333pt;}
.y19b{bottom:346.041333pt;}
.y28e{bottom:348.998667pt;}
.y196{bottom:349.590667pt;}
.y59{bottom:351.769333pt;}
.y216{bottom:352.304000pt;}
.y101{bottom:352.984000pt;}
.y2c{bottom:354.042667pt;}
.y90{bottom:355.773333pt;}
.y234{bottom:356.172000pt;}
.y115{bottom:356.570667pt;}
.ybc{bottom:356.968000pt;}
.y198{bottom:359.506667pt;}
.y255{bottom:360.316000pt;}
.yec{bottom:361.608000pt;}
.yf{bottom:362.706666pt;}
.y195{bottom:364.202667pt;}
.y28d{bottom:364.341333pt;}
.y19a{bottom:367.054667pt;}
.y140{bottom:367.388000pt;}
.y58{bottom:368.506667pt;}
.y215{bottom:369.041333pt;}
.y100{bottom:369.721333pt;}
.y2b{bottom:369.942667pt;}
.y1cf{bottom:370.796520pt;}
.y8f{bottom:372.510667pt;}
.y233{bottom:372.909333pt;}
.y114{bottom:373.308000pt;}
.ybb{bottom:373.705333pt;}
.y254{bottom:375.658667pt;}
.y1cc{bottom:377.993333pt;}
.yeb{bottom:378.345333pt;}
.y1ce{bottom:379.356400pt;}
.y28c{bottom:379.684000pt;}
.y214{bottom:385.778667pt;}
.y2a{bottom:385.842667pt;}
.yff{bottom:386.458667pt;}
.y199{bottom:388.069333pt;}
.y13f{bottom:388.401333pt;}
.y57{bottom:389.229333pt;}
.y8e{bottom:389.248000pt;}
.y113{bottom:390.045333pt;}
.yba{bottom:390.442667pt;}
.y253{bottom:391.001333pt;}
.y232{bottom:393.632000pt;}
.y1cb{bottom:394.730667pt;}
.y28b{bottom:395.025333pt;}
.yea{bottom:395.082667pt;}
.y29{bottom:401.744000pt;}
.y213{bottom:402.516000pt;}
.yfe{bottom:403.196000pt;}
.y252{bottom:406.344000pt;}
.y112{bottom:406.782667pt;}
.yb9{bottom:407.180000pt;}
.y197{bottom:409.082667pt;}
.y13e{bottom:409.416000pt;}
.y8d{bottom:409.970667pt;}
.y28a{bottom:410.368000pt;}
.y1ca{bottom:411.468000pt;}
.ye9{bottom:411.820000pt;}
.y13d{bottom:416.721333pt;}
.y28{bottom:417.644000pt;}
.y212{bottom:419.253333pt;}
.y251{bottom:421.686667pt;}
.y231{bottom:423.518667pt;}
.yb8{bottom:423.917333pt;}
.y289{bottom:425.710667pt;}
.y111{bottom:427.504000pt;}
.y8c{bottom:427.902667pt;}
.y1c9{bottom:428.205333pt;}
.ye8{bottom:428.557333pt;}
.y194{bottom:430.097333pt;}
.ye{bottom:430.990669pt;}
.y27{bottom:433.544000pt;}
.y211{bottom:435.990667pt;}
.y250{bottom:437.029333pt;}
.y230{bottom:440.256000pt;}
.yb7{bottom:440.654667pt;}
.y288{bottom:441.053333pt;}
.y1c8{bottom:444.942667pt;}
.y13c{bottom:445.041333pt;}
.ye7{bottom:445.294667pt;}
.yd{bottom:446.990669pt;}
.y26{bottom:449.445333pt;}
.y193{bottom:451.110667pt;}
.y13b{bottom:452.348000pt;}
.y24f{bottom:452.372000pt;}
.y210{bottom:452.728000pt;}
.y56{bottom:452.914667pt;}
.y152{bottom:455.444520pt;}
.y287{bottom:456.396000pt;}
.y22f{bottom:456.993333pt;}
.yb6{bottom:457.392000pt;}
.y8b{bottom:457.790667pt;}
.y1c7{bottom:461.680000pt;}
.y18e{bottom:461.966667pt;}
.ye6{bottom:462.032000pt;}
.yc{bottom:462.990669pt;}
.y151{bottom:464.004400pt;}
.y25{bottom:465.345333pt;}
.y24e{bottom:467.713333pt;}
.y20f{bottom:469.465333pt;}
.y55{bottom:470.210667pt;}
.y286{bottom:471.738667pt;}
.y190{bottom:471.882667pt;}
.y192{bottom:472.125333pt;}
.y22e{bottom:473.730667pt;}
.yb5{bottom:474.129333pt;}
.y8a{bottom:474.528000pt;}
.y18d{bottom:476.578667pt;}
.y1c6{bottom:478.417333pt;}
.ye5{bottom:478.769333pt;}
.yb{bottom:478.990666pt;}
.y13a{bottom:480.668000pt;}
.y24{bottom:481.245333pt;}
.y20e{bottom:486.202667pt;}
.y24d{bottom:487.041333pt;}
.y285{bottom:487.081333pt;}
.y139{bottom:487.973333pt;}
.y22d{bottom:490.468000pt;}
.yb4{bottom:490.866667pt;}
.y89{bottom:491.265333pt;}
.y191{bottom:493.138667pt;}
.yfd{bottom:494.852000pt;}
.ya{bottom:494.990666pt;}
.y1c5{bottom:495.154667pt;}
.ye4{bottom:495.506667pt;}
.y29f{bottom:498.372000pt;}
.y284{bottom:502.424000pt;}
.y20d{bottom:502.940000pt;}
.y54{bottom:503.445333pt;}
.y22c{bottom:507.205333pt;}
.yb3{bottom:507.604000pt;}
.y88{bottom:508.002667pt;}
.y1c4{bottom:511.892000pt;}
.ye3{bottom:512.244000pt;}
.y29e{bottom:513.714667pt;}
.y18f{bottom:514.153333pt;}
.y138{bottom:516.293333pt;}
.y24c{bottom:516.929333pt;}
.y283{bottom:517.766667pt;}
.y20c{bottom:519.677333pt;}
.y53{bottom:520.740000pt;}
.y22b{bottom:523.942667pt;}
.yb2{bottom:524.341333pt;}
.y87{bottom:524.740000pt;}
.y1c3{bottom:528.629333pt;}
.ye2{bottom:528.981333pt;}
.y29d{bottom:529.057333pt;}
.y282{bottom:533.108000pt;}
.y18c{bottom:535.166667pt;}
.y20b{bottom:536.414667pt;}
.y137{bottom:537.308000pt;}
.y52{bottom:538.036000pt;}
.y24b{bottom:540.521333pt;}
.y22a{bottom:540.680000pt;}
.yb1{bottom:541.078667pt;}
.y86{bottom:541.477333pt;}
.y1c2{bottom:545.366667pt;}
.y281{bottom:548.450667pt;}
.ye1{bottom:549.702667pt;}
.y20a{bottom:553.152000pt;}
.y51{bottom:555.330667pt;}
.y24a{bottom:556.142667pt;}
.y18b{bottom:556.181333pt;}
.y229{bottom:557.417333pt;}
.yb0{bottom:557.816000pt;}
.y85{bottom:558.214667pt;}
.y136{bottom:558.321333pt;}
.y110{bottom:561.801333pt;}
.y1c1{bottom:562.104000pt;}
.y280{bottom:563.793333pt;}
.y186{bottom:567.036000pt;}
.y209{bottom:569.889333pt;}
.y50{bottom:572.626667pt;}
.y9{bottom:573.786667pt;}
.y228{bottom:574.154667pt;}
.yaf{bottom:574.553333pt;}
.y84{bottom:574.952000pt;}
.y188{bottom:576.952000pt;}
.y18a{bottom:577.194667pt;}
.y1c0{bottom:578.841333pt;}
.y27f{bottom:579.136000pt;}
.y135{bottom:579.336000pt;}
.y249{bottom:579.734667pt;}
.y185{bottom:581.648000pt;}
.ye0{bottom:581.817333pt;}
.y208{bottom:586.626667pt;}
.y4f{bottom:589.921333pt;}
.yae{bottom:591.290667pt;}
.y83{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y27e{bottom:594.478667pt;}
.y227{bottom:594.877333pt;}
.y1bf{bottom:595.578667pt;}
.y189{bottom:598.209333pt;}
.ydf{bottom:598.568000pt;}
.y134{bottom:600.349333pt;}
.y248{bottom:603.325333pt;}
.y207{bottom:603.364000pt;}
.y4e{bottom:607.216000pt;}
.yad{bottom:608.028000pt;}
.y82{bottom:608.426667pt;}
.y27d{bottom:609.821333pt;}
.y1be{bottom:612.316000pt;}
.y247{bottom:618.946667pt;}
.y187{bottom:619.222667pt;}
.yde{bottom:619.581333pt;}
.y206{bottom:620.101333pt;}
.y133{bottom:621.362667pt;}
.y4d{bottom:624.512000pt;}
.yac{bottom:624.765333pt;}
.y81{bottom:625.164000pt;}
.y1bd{bottom:629.053333pt;}
.y246{bottom:634.568000pt;}
.y205{bottom:636.838667pt;}
.y184{bottom:640.237333pt;}
.y27c{bottom:640.506667pt;}
.ydd{bottom:640.596000pt;}
.yab{bottom:641.502667pt;}
.y4c{bottom:641.806667pt;}
.y80{bottom:641.901333pt;}
.y132{bottom:642.377333pt;}
.ycb{bottom:645.488000pt;}
.y7{bottom:645.598667pt;}
.y1bc{bottom:645.790667pt;}
.y27b{bottom:655.848000pt;}
.y204{bottom:657.561333pt;}
.y245{bottom:658.160000pt;}
.yaa{bottom:658.240000pt;}
.y7f{bottom:658.638667pt;}
.y4b{bottom:659.102667pt;}
.y183{bottom:661.250667pt;}
.ydc{bottom:661.609333pt;}
.y1bb{bottom:662.528000pt;}
.y131{bottom:663.390667pt;}
.y3{bottom:668.977329pt;}
.y27a{bottom:671.190667pt;}
.ya9{bottom:674.977333pt;}
.y7e{bottom:675.376000pt;}
.y4a{bottom:676.397333pt;}
.y1ba{bottom:679.265333pt;}
.y244{bottom:681.752000pt;}
.y182{bottom:682.265333pt;}
.ydb{bottom:682.624000pt;}
.y130{bottom:684.405333pt;}
.y279{bottom:686.533333pt;}
.y203{bottom:687.449333pt;}
.ya8{bottom:691.714667pt;}
.y7d{bottom:692.113333pt;}
.y49{bottom:693.692000pt;}
.y1b9{bottom:696.002667pt;}
.y243{bottom:697.373333pt;}
.y278{bottom:701.876000pt;}
.y181{bottom:703.278667pt;}
.yda{bottom:703.637333pt;}
.y202{bottom:704.185333pt;}
.y12f{bottom:705.418667pt;}
.ya7{bottom:708.452000pt;}
.y7c{bottom:708.850667pt;}
.y48{bottom:710.988000pt;}
.y1b8{bottom:712.740000pt;}
.y242{bottom:712.994667pt;}
.y277{bottom:717.218667pt;}
.y201{bottom:720.922667pt;}
.y180{bottom:724.293333pt;}
.yd9{bottom:724.650667pt;}
.ya6{bottom:725.189333pt;}
.y7b{bottom:725.588000pt;}
.y12e{bottom:726.433333pt;}
.y47{bottom:728.282667pt;}
.y241{bottom:728.616000pt;}
.y179{bottom:728.690667pt;}
.y14f{bottom:729.173333pt;}
.y1b7{bottom:729.476000pt;}
.y276{bottom:732.561333pt;}
.y17b{bottom:734.622667pt;}
.y200{bottom:737.660000pt;}
.ya5{bottom:741.926667pt;}
.y7a{bottom:742.324000pt;}
.y178{bottom:743.302667pt;}
.y240{bottom:744.237333pt;}
.y17f{bottom:745.306667pt;}
.yd8{bottom:745.665333pt;}
.y1b6{bottom:746.213333pt;}
.y12d{bottom:747.446667pt;}
.y275{bottom:747.904000pt;}
.y1ff{bottom:754.397333pt;}
.ya4{bottom:758.664000pt;}
.y79{bottom:759.061333pt;}
.y46{bottom:762.581333pt;}
.y1b5{bottom:762.950667pt;}
.y274{bottom:763.246667pt;}
.y17e{bottom:766.321333pt;}
.yd7{bottom:766.678667pt;}
.y12c{bottom:768.461333pt;}
.y1fe{bottom:771.134667pt;}
.ya3{bottom:775.401333pt;}
.y78{bottom:775.798667pt;}
.y273{bottom:778.589333pt;}
.y1b4{bottom:779.688000pt;}
.y45{bottom:780.784000pt;}
.y2{bottom:781.661334pt;}
.y17d{bottom:787.334667pt;}
.yd6{bottom:787.693333pt;}
.y1fd{bottom:787.872000pt;}
.y12b{bottom:789.474667pt;}
.y44{bottom:791.273333pt;}
.ya2{bottom:792.138667pt;}
.y77{bottom:792.536000pt;}
.y272{bottom:793.930667pt;}
.y1b3{bottom:796.425333pt;}
.y1fc{bottom:804.609333pt;}
.y43{bottom:805.620000pt;}
.y17c{bottom:808.348000pt;}
.yd5{bottom:808.706667pt;}
.ya1{bottom:808.874667pt;}
.y76{bottom:809.273333pt;}
.y12a{bottom:810.489333pt;}
.y226{bottom:812.860000pt;}
.y1b2{bottom:813.162667pt;}
.y1fb{bottom:821.346667pt;}
.y42{bottom:823.824000pt;}
.y271{bottom:824.616000pt;}
.y75{bottom:826.010667pt;}
.y17a{bottom:829.362667pt;}
.ya0{bottom:829.597333pt;}
.yd4{bottom:829.721333pt;}
.y1b1{bottom:829.900000pt;}
.y129{bottom:831.502667pt;}
.y1fa{bottom:838.084000pt;}
.y270{bottom:839.958667pt;}
.y74{bottom:842.748000pt;}
.y1b0{bottom:846.637333pt;}
.y176{bottom:850.376000pt;}
.yd3{bottom:850.734667pt;}
.y128{bottom:852.517333pt;}
.y26f{bottom:855.301333pt;}
.y175{bottom:857.682667pt;}
.yd2{bottom:858.041333pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:859.485333pt;}
.y1af{bottom:863.374667pt;}
.y41{bottom:863.536000pt;}
.y177{bottom:864.988000pt;}
.y1f9{bottom:865.788000pt;}
.y26e{bottom:870.644000pt;}
.y127{bottom:873.530667pt;}
.y72{bottom:876.222667pt;}
.y1ae{bottom:880.112000pt;}
.y1f8{bottom:882.538667pt;}
.y26d{bottom:885.986667pt;}
.y71{bottom:892.960000pt;}
.y174{bottom:893.094667pt;}
.yd1{bottom:893.453333pt;}
.y126{bottom:894.545333pt;}
.y40{bottom:896.213333pt;}
.y26c{bottom:901.329333pt;}
.y1f7{bottom:903.552000pt;}
.y1ad{bottom:907.816000pt;}
.y70{bottom:909.697333pt;}
.y173{bottom:910.190667pt;}
.y125{bottom:915.558667pt;}
.y26b{bottom:916.670667pt;}
.y3f{bottom:921.320000pt;}
.y1ac{bottom:924.566667pt;}
.y6f{bottom:926.434667pt;}
.y26a{bottom:932.013333pt;}
.y6e{bottom:943.172000pt;}
.y124{bottom:943.665333pt;}
.y1ab{bottom:945.580000pt;}
.y3e{bottom:946.425333pt;}
.y269{bottom:947.356000pt;}
.y6d{bottom:959.909333pt;}
.y268{bottom:962.698667pt;}
.y1aa{bottom:966.594667pt;}
.y3d{bottom:971.530667pt;}
.y6c{bottom:976.646667pt;}
.y267{bottom:978.041333pt;}
.y6b{bottom:993.384000pt;}
.y1a9{bottom:994.700000pt;}
.y3a{bottom:1010.186667pt;}
.y6a{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h11{height:30.945242pt;}
.h1d{height:31.067969pt;}
.h15{height:31.157778pt;}
.h18{height:34.574438pt;}
.h22{height:34.798465pt;}
.h12{height:34.813542pt;}
.h25{height:35.052646pt;}
.h21{height:35.343750pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.hd{height:38.947124pt;}
.h1e{height:39.010156pt;}
.h24{height:39.349375pt;}
.h1c{height:39.359687pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h26{height:43.660390pt;}
.h1f{height:44.390625pt;}
.hb{height:45.271688pt;}
.hf{height:48.481423pt;}
.h16{height:48.511220pt;}
.h2{height:48.960000pt;}
.h20{height:49.421563pt;}
.hc{height:54.767117pt;}
.h5{height:57.120000pt;}
.h17{height:63.795772pt;}
.h1a{height:64.034876pt;}
.h19{height:64.040209pt;}
.he{height:69.148877pt;}
.h4{height:105.826671pt;}
.h23{height:188.916000pt;}
.h1b{height:417.073333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w6{width:419.314667pt;}
.w5{width:484.904000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1f{left:-176.233333pt;}
.x14{left:-101.114667pt;}
.x20{left:-2.393333pt;}
.x0{left:0.000000pt;}
.x21{left:25.926667pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x18{left:59.604833pt;}
.x16{left:72.725333pt;}
.x22{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x17{left:101.045333pt;}
.x4{left:180.874667pt;}
.x10{left:219.865333pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x12{left:229.828000pt;}
.x9{left:239.392000pt;}
.xb{left:250.204000pt;}
.x11{left:252.608000pt;}
.xc{left:299.368000pt;}
.xf{left:303.188000pt;}
.xe{left:306.176000pt;}
.x19{left:314.725507pt;}
.x1a{left:334.130667pt;}
.x13{left:376.548000pt;}
.x3{left:404.408000pt;}
.x1b{left:429.764000pt;}
.x15{left:531.205333pt;}
.x1c{left:534.533333pt;}
.xd{left:611.230667pt;}
.x1d{left:629.701333pt;}
.x1e{left:658.502667pt;}
}




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