
    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_37e2bcabfb3e58300d0f0c57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a12e915b8ddefd80ed2bacbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_06bfcd1bb7ada0db72dcc0e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038086;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_cfab2d87909c0c87ec0ad8f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915527;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_8ba441f1d0e8219f821f7a54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_8bfb0557cda82b8c3cde4e4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_e87d948cf354a58867520e0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.718750;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_78c3f9dfde8b19ade7616b6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_163819255fea021ad7e3347b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_cd3f5538f3bc39c33e7faab7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_a9909eabeb2b0ee3e2f5e573.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_b09f4304ed01b411b33bfed0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104492;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_c3a673cfa7314261ad45299d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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_8c626efa76823d9b32cdf649.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.092773;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_c1013187099891381cd19fca.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3ffc4934c0c1fd7c142be4f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_752e9e801e1d8031666ec979.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;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_8162df5d66dcd9cfda945ffd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.939453;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_43b423b3115b0c64b7e345ef.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_531dbe2237674091dc6693c6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.740234;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_cd52d0be8931504161bd59c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1cdda6f0976b8598b0678767.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.739746;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_1cef3ac97e9fa817a8207201.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.875488;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_ad9a38e7e4174dc2cae93e1e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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_8afde17cc6d3f8f17812a971.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.875488;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_50bf4ea4ffc825314fc6f138.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.915527;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_a3793f4202c466204fab32fd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.967285;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_280629d7ea45d5ca0d326027.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.833984;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_535775282491f413fff08901.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_c60c52237771dd68e81fc44f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.002930;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_b73cf32662c53fb241182cc8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.863770;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_e19fdbaa8f1bbb91ad285249.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.862793;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_b46f6c751e5f654d0cddcac7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m3{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m4{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,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.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.v4{vertical-align:18.720000px;}
.v7{vertical-align:21.600000px;}
.v8{vertical-align:24.480000px;}
.v3{vertical-align:27.360000px;}
.v6{vertical-align:36.000000px;}
.ls95{letter-spacing:-6.328622px;}
.ls13{letter-spacing:-4.491072px;}
.ls98{letter-spacing:-2.670352px;}
.lsbb{letter-spacing:-1.330451px;}
.ls96{letter-spacing:-1.204777px;}
.lsbe{letter-spacing:-1.122568px;}
.lsbd{letter-spacing:-1.117371px;}
.lsac{letter-spacing:-1.055006px;}
.ls9a{letter-spacing:-0.696408px;}
.ls3d{letter-spacing:-0.601920px;}
.ls6{letter-spacing:-0.598752px;}
.ls3c{letter-spacing:-0.569088px;}
.ls37{letter-spacing:-0.508896px;}
.ls5{letter-spacing:-0.508032px;}
.ls3b{letter-spacing:-0.481536px;}
.ls4{letter-spacing:-0.480816px;}
.ls2{letter-spacing:-0.453600px;}
.ls36{letter-spacing:-0.448704px;}
.ls39{letter-spacing:-0.393984px;}
.ls3{letter-spacing:-0.362880px;}
.ls38{letter-spacing:-0.361152px;}
.ls41{letter-spacing:-0.338688px;}
.ls3f{letter-spacing:-0.320544px;}
.ls3e{letter-spacing:-0.302400px;}
.ls6c{letter-spacing:-0.284256px;}
.ls40{letter-spacing:-0.260064px;}
.ls6b{letter-spacing:-0.241920px;}
.ls6d{letter-spacing:-0.240768px;}
.ls3a{letter-spacing:-0.207936px;}
.ls12{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.158976px;}
.ls6e{letter-spacing:-0.157248px;}
.ls31{letter-spacing:-0.145728px;}
.ls42{letter-spacing:-0.145152px;}
.ls20{letter-spacing:-0.139104px;}
.ls17{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.125856px;}
.ls16{letter-spacing:-0.119232px;}
.ls73{letter-spacing:-0.096768px;}
.lsf{letter-spacing:-0.079488px;}
.lsbc{letter-spacing:-0.075594px;}
.ls15{letter-spacing:-0.039744px;}
.ls9b{letter-spacing:-0.015119px;}
.ls30{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls6f{letter-spacing:0.027216px;}
.lsaf{letter-spacing:0.041577px;}
.ls5b{letter-spacing:0.051840px;}
.ls5d{letter-spacing:0.053280px;}
.lsb0{letter-spacing:0.071814px;}
.ls60{letter-spacing:0.072000px;}
.ls69{letter-spacing:0.072288px;}
.ls5f{letter-spacing:0.072720px;}
.ls9f{letter-spacing:0.075594px;}
.ls28{letter-spacing:0.080640px;}
.ls58{letter-spacing:0.101088px;}
.ls57{letter-spacing:0.101232px;}
.ls5c{letter-spacing:0.101376px;}
.ls70{letter-spacing:0.123552px;}
.ls5a{letter-spacing:0.129456px;}
.ls2c{letter-spacing:0.137808px;}
.ls2a{letter-spacing:0.139680px;}
.ls29{letter-spacing:0.139824px;}
.ls14{letter-spacing:0.139968px;}
.lsab{letter-spacing:0.147408px;}
.lsb5{letter-spacing:0.151188px;}
.lsa4{letter-spacing:0.158747px;}
.ls67{letter-spacing:0.159840px;}
.ls63{letter-spacing:0.160128px;}
.ls66{letter-spacing:0.160272px;}
.ls68{letter-spacing:0.161280px;}
.ls6a{letter-spacing:0.162864px;}
.lsba{letter-spacing:0.166306px;}
.ls59{letter-spacing:0.187920px;}
.ls8b{letter-spacing:0.188985px;}
.ls91{letter-spacing:0.204103px;}
.ls80{letter-spacing:0.234341px;}
.ls83{letter-spacing:0.245569px;}
.ls78{letter-spacing:0.246169px;}
.ls5e{letter-spacing:0.252000px;}
.ls61{letter-spacing:0.256608px;}
.lsb2{letter-spacing:0.272138px;}
.ls62{letter-spacing:0.275616px;}
.ls65{letter-spacing:0.279504px;}
.ls64{letter-spacing:0.279648px;}
.lsa1{letter-spacing:0.283477px;}
.ls7e{letter-spacing:0.288557px;}
.ls1a{letter-spacing:0.292896px;}
.ls1b{letter-spacing:0.293760px;}
.ls71{letter-spacing:0.318384px;}
.ls76{letter-spacing:0.325053px;}
.lsae{letter-spacing:0.332613px;}
.ls72{letter-spacing:0.356400px;}
.ls46{letter-spacing:0.358560px;}
.ls81{letter-spacing:0.359071px;}
.lsa2{letter-spacing:0.366630px;}
.ls74{letter-spacing:0.368651px;}
.lsb3{letter-spacing:0.374189px;}
.lsad{letter-spacing:0.377969px;}
.ls9d{letter-spacing:0.389308px;}
.lsa3{letter-spacing:0.393088px;}
.lsa6{letter-spacing:0.453563px;}
.lsb9{letter-spacing:0.457343px;}
.lsb8{letter-spacing:0.476241px;}
.lsb1{letter-spacing:0.487580px;}
.lsa0{letter-spacing:0.506479px;}
.ls9e{letter-spacing:0.510258px;}
.ls92{letter-spacing:0.510456px;}
.lsaa{letter-spacing:0.525377px;}
.lsa7{letter-spacing:0.536716px;}
.lsb6{letter-spacing:0.540496px;}
.ls9c{letter-spacing:0.548055px;}
.ls99{letter-spacing:0.555615px;}
.lsa5{letter-spacing:0.559394px;}
.lsb4{letter-spacing:0.570733px;}
.ls7f{letter-spacing:0.571322px;}
.lsc5{letter-spacing:0.595301px;}
.lsa9{letter-spacing:0.612310px;}
.lsb7{letter-spacing:0.627429px;}
.ls97{letter-spacing:0.720031px;}
.lsc4{letter-spacing:0.737040px;}
.lsa8{letter-spacing:0.755938px;}
.lscf{letter-spacing:0.822083px;}
.lsbf{letter-spacing:0.922717px;}
.ls43{letter-spacing:0.948960px;}
.lsc0{letter-spacing:0.949175px;}
.lsc1{letter-spacing:0.958152px;}
.lscd{letter-spacing:1.000673px;}
.lsce{letter-spacing:1.006343px;}
.lsc3{letter-spacing:1.063038px;}
.lsc9{letter-spacing:1.085717px;}
.lscb{letter-spacing:1.162255px;}
.lsc8{letter-spacing:1.184933px;}
.lsc7{letter-spacing:1.238794px;}
.lsc2{letter-spacing:1.303994px;}
.lscc{letter-spacing:1.465576px;}
.ls45{letter-spacing:1.730880px;}
.ls44{letter-spacing:1.731168px;}
.lsca{letter-spacing:1.766061px;}
.ls4f{letter-spacing:1.898208px;}
.ls4e{letter-spacing:1.899648px;}
.lsc6{letter-spacing:2.154424px;}
.ls4a{letter-spacing:2.183040px;}
.ls2b{letter-spacing:2.202912px;}
.ls2d{letter-spacing:2.363040px;}
.ls2f{letter-spacing:2.563200px;}
.ls21{letter-spacing:3.100896px;}
.ls22{letter-spacing:3.101760px;}
.ls33{letter-spacing:3.392928px;}
.ls19{letter-spacing:3.719520px;}
.ls18{letter-spacing:3.720528px;}
.ls25{letter-spacing:3.771792px;}
.ls24{letter-spacing:4.617072px;}
.ls34{letter-spacing:5.047200px;}
.ls1c{letter-spacing:5.055840px;}
.ls48{letter-spacing:6.363216px;}
.ls47{letter-spacing:6.364656px;}
.ls49{letter-spacing:6.364800px;}
.ls4d{letter-spacing:6.711696px;}
.ls2e{letter-spacing:7.448544px;}
.ls94{letter-spacing:8.273043px;}
.ls93{letter-spacing:8.419061px;}
.ls7b{letter-spacing:8.768706px;}
.ls7d{letter-spacing:8.858630px;}
.ls77{letter-spacing:8.863732px;}
.ls79{letter-spacing:9.019466px;}
.ls7c{letter-spacing:9.085855px;}
.ls7a{letter-spacing:9.104287px;}
.ls32{letter-spacing:9.434880px;}
.ls50{letter-spacing:9.908640px;}
.ls90{letter-spacing:9.912085px;}
.ls26{letter-spacing:9.972576px;}
.ls84{letter-spacing:10.635374px;}
.ls85{letter-spacing:10.729799px;}
.ls8e{letter-spacing:11.046126px;}
.ls8f{letter-spacing:11.070127px;}
.ls4c{letter-spacing:11.079360px;}
.ls4b{letter-spacing:11.081376px;}
.ls8d{letter-spacing:11.211732px;}
.ls88{letter-spacing:11.957821px;}
.ls87{letter-spacing:12.052247px;}
.ls89{letter-spacing:12.076248px;}
.ls82{letter-spacing:12.779771px;}
.ls51{letter-spacing:13.138128px;}
.ls52{letter-spacing:13.138560px;}
.ls53{letter-spacing:13.140000px;}
.ls27{letter-spacing:13.566240px;}
.ls35{letter-spacing:14.741280px;}
.ls8a{letter-spacing:15.988095px;}
.ls8c{letter-spacing:15.997167px;}
.ls1e{letter-spacing:17.229312px;}
.ls1f{letter-spacing:17.229600px;}
.ls86{letter-spacing:18.170867px;}
.ls23{letter-spacing:34.542288px;}
.ls9{letter-spacing:34.542432px;}
.ls75{letter-spacing:38.505541px;}
.ls54{letter-spacing:41.882544px;}
.ls1d{letter-spacing:47.289600px;}
.lse{letter-spacing:80.216064px;}
.lsd{letter-spacing:98.553024px;}
.ls56{letter-spacing:102.235680px;}
.lsb{letter-spacing:116.889984px;}
.lsa{letter-spacing:124.237584px;}
.lsc{letter-spacing:135.226800px;}
.ls55{letter-spacing:138.941712px;}
.ls8{letter-spacing:142.574544px;}
.ls7{letter-spacing:160.911504px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.220160px;}
.ws1{word-spacing:-24.766560px;}
.ws2{word-spacing:-20.030400px;}
.ws7{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.374976px;}
.ws4{word-spacing:-18.335232px;}
.ws9{word-spacing:-18.295488px;}
.ws5{word-spacing:-18.288864px;}
.ws11{word-spacing:-18.275616px;}
.wsd{word-spacing:-18.268992px;}
.ws6{word-spacing:-18.255744px;}
.wsc{word-spacing:-18.216000px;}
.ws13{word-spacing:-16.813440px;}
.ws1c{word-spacing:-16.668288px;}
.ws1a{word-spacing:-16.571520px;}
.ws1b{word-spacing:-16.553376px;}
.ws1d{word-spacing:-16.492896px;}
.wsb{word-spacing:-16.257600px;}
.wse{word-spacing:-15.212160px;}
.wsf{word-spacing:-14.818176px;}
.ws10{word-spacing:-14.763456px;}
.ws1e{word-spacing:-14.703264px;}
.ws12{word-spacing:-14.610240px;}
.ws21{word-spacing:-13.368771px;}
.ws20{word-spacing:-13.334112px;}
.wsa{word-spacing:-11.747088px;}
.ws60{word-spacing:-10.690386px;}
.ws101{word-spacing:-10.622824px;}
.wsaa{word-spacing:-10.414941px;}
.ws153{word-spacing:-1.267142px;}
.ws96{word-spacing:-0.585852px;}
.ws44{word-spacing:-0.563174px;}
.ws66{word-spacing:-0.548055px;}
.ws3d{word-spacing:-0.491360px;}
.wsb5{word-spacing:-0.427105px;}
.ws8b{word-spacing:-0.411986px;}
.wsa5{word-spacing:-0.396868px;}
.ws50{word-spacing:-0.362850px;}
.ws6b{word-spacing:-0.272138px;}
.ws5e{word-spacing:-0.241900px;}
.ws19{word-spacing:-0.229680px;}
.ws18{word-spacing:-0.204624px;}
.ws3b{word-spacing:-0.196544px;}
.ws8e{word-spacing:-0.188985px;}
.ws17{word-spacing:-0.171216px;}
.ws14{word-spacing:-0.066240px;}
.ws1f{word-spacing:-0.066096px;}
.ws15{word-spacing:-0.050400px;}
.ws16{word-spacing:-0.041760px;}
.ws41{word-spacing:-0.037797px;}
.ws149{word-spacing:-0.028348px;}
.ws74{word-spacing:-0.022678px;}
.ws3{word-spacing:0.000000px;}
.ws148{word-spacing:4.748096px;}
.ws145{word-spacing:5.175362px;}
.ws155{word-spacing:5.643165px;}
.ws143{word-spacing:5.688448px;}
.ws156{word-spacing:5.688510px;}
.ws147{word-spacing:5.696883px;}
.ws140{word-spacing:5.774475px;}
.ws154{word-spacing:6.061578px;}
.ws157{word-spacing:6.099356px;}
.ws141{word-spacing:6.170432px;}
.ws144{word-spacing:6.207415px;}
.ws146{word-spacing:6.571908px;}
.ws142{word-spacing:6.581139px;}
.ws61{word-spacing:7.559203px;}
.ws42{word-spacing:7.568786px;}
.ws43{word-spacing:7.588696px;}
.ws75{word-spacing:7.733901px;}
.ws3f{word-spacing:7.745119px;}
.ws4a{word-spacing:7.774935px;}
.ws38{word-spacing:7.781548px;}
.ws45{word-spacing:7.842591px;}
.ws7e{word-spacing:7.894407px;}
.ws78{word-spacing:7.951658px;}
.ws77{word-spacing:7.955104px;}
.ws39{word-spacing:7.978947px;}
.ws8c{word-spacing:7.982528px;}
.wsde{word-spacing:7.996659px;}
.ws133{word-spacing:8.001805px;}
.wsc9{word-spacing:8.047006px;}
.ws135{word-spacing:8.099810px;}
.ws3c{word-spacing:8.100277px;}
.ws36{word-spacing:8.165100px;}
.ws4e{word-spacing:8.192324px;}
.ws79{word-spacing:8.224630px;}
.wsca{word-spacing:8.258402px;}
.ws4b{word-spacing:8.296133px;}
.wsdc{word-spacing:8.325426px;}
.wsda{word-spacing:8.328836px;}
.ws136{word-spacing:8.333495px;}
.ws11d{word-spacing:8.333928px;}
.ws134{word-spacing:8.338087px;}
.ws64{word-spacing:8.353727px;}
.wscb{word-spacing:8.355906px;}
.ws48{word-spacing:8.375905px;}
.wsff{word-spacing:8.378941px;}
.ws130{word-spacing:8.392691px;}
.ws7c{word-spacing:8.399305px;}
.ws40{word-spacing:8.429056px;}
.ws30{word-spacing:8.429656px;}
.ws132{word-spacing:8.431657px;}
.ws2f{word-spacing:8.457369px;}
.ws69{word-spacing:8.497691px;}
.ws8d{word-spacing:8.549006px;}
.wse0{word-spacing:8.549728px;}
.ws125{word-spacing:8.551617px;}
.ws80{word-spacing:8.556866px;}
.wse2{word-spacing:8.558777px;}
.ws46{word-spacing:8.570605px;}
.ws131{word-spacing:8.572584px;}
.wsdd{word-spacing:8.579130px;}
.ws12e{word-spacing:8.586424px;}
.wse3{word-spacing:8.588490px;}
.wsc8{word-spacing:8.594883px;}
.ws4d{word-spacing:8.606968px;}
.ws31{word-spacing:8.614973px;}
.wsfe{word-spacing:8.633668px;}
.wsdf{word-spacing:8.655693px;}
.ws68{word-spacing:8.730910px;}
.ws67{word-spacing:8.740513px;}
.ws35{word-spacing:8.745239px;}
.ws11c{word-spacing:8.752841px;}
.ws49{word-spacing:8.759456px;}
.ws33{word-spacing:8.778199px;}
.ws3a{word-spacing:8.797164px;}
.ws129{word-spacing:8.811047px;}
.wse1{word-spacing:8.820833px;}
.ws63{word-spacing:8.825935px;}
.ws32{word-spacing:8.839838px;}
.ws8f{word-spacing:8.871480px;}
.ws76{word-spacing:8.872781px;}
.wsdb{word-spacing:8.896338px;}
.ws34{word-spacing:8.902295px;}
.ws65{word-spacing:8.905898px;}
.ws62{word-spacing:8.929009px;}
.ws7d{word-spacing:8.929898px;}
.ws7a{word-spacing:8.951232px;}
.ws6a{word-spacing:8.962704px;}
.ws4c{word-spacing:8.966748px;}
.ws127{word-spacing:8.986147px;}
.ws12f{word-spacing:9.000145px;}
.ws7b{word-spacing:9.020844px;}
.ws37{word-spacing:9.104018px;}
.ws47{word-spacing:9.118237px;}
.ws6c{word-spacing:9.147187px;}
.ws123{word-spacing:9.207727px;}
.ws122{word-spacing:9.270638px;}
.ws91{word-spacing:9.327289px;}
.ws95{word-spacing:9.351290px;}
.ws11f{word-spacing:9.424926px;}
.ws126{word-spacing:9.444236px;}
.ws12d{word-spacing:9.478475px;}
.ws12b{word-spacing:9.488604px;}
.ws128{word-spacing:9.489204px;}
.ws92{word-spacing:9.501876px;}
.ws12c{word-spacing:9.512035px;}
.ws120{word-spacing:9.631353px;}
.ws12a{word-spacing:9.633687px;}
.ws93{word-spacing:9.669439px;}
.ws124{word-spacing:9.699698px;}
.ws11e{word-spacing:9.723255px;}
.ws83{word-spacing:9.746323px;}
.ws85{word-spacing:9.746923px;}
.ws94{word-spacing:9.780483px;}
.wsb8{word-spacing:9.789332px;}
.wsaf{word-spacing:9.798581px;}
.wsc2{word-spacing:9.812645px;}
.ws119{word-spacing:9.945134px;}
.ws87{word-spacing:10.039826px;}
.ws90{word-spacing:10.055412px;}
.ws121{word-spacing:10.117354px;}
.ws82{word-spacing:10.129793px;}
.ws8a{word-spacing:10.200875px;}
.wsba{word-spacing:10.221997px;}
.ws84{word-spacing:10.231668px;}
.wsc7{word-spacing:10.270798px;}
.wsb7{word-spacing:10.276121px;}
.wsb0{word-spacing:10.296324px;}
.wsc5{word-spacing:10.304093px;}
.ws109{word-spacing:10.314187px;}
.ws111{word-spacing:10.319390px;}
.wsc3{word-spacing:10.328926px;}
.wsbd{word-spacing:10.330882px;}
.ws10a{word-spacing:10.335520px;}
.wsb9{word-spacing:10.358108px;}
.wsc0{word-spacing:10.369127px;}
.ws86{word-spacing:10.385847px;}
.wsad{word-spacing:10.425444px;}
.ws81{word-spacing:10.470490px;}
.ws55{word-spacing:10.479547px;}
.wsb4{word-spacing:10.481040px;}
.ws104{word-spacing:10.484396px;}
.wsc4{word-spacing:10.490053px;}
.ws115{word-spacing:10.498660px;}
.ws88{word-spacing:10.532832px;}
.ws107{word-spacing:10.540479px;}
.wsb2{word-spacing:10.545404px;}
.wsb6{word-spacing:10.550128px;}
.ws103{word-spacing:10.554131px;}
.ws117{word-spacing:10.562302px;}
.ws11b{word-spacing:10.573686px;}
.ws10b{word-spacing:10.578934px;}
.ws116{word-spacing:10.579843px;}
.wsab{word-spacing:10.587905px;}
.ws112{word-spacing:10.588515px;}
.ws113{word-spacing:10.598164px;}
.wsbf{word-spacing:10.616206px;}
.ws11a{word-spacing:10.622645px;}
.wsbb{word-spacing:10.658708px;}
.wsb1{word-spacing:10.663231px;}
.wsac{word-spacing:10.721048px;}
.wsbe{word-spacing:10.734033px;}
.ws108{word-spacing:10.739860px;}
.ws105{word-spacing:10.750928px;}
.wsb3{word-spacing:10.771965px;}
.ws110{word-spacing:10.776977px;}
.ws102{word-spacing:10.825102px;}
.ws10f{word-spacing:10.828971px;}
.wsae{word-spacing:10.833227px;}
.wsc6{word-spacing:10.843367px;}
.wse9{word-spacing:10.876283px;}
.ws89{word-spacing:10.904743px;}
.ws118{word-spacing:10.913570px;}
.ws10c{word-spacing:10.913791px;}
.wsc1{word-spacing:10.981914px;}
.ws10e{word-spacing:10.994111px;}
.ws5d{word-spacing:11.004615px;}
.wse4{word-spacing:11.010284px;}
.ws5c{word-spacing:11.061311px;}
.ws10d{word-spacing:11.075573px;}
.ws57{word-spacing:11.089433px;}
.ws58{word-spacing:11.099152px;}
.ws106{word-spacing:11.197379px;}
.ws56{word-spacing:11.216100px;}
.ws54{word-spacing:11.230863px;}
.ws114{word-spacing:11.243792px;}
.ws53{word-spacing:11.278030px;}
.wse7{word-spacing:11.305667px;}
.wsbc{word-spacing:11.315293px;}
.wsef{word-spacing:11.324655px;}
.ws52{word-spacing:11.357948px;}
.ws59{word-spacing:11.410009px;}
.wse8{word-spacing:11.419658px;}
.ws5b{word-spacing:11.494831px;}
.wsea{word-spacing:11.537485px;}
.ws5a{word-spacing:11.571191px;}
.wsed{word-spacing:11.614678px;}
.wsa7{word-spacing:11.615236px;}
.wsee{word-spacing:11.736096px;}
.wsec{word-spacing:11.937521px;}
.wse5{word-spacing:11.972015px;}
.wse6{word-spacing:12.028953px;}
.wseb{word-spacing:12.047899px;}
.wsa0{word-spacing:12.564548px;}
.wsa6{word-spacing:12.652651px;}
.wsa2{word-spacing:12.661654px;}
.wsa1{word-spacing:12.794522px;}
.wsa3{word-spacing:12.823436px;}
.wsa8{word-spacing:12.883845px;}
.wsa4{word-spacing:13.068328px;}
.ws27{word-spacing:13.375692px;}
.ws2e{word-spacing:13.491340px;}
.ws2a{word-spacing:13.568801px;}
.ws99{word-spacing:13.902716px;}
.ws26{word-spacing:14.050122px;}
.ws2b{word-spacing:14.055637px;}
.ws2d{word-spacing:14.058784px;}
.ws9c{word-spacing:14.109320px;}
.ws24{word-spacing:14.122661px;}
.ws28{word-spacing:14.129408px;}
.ws9a{word-spacing:14.190851px;}
.ws25{word-spacing:14.191907px;}
.ws29{word-spacing:14.299648px;}
.ws23{word-spacing:14.471925px;}
.ws97{word-spacing:14.477274px;}
.ws9b{word-spacing:14.492371px;}
.ws22{word-spacing:14.514346px;}
.ws98{word-spacing:14.545308px;}
.ws151{word-spacing:14.580123px;}
.ws9d{word-spacing:14.596023px;}
.ws2c{word-spacing:14.622903px;}
.ws9e{word-spacing:14.857488px;}
.ws14f{word-spacing:14.868079px;}
.ws9f{word-spacing:14.986095px;}
.wsf0{word-spacing:15.066727px;}
.wsfb{word-spacing:15.189076px;}
.wsf2{word-spacing:15.203496px;}
.wsf5{word-spacing:15.355018px;}
.wsf3{word-spacing:15.579776px;}
.wsf8{word-spacing:15.658537px;}
.wsf6{word-spacing:15.690377px;}
.wsfa{word-spacing:15.754787px;}
.wsfc{word-spacing:15.783110px;}
.wsf9{word-spacing:15.845676px;}
.wsf1{word-spacing:15.953466px;}
.wsfd{word-spacing:15.987916px;}
.wsf4{word-spacing:16.002823px;}
.wsf7{word-spacing:16.132890px;}
.ws14c{word-spacing:16.456874px;}
.ws14e{word-spacing:16.830148px;}
.ws14a{word-spacing:17.037017px;}
.wsd5{word-spacing:17.136330px;}
.wsd7{word-spacing:17.145778px;}
.wsd0{word-spacing:17.235435px;}
.ws152{word-spacing:17.249230px;}
.ws14d{word-spacing:17.273231px;}
.wsd9{word-spacing:17.276591px;}
.ws7f{word-spacing:17.632260px;}
.wsd6{word-spacing:17.652345px;}
.ws150{word-spacing:17.670298px;}
.wsd8{word-spacing:17.685985px;}
.wsd1{word-spacing:17.703150px;}
.wscf{word-spacing:17.795397px;}
.wsd3{word-spacing:17.796110px;}
.ws4f{word-spacing:17.882776px;}
.wsd2{word-spacing:17.891825px;}
.wsce{word-spacing:18.033917px;}
.wscd{word-spacing:18.116217px;}
.wsd4{word-spacing:18.151543px;}
.ws13d{word-spacing:18.190102px;}
.ws14b{word-spacing:18.694965px;}
.ws139{word-spacing:19.352432px;}
.ws13f{word-spacing:19.514070px;}
.ws13e{word-spacing:20.315858px;}
.ws13a{word-spacing:20.344142px;}
.ws137{word-spacing:20.501106px;}
.ws13b{word-spacing:20.778441px;}
.ws13c{word-spacing:21.218432px;}
.ws138{word-spacing:21.765876px;}
.ws51{word-spacing:22.894948px;}
.ws3e{word-spacing:26.462076px;}
.ws72{word-spacing:27.898758px;}
.ws70{word-spacing:27.918033px;}
.ws6f{word-spacing:27.998720px;}
.ws6e{word-spacing:28.036562px;}
.ws71{word-spacing:28.404492px;}
.ws73{word-spacing:28.404937px;}
.ws6d{word-spacing:28.569610px;}
.ws5f{word-spacing:56.745274px;}
.ws100{word-spacing:69.992621px;}
.wsa9{word-spacing:72.700297px;}
.wscc{word-spacing:85.100521px;}
._10{margin-left:-6.194448px;}
._f{margin-left:-5.084640px;}
._3{margin-left:-3.791520px;}
._2{margin-left:-2.437920px;}
._1{margin-left:-1.088640px;}
._0{width:1.088640px;}
._b{width:2.390688px;}
._4{width:3.755232px;}
._5{width:4.825728px;}
._9{width:5.932800px;}
._8{width:7.513920px;}
._7{width:8.544960px;}
._c{width:10.399680px;}
._12{width:12.055680px;}
._13{width:13.512960px;}
._14{width:14.544000px;}
._6{width:15.632640px;}
._a{width:16.718976px;}
._27{width:18.260389px;}
._e{width:19.328832px;}
._16{width:20.693376px;}
._15{width:22.080384px;}
._17{width:23.581440px;}
._1a{width:24.773760px;}
._19{width:26.694720px;}
._1b{width:28.218240px;}
._d{width:29.940480px;}
._1d{width:31.037760px;}
._18{width:32.258880px;}
._24{width:33.356160px;}
._22{width:34.511040px;}
._1c{width:37.277424px;}
._26{width:40.870080px;}
._23{width:42.128640px;}
._21{width:49.547520px;}
._20{width:52.992000px;}
._1e{width:67.527360px;}
._25{width:159.373440px;}
._1f{width:164.390400px;}
._11{width:193.985280px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:28.347690px;}
.fs11{font-size:33.072309px;}
.fs10{font-size:37.796916px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fsb{font-size:47.520000px;}
.fsc{font-size:50.189168px;}
.fs6{font-size:50.400000px;}
.fsf{font-size:51.970761px;}
.fs5{font-size:54.720000px;}
.fse{font-size:56.695380px;}
.fs7{font-size:59.294117px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:70.588238px;}
.fsd{font-size:70.869225px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:76.044197px;}
.fs2{font-size:90.720000px;}
.ye2{bottom:-20.640000px;}
.y158{bottom:-11.880000px;}
.y14f{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:4.320000px;}
.y182{bottom:4.500000px;}
.y160{bottom:4.860000px;}
.y3{bottom:5.580000px;}
.ye1{bottom:7.440000px;}
.y1b2{bottom:10.440000px;}
.y17e{bottom:12.420000px;}
.y17d{bottom:12.656484px;}
.yde{bottom:12.660000px;}
.y7e{bottom:13.200000px;}
.yab{bottom:13.260000px;}
.y9a{bottom:13.320000px;}
.y137{bottom:13.380000px;}
.y88{bottom:13.440000px;}
.y6d{bottom:13.500000px;}
.ya3{bottom:13.560000px;}
.y69{bottom:13.620000px;}
.y71{bottom:13.680000px;}
.ya7{bottom:13.740000px;}
.y75{bottom:13.800000px;}
.y7c{bottom:13.860000px;}
.ya9{bottom:13.920000px;}
.y94{bottom:13.980000px;}
.y80{bottom:14.040000px;}
.yad{bottom:14.100000px;}
.y9c{bottom:14.160000px;}
.y77{bottom:14.280000px;}
.y6f{bottom:14.340000px;}
.ya5{bottom:14.400000px;}
.y73{bottom:14.460000px;}
.y6b{bottom:14.520000px;}
.ya8{bottom:14.580000px;}
.y92{bottom:14.640000px;}
.yca{bottom:14.700000px;}
.y82{bottom:14.880000px;}
.yd1{bottom:15.240000px;}
.y1b8{bottom:15.660000px;}
.y1ca{bottom:15.780000px;}
.y1b7{bottom:15.896520px;}
.y1c9{bottom:16.016520px;}
.y1a1{bottom:16.260000px;}
.y1c8{bottom:16.320000px;}
.y1a0{bottom:16.496520px;}
.y1b9{bottom:16.740000px;}
.y19e{bottom:16.800000px;}
.y1a4{bottom:17.160000px;}
.y1cb{bottom:17.220000px;}
.y1a2{bottom:17.340000px;}
.y1a3{bottom:17.396520px;}
.y1b5{bottom:17.700000px;}
.y1fb{bottom:17.858948px;}
.y1a5{bottom:18.240000px;}
.y157{bottom:18.360000px;}
.y163{bottom:20.040000px;}
.y1c6{bottom:21.600000px;}
.yd4{bottom:22.380000px;}
.y170{bottom:22.740000px;}
.y16f{bottom:22.976470px;}
.y181{bottom:23.220000px;}
.y173{bottom:23.580000px;}
.y172{bottom:23.816470px;}
.y171{bottom:24.180000px;}
.y174{bottom:24.660000px;}
.y16d{bottom:24.840000px;}
.y15f{bottom:25.380000px;}
.y193{bottom:25.680000px;}
.y192{bottom:25.944708px;}
.y185{bottom:28.680000px;}
.ycb{bottom:29.460000px;}
.y194{bottom:29.640000px;}
.yce{bottom:29.700000px;}
.y195{bottom:29.876520px;}
.y190{bottom:30.060000px;}
.ycd{bottom:30.420000px;}
.ye0{bottom:30.480000px;}
.y196{bottom:30.720000px;}
.y1c4{bottom:31.260000px;}
.yc9{bottom:31.620000px;}
.yd0{bottom:32.160000px;}
.y1b1{bottom:32.400000px;}
.yd2{bottom:32.520000px;}
.ydd{bottom:33.180000px;}
.y17a{bottom:37.620000px;}
.y162{bottom:39.120000px;}
.y87{bottom:41.880000px;}
.y68{bottom:42.060000px;}
.y1fa{bottom:42.237998px;}
.y180{bottom:42.300000px;}
.ya2{bottom:42.360000px;}
.y19c{bottom:42.720000px;}
.y7a{bottom:42.960000px;}
.yae{bottom:43.080000px;}
.y1c0{bottom:43.860000px;}
.y15e{bottom:44.460000px;}
.y156{bottom:46.800000px;}
.y177{bottom:46.980000px;}
.y184{bottom:47.760000px;}
.y16b{bottom:48.420000px;}
.y1c3{bottom:48.540000px;}
.y18e{bottom:49.440000px;}
.y2{bottom:51.000000px;}
.y1b0{bottom:52.920000px;}
.y179{bottom:53.100000px;}
.y1f9{bottom:53.860598px;}
.ydc{bottom:54.060000px;}
.y1{bottom:56.940000px;}
.y199{bottom:59.280000px;}
.y167{bottom:62.100000px;}
.y19b{bottom:62.520000px;}
.y1bf{bottom:62.580000px;}
.y1f8{bottom:64.632698px;}
.y16a{bottom:65.340000px;}
.y1c2{bottom:65.820000px;}
.y176{bottom:66.060000px;}
.y18d{bottom:66.720000px;}
.y178{bottom:68.940000px;}
.y1af{bottom:73.800000px;}
.ydb{bottom:74.580000px;}
.y155{bottom:75.240000px;}
.y1f7{bottom:76.255148px;}
.ydf{bottom:76.500000px;}
.y198{bottom:78.360000px;}
.y189{bottom:79.320000px;}
.y19a{bottom:79.800000px;}
.y166{bottom:80.820000px;}
.y1be{bottom:81.660000px;}
.y1c1{bottom:83.100000px;}
.y18c{bottom:84.000000px;}
.y169{bottom:84.780000px;}
.y1f6{bottom:88.161248px;}
.y1bb{bottom:88.560000px;}
.y1ba{bottom:88.796520px;}
.y1bc{bottom:89.640000px;}
.y1aa{bottom:92.880000px;}
.y1ae{bottom:94.320000px;}
.yda{bottom:95.460000px;}
.y188{bottom:98.400000px;}
.y165{bottom:99.900000px;}
.y1f5{bottom:100.067348px;}
.y18b{bottom:101.280000px;}
.y168{bottom:102.780000px;}
.y154{bottom:103.680000px;}
.yd3{bottom:108.000000px;}
.y70{bottom:109.500000px;}
.y1f4{bottom:111.689798px;}
.y1a9{bottom:111.960000px;}
.yc5{bottom:112.500000px;}
.y1ad{bottom:115.200000px;}
.y3a{bottom:115.620000px;}
.yd9{bottom:115.980000px;}
.y187{bottom:117.120000px;}
.y18a{bottom:118.560000px;}
.yf1{bottom:119.220000px;}
.y15c{bottom:121.740000px;}
.y4a{bottom:124.980000px;}
.y1ac{bottom:129.960000px;}
.y1a8{bottom:130.680000px;}
.y15{bottom:131.460000px;}
.y153{bottom:132.120000px;}
.y135{bottom:132.900000px;}
.ya0{bottom:133.500000px;}
.yf0{bottom:136.500000px;}
.yd8{bottom:136.860000px;}
.y1ff{bottom:137.202698px;}
.y14d{bottom:137.220000px;}
.y6e{bottom:138.000000px;}
.y15b{bottom:140.820000px;}
.yc4{bottom:141.000000px;}
.y39{bottom:144.060000px;}
.y1fe{bottom:146.840948px;}
.y1a7{bottom:149.760000px;}
.yef{bottom:150.540000px;}
.y1ab{bottom:151.200000px;}
.y134{bottom:151.980000px;}
.y49{bottom:153.420000px;}
.y1bd{bottom:156.000000px;}
.yd7{bottom:157.380000px;}
.y152{bottom:160.560000px;}
.y14{bottom:160.980000px;}
.y10c{bottom:163.140000px;}
.y9f{bottom:163.500000px;}
.y1fd{bottom:165.266948px;}
.y14c{bottom:165.660000px;}
.y6c{bottom:168.000000px;}
.yc3{bottom:171.000000px;}
.y133{bottom:171.060000px;}
.y38{bottom:172.500000px;}
.y1fc{bottom:174.621698px;}
.yd6{bottom:178.260000px;}
.y48{bottom:181.860000px;}
.y10b{bottom:182.220000px;}
.y1c7{bottom:187.500000px;}
.y151{bottom:189.000000px;}
.y132{bottom:190.140000px;}
.y13{bottom:191.940000px;}
.y9e{bottom:192.000000px;}
.y14b{bottom:194.100000px;}
.y6a{bottom:196.500000px;}
.yd5{bottom:198.780000px;}
.y37{bottom:200.940000px;}
.y1cd{bottom:207.420000px;}
.y131{bottom:208.860000px;}
.y47{bottom:210.300000px;}
.yc2{bottom:212.460000px;}
.y150{bottom:217.440000px;}
.y1c5{bottom:217.500000px;}
.y10a{bottom:220.020000px;}
.y12{bottom:221.820000px;}
.y9d{bottom:222.000000px;}
.y14a{bottom:222.540000px;}
.y130{bottom:227.940000px;}
.y67{bottom:228.000000px;}
.y36{bottom:229.380000px;}
.y1cc{bottom:234.060000px;}
.y1ce{bottom:234.164850px;}
.yc1{bottom:235.860000px;}
.y46{bottom:238.740000px;}
.y109{bottom:239.100000px;}
.y12f{bottom:247.020000px;}
.y11{bottom:250.260000px;}
.y9b{bottom:250.500000px;}
.y149{bottom:250.980000px;}
.y1a6{bottom:253.500000px;}
.y35{bottom:257.820000px;}
.yc0{bottom:258.900000px;}
.y12e{bottom:266.100000px;}
.y45{bottom:267.180000px;}
.y108{bottom:276.900000px;}
.y1e8{bottom:277.807298px;}
.y148{bottom:279.420000px;}
.y99{bottom:280.500000px;}
.ybf{bottom:282.300000px;}
.y10{bottom:283.380000px;}
.y12d{bottom:284.820000px;}
.y34{bottom:286.260000px;}
.y1e7{bottom:288.295898px;}
.y44{bottom:295.620000px;}
.y107{bottom:295.980000px;}
.y66{bottom:297.060000px;}
.y1e6{bottom:300.201998px;}
.y12c{bottom:303.900000px;}
.ybe{bottom:305.700000px;}
.y147{bottom:307.860000px;}
.y98{bottom:309.000000px;}
.y1e5{bottom:312.107948px;}
.y33{bottom:314.700000px;}
.y65{bottom:320.100000px;}
.yf{bottom:322.260000px;}
.ycf{bottom:322.500000px;}
.y12b{bottom:322.980000px;}
.y1e4{bottom:323.730548px;}
.y43{bottom:324.420000px;}
.ybd{bottom:331.260000px;}
.y106{bottom:333.780000px;}
.y1e3{bottom:334.502648px;}
.y146{bottom:336.300000px;}
.y97{bottom:337.500000px;}
.y12a{bottom:341.700000px;}
.y32{bottom:343.140000px;}
.y64{bottom:343.500000px;}
.y1e2{bottom:346.125248px;}
.y42{bottom:352.860000px;}
.y1b6{bottom:357.000000px;}
.y1e1{bottom:358.031348px;}
.ybc{bottom:359.700000px;}
.y129{bottom:360.780000px;}
.ye{bottom:361.140000px;}
.y145{bottom:365.100000px;}
.y63{bottom:366.900000px;}
.y96{bottom:367.500000px;}
.y1e0{bottom:369.937298px;}
.y31{bottom:371.580000px;}
.y105{bottom:371.940000px;}
.y128{bottom:380.220000px;}
.y1df{bottom:380.425898px;}
.y41{bottom:381.300000px;}
.y1b4{bottom:387.000000px;}
.ybb{bottom:388.140000px;}
.y62{bottom:389.940000px;}
.y104{bottom:390.660000px;}
.y1de{bottom:392.331998px;}
.y144{bottom:393.540000px;}
.y95{bottom:396.000000px;}
.yd{bottom:399.660000px;}
.y30{bottom:400.020000px;}
.y1dd{bottom:404.237948px;}
.y40{bottom:409.740000px;}
.y61{bottom:413.340000px;}
.y1dc{bottom:415.860548px;}
.yba{bottom:416.580000px;}
.y127{bottom:418.380000px;}
.y197{bottom:418.500000px;}
.y5e{bottom:419.100000px;}
.y143{bottom:421.980000px;}
.y93{bottom:426.000000px;}
.y1db{bottom:427.766648px;}
.y2f{bottom:428.460000px;}
.y103{bottom:428.820000px;}
.yc{bottom:433.860000px;}
.y60{bottom:436.740000px;}
.y126{bottom:437.460000px;}
.y3f{bottom:438.180000px;}
.yb9{bottom:445.020000px;}
.y102{bottom:447.540000px;}
.y19f{bottom:450.000000px;}
.y142{bottom:450.420000px;}
.y91{bottom:454.500000px;}
.y125{bottom:456.540000px;}
.y2e{bottom:456.900000px;}
.y5d{bottom:457.260000px;}
.y5f{bottom:459.780000px;}
.yb{bottom:462.300000px;}
.y3e{bottom:466.620000px;}
.yb8{bottom:473.460000px;}
.y124{bottom:475.260000px;}
.y141{bottom:478.860000px;}
.y1da{bottom:480.209798px;}
.y19d{bottom:481.500000px;}
.y90{bottom:484.500000px;}
.y2d{bottom:485.700000px;}
.y1d9{bottom:491.832398px;}
.y123{bottom:494.340000px;}
.y3d{bottom:495.060000px;}
.ya{bottom:495.420000px;}
.yee{bottom:501.540000px;}
.yb7{bottom:501.900000px;}
.y1d8{bottom:502.604498px;}
.y101{bottom:504.780000px;}
.y140{bottom:507.300000px;}
.y186{bottom:511.500000px;}
.y8f{bottom:513.000000px;}
.y122{bottom:513.420000px;}
.y2c{bottom:514.140000px;}
.y1d7{bottom:514.227098px;}
.yed{bottom:522.060000px;}
.y3c{bottom:523.500000px;}
.y1d6{bottom:526.133048px;}
.yb6{bottom:530.340000px;}
.y121{bottom:532.500000px;}
.y9{bottom:534.300000px;}
.y13f{bottom:535.740000px;}
.y1d5{bottom:538.039118px;}
.y2b{bottom:542.580000px;}
.yec{bottom:542.940000px;}
.y8e{bottom:543.000000px;}
.ycc{bottom:546.000000px;}
.y1d4{bottom:549.661673px;}
.y120{bottom:551.220000px;}
.y3b{bottom:551.940000px;}
.y191{bottom:556.500000px;}
.yb5{bottom:558.780000px;}
.yeb{bottom:559.500000px;}
.y100{bottom:561.660000px;}
.y13e{bottom:564.180000px;}
.y11f{bottom:570.300000px;}
.y2a{bottom:571.020000px;}
.y8d{bottom:571.500000px;}
.y8{bottom:573.180000px;}
.y1ed{bottom:580.277183px;}
.y5b{bottom:580.380000px;}
.yb4{bottom:587.220000px;}
.y11e{bottom:589.380000px;}
.yea{bottom:589.500000px;}
.y1ec{bottom:592.183208px;}
.y13d{bottom:592.620000px;}
.y29{bottom:599.460000px;}
.y18f{bottom:600.000000px;}
.y8c{bottom:601.500000px;}
.y1eb{bottom:603.805763px;}
.y13c{bottom:607.500000px;}
.y11d{bottom:608.100000px;}
.y5a{bottom:608.820000px;}
.y7{bottom:612.060000px;}
.yb3{bottom:615.660000px;}
.y1ea{bottom:615.711803px;}
.ye9{bottom:618.000000px;}
.yff{bottom:618.540000px;}
.y11c{bottom:627.180000px;}
.y1e9{bottom:627.617828px;}
.y28{bottom:627.900000px;}
.y8b{bottom:630.000000px;}
.yb2{bottom:631.500000px;}
.y59{bottom:637.260000px;}
.y13b{bottom:637.500000px;}
.y183{bottom:643.500000px;}
.y11b{bottom:646.260000px;}
.ye8{bottom:646.500000px;}
.y6{bottom:650.580000px;}
.y27{bottom:656.340000px;}
.y1f3{bottom:659.083763px;}
.y8a{bottom:660.000000px;}
.y11a{bottom:664.980000px;}
.y58{bottom:665.700000px;}
.y13a{bottom:666.000000px;}
.y1f2{bottom:672.123707px;}
.yfe{bottom:675.420000px;}
.ye7{bottom:678.000000px;}
.y119{bottom:684.060000px;}
.y26{bottom:684.780000px;}
.y1f1{bottom:686.297553px;}
.y89{bottom:688.500000px;}
.y5{bottom:689.460000px;}
.yb1{bottom:690.000000px;}
.y57{bottom:694.140000px;}
.yfd{bottom:694.500000px;}
.y139{bottom:696.000000px;}
.y1f0{bottom:700.471399px;}
.y118{bottom:703.140000px;}
.y17f{bottom:708.000000px;}
.y25{bottom:713.220000px;}
.y4{bottom:714.300000px;}
.y1ef{bottom:714.645248px;}
.y86{bottom:718.500000px;}
.ye6{bottom:721.140000px;}
.y56{bottom:722.580000px;}
.y138{bottom:724.500000px;}
.y1ee{bottom:727.685183px;}
.yfc{bottom:732.300000px;}
.y117{bottom:741.300000px;}
.y24{bottom:741.660000px;}
.ye5{bottom:748.140000px;}
.yb0{bottom:748.500000px;}
.y55{bottom:751.020000px;}
.yfb{bottom:751.380000px;}
.y136{bottom:756.000000px;}
.y1d3{bottom:760.568513px;}
.y116{bottom:760.740000px;}
.yc8{bottom:768.000000px;}
.y23{bottom:770.100000px;}
.ye4{bottom:774.060000px;}
.y85{bottom:775.500000px;}
.yaf{bottom:777.000000px;}
.y1d2{bottom:778.144073px;}
.y54{bottom:779.460000px;}
.y115{bottom:779.820000px;}
.y15a{bottom:781.980000px;}
.yfa{bottom:789.180000px;}
.y22{bottom:798.540000px;}
.ye3{bottom:799.980000px;}
.y84{bottom:805.500000px;}
.y53{bottom:807.900000px;}
.yf9{bottom:808.260000px;}
.y159{bottom:810.420000px;}
.y1d1{bottom:812.444813px;}
.y114{bottom:817.620000px;}
.y14e{bottom:820.500000px;}
.y175{bottom:825.000000px;}
.y21{bottom:826.980000px;}
.y83{bottom:834.000000px;}
.y52{bottom:836.700000px;}
.y1d0{bottom:843.343748px;}
.yf8{bottom:846.060000px;}
.y17c{bottom:852.000000px;}
.y20{bottom:855.420000px;}
.y113{bottom:855.780000px;}
.y81{bottom:862.500000px;}
.yac{bottom:864.000000px;}
.y51{bottom:865.140000px;}
.y1cf{bottom:873.959348px;}
.y112{bottom:874.500000px;}
.y17b{bottom:879.000000px;}
.y1f{bottom:883.860000px;}
.yf7{bottom:884.220000px;}
.y7f{bottom:892.500000px;}
.y50{bottom:893.580000px;}
.yaa{bottom:894.000000px;}
.yf6{bottom:902.940000px;}
.y164{bottom:906.000000px;}
.y1e{bottom:912.300000px;}
.y111{bottom:912.660000px;}
.y4f{bottom:922.020000px;}
.y7d{bottom:922.500000px;}
.y110{bottom:931.380000px;}
.y1d{bottom:940.740000px;}
.y16e{bottom:945.000000px;}
.y4e{bottom:950.460000px;}
.y7b{bottom:951.000000px;}
.y1c{bottom:969.180000px;}
.yf5{bottom:969.540000px;}
.y4d{bottom:978.900000px;}
.y79{bottom:979.500000px;}
.ya6{bottom:981.000000px;}
.y16c{bottom:982.500000px;}
.y10f{bottom:988.260000px;}
.yc7{bottom:993.300000px;}
.y1b{bottom:997.980000px;}
.y4c{bottom:1007.340000px;}
.yc6{bottom:1008.000000px;}
.ya4{bottom:1009.500000px;}
.y161{bottom:1021.500000px;}
.y1a{bottom:1026.420000px;}
.y5c{bottom:1033.260000px;}
.y4b{bottom:1035.780000px;}
.y78{bottom:1038.000000px;}
.ya1{bottom:1039.500000px;}
.y10e{bottom:1045.500000px;}
.y19{bottom:1054.860000px;}
.yf4{bottom:1064.220000px;}
.y76{bottom:1066.500000px;}
.y15d{bottom:1077.000000px;}
.y18{bottom:1083.300000px;}
.yf3{bottom:1092.660000px;}
.y74{bottom:1096.500000px;}
.y10d{bottom:1102.380000px;}
.y17{bottom:1111.740000px;}
.yf2{bottom:1121.100000px;}
.y72{bottom:1125.000000px;}
.y16{bottom:1140.180000px;}
.h37{height:19.405987px;}
.h36{height:22.640321px;}
.h2{height:24.000000px;}
.h35{height:25.911558px;}
.he{height:28.500000px;}
.hd{height:30.000000px;}
.h34{height:31.171383px;}
.hf{height:31.500000px;}
.h27{height:33.000000px;}
.h8{height:33.090469px;}
.h2c{height:33.990418px;}
.h2b{height:34.595859px;}
.h2f{height:36.000000px;}
.h1d{height:39.000000px;}
.h9{height:39.330000px;}
.h1f{height:39.519760px;}
.ha{height:39.864375px;}
.h33{height:42.860652px;}
.h1e{height:43.470000px;}
.h14{height:43.500000px;}
.h15{height:44.060625px;}
.h23{height:45.000000px;}
.h32{height:46.757079px;}
.h24{height:47.047337px;}
.h1{height:47.988281px;}
.h1b{height:48.735000px;}
.hb{height:48.922031px;}
.h26{height:49.905703px;}
.h29{height:51.500635px;}
.h7{height:52.417969px;}
.h16{height:54.071719px;}
.h19{height:55.500000px;}
.hc{height:58.500000px;}
.h2a{height:59.075859px;}
.h3{height:59.803594px;}
.h6{height:60.450469px;}
.h18{height:61.500000px;}
.h21{height:63.000000px;}
.h31{height:63.983006px;}
.h4{height:81.329063px;}
.h5{height:81.904922px;}
.h20{height:82.500000px;}
.h1c{height:88.417969px;}
.h25{height:94.500000px;}
.h2e{height:97.500000px;}
.h2d{height:103.500000px;}
.h1a{height:115.500000px;}
.h22{height:133.500000px;}
.h28{height:166.500000px;}
.h10{height:213.000000px;}
.h13{height:216.000000px;}
.h11{height:223.500000px;}
.h12{height:225.000000px;}
.h17{height:234.000000px;}
.h30{height:921.300000px;}
.h0{height:1263.000000px;}
.w1{width:10.500000px;}
.w2{width:21.000000px;}
.w16{width:63.000000px;}
.w11{width:64.500000px;}
.w5{width:75.000000px;}
.w8{width:96.000000px;}
.w14{width:106.500000px;}
.w4{width:139.500000px;}
.w18{width:148.500000px;}
.wc{width:159.000000px;}
.w6{width:160.500000px;}
.w7{width:192.000000px;}
.w19{width:199.500000px;}
.wd{width:213.000000px;}
.we{width:214.500000px;}
.w3{width:288.000000px;}
.w13{width:297.000000px;}
.w9{width:316.500000px;}
.wa{width:325.500000px;}
.w17{width:331.500000px;}
.wf{width:346.500000px;}
.w12{width:387.000000px;}
.w1a{width:637.800000px;}
.wb{width:639.000000px;}
.w15{width:741.000000px;}
.w10{width:748.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:1.140000px;}
.x16{left:8.219856px;}
.x1f{left:9.359856px;}
.x26{left:11.520144px;}
.x36{left:15.659040px;}
.x44{left:17.807760px;}
.x39{left:22.980000px;}
.x3b{left:24.835080px;}
.x2f{left:32.242176px;}
.x37{left:37.806240px;}
.x45{left:38.867664px;}
.x3a{left:46.306200px;}
.x4f{left:48.174780px;}
.x4d{left:60.012030px;}
.x51{left:61.107930px;}
.x4e{left:69.224730px;}
.x2c{left:73.500000px;}
.x35{left:74.676720px;}
.x49{left:82.955730px;}
.x50{left:90.694680px;}
.x42{left:99.321840px;}
.x3f{left:118.727652px;}
.x2b{left:121.500000px;}
.x1d{left:127.500000px;}
.x1{left:128.579820px;}
.x7{left:136.214952px;}
.x30{left:138.000000px;}
.x32{left:146.440308px;}
.x34{left:148.012320px;}
.xd{left:155.579820px;}
.x4a{left:160.235730px;}
.x4c{left:163.171980px;}
.x48{left:164.221980px;}
.x3e{left:165.472284px;}
.x52{left:167.813580px;}
.x41{left:172.657440px;}
.x46{left:177.060000px;}
.x14{left:181.079844px;}
.x13{left:182.579820px;}
.x31{left:193.184904px;}
.x15{left:209.579820px;}
.x2e{left:210.625344px;}
.x5{left:215.580192px;}
.x3d{left:219.797832px;}
.xa{left:224.940552px;}
.x8{left:231.845424px;}
.x4b{left:232.993380px;}
.xe{left:234.779928px;}
.x6{left:236.827752px;}
.xf{left:261.779928px;}
.x1a{left:288.000000px;}
.x9{left:289.941144px;}
.x1e{left:306.360000px;}
.x21{left:308.159640px;}
.x24{left:311.400000px;}
.x22{left:313.560000px;}
.x25{left:315.360000px;}
.x23{left:324.000000px;}
.x29{left:340.500000px;}
.xb{left:345.917616px;}
.x53{left:347.518080px;}
.x3c{left:370.155000px;}
.x2d{left:374.279760px;}
.xc{left:377.931768px;}
.x17{left:415.500000px;}
.x20{left:442.500000px;}
.x4{left:447.479520px;}
.x40{left:469.500000px;}
.x2a{left:477.000000px;}
.x1b{left:480.000000px;}
.x33{left:525.000000px;}
.x18{left:553.500000px;}
.x27{left:607.500000px;}
.x43{left:616.500000px;}
.x28{left:620.999880px;}
.x38{left:630.000000px;}
.x3{left:667.979520px;}
.x1c{left:670.500000px;}
.x19{left:691.500000px;}
.x10{left:743.913960px;}
.x11{left:747.000000px;}
.x2{left:757.500000px;}
.x47{left:766.140000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.v4{vertical-align:16.640000pt;}
.v7{vertical-align:19.200000pt;}
.v8{vertical-align:21.760000pt;}
.v3{vertical-align:24.320000pt;}
.v6{vertical-align:32.000000pt;}
.ls95{letter-spacing:-5.625442pt;}
.ls13{letter-spacing:-3.992064pt;}
.ls98{letter-spacing:-2.373647pt;}
.lsbb{letter-spacing:-1.182624pt;}
.ls96{letter-spacing:-1.070913pt;}
.lsbe{letter-spacing:-0.997839pt;}
.lsbd{letter-spacing:-0.993219pt;}
.lsac{letter-spacing:-0.937784pt;}
.ls9a{letter-spacing:-0.619030pt;}
.ls3d{letter-spacing:-0.535040pt;}
.ls6{letter-spacing:-0.532224pt;}
.ls3c{letter-spacing:-0.505856pt;}
.ls37{letter-spacing:-0.452352pt;}
.ls5{letter-spacing:-0.451584pt;}
.ls3b{letter-spacing:-0.428032pt;}
.ls4{letter-spacing:-0.427392pt;}
.ls2{letter-spacing:-0.403200pt;}
.ls36{letter-spacing:-0.398848pt;}
.ls39{letter-spacing:-0.350208pt;}
.ls3{letter-spacing:-0.322560pt;}
.ls38{letter-spacing:-0.321024pt;}
.ls41{letter-spacing:-0.301056pt;}
.ls3f{letter-spacing:-0.284928pt;}
.ls3e{letter-spacing:-0.268800pt;}
.ls6c{letter-spacing:-0.252672pt;}
.ls40{letter-spacing:-0.231168pt;}
.ls6b{letter-spacing:-0.215040pt;}
.ls6d{letter-spacing:-0.214016pt;}
.ls3a{letter-spacing:-0.184832pt;}
.ls12{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.141312pt;}
.ls6e{letter-spacing:-0.139776pt;}
.ls31{letter-spacing:-0.129536pt;}
.ls42{letter-spacing:-0.129024pt;}
.ls20{letter-spacing:-0.123648pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.111872pt;}
.ls16{letter-spacing:-0.105984pt;}
.ls73{letter-spacing:-0.086016pt;}
.lsf{letter-spacing:-0.070656pt;}
.lsbc{letter-spacing:-0.067195pt;}
.ls15{letter-spacing:-0.035328pt;}
.ls9b{letter-spacing:-0.013439pt;}
.ls30{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls6f{letter-spacing:0.024192pt;}
.lsaf{letter-spacing:0.036957pt;}
.ls5b{letter-spacing:0.046080pt;}
.ls5d{letter-spacing:0.047360pt;}
.lsb0{letter-spacing:0.063835pt;}
.ls60{letter-spacing:0.064000pt;}
.ls69{letter-spacing:0.064256pt;}
.ls5f{letter-spacing:0.064640pt;}
.ls9f{letter-spacing:0.067195pt;}
.ls28{letter-spacing:0.071680pt;}
.ls58{letter-spacing:0.089856pt;}
.ls57{letter-spacing:0.089984pt;}
.ls5c{letter-spacing:0.090112pt;}
.ls70{letter-spacing:0.109824pt;}
.ls5a{letter-spacing:0.115072pt;}
.ls2c{letter-spacing:0.122496pt;}
.ls2a{letter-spacing:0.124160pt;}
.ls29{letter-spacing:0.124288pt;}
.ls14{letter-spacing:0.124416pt;}
.lsab{letter-spacing:0.131029pt;}
.lsb5{letter-spacing:0.134389pt;}
.lsa4{letter-spacing:0.141108pt;}
.ls67{letter-spacing:0.142080pt;}
.ls63{letter-spacing:0.142336pt;}
.ls66{letter-spacing:0.142464pt;}
.ls68{letter-spacing:0.143360pt;}
.ls6a{letter-spacing:0.144768pt;}
.lsba{letter-spacing:0.147828pt;}
.ls59{letter-spacing:0.167040pt;}
.ls8b{letter-spacing:0.167986pt;}
.ls91{letter-spacing:0.181425pt;}
.ls80{letter-spacing:0.208303pt;}
.ls83{letter-spacing:0.218283pt;}
.ls78{letter-spacing:0.218817pt;}
.ls5e{letter-spacing:0.224000pt;}
.ls61{letter-spacing:0.228096pt;}
.lsb2{letter-spacing:0.241900pt;}
.ls62{letter-spacing:0.244992pt;}
.ls65{letter-spacing:0.248448pt;}
.ls64{letter-spacing:0.248576pt;}
.lsa1{letter-spacing:0.251979pt;}
.ls7e{letter-spacing:0.256495pt;}
.ls1a{letter-spacing:0.260352pt;}
.ls1b{letter-spacing:0.261120pt;}
.ls71{letter-spacing:0.283008pt;}
.ls76{letter-spacing:0.288936pt;}
.lsae{letter-spacing:0.295656pt;}
.ls72{letter-spacing:0.316800pt;}
.ls46{letter-spacing:0.318720pt;}
.ls81{letter-spacing:0.319174pt;}
.lsa2{letter-spacing:0.325893pt;}
.ls74{letter-spacing:0.327690pt;}
.lsb3{letter-spacing:0.332613pt;}
.lsad{letter-spacing:0.335973pt;}
.ls9d{letter-spacing:0.346052pt;}
.lsa3{letter-spacing:0.349411pt;}
.lsa6{letter-spacing:0.403167pt;}
.lsb9{letter-spacing:0.406527pt;}
.lsb8{letter-spacing:0.423325pt;}
.lsb1{letter-spacing:0.433405pt;}
.lsa0{letter-spacing:0.450203pt;}
.ls9e{letter-spacing:0.453563pt;}
.ls92{letter-spacing:0.453739pt;}
.lsaa{letter-spacing:0.467002pt;}
.lsa7{letter-spacing:0.477081pt;}
.lsb6{letter-spacing:0.480441pt;}
.ls9c{letter-spacing:0.487160pt;}
.ls99{letter-spacing:0.493880pt;}
.lsa5{letter-spacing:0.497239pt;}
.lsb4{letter-spacing:0.507319pt;}
.ls7f{letter-spacing:0.507842pt;}
.lsc5{letter-spacing:0.529157pt;}
.lsa9{letter-spacing:0.544276pt;}
.lsb7{letter-spacing:0.557714pt;}
.ls97{letter-spacing:0.640028pt;}
.lsc4{letter-spacing:0.655147pt;}
.lsa8{letter-spacing:0.671945pt;}
.lscf{letter-spacing:0.730740pt;}
.lsbf{letter-spacing:0.820193pt;}
.ls43{letter-spacing:0.843520pt;}
.lsc0{letter-spacing:0.843711pt;}
.lsc1{letter-spacing:0.851691pt;}
.lscd{letter-spacing:0.889488pt;}
.lsce{letter-spacing:0.894527pt;}
.lsc3{letter-spacing:0.944923pt;}
.lsc9{letter-spacing:0.965081pt;}
.lscb{letter-spacing:1.033116pt;}
.lsc8{letter-spacing:1.053274pt;}
.lsc7{letter-spacing:1.101150pt;}
.lsc2{letter-spacing:1.159106pt;}
.lscc{letter-spacing:1.302734pt;}
.ls45{letter-spacing:1.538560pt;}
.ls44{letter-spacing:1.538816pt;}
.lsca{letter-spacing:1.569832pt;}
.ls4f{letter-spacing:1.687296pt;}
.ls4e{letter-spacing:1.688576pt;}
.lsc6{letter-spacing:1.915044pt;}
.ls4a{letter-spacing:1.940480pt;}
.ls2b{letter-spacing:1.958144pt;}
.ls2d{letter-spacing:2.100480pt;}
.ls2f{letter-spacing:2.278400pt;}
.ls21{letter-spacing:2.756352pt;}
.ls22{letter-spacing:2.757120pt;}
.ls33{letter-spacing:3.015936pt;}
.ls19{letter-spacing:3.306240pt;}
.ls18{letter-spacing:3.307136pt;}
.ls25{letter-spacing:3.352704pt;}
.ls24{letter-spacing:4.104064pt;}
.ls34{letter-spacing:4.486400pt;}
.ls1c{letter-spacing:4.494080pt;}
.ls48{letter-spacing:5.656192pt;}
.ls47{letter-spacing:5.657472pt;}
.ls49{letter-spacing:5.657600pt;}
.ls4d{letter-spacing:5.965952pt;}
.ls2e{letter-spacing:6.620928pt;}
.ls94{letter-spacing:7.353816pt;}
.ls93{letter-spacing:7.483610pt;}
.ls7b{letter-spacing:7.794406pt;}
.ls7d{letter-spacing:7.874338pt;}
.ls77{letter-spacing:7.878873pt;}
.ls79{letter-spacing:8.017303pt;}
.ls7c{letter-spacing:8.076316pt;}
.ls7a{letter-spacing:8.092700pt;}
.ls32{letter-spacing:8.386560pt;}
.ls50{letter-spacing:8.807680pt;}
.ls90{letter-spacing:8.810742pt;}
.ls26{letter-spacing:8.864512pt;}
.ls84{letter-spacing:9.453665pt;}
.ls85{letter-spacing:9.537599pt;}
.ls8e{letter-spacing:9.818779pt;}
.ls8f{letter-spacing:9.840113pt;}
.ls4c{letter-spacing:9.848320pt;}
.ls4b{letter-spacing:9.850112pt;}
.ls8d{letter-spacing:9.965984pt;}
.ls88{letter-spacing:10.629174pt;}
.ls87{letter-spacing:10.713108pt;}
.ls89{letter-spacing:10.734442pt;}
.ls82{letter-spacing:11.359796pt;}
.ls51{letter-spacing:11.678336pt;}
.ls52{letter-spacing:11.678720pt;}
.ls53{letter-spacing:11.680000pt;}
.ls27{letter-spacing:12.058880pt;}
.ls35{letter-spacing:13.103360pt;}
.ls8a{letter-spacing:14.211640pt;}
.ls8c{letter-spacing:14.219704pt;}
.ls1e{letter-spacing:15.314944pt;}
.ls1f{letter-spacing:15.315200pt;}
.ls86{letter-spacing:16.151882pt;}
.ls23{letter-spacing:30.704256pt;}
.ls9{letter-spacing:30.704384pt;}
.ls75{letter-spacing:34.227147pt;}
.ls54{letter-spacing:37.228928pt;}
.ls1d{letter-spacing:42.035200pt;}
.lse{letter-spacing:71.303168pt;}
.lsd{letter-spacing:87.602688pt;}
.ls56{letter-spacing:90.876160pt;}
.lsb{letter-spacing:103.902208pt;}
.lsa{letter-spacing:110.433408pt;}
.lsc{letter-spacing:120.201600pt;}
.ls55{letter-spacing:123.503744pt;}
.ls8{letter-spacing:126.732928pt;}
.ls7{letter-spacing:143.032448pt;}
.ws0{word-spacing:-22.417920pt;}
.ws1{word-spacing:-22.014720pt;}
.ws2{word-spacing:-17.804800pt;}
.ws7{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.333312pt;}
.ws4{word-spacing:-16.297984pt;}
.ws9{word-spacing:-16.262656pt;}
.ws5{word-spacing:-16.256768pt;}
.ws11{word-spacing:-16.244992pt;}
.wsd{word-spacing:-16.239104pt;}
.ws6{word-spacing:-16.227328pt;}
.wsc{word-spacing:-16.192000pt;}
.ws13{word-spacing:-14.945280pt;}
.ws1c{word-spacing:-14.816256pt;}
.ws1a{word-spacing:-14.730240pt;}
.ws1b{word-spacing:-14.714112pt;}
.ws1d{word-spacing:-14.660352pt;}
.wsb{word-spacing:-14.451200pt;}
.wse{word-spacing:-13.521920pt;}
.wsf{word-spacing:-13.171712pt;}
.ws10{word-spacing:-13.123072pt;}
.ws1e{word-spacing:-13.069568pt;}
.ws12{word-spacing:-12.986880pt;}
.ws21{word-spacing:-11.883352pt;}
.ws20{word-spacing:-11.852544pt;}
.wsa{word-spacing:-10.441856pt;}
.ws60{word-spacing:-9.502565pt;}
.ws101{word-spacing:-9.442510pt;}
.wsaa{word-spacing:-9.257725pt;}
.ws153{word-spacing:-1.126348pt;}
.ws96{word-spacing:-0.520758pt;}
.ws44{word-spacing:-0.500599pt;}
.ws66{word-spacing:-0.487160pt;}
.ws3d{word-spacing:-0.436764pt;}
.wsb5{word-spacing:-0.379649pt;}
.ws8b{word-spacing:-0.366210pt;}
.wsa5{word-spacing:-0.352771pt;}
.ws50{word-spacing:-0.322534pt;}
.ws6b{word-spacing:-0.241900pt;}
.ws5e{word-spacing:-0.215022pt;}
.ws19{word-spacing:-0.204160pt;}
.ws18{word-spacing:-0.181888pt;}
.ws3b{word-spacing:-0.174706pt;}
.ws8e{word-spacing:-0.167986pt;}
.ws17{word-spacing:-0.152192pt;}
.ws14{word-spacing:-0.058880pt;}
.ws1f{word-spacing:-0.058752pt;}
.ws15{word-spacing:-0.044800pt;}
.ws16{word-spacing:-0.037120pt;}
.ws41{word-spacing:-0.033597pt;}
.ws149{word-spacing:-0.025198pt;}
.ws74{word-spacing:-0.020158pt;}
.ws3{word-spacing:0.000000pt;}
.ws148{word-spacing:4.220529pt;}
.ws145{word-spacing:4.600322pt;}
.ws155{word-spacing:5.016146pt;}
.ws143{word-spacing:5.056398pt;}
.ws156{word-spacing:5.056453pt;}
.ws147{word-spacing:5.063896pt;}
.ws140{word-spacing:5.132867pt;}
.ws154{word-spacing:5.388069pt;}
.ws157{word-spacing:5.421650pt;}
.ws141{word-spacing:5.484828pt;}
.ws144{word-spacing:5.517702pt;}
.ws146{word-spacing:5.841696pt;}
.ws142{word-spacing:5.849902pt;}
.ws61{word-spacing:6.719291pt;}
.ws42{word-spacing:6.727810pt;}
.ws43{word-spacing:6.745507pt;}
.ws75{word-spacing:6.874579pt;}
.ws3f{word-spacing:6.884550pt;}
.ws4a{word-spacing:6.911053pt;}
.ws38{word-spacing:6.916931pt;}
.ws45{word-spacing:6.971192pt;}
.ws7e{word-spacing:7.017250pt;}
.ws78{word-spacing:7.068141pt;}
.ws77{word-spacing:7.071204pt;}
.ws39{word-spacing:7.092397pt;}
.ws8c{word-spacing:7.095581pt;}
.wsde{word-spacing:7.108141pt;}
.ws133{word-spacing:7.112716pt;}
.wsc9{word-spacing:7.152894pt;}
.ws135{word-spacing:7.199831pt;}
.ws3c{word-spacing:7.200246pt;}
.ws36{word-spacing:7.257867pt;}
.ws4e{word-spacing:7.282066pt;}
.ws79{word-spacing:7.310782pt;}
.wsca{word-spacing:7.340802pt;}
.ws4b{word-spacing:7.374340pt;}
.wsdc{word-spacing:7.400379pt;}
.wsda{word-spacing:7.403410pt;}
.ws136{word-spacing:7.407551pt;}
.ws11d{word-spacing:7.407936pt;}
.ws134{word-spacing:7.411632pt;}
.ws64{word-spacing:7.425536pt;}
.wscb{word-spacing:7.427472pt;}
.ws48{word-spacing:7.445249pt;}
.wsff{word-spacing:7.447947pt;}
.ws130{word-spacing:7.460170pt;}
.ws7c{word-spacing:7.466049pt;}
.ws40{word-spacing:7.492495pt;}
.ws30{word-spacing:7.493028pt;}
.ws132{word-spacing:7.494806pt;}
.ws2f{word-spacing:7.517661pt;}
.ws69{word-spacing:7.553503pt;}
.ws8d{word-spacing:7.599116pt;}
.wse0{word-spacing:7.599758pt;}
.ws125{word-spacing:7.601437pt;}
.ws80{word-spacing:7.606103pt;}
.wse2{word-spacing:7.607802pt;}
.ws46{word-spacing:7.618315pt;}
.ws131{word-spacing:7.620075pt;}
.wsdd{word-spacing:7.625893pt;}
.ws12e{word-spacing:7.632377pt;}
.wse3{word-spacing:7.634214pt;}
.wsc8{word-spacing:7.639896pt;}
.ws4d{word-spacing:7.650638pt;}
.ws31{word-spacing:7.657753pt;}
.wsfe{word-spacing:7.674372pt;}
.wsdf{word-spacing:7.693949pt;}
.ws68{word-spacing:7.760808pt;}
.ws67{word-spacing:7.769345pt;}
.ws35{word-spacing:7.773546pt;}
.ws11c{word-spacing:7.780303pt;}
.ws49{word-spacing:7.786183pt;}
.ws33{word-spacing:7.802843pt;}
.ws3a{word-spacing:7.819701pt;}
.ws129{word-spacing:7.832042pt;}
.wse1{word-spacing:7.840740pt;}
.ws63{word-spacing:7.845276pt;}
.ws32{word-spacing:7.857634pt;}
.ws8f{word-spacing:7.885760pt;}
.ws76{word-spacing:7.886916pt;}
.wsdb{word-spacing:7.907856pt;}
.ws34{word-spacing:7.913151pt;}
.ws65{word-spacing:7.916353pt;}
.ws62{word-spacing:7.936897pt;}
.ws7d{word-spacing:7.937687pt;}
.ws7a{word-spacing:7.956650pt;}
.ws6a{word-spacing:7.966848pt;}
.ws4c{word-spacing:7.970442pt;}
.ws127{word-spacing:7.987686pt;}
.ws12f{word-spacing:8.000129pt;}
.ws7b{word-spacing:8.018528pt;}
.ws37{word-spacing:8.092460pt;}
.ws47{word-spacing:8.105100pt;}
.ws6c{word-spacing:8.130833pt;}
.ws123{word-spacing:8.184646pt;}
.ws122{word-spacing:8.240567pt;}
.ws91{word-spacing:8.290923pt;}
.ws95{word-spacing:8.312257pt;}
.ws11f{word-spacing:8.377712pt;}
.ws126{word-spacing:8.394877pt;}
.ws12d{word-spacing:8.425311pt;}
.ws12b{word-spacing:8.434315pt;}
.ws128{word-spacing:8.434848pt;}
.ws92{word-spacing:8.446112pt;}
.ws12c{word-spacing:8.455142pt;}
.ws120{word-spacing:8.561202pt;}
.ws12a{word-spacing:8.563278pt;}
.ws93{word-spacing:8.595057pt;}
.ws124{word-spacing:8.621954pt;}
.ws11e{word-spacing:8.642894pt;}
.ws83{word-spacing:8.663398pt;}
.ws85{word-spacing:8.663932pt;}
.ws94{word-spacing:8.693763pt;}
.wsb8{word-spacing:8.701628pt;}
.wsaf{word-spacing:8.709850pt;}
.wsc2{word-spacing:8.722351pt;}
.ws119{word-spacing:8.840119pt;}
.ws87{word-spacing:8.924290pt;}
.ws90{word-spacing:8.938144pt;}
.ws121{word-spacing:8.993204pt;}
.ws82{word-spacing:9.004260pt;}
.ws8a{word-spacing:9.067444pt;}
.wsba{word-spacing:9.086219pt;}
.ws84{word-spacing:9.094816pt;}
.wsc7{word-spacing:9.129598pt;}
.wsb7{word-spacing:9.134330pt;}
.wsb0{word-spacing:9.152288pt;}
.wsc5{word-spacing:9.159194pt;}
.ws109{word-spacing:9.168166pt;}
.ws111{word-spacing:9.172791pt;}
.wsc3{word-spacing:9.181268pt;}
.wsbd{word-spacing:9.183006pt;}
.ws10a{word-spacing:9.187129pt;}
.wsb9{word-spacing:9.207207pt;}
.wsc0{word-spacing:9.217002pt;}
.ws86{word-spacing:9.231864pt;}
.wsad{word-spacing:9.267062pt;}
.ws81{word-spacing:9.307102pt;}
.ws55{word-spacing:9.315153pt;}
.wsb4{word-spacing:9.316480pt;}
.ws104{word-spacing:9.319463pt;}
.wsc4{word-spacing:9.324492pt;}
.ws115{word-spacing:9.332142pt;}
.ws88{word-spacing:9.362517pt;}
.ws107{word-spacing:9.369314pt;}
.wsb2{word-spacing:9.373692pt;}
.wsb6{word-spacing:9.377892pt;}
.ws103{word-spacing:9.381450pt;}
.ws117{word-spacing:9.388713pt;}
.ws11b{word-spacing:9.398832pt;}
.ws10b{word-spacing:9.403497pt;}
.ws116{word-spacing:9.404305pt;}
.wsab{word-spacing:9.411471pt;}
.ws112{word-spacing:9.412013pt;}
.ws113{word-spacing:9.420590pt;}
.wsbf{word-spacing:9.436628pt;}
.ws11a{word-spacing:9.442351pt;}
.wsbb{word-spacing:9.474407pt;}
.wsb1{word-spacing:9.478427pt;}
.wsac{word-spacing:9.529821pt;}
.wsbe{word-spacing:9.541363pt;}
.ws108{word-spacing:9.546542pt;}
.ws105{word-spacing:9.556380pt;}
.wsb3{word-spacing:9.575080pt;}
.ws110{word-spacing:9.579536pt;}
.ws102{word-spacing:9.622313pt;}
.ws10f{word-spacing:9.625752pt;}
.wsae{word-spacing:9.629535pt;}
.wsc6{word-spacing:9.638549pt;}
.wse9{word-spacing:9.667807pt;}
.ws89{word-spacing:9.693105pt;}
.ws118{word-spacing:9.700951pt;}
.ws10c{word-spacing:9.701148pt;}
.wsc1{word-spacing:9.761702pt;}
.ws10e{word-spacing:9.772543pt;}
.ws5d{word-spacing:9.781880pt;}
.wse4{word-spacing:9.786919pt;}
.ws5c{word-spacing:9.832276pt;}
.ws10d{word-spacing:9.844954pt;}
.ws57{word-spacing:9.857274pt;}
.ws58{word-spacing:9.865913pt;}
.ws106{word-spacing:9.953226pt;}
.ws56{word-spacing:9.969867pt;}
.ws54{word-spacing:9.982989pt;}
.ws114{word-spacing:9.994482pt;}
.ws53{word-spacing:10.024916pt;}
.wse7{word-spacing:10.049482pt;}
.wsbc{word-spacing:10.058038pt;}
.wsef{word-spacing:10.066360pt;}
.ws52{word-spacing:10.095954pt;}
.ws59{word-spacing:10.142230pt;}
.wse8{word-spacing:10.150807pt;}
.ws5b{word-spacing:10.217628pt;}
.wsea{word-spacing:10.255542pt;}
.ws5a{word-spacing:10.285503pt;}
.wsed{word-spacing:10.324158pt;}
.wsa7{word-spacing:10.324654pt;}
.wsee{word-spacing:10.432086pt;}
.wsec{word-spacing:10.611130pt;}
.wse5{word-spacing:10.641791pt;}
.wse6{word-spacing:10.692403pt;}
.wseb{word-spacing:10.709244pt;}
.wsa0{word-spacing:11.168487pt;}
.wsa6{word-spacing:11.246801pt;}
.wsa2{word-spacing:11.254804pt;}
.wsa1{word-spacing:11.372909pt;}
.wsa3{word-spacing:11.398610pt;}
.wsa8{word-spacing:11.452307pt;}
.wsa4{word-spacing:11.616291pt;}
.ws27{word-spacing:11.889504pt;}
.ws2e{word-spacing:11.992303pt;}
.ws2a{word-spacing:12.061157pt;}
.ws99{word-spacing:12.357970pt;}
.ws26{word-spacing:12.488998pt;}
.ws2b{word-spacing:12.493899pt;}
.ws2d{word-spacing:12.496697pt;}
.ws9c{word-spacing:12.541618pt;}
.ws24{word-spacing:12.553477pt;}
.ws28{word-spacing:12.559474pt;}
.ws9a{word-spacing:12.614090pt;}
.ws25{word-spacing:12.615028pt;}
.ws29{word-spacing:12.710798pt;}
.ws23{word-spacing:12.863933pt;}
.ws97{word-spacing:12.868688pt;}
.ws9b{word-spacing:12.882107pt;}
.ws22{word-spacing:12.901641pt;}
.ws98{word-spacing:12.929163pt;}
.ws151{word-spacing:12.960109pt;}
.ws9d{word-spacing:12.974243pt;}
.ws2c{word-spacing:12.998136pt;}
.ws9e{word-spacing:13.206656pt;}
.ws14f{word-spacing:13.216070pt;}
.ws9f{word-spacing:13.320973pt;}
.wsf0{word-spacing:13.392646pt;}
.wsfb{word-spacing:13.501401pt;}
.wsf2{word-spacing:13.514218pt;}
.wsf5{word-spacing:13.648905pt;}
.wsf3{word-spacing:13.848690pt;}
.wsf8{word-spacing:13.918700pt;}
.wsf6{word-spacing:13.947002pt;}
.wsfa{word-spacing:14.004255pt;}
.wsfc{word-spacing:14.029431pt;}
.wsf9{word-spacing:14.085045pt;}
.wsf1{word-spacing:14.180858pt;}
.wsfd{word-spacing:14.211481pt;}
.wsf4{word-spacing:14.224732pt;}
.wsf7{word-spacing:14.340347pt;}
.ws14c{word-spacing:14.628332pt;}
.ws14e{word-spacing:14.960131pt;}
.ws14a{word-spacing:15.144015pt;}
.wsd5{word-spacing:15.232293pt;}
.wsd7{word-spacing:15.240691pt;}
.wsd0{word-spacing:15.320387pt;}
.ws152{word-spacing:15.332649pt;}
.ws14d{word-spacing:15.353983pt;}
.wsd9{word-spacing:15.356970pt;}
.ws7f{word-spacing:15.673120pt;}
.wsd6{word-spacing:15.690974pt;}
.ws150{word-spacing:15.706932pt;}
.wsd8{word-spacing:15.720876pt;}
.wsd1{word-spacing:15.736134pt;}
.wscf{word-spacing:15.818131pt;}
.wsd3{word-spacing:15.818764pt;}
.ws4f{word-spacing:15.895801pt;}
.wsd2{word-spacing:15.903845pt;}
.wsce{word-spacing:16.030149pt;}
.wscd{word-spacing:16.103304pt;}
.wsd4{word-spacing:16.134705pt;}
.ws13d{word-spacing:16.168979pt;}
.ws14b{word-spacing:16.617747pt;}
.ws139{word-spacing:17.202162pt;}
.ws13f{word-spacing:17.345840pt;}
.ws13e{word-spacing:18.058540pt;}
.ws13a{word-spacing:18.083681pt;}
.ws137{word-spacing:18.223205pt;}
.ws13b{word-spacing:18.469725pt;}
.ws13c{word-spacing:18.860828pt;}
.ws138{word-spacing:19.347445pt;}
.ws51{word-spacing:20.351065pt;}
.ws3e{word-spacing:23.521846pt;}
.ws72{word-spacing:24.798896pt;}
.ws70{word-spacing:24.816029pt;}
.ws6f{word-spacing:24.887752pt;}
.ws6e{word-spacing:24.921388pt;}
.ws71{word-spacing:25.248437pt;}
.ws73{word-spacing:25.248833pt;}
.ws6d{word-spacing:25.395209pt;}
.ws5f{word-spacing:50.440243pt;}
.ws100{word-spacing:62.215663pt;}
.wsa9{word-spacing:64.622486pt;}
.wscc{word-spacing:75.644907pt;}
._10{margin-left:-5.506176pt;}
._f{margin-left:-4.519680pt;}
._3{margin-left:-3.370240pt;}
._2{margin-left:-2.167040pt;}
._1{margin-left:-0.967680pt;}
._0{width:0.967680pt;}
._b{width:2.125056pt;}
._4{width:3.337984pt;}
._5{width:4.289536pt;}
._9{width:5.273600pt;}
._8{width:6.679040pt;}
._7{width:7.595520pt;}
._c{width:9.244160pt;}
._12{width:10.716160pt;}
._13{width:12.011520pt;}
._14{width:12.928000pt;}
._6{width:13.895680pt;}
._a{width:14.861312pt;}
._27{width:16.231457pt;}
._e{width:17.181184pt;}
._16{width:18.394112pt;}
._15{width:19.627008pt;}
._17{width:20.961280pt;}
._1a{width:22.021120pt;}
._19{width:23.728640pt;}
._1b{width:25.082880pt;}
._d{width:26.613760pt;}
._1d{width:27.589120pt;}
._18{width:28.674560pt;}
._24{width:29.649920pt;}
._22{width:30.676480pt;}
._1c{width:33.135488pt;}
._26{width:36.328960pt;}
._23{width:37.447680pt;}
._21{width:44.042240pt;}
._20{width:47.104000pt;}
._1e{width:60.024320pt;}
._25{width:141.665280pt;}
._1f{width:146.124800pt;}
._11{width:172.431360pt;}
.fs12{font-size:25.197947pt;}
.fs11{font-size:29.397608pt;}
.fs10{font-size:33.597259pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fsb{font-size:42.240000pt;}
.fsc{font-size:44.612593pt;}
.fs6{font-size:44.800000pt;}
.fsf{font-size:46.196232pt;}
.fs5{font-size:48.640000pt;}
.fse{font-size:50.395893pt;}
.fs7{font-size:52.705882pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:62.745101pt;}
.fsd{font-size:62.994867pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:67.594842pt;}
.fs2{font-size:80.640000pt;}
.ye2{bottom:-18.346667pt;}
.y158{bottom:-10.560000pt;}
.y14f{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:3.840000pt;}
.y182{bottom:4.000000pt;}
.y160{bottom:4.320000pt;}
.y3{bottom:4.960000pt;}
.ye1{bottom:6.613333pt;}
.y1b2{bottom:9.280000pt;}
.y17e{bottom:11.040000pt;}
.y17d{bottom:11.250208pt;}
.yde{bottom:11.253333pt;}
.y7e{bottom:11.733333pt;}
.yab{bottom:11.786667pt;}
.y9a{bottom:11.840000pt;}
.y137{bottom:11.893333pt;}
.y88{bottom:11.946667pt;}
.y6d{bottom:12.000000pt;}
.ya3{bottom:12.053333pt;}
.y69{bottom:12.106667pt;}
.y71{bottom:12.160000pt;}
.ya7{bottom:12.213333pt;}
.y75{bottom:12.266667pt;}
.y7c{bottom:12.320000pt;}
.ya9{bottom:12.373333pt;}
.y94{bottom:12.426667pt;}
.y80{bottom:12.480000pt;}
.yad{bottom:12.533333pt;}
.y9c{bottom:12.586667pt;}
.y77{bottom:12.693333pt;}
.y6f{bottom:12.746667pt;}
.ya5{bottom:12.800000pt;}
.y73{bottom:12.853333pt;}
.y6b{bottom:12.906667pt;}
.ya8{bottom:12.960000pt;}
.y92{bottom:13.013333pt;}
.yca{bottom:13.066667pt;}
.y82{bottom:13.226667pt;}
.yd1{bottom:13.546667pt;}
.y1b8{bottom:13.920000pt;}
.y1ca{bottom:14.026667pt;}
.y1b7{bottom:14.130240pt;}
.y1c9{bottom:14.236907pt;}
.y1a1{bottom:14.453333pt;}
.y1c8{bottom:14.506667pt;}
.y1a0{bottom:14.663573pt;}
.y1b9{bottom:14.880000pt;}
.y19e{bottom:14.933333pt;}
.y1a4{bottom:15.253333pt;}
.y1cb{bottom:15.306667pt;}
.y1a2{bottom:15.413333pt;}
.y1a3{bottom:15.463573pt;}
.y1b5{bottom:15.733333pt;}
.y1fb{bottom:15.874621pt;}
.y1a5{bottom:16.213333pt;}
.y157{bottom:16.320000pt;}
.y163{bottom:17.813333pt;}
.y1c6{bottom:19.200000pt;}
.yd4{bottom:19.893333pt;}
.y170{bottom:20.213333pt;}
.y16f{bottom:20.423529pt;}
.y181{bottom:20.640000pt;}
.y173{bottom:20.960000pt;}
.y172{bottom:21.170195pt;}
.y171{bottom:21.493333pt;}
.y174{bottom:21.920000pt;}
.y16d{bottom:22.080000pt;}
.y15f{bottom:22.560000pt;}
.y193{bottom:22.826667pt;}
.y192{bottom:23.061963pt;}
.y185{bottom:25.493333pt;}
.ycb{bottom:26.186667pt;}
.y194{bottom:26.346667pt;}
.yce{bottom:26.400000pt;}
.y195{bottom:26.556907pt;}
.y190{bottom:26.720000pt;}
.ycd{bottom:27.040000pt;}
.ye0{bottom:27.093333pt;}
.y196{bottom:27.306667pt;}
.y1c4{bottom:27.786667pt;}
.yc9{bottom:28.106667pt;}
.yd0{bottom:28.586667pt;}
.y1b1{bottom:28.800000pt;}
.yd2{bottom:28.906667pt;}
.ydd{bottom:29.493333pt;}
.y17a{bottom:33.440000pt;}
.y162{bottom:34.773333pt;}
.y87{bottom:37.226667pt;}
.y68{bottom:37.386667pt;}
.y1fa{bottom:37.544887pt;}
.y180{bottom:37.600000pt;}
.ya2{bottom:37.653333pt;}
.y19c{bottom:37.973333pt;}
.y7a{bottom:38.186667pt;}
.yae{bottom:38.293333pt;}
.y1c0{bottom:38.986667pt;}
.y15e{bottom:39.520000pt;}
.y156{bottom:41.600000pt;}
.y177{bottom:41.760000pt;}
.y184{bottom:42.453333pt;}
.y16b{bottom:43.040000pt;}
.y1c3{bottom:43.146667pt;}
.y18e{bottom:43.946667pt;}
.y2{bottom:45.333333pt;}
.y1b0{bottom:47.040000pt;}
.y179{bottom:47.200000pt;}
.y1f9{bottom:47.876087pt;}
.ydc{bottom:48.053333pt;}
.y1{bottom:50.613333pt;}
.y199{bottom:52.693333pt;}
.y167{bottom:55.200000pt;}
.y19b{bottom:55.573333pt;}
.y1bf{bottom:55.626667pt;}
.y1f8{bottom:57.451287pt;}
.y16a{bottom:58.080000pt;}
.y1c2{bottom:58.506667pt;}
.y176{bottom:58.720000pt;}
.y18d{bottom:59.306667pt;}
.y178{bottom:61.280000pt;}
.y1af{bottom:65.600000pt;}
.ydb{bottom:66.293333pt;}
.y155{bottom:66.880000pt;}
.y1f7{bottom:67.782354pt;}
.ydf{bottom:68.000000pt;}
.y198{bottom:69.653333pt;}
.y189{bottom:70.506667pt;}
.y19a{bottom:70.933333pt;}
.y166{bottom:71.840000pt;}
.y1be{bottom:72.586667pt;}
.y1c1{bottom:73.866667pt;}
.y18c{bottom:74.666667pt;}
.y169{bottom:75.360000pt;}
.y1f6{bottom:78.365554pt;}
.y1bb{bottom:78.720000pt;}
.y1ba{bottom:78.930240pt;}
.y1bc{bottom:79.680000pt;}
.y1aa{bottom:82.560000pt;}
.y1ae{bottom:83.840000pt;}
.yda{bottom:84.853333pt;}
.y188{bottom:87.466667pt;}
.y165{bottom:88.800000pt;}
.y1f5{bottom:88.948754pt;}
.y18b{bottom:90.026667pt;}
.y168{bottom:91.360000pt;}
.y154{bottom:92.160000pt;}
.yd3{bottom:96.000000pt;}
.y70{bottom:97.333333pt;}
.y1f4{bottom:99.279821pt;}
.y1a9{bottom:99.520000pt;}
.yc5{bottom:100.000000pt;}
.y1ad{bottom:102.400000pt;}
.y3a{bottom:102.773333pt;}
.yd9{bottom:103.093333pt;}
.y187{bottom:104.106667pt;}
.y18a{bottom:105.386667pt;}
.yf1{bottom:105.973333pt;}
.y15c{bottom:108.213333pt;}
.y4a{bottom:111.093333pt;}
.y1ac{bottom:115.520000pt;}
.y1a8{bottom:116.160000pt;}
.y15{bottom:116.853333pt;}
.y153{bottom:117.440000pt;}
.y135{bottom:118.133333pt;}
.ya0{bottom:118.666667pt;}
.yf0{bottom:121.333333pt;}
.yd8{bottom:121.653333pt;}
.y1ff{bottom:121.957954pt;}
.y14d{bottom:121.973333pt;}
.y6e{bottom:122.666667pt;}
.y15b{bottom:125.173333pt;}
.yc4{bottom:125.333333pt;}
.y39{bottom:128.053333pt;}
.y1fe{bottom:130.525287pt;}
.y1a7{bottom:133.120000pt;}
.yef{bottom:133.813333pt;}
.y1ab{bottom:134.400000pt;}
.y134{bottom:135.093333pt;}
.y49{bottom:136.373333pt;}
.y1bd{bottom:138.666667pt;}
.yd7{bottom:139.893333pt;}
.y152{bottom:142.720000pt;}
.y14{bottom:143.093333pt;}
.y10c{bottom:145.013333pt;}
.y9f{bottom:145.333333pt;}
.y1fd{bottom:146.903954pt;}
.y14c{bottom:147.253333pt;}
.y6c{bottom:149.333333pt;}
.yc3{bottom:152.000000pt;}
.y133{bottom:152.053333pt;}
.y38{bottom:153.333333pt;}
.y1fc{bottom:155.219287pt;}
.yd6{bottom:158.453333pt;}
.y48{bottom:161.653333pt;}
.y10b{bottom:161.973333pt;}
.y1c7{bottom:166.666667pt;}
.y151{bottom:168.000000pt;}
.y132{bottom:169.013333pt;}
.y13{bottom:170.613333pt;}
.y9e{bottom:170.666667pt;}
.y14b{bottom:172.533333pt;}
.y6a{bottom:174.666667pt;}
.yd5{bottom:176.693333pt;}
.y37{bottom:178.613333pt;}
.y1cd{bottom:184.373333pt;}
.y131{bottom:185.653333pt;}
.y47{bottom:186.933333pt;}
.yc2{bottom:188.853333pt;}
.y150{bottom:193.280000pt;}
.y1c5{bottom:193.333333pt;}
.y10a{bottom:195.573333pt;}
.y12{bottom:197.173333pt;}
.y9d{bottom:197.333333pt;}
.y14a{bottom:197.813333pt;}
.y130{bottom:202.613333pt;}
.y67{bottom:202.666667pt;}
.y36{bottom:203.893333pt;}
.y1cc{bottom:208.053333pt;}
.y1ce{bottom:208.146533pt;}
.yc1{bottom:209.653333pt;}
.y46{bottom:212.213333pt;}
.y109{bottom:212.533333pt;}
.y12f{bottom:219.573333pt;}
.y11{bottom:222.453333pt;}
.y9b{bottom:222.666667pt;}
.y149{bottom:223.093333pt;}
.y1a6{bottom:225.333333pt;}
.y35{bottom:229.173333pt;}
.yc0{bottom:230.133333pt;}
.y12e{bottom:236.533333pt;}
.y45{bottom:237.493333pt;}
.y108{bottom:246.133333pt;}
.y1e8{bottom:246.939821pt;}
.y148{bottom:248.373333pt;}
.y99{bottom:249.333333pt;}
.ybf{bottom:250.933333pt;}
.y10{bottom:251.893333pt;}
.y12d{bottom:253.173333pt;}
.y34{bottom:254.453333pt;}
.y1e7{bottom:256.263021pt;}
.y44{bottom:262.773333pt;}
.y107{bottom:263.093333pt;}
.y66{bottom:264.053333pt;}
.y1e6{bottom:266.846221pt;}
.y12c{bottom:270.133333pt;}
.ybe{bottom:271.733333pt;}
.y147{bottom:273.653333pt;}
.y98{bottom:274.666667pt;}
.y1e5{bottom:277.429287pt;}
.y33{bottom:279.733333pt;}
.y65{bottom:284.533333pt;}
.yf{bottom:286.453333pt;}
.ycf{bottom:286.666667pt;}
.y12b{bottom:287.093333pt;}
.y1e4{bottom:287.760487pt;}
.y43{bottom:288.373333pt;}
.ybd{bottom:294.453333pt;}
.y106{bottom:296.693333pt;}
.y1e3{bottom:297.335687pt;}
.y146{bottom:298.933333pt;}
.y97{bottom:300.000000pt;}
.y12a{bottom:303.733333pt;}
.y32{bottom:305.013333pt;}
.y64{bottom:305.333333pt;}
.y1e2{bottom:307.666887pt;}
.y42{bottom:313.653333pt;}
.y1b6{bottom:317.333333pt;}
.y1e1{bottom:318.250087pt;}
.ybc{bottom:319.733333pt;}
.y129{bottom:320.693333pt;}
.ye{bottom:321.013333pt;}
.y145{bottom:324.533333pt;}
.y63{bottom:326.133333pt;}
.y96{bottom:326.666667pt;}
.y1e0{bottom:328.833154pt;}
.y31{bottom:330.293333pt;}
.y105{bottom:330.613333pt;}
.y128{bottom:337.973333pt;}
.y1df{bottom:338.156354pt;}
.y41{bottom:338.933333pt;}
.y1b4{bottom:344.000000pt;}
.ybb{bottom:345.013333pt;}
.y62{bottom:346.613333pt;}
.y104{bottom:347.253333pt;}
.y1de{bottom:348.739554pt;}
.y144{bottom:349.813333pt;}
.y95{bottom:352.000000pt;}
.yd{bottom:355.253333pt;}
.y30{bottom:355.573333pt;}
.y1dd{bottom:359.322621pt;}
.y40{bottom:364.213333pt;}
.y61{bottom:367.413333pt;}
.y1dc{bottom:369.653821pt;}
.yba{bottom:370.293333pt;}
.y127{bottom:371.893333pt;}
.y197{bottom:372.000000pt;}
.y5e{bottom:372.533333pt;}
.y143{bottom:375.093333pt;}
.y93{bottom:378.666667pt;}
.y1db{bottom:380.237021pt;}
.y2f{bottom:380.853333pt;}
.y103{bottom:381.173333pt;}
.yc{bottom:385.653333pt;}
.y60{bottom:388.213333pt;}
.y126{bottom:388.853333pt;}
.y3f{bottom:389.493333pt;}
.yb9{bottom:395.573333pt;}
.y102{bottom:397.813333pt;}
.y19f{bottom:400.000000pt;}
.y142{bottom:400.373333pt;}
.y91{bottom:404.000000pt;}
.y125{bottom:405.813333pt;}
.y2e{bottom:406.133333pt;}
.y5d{bottom:406.453333pt;}
.y5f{bottom:408.693333pt;}
.yb{bottom:410.933333pt;}
.y3e{bottom:414.773333pt;}
.yb8{bottom:420.853333pt;}
.y124{bottom:422.453333pt;}
.y141{bottom:425.653333pt;}
.y1da{bottom:426.853154pt;}
.y19d{bottom:428.000000pt;}
.y90{bottom:430.666667pt;}
.y2d{bottom:431.733333pt;}
.y1d9{bottom:437.184354pt;}
.y123{bottom:439.413333pt;}
.y3d{bottom:440.053333pt;}
.ya{bottom:440.373333pt;}
.yee{bottom:445.813333pt;}
.yb7{bottom:446.133333pt;}
.y1d8{bottom:446.759554pt;}
.y101{bottom:448.693333pt;}
.y140{bottom:450.933333pt;}
.y186{bottom:454.666667pt;}
.y8f{bottom:456.000000pt;}
.y122{bottom:456.373333pt;}
.y2c{bottom:457.013333pt;}
.y1d7{bottom:457.090754pt;}
.yed{bottom:464.053333pt;}
.y3c{bottom:465.333333pt;}
.y1d6{bottom:467.673821pt;}
.yb6{bottom:471.413333pt;}
.y121{bottom:473.333333pt;}
.y9{bottom:474.933333pt;}
.y13f{bottom:476.213333pt;}
.y1d5{bottom:478.256994pt;}
.y2b{bottom:482.293333pt;}
.yec{bottom:482.613333pt;}
.y8e{bottom:482.666667pt;}
.ycc{bottom:485.333333pt;}
.y1d4{bottom:488.588154pt;}
.y120{bottom:489.973333pt;}
.y3b{bottom:490.613333pt;}
.y191{bottom:494.666667pt;}
.yb5{bottom:496.693333pt;}
.yeb{bottom:497.333333pt;}
.y100{bottom:499.253333pt;}
.y13e{bottom:501.493333pt;}
.y11f{bottom:506.933333pt;}
.y2a{bottom:507.573333pt;}
.y8d{bottom:508.000000pt;}
.y8{bottom:509.493333pt;}
.y1ed{bottom:515.801941pt;}
.y5b{bottom:515.893333pt;}
.yb4{bottom:521.973333pt;}
.y11e{bottom:523.893333pt;}
.yea{bottom:524.000000pt;}
.y1ec{bottom:526.385074pt;}
.y13d{bottom:526.773333pt;}
.y29{bottom:532.853333pt;}
.y18f{bottom:533.333333pt;}
.y8c{bottom:534.666667pt;}
.y1eb{bottom:536.716234pt;}
.y13c{bottom:540.000000pt;}
.y11d{bottom:540.533333pt;}
.y5a{bottom:541.173333pt;}
.y7{bottom:544.053333pt;}
.yb3{bottom:547.253333pt;}
.y1ea{bottom:547.299381pt;}
.ye9{bottom:549.333333pt;}
.yff{bottom:549.813333pt;}
.y11c{bottom:557.493333pt;}
.y1e9{bottom:557.882514pt;}
.y28{bottom:558.133333pt;}
.y8b{bottom:560.000000pt;}
.yb2{bottom:561.333333pt;}
.y59{bottom:566.453333pt;}
.y13b{bottom:566.666667pt;}
.y183{bottom:572.000000pt;}
.y11b{bottom:574.453333pt;}
.ye8{bottom:574.666667pt;}
.y6{bottom:578.293333pt;}
.y27{bottom:583.413333pt;}
.y1f3{bottom:585.852234pt;}
.y8a{bottom:586.666667pt;}
.y11a{bottom:591.093333pt;}
.y58{bottom:591.733333pt;}
.y13a{bottom:592.000000pt;}
.y1f2{bottom:597.443295pt;}
.yfe{bottom:600.373333pt;}
.ye7{bottom:602.666667pt;}
.y119{bottom:608.053333pt;}
.y26{bottom:608.693333pt;}
.y1f1{bottom:610.042269pt;}
.y89{bottom:612.000000pt;}
.y5{bottom:612.853333pt;}
.yb1{bottom:613.333333pt;}
.y57{bottom:617.013333pt;}
.yfd{bottom:617.333333pt;}
.y139{bottom:618.666667pt;}
.y1f0{bottom:622.641243pt;}
.y118{bottom:625.013333pt;}
.y17f{bottom:629.333333pt;}
.y25{bottom:633.973333pt;}
.y4{bottom:634.933333pt;}
.y1ef{bottom:635.240221pt;}
.y86{bottom:638.666667pt;}
.ye6{bottom:641.013333pt;}
.y56{bottom:642.293333pt;}
.y138{bottom:644.000000pt;}
.y1ee{bottom:646.831274pt;}
.yfc{bottom:650.933333pt;}
.y117{bottom:658.933333pt;}
.y24{bottom:659.253333pt;}
.ye5{bottom:665.013333pt;}
.yb0{bottom:665.333333pt;}
.y55{bottom:667.573333pt;}
.yfb{bottom:667.893333pt;}
.y136{bottom:672.000000pt;}
.y1d3{bottom:676.060901pt;}
.y116{bottom:676.213333pt;}
.yc8{bottom:682.666667pt;}
.y23{bottom:684.533333pt;}
.ye4{bottom:688.053333pt;}
.y85{bottom:689.333333pt;}
.yaf{bottom:690.666667pt;}
.y1d2{bottom:691.683621pt;}
.y54{bottom:692.853333pt;}
.y115{bottom:693.173333pt;}
.y15a{bottom:695.093333pt;}
.yfa{bottom:701.493333pt;}
.y22{bottom:709.813333pt;}
.ye3{bottom:711.093333pt;}
.y84{bottom:716.000000pt;}
.y53{bottom:718.133333pt;}
.yf9{bottom:718.453333pt;}
.y159{bottom:720.373333pt;}
.y1d1{bottom:722.173167pt;}
.y114{bottom:726.773333pt;}
.y14e{bottom:729.333333pt;}
.y175{bottom:733.333333pt;}
.y21{bottom:735.093333pt;}
.y83{bottom:741.333333pt;}
.y52{bottom:743.733333pt;}
.y1d0{bottom:749.638887pt;}
.yf8{bottom:752.053333pt;}
.y17c{bottom:757.333333pt;}
.y20{bottom:760.373333pt;}
.y113{bottom:760.693333pt;}
.y81{bottom:766.666667pt;}
.yac{bottom:768.000000pt;}
.y51{bottom:769.013333pt;}
.y1cf{bottom:776.852754pt;}
.y112{bottom:777.333333pt;}
.y17b{bottom:781.333333pt;}
.y1f{bottom:785.653333pt;}
.yf7{bottom:785.973333pt;}
.y7f{bottom:793.333333pt;}
.y50{bottom:794.293333pt;}
.yaa{bottom:794.666667pt;}
.yf6{bottom:802.613333pt;}
.y164{bottom:805.333333pt;}
.y1e{bottom:810.933333pt;}
.y111{bottom:811.253333pt;}
.y4f{bottom:819.573333pt;}
.y7d{bottom:820.000000pt;}
.y110{bottom:827.893333pt;}
.y1d{bottom:836.213333pt;}
.y16e{bottom:840.000000pt;}
.y4e{bottom:844.853333pt;}
.y7b{bottom:845.333333pt;}
.y1c{bottom:861.493333pt;}
.yf5{bottom:861.813333pt;}
.y4d{bottom:870.133333pt;}
.y79{bottom:870.666667pt;}
.ya6{bottom:872.000000pt;}
.y16c{bottom:873.333333pt;}
.y10f{bottom:878.453333pt;}
.yc7{bottom:882.933333pt;}
.y1b{bottom:887.093333pt;}
.y4c{bottom:895.413333pt;}
.yc6{bottom:896.000000pt;}
.ya4{bottom:897.333333pt;}
.y161{bottom:908.000000pt;}
.y1a{bottom:912.373333pt;}
.y5c{bottom:918.453333pt;}
.y4b{bottom:920.693333pt;}
.y78{bottom:922.666667pt;}
.ya1{bottom:924.000000pt;}
.y10e{bottom:929.333333pt;}
.y19{bottom:937.653333pt;}
.yf4{bottom:945.973333pt;}
.y76{bottom:948.000000pt;}
.y15d{bottom:957.333333pt;}
.y18{bottom:962.933333pt;}
.yf3{bottom:971.253333pt;}
.y74{bottom:974.666667pt;}
.y10d{bottom:979.893333pt;}
.y17{bottom:988.213333pt;}
.yf2{bottom:996.533333pt;}
.y72{bottom:1000.000000pt;}
.y16{bottom:1013.493333pt;}
.h37{height:17.249766pt;}
.h36{height:20.124730pt;}
.h2{height:21.333333pt;}
.h35{height:23.032496pt;}
.he{height:25.333333pt;}
.hd{height:26.666667pt;}
.h34{height:27.707896pt;}
.hf{height:28.000000pt;}
.h27{height:29.333333pt;}
.h8{height:29.413750pt;}
.h2c{height:30.213705pt;}
.h2b{height:30.751875pt;}
.h2f{height:32.000000pt;}
.h1d{height:34.666667pt;}
.h9{height:34.960000pt;}
.h1f{height:35.128676pt;}
.ha{height:35.435000pt;}
.h33{height:38.098358pt;}
.h1e{height:38.640000pt;}
.h14{height:38.666667pt;}
.h15{height:39.165000pt;}
.h23{height:40.000000pt;}
.h32{height:41.561848pt;}
.h24{height:41.819855pt;}
.h1{height:42.656250pt;}
.h1b{height:43.320000pt;}
.hb{height:43.486250pt;}
.h26{height:44.360625pt;}
.h29{height:45.778343pt;}
.h7{height:46.593750pt;}
.h16{height:48.063750pt;}
.h19{height:49.333333pt;}
.hc{height:52.000000pt;}
.h2a{height:52.511875pt;}
.h3{height:53.158750pt;}
.h6{height:53.733750pt;}
.h18{height:54.666667pt;}
.h21{height:56.000000pt;}
.h31{height:56.873783pt;}
.h4{height:72.292500pt;}
.h5{height:72.804375pt;}
.h20{height:73.333333pt;}
.h1c{height:78.593750pt;}
.h25{height:84.000000pt;}
.h2e{height:86.666667pt;}
.h2d{height:92.000000pt;}
.h1a{height:102.666667pt;}
.h22{height:118.666667pt;}
.h28{height:148.000000pt;}
.h10{height:189.333333pt;}
.h13{height:192.000000pt;}
.h11{height:198.666667pt;}
.h12{height:200.000000pt;}
.h17{height:208.000000pt;}
.h30{height:818.933333pt;}
.h0{height:1122.666667pt;}
.w1{width:9.333333pt;}
.w2{width:18.666667pt;}
.w16{width:56.000000pt;}
.w11{width:57.333333pt;}
.w5{width:66.666667pt;}
.w8{width:85.333333pt;}
.w14{width:94.666667pt;}
.w4{width:124.000000pt;}
.w18{width:132.000000pt;}
.wc{width:141.333333pt;}
.w6{width:142.666667pt;}
.w7{width:170.666667pt;}
.w19{width:177.333333pt;}
.wd{width:189.333333pt;}
.we{width:190.666667pt;}
.w3{width:256.000000pt;}
.w13{width:264.000000pt;}
.w9{width:281.333333pt;}
.wa{width:289.333333pt;}
.w17{width:294.666667pt;}
.wf{width:308.000000pt;}
.w12{width:344.000000pt;}
.w1a{width:566.933333pt;}
.wb{width:568.000000pt;}
.w15{width:658.666667pt;}
.w10{width:665.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:1.013333pt;}
.x16{left:7.306539pt;}
.x1f{left:8.319872pt;}
.x26{left:10.240128pt;}
.x36{left:13.919147pt;}
.x44{left:15.829120pt;}
.x39{left:20.426667pt;}
.x3b{left:22.075627pt;}
.x2f{left:28.659712pt;}
.x37{left:33.605547pt;}
.x45{left:34.549035pt;}
.x3a{left:41.161067pt;}
.x4f{left:42.822027pt;}
.x4d{left:53.344027pt;}
.x51{left:54.318160pt;}
.x4e{left:61.533093pt;}
.x2c{left:65.333333pt;}
.x35{left:66.379307pt;}
.x49{left:73.738427pt;}
.x50{left:80.617493pt;}
.x42{left:88.286080pt;}
.x3f{left:105.535691pt;}
.x2b{left:108.000000pt;}
.x1d{left:113.333333pt;}
.x1{left:114.293173pt;}
.x7{left:121.079957pt;}
.x30{left:122.666667pt;}
.x32{left:130.169163pt;}
.x34{left:131.566507pt;}
.xd{left:138.293173pt;}
.x4a{left:142.431760pt;}
.x4c{left:145.041760pt;}
.x48{left:145.975093pt;}
.x3e{left:147.086475pt;}
.x52{left:149.167627pt;}
.x41{left:153.473280pt;}
.x46{left:157.386667pt;}
.x14{left:160.959861pt;}
.x13{left:162.293173pt;}
.x31{left:171.719915pt;}
.x15{left:186.293173pt;}
.x2e{left:187.222528pt;}
.x5{left:191.626837pt;}
.x3d{left:195.375851pt;}
.xa{left:199.947157pt;}
.x8{left:206.084821pt;}
.x4b{left:207.105227pt;}
.xe{left:208.693269pt;}
.x6{left:210.513557pt;}
.xf{left:232.693269pt;}
.x1a{left:256.000000pt;}
.x9{left:257.725461pt;}
.x1e{left:272.320000pt;}
.x21{left:273.919680pt;}
.x24{left:276.800000pt;}
.x22{left:278.720000pt;}
.x25{left:280.320000pt;}
.x23{left:288.000000pt;}
.x29{left:302.666667pt;}
.xb{left:307.482325pt;}
.x53{left:308.904960pt;}
.x3c{left:329.026667pt;}
.x2d{left:332.693120pt;}
.xc{left:335.939349pt;}
.x17{left:369.333333pt;}
.x20{left:393.333333pt;}
.x4{left:397.759573pt;}
.x40{left:417.333333pt;}
.x2a{left:424.000000pt;}
.x1b{left:426.666667pt;}
.x33{left:466.666667pt;}
.x18{left:492.000000pt;}
.x27{left:540.000000pt;}
.x43{left:548.000000pt;}
.x28{left:551.999893pt;}
.x38{left:560.000000pt;}
.x3{left:593.759573pt;}
.x1c{left:596.000000pt;}
.x19{left:614.666667pt;}
.x10{left:661.256853pt;}
.x11{left:664.000000pt;}
.x2{left:673.333333pt;}
.x47{left:681.013333pt;}
}




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