
    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_e830c44e267982846ce4084a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_afd842a38cdbeefc7f7568ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_fb500ecb9755bd6e68a5e656.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9be445e497d3d83a21e6bda8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_06e1fec99d074601255a2c58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_7885ac9bde6387fea1e5f084.woff')format("woff");}.ff6{font-family:ff6;line-height:0.544000;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_716f08026cad48a81db1331e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.636261;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_b0d8db139f2b7d143616da1a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_8cbcdbaf53fb6d02decfed9f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.694000;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_735145ab63bb19176582de22.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7b739938c5eee75124e040c2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.002000;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_3279cbb1d37b30819b4866c6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a23f916208b541266e44a6da.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_6edc686df861790c28b55107.woff')format("woff");}.ffe{font-family:ffe;line-height:0.696000;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_c39f39ba0fc04d19a32bb80c.woff')format("woff");}.fff{font-family:fff;line-height:0.725000;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_8cbcdbaf53fb6d02decfed9f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.694000;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_1eb469e8fc580bc3cf6ba81f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.803000;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_79b1a9e26982d0e769b2414b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0e412a4aafb25b57ce65896b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.898377;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_f69d056896fdc975d78bc04d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_88b1ddee8adb07ca5eace64c.woff')format("woff");}.ff15{font-family:ff15;line-height:0.735000;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_0745f53c5fcf7ca8231db47b.woff')format("woff");}.ff16{font-family:ff16;line-height:0.923000;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_20652306db4398dfc440ca2f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.911000;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_e8bf1fc51e74164d7e215ea3.woff')format("woff");}.ff18{font-family:ff18;line-height:0.732000;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_457995348d46253846b22c63.woff')format("woff");}.ff19{font-family:ff19;line-height:1.002000;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_d8c1cf3bd06611a832041d17.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.001000;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_51090ed17223f461823e65f1.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.453000;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_7f20367e875b021627710fdf.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.688000;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;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.972000px;}
.v5{vertical-align:8.004000px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001062px;}
.lse{letter-spacing:0.001114px;}
.ls47{letter-spacing:0.001473px;}
.ls11{letter-spacing:0.002287px;}
.ls9{letter-spacing:0.003316px;}
.ls6{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.592737px;}
.ls1{letter-spacing:2.986894px;}
.ls4{letter-spacing:2.988479px;}
.ls49{letter-spacing:5.156294px;}
.ls23{letter-spacing:15.607505px;}
.ls2a{letter-spacing:16.604685px;}
.ls2b{letter-spacing:16.610685px;}
.ls3c{letter-spacing:18.278287px;}
.ls3a{letter-spacing:19.010287px;}
.ls3b{letter-spacing:19.016287px;}
.ls38{letter-spacing:19.160287px;}
.ls4d{letter-spacing:19.238287px;}
.ls19{letter-spacing:19.370287px;}
.ls1e{letter-spacing:19.513473px;}
.lsb{letter-spacing:19.919518px;}
.ls29{letter-spacing:19.921114px;}
.lsd{letter-spacing:19.921473px;}
.ls10{letter-spacing:19.927473px;}
.ls27{letter-spacing:20.013005px;}
.ls1d{letter-spacing:20.167473px;}
.ls2c{letter-spacing:20.175341px;}
.lsf{letter-spacing:20.383809px;}
.ls28{letter-spacing:20.443392px;}
.ls13{letter-spacing:20.515123px;}
.ls1b{letter-spacing:21.944287px;}
.ls1a{letter-spacing:21.950287px;}
.ls1c{letter-spacing:22.142287px;}
.lsc{letter-spacing:23.002404px;}
.ls24{letter-spacing:23.108287px;}
.ls25{letter-spacing:23.114287px;}
.ls15{letter-spacing:23.143114px;}
.ls16{letter-spacing:23.143473px;}
.ls3{letter-spacing:23.384371px;}
.ls32{letter-spacing:23.406328px;}
.ls26{letter-spacing:23.408287px;}
.ls33{letter-spacing:23.412328px;}
.ls8{letter-spacing:23.456102px;}
.ls2d{letter-spacing:23.545473px;}
.ls20{letter-spacing:23.857227px;}
.ls7{letter-spacing:24.032287px;}
.ls5{letter-spacing:24.206287px;}
.ls3d{letter-spacing:24.234328px;}
.ls4a{letter-spacing:24.388608px;}
.ls42{letter-spacing:24.675533px;}
.ls22{letter-spacing:24.811227px;}
.ls4c{letter-spacing:25.004287px;}
.ls4b{letter-spacing:25.453486px;}
.ls3f{letter-spacing:25.679770px;}
.ls48{letter-spacing:25.742287px;}
.ls2e{letter-spacing:26.038426px;}
.ls17{letter-spacing:26.253619px;}
.ls30{letter-spacing:26.329227px;}
.ls18{letter-spacing:26.407473px;}
.ls37{letter-spacing:26.444287px;}
.ls34{letter-spacing:26.612275px;}
.lsa{letter-spacing:28.907674px;}
.ls41{letter-spacing:29.266330px;}
.ls4e{letter-spacing:29.378287px;}
.ls45{letter-spacing:29.553254px;}
.ls44{letter-spacing:29.624986px;}
.ls35{letter-spacing:29.749114px;}
.ls36{letter-spacing:29.755114px;}
.ls40{letter-spacing:30.031473px;}
.ls43{letter-spacing:32.207309px;}
.ls12{letter-spacing:32.232479px;}
.ls3e{letter-spacing:32.996352px;}
.ls46{letter-spacing:33.355008px;}
.ls14{letter-spacing:33.498470px;}
.ls1f{letter-spacing:33.823505px;}
.ls21{letter-spacing:35.117578px;}
.ls2f{letter-spacing:44.893505px;}
.ls31{letter-spacing:51.295473px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-71.731200px;}
.wsc6{word-spacing:-64.020096px;}
.ws24{word-spacing:-55.726250px;}
.wscd{word-spacing:-45.664082px;}
.ws144{word-spacing:-40.341627px;}
.ws41{word-spacing:-35.858427px;}
.ws2d{word-spacing:-35.112422px;}
.ws9a{word-spacing:-32.544027px;}
.ws123{word-spacing:-30.545332px;}
.ws9c{word-spacing:-29.881822px;}
.wseb{word-spacing:-25.758724px;}
.ws1a8{word-spacing:-25.758549px;}
.wsf9{word-spacing:-23.420237px;}
.ws1ad{word-spacing:-22.050171px;}
.ws1a7{word-spacing:-21.404590px;}
.ws183{word-spacing:-20.035841px;}
.ws1b6{word-spacing:-19.546752px;}
.wsc8{word-spacing:-19.510886px;}
.wsc4{word-spacing:-19.475021px;}
.ws14a{word-spacing:-19.403290px;}
.ws81{word-spacing:-19.331558px;}
.ws184{word-spacing:-19.283562px;}
.ws80{word-spacing:-19.259827px;}
.ws89{word-spacing:-19.188096px;}
.ws117{word-spacing:-19.116365px;}
.ws86{word-spacing:-18.972902px;}
.ws94{word-spacing:-18.901171px;}
.ws1c9{word-spacing:-18.829440px;}
.ws8f{word-spacing:-18.685978px;}
.ws191{word-spacing:-18.644278px;}
.ws1d9{word-spacing:-18.542515px;}
.ws8d{word-spacing:-18.540986px;}
.wsfc{word-spacing:-18.399053px;}
.wsd6{word-spacing:-18.327322px;}
.ws13c{word-spacing:-18.320148px;}
.ws19f{word-spacing:-18.255590px;}
.ws18d{word-spacing:-18.112128px;}
.ws1f{word-spacing:-18.078561px;}
.ws40{word-spacing:-18.040397px;}
.ws14c{word-spacing:-17.968666px;}
.ws14b{word-spacing:-17.853896px;}
.wsa8{word-spacing:-17.825203px;}
.ws113{word-spacing:-17.753472px;}
.ws12a{word-spacing:-17.681741px;}
.ws25{word-spacing:-17.610010px;}
.ws64{word-spacing:-17.466547px;}
.ws73{word-spacing:-17.394816px;}
.ws172{word-spacing:-17.323085px;}
.wsd7{word-spacing:-17.251354px;}
.ws188{word-spacing:-17.179622px;}
.ws5f{word-spacing:-17.107891px;}
.ws1da{word-spacing:-17.064852px;}
.wsc1{word-spacing:-17.036160px;}
.wscc{word-spacing:-16.964429px;}
.ws139{word-spacing:-16.898365px;}
.wsb3{word-spacing:-16.892698px;}
.ws109{word-spacing:-16.749235px;}
.ws93{word-spacing:-16.677504px;}
.wsec{word-spacing:-16.628329px;}
.wsee{word-spacing:-16.623698px;}
.wsb9{word-spacing:-16.605773px;}
.ws1a5{word-spacing:-16.598600px;}
.ws83{word-spacing:-16.534042px;}
.ws17f{word-spacing:-16.462310px;}
.ws118{word-spacing:-16.390579px;}
.wsa1{word-spacing:-16.318848px;}
.wsab{word-spacing:-16.247117px;}
.ws169{word-spacing:-16.204078px;}
.ws3e{word-spacing:-16.175386px;}
.ws5{word-spacing:-16.049468px;}
.ws39{word-spacing:-16.031923px;}
.ws74{word-spacing:-15.988884px;}
.ws13d{word-spacing:-15.960192px;}
.ws13e{word-spacing:-15.939698px;}
.ws173{word-spacing:-15.917153px;}
.wsdc{word-spacing:-15.888461px;}
.wsbc{word-spacing:-15.829597px;}
.ws3a{word-spacing:-15.816730px;}
.ws1a4{word-spacing:-15.743520px;}
.ws112{word-spacing:-15.673267px;}
.ws175{word-spacing:-15.630228px;}
.ws9f{word-spacing:-15.601536px;}
.ws17b{word-spacing:-15.529805px;}
.wsc2{word-spacing:-15.458074px;}
.ws132{word-spacing:-15.386342px;}
.ws178{word-spacing:-15.326052px;}
.ws17a{word-spacing:-15.314611px;}
.ws27{word-spacing:-15.242880px;}
.ws5b{word-spacing:-15.171149px;}
.ws3c{word-spacing:-15.166001px;}
.wsce{word-spacing:-15.099418px;}
.ws145{word-spacing:-15.027686px;}
.ws79{word-spacing:-14.955955px;}
.ws130{word-spacing:-14.884224px;}
.ws5e{word-spacing:-14.812493px;}
.ws1a0{word-spacing:-14.743588px;}
.ws56{word-spacing:-14.740762px;}
.wse2{word-spacing:-14.669030px;}
.wse3{word-spacing:-14.597299px;}
.wscb{word-spacing:-14.525568px;}
.ws88{word-spacing:-14.453837px;}
.ws15a{word-spacing:-14.451068px;}
.ws159{word-spacing:-14.421698px;}
.ws9d{word-spacing:-14.382106px;}
.wsc9{word-spacing:-14.310374px;}
.wse7{word-spacing:-14.261601px;}
.wsf1{word-spacing:-14.166912px;}
.ws161{word-spacing:-14.095181px;}
.ws179{word-spacing:-14.052142px;}
.wse9{word-spacing:-14.023450px;}
.wsa{word-spacing:-13.954921px;}
.wsa7{word-spacing:-13.951718px;}
.ws19e{word-spacing:-13.879987px;}
.ws13f{word-spacing:-13.872814px;}
.wscf{word-spacing:-13.836948px;}
.ws146{word-spacing:-13.808256px;}
.ws185{word-spacing:-13.745309px;}
.ws10c{word-spacing:-13.736525px;}
.wsb8{word-spacing:-13.664794px;}
.ws54{word-spacing:-13.521331px;}
.ws126{word-spacing:-13.503308px;}
.ws134{word-spacing:-13.449600px;}
.ws13a{word-spacing:-13.442427px;}
.ws114{word-spacing:-13.377869px;}
.wsbd{word-spacing:-13.306138px;}
.ws1ce{word-spacing:-13.263099px;}
.wse6{word-spacing:-13.234406px;}
.ws65{word-spacing:-13.162675px;}
.ws190{word-spacing:-13.090944px;}
.ws182{word-spacing:-13.019213px;}
.ws9e{word-spacing:-12.947482px;}
.ws160{word-spacing:-12.875750px;}
.ws91{word-spacing:-12.732288px;}
.wsdf{word-spacing:-12.660557px;}
.ws1b5{word-spacing:-12.653384px;}
.ws147{word-spacing:-12.617518px;}
.ws95{word-spacing:-12.588826px;}
.ws187{word-spacing:-12.587816px;}
.ws11a{word-spacing:-12.517094px;}
.ws84{word-spacing:-12.445363px;}
.ws87{word-spacing:-12.373632px;}
.ws18{word-spacing:-12.307796px;}
.wsd0{word-spacing:-12.301901px;}
.ws115{word-spacing:-12.230170px;}
.wsad{word-spacing:-12.158438px;}
.wsc7{word-spacing:-12.106285px;}
.ws78{word-spacing:-12.086707px;}
.ws18e{word-spacing:-12.043068px;}
.wsb6{word-spacing:-12.014976px;}
.ws17e{word-spacing:-11.943245px;}
.ws1bc{word-spacing:-11.900206px;}
.ws85{word-spacing:-11.871514px;}
.wsb{word-spacing:-11.860374px;}
.ws1dc{word-spacing:-11.828475px;}
.ws3b{word-spacing:-11.799782px;}
.ws1b3{word-spacing:-11.792609px;}
.ws16c{word-spacing:-11.745300px;}
.ws13b{word-spacing:-11.743945px;}
.ws1b4{word-spacing:-11.734477px;}
.ws38{word-spacing:-11.728051px;}
.ws1d1{word-spacing:-11.718670px;}
.ws1cb{word-spacing:-11.710980px;}
.wsd1{word-spacing:-11.710374px;}
.ws1ca{word-spacing:-11.691848px;}
.ws1be{word-spacing:-11.685012px;}
.ws2c{word-spacing:-11.656320px;}
.ws1d0{word-spacing:-11.613281px;}
.ws150{word-spacing:-11.584589px;}
.ws10a{word-spacing:-11.554666px;}
.ws10b{word-spacing:-11.512858px;}
.ws17{word-spacing:-11.470938px;}
.ws4e{word-spacing:-11.441126px;}
.ws1af{word-spacing:-11.433953px;}
.ws129{word-spacing:-11.369395px;}
.wsb2{word-spacing:-11.297664px;}
.ws121{word-spacing:-11.291611px;}
.ws122{word-spacing:-11.243217px;}
.ws124{word-spacing:-11.231835px;}
.ws53{word-spacing:-11.225933px;}
.ws153{word-spacing:-11.218760px;}
.ws197{word-spacing:-11.163905px;}
.wsc0{word-spacing:-11.154202px;}
.ws18c{word-spacing:-11.151974px;}
.wsc{word-spacing:-11.140373px;}
.ws1db{word-spacing:-11.111163px;}
.ws42{word-spacing:-11.082470px;}
.ws7a{word-spacing:-11.010739px;}
.ws59{word-spacing:-10.939008px;}
.ws1d{word-spacing:-10.878555px;}
.ws37{word-spacing:-10.867277px;}
.ws1bf{word-spacing:-10.831747px;}
.ws1dd{word-spacing:-10.824238px;}
.ws23{word-spacing:-10.813100px;}
.ws70{word-spacing:-10.795546px;}
.ws15{word-spacing:-10.753630px;}
.ws137{word-spacing:-10.752507px;}
.ws8c{word-spacing:-10.723814px;}
.ws170{word-spacing:-10.652083px;}
.wsb4{word-spacing:-10.580352px;}
.ws90{word-spacing:-10.508621px;}
.ws157{word-spacing:-10.465582px;}
.wsaa{word-spacing:-10.436890px;}
.ws1a{word-spacing:-10.420372px;}
.wsd8{word-spacing:-10.365158px;}
.ws1a2{word-spacing:-10.293427px;}
.ws1b2{word-spacing:-10.274703px;}
.ws1a6{word-spacing:-10.240437px;}
.ws131{word-spacing:-10.221696px;}
.ws1a9{word-spacing:-10.214523px;}
.ws43{word-spacing:-10.178657px;}
.wsa0{word-spacing:-10.149965px;}
.ws1c0{word-spacing:-10.115825px;}
.ws125{word-spacing:-10.102076px;}
.ws7{word-spacing:-10.093099px;}
.wsb1{word-spacing:-10.078234px;}
.ws3{word-spacing:-10.027645px;}
.ws6a{word-spacing:-10.006502px;}
.ws12{word-spacing:-9.976548px;}
.wsbb{word-spacing:-9.934771px;}
.ws7c{word-spacing:-9.863040px;}
.ws10e{word-spacing:-9.860406px;}
.ws10{word-spacing:-9.856996px;}
.ws11d{word-spacing:-9.797221px;}
.ws2f{word-spacing:-9.791309px;}
.ws17c{word-spacing:-9.719578px;}
.ws120{word-spacing:-9.677670px;}
.wsf7{word-spacing:-9.647846px;}
.ws8e{word-spacing:-9.576115px;}
.ws1b9{word-spacing:-9.533076px;}
.ws8a{word-spacing:-9.504384px;}
.ws1c8{word-spacing:-9.461345px;}
.ws82{word-spacing:-9.432653px;}
.ws72{word-spacing:-9.360922px;}
.ws1c1{word-spacing:-9.317883px;}
.wsa3{word-spacing:-9.289190px;}
.ws28{word-spacing:-9.217459px;}
.ws60{word-spacing:-9.145728px;}
.ws154{word-spacing:-9.145667px;}
.ws45{word-spacing:-9.139689px;}
.ws194{word-spacing:-9.073997px;}
.ws163{word-spacing:-9.030958px;}
.ws151{word-spacing:-9.002266px;}
.ws16{word-spacing:-8.960362px;}
.ws6e{word-spacing:-8.930534px;}
.ws6c{word-spacing:-8.858803px;}
.ws4d{word-spacing:-8.787072px;}
.ws1c6{word-spacing:-8.744033px;}
.ws92{word-spacing:-8.715341px;}
.wsef{word-spacing:-8.643610px;}
.ws55{word-spacing:-8.571878px;}
.ws174{word-spacing:-8.528840px;}
.ws16d{word-spacing:-8.500147px;}
.ws140{word-spacing:-8.457108px;}
.ws2b{word-spacing:-8.428416px;}
.wsf3{word-spacing:-8.356685px;}
.ws1d5{word-spacing:-8.290410px;}
.wsfa{word-spacing:-8.284954px;}
.ws77{word-spacing:-8.241915px;}
.ws57{word-spacing:-8.213222px;}
.wse1{word-spacing:-8.141491px;}
.ws1c7{word-spacing:-8.098452px;}
.ws4b{word-spacing:-8.081292px;}
.ws6b{word-spacing:-8.069760px;}
.wsd5{word-spacing:-7.998029px;}
.ws135{word-spacing:-7.954990px;}
.ws189{word-spacing:-7.927841px;}
.wse0{word-spacing:-7.926298px;}
.ws186{word-spacing:-7.894241px;}
.wsac{word-spacing:-7.854566px;}
.ws106{word-spacing:-7.782835px;}
.wsff{word-spacing:-7.711104px;}
.wsde{word-spacing:-7.639373px;}
.ws11{word-spacing:-7.585524px;}
.ws97{word-spacing:-7.567642px;}
.ws195{word-spacing:-7.495910px;}
.wse4{word-spacing:-7.352448px;}
.ws19b{word-spacing:-7.280717px;}
.ws127{word-spacing:-7.237715px;}
.wsb5{word-spacing:-7.208986px;}
.ws18a{word-spacing:-7.175562px;}
.ws75{word-spacing:-7.137254px;}
.ws1c3{word-spacing:-7.103760px;}
.ws141{word-spacing:-7.095014px;}
.wsfb{word-spacing:-7.065523px;}
.ws148{word-spacing:-7.047543px;}
.ws19a{word-spacing:-7.022484px;}
.ws63{word-spacing:-6.993792px;}
.ws13{word-spacing:-6.987768px;}
.ws142{word-spacing:-6.950753px;}
.ws5a{word-spacing:-6.922061px;}
.wsa9{word-spacing:-6.850330px;}
.ws7e{word-spacing:-6.778598px;}
.ws16b{word-spacing:-6.706867px;}
.ws15c{word-spacing:-6.699694px;}
.ws19d{word-spacing:-6.690108px;}
.ws168{word-spacing:-6.635136px;}
.wsd{word-spacing:-6.624006px;}
.ws76{word-spacing:-6.592097px;}
.wsd3{word-spacing:-6.563405px;}
.ws1d8{word-spacing:-6.526986px;}
.ws149{word-spacing:-6.515540px;}
.ws31{word-spacing:-6.491674px;}
.wsba{word-spacing:-6.419942px;}
.ws1d2{word-spacing:-6.401760px;}
.ws8b{word-spacing:-6.276480px;}
.wsc5{word-spacing:-6.204749px;}
.ws47{word-spacing:-6.133018px;}
.ws66{word-spacing:-6.061286px;}
.ws52{word-spacing:-6.029789px;}
.wsdd{word-spacing:-5.989555px;}
.ws198{word-spacing:-5.982401px;}
.ws16f{word-spacing:-5.943537px;}
.wsa6{word-spacing:-5.917824px;}
.wsa2{word-spacing:-5.852216px;}
.ws71{word-spacing:-5.846093px;}
.ws1d6{word-spacing:-5.774362px;}
.wsf6{word-spacing:-5.702630px;}
.ws30{word-spacing:-5.630899px;}
.ws14{word-spacing:-5.612929px;}
.ws20{word-spacing:-5.576732px;}
.ws119{word-spacing:-5.559168px;}
.ws11e{word-spacing:-5.556657px;}
.ws176{word-spacing:-5.516129px;}
.ws46{word-spacing:-5.487437px;}
.ws32{word-spacing:-5.415706px;}
.ws51{word-spacing:-5.343974px;}
.ws107{word-spacing:-5.303789px;}
.ws1d7{word-spacing:-5.300936px;}
.ws50{word-spacing:-5.272243px;}
.ws7d{word-spacing:-5.261309px;}
.ws1ab{word-spacing:-5.229014px;}
.ws1bb{word-spacing:-5.200512px;}
.wse{word-spacing:-5.184004px;}
.ws2a{word-spacing:-5.128781px;}
.ws196{word-spacing:-5.092618px;}
.ws177{word-spacing:-5.085742px;}
.ws62{word-spacing:-5.057050px;}
.wse5{word-spacing:-4.985318px;}
.ws143{word-spacing:-4.870548px;}
.ws1b{word-spacing:-4.856731px;}
.ws7b{word-spacing:-4.841856px;}
.ws1ae{word-spacing:-4.834683px;}
.ws1ba{word-spacing:-4.798817px;}
.ws1cc{word-spacing:-4.770125px;}
.wsbf{word-spacing:-4.698394px;}
.wsaf{word-spacing:-4.626662px;}
.wsf4{word-spacing:-4.554931px;}
.ws1c5{word-spacing:-4.485149px;}
.ws12c{word-spacing:-4.483200px;}
.ws1cd{word-spacing:-4.440161px;}
.ws35{word-spacing:-4.411469px;}
.ws26{word-spacing:-4.339738px;}
.wsa4{word-spacing:-4.268006px;}
.ws116{word-spacing:-4.196275px;}
.wsb7{word-spacing:-4.124544px;}
.ws111{word-spacing:-4.052813px;}
.ws108{word-spacing:-3.983789px;}
.ws14f{word-spacing:-3.914077px;}
.ws48{word-spacing:-3.909350px;}
.ws1a3{word-spacing:-3.766934px;}
.wsdb{word-spacing:-3.765888px;}
.ws6d{word-spacing:-3.707789px;}
.ws102{word-spacing:-3.694157px;}
.ws12f{word-spacing:-3.622426px;}
.ws1bd{word-spacing:-3.579387px;}
.wsf8{word-spacing:-3.550694px;}
.ws1aa{word-spacing:-3.510184px;}
.ws58{word-spacing:-3.478963px;}
.ws36{word-spacing:-3.407232px;}
.ws11f{word-spacing:-3.401232px;}
.ws104{word-spacing:-3.344715px;}
.wsb0{word-spacing:-3.335501px;}
.ws33{word-spacing:-3.263770px;}
.ws15f{word-spacing:-3.149000px;}
.ws180{word-spacing:-3.120307px;}
.ws1d4{word-spacing:-3.118426px;}
.ws68{word-spacing:-3.048576px;}
.ws181{word-spacing:-2.976845px;}
.ws22{word-spacing:-2.958548px;}
.ws1b7{word-spacing:-2.905114px;}
.ws15d{word-spacing:-2.897940px;}
.ws165{word-spacing:-2.833382px;}
.wsae{word-spacing:-2.761651px;}
.wsbe{word-spacing:-2.689920px;}
.ws1b8{word-spacing:-2.646881px;}
.ws5c{word-spacing:-2.546458px;}
.ws29{word-spacing:-2.499308px;}
.ws15e{word-spacing:-2.474726px;}
.wsea{word-spacing:-2.402995px;}
.ws1ac{word-spacing:-2.395822px;}
.ws164{word-spacing:-2.259533px;}
.ws192{word-spacing:-2.187802px;}
.ws193{word-spacing:-2.116070px;}
.ws128{word-spacing:-2.051789px;}
.ws100{word-spacing:-2.044339px;}
.ws96{word-spacing:-1.972608px;}
.ws1c2{word-spacing:-1.929569px;}
.wsfe{word-spacing:-1.900877px;}
.ws61{word-spacing:-1.829146px;}
.ws171{word-spacing:-1.714376px;}
.wse8{word-spacing:-1.685683px;}
.ws18b{word-spacing:-1.637309px;}
.ws67{word-spacing:-1.613952px;}
.ws17d{word-spacing:-1.542221px;}
.ws158{word-spacing:-1.425949px;}
.ws4a{word-spacing:-1.398758px;}
.ws9{word-spacing:-1.387638px;}
.ws19c{word-spacing:-1.327027px;}
.ws6f{word-spacing:-1.183565px;}
.ws1c4{word-spacing:-1.140526px;}
.ws69{word-spacing:-1.111834px;}
.ws34{word-spacing:-1.040102px;}
.ws11b{word-spacing:-0.968371px;}
.ws11c{word-spacing:-0.896640px;}
.ws1cf{word-spacing:-0.824909px;}
.ws5d{word-spacing:-0.681446px;}
.ws12b{word-spacing:-0.609715px;}
.wsd9{word-spacing:-0.472227px;}
.ws7f{word-spacing:-0.394522px;}
.ws1c{word-spacing:-0.340364px;}
.ws166{word-spacing:-0.322790px;}
.ws12e{word-spacing:-0.293789px;}
.ws167{word-spacing:-0.251059px;}
.ws2{word-spacing:-0.086077px;}
.ws44{word-spacing:-0.071731px;}
.ws1e{word-spacing:-0.065455px;}
.ws199{word-spacing:-0.035866px;}
.ws19{word-spacing:0.000000px;}
.ws10d{word-spacing:0.003923px;}
.ws152{word-spacing:0.007442px;}
.ws15b{word-spacing:0.101251px;}
.ws4{word-spacing:0.183273px;}
.wsca{word-spacing:0.430387px;}
.ws1d3{word-spacing:0.609715px;}
.wsda{word-spacing:1.111834px;}
.ws16a{word-spacing:2.331264px;}
.wsa5{word-spacing:2.419357px;}
.ws101{word-spacing:3.114211px;}
.ws1b0{word-spacing:3.371366px;}
.ws10f{word-spacing:3.586560px;}
.wsd2{word-spacing:3.891923px;}
.wsf0{word-spacing:5.595034px;}
.ws1b1{word-spacing:5.625923px;}
.ws110{word-spacing:5.763923px;}
.wsf2{word-spacing:5.781923px;}
.ws105{word-spacing:7.694327px;}
.ws16e{word-spacing:10.257562px;}
.ws138{word-spacing:11.728051px;}
.ws103{word-spacing:14.633165px;}
.ws14e{word-spacing:16.557841px;}
.wsc3{word-spacing:16.955578px;}
.ws6{word-spacing:17.791788px;}
.wsed{word-spacing:18.420845px;}
.ws3f{word-spacing:18.904259px;}
.ws1a1{word-spacing:20.315313px;}
.ws3d{word-spacing:20.317882px;}
.ws18f{word-spacing:21.923313px;}
.ws8{word-spacing:22.436943px;}
.ws9b{word-spacing:23.170928px;}
.wsfd{word-spacing:23.333313px;}
.ws4f{word-spacing:23.574240px;}
.ws2e{word-spacing:25.264754px;}
.wsf5{word-spacing:26.320583px;}
.wsd4{word-spacing:27.049956px;}
.ws1{word-spacing:27.200395px;}
.ws4c{word-spacing:27.657971px;}
.ws21{word-spacing:28.014569px;}
.wsf{word-spacing:28.341842px;}
.ws12d{word-spacing:34.589313px;}
.ws0{word-spacing:38.060325px;}
.ws133{word-spacing:43.382808px;}
.ws136{word-spacing:50.714509px;}
.ws14d{word-spacing:104.899826px;}
.ws98{word-spacing:121.688809px;}
.ws155{word-spacing:175.512415px;}
.ws156{word-spacing:227.067921px;}
.ws99{word-spacing:229.648673px;}
.ws162{word-spacing:371.897452px;}
._2b{margin-left:-829.729268px;}
._2f{margin-left:-28.999982px;}
._3{margin-left:-9.546075px;}
._2e{margin-left:-8.240483px;}
._6{margin-left:-6.676124px;}
._a{margin-left:-5.303884px;}
._1d{margin-left:-4.260656px;}
._0{margin-left:-3.099375px;}
._5{margin-left:-1.586692px;}
._7{width:1.767274px;}
._1{width:3.223350px;}
._8{width:4.374575px;}
._36{width:5.729952px;}
._27{width:7.727752px;}
._1f{width:11.315466px;}
._20{width:12.473287px;}
._42{width:14.134917px;}
._13{width:17.240411px;}
._19{width:18.460924px;}
._17{width:20.182473px;}
._18{width:21.447629px;}
._1c{width:22.612906px;}
._25{width:23.655589px;}
._3a{width:24.752386px;}
._f{width:25.828336px;}
._9{width:27.219880px;}
._14{width:28.710544px;}
._10{width:29.713750px;}
._1b{width:30.839340px;}
._c{width:31.954121px;}
._d{width:33.473080px;}
._12{width:34.821847px;}
._33{width:35.856995px;}
._15{width:36.899279px;}
._24{width:38.232730px;}
._e{width:39.357083px;}
._38{width:40.456397px;}
._23{width:41.540970px;}
._29{width:43.378320px;}
._26{width:44.822542px;}
._32{width:46.275229px;}
._11{width:47.365105px;}
._22{width:48.529283px;}
._31{width:49.543882px;}
._2{width:50.953725px;}
._21{width:52.100390px;}
._1e{width:53.368013px;}
._35{width:54.902461px;}
._16{width:56.093798px;}
._b{width:58.031566px;}
._2c{width:59.160958px;}
._34{width:60.478007px;}
._1a{width:62.190950px;}
._37{width:63.697306px;}
._43{width:65.223904px;}
._44{width:67.033656px;}
._30{width:69.433292px;}
._3d{width:71.735224px;}
._4{width:86.563179px;}
._2d{width:94.684920px;}
._28{width:111.452500px;}
._39{width:126.390374px;}
._40{width:130.263859px;}
._2a{width:183.026265px;}
._41{width:200.488704px;}
._3b{width:202.353715px;}
._3f{width:221.864602px;}
._3e{width:293.385730px;}
._3c{width:391.247971px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(0,173,239);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:26.000160px;}
.fs8{font-size:35.750220px;}
.fs9{font-size:39.000240px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:65.003400px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fsc{font-size:78.004080px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y145{bottom:12.513085px;}
.y16e{bottom:22.254523px;}
.y146{bottom:23.627899px;}
.y16d{bottom:44.472482px;}
.y147{bottom:60.304375px;}
.y16f{bottom:62.018322px;}
.y1e{bottom:63.168000px;}
.y150{bottom:66.314881px;}
.y156{bottom:67.235297px;}
.y14e{bottom:70.560270px;}
.y14d{bottom:79.729389px;}
.y14c{bottom:80.838408px;}
.y148{bottom:96.980851px;}
.y1d{bottom:108.000000px;}
.yaf{bottom:110.740500px;}
.yfd{bottom:111.729000px;}
.ye6{bottom:111.907500px;}
.yc7{bottom:117.025500px;}
.y16b{bottom:117.783000px;}
.y6f{bottom:118.638000px;}
.y1b5{bottom:119.388000px;}
.y19e{bottom:120.132000px;}
.ye4{bottom:122.232000px;}
.y125{bottom:123.825000px;}
.yfa{bottom:123.870000px;}
.y1c{bottom:125.932500px;}
.yd4{bottom:127.875000px;}
.y59{bottom:129.661500px;}
.y3f{bottom:132.523500px;}
.y170{bottom:133.249048px;}
.y149{bottom:133.657326px;}
.y10b{bottom:136.354500px;}
.y98{bottom:138.064500px;}
.y143{bottom:141.064500px;}
.yf9{bottom:141.802500px;}
.y188{bottom:143.013000px;}
.y1b{bottom:143.865000px;}
.yae{bottom:146.602500px;}
.y155{bottom:146.782075px;}
.yfc{bottom:147.591000px;}
.ye5{bottom:147.769500px;}
.y124{bottom:150.580500px;}
.yc6{bottom:152.887500px;}
.y16a{bottom:153.645000px;}
.y6e{bottom:154.500000px;}
.y1b4{bottom:155.250000px;}
.y3e{bottom:155.880000px;}
.y19d{bottom:155.994000px;}
.ye3{bottom:158.094000px;}
.yf8{bottom:159.735000px;}
.y154{bottom:159.896414px;}
.y1a{bottom:161.797500px;}
.y95{bottom:162.712500px;}
.yd3{bottom:163.737000px;}
.y58{bottom:165.523500px;}
.y14a{bottom:170.333802px;}
.y153{bottom:173.010752px;}
.y97{bottom:173.926500px;}
.y142{bottom:176.926500px;}
.yf7{bottom:177.667500px;}
.y187{bottom:178.875000px;}
.y19{bottom:179.731500px;}
.yad{bottom:182.464500px;}
.yfb{bottom:183.453000px;}
.y3d{bottom:183.631500px;}
.y152{bottom:186.125091px;}
.y123{bottom:186.441000px;}
.y10a{bottom:187.159500px;}
.yc5{bottom:188.749500px;}
.y169{bottom:189.507000px;}
.y6d{bottom:190.362000px;}
.y1b3{bottom:191.112000px;}
.y19c{bottom:191.856000px;}
.ye2{bottom:193.956000px;}
.yf6{bottom:195.600000px;}
.y18{bottom:197.664000px;}
.y94{bottom:198.574500px;}
.y151{bottom:199.417165px;}
.yd2{bottom:199.597500px;}
.y57{bottom:201.385500px;}
.y171{bottom:204.479773px;}
.y14b{bottom:207.010278px;}
.y1a0{bottom:209.788500px;}
.y175{bottom:209.967584px;}
.y141{bottom:212.787000px;}
.yf5{bottom:213.534000px;}
.y186{bottom:214.737000px;}
.y14f{bottom:215.281325px;}
.y17{bottom:215.596500px;}
.yac{bottom:218.326500px;}
.y3c{bottom:219.493500px;}
.y122{bottom:222.303000px;}
.yb1{bottom:222.997500px;}
.y109{bottom:223.021500px;}
.yc4{bottom:224.611500px;}
.y168{bottom:225.367500px;}
.y96{bottom:227.542500px;}
.y19b{bottom:227.718000px;}
.ye1{bottom:229.818000px;}
.yf4{bottom:231.466500px;}
.y16{bottom:233.529000px;}
.y93{bottom:234.436500px;}
.yd1{bottom:235.459500px;}
.y56{bottom:237.247500px;}
.y1b2{bottom:238.552500px;}
.y6c{bottom:245.650500px;}
.yb0{bottom:246.354000px;}
.yf3{bottom:249.399000px;}
.y185{bottom:250.597500px;}
.y15{bottom:251.461500px;}
.yab{bottom:254.188500px;}
.y3b{bottom:255.355500px;}
.y121{bottom:258.165000px;}
.y140{bottom:259.077000px;}
.yc3{bottom:260.473500px;}
.y167{bottom:261.229500px;}
.y19a{bottom:263.580000px;}
.ye0{bottom:265.678500px;}
.y14{bottom:269.395500px;}
.y92{bottom:270.297000px;}
.yd0{bottom:271.321500px;}
.yf2{bottom:272.754000px;}
.y55{bottom:273.109500px;}
.y108{bottom:273.826500px;}
.y172{bottom:275.710499px;}
.y6b{bottom:281.512500px;}
.y184{bottom:286.459500px;}
.y13{bottom:287.328000px;}
.yaa{bottom:290.049000px;}
.y3a{bottom:291.216000px;}
.y120{bottom:294.027000px;}
.yc2{bottom:296.334000px;}
.y166{bottom:297.091500px;}
.y199{bottom:299.440500px;}
.yf1{bottom:299.509500px;}
.ydf{bottom:301.540500px;}
.y91{bottom:306.159000px;}
.ycf{bottom:307.183500px;}
.y1b1{bottom:308.157000px;}
.y54{bottom:308.970000px;}
.y13f{bottom:309.861000px;}
.y12{bottom:310.683000px;}
.y6a{bottom:317.374500px;}
.y183{bottom:322.321500px;}
.y107{bottom:324.633000px;}
.ya9{bottom:325.911000px;}
.y39{bottom:327.078000px;}
.y11f{bottom:329.889000px;}
.yc1{bottom:332.196000px;}
.y165{bottom:332.953500px;}
.y11{bottom:333.352500px;}
.y198{bottom:335.302500px;}
.yf0{bottom:335.371500px;}
.yde{bottom:337.402500px;}
.y90{bottom:342.021000px;}
.yce{bottom:343.045500px;}
.y1b0{bottom:344.019000px;}
.y53{bottom:344.832000px;}
.y13e{bottom:345.723000px;}
.y173{bottom:346.941225px;}
.y179{bottom:349.689853px;}
.y69{bottom:353.235000px;}
.y182{bottom:358.183500px;}
.y106{bottom:360.495000px;}
.ya8{bottom:361.773000px;}
.y38{bottom:362.940000px;}
.y11e{bottom:365.749500px;}
.y10{bottom:366.988500px;}
.yc0{bottom:368.058000px;}
.y164{bottom:368.815500px;}
.y197{bottom:371.164500px;}
.yef{bottom:371.233500px;}
.ydd{bottom:373.264500px;}
.y1b7{bottom:373.351500px;}
.y178{bottom:373.532897px;}
.y8f{bottom:377.883000px;}
.ycd{bottom:378.907500px;}
.y1af{bottom:379.881000px;}
.y52{bottom:380.694000px;}
.y13d{bottom:381.585000px;}
.y68{bottom:389.097000px;}
.y181{bottom:394.045500px;}
.y105{bottom:396.355500px;}
.y177{bottom:397.375941px;}
.ya7{bottom:397.635000px;}
.y37{bottom:398.802000px;}
.yf{bottom:400.624500px;}
.y11d{bottom:401.611500px;}
.y163{bottom:404.677500px;}
.y196{bottom:407.026500px;}
.yee{bottom:407.095500px;}
.ydc{bottom:409.126500px;}
.y8e{bottom:413.745000px;}
.y1ae{bottom:415.743000px;}
.y51{bottom:416.556000px;}
.y13c{bottom:417.447000px;}
.y174{bottom:418.171951px;}
.ybf{bottom:421.674000px;}
.y67{bottom:424.959000px;}
.ycc{bottom:430.213500px;}
.y104{bottom:432.217500px;}
.ya6{bottom:433.497000px;}
.y176{bottom:434.092705px;}
.ye{bottom:434.259000px;}
.y36{bottom:434.664000px;}
.y11c{bottom:437.473500px;}
.y162{bottom:440.538000px;}
.y195{bottom:442.888500px;}
.yed{bottom:442.957500px;}
.ydb{bottom:444.988500px;}
.y180{bottom:445.351500px;}
.y8d{bottom:449.607000px;}
.ycb{bottom:451.882500px;}
.y50{bottom:452.418000px;}
.y13b{bottom:453.307500px;}
.y66{bottom:460.821000px;}
.y1ad{bottom:463.183500px;}
.y17f{bottom:467.020500px;}
.yd{bottom:467.895000px;}
.y103{bottom:468.079500px;}
.ya5{bottom:469.357500px;}
.y35{bottom:470.526000px;}
.y11b{bottom:473.335500px;}
.yca{bottom:473.551500px;}
.y194{bottom:478.750500px;}
.yec{bottom:478.819500px;}
.y8c{bottom:485.467500px;}
.y4f{bottom:488.280000px;}
.y17e{bottom:488.689500px;}
.y13a{bottom:489.169500px;}
.y161{bottom:491.344500px;}
.yc9{bottom:495.220500px;}
.yda{bottom:496.294500px;}
.y65{bottom:496.683000px;}
.yc{bottom:501.531000px;}
.ybe{bottom:503.101500px;}
.y102{bottom:503.941500px;}
.ya4{bottom:505.219500px;}
.y34{bottom:506.386500px;}
.y11a{bottom:509.197500px;}
.y17d{bottom:510.358500px;}
.y19f{bottom:514.437000px;}
.y193{bottom:514.611000px;}
.yeb{bottom:514.680000px;}
.yc8{bottom:516.888000px;}
.yd9{bottom:517.963500px;}
.y8b{bottom:521.329500px;}
.y4e{bottom:524.140500px;}
.y139{bottom:525.031500px;}
.y160{bottom:527.206500px;}
.y17c{bottom:532.027500px;}
.y64{bottom:532.545000px;}
.y1ac{bottom:532.788000px;}
.yb{bottom:535.167000px;}
.ybd{bottom:538.963500px;}
.yd8{bottom:539.632500px;}
.ya3{bottom:541.081500px;}
.y33{bottom:542.248500px;}
.y119{bottom:545.059500px;}
.y192{bottom:550.473000px;}
.yea{bottom:550.542000px;}
.y17b{bottom:553.695000px;}
.y101{bottom:554.104500px;}
.y8a{bottom:557.191500px;}
.y4d{bottom:560.002500px;}
.y138{bottom:560.893500px;}
.yd7{bottom:561.301500px;}
.y15f{bottom:563.068500px;}
.y63{bottom:568.405500px;}
.y1ab{bottom:568.650000px;}
.ya{bottom:568.803000px;}
.ybc{bottom:574.825500px;}
.y17a{bottom:575.364000px;}
.y32{bottom:578.110500px;}
.y118{bottom:580.920000px;}
.yd6{bottom:582.969000px;}
.y191{bottom:586.335000px;}
.ye9{bottom:586.404000px;}
.ya2{bottom:588.522000px;}
.y100{bottom:589.966500px;}
.y4c{bottom:595.864500px;}
.y137{bottom:596.755500px;}
.y9{bottom:602.439000px;}
.y62{bottom:604.267500px;}
.y1aa{bottom:604.512000px;}
.yd5{bottom:604.638000px;}
.y89{bottom:607.852500px;}
.ybb{bottom:610.687500px;}
.y16c{bottom:611.977500px;}
.y15e{bottom:613.873500px;}
.y31{bottom:613.972500px;}
.y117{bottom:616.782000px;}
.y190{bottom:622.197000px;}
.ye8{bottom:622.266000px;}
.y4b{bottom:631.726500px;}
.y136{bottom:632.616000px;}
.y8{bottom:636.075000px;}
.y61{bottom:640.129500px;}
.y1a9{bottom:640.374000px;}
.y88{bottom:643.714500px;}
.yba{bottom:646.549500px;}
.y15d{bottom:649.735500px;}
.y30{bottom:649.834500px;}
.y116{bottom:652.644000px;}
.y18f{bottom:658.059000px;}
.ya1{bottom:658.128000px;}
.y4a{bottom:667.588500px;}
.y135{bottom:668.478000px;}
.y60{bottom:675.991500px;}
.y1a8{bottom:676.234500px;}
.y7{bottom:677.388000px;}
.y87{bottom:679.576500px;}
.yb9{bottom:682.410000px;}
.y2f{bottom:685.696500px;}
.y115{bottom:688.506000px;}
.ya0{bottom:693.990000px;}
.y15c{bottom:701.041500px;}
.y49{bottom:703.450500px;}
.y134{bottom:704.340000px;}
.ye7{bottom:705.568500px;}
.y18e{bottom:711.675000px;}
.y5f{bottom:711.853500px;}
.y1a7{bottom:712.096500px;}
.y86{bottom:715.438500px;}
.yb8{bottom:718.272000px;}
.y2e{bottom:721.557000px;}
.y15b{bottom:722.710500px;}
.y114{bottom:724.368000px;}
.y1a1{bottom:729.607500px;}
.y9f{bottom:729.850500px;}
.y48{bottom:739.311000px;}
.y1b6{bottom:741.430500px;}
.y15a{bottom:744.379500px;}
.y5e{bottom:747.714000px;}
.y1a6{bottom:747.958500px;}
.y85{bottom:751.300500px;}
.y133{bottom:752.055000px;}
.y2d{bottom:757.419000px;}
.y113{bottom:760.230000px;}
.y9e{bottom:765.712500px;}
.y159{bottom:766.048500px;}
.y132{bottom:769.987500px;}
.y6{bottom:771.405000px;}
.y47{bottom:775.173000px;}
.y5d{bottom:783.576000px;}
.y1a5{bottom:783.820500px;}
.y158{bottom:787.717500px;}
.y131{bottom:787.921500px;}
.y18d{bottom:793.102500px;}
.y2c{bottom:793.281000px;}
.y112{bottom:796.090500px;}
.y9d{bottom:801.574500px;}
.y84{bottom:802.318500px;}
.y130{bottom:805.854000px;}
.y157{bottom:809.385000px;}
.y46{bottom:811.035000px;}
.y5c{bottom:819.438000px;}
.y1a4{bottom:819.682500px;}
.y83{bottom:823.987500px;}
.y5{bottom:827.653500px;}
.y18c{bottom:828.964500px;}
.y2b{bottom:829.143000px;}
.y111{bottom:831.952500px;}
.y12f{bottom:834.028500px;}
.yb7{bottom:835.318500px;}
.y9c{bottom:837.436500px;}
.y25{bottom:842.319000px;}
.y144{bottom:845.998500px;}
.y45{bottom:846.897000px;}
.y4{bottom:854.553000px;}
.y5b{bottom:855.300000px;}
.y1a3{bottom:855.544500px;}
.y12e{bottom:855.697500px;}
.y18b{bottom:864.826500px;}
.y2a{bottom:865.005000px;}
.y110{bottom:867.814500px;}
.y78{bottom:870.541500px;}
.yb6{bottom:871.180500px;}
.y9b{bottom:873.298500px;}
.y24{bottom:875.955000px;}
.y12d{bottom:877.366500px;}
.y44{bottom:882.759000px;}
.yff{bottom:891.162000px;}
.y77{bottom:892.381500px;}
.y7d{bottom:894.598500px;}
.y3{bottom:899.007000px;}
.y18a{bottom:900.687000px;}
.y29{bottom:900.865500px;}
.y1a2{bottom:902.985000px;}
.y10f{bottom:903.676500px;}
.yb5{bottom:907.041000px;}
.y12c{bottom:907.812000px;}
.y5a{bottom:908.916000px;}
.y9a{bottom:909.159000px;}
.y23{bottom:909.591000px;}
.y7c{bottom:912.531000px;}
.y76{bottom:917.148000px;}
.y43{bottom:918.621000px;}
.y74{bottom:918.891000px;}
.y12b{bottom:929.481000px;}
.y7b{bottom:930.465000px;}
.y189{bottom:936.549000px;}
.y28{bottom:936.727500px;}
.y75{bottom:938.817000px;}
.y10e{bottom:939.538500px;}
.y73{bottom:940.560000px;}
.yb4{bottom:942.903000px;}
.yfe{bottom:944.778000px;}
.y7a{bottom:948.397500px;}
.y12a{bottom:951.150000px;}
.y2{bottom:952.237500px;}
.y42{bottom:954.481500px;}
.y99{bottom:956.599500px;}
.y22{bottom:961.159500px;}
.y79{bottom:966.330000px;}
.y82{bottom:969.682500px;}
.y27{bottom:972.589500px;}
.y10d{bottom:975.400500px;}
.yb3{bottom:978.765000px;}
.y129{bottom:981.801000px;}
.y81{bottom:987.615000px;}
.y1{bottom:989.598000px;}
.y41{bottom:990.343500px;}
.y21{bottom:994.795500px;}
.y70{bottom:1004.518500px;}
.y80{bottom:1005.547500px;}
.y26{bottom:1008.451500px;}
.y128{bottom:1009.368000px;}
.y10c{bottom:1011.261000px;}
.yb2{bottom:1014.627000px;}
.y7f{bottom:1023.480000px;}
.y40{bottom:1026.205500px;}
.y20{bottom:1028.431500px;}
.y127{bottom:1031.037000px;}
.y71{bottom:1037.142000px;}
.y7e{bottom:1041.412500px;}
.y126{bottom:1052.706000px;}
.y72{bottom:1061.880000px;}
.y1f{bottom:1062.067500px;}
.h13{height:24.154149px;}
.h6{height:28.243890px;}
.h11{height:33.211954px;}
.h12{height:36.231223px;}
.h7{height:44.891476px;}
.h4{height:45.883675px;}
.h5{height:49.156405px;}
.h17{height:53.870131px;}
.h8{height:53.941862px;}
.hc{height:57.160405px;}
.ha{height:58.354726px;}
.he{height:58.360726px;}
.h15{height:60.388159px;}
.hd{height:60.426194px;}
.hb{height:60.913862px;}
.h3{height:61.373044px;}
.h16{height:72.465790px;}
.h9{height:72.511265px;}
.hf{height:74.783698px;}
.h2{height:76.127476px;}
.h1{height:87.030450px;}
.h10{height:234.001440px;}
.h14{height:468.024480px;}
.h0{height:1188.000000px;}
.w1{width:702.004320px;}
.w2{width:702.036720px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:18.996367px;}
.x28{left:24.277649px;}
.x3a{left:30.446983px;}
.x39{left:40.324453px;}
.x37{left:64.624552px;}
.x27{left:67.205076px;}
.x2a{left:68.500006px;}
.x2c{left:83.596115px;}
.xb{left:108.000000px;}
.x1{left:121.087500px;}
.xc{left:122.940000px;}
.x26{left:125.713500px;}
.xa{left:128.190000px;}
.xf{left:129.463500px;}
.x2b{left:132.944389px;}
.xe{left:134.338500px;}
.x24{left:147.100500px;}
.x9{left:151.897500px;}
.x22{left:162.030000px;}
.x8{left:176.304000px;}
.x1c{left:184.392000px;}
.x20{left:185.968500px;}
.x25{left:192.108000px;}
.x1e{left:193.231500px;}
.x2{left:201.834000px;}
.x1d{left:212.778000px;}
.x1f{left:219.376500px;}
.x4{left:256.827000px;}
.x2f{left:265.065926px;}
.x2e{left:270.347208px;}
.x10{left:285.021000px;}
.x18{left:295.600500px;}
.x17{left:299.503500px;}
.x30{left:300.702261px;}
.x2d{left:319.590184px;}
.x5{left:342.306000px;}
.x38{left:350.370865px;}
.x1a{left:361.380000px;}
.x11{left:363.808500px;}
.x23{left:379.039500px;}
.x3{left:380.134500px;}
.x6{left:382.476000px;}
.x12{left:388.878000px;}
.x16{left:413.308500px;}
.x7{left:423.267000px;}
.x15{left:435.594000px;}
.x21{left:450.222000px;}
.xd{left:454.611000px;}
.x31{left:471.236680px;}
.x32{left:481.660865px;}
.x19{left:496.293000px;}
.x35{left:536.655460px;}
.x3b{left:540.389515px;}
.x34{left:541.936743px;}
.x14{left:547.792500px;}
.x13{left:570.174000px;}
.x33{left:584.864169px;}
.x36{left:604.752789px;}
.x1b{left:654.591000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.197333pt;}
.v5{vertical-align:7.114667pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000944pt;}
.lse{letter-spacing:0.000990pt;}
.ls47{letter-spacing:0.001309pt;}
.ls11{letter-spacing:0.002033pt;}
.ls9{letter-spacing:0.002947pt;}
.ls6{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.526877pt;}
.ls1{letter-spacing:2.655017pt;}
.ls4{letter-spacing:2.656426pt;}
.ls49{letter-spacing:4.583373pt;}
.ls23{letter-spacing:13.873338pt;}
.ls2a{letter-spacing:14.759720pt;}
.ls2b{letter-spacing:14.765053pt;}
.ls3c{letter-spacing:16.247366pt;}
.ls3a{letter-spacing:16.898033pt;}
.ls3b{letter-spacing:16.903366pt;}
.ls38{letter-spacing:17.031366pt;}
.ls4d{letter-spacing:17.100699pt;}
.ls19{letter-spacing:17.218033pt;}
.ls1e{letter-spacing:17.345309pt;}
.lsb{letter-spacing:17.706238pt;}
.ls29{letter-spacing:17.707657pt;}
.lsd{letter-spacing:17.707976pt;}
.ls10{letter-spacing:17.713309pt;}
.ls27{letter-spacing:17.789338pt;}
.ls1d{letter-spacing:17.926642pt;}
.ls2c{letter-spacing:17.933636pt;}
.lsf{letter-spacing:18.118941pt;}
.ls28{letter-spacing:18.171904pt;}
.ls13{letter-spacing:18.235665pt;}
.ls1b{letter-spacing:19.506033pt;}
.ls1a{letter-spacing:19.511366pt;}
.ls1c{letter-spacing:19.682033pt;}
.lsc{letter-spacing:20.446582pt;}
.ls24{letter-spacing:20.540699pt;}
.ls25{letter-spacing:20.546033pt;}
.ls15{letter-spacing:20.571657pt;}
.ls16{letter-spacing:20.571976pt;}
.ls3{letter-spacing:20.786108pt;}
.ls32{letter-spacing:20.805625pt;}
.ls26{letter-spacing:20.807366pt;}
.ls33{letter-spacing:20.810959pt;}
.ls8{letter-spacing:20.849869pt;}
.ls2d{letter-spacing:20.929309pt;}
.ls20{letter-spacing:21.206424pt;}
.ls7{letter-spacing:21.362033pt;}
.ls5{letter-spacing:21.516699pt;}
.ls3d{letter-spacing:21.541625pt;}
.ls4a{letter-spacing:21.678763pt;}
.ls42{letter-spacing:21.933807pt;}
.ls22{letter-spacing:22.054424pt;}
.ls4c{letter-spacing:22.226033pt;}
.ls4b{letter-spacing:22.625321pt;}
.ls3f{letter-spacing:22.826462pt;}
.ls48{letter-spacing:22.882033pt;}
.ls2e{letter-spacing:23.145267pt;}
.ls17{letter-spacing:23.336550pt;}
.ls30{letter-spacing:23.403757pt;}
.ls18{letter-spacing:23.473309pt;}
.ls37{letter-spacing:23.506033pt;}
.ls34{letter-spacing:23.655356pt;}
.lsa{letter-spacing:25.695710pt;}
.ls41{letter-spacing:26.014515pt;}
.ls4e{letter-spacing:26.114033pt;}
.ls45{letter-spacing:26.269559pt;}
.ls44{letter-spacing:26.333321pt;}
.ls35{letter-spacing:26.443657pt;}
.ls36{letter-spacing:26.448990pt;}
.ls40{letter-spacing:26.694642pt;}
.ls43{letter-spacing:28.628719pt;}
.ls12{letter-spacing:28.651093pt;}
.ls3e{letter-spacing:29.330091pt;}
.ls46{letter-spacing:29.648896pt;}
.ls14{letter-spacing:29.776418pt;}
.ls1f{letter-spacing:30.065338pt;}
.ls21{letter-spacing:31.215625pt;}
.ls2f{letter-spacing:39.905338pt;}
.ls31{letter-spacing:45.595976pt;}
.ws49{word-spacing:-63.761067pt;}
.wsc6{word-spacing:-56.906752pt;}
.ws24{word-spacing:-49.534444pt;}
.wscd{word-spacing:-40.590295pt;}
.ws144{word-spacing:-35.859224pt;}
.ws41{word-spacing:-31.874157pt;}
.ws2d{word-spacing:-31.211042pt;}
.ws9a{word-spacing:-28.928024pt;}
.ws123{word-spacing:-27.151406pt;}
.ws9c{word-spacing:-26.561620pt;}
.wseb{word-spacing:-22.896643pt;}
.ws1a8{word-spacing:-22.896488pt;}
.wsf9{word-spacing:-20.817988pt;}
.ws1ad{word-spacing:-19.600152pt;}
.ws1a7{word-spacing:-19.026302pt;}
.ws183{word-spacing:-17.809637pt;}
.ws1b6{word-spacing:-17.374891pt;}
.wsc8{word-spacing:-17.343010pt;}
.wsc4{word-spacing:-17.311130pt;}
.ws14a{word-spacing:-17.247369pt;}
.ws81{word-spacing:-17.183607pt;}
.ws184{word-spacing:-17.140944pt;}
.ws80{word-spacing:-17.119846pt;}
.ws89{word-spacing:-17.056085pt;}
.ws117{word-spacing:-16.992324pt;}
.ws86{word-spacing:-16.864802pt;}
.ws94{word-spacing:-16.801041pt;}
.ws1c9{word-spacing:-16.737280pt;}
.ws8f{word-spacing:-16.609758pt;}
.ws191{word-spacing:-16.572692pt;}
.ws1d9{word-spacing:-16.482236pt;}
.ws8d{word-spacing:-16.480876pt;}
.wsfc{word-spacing:-16.354714pt;}
.wsd6{word-spacing:-16.290953pt;}
.ws13c{word-spacing:-16.284576pt;}
.ws19f{word-spacing:-16.227191pt;}
.ws18d{word-spacing:-16.099669pt;}
.ws1f{word-spacing:-16.069832pt;}
.ws40{word-spacing:-16.035908pt;}
.ws14c{word-spacing:-15.972147pt;}
.ws14b{word-spacing:-15.870129pt;}
.wsa8{word-spacing:-15.844625pt;}
.ws113{word-spacing:-15.780864pt;}
.ws12a{word-spacing:-15.717103pt;}
.ws25{word-spacing:-15.653342pt;}
.ws64{word-spacing:-15.525820pt;}
.ws73{word-spacing:-15.462059pt;}
.ws172{word-spacing:-15.398298pt;}
.wsd7{word-spacing:-15.334537pt;}
.ws188{word-spacing:-15.270775pt;}
.ws5f{word-spacing:-15.207014pt;}
.ws1da{word-spacing:-15.168758pt;}
.wsc1{word-spacing:-15.143253pt;}
.wscc{word-spacing:-15.079492pt;}
.ws139{word-spacing:-15.020769pt;}
.wsb3{word-spacing:-15.015731pt;}
.ws109{word-spacing:-14.888209pt;}
.ws93{word-spacing:-14.824448pt;}
.wsec{word-spacing:-14.780737pt;}
.wsee{word-spacing:-14.776620pt;}
.wsb9{word-spacing:-14.760687pt;}
.ws1a5{word-spacing:-14.754311pt;}
.ws83{word-spacing:-14.696926pt;}
.ws17f{word-spacing:-14.633165pt;}
.ws118{word-spacing:-14.569404pt;}
.wsa1{word-spacing:-14.505643pt;}
.wsab{word-spacing:-14.441882pt;}
.ws169{word-spacing:-14.403625pt;}
.ws3e{word-spacing:-14.378121pt;}
.ws5{word-spacing:-14.266194pt;}
.ws39{word-spacing:-14.250598pt;}
.ws74{word-spacing:-14.212342pt;}
.ws13d{word-spacing:-14.186837pt;}
.ws13e{word-spacing:-14.168620pt;}
.ws173{word-spacing:-14.148581pt;}
.wsdc{word-spacing:-14.123076pt;}
.wsbc{word-spacing:-14.070753pt;}
.ws3a{word-spacing:-14.059315pt;}
.ws1a4{word-spacing:-13.994240pt;}
.ws112{word-spacing:-13.931793pt;}
.ws175{word-spacing:-13.893536pt;}
.ws9f{word-spacing:-13.868032pt;}
.ws17b{word-spacing:-13.804271pt;}
.wsc2{word-spacing:-13.740510pt;}
.ws132{word-spacing:-13.676749pt;}
.ws178{word-spacing:-13.623158pt;}
.ws17a{word-spacing:-13.612988pt;}
.ws27{word-spacing:-13.549227pt;}
.ws5b{word-spacing:-13.485466pt;}
.ws3c{word-spacing:-13.480890pt;}
.wsce{word-spacing:-13.421705pt;}
.ws145{word-spacing:-13.357943pt;}
.ws79{word-spacing:-13.294182pt;}
.ws130{word-spacing:-13.230421pt;}
.ws5e{word-spacing:-13.166660pt;}
.ws1a0{word-spacing:-13.105411pt;}
.ws56{word-spacing:-13.102899pt;}
.wse2{word-spacing:-13.039138pt;}
.wse3{word-spacing:-12.975377pt;}
.wscb{word-spacing:-12.911616pt;}
.ws88{word-spacing:-12.847855pt;}
.ws15a{word-spacing:-12.845394pt;}
.ws159{word-spacing:-12.819287pt;}
.ws9d{word-spacing:-12.784094pt;}
.wsc9{word-spacing:-12.720333pt;}
.wse7{word-spacing:-12.676978pt;}
.wsf1{word-spacing:-12.592811pt;}
.ws161{word-spacing:-12.529050pt;}
.ws179{word-spacing:-12.490793pt;}
.wse9{word-spacing:-12.465289pt;}
.wsa{word-spacing:-12.404374pt;}
.wsa7{word-spacing:-12.401527pt;}
.ws19e{word-spacing:-12.337766pt;}
.ws13f{word-spacing:-12.331390pt;}
.wscf{word-spacing:-12.299510pt;}
.ws146{word-spacing:-12.274005pt;}
.ws185{word-spacing:-12.218052pt;}
.ws10c{word-spacing:-12.210244pt;}
.wsb8{word-spacing:-12.146483pt;}
.ws54{word-spacing:-12.018961pt;}
.ws126{word-spacing:-12.002940pt;}
.ws134{word-spacing:-11.955200pt;}
.ws13a{word-spacing:-11.948824pt;}
.ws114{word-spacing:-11.891439pt;}
.wsbd{word-spacing:-11.827678pt;}
.ws1ce{word-spacing:-11.789421pt;}
.wse6{word-spacing:-11.763917pt;}
.ws65{word-spacing:-11.700156pt;}
.ws190{word-spacing:-11.636395pt;}
.ws182{word-spacing:-11.572634pt;}
.ws9e{word-spacing:-11.508873pt;}
.ws160{word-spacing:-11.445111pt;}
.ws91{word-spacing:-11.317589pt;}
.wsdf{word-spacing:-11.253828pt;}
.ws1b5{word-spacing:-11.247452pt;}
.ws147{word-spacing:-11.215572pt;}
.ws95{word-spacing:-11.190067pt;}
.ws187{word-spacing:-11.189169pt;}
.ws11a{word-spacing:-11.126306pt;}
.ws84{word-spacing:-11.062545pt;}
.ws87{word-spacing:-10.998784pt;}
.ws18{word-spacing:-10.940263pt;}
.wsd0{word-spacing:-10.935023pt;}
.ws115{word-spacing:-10.871262pt;}
.wsad{word-spacing:-10.807501pt;}
.wsc7{word-spacing:-10.761143pt;}
.ws78{word-spacing:-10.743740pt;}
.ws18e{word-spacing:-10.704949pt;}
.wsb6{word-spacing:-10.679979pt;}
.ws17e{word-spacing:-10.616218pt;}
.ws1bc{word-spacing:-10.577961pt;}
.ws85{word-spacing:-10.552457pt;}
.wsb{word-spacing:-10.542554pt;}
.ws1dc{word-spacing:-10.514200pt;}
.ws3b{word-spacing:-10.488695pt;}
.ws1b3{word-spacing:-10.482319pt;}
.ws16c{word-spacing:-10.440267pt;}
.ws13b{word-spacing:-10.439062pt;}
.ws1b4{word-spacing:-10.430647pt;}
.ws38{word-spacing:-10.424934pt;}
.ws1d1{word-spacing:-10.416596pt;}
.ws1cb{word-spacing:-10.409760pt;}
.wsd1{word-spacing:-10.409221pt;}
.ws1ca{word-spacing:-10.392753pt;}
.ws1be{word-spacing:-10.386678pt;}
.ws2c{word-spacing:-10.361173pt;}
.ws1d0{word-spacing:-10.322917pt;}
.ws150{word-spacing:-10.297412pt;}
.ws10a{word-spacing:-10.270814pt;}
.ws10b{word-spacing:-10.233651pt;}
.ws17{word-spacing:-10.196389pt;}
.ws4e{word-spacing:-10.169890pt;}
.ws1af{word-spacing:-10.163514pt;}
.ws129{word-spacing:-10.106129pt;}
.wsb2{word-spacing:-10.042368pt;}
.ws121{word-spacing:-10.036987pt;}
.ws122{word-spacing:-9.993970pt;}
.ws124{word-spacing:-9.983854pt;}
.ws53{word-spacing:-9.978607pt;}
.ws153{word-spacing:-9.972231pt;}
.ws197{word-spacing:-9.923471pt;}
.wsc0{word-spacing:-9.914846pt;}
.ws18c{word-spacing:-9.912866pt;}
.wsc{word-spacing:-9.902554pt;}
.ws1db{word-spacing:-9.876589pt;}
.ws42{word-spacing:-9.851085pt;}
.ws7a{word-spacing:-9.787324pt;}
.ws59{word-spacing:-9.723563pt;}
.ws1d{word-spacing:-9.669826pt;}
.ws37{word-spacing:-9.659802pt;}
.ws1bf{word-spacing:-9.628220pt;}
.ws1dd{word-spacing:-9.621545pt;}
.ws23{word-spacing:-9.611644pt;}
.ws70{word-spacing:-9.596041pt;}
.ws15{word-spacing:-9.558783pt;}
.ws137{word-spacing:-9.557784pt;}
.ws8c{word-spacing:-9.532279pt;}
.ws170{word-spacing:-9.468518pt;}
.wsb4{word-spacing:-9.404757pt;}
.ws90{word-spacing:-9.340996pt;}
.ws157{word-spacing:-9.302740pt;}
.wsaa{word-spacing:-9.277235pt;}
.ws1a{word-spacing:-9.262553pt;}
.wsd8{word-spacing:-9.213474pt;}
.ws1a2{word-spacing:-9.149713pt;}
.ws1b2{word-spacing:-9.133070pt;}
.ws1a6{word-spacing:-9.102611pt;}
.ws131{word-spacing:-9.085952pt;}
.ws1a9{word-spacing:-9.079576pt;}
.ws43{word-spacing:-9.047695pt;}
.wsa0{word-spacing:-9.022191pt;}
.ws1c0{word-spacing:-8.991845pt;}
.ws125{word-spacing:-8.979623pt;}
.ws7{word-spacing:-8.971644pt;}
.wsb1{word-spacing:-8.958430pt;}
.ws3{word-spacing:-8.913462pt;}
.ws6a{word-spacing:-8.894669pt;}
.ws12{word-spacing:-8.868042pt;}
.wsbb{word-spacing:-8.830908pt;}
.ws7c{word-spacing:-8.767147pt;}
.ws10e{word-spacing:-8.764805pt;}
.ws10{word-spacing:-8.761775pt;}
.ws11d{word-spacing:-8.708641pt;}
.ws2f{word-spacing:-8.703386pt;}
.ws17c{word-spacing:-8.639625pt;}
.ws120{word-spacing:-8.602373pt;}
.wsf7{word-spacing:-8.575863pt;}
.ws8e{word-spacing:-8.512102pt;}
.ws1b9{word-spacing:-8.473846pt;}
.ws8a{word-spacing:-8.448341pt;}
.ws1c8{word-spacing:-8.410085pt;}
.ws82{word-spacing:-8.384580pt;}
.ws72{word-spacing:-8.320819pt;}
.ws1c1{word-spacing:-8.282563pt;}
.wsa3{word-spacing:-8.257058pt;}
.ws28{word-spacing:-8.193297pt;}
.ws60{word-spacing:-8.129536pt;}
.ws154{word-spacing:-8.129482pt;}
.ws45{word-spacing:-8.124168pt;}
.ws194{word-spacing:-8.065775pt;}
.ws163{word-spacing:-8.027518pt;}
.ws151{word-spacing:-8.002014pt;}
.ws16{word-spacing:-7.964767pt;}
.ws6e{word-spacing:-7.938253pt;}
.ws6c{word-spacing:-7.874492pt;}
.ws4d{word-spacing:-7.810731pt;}
.ws1c6{word-spacing:-7.772474pt;}
.ws92{word-spacing:-7.746970pt;}
.wsef{word-spacing:-7.683209pt;}
.ws55{word-spacing:-7.619447pt;}
.ws174{word-spacing:-7.581191pt;}
.ws16d{word-spacing:-7.555686pt;}
.ws140{word-spacing:-7.517430pt;}
.ws2b{word-spacing:-7.491925pt;}
.wsf3{word-spacing:-7.428164pt;}
.ws1d5{word-spacing:-7.369254pt;}
.wsfa{word-spacing:-7.364403pt;}
.ws77{word-spacing:-7.326147pt;}
.ws57{word-spacing:-7.300642pt;}
.wse1{word-spacing:-7.236881pt;}
.ws1c7{word-spacing:-7.198624pt;}
.ws4b{word-spacing:-7.183370pt;}
.ws6b{word-spacing:-7.173120pt;}
.wsd5{word-spacing:-7.109359pt;}
.ws135{word-spacing:-7.071102pt;}
.ws189{word-spacing:-7.046970pt;}
.wse0{word-spacing:-7.045598pt;}
.ws186{word-spacing:-7.017103pt;}
.wsac{word-spacing:-6.981837pt;}
.ws106{word-spacing:-6.918076pt;}
.wsff{word-spacing:-6.854315pt;}
.wsde{word-spacing:-6.790554pt;}
.ws11{word-spacing:-6.742688pt;}
.ws97{word-spacing:-6.726793pt;}
.ws195{word-spacing:-6.663031pt;}
.wse4{word-spacing:-6.535509pt;}
.ws19b{word-spacing:-6.471748pt;}
.ws127{word-spacing:-6.433524pt;}
.wsb5{word-spacing:-6.407987pt;}
.ws18a{word-spacing:-6.378278pt;}
.ws75{word-spacing:-6.344226pt;}
.ws1c3{word-spacing:-6.314453pt;}
.ws141{word-spacing:-6.306679pt;}
.wsfb{word-spacing:-6.280465pt;}
.ws148{word-spacing:-6.264483pt;}
.ws19a{word-spacing:-6.242208pt;}
.ws63{word-spacing:-6.216704pt;}
.ws13{word-spacing:-6.211349pt;}
.ws142{word-spacing:-6.178447pt;}
.ws5a{word-spacing:-6.152943pt;}
.wsa9{word-spacing:-6.089182pt;}
.ws7e{word-spacing:-6.025421pt;}
.ws16b{word-spacing:-5.961660pt;}
.ws15c{word-spacing:-5.955284pt;}
.ws19d{word-spacing:-5.946762pt;}
.ws168{word-spacing:-5.897899pt;}
.wsd{word-spacing:-5.888005pt;}
.ws76{word-spacing:-5.859642pt;}
.wsd3{word-spacing:-5.834138pt;}
.ws1d8{word-spacing:-5.801766pt;}
.ws149{word-spacing:-5.791591pt;}
.ws31{word-spacing:-5.770377pt;}
.wsba{word-spacing:-5.706615pt;}
.ws1d2{word-spacing:-5.690453pt;}
.ws8b{word-spacing:-5.579093pt;}
.wsc5{word-spacing:-5.515332pt;}
.ws47{word-spacing:-5.451571pt;}
.ws66{word-spacing:-5.387810pt;}
.ws52{word-spacing:-5.359812pt;}
.wsdd{word-spacing:-5.324049pt;}
.ws198{word-spacing:-5.317690pt;}
.ws16f{word-spacing:-5.283144pt;}
.wsa6{word-spacing:-5.260288pt;}
.wsa2{word-spacing:-5.201969pt;}
.ws71{word-spacing:-5.196527pt;}
.ws1d6{word-spacing:-5.132766pt;}
.wsf6{word-spacing:-5.069005pt;}
.ws30{word-spacing:-5.005244pt;}
.ws14{word-spacing:-4.989270pt;}
.ws20{word-spacing:-4.957095pt;}
.ws119{word-spacing:-4.941483pt;}
.ws11e{word-spacing:-4.939250pt;}
.ws176{word-spacing:-4.903226pt;}
.ws46{word-spacing:-4.877722pt;}
.ws32{word-spacing:-4.813961pt;}
.ws51{word-spacing:-4.750199pt;}
.ws107{word-spacing:-4.714479pt;}
.ws1d7{word-spacing:-4.711943pt;}
.ws50{word-spacing:-4.686438pt;}
.ws7d{word-spacing:-4.676719pt;}
.ws1ab{word-spacing:-4.648013pt;}
.ws1bb{word-spacing:-4.622677pt;}
.wse{word-spacing:-4.608004pt;}
.ws2a{word-spacing:-4.558916pt;}
.ws196{word-spacing:-4.526771pt;}
.ws177{word-spacing:-4.520660pt;}
.ws62{word-spacing:-4.495155pt;}
.wse5{word-spacing:-4.431394pt;}
.ws143{word-spacing:-4.329376pt;}
.ws1b{word-spacing:-4.317095pt;}
.ws7b{word-spacing:-4.303872pt;}
.ws1ae{word-spacing:-4.297496pt;}
.ws1ba{word-spacing:-4.265615pt;}
.ws1cc{word-spacing:-4.240111pt;}
.wsbf{word-spacing:-4.176350pt;}
.wsaf{word-spacing:-4.112589pt;}
.wsf4{word-spacing:-4.048828pt;}
.ws1c5{word-spacing:-3.986799pt;}
.ws12c{word-spacing:-3.985067pt;}
.ws1cd{word-spacing:-3.946810pt;}
.ws35{word-spacing:-3.921306pt;}
.ws26{word-spacing:-3.857545pt;}
.wsa4{word-spacing:-3.793783pt;}
.ws116{word-spacing:-3.730022pt;}
.wsb7{word-spacing:-3.666261pt;}
.ws111{word-spacing:-3.602500pt;}
.ws108{word-spacing:-3.541146pt;}
.ws14f{word-spacing:-3.479180pt;}
.ws48{word-spacing:-3.474978pt;}
.ws1a3{word-spacing:-3.348386pt;}
.wsdb{word-spacing:-3.347456pt;}
.ws6d{word-spacing:-3.295812pt;}
.ws102{word-spacing:-3.283695pt;}
.ws12f{word-spacing:-3.219934pt;}
.ws1bd{word-spacing:-3.181677pt;}
.wsf8{word-spacing:-3.156173pt;}
.ws1aa{word-spacing:-3.120164pt;}
.ws58{word-spacing:-3.092412pt;}
.ws36{word-spacing:-3.028651pt;}
.ws11f{word-spacing:-3.023317pt;}
.ws104{word-spacing:-2.973080pt;}
.wsb0{word-spacing:-2.964890pt;}
.ws33{word-spacing:-2.901129pt;}
.ws15f{word-spacing:-2.799111pt;}
.ws180{word-spacing:-2.773606pt;}
.ws1d4{word-spacing:-2.771934pt;}
.ws68{word-spacing:-2.709845pt;}
.ws181{word-spacing:-2.646084pt;}
.ws22{word-spacing:-2.629820pt;}
.ws1b7{word-spacing:-2.582323pt;}
.ws15d{word-spacing:-2.575947pt;}
.ws165{word-spacing:-2.518562pt;}
.wsae{word-spacing:-2.454801pt;}
.wsbe{word-spacing:-2.391040pt;}
.ws1b8{word-spacing:-2.352783pt;}
.ws5c{word-spacing:-2.263518pt;}
.ws29{word-spacing:-2.221607pt;}
.ws15e{word-spacing:-2.199757pt;}
.wsea{word-spacing:-2.135996pt;}
.ws1ac{word-spacing:-2.129620pt;}
.ws164{word-spacing:-2.008474pt;}
.ws192{word-spacing:-1.944713pt;}
.ws193{word-spacing:-1.880951pt;}
.ws128{word-spacing:-1.823812pt;}
.ws100{word-spacing:-1.817190pt;}
.ws96{word-spacing:-1.753429pt;}
.ws1c2{word-spacing:-1.715173pt;}
.wsfe{word-spacing:-1.689668pt;}
.ws61{word-spacing:-1.625907pt;}
.ws171{word-spacing:-1.523889pt;}
.wse8{word-spacing:-1.498385pt;}
.ws18b{word-spacing:-1.455386pt;}
.ws67{word-spacing:-1.434624pt;}
.ws17d{word-spacing:-1.370863pt;}
.ws158{word-spacing:-1.267511pt;}
.ws4a{word-spacing:-1.243341pt;}
.ws9{word-spacing:-1.233456pt;}
.ws19c{word-spacing:-1.179580pt;}
.ws6f{word-spacing:-1.052058pt;}
.ws1c4{word-spacing:-1.013801pt;}
.ws69{word-spacing:-0.988297pt;}
.ws34{word-spacing:-0.924535pt;}
.ws11b{word-spacing:-0.860774pt;}
.ws11c{word-spacing:-0.797013pt;}
.ws1cf{word-spacing:-0.733252pt;}
.ws5d{word-spacing:-0.605730pt;}
.ws12b{word-spacing:-0.541969pt;}
.wsd9{word-spacing:-0.419758pt;}
.ws7f{word-spacing:-0.350686pt;}
.ws1c{word-spacing:-0.302546pt;}
.ws166{word-spacing:-0.286925pt;}
.ws12e{word-spacing:-0.261146pt;}
.ws167{word-spacing:-0.223164pt;}
.ws2{word-spacing:-0.076513pt;}
.ws44{word-spacing:-0.063761pt;}
.ws1e{word-spacing:-0.058182pt;}
.ws199{word-spacing:-0.031881pt;}
.ws19{word-spacing:0.000000pt;}
.ws10d{word-spacing:0.003487pt;}
.ws152{word-spacing:0.006615pt;}
.ws15b{word-spacing:0.090001pt;}
.ws4{word-spacing:0.162909pt;}
.wsca{word-spacing:0.382566pt;}
.ws1d3{word-spacing:0.541969pt;}
.wsda{word-spacing:0.988297pt;}
.ws16a{word-spacing:2.072235pt;}
.wsa5{word-spacing:2.150540pt;}
.ws101{word-spacing:2.768188pt;}
.ws1b0{word-spacing:2.996770pt;}
.ws10f{word-spacing:3.188053pt;}
.wsd2{word-spacing:3.459487pt;}
.wsf0{word-spacing:4.973363pt;}
.ws1b1{word-spacing:5.000820pt;}
.ws110{word-spacing:5.123487pt;}
.wsf2{word-spacing:5.139487pt;}
.ws105{word-spacing:6.839402pt;}
.ws16e{word-spacing:9.117833pt;}
.ws138{word-spacing:10.424934pt;}
.ws103{word-spacing:13.007258pt;}
.ws14e{word-spacing:14.718081pt;}
.wsc3{word-spacing:15.071625pt;}
.ws6{word-spacing:15.814923pt;}
.wsed{word-spacing:16.374084pt;}
.ws3f{word-spacing:16.803785pt;}
.ws1a1{word-spacing:18.058056pt;}
.ws3d{word-spacing:18.060339pt;}
.ws18f{word-spacing:19.487389pt;}
.ws8{word-spacing:19.943949pt;}
.ws9b{word-spacing:20.596381pt;}
.wsfd{word-spacing:20.740722pt;}
.ws4f{word-spacing:20.954880pt;}
.ws2e{word-spacing:22.457559pt;}
.wsf5{word-spacing:23.396074pt;}
.wsd4{word-spacing:24.044406pt;}
.ws1{word-spacing:24.178129pt;}
.ws4c{word-spacing:24.584863pt;}
.ws21{word-spacing:24.901839pt;}
.wsf{word-spacing:25.192748pt;}
.ws12d{word-spacing:30.746056pt;}
.ws0{word-spacing:33.831400pt;}
.ws133{word-spacing:38.562496pt;}
.ws136{word-spacing:45.079564pt;}
.ws14d{word-spacing:93.244290pt;}
.ws98{word-spacing:108.167830pt;}
.ws155{word-spacing:156.011035pt;}
.ws156{word-spacing:201.838152pt;}
.ws99{word-spacing:204.132153pt;}
.ws162{word-spacing:330.575513pt;}
._2b{margin-left:-737.537127pt;}
._2f{margin-left:-25.777762pt;}
._3{margin-left:-8.485400pt;}
._2e{margin-left:-7.324874pt;}
._6{margin-left:-5.934332pt;}
._a{margin-left:-4.714564pt;}
._1d{margin-left:-3.787250pt;}
._0{margin-left:-2.755000pt;}
._5{margin-left:-1.410393pt;}
._7{width:1.570910pt;}
._1{width:2.865200pt;}
._8{width:3.888511pt;}
._36{width:5.093290pt;}
._27{width:6.869113pt;}
._1f{width:10.058192pt;}
._20{width:11.087366pt;}
._42{width:12.564371pt;}
._13{width:15.324810pt;}
._19{width:16.409710pt;}
._17{width:17.939976pt;}
._18{width:19.064559pt;}
._1c{width:20.100361pt;}
._25{width:21.027190pt;}
._3a{width:22.002121pt;}
._f{width:22.958521pt;}
._9{width:24.195449pt;}
._14{width:25.520483pt;}
._10{width:26.412222pt;}
._1b{width:27.412747pt;}
._c{width:28.403663pt;}
._d{width:29.753849pt;}
._12{width:30.952753pt;}
._33{width:31.872884pt;}
._15{width:32.799359pt;}
._24{width:33.984649pt;}
._e{width:34.984074pt;}
._38{width:35.961242pt;}
._23{width:36.925307pt;}
._29{width:38.558507pt;}
._26{width:39.842259pt;}
._32{width:41.133537pt;}
._11{width:42.102315pt;}
._22{width:43.137140pt;}
._31{width:44.039006pt;}
._2{width:45.292200pt;}
._21{width:46.311458pt;}
._1e{width:47.438234pt;}
._35{width:48.802187pt;}
._16{width:49.861154pt;}
._b{width:51.583614pt;}
._2c{width:52.587518pt;}
._34{width:53.758228pt;}
._1a{width:55.280845pt;}
._37{width:56.619827pt;}
._43{width:57.976803pt;}
._44{width:59.585472pt;}
._30{width:61.718482pt;}
._3d{width:63.764644pt;}
._4{width:76.945048pt;}
._2d{width:84.164373pt;}
._28{width:99.068889pt;}
._39{width:112.346999pt;}
._40{width:115.790097pt;}
._2a{width:162.690013pt;}
._41{width:178.212181pt;}
._3b{width:179.869969pt;}
._3f{width:197.212979pt;}
._3e{width:260.787316pt;}
._3c{width:347.775974pt;}
.fsa{font-size:23.111253pt;}
.fs8{font-size:31.777973pt;}
.fs9{font-size:34.666880pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:57.780800pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fsc{font-size:69.336960pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:11.122742pt;}
.y16e{bottom:19.781799pt;}
.y146{bottom:21.002577pt;}
.y16d{bottom:39.531095pt;}
.y147{bottom:53.603889pt;}
.y16f{bottom:55.127397pt;}
.y1e{bottom:56.149333pt;}
.y150{bottom:58.946561pt;}
.y156{bottom:59.764708pt;}
.y14e{bottom:62.720240pt;}
.y14d{bottom:70.870568pt;}
.y14c{bottom:71.856362pt;}
.y148{bottom:86.205201pt;}
.y1d{bottom:96.000000pt;}
.yaf{bottom:98.436000pt;}
.yfd{bottom:99.314667pt;}
.ye6{bottom:99.473333pt;}
.yc7{bottom:104.022667pt;}
.y16b{bottom:104.696000pt;}
.y6f{bottom:105.456000pt;}
.y1b5{bottom:106.122667pt;}
.y19e{bottom:106.784000pt;}
.ye4{bottom:108.650667pt;}
.y125{bottom:110.066667pt;}
.yfa{bottom:110.106667pt;}
.y1c{bottom:111.940000pt;}
.yd4{bottom:113.666667pt;}
.y59{bottom:115.254667pt;}
.y3f{bottom:117.798667pt;}
.y170{bottom:118.443598pt;}
.y149{bottom:118.806512pt;}
.y10b{bottom:121.204000pt;}
.y98{bottom:122.724000pt;}
.y143{bottom:125.390667pt;}
.yf9{bottom:126.046667pt;}
.y188{bottom:127.122667pt;}
.y1b{bottom:127.880000pt;}
.yae{bottom:130.313333pt;}
.y155{bottom:130.472956pt;}
.yfc{bottom:131.192000pt;}
.ye5{bottom:131.350667pt;}
.y124{bottom:133.849333pt;}
.yc6{bottom:135.900000pt;}
.y16a{bottom:136.573333pt;}
.y6e{bottom:137.333333pt;}
.y1b4{bottom:138.000000pt;}
.y3e{bottom:138.560000pt;}
.y19d{bottom:138.661333pt;}
.ye3{bottom:140.528000pt;}
.yf8{bottom:141.986667pt;}
.y154{bottom:142.130145pt;}
.y1a{bottom:143.820000pt;}
.y95{bottom:144.633333pt;}
.yd3{bottom:145.544000pt;}
.y58{bottom:147.132000pt;}
.y14a{bottom:151.407824pt;}
.y153{bottom:153.787335pt;}
.y97{bottom:154.601333pt;}
.y142{bottom:157.268000pt;}
.yf7{bottom:157.926667pt;}
.y187{bottom:159.000000pt;}
.y19{bottom:159.761333pt;}
.yad{bottom:162.190667pt;}
.yfb{bottom:163.069333pt;}
.y3d{bottom:163.228000pt;}
.y152{bottom:165.444525pt;}
.y123{bottom:165.725333pt;}
.y10a{bottom:166.364000pt;}
.yc5{bottom:167.777333pt;}
.y169{bottom:168.450667pt;}
.y6d{bottom:169.210667pt;}
.y1b3{bottom:169.877333pt;}
.y19c{bottom:170.538667pt;}
.ye2{bottom:172.405333pt;}
.yf6{bottom:173.866667pt;}
.y18{bottom:175.701333pt;}
.y94{bottom:176.510667pt;}
.y151{bottom:177.259702pt;}
.yd2{bottom:177.420000pt;}
.y57{bottom:179.009333pt;}
.y171{bottom:181.759799pt;}
.y14b{bottom:184.009136pt;}
.y1a0{bottom:186.478667pt;}
.y175{bottom:186.637852pt;}
.y141{bottom:189.144000pt;}
.yf5{bottom:189.808000pt;}
.y186{bottom:190.877333pt;}
.y14f{bottom:191.361178pt;}
.y17{bottom:191.641333pt;}
.yac{bottom:194.068000pt;}
.y3c{bottom:195.105333pt;}
.y122{bottom:197.602667pt;}
.yb1{bottom:198.220000pt;}
.y109{bottom:198.241333pt;}
.yc4{bottom:199.654667pt;}
.y168{bottom:200.326667pt;}
.y96{bottom:202.260000pt;}
.y19b{bottom:202.416000pt;}
.ye1{bottom:204.282667pt;}
.yf4{bottom:205.748000pt;}
.y16{bottom:207.581333pt;}
.y93{bottom:208.388000pt;}
.yd1{bottom:209.297333pt;}
.y56{bottom:210.886667pt;}
.y1b2{bottom:212.046667pt;}
.y6c{bottom:218.356000pt;}
.yb0{bottom:218.981333pt;}
.yf3{bottom:221.688000pt;}
.y185{bottom:222.753333pt;}
.y15{bottom:223.521333pt;}
.yab{bottom:225.945333pt;}
.y3b{bottom:226.982667pt;}
.y121{bottom:229.480000pt;}
.y140{bottom:230.290667pt;}
.yc3{bottom:231.532000pt;}
.y167{bottom:232.204000pt;}
.y19a{bottom:234.293333pt;}
.ye0{bottom:236.158667pt;}
.y14{bottom:239.462667pt;}
.y92{bottom:240.264000pt;}
.yd0{bottom:241.174667pt;}
.yf2{bottom:242.448000pt;}
.y55{bottom:242.764000pt;}
.y108{bottom:243.401333pt;}
.y172{bottom:245.075999pt;}
.y6b{bottom:250.233333pt;}
.y184{bottom:254.630667pt;}
.y13{bottom:255.402667pt;}
.yaa{bottom:257.821333pt;}
.y3a{bottom:258.858667pt;}
.y120{bottom:261.357333pt;}
.yc2{bottom:263.408000pt;}
.y166{bottom:264.081333pt;}
.y199{bottom:266.169333pt;}
.yf1{bottom:266.230667pt;}
.ydf{bottom:268.036000pt;}
.y91{bottom:272.141333pt;}
.ycf{bottom:273.052000pt;}
.y1b1{bottom:273.917333pt;}
.y54{bottom:274.640000pt;}
.y13f{bottom:275.432000pt;}
.y12{bottom:276.162667pt;}
.y6a{bottom:282.110667pt;}
.y183{bottom:286.508000pt;}
.y107{bottom:288.562667pt;}
.ya9{bottom:289.698667pt;}
.y39{bottom:290.736000pt;}
.y11f{bottom:293.234667pt;}
.yc1{bottom:295.285333pt;}
.y165{bottom:295.958667pt;}
.y11{bottom:296.313333pt;}
.y198{bottom:298.046667pt;}
.yf0{bottom:298.108000pt;}
.yde{bottom:299.913333pt;}
.y90{bottom:304.018667pt;}
.yce{bottom:304.929333pt;}
.y1b0{bottom:305.794667pt;}
.y53{bottom:306.517333pt;}
.y13e{bottom:307.309333pt;}
.y173{bottom:308.392200pt;}
.y179{bottom:310.835425pt;}
.y69{bottom:313.986667pt;}
.y182{bottom:318.385333pt;}
.y106{bottom:320.440000pt;}
.ya8{bottom:321.576000pt;}
.y38{bottom:322.613333pt;}
.y11e{bottom:325.110667pt;}
.y10{bottom:326.212000pt;}
.yc0{bottom:327.162667pt;}
.y164{bottom:327.836000pt;}
.y197{bottom:329.924000pt;}
.yef{bottom:329.985333pt;}
.ydd{bottom:331.790667pt;}
.y1b7{bottom:331.868000pt;}
.y178{bottom:332.029242pt;}
.y8f{bottom:335.896000pt;}
.ycd{bottom:336.806667pt;}
.y1af{bottom:337.672000pt;}
.y52{bottom:338.394667pt;}
.y13d{bottom:339.186667pt;}
.y68{bottom:345.864000pt;}
.y181{bottom:350.262667pt;}
.y105{bottom:352.316000pt;}
.y177{bottom:353.223059pt;}
.ya7{bottom:353.453333pt;}
.y37{bottom:354.490667pt;}
.yf{bottom:356.110667pt;}
.y11d{bottom:356.988000pt;}
.y163{bottom:359.713333pt;}
.y196{bottom:361.801333pt;}
.yee{bottom:361.862667pt;}
.ydc{bottom:363.668000pt;}
.y8e{bottom:367.773333pt;}
.y1ae{bottom:369.549333pt;}
.y51{bottom:370.272000pt;}
.y13c{bottom:371.064000pt;}
.y174{bottom:371.708401pt;}
.ybf{bottom:374.821333pt;}
.y67{bottom:377.741333pt;}
.ycc{bottom:382.412000pt;}
.y104{bottom:384.193333pt;}
.ya6{bottom:385.330667pt;}
.y176{bottom:385.860182pt;}
.ye{bottom:386.008000pt;}
.y36{bottom:386.368000pt;}
.y11c{bottom:388.865333pt;}
.y162{bottom:391.589333pt;}
.y195{bottom:393.678667pt;}
.yed{bottom:393.740000pt;}
.ydb{bottom:395.545333pt;}
.y180{bottom:395.868000pt;}
.y8d{bottom:399.650667pt;}
.ycb{bottom:401.673333pt;}
.y50{bottom:402.149333pt;}
.y13b{bottom:402.940000pt;}
.y66{bottom:409.618667pt;}
.y1ad{bottom:411.718667pt;}
.y17f{bottom:415.129333pt;}
.yd{bottom:415.906667pt;}
.y103{bottom:416.070667pt;}
.ya5{bottom:417.206667pt;}
.y35{bottom:418.245333pt;}
.y11b{bottom:420.742667pt;}
.yca{bottom:420.934667pt;}
.y194{bottom:425.556000pt;}
.yec{bottom:425.617333pt;}
.y8c{bottom:431.526667pt;}
.y4f{bottom:434.026667pt;}
.y17e{bottom:434.390667pt;}
.y13a{bottom:434.817333pt;}
.y161{bottom:436.750667pt;}
.yc9{bottom:440.196000pt;}
.yda{bottom:441.150667pt;}
.y65{bottom:441.496000pt;}
.yc{bottom:445.805333pt;}
.ybe{bottom:447.201333pt;}
.y102{bottom:447.948000pt;}
.ya4{bottom:449.084000pt;}
.y34{bottom:450.121333pt;}
.y11a{bottom:452.620000pt;}
.y17d{bottom:453.652000pt;}
.y19f{bottom:457.277333pt;}
.y193{bottom:457.432000pt;}
.yeb{bottom:457.493333pt;}
.yc8{bottom:459.456000pt;}
.yd9{bottom:460.412000pt;}
.y8b{bottom:463.404000pt;}
.y4e{bottom:465.902667pt;}
.y139{bottom:466.694667pt;}
.y160{bottom:468.628000pt;}
.y17c{bottom:472.913333pt;}
.y64{bottom:473.373333pt;}
.y1ac{bottom:473.589333pt;}
.yb{bottom:475.704000pt;}
.ybd{bottom:479.078667pt;}
.yd8{bottom:479.673333pt;}
.ya3{bottom:480.961333pt;}
.y33{bottom:481.998667pt;}
.y119{bottom:484.497333pt;}
.y192{bottom:489.309333pt;}
.yea{bottom:489.370667pt;}
.y17b{bottom:492.173333pt;}
.y101{bottom:492.537333pt;}
.y8a{bottom:495.281333pt;}
.y4d{bottom:497.780000pt;}
.y138{bottom:498.572000pt;}
.yd7{bottom:498.934667pt;}
.y15f{bottom:500.505333pt;}
.y63{bottom:505.249333pt;}
.y1ab{bottom:505.466667pt;}
.ya{bottom:505.602667pt;}
.ybc{bottom:510.956000pt;}
.y17a{bottom:511.434667pt;}
.y32{bottom:513.876000pt;}
.y118{bottom:516.373333pt;}
.yd6{bottom:518.194667pt;}
.y191{bottom:521.186667pt;}
.ye9{bottom:521.248000pt;}
.ya2{bottom:523.130667pt;}
.y100{bottom:524.414667pt;}
.y4c{bottom:529.657333pt;}
.y137{bottom:530.449333pt;}
.y9{bottom:535.501333pt;}
.y62{bottom:537.126667pt;}
.y1aa{bottom:537.344000pt;}
.yd5{bottom:537.456000pt;}
.y89{bottom:540.313333pt;}
.ybb{bottom:542.833333pt;}
.y16c{bottom:543.980000pt;}
.y15e{bottom:545.665333pt;}
.y31{bottom:545.753333pt;}
.y117{bottom:548.250667pt;}
.y190{bottom:553.064000pt;}
.ye8{bottom:553.125333pt;}
.y4b{bottom:561.534667pt;}
.y136{bottom:562.325333pt;}
.y8{bottom:565.400000pt;}
.y61{bottom:569.004000pt;}
.y1a9{bottom:569.221333pt;}
.y88{bottom:572.190667pt;}
.yba{bottom:574.710667pt;}
.y15d{bottom:577.542667pt;}
.y30{bottom:577.630667pt;}
.y116{bottom:580.128000pt;}
.y18f{bottom:584.941333pt;}
.ya1{bottom:585.002667pt;}
.y4a{bottom:593.412000pt;}
.y135{bottom:594.202667pt;}
.y60{bottom:600.881333pt;}
.y1a8{bottom:601.097333pt;}
.y7{bottom:602.122667pt;}
.y87{bottom:604.068000pt;}
.yb9{bottom:606.586667pt;}
.y2f{bottom:609.508000pt;}
.y115{bottom:612.005333pt;}
.ya0{bottom:616.880000pt;}
.y15c{bottom:623.148000pt;}
.y49{bottom:625.289333pt;}
.y134{bottom:626.080000pt;}
.ye7{bottom:627.172000pt;}
.y18e{bottom:632.600000pt;}
.y5f{bottom:632.758667pt;}
.y1a7{bottom:632.974667pt;}
.y86{bottom:635.945333pt;}
.yb8{bottom:638.464000pt;}
.y2e{bottom:641.384000pt;}
.y15b{bottom:642.409333pt;}
.y114{bottom:643.882667pt;}
.y1a1{bottom:648.540000pt;}
.y9f{bottom:648.756000pt;}
.y48{bottom:657.165333pt;}
.y1b6{bottom:659.049333pt;}
.y15a{bottom:661.670667pt;}
.y5e{bottom:664.634667pt;}
.y1a6{bottom:664.852000pt;}
.y85{bottom:667.822667pt;}
.y133{bottom:668.493333pt;}
.y2d{bottom:673.261333pt;}
.y113{bottom:675.760000pt;}
.y9e{bottom:680.633333pt;}
.y159{bottom:680.932000pt;}
.y132{bottom:684.433333pt;}
.y6{bottom:685.693333pt;}
.y47{bottom:689.042667pt;}
.y5d{bottom:696.512000pt;}
.y1a5{bottom:696.729333pt;}
.y158{bottom:700.193333pt;}
.y131{bottom:700.374667pt;}
.y18d{bottom:704.980000pt;}
.y2c{bottom:705.138667pt;}
.y112{bottom:707.636000pt;}
.y9d{bottom:712.510667pt;}
.y84{bottom:713.172000pt;}
.y130{bottom:716.314667pt;}
.y157{bottom:719.453333pt;}
.y46{bottom:720.920000pt;}
.y5c{bottom:728.389333pt;}
.y1a4{bottom:728.606667pt;}
.y83{bottom:732.433333pt;}
.y5{bottom:735.692000pt;}
.y18c{bottom:736.857333pt;}
.y2b{bottom:737.016000pt;}
.y111{bottom:739.513333pt;}
.y12f{bottom:741.358667pt;}
.yb7{bottom:742.505333pt;}
.y9c{bottom:744.388000pt;}
.y25{bottom:748.728000pt;}
.y144{bottom:751.998667pt;}
.y45{bottom:752.797333pt;}
.y4{bottom:759.602667pt;}
.y5b{bottom:760.266667pt;}
.y1a3{bottom:760.484000pt;}
.y12e{bottom:760.620000pt;}
.y18b{bottom:768.734667pt;}
.y2a{bottom:768.893333pt;}
.y110{bottom:771.390667pt;}
.y78{bottom:773.814667pt;}
.yb6{bottom:774.382667pt;}
.y9b{bottom:776.265333pt;}
.y24{bottom:778.626667pt;}
.y12d{bottom:779.881333pt;}
.y44{bottom:784.674667pt;}
.yff{bottom:792.144000pt;}
.y77{bottom:793.228000pt;}
.y7d{bottom:795.198667pt;}
.y3{bottom:799.117333pt;}
.y18a{bottom:800.610667pt;}
.y29{bottom:800.769333pt;}
.y1a2{bottom:802.653333pt;}
.y10f{bottom:803.268000pt;}
.yb5{bottom:806.258667pt;}
.y12c{bottom:806.944000pt;}
.y5a{bottom:807.925333pt;}
.y9a{bottom:808.141333pt;}
.y23{bottom:808.525333pt;}
.y7c{bottom:811.138667pt;}
.y76{bottom:815.242667pt;}
.y43{bottom:816.552000pt;}
.y74{bottom:816.792000pt;}
.y12b{bottom:826.205333pt;}
.y7b{bottom:827.080000pt;}
.y189{bottom:832.488000pt;}
.y28{bottom:832.646667pt;}
.y75{bottom:834.504000pt;}
.y10e{bottom:835.145333pt;}
.y73{bottom:836.053333pt;}
.yb4{bottom:838.136000pt;}
.yfe{bottom:839.802667pt;}
.y7a{bottom:843.020000pt;}
.y12a{bottom:845.466667pt;}
.y2{bottom:846.433333pt;}
.y42{bottom:848.428000pt;}
.y99{bottom:850.310667pt;}
.y22{bottom:854.364000pt;}
.y79{bottom:858.960000pt;}
.y82{bottom:861.940000pt;}
.y27{bottom:864.524000pt;}
.y10d{bottom:867.022667pt;}
.yb3{bottom:870.013333pt;}
.y129{bottom:872.712000pt;}
.y81{bottom:877.880000pt;}
.y1{bottom:879.642667pt;}
.y41{bottom:880.305333pt;}
.y21{bottom:884.262667pt;}
.y70{bottom:892.905333pt;}
.y80{bottom:893.820000pt;}
.y26{bottom:896.401333pt;}
.y128{bottom:897.216000pt;}
.y10c{bottom:898.898667pt;}
.yb2{bottom:901.890667pt;}
.y7f{bottom:909.760000pt;}
.y40{bottom:912.182667pt;}
.y20{bottom:914.161333pt;}
.y127{bottom:916.477333pt;}
.y71{bottom:921.904000pt;}
.y7e{bottom:925.700000pt;}
.y126{bottom:935.738667pt;}
.y72{bottom:943.893333pt;}
.y1f{bottom:944.060000pt;}
.h13{height:21.470354pt;}
.h6{height:25.105680pt;}
.h11{height:29.521737pt;}
.h12{height:32.205532pt;}
.h7{height:39.903534pt;}
.h4{height:40.785489pt;}
.h5{height:43.694582pt;}
.h17{height:47.884561pt;}
.h8{height:47.948322pt;}
.hc{height:50.809249pt;}
.ha{height:51.870867pt;}
.he{height:51.876201pt;}
.h15{height:53.678363pt;}
.hd{height:53.712173pt;}
.hb{height:54.145655pt;}
.h3{height:54.553817pt;}
.h16{height:64.414036pt;}
.h9{height:64.454458pt;}
.hf{height:66.474398pt;}
.h2{height:67.668867pt;}
.h1{height:77.360400pt;}
.h10{height:208.001280pt;}
.h14{height:416.021760pt;}
.h0{height:1056.000000pt;}
.w1{width:624.003840pt;}
.w2{width:624.032640pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:16.885659pt;}
.x28{left:21.580133pt;}
.x3a{left:27.063985pt;}
.x39{left:35.843958pt;}
.x37{left:57.444046pt;}
.x27{left:59.737845pt;}
.x2a{left:60.888894pt;}
.x2c{left:74.307658pt;}
.xb{left:96.000000pt;}
.x1{left:107.633333pt;}
.xc{left:109.280000pt;}
.x26{left:111.745333pt;}
.xa{left:113.946667pt;}
.xf{left:115.078667pt;}
.x2b{left:118.172790pt;}
.xe{left:119.412000pt;}
.x24{left:130.756000pt;}
.x9{left:135.020000pt;}
.x22{left:144.026667pt;}
.x8{left:156.714667pt;}
.x1c{left:163.904000pt;}
.x20{left:165.305333pt;}
.x25{left:170.762667pt;}
.x1e{left:171.761333pt;}
.x2{left:179.408000pt;}
.x1d{left:189.136000pt;}
.x1f{left:195.001333pt;}
.x4{left:228.290667pt;}
.x2f{left:235.614156pt;}
.x2e{left:240.308630pt;}
.x10{left:253.352000pt;}
.x18{left:262.756000pt;}
.x17{left:266.225333pt;}
.x30{left:267.290898pt;}
.x2d{left:284.080164pt;}
.x5{left:304.272000pt;}
.x38{left:311.440769pt;}
.x1a{left:321.226667pt;}
.x11{left:323.385333pt;}
.x23{left:336.924000pt;}
.x3{left:337.897333pt;}
.x6{left:339.978667pt;}
.x12{left:345.669333pt;}
.x16{left:367.385333pt;}
.x7{left:376.237333pt;}
.x15{left:387.194667pt;}
.x21{left:400.197333pt;}
.xd{left:404.098667pt;}
.x31{left:418.877049pt;}
.x32{left:428.142991pt;}
.x19{left:441.149333pt;}
.x35{left:477.027076pt;}
.x3b{left:480.346236pt;}
.x34{left:481.721549pt;}
.x14{left:486.926667pt;}
.x13{left:506.821333pt;}
.x33{left:519.879262pt;}
.x36{left:537.558034pt;}
.x1b{left:581.858667pt;}
}




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