
    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_4bdf4e51a23f9f15fceebcfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e21f8c0e5d6e0d9bb55277b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_37d251ca686743d8d84eacfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942675;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_480f4771d94fce0a0946176f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_3f08c4eff6f6849c9ffb727c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_d40bebae914334162ff24b9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_dab3c3779c18f268d435cd93.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_1a873dfd981a0c1f4bb2fc24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_070dfece50374dc480a5d0dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913768;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_f2b14b35a01e774a26e754b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911318;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_a4bae9a813811fbd7bf5c4bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_bde117c33fdf7160a57c53ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.239258;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_13c8f16089d7fec066fdeee9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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;}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m4{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245312,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,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);}
.m9{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253504,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.264662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264662,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.264678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264678,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264684,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-26.331552px;}
.v4{vertical-align:-20.160000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v1{vertical-align:18.000000px;}
.v7{vertical-align:27.564576px;}
.v8{vertical-align:32.172264px;}
.ls91{letter-spacing:-3.873720px;}
.ls67{letter-spacing:-2.795742px;}
.ls8d{letter-spacing:-2.772768px;}
.ls98{letter-spacing:-2.400000px;}
.ls8b{letter-spacing:-2.365008px;}
.ls63{letter-spacing:-2.309526px;}
.ls57{letter-spacing:-1.869696px;}
.ls6e{letter-spacing:-1.337094px;}
.ls5f{letter-spacing:-1.215540px;}
.ls8e{letter-spacing:-1.019400px;}
.ls52{letter-spacing:-0.973800px;}
.lsa0{letter-spacing:-0.960000px;}
.ls54{letter-spacing:-0.934848px;}
.ls23{letter-spacing:-0.840000px;}
.ls38{letter-spacing:-0.780000px;}
.ls33{letter-spacing:-0.720000px;}
.ls87{letter-spacing:-0.693192px;}
.ls4e{letter-spacing:-0.662184px;}
.ls10{letter-spacing:-0.660000px;}
.lsa9{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.600000px;}
.lsab{letter-spacing:-0.576000px;}
.ls6a{letter-spacing:-0.567252px;}
.ls4{letter-spacing:-0.540000px;}
.ls9f{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.480000px;}
.ls88{letter-spacing:-0.448536px;}
.ls60{letter-spacing:-0.445698px;}
.ls9e{letter-spacing:-0.432000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls69{letter-spacing:-0.405180px;}
.ls31{letter-spacing:-0.384000px;}
.ls7f{letter-spacing:-0.366984px;}
.ls2a{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.350568px;}
.lsa2{letter-spacing:-0.336000px;}
.ls5{letter-spacing:-0.312000px;}
.ls97{letter-spacing:-0.300000px;}
.lsa1{letter-spacing:-0.288000px;}
.ls86{letter-spacing:-0.285432px;}
.ls62{letter-spacing:-0.283626px;}
.ls4f{letter-spacing:-0.272664px;}
.ls9d{letter-spacing:-0.270000px;}
.ls85{letter-spacing:-0.244656px;}
.lsd{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.225600px;}
.ls3{letter-spacing:-0.216000px;}
.ls5d{letter-spacing:-0.192000px;}
.ls18{letter-spacing:-0.180000px;}
.ls84{letter-spacing:-0.163104px;}
.ls6d{letter-spacing:-0.162072px;}
.ls48{letter-spacing:-0.155808px;}
.lsac{letter-spacing:-0.144000px;}
.ls7c{letter-spacing:-0.122328px;}
.ls5e{letter-spacing:-0.121554px;}
.ls7d{letter-spacing:-0.121230px;}
.ls1b{letter-spacing:-0.120000px;}
.ls8a{letter-spacing:-0.081552px;}
.ls68{letter-spacing:-0.081036px;}
.ls51{letter-spacing:-0.077904px;}
.lsa{letter-spacing:-0.060000px;}
.ls5c{letter-spacing:-0.048000px;}
.ls8c{letter-spacing:-0.040776px;}
.ls64{letter-spacing:-0.040518px;}
.ls0{letter-spacing:0.000000px;}
.ls83{letter-spacing:0.036366px;}
.ls4d{letter-spacing:0.038952px;}
.ls44{letter-spacing:0.040518px;}
.ls70{letter-spacing:0.040776px;}
.lsaa{letter-spacing:0.048000px;}
.ls99{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.060000px;}
.ls90{letter-spacing:0.072732px;}
.ls41{letter-spacing:0.081036px;}
.ls77{letter-spacing:0.081552px;}
.lsa6{letter-spacing:0.096000px;}
.ls3a{letter-spacing:0.116856px;}
.ls17{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.121554px;}
.ls72{letter-spacing:0.122328px;}
.ls25{letter-spacing:0.139200px;}
.ls2{letter-spacing:0.162000px;}
.ls43{letter-spacing:0.162072px;}
.ls6f{letter-spacing:0.180000px;}
.lsad{letter-spacing:0.192000px;}
.ls3b{letter-spacing:0.194760px;}
.ls3d{letter-spacing:0.202590px;}
.ls59{letter-spacing:0.233712px;}
.ls1{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.243108px;}
.ls75{letter-spacing:0.244656px;}
.ls58{letter-spacing:0.272664px;}
.ls73{letter-spacing:0.285432px;}
.ls3c{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls4c{letter-spacing:0.311616px;}
.ls6b{letter-spacing:0.324144px;}
.ls80{letter-spacing:0.326208px;}
.ls5a{letter-spacing:0.350568px;}
.ls9{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.420000px;}
.ls9a{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.480000px;}
.lsa3{letter-spacing:0.528000px;}
.ls74{letter-spacing:0.530088px;}
.ls36{letter-spacing:0.540000px;}
.ls89{letter-spacing:0.570864px;}
.lsa7{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.600000px;}
.ls71{letter-spacing:0.611640px;}
.ls2d{letter-spacing:0.660000px;}
.lsa4{letter-spacing:0.672000px;}
.ls1f{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.780000px;}
.ls96{letter-spacing:0.840000px;}
.ls9b{letter-spacing:0.864000px;}
.lsa5{letter-spacing:0.912000px;}
.ls13{letter-spacing:0.960000px;}
.ls2f{letter-spacing:1.020000px;}
.ls12{letter-spacing:1.080000px;}
.ls55{letter-spacing:1.129608px;}
.ls14{letter-spacing:1.140000px;}
.ls3e{letter-spacing:1.175022px;}
.ls81{letter-spacing:1.182504px;}
.ls11{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.260000px;}
.ls7b{letter-spacing:1.320000px;}
.ls2c{letter-spacing:1.380000px;}
.ls8{letter-spacing:1.440000px;}
.ls6c{letter-spacing:1.499166px;}
.ls1c{letter-spacing:1.500000px;}
.ls95{letter-spacing:1.560000px;}
.lse{letter-spacing:1.620000px;}
.ls37{letter-spacing:1.680000px;}
.ls82{letter-spacing:1.753368px;}
.ls1e{letter-spacing:1.800000px;}
.ls7{letter-spacing:1.860000px;}
.ls24{letter-spacing:1.920000px;}
.ls7a{letter-spacing:1.980000px;}
.ls19{letter-spacing:2.040000px;}
.lsc{letter-spacing:2.100000px;}
.ls92{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.220000px;}
.ls9c{letter-spacing:2.280000px;}
.ls21{letter-spacing:2.340000px;}
.lsa8{letter-spacing:2.376000px;}
.ls27{letter-spacing:2.460000px;}
.ls66{letter-spacing:2.512116px;}
.ls8f{letter-spacing:2.609664px;}
.ls4b{letter-spacing:2.609784px;}
.ls35{letter-spacing:2.640000px;}
.ls7e{letter-spacing:2.731992px;}
.ls93{letter-spacing:2.760000px;}
.ls94{letter-spacing:2.880000px;}
.ls61{letter-spacing:3.079368px;}
.ls22{letter-spacing:3.180000px;}
.ls1a{letter-spacing:3.480000px;}
.ls30{letter-spacing:3.540000px;}
.ls34{letter-spacing:3.660000px;}
.ls2e{letter-spacing:3.720000px;}
.ls4a{letter-spacing:4.394772px;}
.ls65{letter-spacing:5.348376px;}
.ls76{letter-spacing:9.827016px;}
.ls53{letter-spacing:144.940392px;}
.ls5b{letter-spacing:160.599096px;}
.ls40{letter-spacing:165.151368px;}
.ls42{letter-spacing:170.297154px;}
.ls39{letter-spacing:180.075096px;}
.ls79{letter-spacing:212.728392px;}
.ls46{letter-spacing:228.197376px;}
.ls56{letter-spacing:333.779688px;}
.ls50{letter-spacing:535.823712px;}
.ls78{letter-spacing:605.115840px;}
.ls45{letter-spacing:1017.042318px;}
.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;}
}
.ws9e{word-spacing:-122.036616px;}
.ws9d{word-spacing:-36.108504px;}
.ws0{word-spacing:-18.984000px;}
.wsa3{word-spacing:-15.477876px;}
.ws4{word-spacing:-15.000000px;}
.ws53{word-spacing:-14.460000px;}
.ws149{word-spacing:-13.500000px;}
.wsf4{word-spacing:-12.803664px;}
.ws2{word-spacing:-12.000000px;}
.wsf1{word-spacing:-11.947368px;}
.ws9b{word-spacing:-10.973772px;}
.wsa6{word-spacing:-10.372608px;}
.wsa0{word-spacing:-10.332090px;}
.wsa2{word-spacing:-10.291572px;}
.ws9f{word-spacing:-10.251054px;}
.wsf2{word-spacing:-10.234776px;}
.wsa5{word-spacing:-10.210536px;}
.wsf3{word-spacing:-10.194000px;}
.wsaa{word-spacing:-10.088982px;}
.wsa7{word-spacing:-10.048464px;}
.wsa1{word-spacing:-10.007946px;}
.wsab{word-spacing:-9.967428px;}
.wsac{word-spacing:-9.724320px;}
.wsa4{word-spacing:-9.683802px;}
.ws99{word-spacing:-9.582192px;}
.ws52{word-spacing:-8.839200px;}
.ws54{word-spacing:-8.700000px;}
.ws3{word-spacing:-7.800000px;}
.ws5{word-spacing:-7.050000px;}
.ws80{word-spacing:-6.824400px;}
.wsef{word-spacing:-5.940270px;}
.wsd0{word-spacing:-5.794074px;}
.wscd{word-spacing:-5.510448px;}
.wsc2{word-spacing:-3.930246px;}
.wsde{word-spacing:-3.889728px;}
.ws1b{word-spacing:-3.780000px;}
.wse8{word-spacing:-3.768174px;}
.wscc{word-spacing:-3.727656px;}
.ws1d{word-spacing:-3.720000px;}
.ws1f{word-spacing:-3.660000px;}
.ws27{word-spacing:-3.600000px;}
.ws32{word-spacing:-3.540000px;}
.ws4c{word-spacing:-3.480000px;}
.ws12c{word-spacing:-3.420000px;}
.ws13{word-spacing:-3.402000px;}
.ws5f{word-spacing:-3.360000px;}
.ws12{word-spacing:-3.348000px;}
.ws24{word-spacing:-3.300000px;}
.ws159{word-spacing:-3.132000px;}
.ws136{word-spacing:-3.120000px;}
.wsd1{word-spacing:-3.079368px;}
.ws162{word-spacing:-3.078000px;}
.ws125{word-spacing:-3.060000px;}
.ws167{word-spacing:-3.024000px;}
.ws6f{word-spacing:-3.000000px;}
.ws110{word-spacing:-2.976648px;}
.ws82{word-spacing:-2.976000px;}
.wsfa{word-spacing:-2.940000px;}
.wsb6{word-spacing:-2.921400px;}
.ws35{word-spacing:-2.880000px;}
.ws154{word-spacing:-2.862000px;}
.ws89{word-spacing:-2.820000px;}
.wsc8{word-spacing:-2.714706px;}
.ws29{word-spacing:-2.700000px;}
.ws6e{word-spacing:-2.640000px;}
.ws164{word-spacing:-2.592000px;}
.ws79{word-spacing:-2.580000px;}
.wsce{word-spacing:-2.471598px;}
.ws56{word-spacing:-2.460000px;}
.ws184{word-spacing:-2.376000px;}
.ws145{word-spacing:-2.340000px;}
.ws1c{word-spacing:-2.280000px;}
.ws160{word-spacing:-2.268000px;}
.ws6a{word-spacing:-2.220000px;}
.ws16b{word-spacing:-2.208000px;}
.ws46{word-spacing:-2.160000px;}
.ws3c{word-spacing:-2.157600px;}
.ws83{word-spacing:-2.112000px;}
.ws2b{word-spacing:-2.100000px;}
.ws179{word-spacing:-2.064000px;}
.ws141{word-spacing:-2.040000px;}
.ws170{word-spacing:-2.016000px;}
.ws14{word-spacing:-1.965600px;}
.ws17{word-spacing:-1.944000px;}
.ws178{word-spacing:-1.920000px;}
.ws10a{word-spacing:-1.916472px;}
.ws2a{word-spacing:-1.860000px;}
.ws15d{word-spacing:-1.836000px;}
.ws3d{word-spacing:-1.800000px;}
.ws15a{word-spacing:-1.782000px;}
.ws163{word-spacing:-1.778400px;}
.wsff{word-spacing:-1.740000px;}
.ws126{word-spacing:-1.680000px;}
.ws166{word-spacing:-1.674000px;}
.ws25{word-spacing:-1.620000px;}
.ws175{word-spacing:-1.584000px;}
.ws71{word-spacing:-1.560000px;}
.ws17d{word-spacing:-1.536000px;}
.ws5d{word-spacing:-1.500000px;}
.ws7a{word-spacing:-1.496400px;}
.ws181{word-spacing:-1.488000px;}
.wse9{word-spacing:-1.458648px;}
.ws161{word-spacing:-1.458000px;}
.wsbf{word-spacing:-1.440000px;}
.ws17e{word-spacing:-1.344000px;}
.ws132{word-spacing:-1.320000px;}
.ws1a{word-spacing:-1.296000px;}
.ws33{word-spacing:-1.260000px;}
.ws60{word-spacing:-1.200000px;}
.ws3e{word-spacing:-1.140000px;}
.ws18{word-spacing:-1.123200px;}
.wsca{word-spacing:-1.093986px;}
.ws5e{word-spacing:-1.080000px;}
.wsd2{word-spacing:-1.053468px;}
.ws3b{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.987000px;}
.ws171{word-spacing:-0.960000px;}
.wsd9{word-spacing:-0.931914px;}
.wsaf{word-spacing:-0.900000px;}
.wsb1{word-spacing:-0.895896px;}
.wsa{word-spacing:-0.864000px;}
.ws68{word-spacing:-0.840000px;}
.wse6{word-spacing:-0.810360px;}
.wsb{word-spacing:-0.810000px;}
.ws26{word-spacing:-0.780000px;}
.wsd6{word-spacing:-0.769842px;}
.wse1{word-spacing:-0.729324px;}
.ws98{word-spacing:-0.720000px;}
.ws106{word-spacing:-0.693192px;}
.wse4{word-spacing:-0.688806px;}
.ws3f{word-spacing:-0.661200px;}
.ws5c{word-spacing:-0.660000px;}
.wsed{word-spacing:-0.648288px;}
.ws158{word-spacing:-0.648000px;}
.ws169{word-spacing:-0.624000px;}
.wse7{word-spacing:-0.607770px;}
.wseb{word-spacing:-0.567252px;}
.ws5b{word-spacing:-0.540000px;}
.ws108{word-spacing:-0.489312px;}
.ws11{word-spacing:-0.486000px;}
.ws20{word-spacing:-0.480000px;}
.wsb9{word-spacing:-0.428472px;}
.ws134{word-spacing:-0.420000px;}
.wscb{word-spacing:-0.405180px;}
.ws16c{word-spacing:-0.384000px;}
.ws11f{word-spacing:-0.366984px;}
.wsdc{word-spacing:-0.364662px;}
.ws8a{word-spacing:-0.360000px;}
.wse0{word-spacing:-0.324144px;}
.ws5a{word-spacing:-0.300000px;}
.wsc4{word-spacing:-0.283626px;}
.ws31{word-spacing:-0.240000px;}
.ws42{word-spacing:-0.180000px;}
.ws120{word-spacing:-0.163104px;}
.wse3{word-spacing:-0.162072px;}
.ws173{word-spacing:-0.144000px;}
.ws11c{word-spacing:-0.122328px;}
.wsda{word-spacing:-0.121554px;}
.ws114{word-spacing:-0.081552px;}
.wsc5{word-spacing:-0.081036px;}
.ws45{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws16d{word-spacing:-0.048000px;}
.ws116{word-spacing:-0.040776px;}
.wsc0{word-spacing:-0.040518px;}
.ws1{word-spacing:0.000000px;}
.ws13e{word-spacing:0.034800px;}
.ws122{word-spacing:0.036366px;}
.wse5{word-spacing:0.040518px;}
.ws107{word-spacing:0.040776px;}
.ws6{word-spacing:0.048000px;}
.ws14f{word-spacing:0.054000px;}
.ws4e{word-spacing:0.060000px;}
.wsb2{word-spacing:0.077904px;}
.wsdd{word-spacing:0.081036px;}
.ws113{word-spacing:0.081552px;}
.ws17a{word-spacing:0.096000px;}
.ws185{word-spacing:0.108000px;}
.ws102{word-spacing:0.120000px;}
.wsc9{word-spacing:0.121554px;}
.ws112{word-spacing:0.145464px;}
.ws183{word-spacing:0.162000px;}
.wscf{word-spacing:0.162072px;}
.ws10d{word-spacing:0.163104px;}
.ws7{word-spacing:0.192000px;}
.wsd5{word-spacing:0.202590px;}
.ws124{word-spacing:0.203880px;}
.ws157{word-spacing:0.216000px;}
.wsc3{word-spacing:0.243108px;}
.wsee{word-spacing:0.283626px;}
.ws72{word-spacing:0.300000px;}
.ws17f{word-spacing:0.336000px;}
.wsf5{word-spacing:0.407760px;}
.ws142{word-spacing:0.420000px;}
.wsdf{word-spacing:0.445698px;}
.ws10f{word-spacing:0.448536px;}
.ws81{word-spacing:0.480000px;}
.wsec{word-spacing:0.486216px;}
.wsd8{word-spacing:0.526734px;}
.ws10b{word-spacing:0.530088px;}
.wsea{word-spacing:0.567252px;}
.ws10e{word-spacing:0.570864px;}
.ws63{word-spacing:0.600000px;}
.wse2{word-spacing:0.607770px;}
.ws109{word-spacing:0.611640px;}
.ws12e{word-spacing:0.660000px;}
.ws48{word-spacing:0.720000px;}
.ws118{word-spacing:0.815520px;}
.ws2d{word-spacing:0.840000px;}
.ws15{word-spacing:0.864000px;}
.ws15c{word-spacing:0.873600px;}
.wsae{word-spacing:0.900000px;}
.ws119{word-spacing:0.937848px;}
.ws70{word-spacing:0.960000px;}
.wsf{word-spacing:0.972000px;}
.wsc6{word-spacing:0.972432px;}
.ws11a{word-spacing:0.978624px;}
.ws16f{word-spacing:1.008000px;}
.wsad{word-spacing:1.020000px;}
.wsb4{word-spacing:1.051704px;}
.wsba{word-spacing:1.129608px;}
.ws117{word-spacing:1.182504px;}
.ws100{word-spacing:1.200000px;}
.wsb8{word-spacing:1.207512px;}
.ws15f{word-spacing:1.242000px;}
.wsb7{word-spacing:1.246464px;}
.ws182{word-spacing:1.248000px;}
.ws13d{word-spacing:1.260000px;}
.ws11e{word-spacing:1.264056px;}
.ws16{word-spacing:1.296000px;}
.ws111{word-spacing:1.304832px;}
.ws143{word-spacing:1.320000px;}
.ws105{word-spacing:1.344000px;}
.ws13f{word-spacing:1.380000px;}
.ws6d{word-spacing:1.440000px;}
.ws43{word-spacing:1.500000px;}
.ws15b{word-spacing:1.512000px;}
.ws75{word-spacing:1.560000px;}
.wsdb{word-spacing:1.580202px;}
.wsb5{word-spacing:1.597032px;}
.ws86{word-spacing:1.740000px;}
.ws74{word-spacing:1.800000px;}
.ws155{word-spacing:1.836000px;}
.ws135{word-spacing:1.860000px;}
.ws7b{word-spacing:1.920000px;}
.ws6b{word-spacing:1.980000px;}
.ws153{word-spacing:1.998000px;}
.ws115{word-spacing:2.038800px;}
.ws12a{word-spacing:2.088000px;}
.ws8b{word-spacing:2.100000px;}
.ws174{word-spacing:2.112000px;}
.ws37{word-spacing:2.160000px;}
.ws17c{word-spacing:2.256000px;}
.wsbb{word-spacing:2.259216px;}
.ws97{word-spacing:2.280000px;}
.ws150{word-spacing:2.322000px;}
.ws66{word-spacing:2.340000px;}
.ws172{word-spacing:2.352000px;}
.ws28{word-spacing:2.400000px;}
.ws104{word-spacing:2.453400px;}
.ws73{word-spacing:2.460000px;}
.wsfd{word-spacing:2.520000px;}
.ws85{word-spacing:2.544000px;}
.ws121{word-spacing:2.568888px;}
.ws12d{word-spacing:2.580000px;}
.ws148{word-spacing:2.640000px;}
.ws12b{word-spacing:2.700000px;}
.ws65{word-spacing:2.760000px;}
.ws168{word-spacing:2.808000px;}
.ws7d{word-spacing:2.820000px;}
.ws69{word-spacing:2.880000px;}
.ws47{word-spacing:2.940000px;}
.ws176{word-spacing:2.976000px;}
.ws11b{word-spacing:3.017424px;}
.ws8d{word-spacing:3.060000px;}
.wsd7{word-spacing:3.119886px;}
.ws76{word-spacing:3.120000px;}
.wsbd{word-spacing:3.155112px;}
.wsc7{word-spacing:3.160404px;}
.ws41{word-spacing:3.180000px;}
.wsbc{word-spacing:3.194064px;}
.ws4b{word-spacing:3.201600px;}
.ws14c{word-spacing:3.240000px;}
.ws78{word-spacing:3.300000px;}
.ws128{word-spacing:3.340800px;}
.wsc{word-spacing:3.348000px;}
.ws12f{word-spacing:3.360000px;}
.ws152{word-spacing:3.402000px;}
.wsbe{word-spacing:3.408000px;}
.wsb3{word-spacing:3.427776px;}
.ws55{word-spacing:3.480000px;}
.ws165{word-spacing:3.510000px;}
.ws10c{word-spacing:3.547512px;}
.ws129{word-spacing:3.600000px;}
.ws44{word-spacing:3.660000px;}
.ws77{word-spacing:3.720000px;}
.ws36{word-spacing:3.840000px;}
.ws127{word-spacing:3.900000px;}
.ws39{word-spacing:3.967200px;}
.ws2f{word-spacing:4.020000px;}
.ws177{word-spacing:4.032000px;}
.wsd4{word-spacing:4.051800px;}
.ws11d{word-spacing:4.118376px;}
.wsf8{word-spacing:4.140000px;}
.ws103{word-spacing:4.176000px;}
.ws14a{word-spacing:4.200000px;}
.wsc1{word-spacing:4.213872px;}
.ws58{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws19{word-spacing:4.374000px;}
.ws16a{word-spacing:4.416000px;}
.wsd3{word-spacing:4.416462px;}
.ws146{word-spacing:4.440000px;}
.ws1e{word-spacing:4.500000px;}
.wsfb{word-spacing:4.560000px;}
.ws13b{word-spacing:4.620000px;}
.ws40{word-spacing:4.680000px;}
.ws57{word-spacing:4.740000px;}
.ws138{word-spacing:4.800000px;}
.ws4d{word-spacing:4.860000px;}
.ws17b{word-spacing:4.896000px;}
.ws101{word-spacing:4.980000px;}
.ws156{word-spacing:5.022000px;}
.ws6c{word-spacing:5.100000px;}
.ws59{word-spacing:5.160000px;}
.ws123{word-spacing:5.219328px;}
.ws14d{word-spacing:5.220000px;}
.ws50{word-spacing:5.280000px;}
.ws10{word-spacing:5.346000px;}
.ws96{word-spacing:5.400000px;}
.ws16e{word-spacing:5.424000px;}
.ws4a{word-spacing:5.520000px;}
.ws7c{word-spacing:5.580000px;}
.ws151{word-spacing:5.616000px;}
.ws8c{word-spacing:5.640000px;}
.ws13a{word-spacing:5.700000px;}
.ws49{word-spacing:5.760000px;}
.ws180{word-spacing:5.808000px;}
.ws2e{word-spacing:5.820000px;}
.ws84{word-spacing:5.856000px;}
.ws67{word-spacing:5.880000px;}
.ws131{word-spacing:5.940000px;}
.ws3a{word-spacing:6.000000px;}
.wse{word-spacing:6.048000px;}
.ws21{word-spacing:6.060000px;}
.ws147{word-spacing:6.240000px;}
.wsf7{word-spacing:6.300000px;}
.ws14e{word-spacing:6.318000px;}
.ws4f{word-spacing:6.360000px;}
.ws61{word-spacing:6.420000px;}
.ws34{word-spacing:6.480000px;}
.ws13c{word-spacing:6.540000px;}
.ws140{word-spacing:6.600000px;}
.ws30{word-spacing:6.660000px;}
.ws15e{word-spacing:6.750000px;}
.wsf9{word-spacing:6.780000px;}
.ws38{word-spacing:6.840000px;}
.ws51{word-spacing:6.900000px;}
.ws64{word-spacing:7.020000px;}
.wsf6{word-spacing:7.080000px;}
.wsfc{word-spacing:7.140000px;}
.ws7e{word-spacing:7.200000px;}
.ws144{word-spacing:7.260000px;}
.wsb0{word-spacing:7.320000px;}
.ws7f{word-spacing:7.380000px;}
.ws23{word-spacing:7.440000px;}
.ws22{word-spacing:7.500000px;}
.ws88{word-spacing:8.820000px;}
.ws95{word-spacing:9.180000px;}
.ws14b{word-spacing:10.680000px;}
.ws139{word-spacing:11.520000px;}
.ws130{word-spacing:13.020000px;}
.ws137{word-spacing:13.440000px;}
.wsfe{word-spacing:13.500000px;}
.ws8e{word-spacing:14.520000px;}
.ws91{word-spacing:14.820000px;}
.ws8f{word-spacing:17.760000px;}
.ws87{word-spacing:21.240000px;}
.ws133{word-spacing:26.460000px;}
.ws9{word-spacing:30.000000px;}
.ws92{word-spacing:45.420000px;}
.ws90{word-spacing:46.800000px;}
.ws8{word-spacing:48.000000px;}
.ws9c{word-spacing:57.804768px;}
.ws9a{word-spacing:61.622064px;}
.ws93{word-spacing:135.060000px;}
.ws94{word-spacing:196.680000px;}
.wsf0{word-spacing:308.674320px;}
.wsa9{word-spacing:1485.876096px;}
.wsa8{word-spacing:1741.990374px;}
._4c{margin-left:-2765.958432px;}
._4b{margin-left:-1885.248582px;}
._4{margin-left:-53.184000px;}
._6{margin-left:-30.000000px;}
._b{margin-left:-10.800000px;}
._c{margin-left:-9.060000px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-6.240000px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.078000px;}
._1{margin-left:-1.996800px;}
._7{width:1.762800px;}
._9{width:3.462000px;}
._0{width:5.587200px;}
._a{width:7.500000px;}
._3a{width:8.764200px;}
._d{width:13.980000px;}
._39{width:17.567352px;}
._35{width:26.331552px;}
._36{width:39.536280px;}
._37{width:57.103632px;}
._38{width:61.466256px;}
._11{width:75.809664px;}
._12{width:77.153952px;}
._13{width:82.139808px;}
._10{width:84.399024px;}
._f{width:88.761648px;}
._49{width:108.039612px;}
._4d{width:116.943750px;}
._46{width:149.582634px;}
._19{width:158.106168px;}
._47{width:164.359632px;}
._33{width:179.802432px;}
._15{width:193.240872px;}
._21{width:210.467616px;}
._4f{width:215.410176px;}
._4a{width:241.836282px;}
._3d{width:252.082470px;}
._42{width:277.586058px;}
._41{width:282.723846px;}
._3f{width:291.162348px;}
._44{width:297.827808px;}
._3e{width:305.788812px;}
._50{width:318.501336px;}
._2b{width:331.789272px;}
._34{width:333.507024px;}
._1e{width:338.576088px;}
._1f{width:342.266280px;}
._40{width:348.594552px;}
._43{width:359.293614px;}
._1c{width:368.290560px;}
._29{width:376.906344px;}
._e{width:386.861880px;}
._18{width:388.016208px;}
._23{width:391.156632px;}
._4e{width:405.359112px;}
._48{width:410.770950px;}
._32{width:443.312712px;}
._3c{width:455.501988px;}
._3b{width:513.082398px;}
._28{width:535.823712px;}
._30{width:560.629800px;}
._24{width:582.994584px;}
._2d{width:622.446072px;}
._31{width:662.924088px;}
._27{width:681.104712px;}
._16{width:689.528304px;}
._17{width:759.797712px;}
._14{width:805.299456px;}
._2f{width:1005.361656px;}
._26{width:1011.394488px;}
._54{width:1025.349048px;}
._52{width:1100.166936px;}
._53{width:1104.309960px;}
._51{width:1161.717672px;}
._25{width:1236.599184px;}
._22{width:1238.517792px;}
._45{width:1333.217976px;}
._1a{width:1339.520328px;}
._2c{width:1519.361712px;}
._2e{width:1686.232080px;}
._2a{width:1722.496392px;}
._1d{width:1911.452544px;}
._1b{width:1936.896552px;}
._20{width:2078.245008px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:24.246000px;}
.fsc{font-size:26.316000px;}
.fs8{font-size:28.200000px;}
.fs7{font-size:31.200000px;}
.fs9{font-size:34.800000px;}
.fsa{font-size:36.000000px;}
.fs10{font-size:36.366000px;}
.fsb{font-size:38.952000px;}
.fsd{font-size:40.518000px;}
.fse{font-size:40.776000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y10f{bottom:-0.141000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:2.449500px;}
.yc{bottom:8.040000px;}
.yf0{bottom:12.669000px;}
.yee{bottom:19.071249px;}
.yed{bottom:33.141125px;}
.yec{bottom:47.211000px;}
.y1c{bottom:52.725000px;}
.y158{bottom:75.405000px;}
.ye8{bottom:76.639749px;}
.y15{bottom:77.715000px;}
.yc4{bottom:80.445000px;}
.y82{bottom:81.075000px;}
.y81{bottom:81.705000px;}
.y99{bottom:81.795000px;}
.ya5{bottom:83.415000px;}
.y19a{bottom:84.225000px;}
.y4e{bottom:84.495000px;}
.y157{bottom:89.805000px;}
.ye7{bottom:90.709624px;}
.y1a{bottom:91.590000px;}
.yc3{bottom:94.845000px;}
.y11e{bottom:96.195000px;}
.ya4{bottom:97.815000px;}
.y199{bottom:98.625000px;}
.y4d{bottom:98.895000px;}
.y80{bottom:99.705000px;}
.y14{bottom:99.795000px;}
.y156{bottom:104.205000px;}
.ye6{bottom:104.779500px;}
.yc2{bottom:109.245000px;}
.ya3{bottom:112.215000px;}
.y11d{bottom:112.395000px;}
.y198{bottom:113.025000px;}
.y4c{bottom:113.295000px;}
.y19{bottom:113.670000px;}
.y7f{bottom:117.705000px;}
.y98{bottom:117.795000px;}
.y155{bottom:118.605000px;}
.ya2{bottom:126.615000px;}
.y197{bottom:127.425000px;}
.y4b{bottom:127.695000px;}
.yc5{bottom:128.415000px;}
.y11c{bottom:128.595000px;}
.y113{bottom:129.252000px;}
.y154{bottom:133.005000px;}
.yef{bottom:133.408500px;}
.y10{bottom:133.935000px;}
.ye3{bottom:134.205000px;}
.y7e{bottom:135.705000px;}
.y18{bottom:135.750000px;}
.y97{bottom:135.795000px;}
.ye4{bottom:140.596715px;}
.ya1{bottom:141.015000px;}
.y196{bottom:141.825000px;}
.y11b{bottom:144.795000px;}
.y153{bottom:147.405000px;}
.y7d{bottom:153.705000px;}
.y96{bottom:153.795000px;}
.y16{bottom:154.950000px;}
.ya0{bottom:155.415000px;}
.yf{bottom:156.015000px;}
.y195{bottom:156.225000px;}
.y17{bottom:157.830000px;}
.y49{bottom:159.915000px;}
.y152{bottom:161.805000px;}
.ye1{bottom:162.366291px;}
.y112{bottom:164.847000px;}
.y111{bottom:164.849340px;}
.y9f{bottom:169.815000px;}
.y194{bottom:170.625000px;}
.y7c{bottom:171.705000px;}
.y9d{bottom:171.795000px;}
.y151{bottom:176.205000px;}
.y11a{bottom:177.195000px;}
.y48{bottom:177.915000px;}
.ye0{bottom:184.104198px;}
.y193{bottom:185.025000px;}
.y110{bottom:186.664500px;}
.y10e{bottom:186.805500px;}
.yea{bottom:187.249500px;}
.ye9{bottom:189.699000px;}
.y9c{bottom:189.795000px;}
.y150{bottom:190.605000px;}
.ydf{bottom:191.782359px;}
.y119{bottom:193.395000px;}
.y47{bottom:195.915000px;}
.y192{bottom:199.425000px;}
.y10d{bottom:201.595026px;}
.y14f{bottom:205.005000px;}
.yde{bottom:205.852234px;}
.y7b{bottom:207.705000px;}
.y95{bottom:207.795000px;}
.y118{bottom:209.595000px;}
.y191{bottom:213.825000px;}
.y46{bottom:213.915000px;}
.y10c{bottom:216.519042px;}
.y14e{bottom:219.405000px;}
.ydc{bottom:221.208556px;}
.y7a{bottom:225.705000px;}
.y9b{bottom:225.795000px;}
.ydd{bottom:227.600271px;}
.y190{bottom:228.225000px;}
.y10b{bottom:230.301330px;}
.y45{bottom:231.915000px;}
.y14d{bottom:233.805000px;}
.y116{bottom:238.845000px;}
.y106{bottom:239.475930px;}
.y117{bottom:241.995000px;}
.y18f{bottom:242.625000px;}
.y79{bottom:243.705000px;}
.y94{bottom:243.795000px;}
.y10a{bottom:245.225346px;}
.y14c{bottom:248.205000px;}
.ye5{bottom:248.547000px;}
.ydb{bottom:249.348308px;}
.y4a{bottom:249.915000px;}
.y18e{bottom:257.025000px;}
.y109{bottom:260.149362px;}
.y78{bottom:261.705000px;}
.y93{bottom:261.795000px;}
.y14b{bottom:262.605000px;}
.yda{bottom:264.694500px;}
.y44{bottom:267.915000px;}
.yd8{bottom:271.089339px;}
.y18d{bottom:271.425000px;}
.y108{bottom:275.073378px;}
.ye2{bottom:276.691500px;}
.y14a{bottom:277.005000px;}
.yd7{bottom:278.767500px;}
.yd5{bottom:278.776764px;}
.y92{bottom:279.795000px;}
.y18c{bottom:285.825000px;}
.y43{bottom:285.915000px;}
.y107{bottom:289.997394px;}
.y149{bottom:291.405000px;}
.y91{bottom:297.795000px;}
.yd4{bottom:299.238354px;}
.y18b{bottom:300.225000px;}
.y42{bottom:303.915000px;}
.y148{bottom:305.805000px;}
.yd3{bottom:306.916515px;}
.y105{bottom:314.116398px;}
.y18a{bottom:314.625000px;}
.y77{bottom:315.705000px;}
.y90{bottom:315.795000px;}
.y147{bottom:320.205000px;}
.y41{bottom:321.915000px;}
.yd2{bottom:328.664552px;}
.y189{bottom:329.025000px;}
.y8f{bottom:333.795000px;}
.y146{bottom:334.605000px;}
.yd1{bottom:336.342712px;}
.y40{bottom:339.915000px;}
.y104{bottom:340.529052px;}
.y188{bottom:343.425000px;}
.ya{bottom:344.680500px;}
.y145{bottom:349.005000px;}
.y8e{bottom:351.795000px;}
.y102{bottom:354.311340px;}
.y103{bottom:355.453068px;}
.yd0{bottom:356.804303px;}
.y187{bottom:357.825000px;}
.y3f{bottom:357.915000px;}
.y144{bottom:363.405000px;}
.ycf{bottom:364.482463px;}
.y101{bottom:369.235356px;}
.y76{bottom:369.705000px;}
.y8d{bottom:369.795000px;}
.y186{bottom:372.225000px;}
.y3e{bottom:375.915000px;}
.y143{bottom:377.805000px;}
.y75{bottom:382.665000px;}
.y100{bottom:384.159372px;}
.yce{bottom:386.230500px;}
.yd{bottom:386.490000px;}
.y185{bottom:386.625000px;}
.y74{bottom:387.705000px;}
.y8c{bottom:387.795000px;}
.y142{bottom:392.205000px;}
.yd9{bottom:393.109500px;}
.y3d{bottom:393.915000px;}
.ycc{bottom:393.917056px;}
.y9{bottom:395.689500px;}
.yfe{bottom:397.941660px;}
.y184{bottom:401.025000px;}
.y73{bottom:405.705000px;}
.y8b{bottom:405.795000px;}
.y141{bottom:406.605000px;}
.yd6{bottom:407.182500px;}
.ycb{bottom:407.986932px;}
.y3c{bottom:411.915000px;}
.yff{bottom:412.865676px;}
.y183{bottom:415.425000px;}
.y140{bottom:421.005000px;}
.yca{bottom:422.056807px;}
.yc9{bottom:423.333125px;}
.y72{bottom:423.705000px;}
.y8a{bottom:423.795000px;}
.y182{bottom:429.825000px;}
.y3b{bottom:429.915000px;}
.yfd{bottom:430.093536px;}
.yb{bottom:434.850000px;}
.y13f{bottom:435.405000px;}
.yfc{bottom:436.974486px;}
.yc8{bottom:437.403000px;}
.y71{bottom:441.705000px;}
.y89{bottom:441.795000px;}
.y181{bottom:444.225000px;}
.y8{bottom:446.698500px;}
.y13e{bottom:449.805000px;}
.yc6{bottom:454.035000px;}
.y180{bottom:458.625000px;}
.y70{bottom:459.705000px;}
.y88{bottom:459.795000px;}
.y1a8{bottom:462.864000px;}
.y13d{bottom:464.205000px;}
.yf8{bottom:465.687660px;}
.yf9{bottom:465.688500px;}
.yfb{bottom:466.832712px;}
.y17f{bottom:473.025000px;}
.yf7{bottom:473.720532px;}
.y6f{bottom:477.705000px;}
.y87{bottom:477.795000px;}
.y13c{bottom:478.605000px;}
.y1a7{bottom:479.064000px;}
.yfa{bottom:480.615000px;}
.y3a{bottom:483.915000px;}
.y17e{bottom:487.425000px;}
.y11{bottom:488.055000px;}
.y1a6{bottom:495.264000px;}
.y6e{bottom:495.705000px;}
.y9a{bottom:495.795000px;}
.y7{bottom:497.707500px;}
.yf6{bottom:501.285108px;}
.y17d{bottom:501.825000px;}
.y1a5{bottom:511.464000px;}
.y86{bottom:513.795000px;}
.yf4{bottom:516.209124px;}
.y17c{bottom:516.225000px;}
.ycd{bottom:522.321000px;}
.y13b{bottom:526.395000px;}
.y1a4{bottom:527.664000px;}
.y39{bottom:529.275000px;}
.y17b{bottom:530.625000px;}
.yf5{bottom:531.133140px;}
.y6d{bottom:531.705000px;}
.y85{bottom:531.795000px;}
.y38{bottom:533.775000px;}
.y12{bottom:538.230000px;}
.y6a{bottom:544.845000px;}
.y17a{bottom:545.025000px;}
.yf3{bottom:546.066000px;}
.yf2{bottom:548.361000px;}
.y6{bottom:548.716500px;}
.y69{bottom:549.795000px;}
.y179{bottom:559.425000px;}
.y1a3{bottom:562.399500px;}
.yc7{bottom:565.818000px;}
.y37{bottom:566.175000px;}
.y68{bottom:567.795000px;}
.yf1{bottom:570.495000px;}
.y178{bottom:573.825000px;}
.y1a2{bottom:579.855000px;}
.y13a{bottom:580.399500px;}
.y36{bottom:582.375000px;}
.y67{bottom:585.795000px;}
.y177{bottom:588.225000px;}
.y1b{bottom:589.605000px;}
.y1a1{bottom:596.055000px;}
.y139{bottom:597.855000px;}
.y35{bottom:598.575000px;}
.y115{bottom:598.755000px;}
.y5{bottom:599.725500px;}
.yc1{bottom:601.455000px;}
.y176{bottom:602.625000px;}
.y66{bottom:603.795000px;}
.y34{bottom:610.275000px;}
.y1a0{bottom:612.255000px;}
.y33{bottom:614.775000px;}
.y65{bottom:616.755000px;}
.y175{bottom:617.025000px;}
.y64{bottom:621.795000px;}
.y19f{bottom:628.455000px;}
.y138{bottom:630.255000px;}
.y32{bottom:630.975000px;}
.y174{bottom:631.425000px;}
.ye{bottom:631.920000px;}
.y63{bottom:639.795000px;}
.yaa{bottom:643.845000px;}
.y19e{bottom:644.655000px;}
.y173{bottom:645.825000px;}
.y137{bottom:646.455000px;}
.y31{bottom:647.175000px;}
.y62{bottom:657.795000px;}
.y30{bottom:658.875000px;}
.y172{bottom:660.225000px;}
.y19d{bottom:660.855000px;}
.ya9{bottom:661.845000px;}
.y136{bottom:662.655000px;}
.y2f{bottom:663.375000px;}
.y114{bottom:670.755000px;}
.y171{bottom:674.625000px;}
.y61{bottom:675.795000px;}
.y19c{bottom:677.055000px;}
.y135{bottom:678.855000px;}
.y2e{bottom:679.575000px;}
.ya8{bottom:679.845000px;}
.y170{bottom:689.025000px;}
.y60{bottom:693.795000px;}
.y134{bottom:695.055000px;}
.y2d{bottom:695.775000px;}
.ya7{bottom:697.845000px;}
.y16f{bottom:703.425000px;}
.y133{bottom:711.255000px;}
.y5f{bottom:711.795000px;}
.y2c{bottom:711.975000px;}
.ya6{bottom:715.845000px;}
.y16e{bottom:717.825000px;}
.y132{bottom:727.455000px;}
.y2b{bottom:728.175000px;}
.y19b{bottom:729.789000px;}
.y5e{bottom:729.795000px;}
.y16d{bottom:732.225000px;}
.y131{bottom:743.655000px;}
.y2a{bottom:744.375000px;}
.y16c{bottom:746.625000px;}
.y5d{bottom:747.795000px;}
.y130{bottom:759.855000px;}
.y16b{bottom:761.025000px;}
.yc0{bottom:761.745000px;}
.y5c{bottom:765.795000px;}
.y12f{bottom:771.555000px;}
.y16a{bottom:775.425000px;}
.y12e{bottom:776.055000px;}
.ybf{bottom:776.145000px;}
.y29{bottom:776.775000px;}
.y4{bottom:778.225500px;}
.y5b{bottom:783.795000px;}
.y169{bottom:789.825000px;}
.ybe{bottom:790.545000px;}
.y12d{bottom:792.255000px;}
.y28{bottom:792.975000px;}
.y5a{bottom:801.795000px;}
.y168{bottom:804.225000px;}
.y12c{bottom:808.455000px;}
.y27{bottom:809.175000px;}
.ybd{bottom:811.903302px;}
.y13{bottom:815.670000px;}
.y167{bottom:818.625000px;}
.y59{bottom:819.795000px;}
.ybc{bottom:822.878028px;}
.y12b{bottom:824.655000px;}
.y166{bottom:833.025000px;}
.ybb{bottom:834.953148px;}
.y58{bottom:837.795000px;}
.y12a{bottom:840.855000px;}
.y26{bottom:841.575000px;}
.yba{bottom:845.927874px;}
.y165{bottom:847.425000px;}
.y57{bottom:855.795000px;}
.yb9{bottom:856.902600px;}
.y129{bottom:857.055000px;}
.y25{bottom:857.775000px;}
.y164{bottom:861.825000px;}
.yb8{bottom:868.977720px;}
.y128{bottom:873.255000px;}
.y56{bottom:873.795000px;}
.y24{bottom:874.605000px;}
.y163{bottom:876.225000px;}
.yb7{bottom:879.952446px;}
.y127{bottom:884.955000px;}
.y126{bottom:889.455000px;}
.y162{bottom:890.625000px;}
.yb6{bottom:890.927172px;}
.y55{bottom:891.795000px;}
.yb5{bottom:903.002292px;}
.y161{bottom:905.025000px;}
.y125{bottom:905.655000px;}
.y3{bottom:905.716500px;}
.y6c{bottom:909.795000px;}
.y23{bottom:910.605000px;}
.yb4{bottom:913.977018px;}
.y160{bottom:919.425000px;}
.y124{bottom:921.855000px;}
.yb3{bottom:924.951744px;}
.y54{bottom:927.795000px;}
.y22{bottom:928.605000px;}
.y15f{bottom:933.825000px;}
.yb2{bottom:937.026864px;}
.y123{bottom:938.055000px;}
.y53{bottom:945.795000px;}
.yb1{bottom:948.001590px;}
.y15e{bottom:948.225000px;}
.y21{bottom:950.205000px;}
.y122{bottom:954.255000px;}
.yb0{bottom:958.976316px;}
.y15d{bottom:962.625000px;}
.y52{bottom:963.795000px;}
.y2{bottom:964.228500px;}
.y121{bottom:970.455000px;}
.yaf{bottom:971.051436px;}
.y6b{bottom:976.755000px;}
.y15c{bottom:977.025000px;}
.y20{bottom:979.005000px;}
.y51{bottom:981.795000px;}
.yad{bottom:985.320000px;}
.yae{bottom:986.418000px;}
.y120{bottom:986.655000px;}
.y1{bottom:989.716500px;}
.y15b{bottom:991.425000px;}
.yac{bottom:993.000774px;}
.y50{bottom:999.795000px;}
.y11f{bottom:1002.855000px;}
.yab{bottom:1003.975500px;}
.y15a{bottom:1005.825000px;}
.y1f{bottom:1007.805000px;}
.y4f{bottom:1017.795000px;}
.y9e{bottom:1019.055000px;}
.y159{bottom:1020.225000px;}
.y1e{bottom:1069.545000px;}
.y84{bottom:1075.575000px;}
.y1d{bottom:1083.945000px;}
.y83{bottom:1086.375000px;}
.h22{height:11.479500px;}
.h1c{height:14.070000px;}
.h19{height:18.347706px;}
.h1e{height:23.796123px;}
.h18{height:27.157617px;}
.h11{height:30.621094px;}
.h14{height:30.909375px;}
.h12{height:31.443750px;}
.h4{height:33.000000px;}
.h20{height:33.684718px;}
.h15{height:34.154297px;}
.h17{height:35.332031px;}
.h16{height:36.281250px;}
.h23{height:39.501225px;}
.h1b{height:39.766201px;}
.h1d{height:40.019414px;}
.hb{height:47.085938px;}
.hc{height:47.109375px;}
.ha{height:52.668300px;}
.h10{height:52.998047px;}
.hf{height:54.421875px;}
.h3{height:58.406250px;}
.h13{height:58.886719px;}
.he{height:60.468750px;}
.h2{height:66.750000px;}
.h1f{height:67.583990px;}
.h5{height:67.740234px;}
.h21{height:72.191678px;}
.hd{height:96.750000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h1a{height:466.843500px;}
.h9{height:1170.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:103.105500px;}
.wc{width:109.377000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:724.320000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:913.500000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x2f{left:7.902000px;}
.x42{left:12.750000px;}
.x59{left:23.620500px;}
.x1c{left:83.100000px;}
.x45{left:91.713000px;}
.x24{left:95.970000px;}
.x6a{left:102.273300px;}
.xb{left:104.340000px;}
.x1e{left:105.420000px;}
.x2b{left:108.824572px;}
.xe{left:110.280000px;}
.x44{left:112.242000px;}
.xc{left:116.580000px;}
.x61{left:119.550000px;}
.x1f{left:125.310000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x62{left:138.450000px;}
.x18{left:140.708400px;}
.x36{left:143.426977px;}
.x13{left:146.830800px;}
.x3a{left:158.930723px;}
.x35{left:160.218315px;}
.x6b{left:163.380000px;}
.x37{left:169.231537px;}
.x33{left:171.837772px;}
.x5{left:174.105000px;}
.xd{left:181.668000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x6c{left:212.880000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x11{left:223.905000px;}
.x3e{left:228.418500px;}
.x3d{left:229.710000px;}
.xf{left:240.330000px;}
.x1d{left:242.130000px;}
.x25{left:244.020000px;}
.x12{left:251.584500px;}
.x5c{left:253.650000px;}
.x27{left:265.260000px;}
.x6d{left:268.230000px;}
.x5d{left:272.640000px;}
.x2e{left:280.256457px;}
.x16{left:309.090000px;}
.x17{left:326.010000px;}
.x49{left:348.370530px;}
.x47{left:356.896605px;}
.x48{left:358.105365px;}
.x38{left:406.749855px;}
.x5e{left:408.630000px;}
.x32{left:410.642235px;}
.x31{left:414.521085px;}
.x3f{left:417.100260px;}
.x5f{left:427.530000px;}
.x34{left:429.790500px;}
.x20{left:457.052400px;}
.x10{left:463.920000px;}
.x4e{left:472.449615px;}
.x4a{left:474.912592px;}
.x6e{left:476.106000px;}
.x1b{left:478.268850px;}
.x68{left:497.370000px;}
.x23{left:499.607100px;}
.x64{left:503.040000px;}
.x67{left:504.120000px;}
.x30{left:508.533000px;}
.x21{left:513.120000px;}
.x46{left:518.709000px;}
.x26{left:520.770000px;}
.x43{left:522.948008px;}
.x2a{left:527.454000px;}
.x3b{left:530.708287px;}
.x22{left:533.010000px;}
.x3c{left:537.179843px;}
.x63{left:549.930000px;}
.x4b{left:555.204000px;}
.x5b{left:571.071000px;}
.x66{left:575.670000px;}
.x69{left:577.740000px;}
.x58{left:583.893000px;}
.x4c{left:592.915500px;}
.x4d{left:597.782918px;}
.x57{left:600.146475px;}
.x55{left:605.024685px;}
.x56{left:607.452998px;}
.x28{left:619.320000px;}
.x19{left:622.380000px;}
.x40{left:623.418000px;}
.x39{left:637.836000px;}
.x1a{left:640.200000px;}
.x14{left:660.180000px;}
.x29{left:661.800000px;}
.x5a{left:664.803000px;}
.x2c{left:672.204000px;}
.x15{left:676.830000px;}
.x4f{left:702.383828px;}
.x2d{left:708.948000px;}
.x53{left:719.392808px;}
.x41{left:725.554500px;}
.x54{left:730.347195px;}
.x52{left:733.995060px;}
.x51{left:743.719103px;}
.x50{left:748.597313px;}
.x65{left:751.530000px;}
.xa{left:791.040000px;}
.x60{left:807.420000px;}
@media print{
.v5{vertical-align:-23.405824pt;}
.v4{vertical-align:-17.920000pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v1{vertical-align:16.000000pt;}
.v7{vertical-align:24.501845pt;}
.v8{vertical-align:28.597568pt;}
.ls91{letter-spacing:-3.443307pt;}
.ls67{letter-spacing:-2.485104pt;}
.ls8d{letter-spacing:-2.464683pt;}
.ls98{letter-spacing:-2.133333pt;}
.ls8b{letter-spacing:-2.102229pt;}
.ls63{letter-spacing:-2.052912pt;}
.ls57{letter-spacing:-1.661952pt;}
.ls6e{letter-spacing:-1.188528pt;}
.ls5f{letter-spacing:-1.080480pt;}
.ls8e{letter-spacing:-0.906133pt;}
.ls52{letter-spacing:-0.865600pt;}
.lsa0{letter-spacing:-0.853333pt;}
.ls54{letter-spacing:-0.830976pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls38{letter-spacing:-0.693333pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls87{letter-spacing:-0.616171pt;}
.ls4e{letter-spacing:-0.588608pt;}
.ls10{letter-spacing:-0.586667pt;}
.lsa9{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsab{letter-spacing:-0.512000pt;}
.ls6a{letter-spacing:-0.504224pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls9f{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls88{letter-spacing:-0.398699pt;}
.ls60{letter-spacing:-0.396176pt;}
.ls9e{letter-spacing:-0.384000pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls69{letter-spacing:-0.360160pt;}
.ls31{letter-spacing:-0.341333pt;}
.ls7f{letter-spacing:-0.326208pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.311616pt;}
.lsa2{letter-spacing:-0.298667pt;}
.ls5{letter-spacing:-0.277333pt;}
.ls97{letter-spacing:-0.266667pt;}
.lsa1{letter-spacing:-0.256000pt;}
.ls86{letter-spacing:-0.253717pt;}
.ls62{letter-spacing:-0.252112pt;}
.ls4f{letter-spacing:-0.242368pt;}
.ls9d{letter-spacing:-0.240000pt;}
.ls85{letter-spacing:-0.217472pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.200533pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls5d{letter-spacing:-0.170667pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls84{letter-spacing:-0.144981pt;}
.ls6d{letter-spacing:-0.144064pt;}
.ls48{letter-spacing:-0.138496pt;}
.lsac{letter-spacing:-0.128000pt;}
.ls7c{letter-spacing:-0.108736pt;}
.ls5e{letter-spacing:-0.108048pt;}
.ls7d{letter-spacing:-0.107760pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls8a{letter-spacing:-0.072491pt;}
.ls68{letter-spacing:-0.072032pt;}
.ls51{letter-spacing:-0.069248pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls5c{letter-spacing:-0.042667pt;}
.ls8c{letter-spacing:-0.036245pt;}
.ls64{letter-spacing:-0.036016pt;}
.ls0{letter-spacing:0.000000pt;}
.ls83{letter-spacing:0.032325pt;}
.ls4d{letter-spacing:0.034624pt;}
.ls44{letter-spacing:0.036016pt;}
.ls70{letter-spacing:0.036245pt;}
.lsaa{letter-spacing:0.042667pt;}
.ls99{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.053333pt;}
.ls90{letter-spacing:0.064651pt;}
.ls41{letter-spacing:0.072032pt;}
.ls77{letter-spacing:0.072491pt;}
.lsa6{letter-spacing:0.085333pt;}
.ls3a{letter-spacing:0.103872pt;}
.ls17{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.108048pt;}
.ls72{letter-spacing:0.108736pt;}
.ls25{letter-spacing:0.123733pt;}
.ls2{letter-spacing:0.144000pt;}
.ls43{letter-spacing:0.144064pt;}
.ls6f{letter-spacing:0.160000pt;}
.lsad{letter-spacing:0.170667pt;}
.ls3b{letter-spacing:0.173120pt;}
.ls3d{letter-spacing:0.180080pt;}
.ls59{letter-spacing:0.207744pt;}
.ls1{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.216096pt;}
.ls75{letter-spacing:0.217472pt;}
.ls58{letter-spacing:0.242368pt;}
.ls73{letter-spacing:0.253717pt;}
.ls3c{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls4c{letter-spacing:0.276992pt;}
.ls6b{letter-spacing:0.288128pt;}
.ls80{letter-spacing:0.289963pt;}
.ls5a{letter-spacing:0.311616pt;}
.ls9{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.373333pt;}
.ls9a{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.426667pt;}
.lsa3{letter-spacing:0.469333pt;}
.ls74{letter-spacing:0.471189pt;}
.ls36{letter-spacing:0.480000pt;}
.ls89{letter-spacing:0.507435pt;}
.lsa7{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls71{letter-spacing:0.543680pt;}
.ls2d{letter-spacing:0.586667pt;}
.lsa4{letter-spacing:0.597333pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls96{letter-spacing:0.746667pt;}
.ls9b{letter-spacing:0.768000pt;}
.lsa5{letter-spacing:0.810667pt;}
.ls13{letter-spacing:0.853333pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls12{letter-spacing:0.960000pt;}
.ls55{letter-spacing:1.004096pt;}
.ls14{letter-spacing:1.013333pt;}
.ls3e{letter-spacing:1.044464pt;}
.ls81{letter-spacing:1.051115pt;}
.ls11{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.173333pt;}
.ls2c{letter-spacing:1.226667pt;}
.ls8{letter-spacing:1.280000pt;}
.ls6c{letter-spacing:1.332592pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls95{letter-spacing:1.386667pt;}
.lse{letter-spacing:1.440000pt;}
.ls37{letter-spacing:1.493333pt;}
.ls82{letter-spacing:1.558549pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls7{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.706667pt;}
.ls7a{letter-spacing:1.760000pt;}
.ls19{letter-spacing:1.813333pt;}
.lsc{letter-spacing:1.866667pt;}
.ls92{letter-spacing:1.920000pt;}
.ls28{letter-spacing:1.973333pt;}
.ls9c{letter-spacing:2.026667pt;}
.ls21{letter-spacing:2.080000pt;}
.lsa8{letter-spacing:2.112000pt;}
.ls27{letter-spacing:2.186667pt;}
.ls66{letter-spacing:2.232992pt;}
.ls8f{letter-spacing:2.319701pt;}
.ls4b{letter-spacing:2.319808pt;}
.ls35{letter-spacing:2.346667pt;}
.ls7e{letter-spacing:2.428437pt;}
.ls93{letter-spacing:2.453333pt;}
.ls94{letter-spacing:2.560000pt;}
.ls61{letter-spacing:2.737216pt;}
.ls22{letter-spacing:2.826667pt;}
.ls1a{letter-spacing:3.093333pt;}
.ls30{letter-spacing:3.146667pt;}
.ls34{letter-spacing:3.253333pt;}
.ls2e{letter-spacing:3.306667pt;}
.ls4a{letter-spacing:3.906464pt;}
.ls65{letter-spacing:4.754112pt;}
.ls76{letter-spacing:8.735125pt;}
.ls53{letter-spacing:128.835904pt;}
.ls5b{letter-spacing:142.754752pt;}
.ls40{letter-spacing:146.801216pt;}
.ls42{letter-spacing:151.375248pt;}
.ls39{letter-spacing:160.066752pt;}
.ls79{letter-spacing:189.091904pt;}
.ls46{letter-spacing:202.842112pt;}
.ls56{letter-spacing:296.693056pt;}
.ls50{letter-spacing:476.287744pt;}
.ls78{letter-spacing:537.880747pt;}
.ls45{letter-spacing:904.037616pt;}
.ws9e{word-spacing:-108.476992pt;}
.ws9d{word-spacing:-32.096448pt;}
.ws0{word-spacing:-16.874667pt;}
.wsa3{word-spacing:-13.758112pt;}
.ws4{word-spacing:-13.333333pt;}
.ws53{word-spacing:-12.853333pt;}
.ws149{word-spacing:-12.000000pt;}
.wsf4{word-spacing:-11.381035pt;}
.ws2{word-spacing:-10.666667pt;}
.wsf1{word-spacing:-10.619883pt;}
.ws9b{word-spacing:-9.754464pt;}
.wsa6{word-spacing:-9.220096pt;}
.wsa0{word-spacing:-9.184080pt;}
.wsa2{word-spacing:-9.148064pt;}
.ws9f{word-spacing:-9.112048pt;}
.wsf2{word-spacing:-9.097579pt;}
.wsa5{word-spacing:-9.076032pt;}
.wsf3{word-spacing:-9.061333pt;}
.wsaa{word-spacing:-8.967984pt;}
.wsa7{word-spacing:-8.931968pt;}
.wsa1{word-spacing:-8.895952pt;}
.wsab{word-spacing:-8.859936pt;}
.wsac{word-spacing:-8.643840pt;}
.wsa4{word-spacing:-8.607824pt;}
.ws99{word-spacing:-8.517504pt;}
.ws52{word-spacing:-7.857067pt;}
.ws54{word-spacing:-7.733333pt;}
.ws3{word-spacing:-6.933333pt;}
.ws5{word-spacing:-6.266667pt;}
.ws80{word-spacing:-6.066133pt;}
.wsef{word-spacing:-5.280240pt;}
.wsd0{word-spacing:-5.150288pt;}
.wscd{word-spacing:-4.898176pt;}
.wsc2{word-spacing:-3.493552pt;}
.wsde{word-spacing:-3.457536pt;}
.ws1b{word-spacing:-3.360000pt;}
.wse8{word-spacing:-3.349488pt;}
.wscc{word-spacing:-3.313472pt;}
.ws1d{word-spacing:-3.306667pt;}
.ws1f{word-spacing:-3.253333pt;}
.ws27{word-spacing:-3.200000pt;}
.ws32{word-spacing:-3.146667pt;}
.ws4c{word-spacing:-3.093333pt;}
.ws12c{word-spacing:-3.040000pt;}
.ws13{word-spacing:-3.024000pt;}
.ws5f{word-spacing:-2.986667pt;}
.ws12{word-spacing:-2.976000pt;}
.ws24{word-spacing:-2.933333pt;}
.ws159{word-spacing:-2.784000pt;}
.ws136{word-spacing:-2.773333pt;}
.wsd1{word-spacing:-2.737216pt;}
.ws162{word-spacing:-2.736000pt;}
.ws125{word-spacing:-2.720000pt;}
.ws167{word-spacing:-2.688000pt;}
.ws6f{word-spacing:-2.666667pt;}
.ws110{word-spacing:-2.645909pt;}
.ws82{word-spacing:-2.645333pt;}
.wsfa{word-spacing:-2.613333pt;}
.wsb6{word-spacing:-2.596800pt;}
.ws35{word-spacing:-2.560000pt;}
.ws154{word-spacing:-2.544000pt;}
.ws89{word-spacing:-2.506667pt;}
.wsc8{word-spacing:-2.413072pt;}
.ws29{word-spacing:-2.400000pt;}
.ws6e{word-spacing:-2.346667pt;}
.ws164{word-spacing:-2.304000pt;}
.ws79{word-spacing:-2.293333pt;}
.wsce{word-spacing:-2.196976pt;}
.ws56{word-spacing:-2.186667pt;}
.ws184{word-spacing:-2.112000pt;}
.ws145{word-spacing:-2.080000pt;}
.ws1c{word-spacing:-2.026667pt;}
.ws160{word-spacing:-2.016000pt;}
.ws6a{word-spacing:-1.973333pt;}
.ws16b{word-spacing:-1.962667pt;}
.ws46{word-spacing:-1.920000pt;}
.ws3c{word-spacing:-1.917867pt;}
.ws83{word-spacing:-1.877333pt;}
.ws2b{word-spacing:-1.866667pt;}
.ws179{word-spacing:-1.834667pt;}
.ws141{word-spacing:-1.813333pt;}
.ws170{word-spacing:-1.792000pt;}
.ws14{word-spacing:-1.747200pt;}
.ws17{word-spacing:-1.728000pt;}
.ws178{word-spacing:-1.706667pt;}
.ws10a{word-spacing:-1.703531pt;}
.ws2a{word-spacing:-1.653333pt;}
.ws15d{word-spacing:-1.632000pt;}
.ws3d{word-spacing:-1.600000pt;}
.ws15a{word-spacing:-1.584000pt;}
.ws163{word-spacing:-1.580800pt;}
.wsff{word-spacing:-1.546667pt;}
.ws126{word-spacing:-1.493333pt;}
.ws166{word-spacing:-1.488000pt;}
.ws25{word-spacing:-1.440000pt;}
.ws175{word-spacing:-1.408000pt;}
.ws71{word-spacing:-1.386667pt;}
.ws17d{word-spacing:-1.365333pt;}
.ws5d{word-spacing:-1.333333pt;}
.ws7a{word-spacing:-1.330133pt;}
.ws181{word-spacing:-1.322667pt;}
.wse9{word-spacing:-1.296576pt;}
.ws161{word-spacing:-1.296000pt;}
.wsbf{word-spacing:-1.280000pt;}
.ws17e{word-spacing:-1.194667pt;}
.ws132{word-spacing:-1.173333pt;}
.ws1a{word-spacing:-1.152000pt;}
.ws33{word-spacing:-1.120000pt;}
.ws60{word-spacing:-1.066667pt;}
.ws3e{word-spacing:-1.013333pt;}
.ws18{word-spacing:-0.998400pt;}
.wsca{word-spacing:-0.972432pt;}
.ws5e{word-spacing:-0.960000pt;}
.wsd2{word-spacing:-0.936416pt;}
.ws3b{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.877333pt;}
.ws171{word-spacing:-0.853333pt;}
.wsd9{word-spacing:-0.828368pt;}
.wsaf{word-spacing:-0.800000pt;}
.wsb1{word-spacing:-0.796352pt;}
.wsa{word-spacing:-0.768000pt;}
.ws68{word-spacing:-0.746667pt;}
.wse6{word-spacing:-0.720320pt;}
.wsb{word-spacing:-0.720000pt;}
.ws26{word-spacing:-0.693333pt;}
.wsd6{word-spacing:-0.684304pt;}
.wse1{word-spacing:-0.648288pt;}
.ws98{word-spacing:-0.640000pt;}
.ws106{word-spacing:-0.616171pt;}
.wse4{word-spacing:-0.612272pt;}
.ws3f{word-spacing:-0.587733pt;}
.ws5c{word-spacing:-0.586667pt;}
.wsed{word-spacing:-0.576256pt;}
.ws158{word-spacing:-0.576000pt;}
.ws169{word-spacing:-0.554667pt;}
.wse7{word-spacing:-0.540240pt;}
.wseb{word-spacing:-0.504224pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws108{word-spacing:-0.434944pt;}
.ws11{word-spacing:-0.432000pt;}
.ws20{word-spacing:-0.426667pt;}
.wsb9{word-spacing:-0.380864pt;}
.ws134{word-spacing:-0.373333pt;}
.wscb{word-spacing:-0.360160pt;}
.ws16c{word-spacing:-0.341333pt;}
.ws11f{word-spacing:-0.326208pt;}
.wsdc{word-spacing:-0.324144pt;}
.ws8a{word-spacing:-0.320000pt;}
.wse0{word-spacing:-0.288128pt;}
.ws5a{word-spacing:-0.266667pt;}
.wsc4{word-spacing:-0.252112pt;}
.ws31{word-spacing:-0.213333pt;}
.ws42{word-spacing:-0.160000pt;}
.ws120{word-spacing:-0.144981pt;}
.wse3{word-spacing:-0.144064pt;}
.ws173{word-spacing:-0.128000pt;}
.ws11c{word-spacing:-0.108736pt;}
.wsda{word-spacing:-0.108048pt;}
.ws114{word-spacing:-0.072491pt;}
.wsc5{word-spacing:-0.072032pt;}
.ws45{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws16d{word-spacing:-0.042667pt;}
.ws116{word-spacing:-0.036245pt;}
.wsc0{word-spacing:-0.036016pt;}
.ws1{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.030933pt;}
.ws122{word-spacing:0.032325pt;}
.wse5{word-spacing:0.036016pt;}
.ws107{word-spacing:0.036245pt;}
.ws6{word-spacing:0.042667pt;}
.ws14f{word-spacing:0.048000pt;}
.ws4e{word-spacing:0.053333pt;}
.wsb2{word-spacing:0.069248pt;}
.wsdd{word-spacing:0.072032pt;}
.ws113{word-spacing:0.072491pt;}
.ws17a{word-spacing:0.085333pt;}
.ws185{word-spacing:0.096000pt;}
.ws102{word-spacing:0.106667pt;}
.wsc9{word-spacing:0.108048pt;}
.ws112{word-spacing:0.129301pt;}
.ws183{word-spacing:0.144000pt;}
.wscf{word-spacing:0.144064pt;}
.ws10d{word-spacing:0.144981pt;}
.ws7{word-spacing:0.170667pt;}
.wsd5{word-spacing:0.180080pt;}
.ws124{word-spacing:0.181227pt;}
.ws157{word-spacing:0.192000pt;}
.wsc3{word-spacing:0.216096pt;}
.wsee{word-spacing:0.252112pt;}
.ws72{word-spacing:0.266667pt;}
.ws17f{word-spacing:0.298667pt;}
.wsf5{word-spacing:0.362453pt;}
.ws142{word-spacing:0.373333pt;}
.wsdf{word-spacing:0.396176pt;}
.ws10f{word-spacing:0.398699pt;}
.ws81{word-spacing:0.426667pt;}
.wsec{word-spacing:0.432192pt;}
.wsd8{word-spacing:0.468208pt;}
.ws10b{word-spacing:0.471189pt;}
.wsea{word-spacing:0.504224pt;}
.ws10e{word-spacing:0.507435pt;}
.ws63{word-spacing:0.533333pt;}
.wse2{word-spacing:0.540240pt;}
.ws109{word-spacing:0.543680pt;}
.ws12e{word-spacing:0.586667pt;}
.ws48{word-spacing:0.640000pt;}
.ws118{word-spacing:0.724907pt;}
.ws2d{word-spacing:0.746667pt;}
.ws15{word-spacing:0.768000pt;}
.ws15c{word-spacing:0.776533pt;}
.wsae{word-spacing:0.800000pt;}
.ws119{word-spacing:0.833643pt;}
.ws70{word-spacing:0.853333pt;}
.wsf{word-spacing:0.864000pt;}
.wsc6{word-spacing:0.864384pt;}
.ws11a{word-spacing:0.869888pt;}
.ws16f{word-spacing:0.896000pt;}
.wsad{word-spacing:0.906667pt;}
.wsb4{word-spacing:0.934848pt;}
.wsba{word-spacing:1.004096pt;}
.ws117{word-spacing:1.051115pt;}
.ws100{word-spacing:1.066667pt;}
.wsb8{word-spacing:1.073344pt;}
.ws15f{word-spacing:1.104000pt;}
.wsb7{word-spacing:1.107968pt;}
.ws182{word-spacing:1.109333pt;}
.ws13d{word-spacing:1.120000pt;}
.ws11e{word-spacing:1.123605pt;}
.ws16{word-spacing:1.152000pt;}
.ws111{word-spacing:1.159851pt;}
.ws143{word-spacing:1.173333pt;}
.ws105{word-spacing:1.194667pt;}
.ws13f{word-spacing:1.226667pt;}
.ws6d{word-spacing:1.280000pt;}
.ws43{word-spacing:1.333333pt;}
.ws15b{word-spacing:1.344000pt;}
.ws75{word-spacing:1.386667pt;}
.wsdb{word-spacing:1.404624pt;}
.wsb5{word-spacing:1.419584pt;}
.ws86{word-spacing:1.546667pt;}
.ws74{word-spacing:1.600000pt;}
.ws155{word-spacing:1.632000pt;}
.ws135{word-spacing:1.653333pt;}
.ws7b{word-spacing:1.706667pt;}
.ws6b{word-spacing:1.760000pt;}
.ws153{word-spacing:1.776000pt;}
.ws115{word-spacing:1.812267pt;}
.ws12a{word-spacing:1.856000pt;}
.ws8b{word-spacing:1.866667pt;}
.ws174{word-spacing:1.877333pt;}
.ws37{word-spacing:1.920000pt;}
.ws17c{word-spacing:2.005333pt;}
.wsbb{word-spacing:2.008192pt;}
.ws97{word-spacing:2.026667pt;}
.ws150{word-spacing:2.064000pt;}
.ws66{word-spacing:2.080000pt;}
.ws172{word-spacing:2.090667pt;}
.ws28{word-spacing:2.133333pt;}
.ws104{word-spacing:2.180800pt;}
.ws73{word-spacing:2.186667pt;}
.wsfd{word-spacing:2.240000pt;}
.ws85{word-spacing:2.261333pt;}
.ws121{word-spacing:2.283456pt;}
.ws12d{word-spacing:2.293333pt;}
.ws148{word-spacing:2.346667pt;}
.ws12b{word-spacing:2.400000pt;}
.ws65{word-spacing:2.453333pt;}
.ws168{word-spacing:2.496000pt;}
.ws7d{word-spacing:2.506667pt;}
.ws69{word-spacing:2.560000pt;}
.ws47{word-spacing:2.613333pt;}
.ws176{word-spacing:2.645333pt;}
.ws11b{word-spacing:2.682155pt;}
.ws8d{word-spacing:2.720000pt;}
.wsd7{word-spacing:2.773232pt;}
.ws76{word-spacing:2.773333pt;}
.wsbd{word-spacing:2.804544pt;}
.wsc7{word-spacing:2.809248pt;}
.ws41{word-spacing:2.826667pt;}
.wsbc{word-spacing:2.839168pt;}
.ws4b{word-spacing:2.845867pt;}
.ws14c{word-spacing:2.880000pt;}
.ws78{word-spacing:2.933333pt;}
.ws128{word-spacing:2.969600pt;}
.wsc{word-spacing:2.976000pt;}
.ws12f{word-spacing:2.986667pt;}
.ws152{word-spacing:3.024000pt;}
.wsbe{word-spacing:3.029333pt;}
.wsb3{word-spacing:3.046912pt;}
.ws55{word-spacing:3.093333pt;}
.ws165{word-spacing:3.120000pt;}
.ws10c{word-spacing:3.153344pt;}
.ws129{word-spacing:3.200000pt;}
.ws44{word-spacing:3.253333pt;}
.ws77{word-spacing:3.306667pt;}
.ws36{word-spacing:3.413333pt;}
.ws127{word-spacing:3.466667pt;}
.ws39{word-spacing:3.526400pt;}
.ws2f{word-spacing:3.573333pt;}
.ws177{word-spacing:3.584000pt;}
.wsd4{word-spacing:3.601600pt;}
.ws11d{word-spacing:3.660779pt;}
.wsf8{word-spacing:3.680000pt;}
.ws103{word-spacing:3.712000pt;}
.ws14a{word-spacing:3.733333pt;}
.wsc1{word-spacing:3.745664pt;}
.ws58{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws19{word-spacing:3.888000pt;}
.ws16a{word-spacing:3.925333pt;}
.wsd3{word-spacing:3.925744pt;}
.ws146{word-spacing:3.946667pt;}
.ws1e{word-spacing:4.000000pt;}
.wsfb{word-spacing:4.053333pt;}
.ws13b{word-spacing:4.106667pt;}
.ws40{word-spacing:4.160000pt;}
.ws57{word-spacing:4.213333pt;}
.ws138{word-spacing:4.266667pt;}
.ws4d{word-spacing:4.320000pt;}
.ws17b{word-spacing:4.352000pt;}
.ws101{word-spacing:4.426667pt;}
.ws156{word-spacing:4.464000pt;}
.ws6c{word-spacing:4.533333pt;}
.ws59{word-spacing:4.586667pt;}
.ws123{word-spacing:4.639403pt;}
.ws14d{word-spacing:4.640000pt;}
.ws50{word-spacing:4.693333pt;}
.ws10{word-spacing:4.752000pt;}
.ws96{word-spacing:4.800000pt;}
.ws16e{word-spacing:4.821333pt;}
.ws4a{word-spacing:4.906667pt;}
.ws7c{word-spacing:4.960000pt;}
.ws151{word-spacing:4.992000pt;}
.ws8c{word-spacing:5.013333pt;}
.ws13a{word-spacing:5.066667pt;}
.ws49{word-spacing:5.120000pt;}
.ws180{word-spacing:5.162667pt;}
.ws2e{word-spacing:5.173333pt;}
.ws84{word-spacing:5.205333pt;}
.ws67{word-spacing:5.226667pt;}
.ws131{word-spacing:5.280000pt;}
.ws3a{word-spacing:5.333333pt;}
.wse{word-spacing:5.376000pt;}
.ws21{word-spacing:5.386667pt;}
.ws147{word-spacing:5.546667pt;}
.wsf7{word-spacing:5.600000pt;}
.ws14e{word-spacing:5.616000pt;}
.ws4f{word-spacing:5.653333pt;}
.ws61{word-spacing:5.706667pt;}
.ws34{word-spacing:5.760000pt;}
.ws13c{word-spacing:5.813333pt;}
.ws140{word-spacing:5.866667pt;}
.ws30{word-spacing:5.920000pt;}
.ws15e{word-spacing:6.000000pt;}
.wsf9{word-spacing:6.026667pt;}
.ws38{word-spacing:6.080000pt;}
.ws51{word-spacing:6.133333pt;}
.ws64{word-spacing:6.240000pt;}
.wsf6{word-spacing:6.293333pt;}
.wsfc{word-spacing:6.346667pt;}
.ws7e{word-spacing:6.400000pt;}
.ws144{word-spacing:6.453333pt;}
.wsb0{word-spacing:6.506667pt;}
.ws7f{word-spacing:6.560000pt;}
.ws23{word-spacing:6.613333pt;}
.ws22{word-spacing:6.666667pt;}
.ws88{word-spacing:7.840000pt;}
.ws95{word-spacing:8.160000pt;}
.ws14b{word-spacing:9.493333pt;}
.ws139{word-spacing:10.240000pt;}
.ws130{word-spacing:11.573333pt;}
.ws137{word-spacing:11.946667pt;}
.wsfe{word-spacing:12.000000pt;}
.ws8e{word-spacing:12.906667pt;}
.ws91{word-spacing:13.173333pt;}
.ws8f{word-spacing:15.786667pt;}
.ws87{word-spacing:18.880000pt;}
.ws133{word-spacing:23.520000pt;}
.ws9{word-spacing:26.666667pt;}
.ws92{word-spacing:40.373333pt;}
.ws90{word-spacing:41.600000pt;}
.ws8{word-spacing:42.666667pt;}
.ws9c{word-spacing:51.382016pt;}
.ws9a{word-spacing:54.775168pt;}
.ws93{word-spacing:120.053333pt;}
.ws94{word-spacing:174.826667pt;}
.wsf0{word-spacing:274.377173pt;}
.wsa9{word-spacing:1320.778752pt;}
.wsa8{word-spacing:1548.435888pt;}
._4c{margin-left:-2458.629717pt;}
._4b{margin-left:-1675.776517pt;}
._4{margin-left:-47.274667pt;}
._6{margin-left:-26.666667pt;}
._b{margin-left:-9.600000pt;}
._c{margin-left:-8.053333pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-5.546667pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.736000pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.566933pt;}
._9{width:3.077333pt;}
._0{width:4.966400pt;}
._a{width:6.666667pt;}
._3a{width:7.790400pt;}
._d{width:12.426667pt;}
._39{width:15.615424pt;}
._35{width:23.405824pt;}
._36{width:35.143360pt;}
._37{width:50.758784pt;}
._38{width:54.636672pt;}
._11{width:67.386368pt;}
._12{width:68.581291pt;}
._13{width:73.013163pt;}
._10{width:75.021355pt;}
._f{width:78.899243pt;}
._49{width:96.035211pt;}
._4d{width:103.950000pt;}
._46{width:132.962341pt;}
._19{width:140.538816pt;}
._47{width:146.097451pt;}
._33{width:159.824384pt;}
._15{width:171.769664pt;}
._21{width:187.082325pt;}
._4f{width:191.475712pt;}
._4a{width:214.965584pt;}
._3d{width:224.073307pt;}
._42{width:246.743163pt;}
._41{width:251.310085pt;}
._3f{width:258.810976pt;}
._44{width:264.735829pt;}
._3e{width:271.812277pt;}
._50{width:283.112299pt;}
._2b{width:294.923797pt;}
._34{width:296.450688pt;}
._1e{width:300.956523pt;}
._1f{width:304.236693pt;}
._40{width:309.861824pt;}
._43{width:319.372101pt;}
._1c{width:327.369387pt;}
._29{width:335.027861pt;}
._e{width:343.877227pt;}
._18{width:344.903296pt;}
._23{width:347.694784pt;}
._4e{width:360.319211pt;}
._48{width:365.129733pt;}
._32{width:394.055744pt;}
._3c{width:404.890656pt;}
._3b{width:456.073243pt;}
._28{width:476.287744pt;}
._30{width:498.337600pt;}
._24{width:518.217408pt;}
._2d{width:553.285397pt;}
._31{width:589.265856pt;}
._27{width:605.426411pt;}
._16{width:612.914048pt;}
._17{width:675.375744pt;}
._14{width:715.821739pt;}
._2f{width:893.654805pt;}
._26{width:899.017323pt;}
._54{width:911.421376pt;}
._52{width:977.926165pt;}
._53{width:981.608853pt;}
._51{width:1032.637931pt;}
._25{width:1099.199275pt;}
._22{width:1100.904704pt;}
._45{width:1185.082645pt;}
._1a{width:1190.684736pt;}
._2c{width:1350.543744pt;}
._2e{width:1498.872960pt;}
._2a{width:1531.107904pt;}
._1d{width:1699.068928pt;}
._1b{width:1721.685824pt;}
._20{width:1847.328896pt;}
.fsf{font-size:21.552000pt;}
.fsc{font-size:23.392000pt;}
.fs8{font-size:25.066667pt;}
.fs7{font-size:27.733333pt;}
.fs9{font-size:30.933333pt;}
.fsa{font-size:32.000000pt;}
.fs10{font-size:32.325333pt;}
.fsb{font-size:34.624000pt;}
.fsd{font-size:36.016000pt;}
.fse{font-size:36.245333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y10f{bottom:-0.125333pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:2.177333pt;}
.yc{bottom:7.146667pt;}
.yf0{bottom:11.261333pt;}
.yee{bottom:16.952221pt;}
.yed{bottom:29.458777pt;}
.yec{bottom:41.965333pt;}
.y1c{bottom:46.866667pt;}
.y158{bottom:67.026667pt;}
.ye8{bottom:68.124221pt;}
.y15{bottom:69.080000pt;}
.yc4{bottom:71.506667pt;}
.y82{bottom:72.066667pt;}
.y81{bottom:72.626667pt;}
.y99{bottom:72.706667pt;}
.ya5{bottom:74.146667pt;}
.y19a{bottom:74.866667pt;}
.y4e{bottom:75.106667pt;}
.y157{bottom:79.826667pt;}
.ye7{bottom:80.630777pt;}
.y1a{bottom:81.413333pt;}
.yc3{bottom:84.306667pt;}
.y11e{bottom:85.506667pt;}
.ya4{bottom:86.946667pt;}
.y199{bottom:87.666667pt;}
.y4d{bottom:87.906667pt;}
.y80{bottom:88.626667pt;}
.y14{bottom:88.706667pt;}
.y156{bottom:92.626667pt;}
.ye6{bottom:93.137333pt;}
.yc2{bottom:97.106667pt;}
.ya3{bottom:99.746667pt;}
.y11d{bottom:99.906667pt;}
.y198{bottom:100.466667pt;}
.y4c{bottom:100.706667pt;}
.y19{bottom:101.040000pt;}
.y7f{bottom:104.626667pt;}
.y98{bottom:104.706667pt;}
.y155{bottom:105.426667pt;}
.ya2{bottom:112.546667pt;}
.y197{bottom:113.266667pt;}
.y4b{bottom:113.506667pt;}
.yc5{bottom:114.146667pt;}
.y11c{bottom:114.306667pt;}
.y113{bottom:114.890667pt;}
.y154{bottom:118.226667pt;}
.yef{bottom:118.585333pt;}
.y10{bottom:119.053333pt;}
.ye3{bottom:119.293333pt;}
.y7e{bottom:120.626667pt;}
.y18{bottom:120.666667pt;}
.y97{bottom:120.706667pt;}
.ye4{bottom:124.974857pt;}
.ya1{bottom:125.346667pt;}
.y196{bottom:126.066667pt;}
.y11b{bottom:128.706667pt;}
.y153{bottom:131.026667pt;}
.y7d{bottom:136.626667pt;}
.y96{bottom:136.706667pt;}
.y16{bottom:137.733333pt;}
.ya0{bottom:138.146667pt;}
.yf{bottom:138.680000pt;}
.y195{bottom:138.866667pt;}
.y17{bottom:140.293333pt;}
.y49{bottom:142.146667pt;}
.y152{bottom:143.826667pt;}
.ye1{bottom:144.325592pt;}
.y112{bottom:146.530667pt;}
.y111{bottom:146.532747pt;}
.y9f{bottom:150.946667pt;}
.y194{bottom:151.666667pt;}
.y7c{bottom:152.626667pt;}
.y9d{bottom:152.706667pt;}
.y151{bottom:156.626667pt;}
.y11a{bottom:157.506667pt;}
.y48{bottom:158.146667pt;}
.ye0{bottom:163.648176pt;}
.y193{bottom:164.466667pt;}
.y110{bottom:165.924000pt;}
.y10e{bottom:166.049333pt;}
.yea{bottom:166.444000pt;}
.ye9{bottom:168.621333pt;}
.y9c{bottom:168.706667pt;}
.y150{bottom:169.426667pt;}
.ydf{bottom:170.473208pt;}
.y119{bottom:171.906667pt;}
.y47{bottom:174.146667pt;}
.y192{bottom:177.266667pt;}
.y10d{bottom:179.195579pt;}
.y14f{bottom:182.226667pt;}
.yde{bottom:182.979764pt;}
.y7b{bottom:184.626667pt;}
.y95{bottom:184.706667pt;}
.y118{bottom:186.306667pt;}
.y191{bottom:190.066667pt;}
.y46{bottom:190.146667pt;}
.y10c{bottom:192.461371pt;}
.y14e{bottom:195.026667pt;}
.ydc{bottom:196.629828pt;}
.y7a{bottom:200.626667pt;}
.y9b{bottom:200.706667pt;}
.ydd{bottom:202.311352pt;}
.y190{bottom:202.866667pt;}
.y10b{bottom:204.712293pt;}
.y45{bottom:206.146667pt;}
.y14d{bottom:207.826667pt;}
.y116{bottom:212.306667pt;}
.y106{bottom:212.867493pt;}
.y117{bottom:215.106667pt;}
.y18f{bottom:215.666667pt;}
.y79{bottom:216.626667pt;}
.y94{bottom:216.706667pt;}
.y10a{bottom:217.978085pt;}
.y14c{bottom:220.626667pt;}
.ye5{bottom:220.930667pt;}
.ydb{bottom:221.642940pt;}
.y4a{bottom:222.146667pt;}
.y18e{bottom:228.466667pt;}
.y109{bottom:231.243877pt;}
.y78{bottom:232.626667pt;}
.y93{bottom:232.706667pt;}
.y14b{bottom:233.426667pt;}
.yda{bottom:235.284000pt;}
.y44{bottom:238.146667pt;}
.yd8{bottom:240.968301pt;}
.y18d{bottom:241.266667pt;}
.y108{bottom:244.509669pt;}
.ye2{bottom:245.948000pt;}
.y14a{bottom:246.226667pt;}
.yd7{bottom:247.793333pt;}
.yd5{bottom:247.801568pt;}
.y92{bottom:248.706667pt;}
.y18c{bottom:254.066667pt;}
.y43{bottom:254.146667pt;}
.y107{bottom:257.775461pt;}
.y149{bottom:259.026667pt;}
.y91{bottom:264.706667pt;}
.yd4{bottom:265.989648pt;}
.y18b{bottom:266.866667pt;}
.y42{bottom:270.146667pt;}
.y148{bottom:271.826667pt;}
.yd3{bottom:272.814680pt;}
.y105{bottom:279.214576pt;}
.y18a{bottom:279.666667pt;}
.y77{bottom:280.626667pt;}
.y90{bottom:280.706667pt;}
.y147{bottom:284.626667pt;}
.y41{bottom:286.146667pt;}
.yd2{bottom:292.146268pt;}
.y189{bottom:292.466667pt;}
.y8f{bottom:296.706667pt;}
.y146{bottom:297.426667pt;}
.yd1{bottom:298.971300pt;}
.y40{bottom:302.146667pt;}
.y104{bottom:302.692491pt;}
.y188{bottom:305.266667pt;}
.ya{bottom:306.382667pt;}
.y145{bottom:310.226667pt;}
.y8e{bottom:312.706667pt;}
.y102{bottom:314.943413pt;}
.y103{bottom:315.958283pt;}
.yd0{bottom:317.159380pt;}
.y187{bottom:318.066667pt;}
.y3f{bottom:318.146667pt;}
.y144{bottom:323.026667pt;}
.ycf{bottom:323.984412pt;}
.y101{bottom:328.209205pt;}
.y76{bottom:328.626667pt;}
.y8d{bottom:328.706667pt;}
.y186{bottom:330.866667pt;}
.y3e{bottom:334.146667pt;}
.y143{bottom:335.826667pt;}
.y75{bottom:340.146667pt;}
.y100{bottom:341.474997pt;}
.yce{bottom:343.316000pt;}
.yd{bottom:343.546667pt;}
.y185{bottom:343.666667pt;}
.y74{bottom:344.626667pt;}
.y8c{bottom:344.706667pt;}
.y142{bottom:348.626667pt;}
.yd9{bottom:349.430667pt;}
.y3d{bottom:350.146667pt;}
.ycc{bottom:350.148495pt;}
.y9{bottom:351.724000pt;}
.yfe{bottom:353.725920pt;}
.y184{bottom:356.466667pt;}
.y73{bottom:360.626667pt;}
.y8b{bottom:360.706667pt;}
.y141{bottom:361.426667pt;}
.yd6{bottom:361.940000pt;}
.ycb{bottom:362.655051pt;}
.y3c{bottom:366.146667pt;}
.yff{bottom:366.991712pt;}
.y183{bottom:369.266667pt;}
.y140{bottom:374.226667pt;}
.yca{bottom:375.161607pt;}
.yc9{bottom:376.296111pt;}
.y72{bottom:376.626667pt;}
.y8a{bottom:376.706667pt;}
.y182{bottom:382.066667pt;}
.y3b{bottom:382.146667pt;}
.yfd{bottom:382.305365pt;}
.yb{bottom:386.533333pt;}
.y13f{bottom:387.026667pt;}
.yfc{bottom:388.421765pt;}
.yc8{bottom:388.802667pt;}
.y71{bottom:392.626667pt;}
.y89{bottom:392.706667pt;}
.y181{bottom:394.866667pt;}
.y8{bottom:397.065333pt;}
.y13e{bottom:399.826667pt;}
.yc6{bottom:403.586667pt;}
.y180{bottom:407.666667pt;}
.y70{bottom:408.626667pt;}
.y88{bottom:408.706667pt;}
.y1a8{bottom:411.434667pt;}
.y13d{bottom:412.626667pt;}
.yf8{bottom:413.944587pt;}
.yf9{bottom:413.945333pt;}
.yfb{bottom:414.962411pt;}
.y17f{bottom:420.466667pt;}
.yf7{bottom:421.084917pt;}
.y6f{bottom:424.626667pt;}
.y87{bottom:424.706667pt;}
.y13c{bottom:425.426667pt;}
.y1a7{bottom:425.834667pt;}
.yfa{bottom:427.213333pt;}
.y3a{bottom:430.146667pt;}
.y17e{bottom:433.266667pt;}
.y11{bottom:433.826667pt;}
.y1a6{bottom:440.234667pt;}
.y6e{bottom:440.626667pt;}
.y9a{bottom:440.706667pt;}
.y7{bottom:442.406667pt;}
.yf6{bottom:445.586763pt;}
.y17d{bottom:446.066667pt;}
.y1a5{bottom:454.634667pt;}
.y86{bottom:456.706667pt;}
.yf4{bottom:458.852555pt;}
.y17c{bottom:458.866667pt;}
.ycd{bottom:464.285333pt;}
.y13b{bottom:467.906667pt;}
.y1a4{bottom:469.034667pt;}
.y39{bottom:470.466667pt;}
.y17b{bottom:471.666667pt;}
.yf5{bottom:472.118347pt;}
.y6d{bottom:472.626667pt;}
.y85{bottom:472.706667pt;}
.y38{bottom:474.466667pt;}
.y12{bottom:478.426667pt;}
.y6a{bottom:484.306667pt;}
.y17a{bottom:484.466667pt;}
.yf3{bottom:485.392000pt;}
.yf2{bottom:487.432000pt;}
.y6{bottom:487.748000pt;}
.y69{bottom:488.706667pt;}
.y179{bottom:497.266667pt;}
.y1a3{bottom:499.910667pt;}
.yc7{bottom:502.949333pt;}
.y37{bottom:503.266667pt;}
.y68{bottom:504.706667pt;}
.yf1{bottom:507.106667pt;}
.y178{bottom:510.066667pt;}
.y1a2{bottom:515.426667pt;}
.y13a{bottom:515.910667pt;}
.y36{bottom:517.666667pt;}
.y67{bottom:520.706667pt;}
.y177{bottom:522.866667pt;}
.y1b{bottom:524.093333pt;}
.y1a1{bottom:529.826667pt;}
.y139{bottom:531.426667pt;}
.y35{bottom:532.066667pt;}
.y115{bottom:532.226667pt;}
.y5{bottom:533.089333pt;}
.yc1{bottom:534.626667pt;}
.y176{bottom:535.666667pt;}
.y66{bottom:536.706667pt;}
.y34{bottom:542.466667pt;}
.y1a0{bottom:544.226667pt;}
.y33{bottom:546.466667pt;}
.y65{bottom:548.226667pt;}
.y175{bottom:548.466667pt;}
.y64{bottom:552.706667pt;}
.y19f{bottom:558.626667pt;}
.y138{bottom:560.226667pt;}
.y32{bottom:560.866667pt;}
.y174{bottom:561.266667pt;}
.ye{bottom:561.706667pt;}
.y63{bottom:568.706667pt;}
.yaa{bottom:572.306667pt;}
.y19e{bottom:573.026667pt;}
.y173{bottom:574.066667pt;}
.y137{bottom:574.626667pt;}
.y31{bottom:575.266667pt;}
.y62{bottom:584.706667pt;}
.y30{bottom:585.666667pt;}
.y172{bottom:586.866667pt;}
.y19d{bottom:587.426667pt;}
.ya9{bottom:588.306667pt;}
.y136{bottom:589.026667pt;}
.y2f{bottom:589.666667pt;}
.y114{bottom:596.226667pt;}
.y171{bottom:599.666667pt;}
.y61{bottom:600.706667pt;}
.y19c{bottom:601.826667pt;}
.y135{bottom:603.426667pt;}
.y2e{bottom:604.066667pt;}
.ya8{bottom:604.306667pt;}
.y170{bottom:612.466667pt;}
.y60{bottom:616.706667pt;}
.y134{bottom:617.826667pt;}
.y2d{bottom:618.466667pt;}
.ya7{bottom:620.306667pt;}
.y16f{bottom:625.266667pt;}
.y133{bottom:632.226667pt;}
.y5f{bottom:632.706667pt;}
.y2c{bottom:632.866667pt;}
.ya6{bottom:636.306667pt;}
.y16e{bottom:638.066667pt;}
.y132{bottom:646.626667pt;}
.y2b{bottom:647.266667pt;}
.y19b{bottom:648.701333pt;}
.y5e{bottom:648.706667pt;}
.y16d{bottom:650.866667pt;}
.y131{bottom:661.026667pt;}
.y2a{bottom:661.666667pt;}
.y16c{bottom:663.666667pt;}
.y5d{bottom:664.706667pt;}
.y130{bottom:675.426667pt;}
.y16b{bottom:676.466667pt;}
.yc0{bottom:677.106667pt;}
.y5c{bottom:680.706667pt;}
.y12f{bottom:685.826667pt;}
.y16a{bottom:689.266667pt;}
.y12e{bottom:689.826667pt;}
.ybf{bottom:689.906667pt;}
.y29{bottom:690.466667pt;}
.y4{bottom:691.756000pt;}
.y5b{bottom:696.706667pt;}
.y169{bottom:702.066667pt;}
.ybe{bottom:702.706667pt;}
.y12d{bottom:704.226667pt;}
.y28{bottom:704.866667pt;}
.y5a{bottom:712.706667pt;}
.y168{bottom:714.866667pt;}
.y12c{bottom:718.626667pt;}
.y27{bottom:719.266667pt;}
.ybd{bottom:721.691824pt;}
.y13{bottom:725.040000pt;}
.y167{bottom:727.666667pt;}
.y59{bottom:728.706667pt;}
.ybc{bottom:731.447136pt;}
.y12b{bottom:733.026667pt;}
.y166{bottom:740.466667pt;}
.ybb{bottom:742.180576pt;}
.y58{bottom:744.706667pt;}
.y12a{bottom:747.426667pt;}
.y26{bottom:748.066667pt;}
.yba{bottom:751.935888pt;}
.y165{bottom:753.266667pt;}
.y57{bottom:760.706667pt;}
.yb9{bottom:761.691200pt;}
.y129{bottom:761.826667pt;}
.y25{bottom:762.466667pt;}
.y164{bottom:766.066667pt;}
.yb8{bottom:772.424640pt;}
.y128{bottom:776.226667pt;}
.y56{bottom:776.706667pt;}
.y24{bottom:777.426667pt;}
.y163{bottom:778.866667pt;}
.yb7{bottom:782.179952pt;}
.y127{bottom:786.626667pt;}
.y126{bottom:790.626667pt;}
.y162{bottom:791.666667pt;}
.yb6{bottom:791.935264pt;}
.y55{bottom:792.706667pt;}
.yb5{bottom:802.668704pt;}
.y161{bottom:804.466667pt;}
.y125{bottom:805.026667pt;}
.y3{bottom:805.081333pt;}
.y6c{bottom:808.706667pt;}
.y23{bottom:809.426667pt;}
.yb4{bottom:812.424016pt;}
.y160{bottom:817.266667pt;}
.y124{bottom:819.426667pt;}
.yb3{bottom:822.179328pt;}
.y54{bottom:824.706667pt;}
.y22{bottom:825.426667pt;}
.y15f{bottom:830.066667pt;}
.yb2{bottom:832.912768pt;}
.y123{bottom:833.826667pt;}
.y53{bottom:840.706667pt;}
.yb1{bottom:842.668080pt;}
.y15e{bottom:842.866667pt;}
.y21{bottom:844.626667pt;}
.y122{bottom:848.226667pt;}
.yb0{bottom:852.423392pt;}
.y15d{bottom:855.666667pt;}
.y52{bottom:856.706667pt;}
.y2{bottom:857.092000pt;}
.y121{bottom:862.626667pt;}
.yaf{bottom:863.156832pt;}
.y6b{bottom:868.226667pt;}
.y15c{bottom:868.466667pt;}
.y20{bottom:870.226667pt;}
.y51{bottom:872.706667pt;}
.yad{bottom:875.840000pt;}
.yae{bottom:876.816000pt;}
.y120{bottom:877.026667pt;}
.y1{bottom:879.748000pt;}
.y15b{bottom:881.266667pt;}
.yac{bottom:882.667355pt;}
.y50{bottom:888.706667pt;}
.y11f{bottom:891.426667pt;}
.yab{bottom:892.422667pt;}
.y15a{bottom:894.066667pt;}
.y1f{bottom:895.826667pt;}
.y4f{bottom:904.706667pt;}
.y9e{bottom:905.826667pt;}
.y159{bottom:906.866667pt;}
.y1e{bottom:950.706667pt;}
.y84{bottom:956.066667pt;}
.y1d{bottom:963.506667pt;}
.y83{bottom:965.666667pt;}
.h22{height:10.204000pt;}
.h1c{height:12.506667pt;}
.h19{height:16.309072pt;}
.h1e{height:21.152109pt;}
.h18{height:24.140104pt;}
.h11{height:27.218750pt;}
.h14{height:27.475000pt;}
.h12{height:27.950000pt;}
.h4{height:29.333333pt;}
.h20{height:29.941971pt;}
.h15{height:30.359375pt;}
.h17{height:31.406250pt;}
.h16{height:32.250000pt;}
.h23{height:35.112200pt;}
.h1b{height:35.347734pt;}
.h1d{height:35.572813pt;}
.hb{height:41.854167pt;}
.hc{height:41.875000pt;}
.ha{height:46.816267pt;}
.h10{height:47.109375pt;}
.hf{height:48.375000pt;}
.h3{height:51.916667pt;}
.h13{height:52.343750pt;}
.he{height:53.750000pt;}
.h2{height:59.333333pt;}
.h1f{height:60.074658pt;}
.h5{height:60.213542pt;}
.h21{height:64.170381pt;}
.hd{height:86.000000pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h1a{height:414.972000pt;}
.h9{height:1040.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:91.649333pt;}
.wc{width:97.224000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:643.840000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:812.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x2f{left:7.024000pt;}
.x42{left:11.333333pt;}
.x59{left:20.996000pt;}
.x1c{left:73.866667pt;}
.x45{left:81.522667pt;}
.x24{left:85.306667pt;}
.x6a{left:90.909600pt;}
.xb{left:92.746667pt;}
.x1e{left:93.706667pt;}
.x2b{left:96.732953pt;}
.xe{left:98.026667pt;}
.x44{left:99.770667pt;}
.xc{left:103.626667pt;}
.x61{left:106.266667pt;}
.x1f{left:111.386667pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x62{left:123.066667pt;}
.x18{left:125.074133pt;}
.x36{left:127.490647pt;}
.x13{left:130.516267pt;}
.x3a{left:141.271753pt;}
.x35{left:142.416280pt;}
.x6b{left:145.226667pt;}
.x37{left:150.428033pt;}
.x33{left:152.744687pt;}
.x5{left:154.760000pt;}
.xd{left:161.482667pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x6c{left:189.226667pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x11{left:199.026667pt;}
.x3e{left:203.038667pt;}
.x3d{left:204.186667pt;}
.xf{left:213.626667pt;}
.x1d{left:215.226667pt;}
.x25{left:216.906667pt;}
.x12{left:223.630667pt;}
.x5c{left:225.466667pt;}
.x27{left:235.786667pt;}
.x6d{left:238.426667pt;}
.x5d{left:242.346667pt;}
.x2e{left:249.116851pt;}
.x16{left:274.746667pt;}
.x17{left:289.786667pt;}
.x49{left:309.662693pt;}
.x47{left:317.241427pt;}
.x48{left:318.315880pt;}
.x38{left:361.555427pt;}
.x5e{left:363.226667pt;}
.x32{left:365.015320pt;}
.x31{left:368.463187pt;}
.x3f{left:370.755787pt;}
.x5f{left:380.026667pt;}
.x34{left:382.036000pt;}
.x20{left:406.268800pt;}
.x10{left:412.373333pt;}
.x4e{left:419.955213pt;}
.x4a{left:422.144527pt;}
.x6e{left:423.205333pt;}
.x1b{left:425.127867pt;}
.x68{left:442.106667pt;}
.x23{left:444.095200pt;}
.x64{left:447.146667pt;}
.x67{left:448.106667pt;}
.x30{left:452.029333pt;}
.x21{left:456.106667pt;}
.x46{left:461.074667pt;}
.x26{left:462.906667pt;}
.x43{left:464.842673pt;}
.x2a{left:468.848000pt;}
.x3b{left:471.740700pt;}
.x22{left:473.786667pt;}
.x3c{left:477.493193pt;}
.x63{left:488.826667pt;}
.x4b{left:493.514667pt;}
.x5b{left:507.618667pt;}
.x66{left:511.706667pt;}
.x69{left:513.546667pt;}
.x58{left:519.016000pt;}
.x4c{left:527.036000pt;}
.x4d{left:531.362593pt;}
.x57{left:533.463533pt;}
.x55{left:537.799720pt;}
.x56{left:539.958220pt;}
.x28{left:550.506667pt;}
.x19{left:553.226667pt;}
.x40{left:554.149333pt;}
.x39{left:566.965333pt;}
.x1a{left:569.066667pt;}
.x14{left:586.826667pt;}
.x29{left:588.266667pt;}
.x5a{left:590.936000pt;}
.x2c{left:597.514667pt;}
.x15{left:601.626667pt;}
.x4f{left:624.341180pt;}
.x2d{left:630.176000pt;}
.x53{left:639.460273pt;}
.x41{left:644.937333pt;}
.x54{left:649.197507pt;}
.x52{left:652.440053pt;}
.x51{left:661.083647pt;}
.x50{left:665.419833pt;}
.x65{left:668.026667pt;}
.xa{left:703.146667pt;}
.x60{left:717.706667pt;}
}




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