
    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_58e5cfa72e17c1d0e0ce2a67.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_840bb9b6201b7e41872fd07d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_cc66b246542e3b7e1de35b1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8a7bcce5e96f717e8e4adb22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_26d32c582e678b0b6639211e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_609ff38b6beee7eba11be4f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_748e4881089b813357c655ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_32c8a784ce6915280a95a425.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_32c8a784ce6915280a95a425.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_32c8a784ce6915280a95a425.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_32c8a784ce6915280a95a425.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_aff058f4bb8944c72f1c1d26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_87027c966735841955937368.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aff058f4bb8944c72f1c1d26.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_87027c966735841955937368.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_aff058f4bb8944c72f1c1d26.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_87027c966735841955937368.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_aff058f4bb8944c72f1c1d26.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_87027c966735841955937368.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_32c8a784ce6915280a95a425.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_aff058f4bb8944c72f1c1d26.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a1c3ec90402acf8279d88332.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.035000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_237d21bc42165da097637755.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7efbc1d912b74d8150002a80.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_45c80c80b4085c265bf9b5fe.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_132d57bedb07846e56f4354c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_d2998d6c5ed5d738e264f1e9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_6872f60e45f90423cf1167c1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6b6a9b4aef176776401fef0b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_0c85f3cfcc6a3267814f8231.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2fe4dcef6c634363316712ae.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f2ee89f492a74066850e0bda.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f7ab2c8a006592042eaee8fb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_745c17398bcdf76f44ca11f7.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_405e1f7e19ee7df4da395e9f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_9bc3487f3c516f4a75bd19f6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_79eea2e7fb794c90fa1a9e95.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.861328;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,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);}
.m1{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.382651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382651,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-54.468000px;}
.v11{vertical-align:-40.548000px;}
.v17{vertical-align:-38.856000px;}
.vc{vertical-align:-35.862000px;}
.v10{vertical-align:-33.642000px;}
.v2{vertical-align:-26.028000px;}
.vf{vertical-align:-24.678000px;}
.v28{vertical-align:-21.258000px;}
.v25{vertical-align:-17.934000px;}
.vd{vertical-align:-14.946000px;}
.v4{vertical-align:-10.794000px;}
.v3{vertical-align:-8.970000px;}
.v16{vertical-align:-5.982000px;}
.v9{vertical-align:-3.438000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:5.514000px;}
.v13{vertical-align:8.964000px;}
.va{vertical-align:14.478000px;}
.v15{vertical-align:16.068000px;}
.v27{vertical-align:17.928000px;}
.v5{vertical-align:21.696000px;}
.v21{vertical-align:23.538000px;}
.v12{vertical-align:24.678000px;}
.v1{vertical-align:26.028000px;}
.v26{vertical-align:30.054000px;}
.v2a{vertical-align:31.800000px;}
.ve{vertical-align:39.156000px;}
.v1b{vertical-align:40.440000px;}
.v2b{vertical-align:45.312000px;}
.v20{vertical-align:48.420000px;}
.vb{vertical-align:50.808000px;}
.v23{vertical-align:56.646000px;}
.v1c{vertical-align:62.130000px;}
.v22{vertical-align:69.030000px;}
.v24{vertical-align:77.034000px;}
.v7{vertical-align:81.360000px;}
.v1a{vertical-align:84.288000px;}
.v1f{vertical-align:94.968000px;}
.v29{vertical-align:102.216000px;}
.v1e{vertical-align:107.358000px;}
.v1d{vertical-align:125.292000px;}
.v19{vertical-align:134.928000px;}
.v6{vertical-align:140.472000px;}
.v14{vertical-align:151.890000px;}
.lsbc{letter-spacing:-0.081563px;}
.lsbe{letter-spacing:-0.045154px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000062px;}
.ls56{letter-spacing:0.000113px;}
.ls6e{letter-spacing:0.000300px;}
.ls38{letter-spacing:0.000538px;}
.ls3d{letter-spacing:0.000564px;}
.ls80{letter-spacing:0.000843px;}
.ls86{letter-spacing:0.000993px;}
.ls72{letter-spacing:0.001120px;}
.ls41{letter-spacing:0.001140px;}
.ls77{letter-spacing:0.002012px;}
.ls2a{letter-spacing:0.002175px;}
.ls8d{letter-spacing:0.002234px;}
.ls22{letter-spacing:0.002245px;}
.ls2d{letter-spacing:0.002446px;}
.ls20{letter-spacing:0.002469px;}
.lsf{letter-spacing:0.002646px;}
.ls39{letter-spacing:0.002793px;}
.lsaf{letter-spacing:0.003172px;}
.ls13{letter-spacing:0.003175px;}
.ls74{letter-spacing:0.003181px;}
.lsa{letter-spacing:0.003269px;}
.ls9b{letter-spacing:0.003962px;}
.ls9e{letter-spacing:0.004200px;}
.lsb2{letter-spacing:0.004583px;}
.ls54{letter-spacing:0.005781px;}
.ls27{letter-spacing:0.006062px;}
.ls8a{letter-spacing:0.006993px;}
.lsbd{letter-spacing:0.132044px;}
.ls30{letter-spacing:0.458387px;}
.ls91{letter-spacing:0.464387px;}
.ls64{letter-spacing:1.006868px;}
.ls60{letter-spacing:1.012868px;}
.ls7c{letter-spacing:1.612648px;}
.ls71{letter-spacing:1.655249px;}
.lsa4{letter-spacing:1.659172px;}
.ls7d{letter-spacing:1.661249px;}
.ls50{letter-spacing:1.661781px;}
.ls3c{letter-spacing:2.143908px;}
.ls59{letter-spacing:2.149908px;}
.ls4{letter-spacing:2.315522px;}
.ls48{letter-spacing:2.624368px;}
.ls5f{letter-spacing:2.750175px;}
.ls42{letter-spacing:2.983140px;}
.lsb{letter-spacing:2.984525px;}
.lsb3{letter-spacing:2.984845px;}
.ls3{letter-spacing:2.985234px;}
.ls1a{letter-spacing:2.988615px;}
.ls21{letter-spacing:2.989140px;}
.ls88{letter-spacing:2.990234px;}
.lsd{letter-spacing:2.990525px;}
.ls2c{letter-spacing:2.991954px;}
.ls66{letter-spacing:3.441652px;}
.ls62{letter-spacing:3.447652px;}
.ls63{letter-spacing:4.000868px;}
.ls8b{letter-spacing:4.272579px;}
.lsa6{letter-spacing:4.276379px;}
.ls4f{letter-spacing:4.278579px;}
.lsb9{letter-spacing:4.398538px;}
.ls37{letter-spacing:4.416113px;}
.ls45{letter-spacing:4.422113px;}
.lsb5{letter-spacing:4.708200px;}
.ls6b{letter-spacing:4.817039px;}
.ls6c{letter-spacing:4.817662px;}
.ls3a{letter-spacing:4.823039px;}
.ls36{letter-spacing:4.823662px;}
.ls98{letter-spacing:5.402908px;}
.ls6f{letter-spacing:5.913564px;}
.ls6a{letter-spacing:5.919564px;}
.lsad{letter-spacing:5.920010px;}
.ls57{letter-spacing:5.975870px;}
.ls2{letter-spacing:5.991030px;}
.ls69{letter-spacing:6.240990px;}
.ls75{letter-spacing:7.172012px;}
.ls7e{letter-spacing:7.176843px;}
.ls7f{letter-spacing:8.237251px;}
.ls34{letter-spacing:8.298312px;}
.ls76{letter-spacing:8.551120px;}
.ls19{letter-spacing:9.962338px;}
.ls8e{letter-spacing:10.160525px;}
.ls95{letter-spacing:12.077306px;}
.ls9a{letter-spacing:12.467306px;}
.ls4e{letter-spacing:12.566469px;}
.ls9c{letter-spacing:12.947197px;}
.ls65{letter-spacing:12.953373px;}
.ls3f{letter-spacing:13.278538px;}
.ls35{letter-spacing:13.281269px;}
.ls2f{letter-spacing:13.284538px;}
.lsb0{letter-spacing:13.287269px;}
.lsbf{letter-spacing:13.449600px;}
.ls67{letter-spacing:13.569061px;}
.ls49{letter-spacing:13.803269px;}
.ls61{letter-spacing:14.376113px;}
.ls3b{letter-spacing:14.382113px;}
.ls46{letter-spacing:14.824349px;}
.ls94{letter-spacing:14.943900px;}
.ls26{letter-spacing:14.948245px;}
.lsaa{letter-spacing:15.140245px;}
.ls90{letter-spacing:15.422105px;}
.ls96{letter-spacing:15.500408px;}
.lse{letter-spacing:15.813269px;}
.lsc{letter-spacing:15.819269px;}
.ls58{letter-spacing:15.935870px;}
.ls4a{letter-spacing:15.949908px;}
.lsae{letter-spacing:16.059269px;}
.ls1e{letter-spacing:16.262685px;}
.ls97{letter-spacing:16.267140px;}
.lsa5{letter-spacing:16.329269px;}
.ls12{letter-spacing:16.386062px;}
.ls9f{letter-spacing:16.528641px;}
.ls9d{letter-spacing:16.599269px;}
.ls25{letter-spacing:16.601607px;}
.ls31{letter-spacing:16.602538px;}
.ls24{letter-spacing:16.604245px;}
.ls2e{letter-spacing:16.605269px;}
.ls53{letter-spacing:16.610245px;}
.ls85{letter-spacing:16.617269px;}
.ls51{letter-spacing:16.617617px;}
.lsb8{letter-spacing:16.770538px;}
.ls17{letter-spacing:16.916469px;}
.ls18{letter-spacing:16.922400px;}
.ls99{letter-spacing:17.211723px;}
.ls9{letter-spacing:17.366685px;}
.lsa9{letter-spacing:17.634062px;}
.ls5a{letter-spacing:17.986200px;}
.ls3e{letter-spacing:17.992200px;}
.ls7a{letter-spacing:18.017549px;}
.lsbb{letter-spacing:18.351109px;}
.ls7b{letter-spacing:18.385120px;}
.ls5c{letter-spacing:18.453269px;}
.ls5e{letter-spacing:18.488823px;}
.ls83{letter-spacing:18.656823px;}
.lsa1{letter-spacing:18.780538px;}
.ls68{letter-spacing:18.860685px;}
.ls1f{letter-spacing:19.136469px;}
.ls11{letter-spacing:19.274400px;}
.ls7{letter-spacing:19.307519px;}
.ls40{letter-spacing:19.352175px;}
.lsb6{letter-spacing:19.540200px;}
.ls5b{letter-spacing:19.568469px;}
.ls8c{letter-spacing:19.591140px;}
.lsac{letter-spacing:19.676245px;}
.ls29{letter-spacing:19.794538px;}
.ls81{letter-spacing:20.120525px;}
.ls92{letter-spacing:20.390685px;}
.lsa2{letter-spacing:20.398641px;}
.lsba{letter-spacing:20.443255px;}
.ls4b{letter-spacing:20.489039px;}
.lsab{letter-spacing:20.583269px;}
.ls5d{letter-spacing:20.612685px;}
.lsb7{letter-spacing:20.751564px;}
.lsa8{letter-spacing:21.590400px;}
.ls55{letter-spacing:21.619140px;}
.ls47{letter-spacing:21.730200px;}
.lsa0{letter-spacing:21.768615px;}
.ls89{letter-spacing:22.047269px;}
.ls10{letter-spacing:22.265374px;}
.ls1d{letter-spacing:22.700525px;}
.ls28{letter-spacing:22.789140px;}
.ls33{letter-spacing:23.612446px;}
.ls4d{letter-spacing:23.661269px;}
.lsa7{letter-spacing:24.578525px;}
.ls4c{letter-spacing:24.858312px;}
.ls6{letter-spacing:25.404630px;}
.ls1c{letter-spacing:25.433607px;}
.ls2b{letter-spacing:25.549140px;}
.lsa3{letter-spacing:25.669140px;}
.ls84{letter-spacing:26.958796px;}
.ls15{letter-spacing:27.732538px;}
.ls14{letter-spacing:27.738062px;}
.ls1b{letter-spacing:28.429140px;}
.ls73{letter-spacing:28.534200px;}
.ls87{letter-spacing:28.536579px;}
.ls8{letter-spacing:29.884200px;}
.ls93{letter-spacing:30.236525px;}
.ls79{letter-spacing:31.254312px;}
.ls32{letter-spacing:49.810200px;}
.ls52{letter-spacing:49.816200px;}
.ls43{letter-spacing:52.801140px;}
.ls44{letter-spacing:59.768338px;}
.lsb4{letter-spacing:59.776200px;}
.ls6d{letter-spacing:96.606113px;}
.ls70{letter-spacing:156.438300px;}
.ls23{letter-spacing:162.724200px;}
.ls1{letter-spacing:164.439234px;}
.ls0{letter-spacing:164.442786px;}
.ls8f{letter-spacing:246.087181px;}
.ls78{letter-spacing:301.281181px;}
.lsb1{letter-spacing:302.133269px;}
.ls82{letter-spacing:377.900338px;}
.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;}
}
.wsbf{word-spacing:-74.599949px;}
.wsbc{word-spacing:-59.775600px;}
.wsb8{word-spacing:-47.324343px;}
.ws120{word-spacing:-43.166478px;}
.wsa0{word-spacing:-38.937826px;}
.wsd1{word-spacing:-33.223278px;}
.wsa6{word-spacing:-31.633157px;}
.wsb7{word-spacing:-29.015076px;}
.wsf5{word-spacing:-28.993692px;}
.wsa1{word-spacing:-28.955301px;}
.wsb9{word-spacing:-25.654781px;}
.ws121{word-spacing:-22.338654px;}
.ws123{word-spacing:-22.320209px;}
.ws16f{word-spacing:-17.932800px;}
.ws2{word-spacing:-17.932500px;}
.wsa3{word-spacing:-16.605662px;}
.wsb1{word-spacing:-15.685117px;}
.wsa5{word-spacing:-13.531962px;}
.ws194{word-spacing:-13.449600px;}
.wsbb{word-spacing:-12.397459px;}
.ws124{word-spacing:-11.519550px;}
.ws14a{word-spacing:-9.828763px;}
.ws14e{word-spacing:-9.515191px;}
.ws14c{word-spacing:-8.270770px;}
.wse8{word-spacing:-5.846054px;}
.ws13d{word-spacing:-4.059062px;}
.ws12a{word-spacing:-3.586536px;}
.wsd5{word-spacing:-3.526760px;}
.wsf4{word-spacing:-3.335478px;}
.wsde{word-spacing:-3.227882px;}
.ws1b2{word-spacing:-3.120307px;}
.ws113{word-spacing:-2.929004px;}
.ws11d{word-spacing:-2.869229px;}
.ws11e{word-spacing:-2.859866px;}
.ws141{word-spacing:-2.809453px;}
.ws169{word-spacing:-2.749678px;}
.ws183{word-spacing:-2.689920px;}
.wsf2{word-spacing:-2.689902px;}
.ws111{word-spacing:-2.630126px;}
.ws83{word-spacing:-2.570351px;}
.ws9c{word-spacing:-2.510575px;}
.ws122{word-spacing:-2.450800px;}
.wsce{word-spacing:-2.391024px;}
.ws18{word-spacing:-2.331402px;}
.ws59{word-spacing:-2.271473px;}
.ws190{word-spacing:-2.259533px;}
.ws58{word-spacing:-2.252214px;}
.ws164{word-spacing:-2.211697px;}
.ws171{word-spacing:-2.205734px;}
.ws152{word-spacing:-2.151922px;}
.ws1b6{word-spacing:-2.098138px;}
.ws188{word-spacing:-2.044339px;}
.ws5b{word-spacing:-2.032370px;}
.ws186{word-spacing:-1.990541px;}
.wsc5{word-spacing:-1.972595px;}
.ws9{word-spacing:-1.972554px;}
.ws37{word-spacing:-1.913195px;}
.ws86{word-spacing:-1.912819px;}
.ws6f{word-spacing:-1.853044px;}
.ws56{word-spacing:-1.793268px;}
.ws19{word-spacing:-1.793161px;}
.ws2d{word-spacing:-1.733562px;}
.ws1a4{word-spacing:-1.721549px;}
.wsd6{word-spacing:-1.673717px;}
.ws2b{word-spacing:-1.667676px;}
.ws16d{word-spacing:-1.613941px;}
.wscd{word-spacing:-1.554166px;}
.ws1a2{word-spacing:-1.506355px;}
.ws3d{word-spacing:-1.494390px;}
.ws1b5{word-spacing:-1.452557px;}
.ws7b{word-spacing:-1.434614px;}
.ws7a{word-spacing:-1.423217px;}
.ws14b{word-spacing:-1.398758px;}
.ws139{word-spacing:-1.374839px;}
.wsea{word-spacing:-1.315063px;}
.ws1b{word-spacing:-1.255577px;}
.ws99{word-spacing:-1.255288px;}
.wsfe{word-spacing:-1.195512px;}
.ws9e{word-spacing:-1.135736px;}
.ws43{word-spacing:-1.076004px;}
.ws173{word-spacing:-1.075968px;}
.ws97{word-spacing:-1.075961px;}
.ws172{word-spacing:-1.022170px;}
.ws156{word-spacing:-1.016185px;}
.ws151{word-spacing:-0.956410px;}
.ws20{word-spacing:-0.896730px;}
.ws94{word-spacing:-0.896634px;}
.ws174{word-spacing:-0.860774px;}
.ws8a{word-spacing:-0.836858px;}
.ws23{word-spacing:-0.836713px;}
.ws17e{word-spacing:-0.806976px;}
.ws12e{word-spacing:-0.777083px;}
.ws62{word-spacing:-0.717307px;}
.ws145{word-spacing:-0.657532px;}
.wsdb{word-spacing:-0.597756px;}
.ws19c{word-spacing:-0.537984px;}
.wsc1{word-spacing:-0.537980px;}
.ws16e{word-spacing:-0.478205px;}
.wse2{word-spacing:-0.418429px;}
.ws1a3{word-spacing:-0.376589px;}
.ws2a{word-spacing:-0.376518px;}
.ws63{word-spacing:-0.358654px;}
.ws18b{word-spacing:-0.322790px;}
.ws21{word-spacing:-0.299129px;}
.ws147{word-spacing:-0.298878px;}
.ws17d{word-spacing:-0.268992px;}
.ws108{word-spacing:-0.239102px;}
.ws17c{word-spacing:-0.237667px;}
.ws13b{word-spacing:-0.179327px;}
.ws6d{word-spacing:-0.119551px;}
.ws135{word-spacing:-0.109691px;}
.ws1a7{word-spacing:-0.107597px;}
.ws136{word-spacing:-0.107297px;}
.ws42{word-spacing:-0.059778px;}
.ws68{word-spacing:-0.059776px;}
.wsc{word-spacing:-0.059718px;}
.wsba{word-spacing:-0.047820px;}
.wsf0{word-spacing:-0.041843px;}
.wsaf{word-spacing:-0.015471px;}
.wse4{word-spacing:-0.004158px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:0.000258px;}
.ws1a{word-spacing:0.000299px;}
.wse5{word-spacing:0.001049px;}
.wsb0{word-spacing:0.001208px;}
.ws5{word-spacing:0.001350px;}
.wse9{word-spacing:0.002167px;}
.ws3{word-spacing:0.002760px;}
.ws11f{word-spacing:0.007208px;}
.wscf{word-spacing:0.011955px;}
.ws61{word-spacing:0.059776px;}
.ws36{word-spacing:0.059778px;}
.ws18d{word-spacing:0.107597px;}
.ws45{word-spacing:0.119551px;}
.ws8{word-spacing:0.119676px;}
.ws18c{word-spacing:0.161395px;}
.ws13c{word-spacing:0.164938px;}
.wsab{word-spacing:0.179327px;}
.ws101{word-spacing:0.191282px;}
.wsad{word-spacing:0.239102px;}
.ws150{word-spacing:0.268992px;}
.ws92{word-spacing:0.298878px;}
.wsac{word-spacing:0.310833px;}
.wseb{word-spacing:0.358654px;}
.ws9d{word-spacing:0.418429px;}
.ws10f{word-spacing:0.478205px;}
.ws12c{word-spacing:0.537980px;}
.ws6a{word-spacing:0.657532px;}
.ws178{word-spacing:0.699379px;}
.ws69{word-spacing:0.701278px;}
.ws64{word-spacing:0.717307px;}
.ws1f{word-spacing:0.717336px;}
.ws71{word-spacing:0.777083px;}
.wsa2{word-spacing:0.872134px;}
.wsd0{word-spacing:0.882428px;}
.ws9f{word-spacing:0.896634px;}
.ws132{word-spacing:0.956410px;}
.ws3b{word-spacing:1.016166px;}
.ws87{word-spacing:1.016185px;}
.ws177{word-spacing:1.022170px;}
.ws167{word-spacing:1.075961px;}
.ws33{word-spacing:1.076124px;}
.ws6e{word-spacing:1.135736px;}
.ws1d{word-spacing:1.136141px;}
.ws127{word-spacing:1.172700px;}
.ws18a{word-spacing:1.183565px;}
.ws128{word-spacing:1.195512px;}
.ws14{word-spacing:1.195560px;}
.wsaa{word-spacing:1.255288px;}
.ws7d{word-spacing:1.315063px;}
.ws44{word-spacing:1.315116px;}
.ws12d{word-spacing:1.374839px;}
.ws4d{word-spacing:1.434614px;}
.wsa8{word-spacing:1.442134px;}
.wsa4{word-spacing:1.446882px;}
.wsd8{word-spacing:1.494390px;}
.wsc4{word-spacing:1.613941px;}
.ws2c{word-spacing:1.667676px;}
.ws14f{word-spacing:1.667750px;}
.ws104{word-spacing:1.673717px;}
.ws8e{word-spacing:1.733492px;}
.ws16{word-spacing:1.733741px;}
.ws3a{word-spacing:1.793161px;}
.ws93{word-spacing:1.793268px;}
.ws1a9{word-spacing:1.829146px;}
.ws70{word-spacing:1.912819px;}
.wsb{word-spacing:1.913195px;}
.ws191{word-spacing:1.936742px;}
.ws13{word-spacing:1.972554px;}
.ws46{word-spacing:1.972595px;}
.ws19e{word-spacing:1.990541px;}
.wsff{word-spacing:2.032370px;}
.ws184{word-spacing:2.044339px;}
.wsc0{word-spacing:2.073104px;}
.wsbe{word-spacing:2.078134px;}
.ws126{word-spacing:2.082967px;}
.ws5d{word-spacing:2.092146px;}
.ws170{word-spacing:2.098138px;}
.ws146{word-spacing:2.151922px;}
.ws17{word-spacing:2.152008px;}
.ws57{word-spacing:2.211697px;}
.ws39{word-spacing:2.211786px;}
.ws3c{word-spacing:2.211965px;}
.ws187{word-spacing:2.259533px;}
.wsdf{word-spacing:2.331248px;}
.ws9b{word-spacing:2.391024px;}
.ws9a{word-spacing:2.415266px;}
.ws82{word-spacing:2.450800px;}
.ws185{word-spacing:2.528525px;}
.ws1ac{word-spacing:2.560454px;}
.ws10{word-spacing:2.570215px;}
.ws10d{word-spacing:2.570351px;}
.ws1ad{word-spacing:2.582323px;}
.ws60{word-spacing:2.630126px;}
.wsa7{word-spacing:2.642082px;}
.ws65{word-spacing:2.689902px;}
.ws193{word-spacing:2.689920px;}
.ws32{word-spacing:2.690010px;}
.ws66{word-spacing:2.699222px;}
.ws130{word-spacing:2.701857px;}
.ws192{word-spacing:2.718269px;}
.ws10e{word-spacing:2.749678px;}
.ws3e{word-spacing:2.749788px;}
.wse0{word-spacing:2.809453px;}
.wsf9{word-spacing:2.855818px;}
.ws11{word-spacing:2.868985px;}
.wsfa{word-spacing:2.869229px;}
.ws175{word-spacing:2.905114px;}
.ws143{word-spacing:2.929004px;}
.ws40{word-spacing:2.929122px;}
.wsd9{word-spacing:2.988780px;}
.ws13e{word-spacing:3.048556px;}
.ws7f{word-spacing:3.108331px;}
.ws129{word-spacing:3.168107px;}
.ws176{word-spacing:3.174106px;}
.ws24{word-spacing:3.227833px;}
.ws181{word-spacing:3.281702px;}
.ws4a{word-spacing:3.287658px;}
.ws149{word-spacing:3.347434px;}
.ws1ab{word-spacing:3.389299px;}
.wsc2{word-spacing:3.396025px;}
.wsc3{word-spacing:3.407209px;}
.wsfb{word-spacing:3.428557px;}
.ws8f{word-spacing:3.466985px;}
.ws25{word-spacing:3.467244px;}
.wsda{word-spacing:3.496324px;}
.ws38{word-spacing:3.526663px;}
.wsd7{word-spacing:3.526760px;}
.ws16b{word-spacing:3.586536px;}
.ws22{word-spacing:3.586620px;}
.ws4f{word-spacing:3.646312px;}
.ws1a8{word-spacing:3.701827px;}
.wsd2{word-spacing:3.706087px;}
.ws18f{word-spacing:3.712090px;}
.ws10c{word-spacing:3.765863px;}
.ws48{word-spacing:3.825638px;}
.ws5e{word-spacing:3.885414px;}
.ws51{word-spacing:3.945190px;}
.wsc6{word-spacing:4.004965px;}
.ws49{word-spacing:4.064741px;}
.ws198{word-spacing:4.088678px;}
.ws1a5{word-spacing:4.142477px;}
.ws7e{word-spacing:4.184292px;}
.ws6{word-spacing:4.184878px;}
.ws81{word-spacing:4.244068px;}
.ws1aa{word-spacing:4.250074px;}
.ws5f{word-spacing:4.303843px;}
.ws1a1{word-spacing:4.303872px;}
.ws17f{word-spacing:4.357670px;}
.ws85{word-spacing:4.423394px;}
.ws31{word-spacing:4.483051px;}
.ws165{word-spacing:4.483170px;}
.ws90{word-spacing:4.542946px;}
.wsd4{word-spacing:4.602721px;}
.ws52{word-spacing:4.662497px;}
.ws8d{word-spacing:4.722272px;}
.ws1a0{word-spacing:4.734259px;}
.wsb5{word-spacing:4.750301px;}
.wsae{word-spacing:4.782048px;}
.ws148{word-spacing:4.841824px;}
.ws7{word-spacing:4.841898px;}
.ws67{word-spacing:4.901599px;}
.ws35{word-spacing:4.901916px;}
.ws179{word-spacing:4.949453px;}
.wsfc{word-spacing:4.961375px;}
.ws11b{word-spacing:5.021150px;}
.ws196{word-spacing:5.057050px;}
.wsc7{word-spacing:5.080926px;}
.ws197{word-spacing:5.110848px;}
.wsfd{word-spacing:5.140702px;}
.ws54{word-spacing:5.200477px;}
.wsf3{word-spacing:5.260253px;}
.ws137{word-spacing:5.320028px;}
.wsdc{word-spacing:5.379804px;}
.ws115{word-spacing:5.439580px;}
.ws50{word-spacing:5.499355px;}
.ws140{word-spacing:5.559131px;}
.ws4b{word-spacing:5.618906px;}
.wsb6{word-spacing:5.678682px;}
.ws105{word-spacing:5.738458px;}
.ws7c{word-spacing:5.858009px;}
.ws6b{word-spacing:5.917784px;}
.ws189{word-spacing:5.917824px;}
.ws4c{word-spacing:5.977560px;}
.ws14d{word-spacing:6.025421px;}
.ws55{word-spacing:6.037336px;}
.wse7{word-spacing:6.060428px;}
.ws1a6{word-spacing:6.079219px;}
.ws161{word-spacing:6.097111px;}
.ws107{word-spacing:6.156887px;}
.wsc9{word-spacing:6.216662px;}
.ws41{word-spacing:6.276690px;}
.wsee{word-spacing:6.336214px;}
.ws72{word-spacing:6.395989px;}
.ws114{word-spacing:6.455765px;}
.ws1b1{word-spacing:6.509606px;}
.ws1b0{word-spacing:6.563405px;}
.ws34{word-spacing:6.575341px;}
.ws77{word-spacing:6.635092px;}
.ws117{word-spacing:6.694867px;}
.ws53{word-spacing:6.754643px;}
.wsd{word-spacing:6.754794px;}
.wsb3{word-spacing:6.814418px;}
.wse{word-spacing:6.814752px;}
.ws17b{word-spacing:6.832397px;}
.ws166{word-spacing:6.874194px;}
.ws17a{word-spacing:6.886195px;}
.ws8b{word-spacing:6.927456px;}
.ws8c{word-spacing:6.933970px;}
.ws1af{word-spacing:6.939994px;}
.ws112{word-spacing:6.993745px;}
.ws13a{word-spacing:7.053521px;}
.ws109{word-spacing:7.102208px;}
.ws10a{word-spacing:7.113296px;}
.ws163{word-spacing:7.162738px;}
.ws11a{word-spacing:7.173072px;}
.ws106{word-spacing:7.326900px;}
.ws4e{word-spacing:7.352399px;}
.ws19b{word-spacing:7.370381px;}
.ws47{word-spacing:7.412174px;}
.ws182{word-spacing:7.477978px;}
.ws195{word-spacing:7.531776px;}
.wsb4{word-spacing:7.591501px;}
.wsf8{word-spacing:7.651277px;}
.ws12b{word-spacing:7.711052px;}
.wscb{word-spacing:7.770828px;}
.ws15{word-spacing:7.771200px;}
.ws1b4{word-spacing:7.800768px;}
.wscc{word-spacing:7.830604px;}
.ws1b3{word-spacing:7.842106px;}
.ws180{word-spacing:7.854566px;}
.ws73{word-spacing:7.950155px;}
.wsf6{word-spacing:8.007137px;}
.ws76{word-spacing:8.009930px;}
.ws144{word-spacing:8.069706px;}
.ws19d{word-spacing:8.069760px;}
.ws1c{word-spacing:8.189407px;}
.ws2f{word-spacing:8.189586px;}
.ws5a{word-spacing:8.249033px;}
.ws30{word-spacing:8.249424px;}
.ws88{word-spacing:8.308808px;}
.wsf{word-spacing:8.309441px;}
.ws12{word-spacing:8.368860px;}
.ws3f{word-spacing:8.368920px;}
.ws16c{word-spacing:8.428360px;}
.ws91{word-spacing:8.488135px;}
.wsa9{word-spacing:8.667462px;}
.wsc8{word-spacing:8.727238px;}
.ws1e{word-spacing:8.727648px;}
.ws75{word-spacing:8.787013px;}
.ws162{word-spacing:8.846789px;}
.ws78{word-spacing:8.906564px;}
.ws79{word-spacing:8.947745px;}
.wsdd{word-spacing:8.966340px;}
.ws18e{word-spacing:8.984333px;}
.ws1ae{word-spacing:9.038131px;}
.ws100{word-spacing:9.108428px;}
.ws142{word-spacing:9.145667px;}
.ws80{word-spacing:9.205442px;}
.ws96{word-spacing:9.324994px;}
.ws154{word-spacing:9.384769px;}
.ws199{word-spacing:9.414720px;}
.ws74{word-spacing:9.444545px;}
.wsca{word-spacing:9.683647px;}
.ws16a{word-spacing:9.803198px;}
.ws13f{word-spacing:9.922750px;}
.ws168{word-spacing:10.102076px;}
.ws19a{word-spacing:10.114099px;}
.ws12f{word-spacing:10.221628px;}
.ws155{word-spacing:10.281403px;}
.ws138{word-spacing:10.400954px;}
.wsa{word-spacing:10.401133px;}
.ws5c{word-spacing:10.460730px;}
.ws119{word-spacing:10.879159px;}
.ws10b{word-spacing:10.938935px;}
.ws84{word-spacing:11.178037px;}
.wsf7{word-spacing:11.536691px;}
.ws103{word-spacing:12.074671px;}
.wse1{word-spacing:12.134447px;}
.wsed{word-spacing:12.253998px;}
.ws116{word-spacing:12.313774px;}
.ws11c{word-spacing:12.427430px;}
.ws6c{word-spacing:12.552876px;}
.ws89{word-spacing:12.851754px;}
.ws153{word-spacing:13.090856px;}
.wse3{word-spacing:13.210408px;}
.wsec{word-spacing:13.509286px;}
.ws118{word-spacing:14.047266px;}
.ws125{word-spacing:14.346144px;}
.ws102{word-spacing:14.704798px;}
.ws26{word-spacing:15.266860px;}
.ws29{word-spacing:15.266929px;}
.ws28{word-spacing:15.280699px;}
.ws27{word-spacing:15.312830px;}
.ws98{word-spacing:16.498066px;}
.ws19f{word-spacing:17.592077px;}
.wse6{word-spacing:17.932423px;}
.ws157{word-spacing:20.550989px;}
.ws95{word-spacing:25.823059px;}
.ws2e{word-spacing:28.215216px;}
.ws4{word-spacing:32.223589px;}
.wsbd{word-spacing:38.040146px;}
.wsb2{word-spacing:43.167807px;}
.ws160{word-spacing:58.009277px;}
.ws133{word-spacing:59.779208px;}
.ws158{word-spacing:61.528867px;}
.wsd3{word-spacing:80.250146px;}
.wsf1{word-spacing:89.054877px;}
.ws15f{word-spacing:93.972000px;}
.ws15a{word-spacing:93.985805px;}
.ws15b{word-spacing:95.262000px;}
.ws15c{word-spacing:95.276966px;}
.ws159{word-spacing:106.560000px;}
.ws15e{word-spacing:137.885299px;}
.ws110{word-spacing:143.695219px;}
.ws15d{word-spacing:147.714000px;}
.wsef{word-spacing:278.942877px;}
.ws131{word-spacing:339.794877px;}
.ws134{word-spacing:757.365042px;}
._2b{margin-left:-815.031618px;}
._2c{margin-left:-682.715610px;}
._2d{margin-left:-344.267185px;}
._2e{margin-left:-343.127059px;}
._1e{margin-left:-36.536264px;}
._1f{margin-left:-19.925938px;}
._21{margin-left:-16.653105px;}
._20{margin-left:-14.824170px;}
._42{margin-left:-7.746970px;}
._14{margin-left:-6.275307px;}
._3{margin-left:-5.021100px;}
._5{margin-left:-3.168606px;}
._1{margin-left:-1.549798px;}
._e{width:1.961389px;}
._25{width:2.984390px;}
._4{width:4.218717px;}
._2{width:6.246388px;}
._23{width:8.538551px;}
._15{width:11.895344px;}
._17{width:13.569061px;}
._16{width:15.243909px;}
._f{width:16.676760px;}
._b{width:17.694600px;}
._28{width:18.899718px;}
._d{width:19.965792px;}
._1b{width:21.102237px;}
._c{width:22.231432px;}
._8{width:23.433275px;}
._7{width:24.742527px;}
._0{width:26.683302px;}
._29{width:27.974981px;}
._11{width:29.053602px;}
._10{width:31.022086px;}
._1c{width:32.099996px;}
._6{width:33.472711px;}
._13{width:35.267604px;}
._1d{width:36.582667px;}
._18{width:37.598852px;}
._26{width:38.615038px;}
._9{width:39.747834px;}
._a{width:41.725044px;}
._12{width:43.697718px;}
._1a{width:44.748540px;}
._19{width:46.326090px;}
._2a{width:47.641153px;}
._43{width:48.954078px;}
._44{width:51.774835px;}
._22{width:55.288562px;}
._30{width:80.493504px;}
._32{width:99.777263px;}
._3b{width:107.435405px;}
._3e{width:108.694090px;}
._34{width:111.045036px;}
._24{width:120.009460px;}
._31{width:149.301999px;}
._3d{width:151.388698px;}
._3c{width:161.126208px;}
._41{width:164.820787px;}
._40{width:174.575808px;}
._36{width:204.980646px;}
._35{width:206.901289px;}
._27{width:209.274376px;}
._2f{width:214.826049px;}
._33{width:306.270566px;}
._39{width:507.754267px;}
._38{width:524.092187px;}
._37{width:561.634654px;}
._3a{width:633.753178px;}
._3f{width:840.030531px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.038092px;}
.fs9{font-size:27.266881px;}
.fsf{font-size:29.887800px;}
.fs7{font-size:32.911679px;}
.fs13{font-size:36.012060px;}
.fse{font-size:41.842800px;}
.fs14{font-size:42.302412px;}
.fs12{font-size:43.851000px;}
.fs5{font-size:45.901563px;}
.fs6{font-size:45.901770px;}
.fs2{font-size:47.820000px;}
.fs10{font-size:47.820600px;}
.fs3{font-size:53.796000px;}
.fs11{font-size:53.798400px;}
.fsb{font-size:59.775600px;}
.fs4{font-size:59.778000px;}
.fsc{font-size:65.753400px;}
.fs1{font-size:71.730000px;}
.fsd{font-size:71.731200px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:0.273054px;}
.y31{bottom:0.273105px;}
.y37{bottom:0.679712px;}
.y3a{bottom:0.679763px;}
.y34{bottom:0.679919px;}
.y3d{bottom:1.585496px;}
.y36{bottom:1.914427px;}
.y39{bottom:1.914479px;}
.y33{bottom:1.914634px;}
.y2d{bottom:2.320361px;}
.y2c{bottom:2.448638px;}
.y3c{bottom:3.385110px;}
.y1dc{bottom:11.357409px;}
.y1e1{bottom:29.019718px;}
.y1e2{bottom:29.139759px;}
.y1db{bottom:61.106369px;}
.y54{bottom:76.668000px;}
.y172{bottom:107.404500px;}
.y1da{bottom:110.362004px;}
.y1a1{bottom:117.880500px;}
.y1d5{bottom:121.498500px;}
.y2a{bottom:121.500000px;}
.y171{bottom:123.841500px;}
.yad{bottom:124.734000px;}
.y21e{bottom:124.735500px;}
.y1f2{bottom:129.928500px;}
.y252{bottom:137.938500px;}
.y287{bottom:138.531000px;}
.y29{bottom:139.432500px;}
.y1d4{bottom:141.045000px;}
.yac{bottom:142.668000px;}
.y1f1{bottom:147.861000px;}
.y170{bottom:152.482500px;}
.y251{bottom:154.377000px;}
.y286{bottom:154.969500px;}
.y1a0{bottom:155.970000px;}
.y28{bottom:157.365000px;}
.y89{bottom:158.977500px;}
.y1d9{bottom:160.374070px;}
.y1d8{bottom:160.582362px;}
.y1f0{bottom:165.795000px;}
.yab{bottom:171.367500px;}
.y285{bottom:171.406500px;}
.y21d{bottom:171.508500px;}
.y250{bottom:172.495500px;}
.y19f{bottom:173.902500px;}
.y27{bottom:175.297500px;}
.y1e6{bottom:176.517508px;}
.y88{bottom:176.910000px;}
.y1ef{bottom:183.727500px;}
.y284{bottom:187.845000px;}
.y24f{bottom:188.934000px;}
.yaa{bottom:189.300000px;}
.y19e{bottom:191.835000px;}
.y26{bottom:193.230000px;}
.y53{bottom:193.231500px;}
.y1d3{bottom:194.842500px;}
.y87{bottom:194.844000px;}
.y122{bottom:198.900000px;}
.y21c{bottom:200.347500px;}
.y1ee{bottom:201.660000px;}
.y1c8{bottom:202.197000px;}
.y24e{bottom:205.372500px;}
.ydf{bottom:205.566000px;}
.y283{bottom:205.779000px;}
.y1d7{bottom:207.853740px;}
.y121{bottom:209.151000px;}
.y19d{bottom:209.767500px;}
.y1e0{bottom:210.690558px;}
.yfd{bottom:211.162500px;}
.y25{bottom:211.164000px;}
.y86{bottom:212.776500px;}
.ya9{bottom:218.001000px;}
.y1ed{bottom:219.592500px;}
.y282{bottom:222.216000px;}
.ydc{bottom:223.198500px;}
.y24d{bottom:223.491000px;}
.ydb{bottom:227.142000px;}
.y19c{bottom:227.700000px;}
.y24{bottom:229.096500px;}
.y21b{bottom:229.188000px;}
.y85{bottom:230.709000px;}
.y1c7{bottom:230.764500px;}
.ya8{bottom:235.933500px;}
.yde{bottom:237.394500px;}
.y1ec{bottom:237.525000px;}
.y281{bottom:238.654500px;}
.y24c{bottom:239.929500px;}
.ydd{bottom:241.878000px;}
.y19b{bottom:245.634000px;}
.y23{bottom:247.029000px;}
.y84{bottom:248.641500px;}
.y1c6{bottom:248.697000px;}
.y120{bottom:249.699000px;}
.ya7{bottom:253.866000px;}
.y1eb{bottom:255.457500px;}
.y24b{bottom:256.368000px;}
.y147{bottom:256.516500px;}
.y280{bottom:256.588500px;}
.y11f{bottom:262.359000px;}
.y21a{bottom:263.218500px;}
.y19a{bottom:263.566500px;}
.y22{bottom:264.961500px;}
.y52{bottom:265.275000px;}
.yda{bottom:265.651500px;}
.y83{bottom:266.574000px;}
.y1c5{bottom:266.629500px;}
.y24a{bottom:272.806500px;}
.y27f{bottom:273.025500px;}
.y1ea{bottom:273.391500px;}
.y219{bottom:281.151000px;}
.y199{bottom:281.499000px;}
.ya6{bottom:282.565500px;}
.y21{bottom:282.894000px;}
.y51{bottom:283.207500px;}
.y82{bottom:284.506500px;}
.y1c4{bottom:284.563500px;}
.y146{bottom:287.968500px;}
.y27e{bottom:289.464000px;}
.y249{bottom:290.925000px;}
.yfc{bottom:291.861000px;}
.yd9{bottom:296.035500px;}
.y11e{bottom:298.944000px;}
.y218{bottom:299.083500px;}
.y198{bottom:299.431500px;}
.yd8{bottom:299.655000px;}
.ya5{bottom:300.499500px;}
.y20{bottom:300.828000px;}
.y50{bottom:301.140000px;}
.y1d2{bottom:302.439000px;}
.y81{bottom:302.440500px;}
.y1c3{bottom:302.496000px;}
.y1e9{bottom:305.655000px;}
.y145{bottom:305.901000px;}
.y27d{bottom:305.902500px;}
.y248{bottom:307.363500px;}
.y11d{bottom:316.876500px;}
.y217{bottom:317.016000px;}
.y197{bottom:317.364000px;}
.ya4{bottom:318.432000px;}
.y1f{bottom:318.760500px;}
.y4f{bottom:319.072500px;}
.y80{bottom:320.373000px;}
.y1c2{bottom:320.428500px;}
.yd7{bottom:320.578500px;}
.yfb{bottom:321.280500px;}
.y16f{bottom:321.678000px;}
.y1e8{bottom:322.093500px;}
.y247{bottom:323.802000px;}
.y27c{bottom:323.835000px;}
.yd6{bottom:324.198000px;}
.y11c{bottom:334.810500px;}
.y216{bottom:334.950000px;}
.y196{bottom:335.296500px;}
.ya3{bottom:336.364500px;}
.y222{bottom:336.693000px;}
.y4e{bottom:337.006500px;}
.y144{bottom:337.519500px;}
.y7f{bottom:338.305500px;}
.y1c1{bottom:338.361000px;}
.y1e7{bottom:338.532000px;}
.yfa{bottom:339.213000px;}
.y16e{bottom:339.610500px;}
.y246{bottom:340.240500px;}
.y27b{bottom:340.273500px;}
.y142{bottom:347.770500px;}
.y1e{bottom:347.800500px;}
.y11b{bottom:352.743000px;}
.y215{bottom:352.882500px;}
.y195{bottom:353.230500px;}
.y221{bottom:354.625500px;}
.y4d{bottom:354.939000px;}
.y1e5{bottom:354.970500px;}
.y7e{bottom:356.238000px;}
.y1c0{bottom:356.293500px;}
.y27a{bottom:356.712000px;}
.yf9{bottom:357.147000px;}
.y16d{bottom:357.543000px;}
.y143{bottom:357.880500px;}
.yd5{bottom:358.201500px;}
.y245{bottom:358.359000px;}
.ya2{bottom:363.877500px;}
.y11a{bottom:370.675500px;}
.y194{bottom:371.163000px;}
.y214{bottom:372.195000px;}
.y220{bottom:372.558000px;}
.y4c{bottom:372.871500px;}
.y7d{bottom:374.170500px;}
.y1bf{bottom:374.226000px;}
.y279{bottom:374.644500px;}
.y244{bottom:374.797500px;}
.yf8{bottom:375.079500px;}
.y16c{bottom:375.475500px;}
.yd4{bottom:376.134000px;}
.ya1{bottom:381.810000px;}
.y119{bottom:388.608000px;}
.y193{bottom:389.095500px;}
.y213{bottom:390.129000px;}
.y141{bottom:390.154500px;}
.y21f{bottom:390.492000px;}
.y4b{bottom:390.804000px;}
.y278{bottom:391.083000px;}
.y243{bottom:391.236000px;}
.y1d1{bottom:392.103000px;}
.y7c{bottom:392.104500px;}
.y1be{bottom:392.160000px;}
.yf7{bottom:393.012000px;}
.y16b{bottom:393.408000px;}
.yd3{bottom:394.068000px;}
.ya0{bottom:399.742500px;}
.y1d{bottom:403.540500px;}
.y118{bottom:406.540500px;}
.y192{bottom:407.028000px;}
.y277{bottom:407.521500px;}
.y242{bottom:407.674500px;}
.y212{bottom:408.061500px;}
.y140{bottom:408.088500px;}
.y4a{bottom:408.736500px;}
.y1d0{bottom:410.035500px;}
.y7b{bottom:410.037000px;}
.y1bd{bottom:410.092500px;}
.yf6{bottom:410.944500px;}
.y16a{bottom:411.340500px;}
.y9f{bottom:417.675000px;}
.y1c{bottom:421.473000px;}
.y191{bottom:424.960500px;}
.y276{bottom:425.454000px;}
.y241{bottom:425.793000px;}
.y211{bottom:425.994000px;}
.y13f{bottom:426.021000px;}
.y49{bottom:426.669000px;}
.yd2{bottom:427.224000px;}
.y7a{bottom:427.969500px;}
.y1bc{bottom:428.025000px;}
.y117{bottom:428.803500px;}
.yf5{bottom:428.877000px;}
.y169{bottom:429.274500px;}
.y116{bottom:432.424500px;}
.y1b{bottom:439.405500px;}
.y275{bottom:441.892500px;}
.y240{bottom:442.231500px;}
.yd1{bottom:442.767000px;}
.y190{bottom:442.893000px;}
.y13e{bottom:443.953500px;}
.y9e{bottom:444.574500px;}
.y48{bottom:444.915000px;}
.y79{bottom:445.902000px;}
.y1bb{bottom:445.957500px;}
.yf4{bottom:446.809500px;}
.y168{bottom:447.207000px;}
.y1a{bottom:457.338000px;}
.y274{bottom:458.331000px;}
.y23f{bottom:458.670000px;}
.yce{bottom:460.398000px;}
.y18f{bottom:461.623500px;}
.y13d{bottom:461.886000px;}
.y115{bottom:462.114000px;}
.y47{bottom:462.847500px;}
.y78{bottom:463.834500px;}
.y1ba{bottom:463.890000px;}
.yf3{bottom:464.743500px;}
.y167{bottom:465.139500px;}
.y210{bottom:465.234000px;}
.y114{bottom:465.733500px;}
.y9d{bottom:473.274000px;}
.yd0{bottom:474.595500px;}
.y23e{bottom:475.108500px;}
.y19{bottom:475.270500px;}
.y273{bottom:476.263500px;}
.ycf{bottom:479.077500px;}
.y18e{bottom:479.556000px;}
.y13c{bottom:479.818500px;}
.y46{bottom:480.781500px;}
.y77{bottom:481.767000px;}
.y1b9{bottom:481.822500px;}
.yf2{bottom:482.676000px;}
.y166{bottom:483.072000px;}
.y20f{bottom:490.920000px;}
.y9c{bottom:491.208000px;}
.y272{bottom:492.702000px;}
.y18{bottom:493.204500px;}
.y23d{bottom:493.227000px;}
.y113{bottom:496.917000px;}
.y18d{bottom:497.488500px;}
.y13b{bottom:497.752500px;}
.y45{bottom:498.714000px;}
.y1cf{bottom:499.699500px;}
.y76{bottom:499.701000px;}
.y1b8{bottom:499.756500px;}
.yf1{bottom:500.608500px;}
.y165{bottom:501.004500px;}
.ycd{bottom:504.670500px;}
.y9b{bottom:509.140500px;}
.y23c{bottom:509.665500px;}
.y17{bottom:511.137000px;}
.y20e{bottom:511.243500px;}
.y112{bottom:514.849500px;}
.y18c{bottom:515.421000px;}
.y13a{bottom:515.685000px;}
.y44{bottom:516.646500px;}
.y1ce{bottom:517.632000px;}
.y75{bottom:517.633500px;}
.y1b7{bottom:517.689000px;}
.yf0{bottom:518.541000px;}
.y164{bottom:518.938500px;}
.y271{bottom:525.579000px;}
.y23b{bottom:526.104000px;}
.y9a{bottom:527.073000px;}
.y16{bottom:529.069500px;}
.y20d{bottom:530.970000px;}
.y111{bottom:532.782000px;}
.y18b{bottom:533.353500px;}
.y139{bottom:534.138000px;}
.y43{bottom:534.579000px;}
.y74{bottom:535.566000px;}
.y1b6{bottom:535.621500px;}
.yef{bottom:536.473500px;}
.y163{bottom:536.871000px;}
.y270{bottom:542.017500px;}
.y23a{bottom:544.222500px;}
.y99{bottom:545.005500px;}
.ycc{bottom:545.811000px;}
.y15{bottom:547.002000px;}
.y20c{bottom:550.695000px;}
.y110{bottom:550.714500px;}
.y18a{bottom:551.287500px;}
.y138{bottom:552.070500px;}
.y73{bottom:553.498500px;}
.y1b5{bottom:553.554000px;}
.y1e4{bottom:554.253000px;}
.yee{bottom:554.406000px;}
.y162{bottom:554.803500px;}
.y26f{bottom:559.950000px;}
.y239{bottom:560.661000px;}
.y41{bottom:561.688500px;}
.y98{bottom:562.938000px;}
.ycb{bottom:563.743500px;}
.y14{bottom:564.934500px;}
.y42{bottom:565.237500px;}
.y10f{bottom:568.648500px;}
.y189{bottom:569.220000px;}
.y137{bottom:570.004500px;}
.y20b{bottom:570.421500px;}
.y1e3{bottom:570.690000px;}
.y72{bottom:571.431000px;}
.y1b4{bottom:571.486500px;}
.yed{bottom:572.340000px;}
.y161{bottom:572.736000px;}
.y26e{bottom:576.388500px;}
.y238{bottom:577.099500px;}
.y40{bottom:578.127000px;}
.y97{bottom:580.870500px;}
.yca{bottom:581.677500px;}
.y13{bottom:582.867000px;}
.y10e{bottom:586.581000px;}
.y1df{bottom:587.128500px;}
.y188{bottom:587.152500px;}
.y136{bottom:587.937000px;}
.y71{bottom:589.363500px;}
.y1b3{bottom:589.419000px;}
.y20a{bottom:590.148000px;}
.y160{bottom:590.668500px;}
.y26d{bottom:592.827000px;}
.y237{bottom:593.538000px;}
.y3f{bottom:594.565500px;}
.y96{bottom:598.804500px;}
.yc9{bottom:600.172500px;}
.y12{bottom:600.801000px;}
.yec{bottom:604.047000px;}
.y10d{bottom:604.513500px;}
.y187{bottom:605.085000px;}
.y135{bottom:605.869500px;}
.y1cd{bottom:607.296000px;}
.y70{bottom:607.297500px;}
.y1b2{bottom:607.353000px;}
.y15f{bottom:608.601000px;}
.y209{bottom:609.873000px;}
.y26c{bottom:610.759500px;}
.y3e{bottom:611.004000px;}
.y236{bottom:611.656500px;}
.y95{bottom:616.737000px;}
.yc8{bottom:618.106500px;}
.y11{bottom:618.733500px;}
.y10c{bottom:622.446000px;}
.y134{bottom:623.802000px;}
.y186{bottom:623.814000px;}
.y6f{bottom:625.230000px;}
.y1b1{bottom:625.285500px;}
.y15e{bottom:626.535000px;}
.y26b{bottom:627.198000px;}
.y2b{bottom:627.908020px;}
.y235{bottom:628.095000px;}
.yeb{bottom:628.317000px;}
.y208{bottom:629.599500px;}
.y94{bottom:634.669500px;}
.yc7{bottom:636.039000px;}
.y10{bottom:636.666000px;}
.y10b{bottom:640.378500px;}
.y133{bottom:641.734500px;}
.y185{bottom:641.746500px;}
.y6e{bottom:643.162500px;}
.y1b0{bottom:643.218000px;}
.y26a{bottom:643.636500px;}
.y15d{bottom:644.467500px;}
.y234{bottom:644.533500px;}
.y207{bottom:649.326000px;}
.y32{bottom:650.643007px;}
.y93{bottom:652.602000px;}
.yc6{bottom:653.971500px;}
.yf{bottom:654.598500px;}
.y10a{bottom:658.311000px;}
.y3b{bottom:658.901858px;}
.y132{bottom:659.668500px;}
.y184{bottom:659.680500px;}
.yea{bottom:660.024000px;}
.y233{bottom:660.972000px;}
.y6d{bottom:661.095000px;}
.y1af{bottom:661.150500px;}
.y269{bottom:661.569000px;}
.y38{bottom:663.834306px;}
.y206{bottom:669.649500px;}
.y92{bottom:670.534500px;}
.yc5{bottom:671.904000px;}
.ye{bottom:672.531000px;}
.y15c{bottom:672.861000px;}
.y109{bottom:676.245000px;}
.y131{bottom:677.601000px;}
.y183{bottom:677.613000px;}
.ye9{bottom:677.956500px;}
.y268{bottom:678.007500px;}
.y6c{bottom:679.027500px;}
.y1ae{bottom:679.083000px;}
.y232{bottom:679.090500px;}
.y35{bottom:686.977917px;}
.y91{bottom:688.467000px;}
.y205{bottom:689.374500px;}
.yd{bottom:690.465000px;}
.y108{bottom:694.177500px;}
.y267{bottom:694.446000px;}
.y231{bottom:695.529000px;}
.y130{bottom:695.533500px;}
.y182{bottom:695.545500px;}
.y6b{bottom:696.960000px;}
.yc4{bottom:706.137000px;}
.y90{bottom:706.401000px;}
.y1ad{bottom:707.476500px;}
.y15b{bottom:707.530500px;}
.yc{bottom:708.397500px;}
.ye8{bottom:708.817500px;}
.y230{bottom:711.967500px;}
.y107{bottom:712.110000px;}
.y266{bottom:712.378500px;}
.y181{bottom:713.478000px;}
.yc1{bottom:714.027000px;}
.y1cc{bottom:714.892500px;}
.yc0{bottom:718.510500px;}
.y8f{bottom:724.333500px;}
.ye7{bottom:724.359000px;}
.y12f{bottom:724.447500px;}
.y204{bottom:724.626000px;}
.y15a{bottom:725.463000px;}
.y6a{bottom:725.472000px;}
.yb{bottom:726.330000px;}
.yc3{bottom:727.656000px;}
.ybd{bottom:728.224500px;}
.y30{bottom:728.583036px;}
.y2e{bottom:728.710795px;}
.y265{bottom:728.817000px;}
.y22f{bottom:730.086000px;}
.y180{bottom:731.410500px;}
.y1cb{bottom:732.826500px;}
.y106{bottom:740.503500px;}
.ye4{bottom:741.991500px;}
.y1ac{bottom:742.023000px;}
.y8e{bottom:742.266000px;}
.y159{bottom:743.395500px;}
.ya{bottom:744.262500px;}
.y264{bottom:745.255500px;}
.ybf{bottom:745.410000px;}
.y22e{bottom:746.524500px;}
.y203{bottom:748.185000px;}
.yc2{bottom:749.176500px;}
.y17f{bottom:749.343000px;}
.ybe{bottom:749.893500px;}
.ye6{bottom:756.187500px;}
.y1ab{bottom:759.955500px;}
.y69{bottom:760.198500px;}
.ye5{bottom:760.671000px;}
.y158{bottom:761.329500px;}
.y1ca{bottom:761.338500px;}
.y263{bottom:761.694000px;}
.y12e{bottom:761.877000px;}
.y9{bottom:762.195000px;}
.y22d{bottom:762.963000px;}
.y17e{bottom:767.277000px;}
.y202{bottom:768.510000px;}
.ye3{bottom:774.141000px;}
.y1aa{bottom:777.888000px;}
.y8d{bottom:778.131000px;}
.y68{bottom:778.132500px;}
.y157{bottom:779.262000px;}
.y22c{bottom:779.400000px;}
.y262{bottom:779.626500px;}
.y12d{bottom:779.809500px;}
.ybc{bottom:785.040000px;}
.y17d{bottom:785.209500px;}
.y105{bottom:787.992000px;}
.y201{bottom:788.235000px;}
.ye0{bottom:791.773500px;}
.y1a9{bottom:795.820500px;}
.y8c{bottom:796.063500px;}
.y67{bottom:796.065000px;}
.y12c{bottom:797.742000px;}
.y8{bottom:798.708000px;}
.ybb{bottom:802.972500px;}
.y17c{bottom:803.142000px;}
.y155{bottom:804.397500px;}
.y104{bottom:805.924500px;}
.ye2{bottom:805.969500px;}
.y22b{bottom:806.485500px;}
.y200{bottom:807.961500px;}
.ye1{bottom:810.453000px;}
.y261{bottom:812.503500px;}
.y1a8{bottom:813.753000px;}
.y66{bottom:813.997500px;}
.y12b{bottom:815.676000px;}
.y156{bottom:817.546500px;}
.yba{bottom:820.906500px;}
.y17b{bottom:821.074500px;}
.y1de{bottom:821.290500px;}
.y152{bottom:822.028500px;}
.y103{bottom:823.857000px;}
.y1ff{bottom:827.686500px;}
.y260{bottom:828.942000px;}
.y1a7{bottom:831.685500px;}
.y65{bottom:831.930000px;}
.y12a{bottom:833.608500px;}
.y154{bottom:836.226000px;}
.y1dd{bottom:837.729000px;}
.y22a{bottom:838.657500px;}
.yb9{bottom:838.839000px;}
.y17a{bottom:839.007000px;}
.y153{bottom:840.709500px;}
.y102{bottom:843.726000px;}
.y25f{bottom:846.874500px;}
.y1fe{bottom:847.413000px;}
.y64{bottom:849.862500px;}
.y129{bottom:851.541000px;}
.y1d6{bottom:854.167500px;}
.y229{bottom:856.590000px;}
.yb8{bottom:856.771500px;}
.y179{bottom:856.939500px;}
.y7{bottom:861.532500px;}
.y101{bottom:861.658500px;}
.y1a6{bottom:862.387500px;}
.y25e{bottom:863.313000px;}
.y151{bottom:863.392500px;}
.y1fd{bottom:867.139500px;}
.y63{bottom:867.795000px;}
.y6{bottom:868.039500px;}
.y128{bottom:869.473500px;}
.y1a5{bottom:873.715500px;}
.y228{bottom:874.524000px;}
.yb7{bottom:874.704000px;}
.y178{bottom:874.873500px;}
.y25d{bottom:879.751500px;}
.y150{bottom:881.325000px;}
.y100{bottom:882.580500px;}
.y8b{bottom:885.727500px;}
.y62{bottom:885.729000px;}
.y5{bottom:886.638000px;}
.y127{bottom:887.406000px;}
.y1fc{bottom:887.463000px;}
.y227{bottom:892.456500px;}
.yb6{bottom:892.636500px;}
.y177{bottom:892.806000px;}
.y4{bottom:893.145000px;}
.y25c{bottom:897.684000px;}
.y14f{bottom:899.257500px;}
.y1c9{bottom:903.660000px;}
.y61{bottom:903.661500px;}
.yff{bottom:904.555500px;}
.y126{bottom:905.340000px;}
.y1fb{bottom:907.188000px;}
.y226{bottom:910.389000px;}
.yb5{bottom:910.569000px;}
.y3{bottom:911.743500px;}
.y25b{bottom:914.122500px;}
.y1a4{bottom:916.240500px;}
.y14e{bottom:917.190000px;}
.y60{bottom:921.594000px;}
.y176{bottom:921.996000px;}
.yfe{bottom:922.488000px;}
.y1fa{bottom:926.914500px;}
.y225{bottom:928.321500px;}
.yb4{bottom:928.503000px;}
.y25a{bottom:930.561000px;}
.y125{bottom:933.610500px;}
.y1a3{bottom:934.173000px;}
.y14d{bottom:935.124000px;}
.y124{bottom:938.763000px;}
.y5f{bottom:939.526500px;}
.y2{bottom:945.816000px;}
.y224{bottom:946.254000px;}
.yb3{bottom:946.435500px;}
.y1f9{bottom:946.641000px;}
.y259{bottom:946.999500px;}
.y123{bottom:952.869000px;}
.y5e{bottom:957.459000px;}
.y175{bottom:960.250500px;}
.y14c{bottom:962.022000px;}
.y1a2{bottom:963.748500px;}
.yb2{bottom:964.368000px;}
.y258{bottom:964.932000px;}
.y1f8{bottom:966.366000px;}
.y223{bottom:974.833500px;}
.y5d{bottom:975.391500px;}
.y174{bottom:978.183000px;}
.y257{bottom:981.370500px;}
.yb1{bottom:982.300500px;}
.y1f7{bottom:986.092500px;}
.y14b{bottom:988.128000px;}
.y8a{bottom:993.324000px;}
.y5c{bottom:993.325500px;}
.y173{bottom:996.117000px;}
.y256{bottom:997.809000px;}
.yb0{bottom:1000.233000px;}
.y148{bottom:1005.760500px;}
.y1f6{bottom:1005.819000px;}
.y5b{bottom:1011.258000px;}
.y1{bottom:1012.600500px;}
.y255{bottom:1015.741500px;}
.yaf{bottom:1018.165500px;}
.y14a{bottom:1019.956500px;}
.y149{bottom:1024.440000px;}
.y1f5{bottom:1025.544000px;}
.y5a{bottom:1029.190500px;}
.y254{bottom:1032.180000px;}
.yae{bottom:1036.099500px;}
.y1f4{bottom:1045.867500px;}
.y59{bottom:1047.123000px;}
.y253{bottom:1048.618500px;}
.y58{bottom:1065.055500px;}
.y1f3{bottom:1065.594000px;}
.y57{bottom:1100.970000px;}
.y56{bottom:1122.570000px;}
.y55{bottom:1144.170000px;}
.h21{height:2.391024px;}
.he{height:8.191092px;}
.h13{height:8.210747px;}
.h10{height:8.258851px;}
.hf{height:8.574888px;}
.hc{height:10.494384px;}
.ha{height:10.750420px;}
.h12{height:17.278569px;}
.h14{height:20.450160px;}
.h11{height:24.683759px;}
.h40{height:24.951715px;}
.h42{height:29.310118px;}
.h23{height:29.415488px;}
.h3e{height:30.383090px;}
.h24{height:31.382100px;}
.h5{height:31.800300px;}
.h16{height:31.901028px;}
.hb{height:34.426172px;}
.hd{height:34.426327px;}
.h46{height:36.744307px;}
.h15{height:37.011648px;}
.h39{height:37.013299px;}
.h44{height:37.228493px;}
.h47{height:37.283299px;}
.h45{height:37.307299px;}
.h43{height:37.313299px;}
.h17{height:37.495812px;}
.h8{height:40.828374px;}
.h19{height:41.125613px;}
.h9{height:41.127264px;}
.h2b{height:41.364715px;}
.h1b{height:44.831700px;}
.h1a{height:45.501353px;}
.h6{height:49.350240px;}
.h7{height:49.637160px;}
.h1c{height:49.637990px;}
.h3{height:49.710240px;}
.h3a{height:50.541024px;}
.h1e{height:51.105488px;}
.h18{height:51.264000px;}
.h33{height:52.953488px;}
.h1f{height:53.072100px;}
.h1d{height:53.078100px;}
.h26{height:53.199024px;}
.h28{height:56.060100px;}
.h2a{height:56.066100px;}
.h2{height:57.828300px;}
.h4{height:57.834300px;}
.h25{height:59.309700px;}
.h2d{height:59.315700px;}
.h1{height:59.564592px;}
.h37{height:61.436100px;}
.h38{height:62.759700px;}
.h27{height:70.538100px;}
.h2c{height:70.544100px;}
.h22{height:83.751024px;}
.h32{height:85.271700px;}
.h3c{height:86.437613px;}
.h35{height:86.673024px;}
.h2f{height:86.679024px;}
.h30{height:93.512100px;}
.h3b{height:104.607024px;}
.h34{height:121.865700px;}
.h36{height:127.677024px;}
.h31{height:127.683024px;}
.h2e{height:137.319024px;}
.h20{height:142.863024px;}
.h29{height:154.281024px;}
.h41{height:186.944578px;}
.h3d{height:225.832650px;}
.h3f{height:226.075710px;}
.h0{height:1188.000000px;}
.w7{width:7.330913px;}
.w6{width:7.340741px;}
.w5{width:7.341258px;}
.w3{width:58.872309px;}
.w4{width:69.623246px;}
.w2{width:75.253975px;}
.w1{width:107.250234px;}
.wa{width:720.223650px;}
.w9{width:720.241200px;}
.w8{width:720.252675px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:1.298854px;}
.x13{left:3.726905px;}
.x5f{left:13.612559px;}
.x5b{left:14.642945px;}
.x60{left:43.424667px;}
.x5e{left:50.873037px;}
.xd{left:75.168000px;}
.x1{left:77.796000px;}
.x23{left:79.179000px;}
.x66{left:81.892500px;}
.x40{left:83.799000px;}
.x59{left:86.305500px;}
.x2a{left:88.828500px;}
.x64{left:90.112500px;}
.xc{left:93.100500px;}
.x2f{left:96.007500px;}
.x2e{left:97.545000px;}
.x3f{left:100.572000px;}
.x58{left:101.974500px;}
.x65{left:105.055500px;}
.x62{left:109.086000px;}
.x2{left:110.595000px;}
.x43{left:119.007000px;}
.x1f{left:120.342000px;}
.x31{left:123.159000px;}
.x32{left:124.272000px;}
.x30{left:130.257000px;}
.x45{left:131.701500px;}
.x6{left:139.933500px;}
.x50{left:145.723500px;}
.x33{left:147.234000px;}
.x2c{left:153.283500px;}
.x61{left:161.947500px;}
.x41{left:166.479000px;}
.x48{left:167.911500px;}
.x20{left:173.962500px;}
.x57{left:175.599000px;}
.x46{left:180.156000px;}
.x25{left:182.781000px;}
.x21{left:187.245000px;}
.x24{left:191.214000px;}
.x2d{left:194.512500px;}
.x27{left:210.126000px;}
.x28{left:211.240500px;}
.x26{left:217.225500px;}
.xb{left:218.992500px;}
.x9{left:223.132500px;}
.x52{left:225.222000px;}
.x51{left:231.207000px;}
.x29{left:234.202500px;}
.x47{left:241.023000px;}
.x5a{left:252.406356px;}
.x63{left:263.605500px;}
.x53{left:268.255500px;}
.x7{left:297.952500px;}
.x49{left:301.564500px;}
.x42{left:305.715000px;}
.x8{left:331.324500px;}
.x54{left:335.964000px;}
.x44{left:353.185500px;}
.xa{left:359.004000px;}
.x2b{left:360.129000px;}
.x5c{left:375.211082px;}
.x5{left:386.346000px;}
.x22{left:412.119000px;}
.x5d{left:423.140224px;}
.x1d{left:442.681500px;}
.x3{left:460.449000px;}
.x19{left:463.293000px;}
.x1e{left:478.237500px;}
.x1c{left:481.225500px;}
.x3d{left:487.506000px;}
.xe{left:492.790965px;}
.x4{left:503.469000px;}
.x10{left:516.957686px;}
.x3e{left:522.100500px;}
.x12{left:536.530754px;}
.x14{left:539.075082px;}
.x4c{left:549.711000px;}
.x35{left:550.840500px;}
.x36{left:551.953500px;}
.x34{left:557.940000px;}
.x16{left:573.348770px;}
.x55{left:577.290000px;}
.x38{left:578.752500px;}
.x17{left:582.967976px;}
.x37{left:594.987000px;}
.x39{left:601.947000px;}
.x3a{left:603.060000px;}
.x15{left:608.800743px;}
.x3b{left:626.023500px;}
.x4a{left:634.264500px;}
.x4d{left:638.478000px;}
.x1b{left:643.407000px;}
.x1a{left:644.806500px;}
.x4e{left:663.423000px;}
.x4b{left:668.908500px;}
.x56{left:671.152500px;}
.x4f{left:695.304000px;}
.xf{left:699.161892px;}
.x11{left:701.977257px;}
.x3c{left:800.244000px;}
@media print{
.v8{vertical-align:-48.416000pt;}
.v11{vertical-align:-36.042667pt;}
.v17{vertical-align:-34.538667pt;}
.vc{vertical-align:-31.877333pt;}
.v10{vertical-align:-29.904000pt;}
.v2{vertical-align:-23.136000pt;}
.vf{vertical-align:-21.936000pt;}
.v28{vertical-align:-18.896000pt;}
.v25{vertical-align:-15.941333pt;}
.vd{vertical-align:-13.285333pt;}
.v4{vertical-align:-9.594667pt;}
.v3{vertical-align:-7.973333pt;}
.v16{vertical-align:-5.317333pt;}
.v9{vertical-align:-3.056000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:4.901333pt;}
.v13{vertical-align:7.968000pt;}
.va{vertical-align:12.869333pt;}
.v15{vertical-align:14.282667pt;}
.v27{vertical-align:15.936000pt;}
.v5{vertical-align:19.285333pt;}
.v21{vertical-align:20.922667pt;}
.v12{vertical-align:21.936000pt;}
.v1{vertical-align:23.136000pt;}
.v26{vertical-align:26.714667pt;}
.v2a{vertical-align:28.266667pt;}
.ve{vertical-align:34.805333pt;}
.v1b{vertical-align:35.946667pt;}
.v2b{vertical-align:40.277333pt;}
.v20{vertical-align:43.040000pt;}
.vb{vertical-align:45.162667pt;}
.v23{vertical-align:50.352000pt;}
.v1c{vertical-align:55.226667pt;}
.v22{vertical-align:61.360000pt;}
.v24{vertical-align:68.474667pt;}
.v7{vertical-align:72.320000pt;}
.v1a{vertical-align:74.922667pt;}
.v1f{vertical-align:84.416000pt;}
.v29{vertical-align:90.858667pt;}
.v1e{vertical-align:95.429333pt;}
.v1d{vertical-align:111.370667pt;}
.v19{vertical-align:119.936000pt;}
.v6{vertical-align:124.864000pt;}
.v14{vertical-align:135.013333pt;}
.lsbc{letter-spacing:-0.072500pt;}
.lsbe{letter-spacing:-0.040137pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000055pt;}
.ls56{letter-spacing:0.000100pt;}
.ls6e{letter-spacing:0.000267pt;}
.ls38{letter-spacing:0.000479pt;}
.ls3d{letter-spacing:0.000501pt;}
.ls80{letter-spacing:0.000749pt;}
.ls86{letter-spacing:0.000882pt;}
.ls72{letter-spacing:0.000996pt;}
.ls41{letter-spacing:0.001014pt;}
.ls77{letter-spacing:0.001788pt;}
.ls2a{letter-spacing:0.001933pt;}
.ls8d{letter-spacing:0.001986pt;}
.ls22{letter-spacing:0.001995pt;}
.ls2d{letter-spacing:0.002174pt;}
.ls20{letter-spacing:0.002195pt;}
.lsf{letter-spacing:0.002352pt;}
.ls39{letter-spacing:0.002482pt;}
.lsaf{letter-spacing:0.002820pt;}
.ls13{letter-spacing:0.002823pt;}
.ls74{letter-spacing:0.002827pt;}
.lsa{letter-spacing:0.002906pt;}
.ls9b{letter-spacing:0.003521pt;}
.ls9e{letter-spacing:0.003733pt;}
.lsb2{letter-spacing:0.004074pt;}
.ls54{letter-spacing:0.005138pt;}
.ls27{letter-spacing:0.005388pt;}
.ls8a{letter-spacing:0.006216pt;}
.lsbd{letter-spacing:0.117373pt;}
.ls30{letter-spacing:0.407455pt;}
.ls91{letter-spacing:0.412788pt;}
.ls64{letter-spacing:0.894993pt;}
.ls60{letter-spacing:0.900327pt;}
.ls7c{letter-spacing:1.433465pt;}
.ls71{letter-spacing:1.471333pt;}
.lsa4{letter-spacing:1.474820pt;}
.ls7d{letter-spacing:1.476666pt;}
.ls50{letter-spacing:1.477138pt;}
.ls3c{letter-spacing:1.905696pt;}
.ls59{letter-spacing:1.911029pt;}
.ls4{letter-spacing:2.058242pt;}
.ls48{letter-spacing:2.332772pt;}
.ls5f{letter-spacing:2.444600pt;}
.ls42{letter-spacing:2.651680pt;}
.lsb{letter-spacing:2.652911pt;}
.lsb3{letter-spacing:2.653196pt;}
.ls3{letter-spacing:2.653541pt;}
.ls1a{letter-spacing:2.656546pt;}
.ls21{letter-spacing:2.657014pt;}
.ls88{letter-spacing:2.657986pt;}
.lsd{letter-spacing:2.658245pt;}
.ls2c{letter-spacing:2.659514pt;}
.ls66{letter-spacing:3.059246pt;}
.ls62{letter-spacing:3.064580pt;}
.ls63{letter-spacing:3.556327pt;}
.ls8b{letter-spacing:3.797848pt;}
.lsa6{letter-spacing:3.801225pt;}
.ls4f{letter-spacing:3.803181pt;}
.lsb9{letter-spacing:3.909812pt;}
.ls37{letter-spacing:3.925433pt;}
.ls45{letter-spacing:3.930767pt;}
.lsb5{letter-spacing:4.185066pt;}
.ls6b{letter-spacing:4.281812pt;}
.ls6c{letter-spacing:4.282367pt;}
.ls3a{letter-spacing:4.287146pt;}
.ls36{letter-spacing:4.287700pt;}
.ls98{letter-spacing:4.802585pt;}
.ls6f{letter-spacing:5.256502pt;}
.ls6a{letter-spacing:5.261835pt;}
.lsad{letter-spacing:5.262231pt;}
.ls57{letter-spacing:5.311884pt;}
.ls2{letter-spacing:5.325360pt;}
.ls69{letter-spacing:5.547547pt;}
.ls75{letter-spacing:6.375121pt;}
.ls7e{letter-spacing:6.379416pt;}
.ls7f{letter-spacing:7.322001pt;}
.ls34{letter-spacing:7.376277pt;}
.ls76{letter-spacing:7.600996pt;}
.ls19{letter-spacing:8.855412pt;}
.ls8e{letter-spacing:9.031578pt;}
.ls95{letter-spacing:10.735383pt;}
.ls9a{letter-spacing:11.082050pt;}
.ls4e{letter-spacing:11.170195pt;}
.ls9c{letter-spacing:11.508619pt;}
.ls65{letter-spacing:11.514109pt;}
.ls3f{letter-spacing:11.803145pt;}
.ls35{letter-spacing:11.805573pt;}
.ls2f{letter-spacing:11.808479pt;}
.lsb0{letter-spacing:11.810906pt;}
.lsbf{letter-spacing:11.955200pt;}
.ls67{letter-spacing:12.061388pt;}
.ls49{letter-spacing:12.269573pt;}
.ls61{letter-spacing:12.778767pt;}
.ls3b{letter-spacing:12.784100pt;}
.ls46{letter-spacing:13.177199pt;}
.ls94{letter-spacing:13.283467pt;}
.ls26{letter-spacing:13.287329pt;}
.lsaa{letter-spacing:13.457995pt;}
.ls90{letter-spacing:13.708538pt;}
.ls96{letter-spacing:13.778140pt;}
.lse{letter-spacing:14.056239pt;}
.lsc{letter-spacing:14.061573pt;}
.ls58{letter-spacing:14.165218pt;}
.ls4a{letter-spacing:14.177696pt;}
.lsae{letter-spacing:14.274906pt;}
.ls1e{letter-spacing:14.455720pt;}
.ls97{letter-spacing:14.459680pt;}
.lsa5{letter-spacing:14.514906pt;}
.ls12{letter-spacing:14.565388pt;}
.ls9f{letter-spacing:14.692125pt;}
.ls9d{letter-spacing:14.754906pt;}
.ls25{letter-spacing:14.756984pt;}
.ls31{letter-spacing:14.757812pt;}
.ls24{letter-spacing:14.759329pt;}
.ls2e{letter-spacing:14.760239pt;}
.ls53{letter-spacing:14.764662pt;}
.ls85{letter-spacing:14.770906pt;}
.ls51{letter-spacing:14.771215pt;}
.lsb8{letter-spacing:14.907145pt;}
.ls17{letter-spacing:15.036861pt;}
.ls18{letter-spacing:15.042133pt;}
.ls99{letter-spacing:15.299310pt;}
.ls9{letter-spacing:15.437053pt;}
.lsa9{letter-spacing:15.674721pt;}
.ls5a{letter-spacing:15.987733pt;}
.ls3e{letter-spacing:15.993066pt;}
.ls7a{letter-spacing:16.015599pt;}
.lsbb{letter-spacing:16.312097pt;}
.ls7b{letter-spacing:16.342329pt;}
.ls5c{letter-spacing:16.402906pt;}
.ls5e{letter-spacing:16.434509pt;}
.ls83{letter-spacing:16.583842pt;}
.lsa1{letter-spacing:16.693812pt;}
.ls68{letter-spacing:16.765053pt;}
.ls1f{letter-spacing:17.010195pt;}
.ls11{letter-spacing:17.132800pt;}
.ls7{letter-spacing:17.162239pt;}
.ls40{letter-spacing:17.201933pt;}
.lsb6{letter-spacing:17.369066pt;}
.ls5b{letter-spacing:17.394195pt;}
.ls8c{letter-spacing:17.414347pt;}
.lsac{letter-spacing:17.489995pt;}
.ls29{letter-spacing:17.595145pt;}
.ls81{letter-spacing:17.884911pt;}
.ls92{letter-spacing:18.125053pt;}
.lsa2{letter-spacing:18.132125pt;}
.lsba{letter-spacing:18.171782pt;}
.ls4b{letter-spacing:18.212479pt;}
.lsab{letter-spacing:18.296239pt;}
.ls5d{letter-spacing:18.322387pt;}
.lsb7{letter-spacing:18.445835pt;}
.lsa8{letter-spacing:19.191467pt;}
.ls55{letter-spacing:19.217014pt;}
.ls47{letter-spacing:19.315733pt;}
.lsa0{letter-spacing:19.349880pt;}
.ls89{letter-spacing:19.597573pt;}
.ls10{letter-spacing:19.791444pt;}
.ls1d{letter-spacing:20.178245pt;}
.ls28{letter-spacing:20.257014pt;}
.ls33{letter-spacing:20.988841pt;}
.ls4d{letter-spacing:21.032239pt;}
.lsa7{letter-spacing:21.847578pt;}
.ls4c{letter-spacing:22.096277pt;}
.ls6{letter-spacing:22.581893pt;}
.ls1c{letter-spacing:22.607651pt;}
.ls2b{letter-spacing:22.710347pt;}
.lsa3{letter-spacing:22.817014pt;}
.ls84{letter-spacing:23.963374pt;}
.ls15{letter-spacing:24.651145pt;}
.ls14{letter-spacing:24.656055pt;}
.ls1b{letter-spacing:25.270347pt;}
.ls73{letter-spacing:25.363733pt;}
.ls87{letter-spacing:25.365848pt;}
.ls8{letter-spacing:26.563733pt;}
.ls93{letter-spacing:26.876911pt;}
.ls79{letter-spacing:27.781610pt;}
.ls32{letter-spacing:44.275733pt;}
.ls52{letter-spacing:44.281067pt;}
.ls43{letter-spacing:46.934347pt;}
.ls44{letter-spacing:53.127412pt;}
.lsb4{letter-spacing:53.134400pt;}
.ls6d{letter-spacing:85.872100pt;}
.ls70{letter-spacing:139.056267pt;}
.ls23{letter-spacing:144.643733pt;}
.ls1{letter-spacing:146.168208pt;}
.ls0{letter-spacing:146.171365pt;}
.ls8f{letter-spacing:218.744161pt;}
.ls78{letter-spacing:267.805494pt;}
.lsb1{letter-spacing:268.562906pt;}
.ls82{letter-spacing:335.911412pt;}
.wsbf{word-spacing:-66.311066pt;}
.wsbc{word-spacing:-53.133867pt;}
.wsb8{word-spacing:-42.066082pt;}
.ws120{word-spacing:-38.370203pt;}
.wsa0{word-spacing:-34.611401pt;}
.wsd1{word-spacing:-29.531803pt;}
.wsa6{word-spacing:-28.118362pt;}
.wsb7{word-spacing:-25.791179pt;}
.wsf5{word-spacing:-25.772171pt;}
.wsa1{word-spacing:-25.738045pt;}
.wsb9{word-spacing:-22.804250pt;}
.ws121{word-spacing:-19.856581pt;}
.ws123{word-spacing:-19.840186pt;}
.ws16f{word-spacing:-15.940267pt;}
.ws2{word-spacing:-15.940000pt;}
.wsa3{word-spacing:-14.760588pt;}
.wsb1{word-spacing:-13.942327pt;}
.wsa5{word-spacing:-12.028410pt;}
.ws194{word-spacing:-11.955200pt;}
.wsbb{word-spacing:-11.019964pt;}
.ws124{word-spacing:-10.239600pt;}
.ws14a{word-spacing:-8.736678pt;}
.ws14e{word-spacing:-8.457947pt;}
.ws14c{word-spacing:-7.351795pt;}
.wse8{word-spacing:-5.196492pt;}
.ws13d{word-spacing:-3.608055pt;}
.ws12a{word-spacing:-3.188032pt;}
.wsd5{word-spacing:-3.134898pt;}
.wsf4{word-spacing:-2.964870pt;}
.wsde{word-spacing:-2.869229pt;}
.ws1b2{word-spacing:-2.773606pt;}
.ws113{word-spacing:-2.603559pt;}
.ws11d{word-spacing:-2.550426pt;}
.ws11e{word-spacing:-2.542103pt;}
.ws141{word-spacing:-2.497292pt;}
.ws169{word-spacing:-2.444158pt;}
.ws183{word-spacing:-2.391040pt;}
.wsf2{word-spacing:-2.391024pt;}
.ws111{word-spacing:-2.337890pt;}
.ws83{word-spacing:-2.284756pt;}
.ws9c{word-spacing:-2.231622pt;}
.ws122{word-spacing:-2.178489pt;}
.wsce{word-spacing:-2.125355pt;}
.ws18{word-spacing:-2.072357pt;}
.ws59{word-spacing:-2.019087pt;}
.ws190{word-spacing:-2.008474pt;}
.ws58{word-spacing:-2.001968pt;}
.ws164{word-spacing:-1.965953pt;}
.ws171{word-spacing:-1.960653pt;}
.ws152{word-spacing:-1.912819pt;}
.ws1b6{word-spacing:-1.865011pt;}
.ws188{word-spacing:-1.817190pt;}
.ws5b{word-spacing:-1.806551pt;}
.ws186{word-spacing:-1.769370pt;}
.wsc5{word-spacing:-1.753418pt;}
.ws9{word-spacing:-1.753382pt;}
.ws37{word-spacing:-1.700618pt;}
.ws86{word-spacing:-1.700284pt;}
.ws6f{word-spacing:-1.647150pt;}
.ws56{word-spacing:-1.594016pt;}
.ws19{word-spacing:-1.593921pt;}
.ws2d{word-spacing:-1.540944pt;}
.ws1a4{word-spacing:-1.530266pt;}
.wsd6{word-spacing:-1.487748pt;}
.ws2b{word-spacing:-1.482379pt;}
.ws16d{word-spacing:-1.434614pt;}
.wscd{word-spacing:-1.381481pt;}
.ws1a2{word-spacing:-1.338982pt;}
.ws3d{word-spacing:-1.328347pt;}
.ws1b5{word-spacing:-1.291162pt;}
.ws7b{word-spacing:-1.275213pt;}
.ws7a{word-spacing:-1.265082pt;}
.ws14b{word-spacing:-1.243341pt;}
.ws139{word-spacing:-1.222079pt;}
.wsea{word-spacing:-1.168945pt;}
.ws1b{word-spacing:-1.116069pt;}
.ws99{word-spacing:-1.115811pt;}
.wsfe{word-spacing:-1.062677pt;}
.ws9e{word-spacing:-1.009543pt;}
.ws43{word-spacing:-0.956448pt;}
.ws173{word-spacing:-0.956416pt;}
.ws97{word-spacing:-0.956410pt;}
.ws172{word-spacing:-0.908595pt;}
.ws156{word-spacing:-0.903276pt;}
.ws151{word-spacing:-0.850142pt;}
.ws20{word-spacing:-0.797093pt;}
.ws94{word-spacing:-0.797008pt;}
.ws174{word-spacing:-0.765133pt;}
.ws8a{word-spacing:-0.743874pt;}
.ws23{word-spacing:-0.743745pt;}
.ws17e{word-spacing:-0.717312pt;}
.ws12e{word-spacing:-0.690740pt;}
.ws62{word-spacing:-0.637606pt;}
.ws145{word-spacing:-0.584473pt;}
.wsdb{word-spacing:-0.531339pt;}
.ws19c{word-spacing:-0.478208pt;}
.wsc1{word-spacing:-0.478205pt;}
.ws16e{word-spacing:-0.425071pt;}
.wse2{word-spacing:-0.371937pt;}
.ws1a3{word-spacing:-0.334746pt;}
.ws2a{word-spacing:-0.334683pt;}
.ws63{word-spacing:-0.318803pt;}
.ws18b{word-spacing:-0.286925pt;}
.ws21{word-spacing:-0.265893pt;}
.ws147{word-spacing:-0.265669pt;}
.ws17d{word-spacing:-0.239104pt;}
.ws108{word-spacing:-0.212535pt;}
.ws17c{word-spacing:-0.211260pt;}
.ws13b{word-spacing:-0.159402pt;}
.ws6d{word-spacing:-0.106268pt;}
.ws135{word-spacing:-0.097503pt;}
.ws1a7{word-spacing:-0.095642pt;}
.ws136{word-spacing:-0.095375pt;}
.ws42{word-spacing:-0.053136pt;}
.ws68{word-spacing:-0.053134pt;}
.wsc{word-spacing:-0.053083pt;}
.wsba{word-spacing:-0.042507pt;}
.wsf0{word-spacing:-0.037194pt;}
.wsaf{word-spacing:-0.013752pt;}
.wse4{word-spacing:-0.003696pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:0.000230pt;}
.ws1a{word-spacing:0.000266pt;}
.wse5{word-spacing:0.000932pt;}
.wsb0{word-spacing:0.001074pt;}
.ws5{word-spacing:0.001200pt;}
.wse9{word-spacing:0.001926pt;}
.ws3{word-spacing:0.002453pt;}
.ws11f{word-spacing:0.006407pt;}
.wscf{word-spacing:0.010627pt;}
.ws61{word-spacing:0.053134pt;}
.ws36{word-spacing:0.053136pt;}
.ws18d{word-spacing:0.095642pt;}
.ws45{word-spacing:0.106268pt;}
.ws8{word-spacing:0.106378pt;}
.ws18c{word-spacing:0.143462pt;}
.ws13c{word-spacing:0.146612pt;}
.wsab{word-spacing:0.159402pt;}
.ws101{word-spacing:0.170028pt;}
.wsad{word-spacing:0.212535pt;}
.ws150{word-spacing:0.239104pt;}
.ws92{word-spacing:0.265669pt;}
.wsac{word-spacing:0.276296pt;}
.wseb{word-spacing:0.318803pt;}
.ws9d{word-spacing:0.371937pt;}
.ws10f{word-spacing:0.425071pt;}
.ws12c{word-spacing:0.478205pt;}
.ws6a{word-spacing:0.584473pt;}
.ws178{word-spacing:0.621670pt;}
.ws69{word-spacing:0.623358pt;}
.ws64{word-spacing:0.637606pt;}
.ws1f{word-spacing:0.637632pt;}
.ws71{word-spacing:0.690740pt;}
.wsa2{word-spacing:0.775230pt;}
.wsd0{word-spacing:0.784381pt;}
.ws9f{word-spacing:0.797008pt;}
.ws132{word-spacing:0.850142pt;}
.ws3b{word-spacing:0.903259pt;}
.ws87{word-spacing:0.903276pt;}
.ws177{word-spacing:0.908595pt;}
.ws167{word-spacing:0.956410pt;}
.ws33{word-spacing:0.956554pt;}
.ws6e{word-spacing:1.009543pt;}
.ws1d{word-spacing:1.009903pt;}
.ws127{word-spacing:1.042400pt;}
.ws18a{word-spacing:1.052058pt;}
.ws128{word-spacing:1.062677pt;}
.ws14{word-spacing:1.062720pt;}
.wsaa{word-spacing:1.115811pt;}
.ws7d{word-spacing:1.168945pt;}
.ws44{word-spacing:1.168992pt;}
.ws12d{word-spacing:1.222079pt;}
.ws4d{word-spacing:1.275213pt;}
.wsa8{word-spacing:1.281897pt;}
.wsa4{word-spacing:1.286117pt;}
.wsd8{word-spacing:1.328347pt;}
.wsc4{word-spacing:1.434614pt;}
.ws2c{word-spacing:1.482379pt;}
.ws14f{word-spacing:1.482445pt;}
.ws104{word-spacing:1.487748pt;}
.ws8e{word-spacing:1.540882pt;}
.ws16{word-spacing:1.541103pt;}
.ws3a{word-spacing:1.593921pt;}
.ws93{word-spacing:1.594016pt;}
.ws1a9{word-spacing:1.625907pt;}
.ws70{word-spacing:1.700284pt;}
.wsb{word-spacing:1.700618pt;}
.ws191{word-spacing:1.721549pt;}
.ws13{word-spacing:1.753382pt;}
.ws46{word-spacing:1.753418pt;}
.ws19e{word-spacing:1.769370pt;}
.wsff{word-spacing:1.806551pt;}
.ws184{word-spacing:1.817190pt;}
.wsc0{word-spacing:1.842759pt;}
.wsbe{word-spacing:1.847230pt;}
.ws126{word-spacing:1.851526pt;}
.ws5d{word-spacing:1.859685pt;}
.ws170{word-spacing:1.865011pt;}
.ws146{word-spacing:1.912819pt;}
.ws17{word-spacing:1.912896pt;}
.ws57{word-spacing:1.965953pt;}
.ws39{word-spacing:1.966032pt;}
.ws3c{word-spacing:1.966191pt;}
.ws187{word-spacing:2.008474pt;}
.wsdf{word-spacing:2.072221pt;}
.ws9b{word-spacing:2.125355pt;}
.ws9a{word-spacing:2.146903pt;}
.ws82{word-spacing:2.178489pt;}
.ws185{word-spacing:2.247578pt;}
.ws1ac{word-spacing:2.275959pt;}
.ws10{word-spacing:2.284635pt;}
.ws10d{word-spacing:2.284756pt;}
.ws1ad{word-spacing:2.295398pt;}
.ws60{word-spacing:2.337890pt;}
.wsa7{word-spacing:2.348517pt;}
.ws65{word-spacing:2.391024pt;}
.ws193{word-spacing:2.391040pt;}
.ws32{word-spacing:2.391120pt;}
.ws66{word-spacing:2.399309pt;}
.ws130{word-spacing:2.401651pt;}
.ws192{word-spacing:2.416239pt;}
.ws10e{word-spacing:2.444158pt;}
.ws3e{word-spacing:2.444256pt;}
.wse0{word-spacing:2.497292pt;}
.wsf9{word-spacing:2.538505pt;}
.ws11{word-spacing:2.550209pt;}
.wsfa{word-spacing:2.550426pt;}
.ws175{word-spacing:2.582323pt;}
.ws143{word-spacing:2.603559pt;}
.ws40{word-spacing:2.603664pt;}
.wsd9{word-spacing:2.656693pt;}
.ws13e{word-spacing:2.709827pt;}
.ws7f{word-spacing:2.762961pt;}
.ws129{word-spacing:2.816095pt;}
.ws176{word-spacing:2.821427pt;}
.ws24{word-spacing:2.869185pt;}
.ws181{word-spacing:2.917069pt;}
.ws4a{word-spacing:2.922363pt;}
.ws149{word-spacing:2.975497pt;}
.ws1ab{word-spacing:3.012710pt;}
.wsc2{word-spacing:3.018689pt;}
.wsc3{word-spacing:3.028630pt;}
.wsfb{word-spacing:3.047606pt;}
.ws8f{word-spacing:3.081764pt;}
.ws25{word-spacing:3.081994pt;}
.wsda{word-spacing:3.107843pt;}
.ws38{word-spacing:3.134811pt;}
.wsd7{word-spacing:3.134898pt;}
.ws16b{word-spacing:3.188032pt;}
.ws22{word-spacing:3.188107pt;}
.ws4f{word-spacing:3.241166pt;}
.ws1a8{word-spacing:3.290513pt;}
.wsd2{word-spacing:3.294300pt;}
.ws18f{word-spacing:3.299635pt;}
.ws10c{word-spacing:3.347434pt;}
.ws48{word-spacing:3.400567pt;}
.ws5e{word-spacing:3.453701pt;}
.ws51{word-spacing:3.506835pt;}
.wsc6{word-spacing:3.559969pt;}
.ws49{word-spacing:3.613103pt;}
.ws198{word-spacing:3.634381pt;}
.ws1a5{word-spacing:3.682202pt;}
.ws7e{word-spacing:3.719371pt;}
.ws6{word-spacing:3.719892pt;}
.ws81{word-spacing:3.772505pt;}
.ws1aa{word-spacing:3.777843pt;}
.ws5f{word-spacing:3.825638pt;}
.ws1a1{word-spacing:3.825664pt;}
.ws17f{word-spacing:3.873485pt;}
.ws85{word-spacing:3.931906pt;}
.ws31{word-spacing:3.984934pt;}
.ws165{word-spacing:3.985040pt;}
.ws90{word-spacing:4.038174pt;}
.wsd4{word-spacing:4.091308pt;}
.ws52{word-spacing:4.144442pt;}
.ws8d{word-spacing:4.197575pt;}
.ws1a0{word-spacing:4.208230pt;}
.wsb5{word-spacing:4.222490pt;}
.wsae{word-spacing:4.250709pt;}
.ws148{word-spacing:4.303843pt;}
.ws7{word-spacing:4.303910pt;}
.ws67{word-spacing:4.356977pt;}
.ws35{word-spacing:4.357258pt;}
.ws179{word-spacing:4.399514pt;}
.wsfc{word-spacing:4.410111pt;}
.ws11b{word-spacing:4.463245pt;}
.ws196{word-spacing:4.495155pt;}
.wsc7{word-spacing:4.516379pt;}
.ws197{word-spacing:4.542976pt;}
.wsfd{word-spacing:4.569513pt;}
.ws54{word-spacing:4.622646pt;}
.wsf3{word-spacing:4.675780pt;}
.ws137{word-spacing:4.728914pt;}
.wsdc{word-spacing:4.782048pt;}
.ws115{word-spacing:4.835182pt;}
.ws50{word-spacing:4.888316pt;}
.ws140{word-spacing:4.941450pt;}
.ws4b{word-spacing:4.994583pt;}
.wsb6{word-spacing:5.047717pt;}
.ws105{word-spacing:5.100851pt;}
.ws7c{word-spacing:5.207119pt;}
.ws6b{word-spacing:5.260253pt;}
.ws189{word-spacing:5.260288pt;}
.ws4c{word-spacing:5.313387pt;}
.ws14d{word-spacing:5.355930pt;}
.ws55{word-spacing:5.366521pt;}
.wse7{word-spacing:5.387047pt;}
.ws1a6{word-spacing:5.403750pt;}
.ws161{word-spacing:5.419654pt;}
.ws107{word-spacing:5.472788pt;}
.wsc9{word-spacing:5.525922pt;}
.ws41{word-spacing:5.579280pt;}
.wsee{word-spacing:5.632190pt;}
.ws72{word-spacing:5.685324pt;}
.ws114{word-spacing:5.738458pt;}
.ws1b1{word-spacing:5.786317pt;}
.ws1b0{word-spacing:5.834138pt;}
.ws34{word-spacing:5.844747pt;}
.ws77{word-spacing:5.897859pt;}
.ws117{word-spacing:5.950993pt;}
.ws53{word-spacing:6.004127pt;}
.wsd{word-spacing:6.004262pt;}
.wsb3{word-spacing:6.057261pt;}
.wse{word-spacing:6.057557pt;}
.ws17b{word-spacing:6.073242pt;}
.ws166{word-spacing:6.110395pt;}
.ws17a{word-spacing:6.121062pt;}
.ws8b{word-spacing:6.157739pt;}
.ws8c{word-spacing:6.163529pt;}
.ws1af{word-spacing:6.168883pt;}
.ws112{word-spacing:6.216662pt;}
.ws13a{word-spacing:6.269796pt;}
.ws109{word-spacing:6.313074pt;}
.ws10a{word-spacing:6.322930pt;}
.ws163{word-spacing:6.366879pt;}
.ws11a{word-spacing:6.376064pt;}
.ws106{word-spacing:6.512800pt;}
.ws4e{word-spacing:6.535466pt;}
.ws19b{word-spacing:6.551450pt;}
.ws47{word-spacing:6.588599pt;}
.ws182{word-spacing:6.647091pt;}
.ws195{word-spacing:6.694912pt;}
.wsb4{word-spacing:6.748001pt;}
.wsf8{word-spacing:6.801135pt;}
.ws12b{word-spacing:6.854269pt;}
.wscb{word-spacing:6.907403pt;}
.ws15{word-spacing:6.907733pt;}
.ws1b4{word-spacing:6.934016pt;}
.wscc{word-spacing:6.960537pt;}
.ws1b3{word-spacing:6.970761pt;}
.ws180{word-spacing:6.981837pt;}
.ws73{word-spacing:7.066804pt;}
.wsf6{word-spacing:7.117455pt;}
.ws76{word-spacing:7.119938pt;}
.ws144{word-spacing:7.173072pt;}
.ws19d{word-spacing:7.173120pt;}
.ws1c{word-spacing:7.279473pt;}
.ws2f{word-spacing:7.279632pt;}
.ws5a{word-spacing:7.332474pt;}
.ws30{word-spacing:7.332821pt;}
.ws88{word-spacing:7.385607pt;}
.wsf{word-spacing:7.386170pt;}
.ws12{word-spacing:7.438987pt;}
.ws3f{word-spacing:7.439040pt;}
.ws16c{word-spacing:7.491875pt;}
.ws91{word-spacing:7.545009pt;}
.wsa9{word-spacing:7.704411pt;}
.wsc8{word-spacing:7.757545pt;}
.ws1e{word-spacing:7.757909pt;}
.ws75{word-spacing:7.810678pt;}
.ws162{word-spacing:7.863812pt;}
.ws78{word-spacing:7.916946pt;}
.ws79{word-spacing:7.953551pt;}
.wsdd{word-spacing:7.970080pt;}
.ws18e{word-spacing:7.986074pt;}
.ws1ae{word-spacing:8.033894pt;}
.ws100{word-spacing:8.096381pt;}
.ws142{word-spacing:8.129482pt;}
.ws80{word-spacing:8.182615pt;}
.ws96{word-spacing:8.288883pt;}
.ws154{word-spacing:8.342017pt;}
.ws199{word-spacing:8.368640pt;}
.ws74{word-spacing:8.395151pt;}
.wsca{word-spacing:8.607686pt;}
.ws16a{word-spacing:8.713954pt;}
.ws13f{word-spacing:8.820222pt;}
.ws168{word-spacing:8.979623pt;}
.ws19a{word-spacing:8.990310pt;}
.ws12f{word-spacing:9.085891pt;}
.ws155{word-spacing:9.139025pt;}
.ws138{word-spacing:9.245293pt;}
.wsa{word-spacing:9.245451pt;}
.ws5c{word-spacing:9.298427pt;}
.ws119{word-spacing:9.670364pt;}
.ws10b{word-spacing:9.723498pt;}
.ws84{word-spacing:9.936033pt;}
.wsf7{word-spacing:10.254836pt;}
.ws103{word-spacing:10.733041pt;}
.wse1{word-spacing:10.786175pt;}
.wsed{word-spacing:10.892443pt;}
.ws116{word-spacing:10.945577pt;}
.ws11c{word-spacing:11.046605pt;}
.ws6c{word-spacing:11.158112pt;}
.ws89{word-spacing:11.423781pt;}
.ws153{word-spacing:11.636317pt;}
.wse3{word-spacing:11.742585pt;}
.wsec{word-spacing:12.008254pt;}
.ws118{word-spacing:12.486459pt;}
.ws125{word-spacing:12.752128pt;}
.ws102{word-spacing:13.070931pt;}
.ws26{word-spacing:13.570542pt;}
.ws29{word-spacing:13.570603pt;}
.ws28{word-spacing:13.582844pt;}
.ws27{word-spacing:13.611405pt;}
.ws98{word-spacing:14.664947pt;}
.ws19f{word-spacing:15.637402pt;}
.wse6{word-spacing:15.939932pt;}
.ws157{word-spacing:18.267546pt;}
.ws95{word-spacing:22.953830pt;}
.ws2e{word-spacing:25.080192pt;}
.ws4{word-spacing:28.643190pt;}
.wsbd{word-spacing:33.813463pt;}
.wsb2{word-spacing:38.371384pt;}
.ws160{word-spacing:51.563802pt;}
.ws133{word-spacing:53.137074pt;}
.ws158{word-spacing:54.692326pt;}
.wsd3{word-spacing:71.333463pt;}
.wsf1{word-spacing:79.159890pt;}
.ws15f{word-spacing:83.530667pt;}
.ws15a{word-spacing:83.542938pt;}
.ws15b{word-spacing:84.677333pt;}
.ws15c{word-spacing:84.690637pt;}
.ws159{word-spacing:94.720000pt;}
.ws15e{word-spacing:122.564710pt;}
.ws110{word-spacing:127.729084pt;}
.ws15d{word-spacing:131.301333pt;}
.wsef{word-spacing:247.949224pt;}
.ws131{word-spacing:302.039890pt;}
.ws134{word-spacing:673.213371pt;}
._2b{margin-left:-724.472549pt;}
._2c{margin-left:-606.858320pt;}
._2d{margin-left:-306.015275pt;}
._2e{margin-left:-305.001830pt;}
._1e{margin-left:-32.476679pt;}
._1f{margin-left:-17.711945pt;}
._21{margin-left:-14.802760pt;}
._20{margin-left:-13.177040pt;}
._42{margin-left:-6.886195pt;}
._14{margin-left:-5.578051pt;}
._3{margin-left:-4.463200pt;}
._5{margin-left:-2.816538pt;}
._1{margin-left:-1.377599pt;}
._e{width:1.743457pt;}
._25{width:2.652791pt;}
._4{width:3.749970pt;}
._2{width:5.552345pt;}
._23{width:7.589823pt;}
._15{width:10.573639pt;}
._17{width:12.061388pt;}
._16{width:13.550141pt;}
._f{width:14.823787pt;}
._b{width:15.728533pt;}
._28{width:16.799750pt;}
._d{width:17.747371pt;}
._1b{width:18.757544pt;}
._c{width:19.761273pt;}
._8{width:20.829578pt;}
._7{width:21.993357pt;}
._0{width:23.718490pt;}
._29{width:24.866650pt;}
._11{width:25.825424pt;}
._10{width:27.575188pt;}
._1c{width:28.533330pt;}
._6{width:29.753521pt;}
._13{width:31.348981pt;}
._1d{width:32.517926pt;}
._18{width:33.421202pt;}
._26{width:34.324478pt;}
._9{width:35.331408pt;}
._a{width:37.088928pt;}
._12{width:38.842416pt;}
._1a{width:39.776480pt;}
._19{width:41.178747pt;}
._2a{width:42.347692pt;}
._43{width:43.514736pt;}
._44{width:46.022076pt;}
._22{width:49.145388pt;}
._30{width:71.549782pt;}
._32{width:88.690900pt;}
._3b{width:95.498138pt;}
._3e{width:96.616969pt;}
._34{width:98.706699pt;}
._24{width:106.675075pt;}
._31{width:132.712888pt;}
._3d{width:134.567731pt;}
._3c{width:143.223296pt;}
._41{width:146.507366pt;}
._40{width:155.178496pt;}
._36{width:182.205018pt;}
._35{width:183.912257pt;}
._27{width:186.021667pt;}
._2f{width:190.956488pt;}
._33{width:272.240503pt;}
._39{width:451.337126pt;}
._38{width:465.859722pt;}
._37{width:499.230803pt;}
._3a{width:563.336158pt;}
._3f{width:746.693805pt;}
.fs8{font-size:20.478304pt;}
.fs9{font-size:24.237227pt;}
.fsf{font-size:26.566933pt;}
.fs7{font-size:29.254825pt;}
.fs13{font-size:32.010720pt;}
.fse{font-size:37.193600pt;}
.fs14{font-size:37.602144pt;}
.fs12{font-size:38.978667pt;}
.fs5{font-size:40.801389pt;}
.fs6{font-size:40.801573pt;}
.fs2{font-size:42.506667pt;}
.fs10{font-size:42.507200pt;}
.fs3{font-size:47.818667pt;}
.fs11{font-size:47.820800pt;}
.fsb{font-size:53.133867pt;}
.fs4{font-size:53.136000pt;}
.fsc{font-size:58.447467pt;}
.fs1{font-size:63.760000pt;}
.fsd{font-size:63.761067pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:0.242714pt;}
.y31{bottom:0.242760pt;}
.y37{bottom:0.604188pt;}
.y3a{bottom:0.604234pt;}
.y34{bottom:0.604372pt;}
.y3d{bottom:1.409330pt;}
.y36{bottom:1.701713pt;}
.y39{bottom:1.701759pt;}
.y33{bottom:1.701897pt;}
.y2d{bottom:2.062543pt;}
.y2c{bottom:2.176567pt;}
.y3c{bottom:3.008987pt;}
.y1dc{bottom:10.095475pt;}
.y1e1{bottom:25.795305pt;}
.y1e2{bottom:25.902008pt;}
.y1db{bottom:54.316772pt;}
.y54{bottom:68.149333pt;}
.y172{bottom:95.470667pt;}
.y1da{bottom:98.099559pt;}
.y1a1{bottom:104.782667pt;}
.y1d5{bottom:107.998667pt;}
.y2a{bottom:108.000000pt;}
.y171{bottom:110.081333pt;}
.yad{bottom:110.874667pt;}
.y21e{bottom:110.876000pt;}
.y1f2{bottom:115.492000pt;}
.y252{bottom:122.612000pt;}
.y287{bottom:123.138667pt;}
.y29{bottom:123.940000pt;}
.y1d4{bottom:125.373333pt;}
.yac{bottom:126.816000pt;}
.y1f1{bottom:131.432000pt;}
.y170{bottom:135.540000pt;}
.y251{bottom:137.224000pt;}
.y286{bottom:137.750667pt;}
.y1a0{bottom:138.640000pt;}
.y28{bottom:139.880000pt;}
.y89{bottom:141.313333pt;}
.y1d9{bottom:142.554729pt;}
.y1d8{bottom:142.739877pt;}
.y1f0{bottom:147.373333pt;}
.yab{bottom:152.326667pt;}
.y285{bottom:152.361333pt;}
.y21d{bottom:152.452000pt;}
.y250{bottom:153.329333pt;}
.y19f{bottom:154.580000pt;}
.y27{bottom:155.820000pt;}
.y1e6{bottom:156.904452pt;}
.y88{bottom:157.253333pt;}
.y1ef{bottom:163.313333pt;}
.y284{bottom:166.973333pt;}
.y24f{bottom:167.941333pt;}
.yaa{bottom:168.266667pt;}
.y19e{bottom:170.520000pt;}
.y26{bottom:171.760000pt;}
.y53{bottom:171.761333pt;}
.y1d3{bottom:173.193333pt;}
.y87{bottom:173.194667pt;}
.y122{bottom:176.800000pt;}
.y21c{bottom:178.086667pt;}
.y1ee{bottom:179.253333pt;}
.y1c8{bottom:179.730667pt;}
.y24e{bottom:182.553333pt;}
.ydf{bottom:182.725333pt;}
.y283{bottom:182.914667pt;}
.y1d7{bottom:184.758880pt;}
.y121{bottom:185.912000pt;}
.y19d{bottom:186.460000pt;}
.y1e0{bottom:187.280496pt;}
.yfd{bottom:187.700000pt;}
.y25{bottom:187.701333pt;}
.y86{bottom:189.134667pt;}
.ya9{bottom:193.778667pt;}
.y1ed{bottom:195.193333pt;}
.y282{bottom:197.525333pt;}
.ydc{bottom:198.398667pt;}
.y24d{bottom:198.658667pt;}
.ydb{bottom:201.904000pt;}
.y19c{bottom:202.400000pt;}
.y24{bottom:203.641333pt;}
.y21b{bottom:203.722667pt;}
.y85{bottom:205.074667pt;}
.y1c7{bottom:205.124000pt;}
.ya8{bottom:209.718667pt;}
.yde{bottom:211.017333pt;}
.y1ec{bottom:211.133333pt;}
.y281{bottom:212.137333pt;}
.y24c{bottom:213.270667pt;}
.ydd{bottom:215.002667pt;}
.y19b{bottom:218.341333pt;}
.y23{bottom:219.581333pt;}
.y84{bottom:221.014667pt;}
.y1c6{bottom:221.064000pt;}
.y120{bottom:221.954667pt;}
.ya7{bottom:225.658667pt;}
.y1eb{bottom:227.073333pt;}
.y24b{bottom:227.882667pt;}
.y147{bottom:228.014667pt;}
.y280{bottom:228.078667pt;}
.y11f{bottom:233.208000pt;}
.y21a{bottom:233.972000pt;}
.y19a{bottom:234.281333pt;}
.y22{bottom:235.521333pt;}
.y52{bottom:235.800000pt;}
.yda{bottom:236.134667pt;}
.y83{bottom:236.954667pt;}
.y1c5{bottom:237.004000pt;}
.y24a{bottom:242.494667pt;}
.y27f{bottom:242.689333pt;}
.y1ea{bottom:243.014667pt;}
.y219{bottom:249.912000pt;}
.y199{bottom:250.221333pt;}
.ya6{bottom:251.169333pt;}
.y21{bottom:251.461333pt;}
.y51{bottom:251.740000pt;}
.y82{bottom:252.894667pt;}
.y1c4{bottom:252.945333pt;}
.y146{bottom:255.972000pt;}
.y27e{bottom:257.301333pt;}
.y249{bottom:258.600000pt;}
.yfc{bottom:259.432000pt;}
.yd9{bottom:263.142667pt;}
.y11e{bottom:265.728000pt;}
.y218{bottom:265.852000pt;}
.y198{bottom:266.161333pt;}
.yd8{bottom:266.360000pt;}
.ya5{bottom:267.110667pt;}
.y20{bottom:267.402667pt;}
.y50{bottom:267.680000pt;}
.y1d2{bottom:268.834667pt;}
.y81{bottom:268.836000pt;}
.y1c3{bottom:268.885333pt;}
.y1e9{bottom:271.693333pt;}
.y145{bottom:271.912000pt;}
.y27d{bottom:271.913333pt;}
.y248{bottom:273.212000pt;}
.y11d{bottom:281.668000pt;}
.y217{bottom:281.792000pt;}
.y197{bottom:282.101333pt;}
.ya4{bottom:283.050667pt;}
.y1f{bottom:283.342667pt;}
.y4f{bottom:283.620000pt;}
.y80{bottom:284.776000pt;}
.y1c2{bottom:284.825333pt;}
.yd7{bottom:284.958667pt;}
.yfb{bottom:285.582667pt;}
.y16f{bottom:285.936000pt;}
.y1e8{bottom:286.305333pt;}
.y247{bottom:287.824000pt;}
.y27c{bottom:287.853333pt;}
.yd6{bottom:288.176000pt;}
.y11c{bottom:297.609333pt;}
.y216{bottom:297.733333pt;}
.y196{bottom:298.041333pt;}
.ya3{bottom:298.990667pt;}
.y222{bottom:299.282667pt;}
.y4e{bottom:299.561333pt;}
.y144{bottom:300.017333pt;}
.y7f{bottom:300.716000pt;}
.y1c1{bottom:300.765333pt;}
.y1e7{bottom:300.917333pt;}
.yfa{bottom:301.522667pt;}
.y16e{bottom:301.876000pt;}
.y246{bottom:302.436000pt;}
.y27b{bottom:302.465333pt;}
.y142{bottom:309.129333pt;}
.y1e{bottom:309.156000pt;}
.y11b{bottom:313.549333pt;}
.y215{bottom:313.673333pt;}
.y195{bottom:313.982667pt;}
.y221{bottom:315.222667pt;}
.y4d{bottom:315.501333pt;}
.y1e5{bottom:315.529333pt;}
.y7e{bottom:316.656000pt;}
.y1c0{bottom:316.705333pt;}
.y27a{bottom:317.077333pt;}
.yf9{bottom:317.464000pt;}
.y16d{bottom:317.816000pt;}
.y143{bottom:318.116000pt;}
.yd5{bottom:318.401333pt;}
.y245{bottom:318.541333pt;}
.ya2{bottom:323.446667pt;}
.y11a{bottom:329.489333pt;}
.y194{bottom:329.922667pt;}
.y214{bottom:330.840000pt;}
.y220{bottom:331.162667pt;}
.y4c{bottom:331.441333pt;}
.y7d{bottom:332.596000pt;}
.y1bf{bottom:332.645333pt;}
.y279{bottom:333.017333pt;}
.y244{bottom:333.153333pt;}
.yf8{bottom:333.404000pt;}
.y16c{bottom:333.756000pt;}
.yd4{bottom:334.341333pt;}
.ya1{bottom:339.386667pt;}
.y119{bottom:345.429333pt;}
.y193{bottom:345.862667pt;}
.y213{bottom:346.781333pt;}
.y141{bottom:346.804000pt;}
.y21f{bottom:347.104000pt;}
.y4b{bottom:347.381333pt;}
.y278{bottom:347.629333pt;}
.y243{bottom:347.765333pt;}
.y1d1{bottom:348.536000pt;}
.y7c{bottom:348.537333pt;}
.y1be{bottom:348.586667pt;}
.yf7{bottom:349.344000pt;}
.y16b{bottom:349.696000pt;}
.yd3{bottom:350.282667pt;}
.ya0{bottom:355.326667pt;}
.y1d{bottom:358.702667pt;}
.y118{bottom:361.369333pt;}
.y192{bottom:361.802667pt;}
.y277{bottom:362.241333pt;}
.y242{bottom:362.377333pt;}
.y212{bottom:362.721333pt;}
.y140{bottom:362.745333pt;}
.y4a{bottom:363.321333pt;}
.y1d0{bottom:364.476000pt;}
.y7b{bottom:364.477333pt;}
.y1bd{bottom:364.526667pt;}
.yf6{bottom:365.284000pt;}
.y16a{bottom:365.636000pt;}
.y9f{bottom:371.266667pt;}
.y1c{bottom:374.642667pt;}
.y191{bottom:377.742667pt;}
.y276{bottom:378.181333pt;}
.y241{bottom:378.482667pt;}
.y211{bottom:378.661333pt;}
.y13f{bottom:378.685333pt;}
.y49{bottom:379.261333pt;}
.yd2{bottom:379.754667pt;}
.y7a{bottom:380.417333pt;}
.y1bc{bottom:380.466667pt;}
.y117{bottom:381.158667pt;}
.yf5{bottom:381.224000pt;}
.y169{bottom:381.577333pt;}
.y116{bottom:384.377333pt;}
.y1b{bottom:390.582667pt;}
.y275{bottom:392.793333pt;}
.y240{bottom:393.094667pt;}
.yd1{bottom:393.570667pt;}
.y190{bottom:393.682667pt;}
.y13e{bottom:394.625333pt;}
.y9e{bottom:395.177333pt;}
.y48{bottom:395.480000pt;}
.y79{bottom:396.357333pt;}
.y1bb{bottom:396.406667pt;}
.yf4{bottom:397.164000pt;}
.y168{bottom:397.517333pt;}
.y1a{bottom:406.522667pt;}
.y274{bottom:407.405333pt;}
.y23f{bottom:407.706667pt;}
.yce{bottom:409.242667pt;}
.y18f{bottom:410.332000pt;}
.y13d{bottom:410.565333pt;}
.y115{bottom:410.768000pt;}
.y47{bottom:411.420000pt;}
.y78{bottom:412.297333pt;}
.y1ba{bottom:412.346667pt;}
.yf3{bottom:413.105333pt;}
.y167{bottom:413.457333pt;}
.y210{bottom:413.541333pt;}
.y114{bottom:413.985333pt;}
.y9d{bottom:420.688000pt;}
.yd0{bottom:421.862667pt;}
.y23e{bottom:422.318667pt;}
.y19{bottom:422.462667pt;}
.y273{bottom:423.345333pt;}
.ycf{bottom:425.846667pt;}
.y18e{bottom:426.272000pt;}
.y13c{bottom:426.505333pt;}
.y46{bottom:427.361333pt;}
.y77{bottom:428.237333pt;}
.y1b9{bottom:428.286667pt;}
.yf2{bottom:429.045333pt;}
.y166{bottom:429.397333pt;}
.y20f{bottom:436.373333pt;}
.y9c{bottom:436.629333pt;}
.y272{bottom:437.957333pt;}
.y18{bottom:438.404000pt;}
.y23d{bottom:438.424000pt;}
.y113{bottom:441.704000pt;}
.y18d{bottom:442.212000pt;}
.y13b{bottom:442.446667pt;}
.y45{bottom:443.301333pt;}
.y1cf{bottom:444.177333pt;}
.y76{bottom:444.178667pt;}
.y1b8{bottom:444.228000pt;}
.yf1{bottom:444.985333pt;}
.y165{bottom:445.337333pt;}
.ycd{bottom:448.596000pt;}
.y9b{bottom:452.569333pt;}
.y23c{bottom:453.036000pt;}
.y17{bottom:454.344000pt;}
.y20e{bottom:454.438667pt;}
.y112{bottom:457.644000pt;}
.y18c{bottom:458.152000pt;}
.y13a{bottom:458.386667pt;}
.y44{bottom:459.241333pt;}
.y1ce{bottom:460.117333pt;}
.y75{bottom:460.118667pt;}
.y1b7{bottom:460.168000pt;}
.yf0{bottom:460.925333pt;}
.y164{bottom:461.278667pt;}
.y271{bottom:467.181333pt;}
.y23b{bottom:467.648000pt;}
.y9a{bottom:468.509333pt;}
.y16{bottom:470.284000pt;}
.y20d{bottom:471.973333pt;}
.y111{bottom:473.584000pt;}
.y18b{bottom:474.092000pt;}
.y139{bottom:474.789333pt;}
.y43{bottom:475.181333pt;}
.y74{bottom:476.058667pt;}
.y1b6{bottom:476.108000pt;}
.yef{bottom:476.865333pt;}
.y163{bottom:477.218667pt;}
.y270{bottom:481.793333pt;}
.y23a{bottom:483.753333pt;}
.y99{bottom:484.449333pt;}
.ycc{bottom:485.165333pt;}
.y15{bottom:486.224000pt;}
.y20c{bottom:489.506667pt;}
.y110{bottom:489.524000pt;}
.y18a{bottom:490.033333pt;}
.y138{bottom:490.729333pt;}
.y73{bottom:491.998667pt;}
.y1b5{bottom:492.048000pt;}
.y1e4{bottom:492.669333pt;}
.yee{bottom:492.805333pt;}
.y162{bottom:493.158667pt;}
.y26f{bottom:497.733333pt;}
.y239{bottom:498.365333pt;}
.y41{bottom:499.278667pt;}
.y98{bottom:500.389333pt;}
.ycb{bottom:501.105333pt;}
.y14{bottom:502.164000pt;}
.y42{bottom:502.433333pt;}
.y10f{bottom:505.465333pt;}
.y189{bottom:505.973333pt;}
.y137{bottom:506.670667pt;}
.y20b{bottom:507.041333pt;}
.y1e3{bottom:507.280000pt;}
.y72{bottom:507.938667pt;}
.y1b4{bottom:507.988000pt;}
.yed{bottom:508.746667pt;}
.y161{bottom:509.098667pt;}
.y26e{bottom:512.345333pt;}
.y238{bottom:512.977333pt;}
.y40{bottom:513.890667pt;}
.y97{bottom:516.329333pt;}
.yca{bottom:517.046667pt;}
.y13{bottom:518.104000pt;}
.y10e{bottom:521.405333pt;}
.y1df{bottom:521.892000pt;}
.y188{bottom:521.913333pt;}
.y136{bottom:522.610667pt;}
.y71{bottom:523.878667pt;}
.y1b3{bottom:523.928000pt;}
.y20a{bottom:524.576000pt;}
.y160{bottom:525.038667pt;}
.y26d{bottom:526.957333pt;}
.y237{bottom:527.589333pt;}
.y3f{bottom:528.502667pt;}
.y96{bottom:532.270667pt;}
.yc9{bottom:533.486667pt;}
.y12{bottom:534.045333pt;}
.yec{bottom:536.930667pt;}
.y10d{bottom:537.345333pt;}
.y187{bottom:537.853333pt;}
.y135{bottom:538.550667pt;}
.y1cd{bottom:539.818667pt;}
.y70{bottom:539.820000pt;}
.y1b2{bottom:539.869333pt;}
.y15f{bottom:540.978667pt;}
.y209{bottom:542.109333pt;}
.y26c{bottom:542.897333pt;}
.y3e{bottom:543.114667pt;}
.y236{bottom:543.694667pt;}
.y95{bottom:548.210667pt;}
.yc8{bottom:549.428000pt;}
.y11{bottom:549.985333pt;}
.y10c{bottom:553.285333pt;}
.y134{bottom:554.490667pt;}
.y186{bottom:554.501333pt;}
.y6f{bottom:555.760000pt;}
.y1b1{bottom:555.809333pt;}
.y15e{bottom:556.920000pt;}
.y26b{bottom:557.509333pt;}
.y2b{bottom:558.140463pt;}
.y235{bottom:558.306667pt;}
.yeb{bottom:558.504000pt;}
.y208{bottom:559.644000pt;}
.y94{bottom:564.150667pt;}
.yc7{bottom:565.368000pt;}
.y10{bottom:565.925333pt;}
.y10b{bottom:569.225333pt;}
.y133{bottom:570.430667pt;}
.y185{bottom:570.441333pt;}
.y6e{bottom:571.700000pt;}
.y1b0{bottom:571.749333pt;}
.y26a{bottom:572.121333pt;}
.y15d{bottom:572.860000pt;}
.y234{bottom:572.918667pt;}
.y207{bottom:577.178667pt;}
.y32{bottom:578.349340pt;}
.y93{bottom:580.090667pt;}
.yc6{bottom:581.308000pt;}
.yf{bottom:581.865333pt;}
.y10a{bottom:585.165333pt;}
.y3b{bottom:585.690541pt;}
.y132{bottom:586.372000pt;}
.y184{bottom:586.382667pt;}
.yea{bottom:586.688000pt;}
.y233{bottom:587.530667pt;}
.y6d{bottom:587.640000pt;}
.y1af{bottom:587.689333pt;}
.y269{bottom:588.061333pt;}
.y38{bottom:590.074939pt;}
.y206{bottom:595.244000pt;}
.y92{bottom:596.030667pt;}
.yc5{bottom:597.248000pt;}
.ye{bottom:597.805333pt;}
.y15c{bottom:598.098667pt;}
.y109{bottom:601.106667pt;}
.y131{bottom:602.312000pt;}
.y183{bottom:602.322667pt;}
.ye9{bottom:602.628000pt;}
.y268{bottom:602.673333pt;}
.y6c{bottom:603.580000pt;}
.y1ae{bottom:603.629333pt;}
.y232{bottom:603.636000pt;}
.y35{bottom:610.647037pt;}
.y91{bottom:611.970667pt;}
.y205{bottom:612.777333pt;}
.yd{bottom:613.746667pt;}
.y108{bottom:617.046667pt;}
.y267{bottom:617.285333pt;}
.y231{bottom:618.248000pt;}
.y130{bottom:618.252000pt;}
.y182{bottom:618.262667pt;}
.y6b{bottom:619.520000pt;}
.yc4{bottom:627.677333pt;}
.y90{bottom:627.912000pt;}
.y1ad{bottom:628.868000pt;}
.y15b{bottom:628.916000pt;}
.yc{bottom:629.686667pt;}
.ye8{bottom:630.060000pt;}
.y230{bottom:632.860000pt;}
.y107{bottom:632.986667pt;}
.y266{bottom:633.225333pt;}
.y181{bottom:634.202667pt;}
.yc1{bottom:634.690667pt;}
.y1cc{bottom:635.460000pt;}
.yc0{bottom:638.676000pt;}
.y8f{bottom:643.852000pt;}
.ye7{bottom:643.874667pt;}
.y12f{bottom:643.953333pt;}
.y204{bottom:644.112000pt;}
.y15a{bottom:644.856000pt;}
.y6a{bottom:644.864000pt;}
.yb{bottom:645.626667pt;}
.yc3{bottom:646.805333pt;}
.ybd{bottom:647.310667pt;}
.y30{bottom:647.629365pt;}
.y2e{bottom:647.742929pt;}
.y265{bottom:647.837333pt;}
.y22f{bottom:648.965333pt;}
.y180{bottom:650.142667pt;}
.y1cb{bottom:651.401333pt;}
.y106{bottom:658.225333pt;}
.ye4{bottom:659.548000pt;}
.y1ac{bottom:659.576000pt;}
.y8e{bottom:659.792000pt;}
.y159{bottom:660.796000pt;}
.ya{bottom:661.566667pt;}
.y264{bottom:662.449333pt;}
.ybf{bottom:662.586667pt;}
.y22e{bottom:663.577333pt;}
.y203{bottom:665.053333pt;}
.yc2{bottom:665.934667pt;}
.y17f{bottom:666.082667pt;}
.ybe{bottom:666.572000pt;}
.ye6{bottom:672.166667pt;}
.y1ab{bottom:675.516000pt;}
.y69{bottom:675.732000pt;}
.ye5{bottom:676.152000pt;}
.y158{bottom:676.737333pt;}
.y1ca{bottom:676.745333pt;}
.y263{bottom:677.061333pt;}
.y12e{bottom:677.224000pt;}
.y9{bottom:677.506667pt;}
.y22d{bottom:678.189333pt;}
.y17e{bottom:682.024000pt;}
.y202{bottom:683.120000pt;}
.ye3{bottom:688.125333pt;}
.y1aa{bottom:691.456000pt;}
.y8d{bottom:691.672000pt;}
.y68{bottom:691.673333pt;}
.y157{bottom:692.677333pt;}
.y22c{bottom:692.800000pt;}
.y262{bottom:693.001333pt;}
.y12d{bottom:693.164000pt;}
.ybc{bottom:697.813333pt;}
.y17d{bottom:697.964000pt;}
.y105{bottom:700.437333pt;}
.y201{bottom:700.653333pt;}
.ye0{bottom:703.798667pt;}
.y1a9{bottom:707.396000pt;}
.y8c{bottom:707.612000pt;}
.y67{bottom:707.613333pt;}
.y12c{bottom:709.104000pt;}
.y8{bottom:709.962667pt;}
.ybb{bottom:713.753333pt;}
.y17c{bottom:713.904000pt;}
.y155{bottom:715.020000pt;}
.y104{bottom:716.377333pt;}
.ye2{bottom:716.417333pt;}
.y22b{bottom:716.876000pt;}
.y200{bottom:718.188000pt;}
.ye1{bottom:720.402667pt;}
.y261{bottom:722.225333pt;}
.y1a8{bottom:723.336000pt;}
.y66{bottom:723.553333pt;}
.y12b{bottom:725.045333pt;}
.y156{bottom:726.708000pt;}
.yba{bottom:729.694667pt;}
.y17b{bottom:729.844000pt;}
.y1de{bottom:730.036000pt;}
.y152{bottom:730.692000pt;}
.y103{bottom:732.317333pt;}
.y1ff{bottom:735.721333pt;}
.y260{bottom:736.837333pt;}
.y1a7{bottom:739.276000pt;}
.y65{bottom:739.493333pt;}
.y12a{bottom:740.985333pt;}
.y154{bottom:743.312000pt;}
.y1dd{bottom:744.648000pt;}
.y22a{bottom:745.473333pt;}
.yb9{bottom:745.634667pt;}
.y17a{bottom:745.784000pt;}
.y153{bottom:747.297333pt;}
.y102{bottom:749.978667pt;}
.y25f{bottom:752.777333pt;}
.y1fe{bottom:753.256000pt;}
.y64{bottom:755.433333pt;}
.y129{bottom:756.925333pt;}
.y1d6{bottom:759.260000pt;}
.y229{bottom:761.413333pt;}
.yb8{bottom:761.574667pt;}
.y179{bottom:761.724000pt;}
.y7{bottom:765.806667pt;}
.y101{bottom:765.918667pt;}
.y1a6{bottom:766.566667pt;}
.y25e{bottom:767.389333pt;}
.y151{bottom:767.460000pt;}
.y1fd{bottom:770.790667pt;}
.y63{bottom:771.373333pt;}
.y6{bottom:771.590667pt;}
.y128{bottom:772.865333pt;}
.y1a5{bottom:776.636000pt;}
.y228{bottom:777.354667pt;}
.yb7{bottom:777.514667pt;}
.y178{bottom:777.665333pt;}
.y25d{bottom:782.001333pt;}
.y150{bottom:783.400000pt;}
.y100{bottom:784.516000pt;}
.y8b{bottom:787.313333pt;}
.y62{bottom:787.314667pt;}
.y5{bottom:788.122667pt;}
.y127{bottom:788.805333pt;}
.y1fc{bottom:788.856000pt;}
.y227{bottom:793.294667pt;}
.yb6{bottom:793.454667pt;}
.y177{bottom:793.605333pt;}
.y4{bottom:793.906667pt;}
.y25c{bottom:797.941333pt;}
.y14f{bottom:799.340000pt;}
.y1c9{bottom:803.253333pt;}
.y61{bottom:803.254667pt;}
.yff{bottom:804.049333pt;}
.y126{bottom:804.746667pt;}
.y1fb{bottom:806.389333pt;}
.y226{bottom:809.234667pt;}
.yb5{bottom:809.394667pt;}
.y3{bottom:810.438667pt;}
.y25b{bottom:812.553333pt;}
.y1a4{bottom:814.436000pt;}
.y14e{bottom:815.280000pt;}
.y60{bottom:819.194667pt;}
.y176{bottom:819.552000pt;}
.yfe{bottom:819.989333pt;}
.y1fa{bottom:823.924000pt;}
.y225{bottom:825.174667pt;}
.yb4{bottom:825.336000pt;}
.y25a{bottom:827.165333pt;}
.y125{bottom:829.876000pt;}
.y1a3{bottom:830.376000pt;}
.y14d{bottom:831.221333pt;}
.y124{bottom:834.456000pt;}
.y5f{bottom:835.134667pt;}
.y2{bottom:840.725333pt;}
.y224{bottom:841.114667pt;}
.yb3{bottom:841.276000pt;}
.y1f9{bottom:841.458667pt;}
.y259{bottom:841.777333pt;}
.y123{bottom:846.994667pt;}
.y5e{bottom:851.074667pt;}
.y175{bottom:853.556000pt;}
.y14c{bottom:855.130667pt;}
.y1a2{bottom:856.665333pt;}
.yb2{bottom:857.216000pt;}
.y258{bottom:857.717333pt;}
.y1f8{bottom:858.992000pt;}
.y223{bottom:866.518667pt;}
.y5d{bottom:867.014667pt;}
.y174{bottom:869.496000pt;}
.y257{bottom:872.329333pt;}
.yb1{bottom:873.156000pt;}
.y1f7{bottom:876.526667pt;}
.y14b{bottom:878.336000pt;}
.y8a{bottom:882.954667pt;}
.y5c{bottom:882.956000pt;}
.y173{bottom:885.437333pt;}
.y256{bottom:886.941333pt;}
.yb0{bottom:889.096000pt;}
.y148{bottom:894.009333pt;}
.y1f6{bottom:894.061333pt;}
.y5b{bottom:898.896000pt;}
.y1{bottom:900.089333pt;}
.y255{bottom:902.881333pt;}
.yaf{bottom:905.036000pt;}
.y14a{bottom:906.628000pt;}
.y149{bottom:910.613333pt;}
.y1f5{bottom:911.594667pt;}
.y5a{bottom:914.836000pt;}
.y254{bottom:917.493333pt;}
.yae{bottom:920.977333pt;}
.y1f4{bottom:929.660000pt;}
.y59{bottom:930.776000pt;}
.y253{bottom:932.105333pt;}
.y58{bottom:946.716000pt;}
.y1f3{bottom:947.194667pt;}
.y57{bottom:978.640000pt;}
.y56{bottom:997.840000pt;}
.y55{bottom:1017.040000pt;}
.h21{height:2.125355pt;}
.he{height:7.280971pt;}
.h13{height:7.298442pt;}
.h10{height:7.341201pt;}
.hf{height:7.622122pt;}
.hc{height:9.328341pt;}
.ha{height:9.555929pt;}
.h12{height:15.358728pt;}
.h14{height:18.177920pt;}
.h11{height:21.941119pt;}
.h40{height:22.179303pt;}
.h42{height:26.053439pt;}
.h23{height:26.147101pt;}
.h3e{height:27.007191pt;}
.h24{height:27.895200pt;}
.h5{height:28.266933pt;}
.h16{height:28.356469pt;}
.hb{height:30.601042pt;}
.hd{height:30.601180pt;}
.h46{height:32.661606pt;}
.h15{height:32.899243pt;}
.h39{height:32.900710pt;}
.h44{height:33.091994pt;}
.h47{height:33.140710pt;}
.h45{height:33.162044pt;}
.h43{height:33.167377pt;}
.h17{height:33.329611pt;}
.h8{height:36.291888pt;}
.h19{height:36.556100pt;}
.h9{height:36.557568pt;}
.h2b{height:36.768636pt;}
.h1b{height:39.850400pt;}
.h1a{height:40.445647pt;}
.h6{height:43.866880pt;}
.h7{height:44.121920pt;}
.h1c{height:44.122658pt;}
.h3{height:44.186880pt;}
.h3a{height:44.925355pt;}
.h1e{height:45.427101pt;}
.h18{height:45.568000pt;}
.h33{height:47.069767pt;}
.h1f{height:47.175200pt;}
.h1d{height:47.180533pt;}
.h26{height:47.288021pt;}
.h28{height:49.831200pt;}
.h2a{height:49.836533pt;}
.h2{height:51.402933pt;}
.h4{height:51.408267pt;}
.h25{height:52.719733pt;}
.h2d{height:52.725067pt;}
.h1{height:52.946304pt;}
.h37{height:54.609867pt;}
.h38{height:55.786400pt;}
.h27{height:62.700533pt;}
.h2c{height:62.705867pt;}
.h22{height:74.445355pt;}
.h32{height:75.797067pt;}
.h3c{height:76.833434pt;}
.h35{height:77.042688pt;}
.h2f{height:77.048021pt;}
.h30{height:83.121867pt;}
.h3b{height:92.984021pt;}
.h34{height:108.325067pt;}
.h36{height:113.490688pt;}
.h31{height:113.496021pt;}
.h2e{height:122.061355pt;}
.h20{height:126.989355pt;}
.h29{height:137.138688pt;}
.h41{height:166.172958pt;}
.h3d{height:200.740133pt;}
.h3f{height:200.956187pt;}
.h0{height:1056.000000pt;}
.w7{width:6.516367pt;}
.w6{width:6.525103pt;}
.w5{width:6.525563pt;}
.w3{width:52.330941pt;}
.w4{width:61.887330pt;}
.w2{width:66.892422pt;}
.w1{width:95.333541pt;}
.wa{width:640.198800pt;}
.w9{width:640.214400pt;}
.w8{width:640.224600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.154537pt;}
.x13{left:3.312805pt;}
.x5f{left:12.100052pt;}
.x5b{left:13.015951pt;}
.x60{left:38.599704pt;}
.x5e{left:45.220477pt;}
.xd{left:66.816000pt;}
.x1{left:69.152000pt;}
.x23{left:70.381333pt;}
.x66{left:72.793333pt;}
.x40{left:74.488000pt;}
.x59{left:76.716000pt;}
.x2a{left:78.958667pt;}
.x64{left:80.100000pt;}
.xc{left:82.756000pt;}
.x2f{left:85.340000pt;}
.x2e{left:86.706667pt;}
.x3f{left:89.397333pt;}
.x58{left:90.644000pt;}
.x65{left:93.382667pt;}
.x62{left:96.965333pt;}
.x2{left:98.306667pt;}
.x43{left:105.784000pt;}
.x1f{left:106.970667pt;}
.x31{left:109.474667pt;}
.x32{left:110.464000pt;}
.x30{left:115.784000pt;}
.x45{left:117.068000pt;}
.x6{left:124.385333pt;}
.x50{left:129.532000pt;}
.x33{left:130.874667pt;}
.x2c{left:136.252000pt;}
.x61{left:143.953333pt;}
.x41{left:147.981333pt;}
.x48{left:149.254667pt;}
.x20{left:154.633333pt;}
.x57{left:156.088000pt;}
.x46{left:160.138667pt;}
.x25{left:162.472000pt;}
.x21{left:166.440000pt;}
.x24{left:169.968000pt;}
.x2d{left:172.900000pt;}
.x27{left:186.778667pt;}
.x28{left:187.769333pt;}
.x26{left:193.089333pt;}
.xb{left:194.660000pt;}
.x9{left:198.340000pt;}
.x52{left:200.197333pt;}
.x51{left:205.517333pt;}
.x29{left:208.180000pt;}
.x47{left:214.242667pt;}
.x5a{left:224.361205pt;}
.x63{left:234.316000pt;}
.x53{left:238.449333pt;}
.x7{left:264.846667pt;}
.x49{left:268.057333pt;}
.x42{left:271.746667pt;}
.x8{left:294.510667pt;}
.x54{left:298.634667pt;}
.x44{left:313.942667pt;}
.xa{left:319.114667pt;}
.x2b{left:320.114667pt;}
.x5c{left:333.520961pt;}
.x5{left:343.418667pt;}
.x22{left:366.328000pt;}
.x5d{left:376.124644pt;}
.x1d{left:393.494667pt;}
.x3{left:409.288000pt;}
.x19{left:411.816000pt;}
.x1e{left:425.100000pt;}
.x1c{left:427.756000pt;}
.x3d{left:433.338667pt;}
.xe{left:438.036413pt;}
.x4{left:447.528000pt;}
.x10{left:459.517943pt;}
.x3e{left:464.089333pt;}
.x12{left:476.916226pt;}
.x14{left:479.177851pt;}
.x4c{left:488.632000pt;}
.x35{left:489.636000pt;}
.x36{left:490.625333pt;}
.x34{left:495.946667pt;}
.x16{left:509.643351pt;}
.x55{left:513.146667pt;}
.x38{left:514.446667pt;}
.x17{left:518.193756pt;}
.x37{left:528.877333pt;}
.x39{left:535.064000pt;}
.x3a{left:536.053333pt;}
.x15{left:541.156216pt;}
.x3b{left:556.465333pt;}
.x4a{left:563.790667pt;}
.x4d{left:567.536000pt;}
.x1b{left:571.917333pt;}
.x1a{left:573.161333pt;}
.x4e{left:589.709333pt;}
.x4b{left:594.585333pt;}
.x56{left:596.580000pt;}
.x4f{left:618.048000pt;}
.xf{left:621.477238pt;}
.x11{left:623.979784pt;}
.x3c{left:711.328000pt;}
}




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