
    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_ade99fcc4b8be345c57632fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_1d6e7e318e1eed98940c24bb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_85f52edf85bd982e120da8a4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_681fb69ef3f00fab6daded7f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_58c9d9a6c3aea0549271262c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_1efddbdd3da1b934c0f1a4a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_2ec36e0078adf37422b302cb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.954000;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_6bb84ad1642f9d7101e66e6c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_ee6f124ee1c1ab60002d0143.woff')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_d1140ed7b838a0e5c006092a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.444000;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_2d642c3609e51ad0f6f6fb2e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_83e56613651ce3a610efe9a4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c151c7731d0dd26dd630307f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_e3da07b13c33ff9be8de7625.woff')format("woff");}.ffe{font-family:ffe;line-height:0.948000;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_c9a82065e9ccd84642a9f8ef.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2c7137fa88ab47d109d62426.woff')format("woff");}.ff10{font-family:ff10;line-height:0.522000;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_959f2f1582106a007190995e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.429000;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_6cc8a1ee0dba8cf172a04aa2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.924000;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_89f04b6946b19b625706473a.woff')format("woff");}.ff13{font-family:ff13;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7a0122bff1d0c75e37028ff6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.655000;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_3ea8b9672228e9dee096e4b1.woff')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_e4d6aeaa7e6fe26b0d1ed506.woff')format("woff");}.ff16{font-family:ff16;line-height:0.778000;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_1fa0e3b316f16b0429e44919.woff')format("woff");}.ff17{font-family:ff17;line-height:0.761000;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_e44dc48cf6088e454be20e48.woff')format("woff");}.ff18{font-family:ff18;line-height:0.525000;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_b163afdef197d815e3097318.woff')format("woff");}.ff19{font-family:ff19;line-height:0.052000;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_6e4aeae7f1a5bc157cd02f39.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.451000;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_390be51b2a8f2644d4692bd5.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.714000;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;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-28.560000px;}
.v2{vertical-align:-26.898000px;}
.v3{vertical-align:-20.922000px;}
.v10{vertical-align:-17.704200px;}
.v4{vertical-align:-13.446000px;}
.vb{vertical-align:-9.000000px;}
.v12{vertical-align:-7.044000px;}
.vc{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.590000px;}
.va{vertical-align:14.832000px;}
.v7{vertical-align:17.514000px;}
.v9{vertical-align:21.774000px;}
.v11{vertical-align:22.944000px;}
.v6{vertical-align:25.668000px;}
.v1{vertical-align:26.898000px;}
.v8{vertical-align:39.288000px;}
.ve{vertical-align:40.590000px;}
.vf{vertical-align:44.550000px;}
.vd{vertical-align:95.934000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000150px;}
.ls3d{letter-spacing:0.000167px;}
.lsc{letter-spacing:0.000200px;}
.ls5e{letter-spacing:0.000233px;}
.ls5b{letter-spacing:0.000262px;}
.ls36{letter-spacing:0.000266px;}
.ls2{letter-spacing:0.000300px;}
.ls4e{letter-spacing:0.000334px;}
.ls6f{letter-spacing:0.000362px;}
.ls5{letter-spacing:0.000367px;}
.lse{letter-spacing:0.000433px;}
.ls38{letter-spacing:0.000467px;}
.ls15{letter-spacing:0.000500px;}
.ls4{letter-spacing:0.000600px;}
.ls6a{letter-spacing:0.000684px;}
.ls69{letter-spacing:0.001468px;}
.ls68{letter-spacing:0.005217px;}
.lsa9{letter-spacing:0.006500px;}
.ls0{letter-spacing:0.054000px;}
.ls59{letter-spacing:1.380367px;}
.ls48{letter-spacing:1.458300px;}
.ls35{letter-spacing:1.620300px;}
.lsbe{letter-spacing:2.148343px;}
.lsbb{letter-spacing:2.154343px;}
.ls47{letter-spacing:2.987751px;}
.ls3a{letter-spacing:2.988000px;}
.ls16{letter-spacing:2.988526px;}
.ls4f{letter-spacing:2.988684px;}
.ls52{letter-spacing:2.989368px;}
.ls40{letter-spacing:2.993751px;}
.ls50{letter-spacing:2.994000px;}
.ls25{letter-spacing:3.060200px;}
.ls8d{letter-spacing:3.168339px;}
.lsac{letter-spacing:4.620334px;}
.ls6b{letter-spacing:5.461468px;}
.ls51{letter-spacing:6.480167px;}
.ls76{letter-spacing:6.660393px;}
.ls5f{letter-spacing:6.666167px;}
.ls7b{letter-spacing:6.666393px;}
.ls6c{letter-spacing:7.170300px;}
.ls1b{letter-spacing:7.667316px;}
.ls72{letter-spacing:7.884167px;}
.ls66{letter-spacing:8.334282px;}
.ls49{letter-spacing:8.760167px;}
.ls96{letter-spacing:9.242880px;}
.ls99{letter-spacing:9.246433px;}
.ls92{letter-spacing:9.248880px;}
.ls95{letter-spacing:9.252433px;}
.ls14{letter-spacing:9.996467px;}
.ls10{letter-spacing:10.002467px;}
.lsaf{letter-spacing:10.176467px;}
.ls2e{letter-spacing:11.172467px;}
.ls2c{letter-spacing:11.826467px;}
.ls23{letter-spacing:12.228300px;}
.lsa0{letter-spacing:12.233361px;}
.ls9b{letter-spacing:12.234578px;}
.ls91{letter-spacing:12.239361px;}
.ls9f{letter-spacing:12.241800px;}
.ls94{letter-spacing:12.329417px;}
.ls98{letter-spacing:12.330433px;}
.ls9e{letter-spacing:12.335417px;}
.ls9a{letter-spacing:12.336433px;}
.lsb5{letter-spacing:12.678467px;}
.lsaa{letter-spacing:12.846393px;}
.lsab{letter-spacing:12.852467px;}
.ls5d{letter-spacing:13.332467px;}
.ls11{letter-spacing:13.332500px;}
.ls12{letter-spacing:13.332600px;}
.ls6{letter-spacing:13.446300px;}
.ls5a{letter-spacing:13.530000px;}
.ls2a{letter-spacing:13.752233px;}
.lsb4{letter-spacing:13.758167px;}
.ls2b{letter-spacing:13.758467px;}
.lsba{letter-spacing:13.788467px;}
.lsd{letter-spacing:13.854150px;}
.lsa1{letter-spacing:13.855046px;}
.ls22{letter-spacing:14.190300px;}
.ls32{letter-spacing:14.386632px;}
.ls79{letter-spacing:14.722632px;}
.lsae{letter-spacing:14.802334px;}
.lsb2{letter-spacing:14.820393px;}
.lsb3{letter-spacing:14.820467px;}
.ls58{letter-spacing:14.994150px;}
.ls73{letter-spacing:14.994467px;}
.ls1f{letter-spacing:15.000150px;}
.ls7{letter-spacing:15.000300px;}
.ls65{letter-spacing:15.000367px;}
.ls8{letter-spacing:15.000467px;}
.lsbf{letter-spacing:15.000600px;}
.lsb9{letter-spacing:15.240467px;}
.lsb8{letter-spacing:15.246300px;}
.ls9d{letter-spacing:15.319800px;}
.ls9c{letter-spacing:15.323361px;}
.ls93{letter-spacing:15.325800px;}
.ls7a{letter-spacing:15.329751px;}
.ls64{letter-spacing:15.390282px;}
.ls24{letter-spacing:15.828300px;}
.lsa2{letter-spacing:16.128300px;}
.lsa3{letter-spacing:16.128467px;}
.ls29{letter-spacing:16.152000px;}
.ls28{letter-spacing:16.158000px;}
.ls60{letter-spacing:16.316736px;}
.ls5c{letter-spacing:16.321368px;}
.ls62{letter-spacing:16.322736px;}
.lsbc{letter-spacing:16.482367px;}
.lsbd{letter-spacing:16.482467px;}
.lsb6{letter-spacing:16.488483px;}
.ls2d{letter-spacing:16.488569px;}
.lsb7{letter-spacing:16.494483px;}
.ls39{letter-spacing:16.812467px;}
.ls4d{letter-spacing:16.914467px;}
.ls4c{letter-spacing:16.920367px;}
.ls89{letter-spacing:17.226467px;}
.ls7c{letter-spacing:17.243751px;}
.lsad{letter-spacing:17.472334px;}
.lsb1{letter-spacing:17.580467px;}
.ls20{letter-spacing:17.748300px;}
.ls7f{letter-spacing:17.957751px;}
.ls6e{letter-spacing:18.036367px;}
.ls3c{letter-spacing:18.156467px;}
.ls70{letter-spacing:18.179751px;}
.ls31{letter-spacing:18.204000px;}
.ls30{letter-spacing:18.208632px;}
.ls88{letter-spacing:18.306167px;}
.ls2f{letter-spacing:18.306467px;}
.lsb0{letter-spacing:18.672167px;}
.ls77{letter-spacing:18.791751px;}
.ls84{letter-spacing:19.211751px;}
.ls3b{letter-spacing:19.242167px;}
.ls57{letter-spacing:19.259751px;}
.lsb{letter-spacing:19.290150px;}
.ls37{letter-spacing:19.386467px;}
.ls82{letter-spacing:19.750632px;}
.ls8b{letter-spacing:19.891046px;}
.ls53{letter-spacing:19.920334px;}
.ls7e{letter-spacing:20.231751px;}
.ls74{letter-spacing:20.268367px;}
.ls75{letter-spacing:20.268467px;}
.lsa8{letter-spacing:20.844467px;}
.ls7d{letter-spacing:20.916393px;}
.ls21{letter-spacing:20.958300px;}
.ls34{letter-spacing:21.118632px;}
.ls33{letter-spacing:21.120000px;}
.ls80{letter-spacing:21.131751px;}
.ls8f{letter-spacing:21.558467px;}
.ls8c{letter-spacing:21.564467px;}
.ls85{letter-spacing:21.678300px;}
.ls18{letter-spacing:21.876500px;}
.ls56{letter-spacing:21.917751px;}
.ls13{letter-spacing:22.348632px;}
.lsa6{letter-spacing:22.392150px;}
.ls78{letter-spacing:22.470393px;}
.lsa5{letter-spacing:22.548467px;}
.ls83{letter-spacing:22.884393px;}
.ls86{letter-spacing:23.388467px;}
.ls46{letter-spacing:23.591751px;}
.lsa4{letter-spacing:23.634167px;}
.ls63{letter-spacing:23.797368px;}
.ls26{letter-spacing:24.054000px;}
.ls27{letter-spacing:24.060000px;}
.ls87{letter-spacing:24.474167px;}
.ls71{letter-spacing:24.497751px;}
.ls8e{letter-spacing:24.553368px;}
.ls81{letter-spacing:24.804393px;}
.lsa7{letter-spacing:25.470334px;}
.ls43{letter-spacing:26.304200px;}
.ls44{letter-spacing:26.304467px;}
.ls9{letter-spacing:26.898266px;}
.ls55{letter-spacing:27.336433px;}
.ls61{letter-spacing:27.480150px;}
.ls3e{letter-spacing:28.260200px;}
.ls3f{letter-spacing:28.260467px;}
.ls42{letter-spacing:28.266467px;}
.ls45{letter-spacing:29.298684px;}
.ls4b{letter-spacing:29.826367px;}
.lsa{letter-spacing:29.889442px;}
.ls54{letter-spacing:30.331368px;}
.ls41{letter-spacing:31.248684px;}
.ls4a{letter-spacing:31.452684px;}
.ls8a{letter-spacing:32.295326px;}
.ls19{letter-spacing:34.228632px;}
.ls1c{letter-spacing:34.367316px;}
.ls1a{letter-spacing:36.761316px;}
.lsf{letter-spacing:38.098632px;}
.ls1d{letter-spacing:38.764632px;}
.ls1e{letter-spacing:39.436632px;}
.ls17{letter-spacing:41.008632px;}
.ls67{letter-spacing:144.450600px;}
.ls90{letter-spacing:258.270300px;}
.ls6d{letter-spacing:294.840167px;}
.ls97{letter-spacing:323.851800px;}
.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;}
}
.ws42{word-spacing:-36.719633px;}
.ws6e{word-spacing:-33.047633px;}
.ws6{word-spacing:-32.111599px;}
.ws29{word-spacing:-29.999700px;}
.wsf{word-spacing:-26.999700px;}
.ws9{word-spacing:-23.999700px;}
.ws9b{word-spacing:-21.078000px;}
.ws5{word-spacing:-20.999700px;}
.ws12d{word-spacing:-20.279797px;}
.ws60{word-spacing:-19.979800px;}
.ws28{word-spacing:-19.919801px;}
.ws2a{word-spacing:-19.859801px;}
.ws11b{word-spacing:-19.822034px;}
.ws11c{word-spacing:-19.799802px;}
.ws144{word-spacing:-19.763780px;}
.ws135{word-spacing:-19.601782px;}
.ws14d{word-spacing:-19.599254px;}
.wse8{word-spacing:-19.559804px;}
.ws146{word-spacing:-19.551966px;}
.ws13e{word-spacing:-19.550583px;}
.ws141{word-spacing:-19.550533px;}
.ws133{word-spacing:-19.547783px;}
.ws138{word-spacing:-19.545966px;}
.ws140{word-spacing:-19.545616px;}
.ws30{word-spacing:-19.499805px;}
.ws2f{word-spacing:-19.439806px;}
.ws46{word-spacing:-19.379806px;}
.ws69{word-spacing:-19.259807px;}
.ws5c{word-spacing:-19.199808px;}
.ws41{word-spacing:-19.139809px;}
.ws43{word-spacing:-19.079809px;}
.ws127{word-spacing:-18.899811px;}
.ws71{word-spacing:-18.839812px;}
.ws12f{word-spacing:-18.779812px;}
.ws36{word-spacing:-18.719813px;}
.ws83{word-spacing:-18.659813px;}
.ws82{word-spacing:-18.599814px;}
.ws2d{word-spacing:-18.539815px;}
.ws2e{word-spacing:-18.479815px;}
.wsa5{word-spacing:-18.419816px;}
.ws2c{word-spacing:-18.359816px;}
.ws63{word-spacing:-18.239818px;}
.ws66{word-spacing:-18.179818px;}
.ws27{word-spacing:-18.119819px;}
.wseb{word-spacing:-18.059819px;}
.wsd6{word-spacing:-17.999820px;}
.ws31{word-spacing:-17.939821px;}
.wscf{word-spacing:-17.819822px;}
.ws4f{word-spacing:-17.759822px;}
.wse1{word-spacing:-17.699823px;}
.wse2{word-spacing:-17.639824px;}
.wsc0{word-spacing:-17.399826px;}
.wsc1{word-spacing:-17.339827px;}
.wsf9{word-spacing:-17.279827px;}
.ws3c{word-spacing:-17.159828px;}
.ws119{word-spacing:-17.151935px;}
.ws3b{word-spacing:-17.099829px;}
.ws62{word-spacing:-16.979830px;}
.ws65{word-spacing:-16.919831px;}
.ws4e{word-spacing:-16.859831px;}
.wsf5{word-spacing:-16.799832px;}
.wsb6{word-spacing:-16.739833px;}
.ws38{word-spacing:-16.679833px;}
.wsbd{word-spacing:-16.619834px;}
.ws4c{word-spacing:-16.559834px;}
.ws122{word-spacing:-16.499835px;}
.ws9d{word-spacing:-16.439836px;}
.ws11e{word-spacing:-16.379836px;}
.wsb9{word-spacing:-16.319837px;}
.ws37{word-spacing:-16.259837px;}
.ws32{word-spacing:-16.199838px;}
.ws33{word-spacing:-16.139839px;}
.wsde{word-spacing:-16.091821px;}
.ws2b{word-spacing:-16.079839px;}
.wsbb{word-spacing:-16.037822px;}
.ws6c{word-spacing:-16.019840px;}
.ws12a{word-spacing:-15.959840px;}
.ws4d{word-spacing:-15.839842px;}
.wse3{word-spacing:-15.779842px;}
.wse4{word-spacing:-15.742834px;}
.wsd1{word-spacing:-15.659843px;}
.wsf8{word-spacing:-15.599844px;}
.wsef{word-spacing:-15.419846px;}
.ws16{word-spacing:-15.407807px;}
.wsee{word-spacing:-15.359846px;}
.wsc8{word-spacing:-15.299847px;}
.wsc3{word-spacing:-15.239848px;}
.wsc9{word-spacing:-15.179848px;}
.ws11f{word-spacing:-15.178534px;}
.ws34{word-spacing:-15.119849px;}
.ws11{word-spacing:-15.059849px;}
.ws79{word-spacing:-15.004300px;}
.ws10{word-spacing:-14.999850px;}
.wsdd{word-spacing:-14.998300px;}
.ws96{word-spacing:-14.998000px;}
.ws123{word-spacing:-14.879851px;}
.ws40{word-spacing:-14.819852px;}
.wsca{word-spacing:-14.806834px;}
.ws85{word-spacing:-14.799900px;}
.ws7e{word-spacing:-14.776834px;}
.ws7d{word-spacing:-14.776433px;}
.ws105{word-spacing:-14.759852px;}
.ws125{word-spacing:-14.753200px;}
.ws7{word-spacing:-14.717866px;}
.wsbc{word-spacing:-14.699853px;}
.ws8{word-spacing:-14.651867px;}
.wsf3{word-spacing:-14.639854px;}
.wsdb{word-spacing:-14.579854px;}
.wsd2{word-spacing:-14.519855px;}
.ws19{word-spacing:-14.447819px;}
.ws50{word-spacing:-14.279857px;}
.ws51{word-spacing:-14.219858px;}
.ws134{word-spacing:-14.201842px;}
.wsdc{word-spacing:-14.194834px;}
.ws52{word-spacing:-14.159858px;}
.ws6b{word-spacing:-14.099859px;}
.ws9f{word-spacing:-14.039860px;}
.wsa7{word-spacing:-13.979860px;}
.ws48{word-spacing:-13.919861px;}
.ws137{word-spacing:-13.823846px;}
.ws5d{word-spacing:-13.799862px;}
.wsf6{word-spacing:-13.786834px;}
.wsb3{word-spacing:-13.739863px;}
.ws143{word-spacing:-13.715848px;}
.ws103{word-spacing:-13.679863px;}
.ws110{word-spacing:-13.661848px;}
.wsb8{word-spacing:-13.619864px;}
.wse0{word-spacing:-13.559864px;}
.ws139{word-spacing:-13.554422px;}
.wsb{word-spacing:-13.553849px;}
.ws13d{word-spacing:-13.551788px;}
.ws13f{word-spacing:-13.551094px;}
.ws14c{word-spacing:-13.505100px;}
.ws14a{word-spacing:-13.504800px;}
.ws149{word-spacing:-13.504349px;}
.ws14b{word-spacing:-13.504200px;}
.ws148{word-spacing:-13.503974px;}
.wsc{word-spacing:-13.503900px;}
.ws14e{word-spacing:-13.503767px;}
.ws147{word-spacing:-13.503634px;}
.ws13a{word-spacing:-13.501618px;}
.ws14f{word-spacing:-13.501368px;}
.wsd{word-spacing:-13.500332px;}
.ws1e{word-spacing:-13.499865px;}
.wsa{word-spacing:-13.499850px;}
.ws136{word-spacing:-13.499100px;}
.wse{word-spacing:-13.498834px;}
.ws145{word-spacing:-13.498800px;}
.ws142{word-spacing:-13.498767px;}
.ws13c{word-spacing:-13.497634px;}
.ws3f{word-spacing:-13.439866px;}
.ws53{word-spacing:-13.379866px;}
.ws81{word-spacing:-13.319867px;}
.wsc4{word-spacing:-13.259867px;}
.ws8f{word-spacing:-13.199868px;}
.ws5f{word-spacing:-13.139869px;}
.ws49{word-spacing:-13.079869px;}
.wsf2{word-spacing:-13.019870px;}
.ws12e{word-spacing:-12.959870px;}
.wsd4{word-spacing:-12.899871px;}
.wse7{word-spacing:-12.779872px;}
.wsfe{word-spacing:-12.719873px;}
.wsfd{word-spacing:-12.682534px;}
.wscb{word-spacing:-12.659873px;}
.ws126{word-spacing:-12.599874px;}
.ws1a{word-spacing:-12.515821px;}
.ws26{word-spacing:-12.479875px;}
.ws11d{word-spacing:-12.419876px;}
.ws10b{word-spacing:-12.359876px;}
.ws4a{word-spacing:-12.299877px;}
.wsf1{word-spacing:-12.239878px;}
.ws10d{word-spacing:-12.179878px;}
.wsed{word-spacing:-12.119879px;}
.ws14{word-spacing:-12.047849px;}
.ws15{word-spacing:-11.999850px;}
.ws95{word-spacing:-11.939881px;}
.ws84{word-spacing:-11.879881px;}
.wse9{word-spacing:-11.859701px;}
.wsea{word-spacing:-11.854834px;}
.ws5e{word-spacing:-11.819882px;}
.wsb0{word-spacing:-11.759882px;}
.ws76{word-spacing:-11.699883px;}
.ws124{word-spacing:-11.639884px;}
.ws10e{word-spacing:-11.579884px;}
.ws24{word-spacing:-11.519885px;}
.ws67{word-spacing:-11.459885px;}
.wsd5{word-spacing:-11.399886px;}
.ws13{word-spacing:-11.375858px;}
.ws35{word-spacing:-11.339887px;}
.ws6a{word-spacing:-11.219888px;}
.wsa6{word-spacing:-11.159888px;}
.wsb2{word-spacing:-11.099889px;}
.ws6f{word-spacing:-11.039890px;}
.ws61{word-spacing:-10.979890px;}
.ws5b{word-spacing:-10.919891px;}
.ws1f{word-spacing:-10.859891px;}
.ws10f{word-spacing:-10.847864px;}
.wsae{word-spacing:-10.816808px;}
.ws104{word-spacing:-10.799892px;}
.ws20{word-spacing:-10.739893px;}
.ws55{word-spacing:-10.703866px;}
.ws8c{word-spacing:-10.619894px;}
.ws25{word-spacing:-10.499895px;}
.ws18{word-spacing:-10.463869px;}
.ws64{word-spacing:-10.439896px;}
.ws17{word-spacing:-10.415870px;}
.wsf0{word-spacing:-10.379896px;}
.ws59{word-spacing:-10.319897px;}
.ws58{word-spacing:-10.318300px;}
.ws128{word-spacing:-10.199898px;}
.ws7f{word-spacing:-10.139899px;}
.ws47{word-spacing:-10.079899px;}
.ws120{word-spacing:-10.019900px;}
.wse6{word-spacing:-9.959900px;}
.wse5{word-spacing:-9.928133px;}
.ws113{word-spacing:-9.899901px;}
.wsba{word-spacing:-9.839902px;}
.ws94{word-spacing:-9.779902px;}
.wsda{word-spacing:-9.719903px;}
.ws10a{word-spacing:-9.659903px;}
.wsfc{word-spacing:-9.599904px;}
.ws68{word-spacing:-9.479905px;}
.wsa4{word-spacing:-9.419906px;}
.ws4{word-spacing:-9.365866px;}
.ws114{word-spacing:-9.359906px;}
.ws2{word-spacing:-9.338343px;}
.ws1{word-spacing:-9.323867px;}
.ws3{word-spacing:-9.323033px;}
.ws23{word-spacing:-9.299907px;}
.wsbf{word-spacing:-9.239908px;}
.wsbe{word-spacing:-9.185117px;}
.ws118{word-spacing:-9.179908px;}
.wsd9{word-spacing:-9.119909px;}
.ws4b{word-spacing:-9.059909px;}
.ws5a{word-spacing:-8.939911px;}
.wsec{word-spacing:-8.879911px;}
.wsc2{word-spacing:-8.759912px;}
.ws39{word-spacing:-8.699913px;}
.ws70{word-spacing:-8.639914px;}
.wsce{word-spacing:-8.579914px;}
.ws74{word-spacing:-8.519915px;}
.ws100{word-spacing:-8.459915px;}
.ws108{word-spacing:-8.434500px;}
.wsff{word-spacing:-8.399916px;}
.wsb1{word-spacing:-8.339917px;}
.ws93{word-spacing:-8.279917px;}
.ws101{word-spacing:-8.219918px;}
.ws3d{word-spacing:-8.159918px;}
.ws3e{word-spacing:-8.099919px;}
.ws7b{word-spacing:-8.039920px;}
.ws6d{word-spacing:-7.979920px;}
.wsb5{word-spacing:-7.919921px;}
.wsb4{word-spacing:-7.859921px;}
.ws102{word-spacing:-7.799922px;}
.ws97{word-spacing:-7.739923px;}
.wsd7{word-spacing:-7.679923px;}
.ws44{word-spacing:-7.619924px;}
.ws45{word-spacing:-7.559924px;}
.ws116{word-spacing:-7.499925px;}
.ws115{word-spacing:-7.439926px;}
.ws7a{word-spacing:-7.319927px;}
.ws7c{word-spacing:-7.259927px;}
.ws57{word-spacing:-7.199928px;}
.wsa2{word-spacing:-7.139929px;}
.ws10c{word-spacing:-6.959930px;}
.ws117{word-spacing:-6.899931px;}
.wsb7{word-spacing:-6.839932px;}
.wsc7{word-spacing:-6.719933px;}
.wsfa{word-spacing:-6.659933px;}
.wsfb{word-spacing:-6.599934px;}
.wsd3{word-spacing:-6.539935px;}
.wsd0{word-spacing:-6.479935px;}
.ws54{word-spacing:-6.419936px;}
.wsaa{word-spacing:-6.239938px;}
.ws9e{word-spacing:-6.119939px;}
.wsf7{word-spacing:-6.059939px;}
.wscc{word-spacing:-5.999940px;}
.ws12{word-spacing:-5.999925px;}
.ws86{word-spacing:-5.939941px;}
.ws112{word-spacing:-5.879941px;}
.ws9a{word-spacing:-5.819942px;}
.ws1d{word-spacing:-5.639944px;}
.ws12b{word-spacing:-5.579944px;}
.ws87{word-spacing:-5.459945px;}
.ws75{word-spacing:-5.339947px;}
.wsd8{word-spacing:-5.219948px;}
.ws80{word-spacing:-5.159948px;}
.ws106{word-spacing:-4.859951px;}
.ws3a{word-spacing:-4.799952px;}
.ws12c{word-spacing:-4.739953px;}
.ws8a{word-spacing:-4.679953px;}
.wsa0{word-spacing:-4.619954px;}
.wsa1{word-spacing:-4.559954px;}
.ws129{word-spacing:-4.294632px;}
.ws56{word-spacing:-4.139959px;}
.wsf4{word-spacing:-4.019960px;}
.wsa9{word-spacing:-3.839962px;}
.wsa8{word-spacing:-3.759900px;}
.wsa3{word-spacing:-3.719963px;}
.ws130{word-spacing:-3.539965px;}
.ws89{word-spacing:-3.419966px;}
.ws88{word-spacing:-3.394067px;}
.ws132{word-spacing:-3.359966px;}
.ws121{word-spacing:-3.059969px;}
.ws13b{word-spacing:-2.999000px;}
.ws99{word-spacing:-2.819972px;}
.ws22{word-spacing:-2.639974px;}
.ws21{word-spacing:-2.579974px;}
.ws73{word-spacing:-2.099979px;}
.ws1c{word-spacing:-1.979980px;}
.ws9c{word-spacing:-1.739983px;}
.wsac{word-spacing:-1.619984px;}
.wsad{word-spacing:-1.559984px;}
.ws90{word-spacing:-1.272000px;}
.ws92{word-spacing:-1.019990px;}
.wsab{word-spacing:-0.659993px;}
.ws91{word-spacing:-0.539995px;}
.ws77{word-spacing:-0.419996px;}
.ws1b{word-spacing:-0.059999px;}
.ws8e{word-spacing:-0.041999px;}
.wsc6{word-spacing:-0.040632px;}
.ws0{word-spacing:0.000000px;}
.ws72{word-spacing:0.299997px;}
.ws78{word-spacing:0.539995px;}
.wsdf{word-spacing:0.599994px;}
.ws8b{word-spacing:0.779992px;}
.wscd{word-spacing:1.079989px;}
.wsaf{word-spacing:1.087368px;}
.ws8d{word-spacing:1.302000px;}
.ws98{word-spacing:1.679983px;}
.ws107{word-spacing:3.474000px;}
.ws109{word-spacing:3.474684px;}
.ws11a{word-spacing:12.779872px;}
.wsc5{word-spacing:13.259867px;}
.ws131{word-spacing:18.119819px;}
.ws111{word-spacing:204.270900px;}
._1a{margin-left:-1401.518051px;}
._16{margin-left:-9.395896px;}
._14{margin-left:-8.279917px;}
._5{margin-left:-7.133996px;}
._4{margin-left:-4.997902px;}
._2{margin-left:-3.527923px;}
._0{margin-left:-1.848000px;}
._15{width:1.511966px;}
._11{width:2.992264px;}
._12{width:4.182700px;}
._8{width:12.553439px;}
._6{width:13.991934px;}
._1{width:15.539778px;}
._d{width:17.629725px;}
._17{width:19.319807px;}
._f{width:20.423791px;}
._13{width:22.703828px;}
._e{width:23.819762px;}
._10{width:27.923776px;}
._1c{width:29.168638px;}
._7{width:30.635731px;}
._9{width:42.377368px;}
._b{width:66.023057px;}
._18{width:162.313366px;}
._1b{width:258.270300px;}
._a{width:546.289639px;}
._19{width:547.904366px;}
._3{width:1550.927758px;}
._c{width:2147.193857px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(0,0,255);}
.fc6{color:rgb(0,113,190);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(118,172,48);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.999400px;}
.fs11{font-size:30.111600px;}
.fsd{font-size:35.999400px;}
.fsa{font-size:37.799400px;}
.fs10{font-size:37.940400px;}
.fs13{font-size:39.837600px;}
.fs15{font-size:40.723200px;}
.fs6{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fsf{font-size:42.156000px;}
.fs9{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:49.072383px;}
.fsb{font-size:53.999400px;}
.fs0{font-size:54.000000px;}
.fs12{font-size:57.543600px;}
.fs14{font-size:58.428600px;}
.fsc{font-size:59.999400px;}
.fs8{font-size:65.999400px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:143.998200px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.851350px;}
.y15{bottom:64.920000px;}
.yaa{bottom:70.414500px;}
.y46{bottom:71.610000px;}
.y45{bottom:99.303000px;}
.y85{bottom:102.991500px;}
.y1ce{bottom:109.119000px;}
.y211{bottom:109.213500px;}
.y128{bottom:110.463000px;}
.y115{bottom:110.505000px;}
.y44{bottom:113.553000px;}
.y198{bottom:113.602500px;}
.y193{bottom:113.604000px;}
.y15d{bottom:114.877500px;}
.y84{bottom:120.991500px;}
.y1cd{bottom:124.119000px;}
.y210{bottom:124.213500px;}
.y43{bottom:127.803000px;}
.y127{bottom:128.463000px;}
.y114{bottom:128.505000px;}
.y15c{bottom:129.877500px;}
.y197{bottom:131.602500px;}
.y192{bottom:131.604000px;}
.ya9{bottom:138.991500px;}
.y1cc{bottom:139.119000px;}
.y20f{bottom:139.213500px;}
.y42{bottom:142.053000px;}
.y15b{bottom:144.877500px;}
.y113{bottom:146.505000px;}
.y196{bottom:149.602500px;}
.y191{bottom:149.604000px;}
.y1cb{bottom:154.119000px;}
.y20e{bottom:154.213500px;}
.y83{bottom:155.491500px;}
.y126{bottom:156.963000px;}
.ya8{bottom:156.991500px;}
.y156{bottom:160.374000px;}
.y112{bottom:164.505000px;}
.y195{bottom:167.602500px;}
.y190{bottom:167.604000px;}
.y1ca{bottom:169.119000px;}
.y20d{bottom:169.213500px;}
.y13f{bottom:173.267550px;}
.y125{bottom:173.463000px;}
.yc6{bottom:174.723000px;}
.ya7{bottom:174.991500px;}
.y13e{bottom:177.694350px;}
.y155{bottom:178.374000px;}
.y111{bottom:182.505000px;}
.y140{bottom:183.226950px;}
.y1c9{bottom:184.119000px;}
.y20c{bottom:184.213500px;}
.y18f{bottom:185.604000px;}
.y41{bottom:192.232500px;}
.yc5{bottom:192.723000px;}
.ya6{bottom:192.991500px;}
.y154{bottom:196.374000px;}
.y142{bottom:197.833800px;}
.y40{bottom:198.337500px;}
.y1c8{bottom:199.119000px;}
.y20b{bottom:199.213500px;}
.y110{bottom:200.505000px;}
.y194{bottom:202.101000px;}
.y18e{bottom:203.604000px;}
.y82{bottom:207.247500px;}
.yc4{bottom:210.723000px;}
.ya5{bottom:210.991500px;}
.y1c7{bottom:214.119000px;}
.y20a{bottom:214.213500px;}
.y153{bottom:214.374000px;}
.y3f{bottom:216.699000px;}
.y10f{bottom:218.505000px;}
.y18d{bottom:221.604000px;}
.y81{bottom:225.247500px;}
.y124{bottom:227.505000px;}
.yc3{bottom:228.723000px;}
.ya4{bottom:228.991500px;}
.y1c6{bottom:229.119000px;}
.y209{bottom:229.213500px;}
.y152{bottom:232.374000px;}
.y10e{bottom:236.505000px;}
.y18c{bottom:239.604000px;}
.y80{bottom:243.247500px;}
.y1c5{bottom:244.119000px;}
.y208{bottom:244.213500px;}
.y123{bottom:245.505000px;}
.yc2{bottom:246.723000px;}
.ya3{bottom:246.991500px;}
.y151{bottom:250.374000px;}
.y10d{bottom:254.505000px;}
.y18b{bottom:257.604000px;}
.y1c4{bottom:259.119000px;}
.y207{bottom:259.213500px;}
.y7f{bottom:261.247500px;}
.y122{bottom:263.505000px;}
.yc1{bottom:264.723000px;}
.ya2{bottom:264.991500px;}
.y150{bottom:268.374000px;}
.y10c{bottom:272.505000px;}
.y1c3{bottom:274.119000px;}
.y206{bottom:274.213500px;}
.y18a{bottom:275.604000px;}
.y7e{bottom:279.247500px;}
.y121{bottom:281.505000px;}
.yc0{bottom:282.723000px;}
.ya1{bottom:282.991500px;}
.y14f{bottom:286.374000px;}
.y1c2{bottom:289.119000px;}
.y205{bottom:289.213500px;}
.y3e{bottom:289.573500px;}
.y10b{bottom:290.505000px;}
.y189{bottom:293.604000px;}
.y7d{bottom:297.247500px;}
.y120{bottom:299.505000px;}
.ybf{bottom:300.723000px;}
.ya0{bottom:300.991500px;}
.y1c1{bottom:304.119000px;}
.y204{bottom:304.213500px;}
.y14e{bottom:304.374000px;}
.y10a{bottom:308.505000px;}
.y188{bottom:311.604000px;}
.y7c{bottom:315.247500px;}
.y11f{bottom:317.505000px;}
.ybe{bottom:318.723000px;}
.y9f{bottom:318.991500px;}
.y1c0{bottom:319.119000px;}
.y203{bottom:319.213500px;}
.y3d{bottom:321.021000px;}
.y14d{bottom:322.374000px;}
.y109{bottom:326.505000px;}
.y187{bottom:329.604000px;}
.y7b{bottom:333.247500px;}
.y1bf{bottom:334.119000px;}
.y202{bottom:334.213500px;}
.y11e{bottom:335.505000px;}
.ybd{bottom:336.723000px;}
.y9e{bottom:336.991500px;}
.y14c{bottom:340.374000px;}
.y108{bottom:344.505000px;}
.y186{bottom:347.604000px;}
.y1be{bottom:349.119000px;}
.y201{bottom:349.213500px;}
.y3c{bottom:350.973000px;}
.y7a{bottom:351.247500px;}
.y11d{bottom:353.505000px;}
.ybc{bottom:354.723000px;}
.y9d{bottom:354.991500px;}
.y14b{bottom:358.374000px;}
.y107{bottom:362.505000px;}
.y1bd{bottom:364.119000px;}
.y200{bottom:364.213500px;}
.y185{bottom:365.604000px;}
.y3b{bottom:368.973000px;}
.y79{bottom:369.247500px;}
.y11c{bottom:371.505000px;}
.ybb{bottom:372.723000px;}
.y9c{bottom:372.991500px;}
.y14a{bottom:376.374000px;}
.y1bc{bottom:379.119000px;}
.y1ff{bottom:379.213500px;}
.y106{bottom:380.505000px;}
.y184{bottom:383.604000px;}
.y3a{bottom:386.973000px;}
.y78{bottom:387.247500px;}
.y11b{bottom:389.505000px;}
.yba{bottom:390.723000px;}
.y9b{bottom:390.991500px;}
.y1bb{bottom:394.119000px;}
.y1fe{bottom:394.213500px;}
.y149{bottom:394.374000px;}
.y105{bottom:398.505000px;}
.y183{bottom:401.604000px;}
.y39{bottom:404.973000px;}
.y77{bottom:405.247500px;}
.y11a{bottom:407.505000px;}
.yb9{bottom:408.723000px;}
.y9a{bottom:408.991500px;}
.y1ba{bottom:409.119000px;}
.y1fd{bottom:409.213500px;}
.y148{bottom:412.374000px;}
.y104{bottom:416.505000px;}
.y182{bottom:419.604000px;}
.y38{bottom:422.973000px;}
.y76{bottom:423.247500px;}
.y1b9{bottom:424.119000px;}
.y1fc{bottom:424.213500px;}
.y173{bottom:425.491500px;}
.y119{bottom:425.505000px;}
.yb8{bottom:426.723000px;}
.y99{bottom:426.991500px;}
.y103{bottom:434.505000px;}
.y181{bottom:437.604000px;}
.y1b8{bottom:439.119000px;}
.y1fb{bottom:439.213500px;}
.y37{bottom:440.973000px;}
.y75{bottom:441.247500px;}
.y118{bottom:443.505000px;}
.yb7{bottom:444.723000px;}
.y98{bottom:444.991500px;}
.y102{bottom:452.505000px;}
.y1b7{bottom:454.119000px;}
.y1fa{bottom:454.213500px;}
.y74{bottom:454.869000px;}
.y180{bottom:455.604000px;}
.y36{bottom:458.973000px;}
.y73{bottom:459.247500px;}
.y147{bottom:459.567000px;}
.y117{bottom:461.505000px;}
.yb6{bottom:462.723000px;}
.y97{bottom:462.991500px;}
.y1b6{bottom:469.119000px;}
.y1f9{bottom:469.213500px;}
.y17f{bottom:473.604000px;}
.y146{bottom:474.567000px;}
.y72{bottom:475.840500px;}
.y15a{bottom:476.317500px;}
.y35{bottom:476.973000px;}
.y172{bottom:477.283500px;}
.y116{bottom:479.505000px;}
.y71{bottom:480.090000px;}
.yb5{bottom:480.723000px;}
.y96{bottom:480.991500px;}
.y101{bottom:481.005000px;}
.y1b5{bottom:484.119000px;}
.y1f8{bottom:484.213500px;}
.y141{bottom:488.218500px;}
.y145{bottom:489.567000px;}
.y159{bottom:491.317500px;}
.y17e{bottom:491.604000px;}
.y171{bottom:492.283500px;}
.y34{bottom:494.973000px;}
.y100{bottom:497.505000px;}
.y70{bottom:498.090000px;}
.yb4{bottom:498.723000px;}
.y95{bottom:498.991500px;}
.y1b4{bottom:499.119000px;}
.y1f7{bottom:499.213500px;}
.y144{bottom:504.567000px;}
.y158{bottom:506.317500px;}
.y170{bottom:507.283500px;}
.y17d{bottom:509.604000px;}
.y6f{bottom:511.711500px;}
.y6d{bottom:511.840500px;}
.y6e{bottom:512.382000px;}
.y33{bottom:512.973000px;}
.y1b3{bottom:514.119000px;}
.y1f6{bottom:514.213500px;}
.y6c{bottom:516.090000px;}
.ye5{bottom:516.723000px;}
.y94{bottom:516.991500px;}
.y143{bottom:519.567000px;}
.y157{bottom:521.317500px;}
.y16f{bottom:522.283500px;}
.y17c{bottom:527.604000px;}
.y1b2{bottom:529.119000px;}
.y1f5{bottom:529.213500px;}
.y32{bottom:530.973000px;}
.y6b{bottom:534.090000px;}
.ye4{bottom:534.723000px;}
.y93{bottom:534.991500px;}
.y16e{bottom:537.283500px;}
.y1b1{bottom:544.119000px;}
.y1f4{bottom:544.213500px;}
.yff{bottom:544.698000px;}
.y17b{bottom:545.604000px;}
.y13d{bottom:546.522000px;}
.yb3{bottom:547.665000px;}
.y31{bottom:548.973000px;}
.y6a{bottom:552.090000px;}
.y16d{bottom:552.283500px;}
.ye3{bottom:552.723000px;}
.y92{bottom:552.991500px;}
.ye8{bottom:553.098000px;}
.y1b0{bottom:559.119000px;}
.y1f3{bottom:559.213500px;}
.yfe{bottom:559.698000px;}
.yb2{bottom:562.665000px;}
.y17a{bottom:563.604000px;}
.y69{bottom:565.840500px;}
.y30{bottom:566.973000px;}
.ye7{bottom:568.098000px;}
.y68{bottom:570.090000px;}
.ye2{bottom:570.723000px;}
.y91{bottom:570.991500px;}
.y1af{bottom:574.119000px;}
.y1f2{bottom:574.213500px;}
.yfd{bottom:574.698000px;}
.yb1{bottom:577.665000px;}
.y179{bottom:581.604000px;}
.ye6{bottom:583.098000px;}
.y2f{bottom:584.973000px;}
.y66{bottom:586.333500px;}
.y67{bottom:586.462500px;}
.ye1{bottom:588.723000px;}
.y90{bottom:588.991500px;}
.y1ae{bottom:589.119000px;}
.y1f1{bottom:589.213500px;}
.y65{bottom:590.712000px;}
.yb0{bottom:592.665000px;}
.y178{bottom:599.604000px;}
.y2e{bottom:603.040500px;}
.y1ad{bottom:604.119000px;}
.y1f0{bottom:604.213500px;}
.ye0{bottom:606.723000px;}
.y8f{bottom:606.991500px;}
.y64{bottom:608.712000px;}
.y12b{bottom:617.305500px;}
.y177{bottom:617.604000px;}
.y1ac{bottom:619.119000px;}
.y1ef{bottom:619.213500px;}
.ydf{bottom:624.723000px;}
.y8e{bottom:624.991500px;}
.y63{bottom:626.712000px;}
.y12a{bottom:632.305500px;}
.y1ab{bottom:634.119000px;}
.y1ee{bottom:634.213500px;}
.yde{bottom:642.723000px;}
.y8d{bottom:642.991500px;}
.y2d{bottom:644.428500px;}
.y62{bottom:644.712000px;}
.y129{bottom:647.305500px;}
.y1aa{bottom:649.119000px;}
.y1ed{bottom:649.213500px;}
.ydd{bottom:660.723000px;}
.y2c{bottom:660.928500px;}
.y8c{bottom:660.991500px;}
.y61{bottom:662.712000px;}
.y1a9{bottom:664.119000px;}
.y1ec{bottom:664.213500px;}
.y176{bottom:664.797000px;}
.y2b{bottom:677.428500px;}
.ydc{bottom:678.723000px;}
.y8b{bottom:678.991500px;}
.y1a8{bottom:679.117500px;}
.y1eb{bottom:679.212000px;}
.y175{bottom:679.797000px;}
.y60{bottom:680.712000px;}
.y1a7{bottom:694.117500px;}
.y1ea{bottom:694.212000px;}
.y174{bottom:694.797000px;}
.ydb{bottom:696.723000px;}
.y8a{bottom:696.991500px;}
.y5f{bottom:698.712000px;}
.y1a6{bottom:709.117500px;}
.y1e9{bottom:709.212000px;}
.y2a{bottom:713.355000px;}
.yda{bottom:714.723000px;}
.y89{bottom:714.991500px;}
.y5e{bottom:716.712000px;}
.yfb{bottom:719.587500px;}
.y1a5{bottom:724.117500px;}
.y1e8{bottom:724.212000px;}
.yfc{bottom:724.759500px;}
.yfa{bottom:730.665000px;}
.yd9{bottom:732.723000px;}
.y88{bottom:732.991500px;}
.y5d{bottom:734.712000px;}
.yf9{bottom:735.897000px;}
.y1a4{bottom:739.117500px;}
.y1e7{bottom:739.212000px;}
.yd8{bottom:750.723000px;}
.y13c{bottom:750.991500px;}
.y29{bottom:751.671000px;}
.y5c{bottom:752.712000px;}
.y1a3{bottom:754.117500px;}
.y1e6{bottom:754.212000px;}
.y28{bottom:768.171000px;}
.yd7{bottom:768.723000px;}
.y13b{bottom:768.991500px;}
.y1a2{bottom:769.117500px;}
.y1e5{bottom:769.212000px;}
.y5b{bottom:770.712000px;}
.y1a1{bottom:784.117500px;}
.y1e4{bottom:784.212000px;}
.y27{bottom:784.671000px;}
.yd6{bottom:786.723000px;}
.y13a{bottom:786.991500px;}
.y5a{bottom:788.712000px;}
.y87{bottom:791.191500px;}
.yaf{bottom:795.334500px;}
.y1e3{bottom:799.212000px;}
.y26{bottom:801.171000px;}
.yf8{bottom:803.757000px;}
.yd5{bottom:804.723000px;}
.y139{bottom:804.991500px;}
.y86{bottom:806.191500px;}
.y59{bottom:806.712000px;}
.yae{bottom:810.334500px;}
.y1e2{bottom:814.212000px;}
.y1a0{bottom:815.617500px;}
.y25{bottom:817.671000px;}
.yf7{bottom:821.757000px;}
.yd4{bottom:822.723000px;}
.y138{bottom:822.991500px;}
.y58{bottom:824.712000px;}
.yad{bottom:825.334500px;}
.y1e1{bottom:829.212000px;}
.y24{bottom:834.171000px;}
.yf6{bottom:839.757000px;}
.yac{bottom:840.334500px;}
.yd3{bottom:840.723000px;}
.y137{bottom:840.991500px;}
.y57{bottom:842.712000px;}
.y1e0{bottom:844.212000px;}
.y23{bottom:845.440500px;}
.yab{bottom:855.334500px;}
.yf5{bottom:857.757000px;}
.yd2{bottom:858.723000px;}
.y136{bottom:858.991500px;}
.y1df{bottom:859.212000px;}
.y56{bottom:860.712000px;}
.y19f{bottom:865.165500px;}
.y22{bottom:867.171000px;}
.y1de{bottom:874.212000px;}
.yf4{bottom:875.757000px;}
.yd1{bottom:876.723000px;}
.y135{bottom:876.991500px;}
.y55{bottom:878.712000px;}
.y19e{bottom:883.165500px;}
.y21{bottom:883.671000px;}
.y14{bottom:886.260000px;}
.y1dd{bottom:889.212000px;}
.y16c{bottom:891.033000px;}
.yf3{bottom:893.757000px;}
.yd0{bottom:894.723000px;}
.y20{bottom:894.940500px;}
.y134{bottom:894.991500px;}
.y54{bottom:896.712000px;}
.y13{bottom:898.260000px;}
.y19d{bottom:901.165500px;}
.y6{bottom:903.150000px;}
.y1dc{bottom:904.212000px;}
.y16b{bottom:907.533000px;}
.y12{bottom:910.260000px;}
.yf2{bottom:911.757000px;}
.ycf{bottom:912.723000px;}
.y133{bottom:912.991500px;}
.y53{bottom:914.712000px;}
.y1f{bottom:916.671000px;}
.y19c{bottom:919.165500px;}
.y1db{bottom:919.212000px;}
.y11{bottom:922.260000px;}
.y169{bottom:924.033000px;}
.yf1{bottom:929.757000px;}
.yce{bottom:930.723000px;}
.y132{bottom:930.991500px;}
.y5{bottom:932.250000px;}
.y52{bottom:932.712000px;}
.y1da{bottom:934.212000px;}
.y10{bottom:934.260000px;}
.y19b{bottom:937.165500px;}
.y1e{bottom:939.063000px;}
.y16a{bottom:940.533000px;}
.yf0{bottom:947.757000px;}
.y131{bottom:948.991500px;}
.y1d9{bottom:949.212000px;}
.y51{bottom:950.712000px;}
.y19a{bottom:955.165500px;}
.y168{bottom:957.033000px;}
.yf{bottom:957.510000px;}
.y1d{bottom:958.563000px;}
.y1d8{bottom:964.212000px;}
.ycd{bottom:965.223000px;}
.yef{bottom:965.757000px;}
.y130{bottom:966.991500px;}
.y50{bottom:968.712000px;}
.ye{bottom:969.510000px;}
.y4{bottom:972.630000px;}
.y1c{bottom:978.063000px;}
.y1d7{bottom:979.212000px;}
.y167{bottom:980.740500px;}
.yd{bottom:981.510000px;}
.yee{bottom:983.757000px;}
.y166{bottom:984.783000px;}
.y12f{bottom:984.991500px;}
.y4f{bottom:986.712000px;}
.y199{bottom:989.665500px;}
.yc{bottom:993.510000px;}
.y1d6{bottom:994.212000px;}
.y165{bottom:1001.383500px;}
.yed{bottom:1001.757000px;}
.y12e{bottom:1002.991500px;}
.y4e{bottom:1004.712000px;}
.yb{bottom:1005.510000px;}
.y1d5{bottom:1009.212000px;}
.y3{bottom:1011.165000px;}
.y164{bottom:1017.883500px;}
.yec{bottom:1019.757000px;}
.y12d{bottom:1020.991500px;}
.ycc{bottom:1021.212000px;}
.y4d{bottom:1022.712000px;}
.y1d4{bottom:1024.212000px;}
.ya{bottom:1028.760000px;}
.y1b{bottom:1035.829500px;}
.yeb{bottom:1037.757000px;}
.ycb{bottom:1039.212000px;}
.y2{bottom:1039.965000px;}
.y4c{bottom:1040.712000px;}
.y9{bottom:1040.760000px;}
.y163{bottom:1045.632000px;}
.y8{bottom:1052.760000px;}
.y1d3{bottom:1054.212000px;}
.y12c{bottom:1055.491500px;}
.yea{bottom:1055.757000px;}
.yca{bottom:1057.212000px;}
.y162{bottom:1058.091000px;}
.y4b{bottom:1058.712000px;}
.y161{bottom:1062.132000px;}
.y1d2{bottom:1069.212000px;}
.yc9{bottom:1075.212000px;}
.y4a{bottom:1076.712000px;}
.y7{bottom:1078.260000px;}
.y1a{bottom:1080.829500px;}
.y1{bottom:1081.485000px;}
.y1d1{bottom:1084.212000px;}
.ye9{bottom:1088.740500px;}
.y160{bottom:1089.790500px;}
.yc8{bottom:1093.212000px;}
.y49{bottom:1094.712000px;}
.y1d0{bottom:1099.212000px;}
.yc7{bottom:1111.212000px;}
.y1cf{bottom:1114.212000px;}
.y15f{bottom:1116.256500px;}
.y48{bottom:1129.212000px;}
.y15e{bottom:1131.256500px;}
.y19{bottom:1144.129500px;}
.y16{bottom:1162.728000px;}
.y18{bottom:1165.866000px;}
.y47{bottom:1174.210500px;}
.h9{height:13.148430px;}
.h15{height:13.949721px;}
.h13{height:25.199580px;}
.he{height:26.459580px;}
.h2c{height:26.551916px;}
.h30{height:26.558280px;}
.h27{height:29.509200px;}
.ha{height:30.156000px;}
.h28{height:31.499550px;}
.hb{height:32.549535px;}
.h14{height:33.599580px;}
.h3{height:36.000000px;}
.h4{height:36.804287px;}
.h2e{height:37.793580px;}
.hf{height:37.799580px;}
.h2b{height:38.353034px;}
.h2d{height:38.942890px;}
.h25{height:39.743558px;}
.h10{height:39.797558px;}
.h11{height:41.999580px;}
.h24{height:42.359576px;}
.h7{height:43.804688px;}
.h16{height:44.219558px;}
.h12{height:44.999550px;}
.h22{height:45.197721px;}
.h32{height:45.941617px;}
.h31{height:45.947617px;}
.h33{height:46.601617px;}
.h2f{height:46.607617px;}
.h34{height:47.138200px;}
.h5{height:50.062500px;}
.h1b{height:51.283200px;}
.h1{height:56.320312px;}
.h20{height:56.831580px;}
.h17{height:57.167550px;}
.h1c{height:58.997580px;}
.h1a{height:59.513580px;}
.hd{height:60.497580px;}
.h21{height:61.997550px;}
.h1f{height:68.105550px;}
.h18{height:68.797200px;}
.h1d{height:70.271550px;}
.h23{height:70.787550px;}
.h1e{height:71.999550px;}
.h2{height:72.000000px;}
.h19{height:74.165550px;}
.h6{height:75.093750px;}
.h29{height:86.909576px;}
.h26{height:98.333976px;}
.hc{height:106.126673px;}
.h2a{height:592.461000px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:259.831500px;}
.w4{width:558.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.xa{left:71.731500px;}
.x2f{left:72.735000px;}
.x26{left:76.776000px;}
.x2a{left:79.485000px;}
.x19{left:82.561500px;}
.xe{left:89.664000px;}
.xb{left:94.613550px;}
.x2b{left:116.226000px;}
.x25{left:129.098100px;}
.x24{left:131.753850px;}
.xf{left:138.271500px;}
.xd{left:155.812500px;}
.x2d{left:160.450500px;}
.x22{left:168.717750px;}
.x21{left:170.443500px;}
.x23{left:180.006600px;}
.x13{left:189.180000px;}
.x10{left:209.884500px;}
.x9{left:213.105000px;}
.x2{left:221.040000px;}
.x14{left:222.693000px;}
.x3{left:243.690000px;}
.x27{left:252.607500px;}
.x15{left:265.146000px;}
.x4{left:277.035000px;}
.x2c{left:290.737500px;}
.x16{left:302.598000px;}
.x11{left:312.694500px;}
.x2e{left:321.732000px;}
.x28{left:338.313000px;}
.x5{left:343.680000px;}
.x17{left:366.976500px;}
.x12{left:377.710500px;}
.x18{left:386.965500px;}
.x29{left:443.893500px;}
.x1c{left:446.524500px;}
.x1a{left:458.409000px;}
.x30{left:459.414000px;}
.x1b{left:476.341500px;}
.x31{left:502.905000px;}
.x1d{left:549.609000px;}
.x6{left:605.490000px;}
.x8{left:627.990000px;}
.x7{left:634.410000px;}
.x1f{left:655.648500px;}
.x1e{left:676.623000px;}
.x20{left:708.330000px;}
.xc{left:757.131000px;}
@media print{
.v5{vertical-align:-25.386667pt;}
.v2{vertical-align:-23.909333pt;}
.v3{vertical-align:-18.597333pt;}
.v10{vertical-align:-15.737067pt;}
.v4{vertical-align:-11.952000pt;}
.vb{vertical-align:-8.000000pt;}
.v12{vertical-align:-6.261333pt;}
.vc{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:1.413333pt;}
.va{vertical-align:13.184000pt;}
.v7{vertical-align:15.568000pt;}
.v9{vertical-align:19.354667pt;}
.v11{vertical-align:20.394667pt;}
.v6{vertical-align:22.816000pt;}
.v1{vertical-align:23.909333pt;}
.v8{vertical-align:34.922667pt;}
.ve{vertical-align:36.080000pt;}
.vf{vertical-align:39.600000pt;}
.vd{vertical-align:85.274667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000133pt;}
.ls3d{letter-spacing:0.000148pt;}
.lsc{letter-spacing:0.000178pt;}
.ls5e{letter-spacing:0.000207pt;}
.ls5b{letter-spacing:0.000233pt;}
.ls36{letter-spacing:0.000237pt;}
.ls2{letter-spacing:0.000267pt;}
.ls4e{letter-spacing:0.000297pt;}
.ls6f{letter-spacing:0.000321pt;}
.ls5{letter-spacing:0.000327pt;}
.lse{letter-spacing:0.000385pt;}
.ls38{letter-spacing:0.000415pt;}
.ls15{letter-spacing:0.000444pt;}
.ls4{letter-spacing:0.000533pt;}
.ls6a{letter-spacing:0.000608pt;}
.ls69{letter-spacing:0.001305pt;}
.ls68{letter-spacing:0.004637pt;}
.lsa9{letter-spacing:0.005778pt;}
.ls0{letter-spacing:0.048000pt;}
.ls59{letter-spacing:1.226993pt;}
.ls48{letter-spacing:1.296267pt;}
.ls35{letter-spacing:1.440267pt;}
.lsbe{letter-spacing:1.909638pt;}
.lsbb{letter-spacing:1.914971pt;}
.ls47{letter-spacing:2.655779pt;}
.ls3a{letter-spacing:2.656000pt;}
.ls16{letter-spacing:2.656468pt;}
.ls4f{letter-spacing:2.656608pt;}
.ls52{letter-spacing:2.657216pt;}
.ls40{letter-spacing:2.661112pt;}
.ls50{letter-spacing:2.661333pt;}
.ls25{letter-spacing:2.720178pt;}
.ls8d{letter-spacing:2.816302pt;}
.lsac{letter-spacing:4.106963pt;}
.ls6b{letter-spacing:4.854638pt;}
.ls51{letter-spacing:5.760148pt;}
.ls76{letter-spacing:5.920349pt;}
.ls5f{letter-spacing:5.925481pt;}
.ls7b{letter-spacing:5.925682pt;}
.ls6c{letter-spacing:6.373600pt;}
.ls1b{letter-spacing:6.815392pt;}
.ls72{letter-spacing:7.008148pt;}
.ls66{letter-spacing:7.408250pt;}
.ls49{letter-spacing:7.786815pt;}
.ls96{letter-spacing:8.215893pt;}
.ls99{letter-spacing:8.219052pt;}
.ls92{letter-spacing:8.221226pt;}
.ls95{letter-spacing:8.224385pt;}
.ls14{letter-spacing:8.885748pt;}
.ls10{letter-spacing:8.891081pt;}
.lsaf{letter-spacing:9.045748pt;}
.ls2e{letter-spacing:9.931081pt;}
.ls2c{letter-spacing:10.512415pt;}
.ls23{letter-spacing:10.869600pt;}
.lsa0{letter-spacing:10.874099pt;}
.ls9b{letter-spacing:10.875180pt;}
.ls91{letter-spacing:10.879432pt;}
.ls9f{letter-spacing:10.881600pt;}
.ls94{letter-spacing:10.959481pt;}
.ls98{letter-spacing:10.960385pt;}
.ls9e{letter-spacing:10.964815pt;}
.ls9a{letter-spacing:10.965718pt;}
.lsb5{letter-spacing:11.269748pt;}
.lsaa{letter-spacing:11.419016pt;}
.lsab{letter-spacing:11.424415pt;}
.ls5d{letter-spacing:11.851081pt;}
.ls11{letter-spacing:11.851111pt;}
.ls12{letter-spacing:11.851200pt;}
.ls6{letter-spacing:11.952267pt;}
.ls5a{letter-spacing:12.026667pt;}
.ls2a{letter-spacing:12.224207pt;}
.lsb4{letter-spacing:12.229482pt;}
.ls2b{letter-spacing:12.229748pt;}
.lsba{letter-spacing:12.256415pt;}
.lsd{letter-spacing:12.314800pt;}
.lsa1{letter-spacing:12.315596pt;}
.ls22{letter-spacing:12.613600pt;}
.ls32{letter-spacing:12.788117pt;}
.ls79{letter-spacing:13.086784pt;}
.lsae{letter-spacing:13.157630pt;}
.lsb2{letter-spacing:13.173682pt;}
.lsb3{letter-spacing:13.173748pt;}
.ls58{letter-spacing:13.328133pt;}
.ls73{letter-spacing:13.328415pt;}
.ls1f{letter-spacing:13.333467pt;}
.ls7{letter-spacing:13.333600pt;}
.ls65{letter-spacing:13.333659pt;}
.ls8{letter-spacing:13.333748pt;}
.lsbf{letter-spacing:13.333867pt;}
.lsb9{letter-spacing:13.547081pt;}
.lsb8{letter-spacing:13.552267pt;}
.ls9d{letter-spacing:13.617600pt;}
.ls9c{letter-spacing:13.620765pt;}
.ls93{letter-spacing:13.622933pt;}
.ls7a{letter-spacing:13.626445pt;}
.ls64{letter-spacing:13.680250pt;}
.ls24{letter-spacing:14.069600pt;}
.lsa2{letter-spacing:14.336267pt;}
.lsa3{letter-spacing:14.336415pt;}
.ls29{letter-spacing:14.357333pt;}
.ls28{letter-spacing:14.362667pt;}
.ls60{letter-spacing:14.503765pt;}
.ls5c{letter-spacing:14.507883pt;}
.ls62{letter-spacing:14.509099pt;}
.lsbc{letter-spacing:14.650993pt;}
.lsbd{letter-spacing:14.651081pt;}
.lsb6{letter-spacing:14.656429pt;}
.ls2d{letter-spacing:14.656506pt;}
.lsb7{letter-spacing:14.661762pt;}
.ls39{letter-spacing:14.944415pt;}
.ls4d{letter-spacing:15.035081pt;}
.ls4c{letter-spacing:15.040326pt;}
.ls89{letter-spacing:15.312415pt;}
.ls7c{letter-spacing:15.327779pt;}
.lsad{letter-spacing:15.530963pt;}
.lsb1{letter-spacing:15.627081pt;}
.ls20{letter-spacing:15.776267pt;}
.ls7f{letter-spacing:15.962445pt;}
.ls6e{letter-spacing:16.032326pt;}
.ls3c{letter-spacing:16.139081pt;}
.ls70{letter-spacing:16.159779pt;}
.ls31{letter-spacing:16.181333pt;}
.ls30{letter-spacing:16.185451pt;}
.ls88{letter-spacing:16.272148pt;}
.ls2f{letter-spacing:16.272415pt;}
.lsb0{letter-spacing:16.597482pt;}
.ls77{letter-spacing:16.703779pt;}
.ls84{letter-spacing:17.077112pt;}
.ls3b{letter-spacing:17.104148pt;}
.ls57{letter-spacing:17.119779pt;}
.lsb{letter-spacing:17.146800pt;}
.ls37{letter-spacing:17.232415pt;}
.ls82{letter-spacing:17.556117pt;}
.ls8b{letter-spacing:17.680929pt;}
.ls53{letter-spacing:17.706963pt;}
.ls7e{letter-spacing:17.983779pt;}
.ls74{letter-spacing:18.016326pt;}
.ls75{letter-spacing:18.016415pt;}
.lsa8{letter-spacing:18.528415pt;}
.ls7d{letter-spacing:18.592349pt;}
.ls21{letter-spacing:18.629600pt;}
.ls34{letter-spacing:18.772117pt;}
.ls33{letter-spacing:18.773333pt;}
.ls80{letter-spacing:18.783779pt;}
.ls8f{letter-spacing:19.163081pt;}
.ls8c{letter-spacing:19.168415pt;}
.ls85{letter-spacing:19.269600pt;}
.ls18{letter-spacing:19.445778pt;}
.ls56{letter-spacing:19.482445pt;}
.ls13{letter-spacing:19.865451pt;}
.lsa6{letter-spacing:19.904133pt;}
.ls78{letter-spacing:19.973682pt;}
.lsa5{letter-spacing:20.043081pt;}
.ls83{letter-spacing:20.341682pt;}
.ls86{letter-spacing:20.789748pt;}
.ls46{letter-spacing:20.970445pt;}
.lsa4{letter-spacing:21.008148pt;}
.ls63{letter-spacing:21.153216pt;}
.ls26{letter-spacing:21.381333pt;}
.ls27{letter-spacing:21.386667pt;}
.ls87{letter-spacing:21.754815pt;}
.ls71{letter-spacing:21.775779pt;}
.ls8e{letter-spacing:21.825216pt;}
.ls81{letter-spacing:22.048349pt;}
.lsa7{letter-spacing:22.640297pt;}
.ls43{letter-spacing:23.381511pt;}
.ls44{letter-spacing:23.381748pt;}
.ls9{letter-spacing:23.909570pt;}
.ls55{letter-spacing:24.299052pt;}
.ls61{letter-spacing:24.426800pt;}
.ls3e{letter-spacing:25.120178pt;}
.ls3f{letter-spacing:25.120415pt;}
.ls42{letter-spacing:25.125748pt;}
.ls45{letter-spacing:26.043275pt;}
.ls4b{letter-spacing:26.512326pt;}
.lsa{letter-spacing:26.568393pt;}
.ls54{letter-spacing:26.961216pt;}
.ls41{letter-spacing:27.776608pt;}
.ls4a{letter-spacing:27.957941pt;}
.ls8a{letter-spacing:28.706957pt;}
.ls19{letter-spacing:30.425451pt;}
.ls1c{letter-spacing:30.548725pt;}
.ls1a{letter-spacing:32.676725pt;}
.lsf{letter-spacing:33.865451pt;}
.ls1d{letter-spacing:34.457451pt;}
.ls1e{letter-spacing:35.054784pt;}
.ls17{letter-spacing:36.452117pt;}
.ls67{letter-spacing:128.400533pt;}
.ls90{letter-spacing:229.573600pt;}
.ls6d{letter-spacing:262.080148pt;}
.ls97{letter-spacing:287.868267pt;}
.ws42{word-spacing:-32.639674pt;}
.ws6e{word-spacing:-29.375674pt;}
.ws6{word-spacing:-28.543643pt;}
.ws29{word-spacing:-26.666400pt;}
.wsf{word-spacing:-23.999733pt;}
.ws9{word-spacing:-21.333067pt;}
.ws9b{word-spacing:-18.736000pt;}
.ws5{word-spacing:-18.666400pt;}
.ws12d{word-spacing:-18.026486pt;}
.ws60{word-spacing:-17.759822pt;}
.ws28{word-spacing:-17.706490pt;}
.ws2a{word-spacing:-17.653157pt;}
.ws11b{word-spacing:-17.619586pt;}
.ws11c{word-spacing:-17.599824pt;}
.ws144{word-spacing:-17.567805pt;}
.ws135{word-spacing:-17.423806pt;}
.ws14d{word-spacing:-17.421559pt;}
.wse8{word-spacing:-17.386493pt;}
.ws146{word-spacing:-17.379525pt;}
.ws13e{word-spacing:-17.378296pt;}
.ws141{word-spacing:-17.378251pt;}
.ws133{word-spacing:-17.375807pt;}
.ws138{word-spacing:-17.374192pt;}
.ws140{word-spacing:-17.373881pt;}
.ws30{word-spacing:-17.333160pt;}
.ws2f{word-spacing:-17.279827pt;}
.ws46{word-spacing:-17.226494pt;}
.ws69{word-spacing:-17.119829pt;}
.ws5c{word-spacing:-17.066496pt;}
.ws41{word-spacing:-17.013163pt;}
.ws43{word-spacing:-16.959830pt;}
.ws127{word-spacing:-16.799832pt;}
.ws71{word-spacing:-16.746499pt;}
.ws12f{word-spacing:-16.693166pt;}
.ws36{word-spacing:-16.639834pt;}
.ws83{word-spacing:-16.586501pt;}
.ws82{word-spacing:-16.533168pt;}
.ws2d{word-spacing:-16.479835pt;}
.ws2e{word-spacing:-16.426502pt;}
.wsa5{word-spacing:-16.373170pt;}
.ws2c{word-spacing:-16.319837pt;}
.ws63{word-spacing:-16.213171pt;}
.ws66{word-spacing:-16.159838pt;}
.ws27{word-spacing:-16.106506pt;}
.wseb{word-spacing:-16.053173pt;}
.wsd6{word-spacing:-15.999840pt;}
.ws31{word-spacing:-15.946507pt;}
.wscf{word-spacing:-15.839842pt;}
.ws4f{word-spacing:-15.786509pt;}
.wse1{word-spacing:-15.733176pt;}
.wse2{word-spacing:-15.679843pt;}
.wsc0{word-spacing:-15.466512pt;}
.wsc1{word-spacing:-15.413179pt;}
.wsf9{word-spacing:-15.359846pt;}
.ws3c{word-spacing:-15.253181pt;}
.ws119{word-spacing:-15.246164pt;}
.ws3b{word-spacing:-15.199848pt;}
.ws62{word-spacing:-15.093182pt;}
.ws65{word-spacing:-15.039850pt;}
.ws4e{word-spacing:-14.986517pt;}
.wsf5{word-spacing:-14.933184pt;}
.wsb6{word-spacing:-14.879851pt;}
.ws38{word-spacing:-14.826518pt;}
.wsbd{word-spacing:-14.773186pt;}
.ws4c{word-spacing:-14.719853pt;}
.ws122{word-spacing:-14.666520pt;}
.ws9d{word-spacing:-14.613187pt;}
.ws11e{word-spacing:-14.559854pt;}
.wsb9{word-spacing:-14.506522pt;}
.ws37{word-spacing:-14.453189pt;}
.ws32{word-spacing:-14.399856pt;}
.ws33{word-spacing:-14.346523pt;}
.wsde{word-spacing:-14.303841pt;}
.ws2b{word-spacing:-14.293190pt;}
.wsbb{word-spacing:-14.255842pt;}
.ws6c{word-spacing:-14.239858pt;}
.ws12a{word-spacing:-14.186525pt;}
.ws4d{word-spacing:-14.079859pt;}
.wse3{word-spacing:-14.026526pt;}
.wse4{word-spacing:-13.993630pt;}
.wsd1{word-spacing:-13.919861pt;}
.wsf8{word-spacing:-13.866528pt;}
.wsef{word-spacing:-13.706530pt;}
.ws16{word-spacing:-13.695829pt;}
.wsee{word-spacing:-13.653197pt;}
.wsc8{word-spacing:-13.599864pt;}
.wsc3{word-spacing:-13.546531pt;}
.wsc9{word-spacing:-13.493198pt;}
.ws11f{word-spacing:-13.492030pt;}
.ws34{word-spacing:-13.439866pt;}
.ws11{word-spacing:-13.386533pt;}
.ws79{word-spacing:-13.337156pt;}
.ws10{word-spacing:-13.333200pt;}
.wsdd{word-spacing:-13.331822pt;}
.ws96{word-spacing:-13.331556pt;}
.ws123{word-spacing:-13.226534pt;}
.ws40{word-spacing:-13.173202pt;}
.wsca{word-spacing:-13.161630pt;}
.ws85{word-spacing:-13.155467pt;}
.ws7e{word-spacing:-13.134963pt;}
.ws7d{word-spacing:-13.134607pt;}
.ws105{word-spacing:-13.119869pt;}
.ws125{word-spacing:-13.113956pt;}
.ws7{word-spacing:-13.082548pt;}
.wsbc{word-spacing:-13.066536pt;}
.ws8{word-spacing:-13.023882pt;}
.wsf3{word-spacing:-13.013203pt;}
.wsdb{word-spacing:-12.959870pt;}
.wsd2{word-spacing:-12.906538pt;}
.ws19{word-spacing:-12.842506pt;}
.ws50{word-spacing:-12.693206pt;}
.ws51{word-spacing:-12.639874pt;}
.ws134{word-spacing:-12.623860pt;}
.wsdc{word-spacing:-12.617630pt;}
.ws52{word-spacing:-12.586541pt;}
.ws6b{word-spacing:-12.533208pt;}
.ws9f{word-spacing:-12.479875pt;}
.wsa7{word-spacing:-12.426542pt;}
.ws48{word-spacing:-12.373210pt;}
.ws137{word-spacing:-12.287863pt;}
.ws5d{word-spacing:-12.266544pt;}
.wsf6{word-spacing:-12.254963pt;}
.wsb3{word-spacing:-12.213211pt;}
.ws143{word-spacing:-12.191865pt;}
.ws103{word-spacing:-12.159878pt;}
.ws110{word-spacing:-12.143865pt;}
.wsb8{word-spacing:-12.106546pt;}
.wse0{word-spacing:-12.053213pt;}
.ws139{word-spacing:-12.048375pt;}
.wsb{word-spacing:-12.047866pt;}
.ws13d{word-spacing:-12.046034pt;}
.ws13f{word-spacing:-12.045417pt;}
.ws14c{word-spacing:-12.004533pt;}
.ws14a{word-spacing:-12.004267pt;}
.ws149{word-spacing:-12.003866pt;}
.ws14b{word-spacing:-12.003733pt;}
.ws148{word-spacing:-12.003532pt;}
.wsc{word-spacing:-12.003467pt;}
.ws14e{word-spacing:-12.003348pt;}
.ws147{word-spacing:-12.003230pt;}
.ws13a{word-spacing:-12.001438pt;}
.ws14f{word-spacing:-12.001216pt;}
.wsd{word-spacing:-12.000295pt;}
.ws1e{word-spacing:-11.999880pt;}
.wsa{word-spacing:-11.999867pt;}
.ws136{word-spacing:-11.999200pt;}
.wse{word-spacing:-11.998963pt;}
.ws145{word-spacing:-11.998933pt;}
.ws142{word-spacing:-11.998904pt;}
.ws13c{word-spacing:-11.997897pt;}
.ws3f{word-spacing:-11.946547pt;}
.ws53{word-spacing:-11.893214pt;}
.ws81{word-spacing:-11.839882pt;}
.wsc4{word-spacing:-11.786549pt;}
.ws8f{word-spacing:-11.733216pt;}
.ws5f{word-spacing:-11.679883pt;}
.ws49{word-spacing:-11.626550pt;}
.wsf2{word-spacing:-11.573218pt;}
.ws12e{word-spacing:-11.519885pt;}
.wsd4{word-spacing:-11.466552pt;}
.wse7{word-spacing:-11.359886pt;}
.wsfe{word-spacing:-11.306554pt;}
.wsfd{word-spacing:-11.273363pt;}
.wscb{word-spacing:-11.253221pt;}
.ws126{word-spacing:-11.199888pt;}
.ws1a{word-spacing:-11.125174pt;}
.ws26{word-spacing:-11.093222pt;}
.ws11d{word-spacing:-11.039890pt;}
.ws10b{word-spacing:-10.986557pt;}
.ws4a{word-spacing:-10.933224pt;}
.wsf1{word-spacing:-10.879891pt;}
.ws10d{word-spacing:-10.826558pt;}
.wsed{word-spacing:-10.773226pt;}
.ws14{word-spacing:-10.709199pt;}
.ws15{word-spacing:-10.666533pt;}
.ws95{word-spacing:-10.613227pt;}
.ws84{word-spacing:-10.559894pt;}
.wse9{word-spacing:-10.541956pt;}
.wsea{word-spacing:-10.537630pt;}
.ws5e{word-spacing:-10.506562pt;}
.wsb0{word-spacing:-10.453229pt;}
.ws76{word-spacing:-10.399896pt;}
.ws124{word-spacing:-10.346563pt;}
.ws10e{word-spacing:-10.293230pt;}
.ws24{word-spacing:-10.239898pt;}
.ws67{word-spacing:-10.186565pt;}
.wsd5{word-spacing:-10.133232pt;}
.ws13{word-spacing:-10.111874pt;}
.ws35{word-spacing:-10.079899pt;}
.ws6a{word-spacing:-9.973234pt;}
.wsa6{word-spacing:-9.919901pt;}
.wsb2{word-spacing:-9.866568pt;}
.ws6f{word-spacing:-9.813235pt;}
.ws61{word-spacing:-9.759902pt;}
.ws5b{word-spacing:-9.706570pt;}
.ws1f{word-spacing:-9.653237pt;}
.ws10f{word-spacing:-9.642546pt;}
.wsae{word-spacing:-9.614940pt;}
.ws104{word-spacing:-9.599904pt;}
.ws20{word-spacing:-9.546571pt;}
.ws55{word-spacing:-9.514548pt;}
.ws8c{word-spacing:-9.439906pt;}
.ws25{word-spacing:-9.333240pt;}
.ws18{word-spacing:-9.301217pt;}
.ws64{word-spacing:-9.279907pt;}
.ws17{word-spacing:-9.258551pt;}
.wsf0{word-spacing:-9.226574pt;}
.ws59{word-spacing:-9.173242pt;}
.ws58{word-spacing:-9.171822pt;}
.ws128{word-spacing:-9.066576pt;}
.ws7f{word-spacing:-9.013243pt;}
.ws47{word-spacing:-8.959910pt;}
.ws120{word-spacing:-8.906578pt;}
.wse6{word-spacing:-8.853245pt;}
.wse5{word-spacing:-8.825007pt;}
.ws113{word-spacing:-8.799912pt;}
.wsba{word-spacing:-8.746579pt;}
.ws94{word-spacing:-8.693246pt;}
.wsda{word-spacing:-8.639914pt;}
.ws10a{word-spacing:-8.586581pt;}
.wsfc{word-spacing:-8.533248pt;}
.ws68{word-spacing:-8.426582pt;}
.wsa4{word-spacing:-8.373250pt;}
.ws4{word-spacing:-8.325214pt;}
.ws114{word-spacing:-8.319917pt;}
.ws2{word-spacing:-8.300749pt;}
.ws1{word-spacing:-8.287882pt;}
.ws3{word-spacing:-8.287140pt;}
.ws23{word-spacing:-8.266584pt;}
.wsbf{word-spacing:-8.213251pt;}
.wsbe{word-spacing:-8.164548pt;}
.ws118{word-spacing:-8.159918pt;}
.wsd9{word-spacing:-8.106586pt;}
.ws4b{word-spacing:-8.053253pt;}
.ws5a{word-spacing:-7.946587pt;}
.wsec{word-spacing:-7.893254pt;}
.wsc2{word-spacing:-7.786589pt;}
.ws39{word-spacing:-7.733256pt;}
.ws70{word-spacing:-7.679923pt;}
.wsce{word-spacing:-7.626590pt;}
.ws74{word-spacing:-7.573258pt;}
.ws100{word-spacing:-7.519925pt;}
.ws108{word-spacing:-7.497333pt;}
.wsff{word-spacing:-7.466592pt;}
.wsb1{word-spacing:-7.413259pt;}
.ws93{word-spacing:-7.359926pt;}
.ws101{word-spacing:-7.306594pt;}
.ws3d{word-spacing:-7.253261pt;}
.ws3e{word-spacing:-7.199928pt;}
.ws7b{word-spacing:-7.146595pt;}
.ws6d{word-spacing:-7.093262pt;}
.wsb5{word-spacing:-7.039930pt;}
.wsb4{word-spacing:-6.986597pt;}
.ws102{word-spacing:-6.933264pt;}
.ws97{word-spacing:-6.879931pt;}
.wsd7{word-spacing:-6.826598pt;}
.ws44{word-spacing:-6.773266pt;}
.ws45{word-spacing:-6.719933pt;}
.ws116{word-spacing:-6.666600pt;}
.ws115{word-spacing:-6.613267pt;}
.ws7a{word-spacing:-6.506602pt;}
.ws7c{word-spacing:-6.453269pt;}
.ws57{word-spacing:-6.399936pt;}
.wsa2{word-spacing:-6.346603pt;}
.ws10c{word-spacing:-6.186605pt;}
.ws117{word-spacing:-6.133272pt;}
.wsb7{word-spacing:-6.079939pt;}
.wsc7{word-spacing:-5.973274pt;}
.wsfa{word-spacing:-5.919941pt;}
.wsfb{word-spacing:-5.866608pt;}
.wsd3{word-spacing:-5.813275pt;}
.wsd0{word-spacing:-5.759942pt;}
.ws54{word-spacing:-5.706610pt;}
.wsaa{word-spacing:-5.546611pt;}
.ws9e{word-spacing:-5.439946pt;}
.wsf7{word-spacing:-5.386613pt;}
.wscc{word-spacing:-5.333280pt;}
.ws12{word-spacing:-5.333267pt;}
.ws86{word-spacing:-5.279947pt;}
.ws112{word-spacing:-5.226614pt;}
.ws9a{word-spacing:-5.173282pt;}
.ws1d{word-spacing:-5.013283pt;}
.ws12b{word-spacing:-4.959950pt;}
.ws87{word-spacing:-4.853285pt;}
.ws75{word-spacing:-4.746619pt;}
.wsd8{word-spacing:-4.639954pt;}
.ws80{word-spacing:-4.586621pt;}
.ws106{word-spacing:-4.319957pt;}
.ws3a{word-spacing:-4.266624pt;}
.ws12c{word-spacing:-4.213291pt;}
.ws8a{word-spacing:-4.159958pt;}
.wsa0{word-spacing:-4.106626pt;}
.wsa1{word-spacing:-4.053293pt;}
.ws129{word-spacing:-3.817451pt;}
.ws56{word-spacing:-3.679963pt;}
.wsf4{word-spacing:-3.573298pt;}
.wsa9{word-spacing:-3.413299pt;}
.wsa8{word-spacing:-3.342133pt;}
.wsa3{word-spacing:-3.306634pt;}
.ws130{word-spacing:-3.146635pt;}
.ws89{word-spacing:-3.039970pt;}
.ws88{word-spacing:-3.016948pt;}
.ws132{word-spacing:-2.986637pt;}
.ws121{word-spacing:-2.719973pt;}
.ws13b{word-spacing:-2.665778pt;}
.ws99{word-spacing:-2.506642pt;}
.ws22{word-spacing:-2.346643pt;}
.ws21{word-spacing:-2.293310pt;}
.ws73{word-spacing:-1.866648pt;}
.ws1c{word-spacing:-1.759982pt;}
.ws9c{word-spacing:-1.546651pt;}
.wsac{word-spacing:-1.439986pt;}
.wsad{word-spacing:-1.386653pt;}
.ws90{word-spacing:-1.130667pt;}
.ws92{word-spacing:-0.906658pt;}
.wsab{word-spacing:-0.586661pt;}
.ws91{word-spacing:-0.479995pt;}
.ws77{word-spacing:-0.373330pt;}
.ws1b{word-spacing:-0.053333pt;}
.ws8e{word-spacing:-0.037333pt;}
.wsc6{word-spacing:-0.036117pt;}
.ws0{word-spacing:0.000000pt;}
.ws72{word-spacing:0.266664pt;}
.ws78{word-spacing:0.479995pt;}
.wsdf{word-spacing:0.533328pt;}
.ws8b{word-spacing:0.693326pt;}
.wscd{word-spacing:0.959990pt;}
.wsaf{word-spacing:0.966549pt;}
.ws8d{word-spacing:1.157333pt;}
.ws98{word-spacing:1.493318pt;}
.ws107{word-spacing:3.088000pt;}
.ws109{word-spacing:3.088608pt;}
.ws11a{word-spacing:11.359886pt;}
.wsc5{word-spacing:11.786549pt;}
.ws131{word-spacing:16.106506pt;}
.ws111{word-spacing:181.574133pt;}
._1a{margin-left:-1245.793823pt;}
._16{margin-left:-8.351907pt;}
._14{margin-left:-7.359926pt;}
._5{margin-left:-6.341330pt;}
._4{margin-left:-4.442580pt;}
._2{margin-left:-3.135932pt;}
._0{margin-left:-1.642667pt;}
._15{width:1.343970pt;}
._11{width:2.659790pt;}
._12{width:3.717955pt;}
._8{width:11.158612pt;}
._6{width:12.437275pt;}
._1{width:13.813136pt;}
._d{width:15.670867pt;}
._17{width:17.173162pt;}
._f{width:18.154481pt;}
._13{width:20.181181pt;}
._e{width:21.173122pt;}
._10{width:24.821134pt;}
._1c{width:25.927678pt;}
._7{width:27.231761pt;}
._9{width:37.668772pt;}
._b{width:58.687162pt;}
._18{width:144.278548pt;}
._1b{width:229.573600pt;}
._a{width:485.590790pt;}
._19{width:487.026103pt;}
._3{width:1378.602451pt;}
._c{width:1908.616762pt;}
.fse{font-size:26.666133pt;}
.fs11{font-size:26.765867pt;}
.fsd{font-size:31.999467pt;}
.fsa{font-size:33.599467pt;}
.fs10{font-size:33.724800pt;}
.fs13{font-size:35.411200pt;}
.fs15{font-size:36.198400pt;}
.fs6{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fsf{font-size:37.472000pt;}
.fs9{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:43.619896pt;}
.fsb{font-size:47.999467pt;}
.fs0{font-size:48.000000pt;}
.fs12{font-size:51.149867pt;}
.fs14{font-size:51.936533pt;}
.fsc{font-size:53.332800pt;}
.fs8{font-size:58.666133pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:127.998400pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.534533pt;}
.y15{bottom:57.706667pt;}
.yaa{bottom:62.590667pt;}
.y46{bottom:63.653333pt;}
.y45{bottom:88.269333pt;}
.y85{bottom:91.548000pt;}
.y1ce{bottom:96.994667pt;}
.y211{bottom:97.078667pt;}
.y128{bottom:98.189333pt;}
.y115{bottom:98.226667pt;}
.y44{bottom:100.936000pt;}
.y198{bottom:100.980000pt;}
.y193{bottom:100.981333pt;}
.y15d{bottom:102.113333pt;}
.y84{bottom:107.548000pt;}
.y1cd{bottom:110.328000pt;}
.y210{bottom:110.412000pt;}
.y43{bottom:113.602667pt;}
.y127{bottom:114.189333pt;}
.y114{bottom:114.226667pt;}
.y15c{bottom:115.446667pt;}
.y197{bottom:116.980000pt;}
.y192{bottom:116.981333pt;}
.ya9{bottom:123.548000pt;}
.y1cc{bottom:123.661333pt;}
.y20f{bottom:123.745333pt;}
.y42{bottom:126.269333pt;}
.y15b{bottom:128.780000pt;}
.y113{bottom:130.226667pt;}
.y196{bottom:132.980000pt;}
.y191{bottom:132.981333pt;}
.y1cb{bottom:136.994667pt;}
.y20e{bottom:137.078667pt;}
.y83{bottom:138.214667pt;}
.y126{bottom:139.522667pt;}
.ya8{bottom:139.548000pt;}
.y156{bottom:142.554667pt;}
.y112{bottom:146.226667pt;}
.y195{bottom:148.980000pt;}
.y190{bottom:148.981333pt;}
.y1ca{bottom:150.328000pt;}
.y20d{bottom:150.412000pt;}
.y13f{bottom:154.015600pt;}
.y125{bottom:154.189333pt;}
.yc6{bottom:155.309333pt;}
.ya7{bottom:155.548000pt;}
.y13e{bottom:157.950533pt;}
.y155{bottom:158.554667pt;}
.y111{bottom:162.226667pt;}
.y140{bottom:162.868400pt;}
.y1c9{bottom:163.661333pt;}
.y20c{bottom:163.745333pt;}
.y18f{bottom:164.981333pt;}
.y41{bottom:170.873333pt;}
.yc5{bottom:171.309333pt;}
.ya6{bottom:171.548000pt;}
.y154{bottom:174.554667pt;}
.y142{bottom:175.852267pt;}
.y40{bottom:176.300000pt;}
.y1c8{bottom:176.994667pt;}
.y20b{bottom:177.078667pt;}
.y110{bottom:178.226667pt;}
.y194{bottom:179.645333pt;}
.y18e{bottom:180.981333pt;}
.y82{bottom:184.220000pt;}
.yc4{bottom:187.309333pt;}
.ya5{bottom:187.548000pt;}
.y1c7{bottom:190.328000pt;}
.y20a{bottom:190.412000pt;}
.y153{bottom:190.554667pt;}
.y3f{bottom:192.621333pt;}
.y10f{bottom:194.226667pt;}
.y18d{bottom:196.981333pt;}
.y81{bottom:200.220000pt;}
.y124{bottom:202.226667pt;}
.yc3{bottom:203.309333pt;}
.ya4{bottom:203.548000pt;}
.y1c6{bottom:203.661333pt;}
.y209{bottom:203.745333pt;}
.y152{bottom:206.554667pt;}
.y10e{bottom:210.226667pt;}
.y18c{bottom:212.981333pt;}
.y80{bottom:216.220000pt;}
.y1c5{bottom:216.994667pt;}
.y208{bottom:217.078667pt;}
.y123{bottom:218.226667pt;}
.yc2{bottom:219.309333pt;}
.ya3{bottom:219.548000pt;}
.y151{bottom:222.554667pt;}
.y10d{bottom:226.226667pt;}
.y18b{bottom:228.981333pt;}
.y1c4{bottom:230.328000pt;}
.y207{bottom:230.412000pt;}
.y7f{bottom:232.220000pt;}
.y122{bottom:234.226667pt;}
.yc1{bottom:235.309333pt;}
.ya2{bottom:235.548000pt;}
.y150{bottom:238.554667pt;}
.y10c{bottom:242.226667pt;}
.y1c3{bottom:243.661333pt;}
.y206{bottom:243.745333pt;}
.y18a{bottom:244.981333pt;}
.y7e{bottom:248.220000pt;}
.y121{bottom:250.226667pt;}
.yc0{bottom:251.309333pt;}
.ya1{bottom:251.548000pt;}
.y14f{bottom:254.554667pt;}
.y1c2{bottom:256.994667pt;}
.y205{bottom:257.078667pt;}
.y3e{bottom:257.398667pt;}
.y10b{bottom:258.226667pt;}
.y189{bottom:260.981333pt;}
.y7d{bottom:264.220000pt;}
.y120{bottom:266.226667pt;}
.ybf{bottom:267.309333pt;}
.ya0{bottom:267.548000pt;}
.y1c1{bottom:270.328000pt;}
.y204{bottom:270.412000pt;}
.y14e{bottom:270.554667pt;}
.y10a{bottom:274.226667pt;}
.y188{bottom:276.981333pt;}
.y7c{bottom:280.220000pt;}
.y11f{bottom:282.226667pt;}
.ybe{bottom:283.309333pt;}
.y9f{bottom:283.548000pt;}
.y1c0{bottom:283.661333pt;}
.y203{bottom:283.745333pt;}
.y3d{bottom:285.352000pt;}
.y14d{bottom:286.554667pt;}
.y109{bottom:290.226667pt;}
.y187{bottom:292.981333pt;}
.y7b{bottom:296.220000pt;}
.y1bf{bottom:296.994667pt;}
.y202{bottom:297.078667pt;}
.y11e{bottom:298.226667pt;}
.ybd{bottom:299.309333pt;}
.y9e{bottom:299.548000pt;}
.y14c{bottom:302.554667pt;}
.y108{bottom:306.226667pt;}
.y186{bottom:308.981333pt;}
.y1be{bottom:310.328000pt;}
.y201{bottom:310.412000pt;}
.y3c{bottom:311.976000pt;}
.y7a{bottom:312.220000pt;}
.y11d{bottom:314.226667pt;}
.ybc{bottom:315.309333pt;}
.y9d{bottom:315.548000pt;}
.y14b{bottom:318.554667pt;}
.y107{bottom:322.226667pt;}
.y1bd{bottom:323.661333pt;}
.y200{bottom:323.745333pt;}
.y185{bottom:324.981333pt;}
.y3b{bottom:327.976000pt;}
.y79{bottom:328.220000pt;}
.y11c{bottom:330.226667pt;}
.ybb{bottom:331.309333pt;}
.y9c{bottom:331.548000pt;}
.y14a{bottom:334.554667pt;}
.y1bc{bottom:336.994667pt;}
.y1ff{bottom:337.078667pt;}
.y106{bottom:338.226667pt;}
.y184{bottom:340.981333pt;}
.y3a{bottom:343.976000pt;}
.y78{bottom:344.220000pt;}
.y11b{bottom:346.226667pt;}
.yba{bottom:347.309333pt;}
.y9b{bottom:347.548000pt;}
.y1bb{bottom:350.328000pt;}
.y1fe{bottom:350.412000pt;}
.y149{bottom:350.554667pt;}
.y105{bottom:354.226667pt;}
.y183{bottom:356.981333pt;}
.y39{bottom:359.976000pt;}
.y77{bottom:360.220000pt;}
.y11a{bottom:362.226667pt;}
.yb9{bottom:363.309333pt;}
.y9a{bottom:363.548000pt;}
.y1ba{bottom:363.661333pt;}
.y1fd{bottom:363.745333pt;}
.y148{bottom:366.554667pt;}
.y104{bottom:370.226667pt;}
.y182{bottom:372.981333pt;}
.y38{bottom:375.976000pt;}
.y76{bottom:376.220000pt;}
.y1b9{bottom:376.994667pt;}
.y1fc{bottom:377.078667pt;}
.y173{bottom:378.214667pt;}
.y119{bottom:378.226667pt;}
.yb8{bottom:379.309333pt;}
.y99{bottom:379.548000pt;}
.y103{bottom:386.226667pt;}
.y181{bottom:388.981333pt;}
.y1b8{bottom:390.328000pt;}
.y1fb{bottom:390.412000pt;}
.y37{bottom:391.976000pt;}
.y75{bottom:392.220000pt;}
.y118{bottom:394.226667pt;}
.yb7{bottom:395.309333pt;}
.y98{bottom:395.548000pt;}
.y102{bottom:402.226667pt;}
.y1b7{bottom:403.661333pt;}
.y1fa{bottom:403.745333pt;}
.y74{bottom:404.328000pt;}
.y180{bottom:404.981333pt;}
.y36{bottom:407.976000pt;}
.y73{bottom:408.220000pt;}
.y147{bottom:408.504000pt;}
.y117{bottom:410.226667pt;}
.yb6{bottom:411.309333pt;}
.y97{bottom:411.548000pt;}
.y1b6{bottom:416.994667pt;}
.y1f9{bottom:417.078667pt;}
.y17f{bottom:420.981333pt;}
.y146{bottom:421.837333pt;}
.y72{bottom:422.969333pt;}
.y15a{bottom:423.393333pt;}
.y35{bottom:423.976000pt;}
.y172{bottom:424.252000pt;}
.y116{bottom:426.226667pt;}
.y71{bottom:426.746667pt;}
.yb5{bottom:427.309333pt;}
.y96{bottom:427.548000pt;}
.y101{bottom:427.560000pt;}
.y1b5{bottom:430.328000pt;}
.y1f8{bottom:430.412000pt;}
.y141{bottom:433.972000pt;}
.y145{bottom:435.170667pt;}
.y159{bottom:436.726667pt;}
.y17e{bottom:436.981333pt;}
.y171{bottom:437.585333pt;}
.y34{bottom:439.976000pt;}
.y100{bottom:442.226667pt;}
.y70{bottom:442.746667pt;}
.yb4{bottom:443.309333pt;}
.y95{bottom:443.548000pt;}
.y1b4{bottom:443.661333pt;}
.y1f7{bottom:443.745333pt;}
.y144{bottom:448.504000pt;}
.y158{bottom:450.060000pt;}
.y170{bottom:450.918667pt;}
.y17d{bottom:452.981333pt;}
.y6f{bottom:454.854667pt;}
.y6d{bottom:454.969333pt;}
.y6e{bottom:455.450667pt;}
.y33{bottom:455.976000pt;}
.y1b3{bottom:456.994667pt;}
.y1f6{bottom:457.078667pt;}
.y6c{bottom:458.746667pt;}
.ye5{bottom:459.309333pt;}
.y94{bottom:459.548000pt;}
.y143{bottom:461.837333pt;}
.y157{bottom:463.393333pt;}
.y16f{bottom:464.252000pt;}
.y17c{bottom:468.981333pt;}
.y1b2{bottom:470.328000pt;}
.y1f5{bottom:470.412000pt;}
.y32{bottom:471.976000pt;}
.y6b{bottom:474.746667pt;}
.ye4{bottom:475.309333pt;}
.y93{bottom:475.548000pt;}
.y16e{bottom:477.585333pt;}
.y1b1{bottom:483.661333pt;}
.y1f4{bottom:483.745333pt;}
.yff{bottom:484.176000pt;}
.y17b{bottom:484.981333pt;}
.y13d{bottom:485.797333pt;}
.yb3{bottom:486.813333pt;}
.y31{bottom:487.976000pt;}
.y6a{bottom:490.746667pt;}
.y16d{bottom:490.918667pt;}
.ye3{bottom:491.309333pt;}
.y92{bottom:491.548000pt;}
.ye8{bottom:491.642667pt;}
.y1b0{bottom:496.994667pt;}
.y1f3{bottom:497.078667pt;}
.yfe{bottom:497.509333pt;}
.yb2{bottom:500.146667pt;}
.y17a{bottom:500.981333pt;}
.y69{bottom:502.969333pt;}
.y30{bottom:503.976000pt;}
.ye7{bottom:504.976000pt;}
.y68{bottom:506.746667pt;}
.ye2{bottom:507.309333pt;}
.y91{bottom:507.548000pt;}
.y1af{bottom:510.328000pt;}
.y1f2{bottom:510.412000pt;}
.yfd{bottom:510.842667pt;}
.yb1{bottom:513.480000pt;}
.y179{bottom:516.981333pt;}
.ye6{bottom:518.309333pt;}
.y2f{bottom:519.976000pt;}
.y66{bottom:521.185333pt;}
.y67{bottom:521.300000pt;}
.ye1{bottom:523.309333pt;}
.y90{bottom:523.548000pt;}
.y1ae{bottom:523.661333pt;}
.y1f1{bottom:523.745333pt;}
.y65{bottom:525.077333pt;}
.yb0{bottom:526.813333pt;}
.y178{bottom:532.981333pt;}
.y2e{bottom:536.036000pt;}
.y1ad{bottom:536.994667pt;}
.y1f0{bottom:537.078667pt;}
.ye0{bottom:539.309333pt;}
.y8f{bottom:539.548000pt;}
.y64{bottom:541.077333pt;}
.y12b{bottom:548.716000pt;}
.y177{bottom:548.981333pt;}
.y1ac{bottom:550.328000pt;}
.y1ef{bottom:550.412000pt;}
.ydf{bottom:555.309333pt;}
.y8e{bottom:555.548000pt;}
.y63{bottom:557.077333pt;}
.y12a{bottom:562.049333pt;}
.y1ab{bottom:563.661333pt;}
.y1ee{bottom:563.745333pt;}
.yde{bottom:571.309333pt;}
.y8d{bottom:571.548000pt;}
.y2d{bottom:572.825333pt;}
.y62{bottom:573.077333pt;}
.y129{bottom:575.382667pt;}
.y1aa{bottom:576.994667pt;}
.y1ed{bottom:577.078667pt;}
.ydd{bottom:587.309333pt;}
.y2c{bottom:587.492000pt;}
.y8c{bottom:587.548000pt;}
.y61{bottom:589.077333pt;}
.y1a9{bottom:590.328000pt;}
.y1ec{bottom:590.412000pt;}
.y176{bottom:590.930667pt;}
.y2b{bottom:602.158667pt;}
.ydc{bottom:603.309333pt;}
.y8b{bottom:603.548000pt;}
.y1a8{bottom:603.660000pt;}
.y1eb{bottom:603.744000pt;}
.y175{bottom:604.264000pt;}
.y60{bottom:605.077333pt;}
.y1a7{bottom:616.993333pt;}
.y1ea{bottom:617.077333pt;}
.y174{bottom:617.597333pt;}
.ydb{bottom:619.309333pt;}
.y8a{bottom:619.548000pt;}
.y5f{bottom:621.077333pt;}
.y1a6{bottom:630.326667pt;}
.y1e9{bottom:630.410667pt;}
.y2a{bottom:634.093333pt;}
.yda{bottom:635.309333pt;}
.y89{bottom:635.548000pt;}
.y5e{bottom:637.077333pt;}
.yfb{bottom:639.633333pt;}
.y1a5{bottom:643.660000pt;}
.y1e8{bottom:643.744000pt;}
.yfc{bottom:644.230667pt;}
.yfa{bottom:649.480000pt;}
.yd9{bottom:651.309333pt;}
.y88{bottom:651.548000pt;}
.y5d{bottom:653.077333pt;}
.yf9{bottom:654.130667pt;}
.y1a4{bottom:656.993333pt;}
.y1e7{bottom:657.077333pt;}
.yd8{bottom:667.309333pt;}
.y13c{bottom:667.548000pt;}
.y29{bottom:668.152000pt;}
.y5c{bottom:669.077333pt;}
.y1a3{bottom:670.326667pt;}
.y1e6{bottom:670.410667pt;}
.y28{bottom:682.818667pt;}
.yd7{bottom:683.309333pt;}
.y13b{bottom:683.548000pt;}
.y1a2{bottom:683.660000pt;}
.y1e5{bottom:683.744000pt;}
.y5b{bottom:685.077333pt;}
.y1a1{bottom:696.993333pt;}
.y1e4{bottom:697.077333pt;}
.y27{bottom:697.485333pt;}
.yd6{bottom:699.309333pt;}
.y13a{bottom:699.548000pt;}
.y5a{bottom:701.077333pt;}
.y87{bottom:703.281333pt;}
.yaf{bottom:706.964000pt;}
.y1e3{bottom:710.410667pt;}
.y26{bottom:712.152000pt;}
.yf8{bottom:714.450667pt;}
.yd5{bottom:715.309333pt;}
.y139{bottom:715.548000pt;}
.y86{bottom:716.614667pt;}
.y59{bottom:717.077333pt;}
.yae{bottom:720.297333pt;}
.y1e2{bottom:723.744000pt;}
.y1a0{bottom:724.993333pt;}
.y25{bottom:726.818667pt;}
.yf7{bottom:730.450667pt;}
.yd4{bottom:731.309333pt;}
.y138{bottom:731.548000pt;}
.y58{bottom:733.077333pt;}
.yad{bottom:733.630667pt;}
.y1e1{bottom:737.077333pt;}
.y24{bottom:741.485333pt;}
.yf6{bottom:746.450667pt;}
.yac{bottom:746.964000pt;}
.yd3{bottom:747.309333pt;}
.y137{bottom:747.548000pt;}
.y57{bottom:749.077333pt;}
.y1e0{bottom:750.410667pt;}
.y23{bottom:751.502667pt;}
.yab{bottom:760.297333pt;}
.yf5{bottom:762.450667pt;}
.yd2{bottom:763.309333pt;}
.y136{bottom:763.548000pt;}
.y1df{bottom:763.744000pt;}
.y56{bottom:765.077333pt;}
.y19f{bottom:769.036000pt;}
.y22{bottom:770.818667pt;}
.y1de{bottom:777.077333pt;}
.yf4{bottom:778.450667pt;}
.yd1{bottom:779.309333pt;}
.y135{bottom:779.548000pt;}
.y55{bottom:781.077333pt;}
.y19e{bottom:785.036000pt;}
.y21{bottom:785.485333pt;}
.y14{bottom:787.786667pt;}
.y1dd{bottom:790.410667pt;}
.y16c{bottom:792.029333pt;}
.yf3{bottom:794.450667pt;}
.yd0{bottom:795.309333pt;}
.y20{bottom:795.502667pt;}
.y134{bottom:795.548000pt;}
.y54{bottom:797.077333pt;}
.y13{bottom:798.453333pt;}
.y19d{bottom:801.036000pt;}
.y6{bottom:802.800000pt;}
.y1dc{bottom:803.744000pt;}
.y16b{bottom:806.696000pt;}
.y12{bottom:809.120000pt;}
.yf2{bottom:810.450667pt;}
.ycf{bottom:811.309333pt;}
.y133{bottom:811.548000pt;}
.y53{bottom:813.077333pt;}
.y1f{bottom:814.818667pt;}
.y19c{bottom:817.036000pt;}
.y1db{bottom:817.077333pt;}
.y11{bottom:819.786667pt;}
.y169{bottom:821.362667pt;}
.yf1{bottom:826.450667pt;}
.yce{bottom:827.309333pt;}
.y132{bottom:827.548000pt;}
.y5{bottom:828.666667pt;}
.y52{bottom:829.077333pt;}
.y1da{bottom:830.410667pt;}
.y10{bottom:830.453333pt;}
.y19b{bottom:833.036000pt;}
.y1e{bottom:834.722667pt;}
.y16a{bottom:836.029333pt;}
.yf0{bottom:842.450667pt;}
.y131{bottom:843.548000pt;}
.y1d9{bottom:843.744000pt;}
.y51{bottom:845.077333pt;}
.y19a{bottom:849.036000pt;}
.y168{bottom:850.696000pt;}
.yf{bottom:851.120000pt;}
.y1d{bottom:852.056000pt;}
.y1d8{bottom:857.077333pt;}
.ycd{bottom:857.976000pt;}
.yef{bottom:858.450667pt;}
.y130{bottom:859.548000pt;}
.y50{bottom:861.077333pt;}
.ye{bottom:861.786667pt;}
.y4{bottom:864.560000pt;}
.y1c{bottom:869.389333pt;}
.y1d7{bottom:870.410667pt;}
.y167{bottom:871.769333pt;}
.yd{bottom:872.453333pt;}
.yee{bottom:874.450667pt;}
.y166{bottom:875.362667pt;}
.y12f{bottom:875.548000pt;}
.y4f{bottom:877.077333pt;}
.y199{bottom:879.702667pt;}
.yc{bottom:883.120000pt;}
.y1d6{bottom:883.744000pt;}
.y165{bottom:890.118667pt;}
.yed{bottom:890.450667pt;}
.y12e{bottom:891.548000pt;}
.y4e{bottom:893.077333pt;}
.yb{bottom:893.786667pt;}
.y1d5{bottom:897.077333pt;}
.y3{bottom:898.813333pt;}
.y164{bottom:904.785333pt;}
.yec{bottom:906.450667pt;}
.y12d{bottom:907.548000pt;}
.ycc{bottom:907.744000pt;}
.y4d{bottom:909.077333pt;}
.y1d4{bottom:910.410667pt;}
.ya{bottom:914.453333pt;}
.y1b{bottom:920.737333pt;}
.yeb{bottom:922.450667pt;}
.ycb{bottom:923.744000pt;}
.y2{bottom:924.413333pt;}
.y4c{bottom:925.077333pt;}
.y9{bottom:925.120000pt;}
.y163{bottom:929.450667pt;}
.y8{bottom:935.786667pt;}
.y1d3{bottom:937.077333pt;}
.y12c{bottom:938.214667pt;}
.yea{bottom:938.450667pt;}
.yca{bottom:939.744000pt;}
.y162{bottom:940.525333pt;}
.y4b{bottom:941.077333pt;}
.y161{bottom:944.117333pt;}
.y1d2{bottom:950.410667pt;}
.yc9{bottom:955.744000pt;}
.y4a{bottom:957.077333pt;}
.y7{bottom:958.453333pt;}
.y1a{bottom:960.737333pt;}
.y1{bottom:961.320000pt;}
.y1d1{bottom:963.744000pt;}
.ye9{bottom:967.769333pt;}
.y160{bottom:968.702667pt;}
.yc8{bottom:971.744000pt;}
.y49{bottom:973.077333pt;}
.y1d0{bottom:977.077333pt;}
.yc7{bottom:987.744000pt;}
.y1cf{bottom:990.410667pt;}
.y15f{bottom:992.228000pt;}
.y48{bottom:1003.744000pt;}
.y15e{bottom:1005.561333pt;}
.y19{bottom:1017.004000pt;}
.y16{bottom:1033.536000pt;}
.y18{bottom:1036.325333pt;}
.y47{bottom:1043.742667pt;}
.h9{height:11.687493pt;}
.h15{height:12.399752pt;}
.h13{height:22.399627pt;}
.he{height:23.519627pt;}
.h2c{height:23.601703pt;}
.h30{height:23.607360pt;}
.h27{height:26.230400pt;}
.ha{height:26.805333pt;}
.h28{height:27.999600pt;}
.hb{height:28.932920pt;}
.h14{height:29.866293pt;}
.h3{height:32.000000pt;}
.h4{height:32.714922pt;}
.h2e{height:33.594293pt;}
.hf{height:33.599627pt;}
.h2b{height:34.091586pt;}
.h2d{height:34.615902pt;}
.h25{height:35.327607pt;}
.h10{height:35.375607pt;}
.h11{height:37.332960pt;}
.h24{height:37.652957pt;}
.h7{height:38.937500pt;}
.h16{height:39.306274pt;}
.h12{height:39.999600pt;}
.h22{height:40.175752pt;}
.h32{height:40.836993pt;}
.h31{height:40.842326pt;}
.h33{height:41.423659pt;}
.h2f{height:41.428993pt;}
.h34{height:41.900623pt;}
.h5{height:44.500000pt;}
.h1b{height:45.585067pt;}
.h1{height:50.062500pt;}
.h20{height:50.516960pt;}
.h17{height:50.815600pt;}
.h1c{height:52.442293pt;}
.h1a{height:52.900960pt;}
.hd{height:53.775627pt;}
.h21{height:55.108933pt;}
.h1f{height:60.538267pt;}
.h18{height:61.153067pt;}
.h1d{height:62.463600pt;}
.h23{height:62.922267pt;}
.h1e{height:63.999600pt;}
.h2{height:64.000000pt;}
.h19{height:65.924933pt;}
.h6{height:66.750000pt;}
.h29{height:77.252957pt;}
.h26{height:87.407979pt;}
.hc{height:94.334821pt;}
.h2a{height:526.632000pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:230.961333pt;}
.w4{width:496.000000pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.xa{left:63.761333pt;}
.x2f{left:64.653333pt;}
.x26{left:68.245333pt;}
.x2a{left:70.653333pt;}
.x19{left:73.388000pt;}
.xe{left:79.701333pt;}
.xb{left:84.100933pt;}
.x2b{left:103.312000pt;}
.x25{left:114.753867pt;}
.x24{left:117.114533pt;}
.xf{left:122.908000pt;}
.xd{left:138.500000pt;}
.x2d{left:142.622667pt;}
.x22{left:149.971333pt;}
.x21{left:151.505333pt;}
.x23{left:160.005867pt;}
.x13{left:168.160000pt;}
.x10{left:186.564000pt;}
.x9{left:189.426667pt;}
.x2{left:196.480000pt;}
.x14{left:197.949333pt;}
.x3{left:216.613333pt;}
.x27{left:224.540000pt;}
.x15{left:235.685333pt;}
.x4{left:246.253333pt;}
.x2c{left:258.433333pt;}
.x16{left:268.976000pt;}
.x11{left:277.950667pt;}
.x2e{left:285.984000pt;}
.x28{left:300.722667pt;}
.x5{left:305.493333pt;}
.x17{left:326.201333pt;}
.x12{left:335.742667pt;}
.x18{left:343.969333pt;}
.x29{left:394.572000pt;}
.x1c{left:396.910667pt;}
.x1a{left:407.474667pt;}
.x30{left:408.368000pt;}
.x1b{left:423.414667pt;}
.x31{left:447.026667pt;}
.x1d{left:488.541333pt;}
.x6{left:538.213333pt;}
.x8{left:558.213333pt;}
.x7{left:563.920000pt;}
.x1f{left:582.798667pt;}
.x1e{left:601.442667pt;}
.x20{left:629.626667pt;}
.xc{left:673.005333pt;}
}




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