
    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_92f28a938f4c1ef30a460f7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_72e6d78badbecf49eaf7bd8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_10f06e905536d039ef4bce39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_4cc7df6d525d9b357d0e2df3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_98675c1b1d4136ec30b97835.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_24fac6b313fe3f8cb2395469.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7d0fb451f12f468531814dfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_e77880c35ef7554552cceb16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.667000;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_2177e1381c3d05366836c0e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_fc319ededa2b497d3a24b515.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_0c449f908ecda5e38016f299.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_b4e330155223d6f325eaedce.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.015137;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_c677bfee98b46af473823da0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_2177e1381c3d05366836c0e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_7f53b9299d97636bde2ccd0f.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_9a187a606d1bbd7e4870cc88.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_93ca108b678d47b0c700ba80.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.054688;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_befee4d9ffc078e1171aec61.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3dbce5b6e49279a925971d78.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.015137;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_58811cb08d685143f5421a98.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.740000;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_6ecefce9f6a1aa1d30c1e0ae.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.683000;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v7{vertical-align:32.874000px;}
.v6{vertical-align:40.322484px;}
.v5{vertical-align:42.120072px;}
.ls6d{letter-spacing:-0.348696px;}
.ls6f{letter-spacing:-0.336672px;}
.ls75{letter-spacing:-0.240480px;}
.ls7a{letter-spacing:-0.198396px;}
.ls4a{letter-spacing:-0.168336px;}
.ls49{letter-spacing:-0.162324px;}
.ls47{letter-spacing:-0.156312px;}
.ls71{letter-spacing:-0.144288px;}
.ls70{letter-spacing:-0.138276px;}
.ls3d{letter-spacing:-0.132264px;}
.ls72{letter-spacing:-0.126252px;}
.ls7b{letter-spacing:-0.120240px;}
.ls41{letter-spacing:-0.114228px;}
.ls3f{letter-spacing:-0.108216px;}
.ls4c{letter-spacing:-0.102204px;}
.ls48{letter-spacing:-0.096192px;}
.ls3e{letter-spacing:-0.090180px;}
.ls40{letter-spacing:-0.084168px;}
.ls43{letter-spacing:-0.078156px;}
.ls44{letter-spacing:-0.072144px;}
.ls42{letter-spacing:-0.060120px;}
.ls76{letter-spacing:-0.042084px;}
.ls77{letter-spacing:-0.036072px;}
.ls4b{letter-spacing:-0.030060px;}
.ls3c{letter-spacing:-0.028728px;}
.ls74{letter-spacing:-0.021600px;}
.ls6e{letter-spacing:-0.018036px;}
.ls6c{letter-spacing:-0.016200px;}
.ls73{letter-spacing:-0.012024px;}
.ls45{letter-spacing:-0.006012px;}
.ls4e{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls98{letter-spacing:0.000208px;}
.ls9b{letter-spacing:0.000406px;}
.ls7f{letter-spacing:0.000496px;}
.ls7e{letter-spacing:0.000589px;}
.ls0{letter-spacing:0.000600px;}
.ls7c{letter-spacing:0.000676px;}
.ls8c{letter-spacing:0.000800px;}
.ls8a{letter-spacing:0.001036px;}
.ls8b{letter-spacing:0.001155px;}
.ls86{letter-spacing:0.001211px;}
.ls94{letter-spacing:0.001565px;}
.ls8e{letter-spacing:0.001584px;}
.ls87{letter-spacing:0.001651px;}
.ls97{letter-spacing:0.001701px;}
.ls3{letter-spacing:0.001831px;}
.ls80{letter-spacing:0.002074px;}
.ls96{letter-spacing:0.002338px;}
.ls8d{letter-spacing:0.002544px;}
.ls93{letter-spacing:0.002841px;}
.ls9c{letter-spacing:0.003075px;}
.ls1{letter-spacing:0.003299px;}
.lsf{letter-spacing:0.003389px;}
.ls91{letter-spacing:0.003455px;}
.ls99{letter-spacing:0.003646px;}
.ls84{letter-spacing:0.003830px;}
.ls81{letter-spacing:0.003859px;}
.ls82{letter-spacing:0.004026px;}
.ls19{letter-spacing:0.004788px;}
.ls85{letter-spacing:0.004800px;}
.ls2e{letter-spacing:0.005400px;}
.ls30{letter-spacing:0.006012px;}
.ls2f{letter-spacing:0.010800px;}
.ls23{letter-spacing:0.012024px;}
.ls36{letter-spacing:0.016200px;}
.ls50{letter-spacing:0.018036px;}
.ls3a{letter-spacing:0.021600px;}
.ls4f{letter-spacing:0.024048px;}
.ls32{letter-spacing:0.027000px;}
.ls54{letter-spacing:0.030060px;}
.ls34{letter-spacing:0.032400px;}
.ls58{letter-spacing:0.036072px;}
.ls37{letter-spacing:0.037800px;}
.ls27{letter-spacing:0.042084px;}
.ls39{letter-spacing:0.043200px;}
.ls35{letter-spacing:0.048600px;}
.ls3b{letter-spacing:0.054000px;}
.ls1e{letter-spacing:0.054108px;}
.ls2d{letter-spacing:0.060120px;}
.ls38{letter-spacing:0.064800px;}
.ls79{letter-spacing:0.066132px;}
.ls51{letter-spacing:0.070200px;}
.ls1f{letter-spacing:0.072144px;}
.ls5b{letter-spacing:0.078156px;}
.ls28{letter-spacing:0.084168px;}
.ls21{letter-spacing:0.090180px;}
.ls20{letter-spacing:0.096192px;}
.ls1a{letter-spacing:0.102204px;}
.ls33{letter-spacing:0.102600px;}
.ls4d{letter-spacing:0.108216px;}
.ls78{letter-spacing:0.114228px;}
.ls57{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.132264px;}
.ls46{letter-spacing:0.138276px;}
.ls53{letter-spacing:0.144288px;}
.ls22{letter-spacing:0.150300px;}
.ls24{letter-spacing:0.156312px;}
.ls52{letter-spacing:0.162324px;}
.ls26{letter-spacing:0.168336px;}
.ls18{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.192384px;}
.ls5d{letter-spacing:0.204408px;}
.ls5e{letter-spacing:0.282564px;}
.ls5c{letter-spacing:0.456912px;}
.ls66{letter-spacing:0.642088px;}
.ls67{letter-spacing:0.648088px;}
.ls6b{letter-spacing:0.717483px;}
.ls6a{letter-spacing:0.723483px;}
.ls1d{letter-spacing:0.817632px;}
.ls1b{letter-spacing:1.178352px;}
.ls5f{letter-spacing:1.539072px;}
.ls60{letter-spacing:1.625400px;}
.ls2a{letter-spacing:1.893780px;}
.ls29{letter-spacing:1.899792px;}
.ls5a{letter-spacing:2.254500px;}
.ls59{letter-spacing:2.615220px;}
.ls25{letter-spacing:2.975940px;}
.ls11{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.989200px;}
.ls55{letter-spacing:4.058100px;}
.ls56{letter-spacing:4.418820px;}
.ls2b{letter-spacing:8.741448px;}
.ls2c{letter-spacing:9.102168px;}
.ls2{letter-spacing:10.521191px;}
.lsa{letter-spacing:11.954850px;}
.ls9a{letter-spacing:13.196069px;}
.ls90{letter-spacing:13.264264px;}
.ls88{letter-spacing:13.410101px;}
.ls7d{letter-spacing:13.448400px;}
.ls89{letter-spacing:13.454400px;}
.ls8f{letter-spacing:13.586617px;}
.ls83{letter-spacing:13.592824px;}
.ls95{letter-spacing:13.617747px;}
.ls64{letter-spacing:14.049300px;}
.ls65{letter-spacing:14.055300px;}
.ls62{letter-spacing:14.142088px;}
.ls61{letter-spacing:14.170800px;}
.ls16{letter-spacing:14.764573px;}
.ls17{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.943767px;}
.ls10{letter-spacing:14.943900px;}
.ls7{letter-spacing:14.944200px;}
.ls68{letter-spacing:14.944665px;}
.ls92{letter-spacing:15.065506px;}
.lse{letter-spacing:15.657483px;}
.ls15{letter-spacing:15.663483px;}
.ls69{letter-spacing:15.687986px;}
.ls14{letter-spacing:15.688200px;}
.lsd{letter-spacing:15.694200px;}
.ls6{letter-spacing:17.929200px;}
.ls13{letter-spacing:23.013606px;}
.ls12{letter-spacing:23.073382px;}
.ls5{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls63{letter-spacing:233.020090px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8c{word-spacing:-60.120000px;}
.ws8d{word-spacing:-15.222384px;}
.ws8b{word-spacing:-15.030000px;}
.wsda{word-spacing:-13.500000px;}
.ws14e{word-spacing:-13.449600px;}
.ws89{word-spacing:-12.161520px;}
.ws8a{word-spacing:-11.970000px;}
.ws32{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws147{word-spacing:-3.168107px;}
.wsd2{word-spacing:-3.121200px;}
.wscc{word-spacing:-3.083400px;}
.wscd{word-spacing:-3.072600px;}
.ws145{word-spacing:-2.749678px;}
.wsd0{word-spacing:-2.732400px;}
.ws14f{word-spacing:-2.689920px;}
.wsd1{word-spacing:-2.689200px;}
.wsb7{word-spacing:-2.482956px;}
.ws68{word-spacing:-2.151922px;}
.wsca{word-spacing:-2.008800px;}
.wsc9{word-spacing:-2.003400px;}
.ws13d{word-spacing:-1.987200px;}
.ws111{word-spacing:-1.976400px;}
.ws41{word-spacing:-1.972595px;}
.ws110{word-spacing:-1.954800px;}
.wsb8{word-spacing:-1.905804px;}
.wsa3{word-spacing:-1.496988px;}
.wsa2{word-spacing:-1.436868px;}
.ws14b{word-spacing:-1.344960px;}
.ws58{word-spacing:-1.315063px;}
.ws8f{word-spacing:-1.291162px;}
.wsa1{word-spacing:-1.286568px;}
.wsa5{word-spacing:-1.274544px;}
.wsa4{word-spacing:-1.268532px;}
.ws60{word-spacing:-1.255288px;}
.ws8e{word-spacing:-1.237363px;}
.wsa0{word-spacing:-1.232460px;}
.ws99{word-spacing:-1.214424px;}
.ws3b{word-spacing:-1.195512px;}
.ws9b{word-spacing:-1.178352px;}
.ws3c{word-spacing:-1.135736px;}
.ws15b{word-spacing:-1.022170px;}
.ws168{word-spacing:-0.968371px;}
.ws3a{word-spacing:-0.956410px;}
.ws148{word-spacing:-0.914573px;}
.ws39{word-spacing:-0.896634px;}
.ws9a{word-spacing:-0.895788px;}
.wsae{word-spacing:-0.817632px;}
.ws5a{word-spacing:-0.777083px;}
.wsad{word-spacing:-0.763524px;}
.ws28{word-spacing:-0.717307px;}
.wsdc{word-spacing:-0.699379px;}
.ws14d{word-spacing:-0.645581px;}
.ws13f{word-spacing:-0.597756px;}
.ws149{word-spacing:-0.591782px;}
.ws11b{word-spacing:-0.511020px;}
.ws56{word-spacing:-0.478205px;}
.ws11d{word-spacing:-0.456912px;}
.ws12c{word-spacing:-0.426852px;}
.ws11c{word-spacing:-0.408816px;}
.wsac{word-spacing:-0.360720px;}
.ws4c{word-spacing:-0.358654px;}
.ws9d{word-spacing:-0.336672px;}
.ws136{word-spacing:-0.330660px;}
.ws139{word-spacing:-0.324648px;}
.ws2e{word-spacing:-0.298878px;}
.ws11e{word-spacing:-0.294588px;}
.ws7f{word-spacing:-0.286924px;}
.ws94{word-spacing:-0.277704px;}
.ws174{word-spacing:-0.268992px;}
.ws104{word-spacing:-0.258516px;}
.ws11a{word-spacing:-0.252504px;}
.ws34{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.wsf6{word-spacing:-0.143462px;}
.ws25{word-spacing:-0.119551px;}
.ws91{word-spacing:-0.107597px;}
.wsba{word-spacing:-0.102204px;}
.ws95{word-spacing:-0.090972px;}
.ws137{word-spacing:-0.066132px;}
.ws10{word-spacing:-0.059776px;}
.ws71{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.wsf9{word-spacing:-0.018678px;}
.wsf8{word-spacing:-0.012796px;}
.wsfc{word-spacing:-0.012705px;}
.ws55{word-spacing:-0.007465px;}
.ws52{word-spacing:-0.006283px;}
.ws107{word-spacing:-0.006012px;}
.wsf{word-spacing:-0.001699px;}
.ws13{word-spacing:-0.001192px;}
.ws1{word-spacing:0.000000px;}
.ws101{word-spacing:0.003000px;}
.ws11{word-spacing:0.003608px;}
.ws5{word-spacing:0.041843px;}
.wsdb{word-spacing:0.053798px;}
.ws10d{word-spacing:0.054108px;}
.ws3d{word-spacing:0.059776px;}
.wsfb{word-spacing:0.061000px;}
.wsfe{word-spacing:0.073048px;}
.ws106{word-spacing:0.084168px;}
.wsfd{word-spacing:0.089226px;}
.ws16a{word-spacing:0.107597px;}
.ws12b{word-spacing:0.108216px;}
.ws105{word-spacing:0.114228px;}
.ws27{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.wsd9{word-spacing:0.129600px;}
.ws12d{word-spacing:0.132264px;}
.ws92{word-spacing:0.161395px;}
.ws103{word-spacing:0.162000px;}
.wsbd{word-spacing:0.172800px;}
.ws12a{word-spacing:0.174348px;}
.wsbb{word-spacing:0.178200px;}
.ws30{word-spacing:0.179327px;}
.ws9f{word-spacing:0.180360px;}
.wsbc{word-spacing:0.183600px;}
.wsb9{word-spacing:0.192384px;}
.ws102{word-spacing:0.199800px;}
.ws9e{word-spacing:0.204408px;}
.wsde{word-spacing:0.215194px;}
.ws138{word-spacing:0.216432px;}
.ws2a{word-spacing:0.239102px;}
.ws130{word-spacing:0.252504px;}
.ws15a{word-spacing:0.268992px;}
.ws86{word-spacing:0.298878px;}
.ws93{word-spacing:0.301644px;}
.ws90{word-spacing:0.376589px;}
.ws29{word-spacing:0.418429px;}
.ws128{word-spacing:0.438876px;}
.ws129{word-spacing:0.498996px;}
.ws3f{word-spacing:0.537980px;}
.ws5b{word-spacing:0.657532px;}
.wsef{word-spacing:0.667267px;}
.wsf1{word-spacing:0.667978px;}
.wsed{word-spacing:0.668400px;}
.wseb{word-spacing:0.670022px;}
.wsf4{word-spacing:0.671222px;}
.wse5{word-spacing:0.671443px;}
.wse2{word-spacing:0.672355px;}
.wse9{word-spacing:0.672422px;}
.wsdf{word-spacing:0.674755px;}
.wsce{word-spacing:0.685368px;}
.ws131{word-spacing:0.703404px;}
.ws40{word-spacing:0.717307px;}
.ws9c{word-spacing:0.763524px;}
.ws26{word-spacing:0.777083px;}
.ws85{word-spacing:0.836858px;}
.ws113{word-spacing:0.837000px;}
.ws12e{word-spacing:0.859716px;}
.ws112{word-spacing:0.891000px;}
.wscf{word-spacing:0.919836px;}
.ws12f{word-spacing:0.985968px;}
.ws97{word-spacing:1.028052px;}
.ws133{word-spacing:1.034064px;}
.ws70{word-spacing:1.075961px;}
.ws96{word-spacing:1.076148px;}
.ws98{word-spacing:1.082160px;}
.wsb1{word-spacing:1.136268px;}
.wsa7{word-spacing:1.166328px;}
.wsa6{word-spacing:1.184364px;}
.ws67{word-spacing:1.195512px;}
.ws1e{word-spacing:1.237363px;}
.ws13c{word-spacing:1.242000px;}
.ws1d{word-spacing:1.291162px;}
.ws57{word-spacing:1.315063px;}
.ws135{word-spacing:1.346688px;}
.ws38{word-spacing:1.374839px;}
.ws118{word-spacing:1.376748px;}
.wse{word-spacing:1.380812px;}
.wsb3{word-spacing:1.388772px;}
.wsfa{word-spacing:1.434614px;}
.ws119{word-spacing:1.442880px;}
.wsb4{word-spacing:1.448892px;}
.ws20{word-spacing:1.452557px;}
.ws134{word-spacing:1.454904px;}
.wsaf{word-spacing:1.484964px;}
.ws141{word-spacing:1.494390px;}
.ws132{word-spacing:1.503000px;}
.wsb0{word-spacing:1.539072px;}
.wsf7{word-spacing:1.554166px;}
.ws13b{word-spacing:1.560600px;}
.ws13a{word-spacing:1.609200px;}
.ws16f{word-spacing:1.610629px;}
.ws5f{word-spacing:1.613941px;}
.ws16d{word-spacing:1.613952px;}
.ws5d{word-spacing:1.673717px;}
.ws117{word-spacing:1.701396px;}
.ws160{word-spacing:1.775347px;}
.wsb2{word-spacing:1.809612px;}
.ws116{word-spacing:1.839672px;}
.ws6e{word-spacing:1.853044px;}
.ws24{word-spacing:1.912819px;}
.wsd7{word-spacing:1.965600px;}
.ws42{word-spacing:1.972595px;}
.wsd8{word-spacing:1.992600px;}
.ws125{word-spacing:2.062116px;}
.ws124{word-spacing:2.194380px;}
.ws6c{word-spacing:2.211697px;}
.ws6f{word-spacing:2.271473px;}
.ws15f{word-spacing:2.313331px;}
.ws5c{word-spacing:2.391024px;}
.ws126{word-spacing:2.422836px;}
.wsa8{word-spacing:2.458908px;}
.ws0{word-spacing:2.511541px;}
.ws127{word-spacing:2.537064px;}
.ws2d{word-spacing:2.570351px;}
.ws84{word-spacing:2.630126px;}
.wsd6{word-spacing:2.662200px;}
.wsd5{word-spacing:2.694600px;}
.wsff{word-spacing:2.743353px;}
.ws162{word-spacing:2.743718px;}
.ws100{word-spacing:2.749678px;}
.wsab{word-spacing:2.807604px;}
.ws15{word-spacing:2.869236px;}
.ws37{word-spacing:2.988780px;}
.ws16{word-spacing:2.992668px;}
.ws88{word-spacing:3.048556px;}
.wsaa{word-spacing:3.090168px;}
.wsa9{word-spacing:3.108204px;}
.ws87{word-spacing:3.108331px;}
.ws62{word-spacing:3.168107px;}
.ws150{word-spacing:3.224093px;}
.ws14a{word-spacing:3.224822px;}
.ws152{word-spacing:3.225254px;}
.ws143{word-spacing:3.227882px;}
.ws19{word-spacing:3.227904px;}
.ws171{word-spacing:3.230774px;}
.ws69{word-spacing:3.287658px;}
.ws2c{word-spacing:3.347434px;}
.ws161{word-spacing:3.496896px;}
.ws1b{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws83{word-spacing:3.646312px;}
.ws3e{word-spacing:3.706087px;}
.ws142{word-spacing:3.765863px;}
.ws63{word-spacing:3.825638px;}
.ws120{word-spacing:3.895776px;}
.ws5e{word-spacing:4.064741px;}
.ws6d{word-spacing:4.124516px;}
.ws121{word-spacing:4.226436px;}
.ws35{word-spacing:4.244068px;}
.ws36{word-spacing:4.303843px;}
.ws53{word-spacing:4.363619px;}
.ws123{word-spacing:4.382748px;}
.ws51{word-spacing:4.423394px;}
.ws11f{word-spacing:4.533048px;}
.ws1c{word-spacing:4.572864px;}
.ws122{word-spacing:4.659300px;}
.wscb{word-spacing:4.816800px;}
.ws64{word-spacing:4.841824px;}
.ws140{word-spacing:5.021150px;}
.ws80{word-spacing:5.021163px;}
.ws114{word-spacing:5.158296px;}
.ws115{word-spacing:5.200380px;}
.ws1a{word-spacing:5.433638px;}
.wsc{word-spacing:5.481407px;}
.ws14c{word-spacing:5.541235px;}
.ws54{word-spacing:5.559131px;}
.ws65{word-spacing:5.738458px;}
.ws144{word-spacing:5.798233px;}
.ws61{word-spacing:5.977560px;}
.ws66{word-spacing:6.156887px;}
.ws50{word-spacing:6.515540px;}
.ws10f{word-spacing:6.625800px;}
.ws6a{word-spacing:6.635092px;}
.ws10e{word-spacing:6.636600px;}
.ws16e{word-spacing:6.671002px;}
.ws82{word-spacing:6.694867px;}
.ws81{word-spacing:6.754643px;}
.ws1f{word-spacing:6.778598px;}
.ws146{word-spacing:6.933970px;}
.ws6b{word-spacing:7.591501px;}
.ws59{word-spacing:7.651277px;}
.ws75{word-spacing:8.069706px;}
.ws76{word-spacing:8.129482px;}
.ws2f{word-spacing:8.189257px;}
.wsb6{word-spacing:8.549064px;}
.wsb5{word-spacing:8.855676px;}
.ws166{word-spacing:8.984333px;}
.ws4f{word-spacing:9.026116px;}
.ws165{word-spacing:9.038131px;}
.wsa{word-spacing:9.833058px;}
.ws4e{word-spacing:10.640057px;}
.ws164{word-spacing:10.867277px;}
.ws22{word-spacing:11.351462px;}
.wsb{word-spacing:11.841512px;}
.ws47{word-spacing:12.194222px;}
.ws167{word-spacing:12.373632px;}
.ws6{word-spacing:12.929425px;}
.ws7{word-spacing:13.013111px;}
.ws175{word-spacing:13.126810px;}
.ws16c{word-spacing:13.180608px;}
.ws163{word-spacing:13.288205px;}
.ws158{word-spacing:13.353206px;}
.ws15c{word-spacing:13.380038px;}
.ws172{word-spacing:13.384906px;}
.ws170{word-spacing:13.389446px;}
.ws156{word-spacing:13.389994px;}
.ws153{word-spacing:13.391069px;}
.ws157{word-spacing:13.392499px;}
.ws159{word-spacing:13.393632px;}
.ws151{word-spacing:13.395802px;}
.ws154{word-spacing:13.557197px;}
.ws169{word-spacing:14.741779px;}
.ws31{word-spacing:14.776565px;}
.ws45{word-spacing:14.884124px;}
.ws44{word-spacing:15.063451px;}
.ws49{word-spacing:15.123227px;}
.ws46{word-spacing:15.183344px;}
.ws8{word-spacing:15.481836px;}
.wsd3{word-spacing:15.962400px;}
.wsd4{word-spacing:15.984000px;}
.ws15d{word-spacing:16.569907px;}
.ws15e{word-spacing:16.618099px;}
.ws155{word-spacing:16.623706px;}
.ws16b{word-spacing:16.838899px;}
.ws173{word-spacing:16.892698px;}
.ws4d{word-spacing:18.470660px;}
.ws43{word-spacing:18.946939px;}
.ws4b{word-spacing:19.068416px;}
.ws48{word-spacing:19.122684px;}
.ws9{word-spacing:22.339429px;}
.wsd{word-spacing:22.720640px;}
.ws21{word-spacing:26.141314px;}
.ws4a{word-spacing:35.810955px;}
.wsdd{word-spacing:113.504909px;}
.ws10c{word-spacing:127.724940px;}
.ws10b{word-spacing:127.730952px;}
.wsc7{word-spacing:136.815084px;}
.wsc3{word-spacing:137.175804px;}
.wsc1{word-spacing:145.821060px;}
.wsee{word-spacing:156.654000px;}
.wsc5{word-spacing:159.149664px;}
.wsec{word-spacing:159.642000px;}
.wse6{word-spacing:162.654000px;}
.ws72{word-spacing:163.549296px;}
.wsf3{word-spacing:164.136000px;}
.wsf0{word-spacing:165.612000px;}
.wsf2{word-spacing:167.118000px;}
.ws79{word-spacing:167.882400px;}
.wse8{word-spacing:171.132710px;}
.wsf5{word-spacing:173.094000px;}
.ws7c{word-spacing:175.362355px;}
.ws7a{word-spacing:176.839267px;}
.ws7b{word-spacing:178.345978px;}
.ws7d{word-spacing:184.319222px;}
.wse3{word-spacing:185.922000px;}
.ws77{word-spacing:191.791296px;}
.wsc8{word-spacing:196.808832px;}
.ws7e{word-spacing:197.772422px;}
.ws74{word-spacing:202.281984px;}
.wsea{word-spacing:208.326000px;}
.wse0{word-spacing:212.820000px;}
.wsc6{word-spacing:217.700532px;}
.wsc2{word-spacing:218.061252px;}
.wsc0{word-spacing:226.706508px;}
.ws73{word-spacing:230.633741px;}
.wsbe{word-spacing:234.185436px;}
.wse7{word-spacing:235.905984px;}
.ws10a{word-spacing:239.007060px;}
.wsc4{word-spacing:240.029100px;}
.ws78{word-spacing:245.596022px;}
.ws109{word-spacing:253.802592px;}
.wse4{word-spacing:258.393715px;}
.ws108{word-spacing:321.509736px;}
.wsbf{word-spacing:322.231176px;}
.wse1{word-spacing:1372.235789px;}
.ws33{word-spacing:2117.135579px;}
.ws13e{word-spacing:2118.329579px;}
._47{margin-left:-112.197551px;}
._2c{margin-left:-49.701204px;}
._29{margin-left:-46.166148px;}
._28{margin-left:-43.905636px;}
._2b{margin-left:-35.981820px;}
._45{margin-left:-32.801472px;}
._2f{margin-left:-15.421580px;}
._2a{margin-left:-12.601152px;}
._18{margin-left:-7.232848px;}
._5{margin-left:-5.917824px;}
._3e{margin-left:-4.911156px;}
._0{margin-left:-3.891380px;}
._1{margin-left:-2.301466px;}
._a{margin-left:-1.022170px;}
._26{width:1.024632px;}
._7{width:2.996837px;}
._2e{width:6.120216px;}
._3{width:10.502543px;}
._53{width:11.512858px;}
._2{width:12.971268px;}
._9{width:14.274472px;}
._b{width:16.516109px;}
._19{width:17.633802px;}
._10{width:18.769538px;}
._e{width:21.035174px;}
._1a{width:22.176827px;}
._14{width:23.192933px;}
._1c{width:24.280411px;}
._4{width:25.314894px;}
._c{width:26.833536px;}
._13{width:28.034756px;}
._d{width:30.718886px;}
._12{width:31.860395px;}
._6{width:33.355008px;}
._17{width:35.686033px;}
._1b{width:37.044360px;}
._f{width:38.603520px;}
._15{width:40.045334px;}
._1d{width:41.842920px;}
._16{width:46.266314px;}
._8{width:54.406243px;}
._3b{width:66.985704px;}
._3a{width:72.480672px;}
._3c{width:73.917540px;}
._41{width:77.498690px;}
._4c{width:79.303975px;}
._34{width:80.308296px;}
._44{width:84.120034px;}
._31{width:86.157972px;}
._38{width:88.953552px;}
._48{width:94.634286px;}
._33{width:101.199996px;}
._37{width:109.845252px;}
._36{width:116.777088px;}
._32{width:123.528564px;}
._30{width:135.342144px;}
._4b{width:137.981412px;}
._4a{width:141.330096px;}
._35{width:145.153728px;}
._39{width:147.095604px;}
._4d{width:150.696792px;}
._3d{width:153.901188px;}
._4e{width:157.189752px;}
._25{width:160.426829px;}
._46{width:161.933220px;}
._1e{width:167.901487px;}
._42{width:178.309908px;}
._49{width:186.372000px;}
._43{width:191.446128px;}
._50{width:207.016243px;}
._21{width:211.212518px;}
._2d{width:218.662452px;}
._1f{width:220.143053px;}
._22{width:221.703206px;}
._23{width:226.222272px;}
._11{width:227.515883px;}
._24{width:235.152806px;}
._20{width:247.096051px;}
._52{width:250.752922px;}
._51{width:272.555347px;}
._40{width:448.698960px;}
._3f{width:492.113088px;}
._4f{width:577.978087px;}
._27{width:1685.572308px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsb{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs6{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.yd7{bottom:-215.717550px;}
.y106{bottom:-191.647050px;}
.yfd{bottom:-132.738300px;}
.y129{bottom:-131.797050px;}
.yfc{bottom:-115.367850px;}
.yfb{bottom:-98.087850px;}
.y128{bottom:-92.737950px;}
.yfa{bottom:-80.807850px;}
.y127{bottom:-75.367500px;}
.yf9{bottom:-63.437400px;}
.y126{bottom:-58.087500px;}
.yf8{bottom:-41.026362px;}
.y125{bottom:-40.717050px;}
.y124{bottom:-18.306915px;}
.y0{bottom:0.000000px;}
.y46{bottom:31.890000px;}
.y45{bottom:103.621500px;}
.y18{bottom:104.646000px;}
.y175{bottom:108.735000px;}
.yc6{bottom:114.256500px;}
.yaa{bottom:118.699500px;}
.y78{bottom:120.045000px;}
.y44{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y174{bottom:127.564500px;}
.yc5{bottom:133.086000px;}
.ya9{bottom:137.529000px;}
.y77{bottom:138.874500px;}
.y16{bottom:140.422500px;}
.y43{bottom:141.279000px;}
.y173{bottom:146.394000px;}
.yc4{bottom:151.914000px;}
.y193{bottom:151.965000px;}
.ya8{bottom:156.358500px;}
.y76{bottom:157.704000px;}
.y15{bottom:158.310000px;}
.y42{bottom:160.108500px;}
.y172{bottom:165.223500px;}
.y192{bottom:169.225500px;}
.yc3{bottom:170.743500px;}
.ya7{bottom:175.188000px;}
.y14{bottom:176.199000px;}
.y75{bottom:176.533500px;}
.y41{bottom:178.938000px;}
.y171{bottom:184.053000px;}
.y191{bottom:186.486000px;}
.yc2{bottom:189.573000px;}
.y13{bottom:194.086500px;}
.y74{bottom:195.363000px;}
.y40{bottom:197.767500px;}
.y1c6{bottom:198.202500px;}
.ya6{bottom:198.501000px;}
.y170{bottom:202.882500px;}
.y190{bottom:203.746500px;}
.yc1{bottom:208.402500px;}
.y12{bottom:211.974000px;}
.y73{bottom:214.192500px;}
.y1c5{bottom:215.461500px;}
.y3f{bottom:216.597000px;}
.y18f{bottom:221.007000px;}
.y16f{bottom:221.712000px;}
.yc0{bottom:227.232000px;}
.y11{bottom:229.863000px;}
.ya5{bottom:232.125000px;}
.y1c4{bottom:232.722000px;}
.y72{bottom:233.022000px;}
.y3e{bottom:235.426500px;}
.y18e{bottom:238.267500px;}
.y16e{bottom:240.541500px;}
.ybf{bottom:246.061500px;}
.ya4{bottom:250.954500px;}
.y71{bottom:251.851500px;}
.y3d{bottom:254.256000px;}
.y18d{bottom:255.528000px;}
.y102{bottom:255.864000px;}
.y16d{bottom:259.371000px;}
.ya3{bottom:269.784000px;}
.y70{bottom:270.681000px;}
.y1c3{bottom:271.801500px;}
.y18c{bottom:272.788500px;}
.y3c{bottom:273.085500px;}
.y101{bottom:275.097000px;}
.y16c{bottom:278.200500px;}
.ybe{bottom:286.195500px;}
.ya2{bottom:288.613500px;}
.y1c2{bottom:289.062000px;}
.y6f{bottom:289.510500px;}
.y18b{bottom:290.047500px;}
.y3b{bottom:291.915000px;}
.y100{bottom:294.330000px;}
.y16b{bottom:297.030000px;}
.y10{bottom:298.876500px;}
.ybd{bottom:300.391500px;}
.y1c1{bottom:306.321000px;}
.y18a{bottom:307.308000px;}
.ya1{bottom:307.443000px;}
.y123{bottom:307.672743px;}
.y6e{bottom:308.340000px;}
.y3a{bottom:310.744500px;}
.yf7{bottom:311.953188px;}
.yff{bottom:313.561500px;}
.ybc{bottom:314.589000px;}
.y16a{bottom:315.859500px;}
.yf{bottom:316.764000px;}
.y1c0{bottom:323.581500px;}
.y189{bottom:324.568500px;}
.ya0{bottom:326.272500px;}
.y122{bottom:326.843508px;}
.y6d{bottom:327.169500px;}
.y39{bottom:329.574000px;}
.yf6{bottom:331.122450px;}
.yfe{bottom:332.794500px;}
.ybb{bottom:333.432000px;}
.ye{bottom:334.653000px;}
.y169{bottom:334.689000px;}
.y1bf{bottom:340.842000px;}
.y188{bottom:341.829000px;}
.y9f{bottom:345.102000px;}
.y121{bottom:346.106451px;}
.y38{bottom:348.403500px;}
.y141{bottom:349.477500px;}
.y6c{bottom:350.481000px;}
.yd{bottom:352.540500px;}
.y168{bottom:353.518500px;}
.yd4{bottom:355.224000px;}
.yba{bottom:357.073500px;}
.y1be{bottom:358.102500px;}
.y187{bottom:359.089500px;}
.y140{bottom:363.675000px;}
.y9e{bottom:363.931500px;}
.y120{bottom:365.365893px;}
.y37{bottom:367.233000px;}
.yf5{bottom:367.931550px;}
.y167{bottom:372.348000px;}
.y1bd{bottom:375.363000px;}
.y186{bottom:376.350000px;}
.y13f{bottom:377.871000px;}
.yb9{bottom:380.713500px;}
.yc{bottom:380.889000px;}
.y9d{bottom:382.761000px;}
.y6b{bottom:384.105000px;}
.y11f{bottom:384.535155px;}
.yf4{bottom:385.302000px;}
.y36{bottom:386.062500px;}
.y166{bottom:391.177500px;}
.y13e{bottom:392.068500px;}
.y1bc{bottom:392.623500px;}
.y185{bottom:398.092500px;}
.yb{bottom:398.778000px;}
.y9c{bottom:401.589000px;}
.yf3{bottom:402.672450px;}
.y6a{bottom:402.934500px;}
.y11e{bottom:403.794597px;}
.yb8{bottom:404.355000px;}
.y35{bottom:404.892000px;}
.y1bb{bottom:409.884000px;}
.y165{bottom:410.007000px;}
.y13d{bottom:410.911500px;}
.y9b{bottom:420.418500px;}
.y69{bottom:421.764000px;}
.yf1{bottom:422.022450px;}
.y11d{bottom:422.963859px;}
.y34{bottom:423.721500px;}
.ya{bottom:425.631000px;}
.yf2{bottom:425.802450px;}
.y1ba{bottom:427.144500px;}
.yb7{bottom:427.995000px;}
.y164{bottom:428.836500px;}
.y184{bottom:431.716500px;}
.y13c{bottom:434.553000px;}
.y9a{bottom:439.248000px;}
.y68{bottom:440.593500px;}
.y11c{bottom:442.223301px;}
.y33{bottom:442.551000px;}
.yef{bottom:443.082450px;}
.y9{bottom:443.520000px;}
.y1b9{bottom:444.403500px;}
.yf0{bottom:446.862450px;}
.y163{bottom:447.666000px;}
.yb6{bottom:451.636500px;}
.y99{bottom:458.077500px;}
.y13b{bottom:458.193000px;}
.y183{bottom:458.257500px;}
.y67{bottom:459.423000px;}
.y8{bottom:461.407500px;}
.y11b{bottom:461.482743px;}
.y1b8{bottom:461.664000px;}
.yed{bottom:464.052450px;}
.y32{bottom:465.864000px;}
.y162{bottom:466.495500px;}
.yee{bottom:467.832450px;}
.yb5{bottom:475.276500px;}
.y182{bottom:475.831500px;}
.y98{bottom:476.907000px;}
.y66{bottom:478.252500px;}
.y1b7{bottom:478.924500px;}
.y7{bottom:479.295000px;}
.y11a{bottom:480.653508px;}
.y13a{bottom:481.834500px;}
.yeb{bottom:485.022450px;}
.y161{bottom:485.323500px;}
.yec{bottom:488.802450px;}
.y97{bottom:495.736500px;}
.y1b6{bottom:496.185000px;}
.y6{bottom:497.184000px;}
.yb4{bottom:498.918000px;}
.y119{bottom:499.912950px;}
.y65{bottom:501.565500px;}
.y181{bottom:502.372500px;}
.y160{bottom:504.153000px;}
.y139{bottom:505.474500px;}
.ye9{bottom:505.992450px;}
.yea{bottom:509.772450px;}
.y1b5{bottom:513.445500px;}
.y96{bottom:514.566000px;}
.y5{bottom:515.071500px;}
.y64{bottom:521.739000px;}
.y15f{bottom:522.982500px;}
.ye8{bottom:526.962600px;}
.y180{bottom:528.913500px;}
.y138{bottom:529.114500px;}
.yb3{bottom:530.536500px;}
.y1b4{bottom:530.706000px;}
.y4{bottom:532.959000px;}
.y95{bottom:533.395500px;}
.y118{bottom:536.722500px;}
.y31{bottom:537.510000px;}
.y15e{bottom:541.812000px;}
.y17f{bottom:546.487500px;}
.ye7{bottom:547.932450px;}
.y1b3{bottom:547.966500px;}
.y3{bottom:550.848000px;}
.y94{bottom:552.225000px;}
.y137{bottom:552.756000px;}
.y117{bottom:554.092950px;}
.y30{bottom:556.966500px;}
.y15d{bottom:560.641500px;}
.y17e{bottom:564.061500px;}
.y63{bottom:564.330000px;}
.y1b2{bottom:565.227000px;}
.yb2{bottom:567.642000px;}
.y2{bottom:568.735500px;}
.y93{bottom:571.054500px;}
.y116{bottom:571.372950px;}
.y136{bottom:576.396000px;}
.ye6{bottom:577.992450px;}
.y15c{bottom:579.471000px;}
.y1b1{bottom:582.487500px;}
.y62{bottom:583.159500px;}
.yb1{bottom:586.471500px;}
.y1{bottom:586.623000px;}
.y115{bottom:588.652950px;}
.y92{bottom:589.884000px;}
.y17d{bottom:590.601000px;}
.y2f{bottom:594.357000px;}
.y15b{bottom:598.300500px;}
.y1b0{bottom:599.746500px;}
.y135{bottom:600.037500px;}
.y114{bottom:608.092950px;}
.y91{bottom:608.713500px;}
.yb0{bottom:609.783000px;}
.y61{bottom:610.954500px;}
.ye5{bottom:613.723746px;}
.y2e{bottom:613.813500px;}
.y1af{bottom:617.007000px;}
.y15a{bottom:617.130000px;}
.y17c{bottom:617.142000px;}
.y134{bottom:623.677500px;}
.y90{bottom:627.543000px;}
.y113{bottom:629.062950px;}
.y60{bottom:629.784000px;}
.ye4{bottom:632.983188px;}
.y2d{bottom:633.271500px;}
.y1ae{bottom:634.267500px;}
.y17b{bottom:634.716000px;}
.y159{bottom:635.959500px;}
.y8f{bottom:646.372500px;}
.y133{bottom:647.319000px;}
.y112{bottom:650.033100px;}
.yd3{bottom:650.152500px;}
.y1ad{bottom:651.528000px;}
.yaf{bottom:652.107000px;}
.ye3{bottom:652.152450px;}
.y17a{bottom:652.290000px;}
.y2c{bottom:652.728000px;}
.y158{bottom:654.789000px;}
.y132{bottom:655.537500px;}
.y5f{bottom:657.580500px;}
.y8e{bottom:665.202000px;}
.y1ac{bottom:668.788500px;}
.yd2{bottom:668.982000px;}
.y179{bottom:669.864000px;}
.y111{bottom:671.092950px;}
.ye2{bottom:671.417679px;}
.y2b{bottom:672.184500px;}
.y157{bottom:673.618500px;}
.y12f{bottom:675.594000px;}
.yae{bottom:675.748500px;}
.y8d{bottom:684.031500px;}
.y5e{bottom:685.377000px;}
.y1ab{bottom:686.049000px;}
.y131{bottom:687.397500px;}
.y178{bottom:687.438000px;}
.ye1{bottom:690.677121px;}
.y2a{bottom:691.642500px;}
.y110{bottom:692.062950px;}
.y130{bottom:695.617500px;}
.y156{bottom:696.931500px;}
.y8c{bottom:702.861000px;}
.y1aa{bottom:703.309500px;}
.y5d{bottom:704.206500px;}
.y177{bottom:705.013500px;}
.yad{bottom:707.757000px;}
.yd1{bottom:709.116000px;}
.ye0{bottom:709.846383px;}
.y29{bottom:711.099000px;}
.y10f{bottom:713.032950px;}
.y1a9{bottom:720.570000px;}
.y8b{bottom:721.690500px;}
.yd0{bottom:723.313500px;}
.ydf{bottom:729.105825px;}
.y28{bottom:730.555500px;}
.y5c{bottom:732.001500px;}
.y155{bottom:733.060500px;}
.y10e{bottom:734.002950px;}
.y12e{bottom:735.456000px;}
.ycf{bottom:737.509500px;}
.y1a8{bottom:737.829000px;}
.y8a{bottom:740.520000px;}
.yac{bottom:740.968500px;}
.y154{bottom:747.256500px;}
.yde{bottom:748.365267px;}
.y27{bottom:750.013500px;}
.y5b{bottom:750.831000px;}
.y10d{bottom:754.972950px;}
.y1a7{bottom:755.089500px;}
.yce{bottom:756.354000px;}
.y89{bottom:759.349500px;}
.yab{bottom:759.798000px;}
.y153{bottom:761.454000px;}
.ydd{bottom:767.534529px;}
.y26{bottom:769.470000px;}
.y1a6{bottom:772.350000px;}
.y12d{bottom:773.047500px;}
.y152{bottom:775.650000px;}
.y10c{bottom:776.032950px;}
.y88{bottom:778.179000px;}
.y5a{bottom:778.627500px;}
.ycd{bottom:779.994000px;}
.ydc{bottom:786.793971px;}
.y25{bottom:788.928000px;}
.y1a5{bottom:789.610500px;}
.y12c{bottom:792.280500px;}
.y151{bottom:794.494500px;}
.y10b{bottom:797.002950px;}
.y87{bottom:797.008500px;}
.y59{bottom:797.457000px;}
.ycc{bottom:803.635500px;}
.ydb{bottom:805.963233px;}
.y1a4{bottom:806.871000px;}
.y24{bottom:808.384500px;}
.y12b{bottom:811.513500px;}
.y86{bottom:815.838000px;}
.y58{bottom:816.286500px;}
.y10a{bottom:817.972950px;}
.y150{bottom:818.134500px;}
.y1a3{bottom:824.131500px;}
.yda{bottom:825.222675px;}
.ycb{bottom:827.275500px;}
.y23{bottom:827.841000px;}
.y12a{bottom:830.746500px;}
.y85{bottom:834.667500px;}
.y57{bottom:835.114500px;}
.y108{bottom:838.582950px;}
.y109{bottom:838.943670px;}
.y1a2{bottom:841.392000px;}
.y14f{bottom:841.774500px;}
.yd9{bottom:844.482117px;}
.yca{bottom:850.915500px;}
.y103{bottom:853.176000px;}
.y84{bottom:853.497000px;}
.y56{bottom:853.944000px;}
.y1a1{bottom:858.652500px;}
.yd8{bottom:863.652882px;}
.y22{bottom:865.396500px;}
.y14e{bottom:865.416000px;}
.y83{bottom:872.326500px;}
.y55{bottom:872.773500px;}
.yc9{bottom:874.557000px;}
.y1a0{bottom:875.913000px;}
.y176{bottom:876.808500px;}
.y21{bottom:885.876000px;}
.y14d{bottom:889.056000px;}
.y107{bottom:889.252950px;}
.y82{bottom:891.156000px;}
.y54{bottom:891.603000px;}
.y19f{bottom:893.172000px;}
.y20{bottom:897.676500px;}
.yc8{bottom:898.197000px;}
.y81{bottom:909.984000px;}
.y53{bottom:910.432500px;}
.y14c{bottom:912.697500px;}
.y1f{bottom:918.156000px;}
.yd6{bottom:918.372585px;}
.y19e{bottom:927.693000px;}
.yd5{bottom:928.002450px;}
.y80{bottom:928.813500px;}
.y52{bottom:929.262000px;}
.yc7{bottom:929.817000px;}
.y1e{bottom:934.294500px;}
.y14b{bottom:936.337500px;}
.y105{bottom:942.443085px;}
.y19d{bottom:944.953500px;}
.y7f{bottom:947.643000px;}
.y51{bottom:948.091500px;}
.y104{bottom:952.072950px;}
.y14a{bottom:959.979000px;}
.y19c{bottom:962.214000px;}
.y7e{bottom:966.472500px;}
.y50{bottom:966.921000px;}
.y1d{bottom:977.941500px;}
.y19b{bottom:979.474500px;}
.y149{bottom:983.619000px;}
.y7d{bottom:985.302000px;}
.y4f{bottom:985.750500px;}
.y19a{bottom:996.735000px;}
.y1c{bottom:996.771000px;}
.y7c{bottom:1004.131500px;}
.y4e{bottom:1004.580000px;}
.y148{bottom:1007.260500px;}
.y199{bottom:1013.995500px;}
.y7b{bottom:1022.961000px;}
.y4d{bottom:1023.409500px;}
.y147{bottom:1030.900500px;}
.y198{bottom:1031.254500px;}
.y1b{bottom:1036.690500px;}
.y146{bottom:1039.120500px;}
.y7a{bottom:1041.790500px;}
.y4c{bottom:1042.239000px;}
.y197{bottom:1048.515000px;}
.y143{bottom:1059.177000px;}
.y4b{bottom:1061.068500px;}
.y1a{bottom:1064.934000px;}
.y79{bottom:1065.103500px;}
.y196{bottom:1065.775500px;}
.y145{bottom:1070.980500px;}
.y144{bottom:1079.199000px;}
.y4a{bottom:1079.898000px;}
.y195{bottom:1083.036000px;}
.y19{bottom:1093.179000px;}
.y49{bottom:1098.727500px;}
.y194{bottom:1100.296500px;}
.y48{bottom:1117.557000px;}
.y142{bottom:1119.037500px;}
.y47{bottom:1177.662000px;}
.h7{height:26.110157px;}
.h18{height:26.279297px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h8{height:34.813397px;}
.h14{height:34.951465px;}
.hc{height:35.052500px;}
.h13{height:35.255391px;}
.h1b{height:35.652888px;}
.h10{height:38.896243px;}
.h9{height:39.165235px;}
.h19{height:39.418945px;}
.h1a{height:39.434227px;}
.h11{height:39.614278px;}
.h16{height:39.761719px;}
.hd{height:41.723369px;}
.ha{height:43.217759px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h15{height:43.886426px;}
.h17{height:44.268047px;}
.h1e{height:46.645840px;}
.hf{height:49.776344px;}
.h6{height:54.547601px;}
.he{height:54.774749px;}
.h1f{height:71.770243px;}
.h20{height:71.776243px;}
.h5{height:77.792486px;}
.h1d{height:126.710603px;}
.h1c{height:279.325500px;}
.h12{height:283.243500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:428.224500px;}
.w2{width:431.023500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x71{left:-276.823500px;}
.x83{left:-247.156500px;}
.x72{left:-81.254590px;}
.x74{left:-64.063500px;}
.x77{left:-62.443500px;}
.x7d{left:-60.283500px;}
.x84{left:-51.586500px;}
.x7f{left:-49.393500px;}
.x73{left:-46.153500px;}
.x8a{left:-35.746500px;}
.x88{left:-34.396500px;}
.x85{left:-31.606500px;}
.x89{left:-28.186500px;}
.x87{left:-26.926500px;}
.x8b{left:-19.726500px;}
.x0{left:0.000000px;}
.x75{left:44.026500px;}
.x76{left:46.276500px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x86{left:60.283500px;}
.xd1{left:85.848000px;}
.x78{left:131.956500px;}
.x79{left:134.206500px;}
.x7a{left:217.726500px;}
.x7b{left:219.976500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x6d{left:254.173500px;}
.x59{left:262.134000px;}
.x92{left:264.330000px;}
.x90{left:265.453500px;}
.x93{left:267.693000px;}
.x4{left:269.316000px;}
.x91{left:271.054500px;}
.x8f{left:272.178000px;}
.x4c{left:275.619000px;}
.x4a{left:276.775500px;}
.x4d{left:278.982000px;}
.x8{left:281.479500px;}
.x31{left:291.877500px;}
.x48{left:293.355000px;}
.x63{left:303.165000px;}
.x18{left:305.173500px;}
.x32{left:306.820500px;}
.xa{left:308.430000px;}
.x66{left:309.670500px;}
.x7c{left:311.236500px;}
.x19{left:312.646500px;}
.x12{left:314.416500px;}
.xb{left:315.901500px;}
.x9e{left:318.039000px;}
.x13{left:321.888000px;}
.x6e{left:323.274000px;}
.x5e{left:324.865500px;}
.x49{left:327.054000px;}
.xc1{left:328.504500px;}
.x9f{left:329.661000px;}
.x10{left:337.254000px;}
.x6f{left:340.476000px;}
.x5f{left:341.635500px;}
.x11{left:344.725500px;}
.xa0{left:345.766500px;}
.xc9{left:353.062500px;}
.xc2{left:354.729000px;}
.xbb{left:357.720000px;}
.x4b{left:359.808000px;}
.x8d{left:363.681000px;}
.xb6{left:369.768000px;}
.xc{left:375.345000px;}
.x6{left:376.771500px;}
.xa1{left:380.104500px;}
.xd{left:382.816500px;}
.x9{left:385.194000px;}
.xe{left:386.478000px;}
.x64{left:389.407500px;}
.x5a{left:391.189500px;}
.xf{left:393.949500px;}
.x7e{left:396.916500px;}
.x55{left:402.019500px;}
.x6a{left:403.648500px;}
.xbc{left:404.866500px;}
.x65{left:406.597500px;}
.x5b{left:408.216000px;}
.x9a{left:410.670000px;}
.x35{left:414.192000px;}
.x56{left:418.032000px;}
.x6b{left:419.827500px;}
.xc3{left:422.655000px;}
.x9b{left:424.378500px;}
.x36{left:427.779000px;}
.xbd{left:430.102500px;}
.xce{left:433.422000px;}
.x7{left:439.378500px;}
.x47{left:441.978000px;}
.xcf{left:448.366500px;}
.xc7{left:451.590000px;}
.x45{left:452.941500px;}
.x22{left:456.081000px;}
.x14{left:464.373000px;}
.xc8{left:466.534500px;}
.x46{left:467.886000px;}
.x15{left:471.844500px;}
.xb7{left:473.014500px;}
.x1e{left:478.879500px;}
.x1f{left:486.351000px;}
.x42{left:487.983000px;}
.xbe{left:494.728500px;}
.x1a{left:496.905000px;}
.xaf{left:500.376000px;}
.x43{left:502.927500px;}
.x1b{left:504.378000px;}
.x8c{left:506.957191px;}
.x80{left:508.244796px;}
.xb0{left:514.023000px;}
.xa2{left:517.213500px;}
.x44{left:520.566000px;}
.x57{left:523.972500px;}
.xca{left:526.230000px;}
.x27{left:527.449500px;}
.x39{left:531.384000px;}
.xb8{left:532.920000px;}
.x28{left:534.921000px;}
.x67{left:538.155000px;}
.x58{left:539.985000px;}
.x1c{left:541.128000px;}
.x6c{left:543.370500px;}
.x51{left:544.633500px;}
.x23{left:545.835000px;}
.x1d{left:548.601000px;}
.x94{left:550.948500px;}
.x24{left:553.308000px;}
.x2f{left:555.657000px;}
.x52{left:562.455000px;}
.x60{left:563.881500px;}
.x30{left:570.600000px;}
.x61{left:579.904500px;}
.xb1{left:588.282000px;}
.x16{left:590.272500px;}
.xb9{left:593.620500px;}
.xa3{left:595.180500px;}
.x17{left:597.744000px;}
.xb2{left:604.320000px;}
.xba{left:609.640500px;}
.x95{left:611.494500px;}
.x9c{left:614.052000px;}
.xa7{left:625.858500px;}
.x96{left:627.522000px;}
.x9d{left:630.151500px;}
.x20{left:638.044500px;}
.xa8{left:639.585000px;}
.xcc{left:643.020000px;}
.x21{left:645.517500px;}
.xa4{left:646.542000px;}
.xb3{left:651.727500px;}
.xa9{left:652.833000px;}
.x68{left:656.403000px;}
.x97{left:660.549000px;}
.xaa{left:665.124000px;}
.x4e{left:670.053000px;}
.x8e{left:671.643000px;}
.x69{left:674.560500px;}
.x37{left:676.356000px;}
.x53{left:678.850500px;}
.x81{left:681.439500px;}
.x4f{left:686.092500px;}
.x38{left:689.944500px;}
.x82{left:695.491500px;}
.x54{left:696.672000px;}
.x29{left:698.973000px;}
.x62{left:701.746500px;}
.x2a{left:706.444500px;}
.x2b{left:710.224500px;}
.xab{left:714.879000px;}
.xc4{left:716.143500px;}
.x2c{left:717.697500px;}
.xa5{left:724.509000px;}
.xb4{left:725.985000px;}
.x70{left:727.099500px;}
.xd0{left:729.294000px;}
.xac{left:730.995000px;}
.x98{left:734.731500px;}
.xb5{left:738.277500px;}
.xa6{left:740.980500px;}
.xc5{left:742.369500px;}
.x33{left:744.822000px;}
.xcd{left:749.083500px;}
.x99{left:750.759000px;}
.x2d{left:752.802000px;}
.x34{left:758.407500px;}
.x2e{left:760.273500px;}
.xad{left:765.351000px;}
.xbf{left:766.548000px;}
.xc6{left:772.894500px;}
.x50{left:778.543500px;}
.xc0{left:780.187500px;}
.x3e{left:782.383500px;}
.x40{left:784.293000px;}
.x25{left:787.101000px;}
.xcb{left:789.850500px;}
.x5c{left:793.269000px;}
.x26{left:794.574000px;}
.x3f{left:797.328000px;}
.xae{left:804.616500px;}
.x5d{left:810.295500px;}
.x3c{left:817.881000px;}
.x3a{left:826.365000px;}
.x3d{left:832.825500px;}
.x3b{left:833.838000px;}
.x41{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v7{vertical-align:29.221333pt;}
.v6{vertical-align:35.842208pt;}
.v5{vertical-align:37.440064pt;}
.ls6d{letter-spacing:-0.309952pt;}
.ls6f{letter-spacing:-0.299264pt;}
.ls75{letter-spacing:-0.213760pt;}
.ls7a{letter-spacing:-0.176352pt;}
.ls4a{letter-spacing:-0.149632pt;}
.ls49{letter-spacing:-0.144288pt;}
.ls47{letter-spacing:-0.138944pt;}
.ls71{letter-spacing:-0.128256pt;}
.ls70{letter-spacing:-0.122912pt;}
.ls3d{letter-spacing:-0.117568pt;}
.ls72{letter-spacing:-0.112224pt;}
.ls7b{letter-spacing:-0.106880pt;}
.ls41{letter-spacing:-0.101536pt;}
.ls3f{letter-spacing:-0.096192pt;}
.ls4c{letter-spacing:-0.090848pt;}
.ls48{letter-spacing:-0.085504pt;}
.ls3e{letter-spacing:-0.080160pt;}
.ls40{letter-spacing:-0.074816pt;}
.ls43{letter-spacing:-0.069472pt;}
.ls44{letter-spacing:-0.064128pt;}
.ls42{letter-spacing:-0.053440pt;}
.ls76{letter-spacing:-0.037408pt;}
.ls77{letter-spacing:-0.032064pt;}
.ls4b{letter-spacing:-0.026720pt;}
.ls3c{letter-spacing:-0.025536pt;}
.ls74{letter-spacing:-0.019200pt;}
.ls6e{letter-spacing:-0.016032pt;}
.ls6c{letter-spacing:-0.014400pt;}
.ls73{letter-spacing:-0.010688pt;}
.ls45{letter-spacing:-0.005344pt;}
.ls4e{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls98{letter-spacing:0.000185pt;}
.ls9b{letter-spacing:0.000361pt;}
.ls7f{letter-spacing:0.000441pt;}
.ls7e{letter-spacing:0.000523pt;}
.ls0{letter-spacing:0.000533pt;}
.ls7c{letter-spacing:0.000600pt;}
.ls8c{letter-spacing:0.000711pt;}
.ls8a{letter-spacing:0.000921pt;}
.ls8b{letter-spacing:0.001026pt;}
.ls86{letter-spacing:0.001077pt;}
.ls94{letter-spacing:0.001391pt;}
.ls8e{letter-spacing:0.001408pt;}
.ls87{letter-spacing:0.001467pt;}
.ls97{letter-spacing:0.001512pt;}
.ls3{letter-spacing:0.001628pt;}
.ls80{letter-spacing:0.001843pt;}
.ls96{letter-spacing:0.002078pt;}
.ls8d{letter-spacing:0.002262pt;}
.ls93{letter-spacing:0.002525pt;}
.ls9c{letter-spacing:0.002734pt;}
.ls1{letter-spacing:0.002932pt;}
.lsf{letter-spacing:0.003012pt;}
.ls91{letter-spacing:0.003071pt;}
.ls99{letter-spacing:0.003241pt;}
.ls84{letter-spacing:0.003405pt;}
.ls81{letter-spacing:0.003430pt;}
.ls82{letter-spacing:0.003578pt;}
.ls19{letter-spacing:0.004256pt;}
.ls85{letter-spacing:0.004267pt;}
.ls2e{letter-spacing:0.004800pt;}
.ls30{letter-spacing:0.005344pt;}
.ls2f{letter-spacing:0.009600pt;}
.ls23{letter-spacing:0.010688pt;}
.ls36{letter-spacing:0.014400pt;}
.ls50{letter-spacing:0.016032pt;}
.ls3a{letter-spacing:0.019200pt;}
.ls4f{letter-spacing:0.021376pt;}
.ls32{letter-spacing:0.024000pt;}
.ls54{letter-spacing:0.026720pt;}
.ls34{letter-spacing:0.028800pt;}
.ls58{letter-spacing:0.032064pt;}
.ls37{letter-spacing:0.033600pt;}
.ls27{letter-spacing:0.037408pt;}
.ls39{letter-spacing:0.038400pt;}
.ls35{letter-spacing:0.043200pt;}
.ls3b{letter-spacing:0.048000pt;}
.ls1e{letter-spacing:0.048096pt;}
.ls2d{letter-spacing:0.053440pt;}
.ls38{letter-spacing:0.057600pt;}
.ls79{letter-spacing:0.058784pt;}
.ls51{letter-spacing:0.062400pt;}
.ls1f{letter-spacing:0.064128pt;}
.ls5b{letter-spacing:0.069472pt;}
.ls28{letter-spacing:0.074816pt;}
.ls21{letter-spacing:0.080160pt;}
.ls20{letter-spacing:0.085504pt;}
.ls1a{letter-spacing:0.090848pt;}
.ls33{letter-spacing:0.091200pt;}
.ls4d{letter-spacing:0.096192pt;}
.ls78{letter-spacing:0.101536pt;}
.ls57{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.117568pt;}
.ls46{letter-spacing:0.122912pt;}
.ls53{letter-spacing:0.128256pt;}
.ls22{letter-spacing:0.133600pt;}
.ls24{letter-spacing:0.138944pt;}
.ls52{letter-spacing:0.144288pt;}
.ls26{letter-spacing:0.149632pt;}
.ls18{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.171008pt;}
.ls5d{letter-spacing:0.181696pt;}
.ls5e{letter-spacing:0.251168pt;}
.ls5c{letter-spacing:0.406144pt;}
.ls66{letter-spacing:0.570745pt;}
.ls67{letter-spacing:0.576078pt;}
.ls6b{letter-spacing:0.637762pt;}
.ls6a{letter-spacing:0.643096pt;}
.ls1d{letter-spacing:0.726784pt;}
.ls1b{letter-spacing:1.047424pt;}
.ls5f{letter-spacing:1.368064pt;}
.ls60{letter-spacing:1.444800pt;}
.ls2a{letter-spacing:1.683360pt;}
.ls29{letter-spacing:1.688704pt;}
.ls5a{letter-spacing:2.004000pt;}
.ls59{letter-spacing:2.324640pt;}
.ls25{letter-spacing:2.645280pt;}
.ls11{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.657067pt;}
.ls55{letter-spacing:3.607200pt;}
.ls56{letter-spacing:3.927840pt;}
.ls2b{letter-spacing:7.770176pt;}
.ls2c{letter-spacing:8.090816pt;}
.ls2{letter-spacing:9.352170pt;}
.lsa{letter-spacing:10.626533pt;}
.ls9a{letter-spacing:11.729839pt;}
.ls90{letter-spacing:11.790457pt;}
.ls88{letter-spacing:11.920090pt;}
.ls7d{letter-spacing:11.954133pt;}
.ls89{letter-spacing:11.959467pt;}
.ls8f{letter-spacing:12.076993pt;}
.ls83{letter-spacing:12.082510pt;}
.ls95{letter-spacing:12.104664pt;}
.ls64{letter-spacing:12.488267pt;}
.ls65{letter-spacing:12.493600pt;}
.ls62{letter-spacing:12.570745pt;}
.ls61{letter-spacing:12.596267pt;}
.ls16{letter-spacing:13.124065pt;}
.ls17{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.283349pt;}
.ls10{letter-spacing:13.283467pt;}
.ls7{letter-spacing:13.283733pt;}
.ls68{letter-spacing:13.284147pt;}
.ls92{letter-spacing:13.391561pt;}
.lse{letter-spacing:13.917762pt;}
.ls15{letter-spacing:13.923096pt;}
.ls69{letter-spacing:13.944877pt;}
.ls14{letter-spacing:13.945067pt;}
.lsd{letter-spacing:13.950400pt;}
.ls6{letter-spacing:15.937067pt;}
.ls13{letter-spacing:20.456539pt;}
.ls12{letter-spacing:20.509673pt;}
.ls5{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls63{letter-spacing:207.128969pt;}
.ws8c{word-spacing:-53.440000pt;}
.ws8d{word-spacing:-13.531008pt;}
.ws8b{word-spacing:-13.360000pt;}
.wsda{word-spacing:-12.000000pt;}
.ws14e{word-spacing:-11.955200pt;}
.ws89{word-spacing:-10.810240pt;}
.ws8a{word-spacing:-10.640000pt;}
.ws32{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws147{word-spacing:-2.816095pt;}
.wsd2{word-spacing:-2.774400pt;}
.wscc{word-spacing:-2.740800pt;}
.wscd{word-spacing:-2.731200pt;}
.ws145{word-spacing:-2.444158pt;}
.wsd0{word-spacing:-2.428800pt;}
.ws14f{word-spacing:-2.391040pt;}
.wsd1{word-spacing:-2.390400pt;}
.wsb7{word-spacing:-2.207072pt;}
.ws68{word-spacing:-1.912819pt;}
.wsca{word-spacing:-1.785600pt;}
.wsc9{word-spacing:-1.780800pt;}
.ws13d{word-spacing:-1.766400pt;}
.ws111{word-spacing:-1.756800pt;}
.ws41{word-spacing:-1.753418pt;}
.ws110{word-spacing:-1.737600pt;}
.wsb8{word-spacing:-1.694048pt;}
.wsa3{word-spacing:-1.330656pt;}
.wsa2{word-spacing:-1.277216pt;}
.ws14b{word-spacing:-1.195520pt;}
.ws58{word-spacing:-1.168945pt;}
.ws8f{word-spacing:-1.147699pt;}
.wsa1{word-spacing:-1.143616pt;}
.wsa5{word-spacing:-1.132928pt;}
.wsa4{word-spacing:-1.127584pt;}
.ws60{word-spacing:-1.115811pt;}
.ws8e{word-spacing:-1.099878pt;}
.wsa0{word-spacing:-1.095520pt;}
.ws99{word-spacing:-1.079488pt;}
.ws3b{word-spacing:-1.062677pt;}
.ws9b{word-spacing:-1.047424pt;}
.ws3c{word-spacing:-1.009543pt;}
.ws15b{word-spacing:-0.908595pt;}
.ws168{word-spacing:-0.860774pt;}
.ws3a{word-spacing:-0.850142pt;}
.ws148{word-spacing:-0.812954pt;}
.ws39{word-spacing:-0.797008pt;}
.ws9a{word-spacing:-0.796256pt;}
.wsae{word-spacing:-0.726784pt;}
.ws5a{word-spacing:-0.690740pt;}
.wsad{word-spacing:-0.678688pt;}
.ws28{word-spacing:-0.637606pt;}
.wsdc{word-spacing:-0.621670pt;}
.ws14d{word-spacing:-0.573850pt;}
.ws13f{word-spacing:-0.531339pt;}
.ws149{word-spacing:-0.526029pt;}
.ws11b{word-spacing:-0.454240pt;}
.ws56{word-spacing:-0.425071pt;}
.ws11d{word-spacing:-0.406144pt;}
.ws12c{word-spacing:-0.379424pt;}
.ws11c{word-spacing:-0.363392pt;}
.wsac{word-spacing:-0.320640pt;}
.ws4c{word-spacing:-0.318803pt;}
.ws9d{word-spacing:-0.299264pt;}
.ws136{word-spacing:-0.293920pt;}
.ws139{word-spacing:-0.288576pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws11e{word-spacing:-0.261856pt;}
.ws7f{word-spacing:-0.255043pt;}
.ws94{word-spacing:-0.246848pt;}
.ws174{word-spacing:-0.239104pt;}
.ws104{word-spacing:-0.229792pt;}
.ws11a{word-spacing:-0.224448pt;}
.ws34{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.wsf6{word-spacing:-0.127522pt;}
.ws25{word-spacing:-0.106268pt;}
.ws91{word-spacing:-0.095642pt;}
.wsba{word-spacing:-0.090848pt;}
.ws95{word-spacing:-0.080864pt;}
.ws137{word-spacing:-0.058784pt;}
.ws10{word-spacing:-0.053134pt;}
.ws71{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.wsf9{word-spacing:-0.016603pt;}
.wsf8{word-spacing:-0.011374pt;}
.wsfc{word-spacing:-0.011293pt;}
.ws55{word-spacing:-0.006636pt;}
.ws52{word-spacing:-0.005585pt;}
.ws107{word-spacing:-0.005344pt;}
.wsf{word-spacing:-0.001510pt;}
.ws13{word-spacing:-0.001059pt;}
.ws1{word-spacing:0.000000pt;}
.ws101{word-spacing:0.002667pt;}
.ws11{word-spacing:0.003207pt;}
.ws5{word-spacing:0.037194pt;}
.wsdb{word-spacing:0.047821pt;}
.ws10d{word-spacing:0.048096pt;}
.ws3d{word-spacing:0.053134pt;}
.wsfb{word-spacing:0.054222pt;}
.wsfe{word-spacing:0.064932pt;}
.ws106{word-spacing:0.074816pt;}
.wsfd{word-spacing:0.079312pt;}
.ws16a{word-spacing:0.095642pt;}
.ws12b{word-spacing:0.096192pt;}
.ws105{word-spacing:0.101536pt;}
.ws27{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.wsd9{word-spacing:0.115200pt;}
.ws12d{word-spacing:0.117568pt;}
.ws92{word-spacing:0.143462pt;}
.ws103{word-spacing:0.144000pt;}
.wsbd{word-spacing:0.153600pt;}
.ws12a{word-spacing:0.154976pt;}
.wsbb{word-spacing:0.158400pt;}
.ws30{word-spacing:0.159402pt;}
.ws9f{word-spacing:0.160320pt;}
.wsbc{word-spacing:0.163200pt;}
.wsb9{word-spacing:0.171008pt;}
.ws102{word-spacing:0.177600pt;}
.ws9e{word-spacing:0.181696pt;}
.wsde{word-spacing:0.191283pt;}
.ws138{word-spacing:0.192384pt;}
.ws2a{word-spacing:0.212535pt;}
.ws130{word-spacing:0.224448pt;}
.ws15a{word-spacing:0.239104pt;}
.ws86{word-spacing:0.265669pt;}
.ws93{word-spacing:0.268128pt;}
.ws90{word-spacing:0.334746pt;}
.ws29{word-spacing:0.371937pt;}
.ws128{word-spacing:0.390112pt;}
.ws129{word-spacing:0.443552pt;}
.ws3f{word-spacing:0.478205pt;}
.ws5b{word-spacing:0.584473pt;}
.wsef{word-spacing:0.593126pt;}
.wsf1{word-spacing:0.593758pt;}
.wsed{word-spacing:0.594133pt;}
.wseb{word-spacing:0.595575pt;}
.wsf4{word-spacing:0.596642pt;}
.wse5{word-spacing:0.596838pt;}
.wse2{word-spacing:0.597649pt;}
.wse9{word-spacing:0.597709pt;}
.wsdf{word-spacing:0.599782pt;}
.wsce{word-spacing:0.609216pt;}
.ws131{word-spacing:0.625248pt;}
.ws40{word-spacing:0.637606pt;}
.ws9c{word-spacing:0.678688pt;}
.ws26{word-spacing:0.690740pt;}
.ws85{word-spacing:0.743874pt;}
.ws113{word-spacing:0.744000pt;}
.ws12e{word-spacing:0.764192pt;}
.ws112{word-spacing:0.792000pt;}
.wscf{word-spacing:0.817632pt;}
.ws12f{word-spacing:0.876416pt;}
.ws97{word-spacing:0.913824pt;}
.ws133{word-spacing:0.919168pt;}
.ws70{word-spacing:0.956410pt;}
.ws96{word-spacing:0.956576pt;}
.ws98{word-spacing:0.961920pt;}
.wsb1{word-spacing:1.010016pt;}
.wsa7{word-spacing:1.036736pt;}
.wsa6{word-spacing:1.052768pt;}
.ws67{word-spacing:1.062677pt;}
.ws1e{word-spacing:1.099878pt;}
.ws13c{word-spacing:1.104000pt;}
.ws1d{word-spacing:1.147699pt;}
.ws57{word-spacing:1.168945pt;}
.ws135{word-spacing:1.197056pt;}
.ws38{word-spacing:1.222079pt;}
.ws118{word-spacing:1.223776pt;}
.wse{word-spacing:1.227389pt;}
.wsb3{word-spacing:1.234464pt;}
.wsfa{word-spacing:1.275213pt;}
.ws119{word-spacing:1.282560pt;}
.wsb4{word-spacing:1.287904pt;}
.ws20{word-spacing:1.291162pt;}
.ws134{word-spacing:1.293248pt;}
.wsaf{word-spacing:1.319968pt;}
.ws141{word-spacing:1.328347pt;}
.ws132{word-spacing:1.336000pt;}
.wsb0{word-spacing:1.368064pt;}
.wsf7{word-spacing:1.381481pt;}
.ws13b{word-spacing:1.387200pt;}
.ws13a{word-spacing:1.430400pt;}
.ws16f{word-spacing:1.431670pt;}
.ws5f{word-spacing:1.434614pt;}
.ws16d{word-spacing:1.434624pt;}
.ws5d{word-spacing:1.487748pt;}
.ws117{word-spacing:1.512352pt;}
.ws160{word-spacing:1.578086pt;}
.wsb2{word-spacing:1.608544pt;}
.ws116{word-spacing:1.635264pt;}
.ws6e{word-spacing:1.647150pt;}
.ws24{word-spacing:1.700284pt;}
.wsd7{word-spacing:1.747200pt;}
.ws42{word-spacing:1.753418pt;}
.wsd8{word-spacing:1.771200pt;}
.ws125{word-spacing:1.832992pt;}
.ws124{word-spacing:1.950560pt;}
.ws6c{word-spacing:1.965953pt;}
.ws6f{word-spacing:2.019087pt;}
.ws15f{word-spacing:2.056294pt;}
.ws5c{word-spacing:2.125355pt;}
.ws126{word-spacing:2.153632pt;}
.wsa8{word-spacing:2.185696pt;}
.ws0{word-spacing:2.232481pt;}
.ws127{word-spacing:2.255168pt;}
.ws2d{word-spacing:2.284756pt;}
.ws84{word-spacing:2.337890pt;}
.wsd6{word-spacing:2.366400pt;}
.wsd5{word-spacing:2.395200pt;}
.wsff{word-spacing:2.438536pt;}
.ws162{word-spacing:2.438861pt;}
.ws100{word-spacing:2.444158pt;}
.wsab{word-spacing:2.495648pt;}
.ws15{word-spacing:2.550432pt;}
.ws37{word-spacing:2.656693pt;}
.ws16{word-spacing:2.660150pt;}
.ws88{word-spacing:2.709827pt;}
.wsaa{word-spacing:2.746816pt;}
.wsa9{word-spacing:2.762848pt;}
.ws87{word-spacing:2.762961pt;}
.ws62{word-spacing:2.816095pt;}
.ws150{word-spacing:2.865860pt;}
.ws14a{word-spacing:2.866509pt;}
.ws152{word-spacing:2.866893pt;}
.ws143{word-spacing:2.869229pt;}
.ws19{word-spacing:2.869248pt;}
.ws171{word-spacing:2.871799pt;}
.ws69{word-spacing:2.922363pt;}
.ws2c{word-spacing:2.975497pt;}
.ws161{word-spacing:3.108352pt;}
.ws1b{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws83{word-spacing:3.241166pt;}
.ws3e{word-spacing:3.294300pt;}
.ws142{word-spacing:3.347434pt;}
.ws63{word-spacing:3.400567pt;}
.ws120{word-spacing:3.462912pt;}
.ws5e{word-spacing:3.613103pt;}
.ws6d{word-spacing:3.666237pt;}
.ws121{word-spacing:3.756832pt;}
.ws35{word-spacing:3.772505pt;}
.ws36{word-spacing:3.825638pt;}
.ws53{word-spacing:3.878772pt;}
.ws123{word-spacing:3.895776pt;}
.ws51{word-spacing:3.931906pt;}
.ws11f{word-spacing:4.029376pt;}
.ws1c{word-spacing:4.064768pt;}
.ws122{word-spacing:4.141600pt;}
.wscb{word-spacing:4.281600pt;}
.ws64{word-spacing:4.303843pt;}
.ws140{word-spacing:4.463245pt;}
.ws80{word-spacing:4.463256pt;}
.ws114{word-spacing:4.585152pt;}
.ws115{word-spacing:4.622560pt;}
.ws1a{word-spacing:4.829901pt;}
.wsc{word-spacing:4.872362pt;}
.ws14c{word-spacing:4.925542pt;}
.ws54{word-spacing:4.941450pt;}
.ws65{word-spacing:5.100851pt;}
.ws144{word-spacing:5.153985pt;}
.ws61{word-spacing:5.313387pt;}
.ws66{word-spacing:5.472788pt;}
.ws50{word-spacing:5.791591pt;}
.ws10f{word-spacing:5.889600pt;}
.ws6a{word-spacing:5.897859pt;}
.ws10e{word-spacing:5.899200pt;}
.ws16e{word-spacing:5.929779pt;}
.ws82{word-spacing:5.950993pt;}
.ws81{word-spacing:6.004127pt;}
.ws1f{word-spacing:6.025421pt;}
.ws146{word-spacing:6.163529pt;}
.ws6b{word-spacing:6.748001pt;}
.ws59{word-spacing:6.801135pt;}
.ws75{word-spacing:7.173072pt;}
.ws76{word-spacing:7.226206pt;}
.ws2f{word-spacing:7.279340pt;}
.wsb6{word-spacing:7.599168pt;}
.wsb5{word-spacing:7.871712pt;}
.ws166{word-spacing:7.986074pt;}
.ws4f{word-spacing:8.023214pt;}
.ws165{word-spacing:8.033894pt;}
.wsa{word-spacing:8.740496pt;}
.ws4e{word-spacing:9.457828pt;}
.ws164{word-spacing:9.659802pt;}
.ws22{word-spacing:10.090189pt;}
.wsb{word-spacing:10.525789pt;}
.ws47{word-spacing:10.839309pt;}
.ws167{word-spacing:10.998784pt;}
.ws6{word-spacing:11.492822pt;}
.ws7{word-spacing:11.567210pt;}
.ws175{word-spacing:11.668275pt;}
.ws16c{word-spacing:11.716096pt;}
.ws163{word-spacing:11.811738pt;}
.ws158{word-spacing:11.869517pt;}
.ws15c{word-spacing:11.893367pt;}
.ws172{word-spacing:11.897694pt;}
.ws170{word-spacing:11.901730pt;}
.ws156{word-spacing:11.902217pt;}
.ws153{word-spacing:11.903172pt;}
.ws157{word-spacing:11.904444pt;}
.ws159{word-spacing:11.905451pt;}
.ws151{word-spacing:11.907379pt;}
.ws154{word-spacing:12.050842pt;}
.ws169{word-spacing:13.103804pt;}
.ws31{word-spacing:13.134725pt;}
.ws45{word-spacing:13.230333pt;}
.ws44{word-spacing:13.389734pt;}
.ws49{word-spacing:13.442868pt;}
.ws46{word-spacing:13.496305pt;}
.ws8{word-spacing:13.761632pt;}
.wsd3{word-spacing:14.188800pt;}
.wsd4{word-spacing:14.208000pt;}
.ws15d{word-spacing:14.728806pt;}
.ws15e{word-spacing:14.771644pt;}
.ws155{word-spacing:14.776627pt;}
.ws16b{word-spacing:14.967910pt;}
.ws173{word-spacing:15.015731pt;}
.ws4d{word-spacing:16.418365pt;}
.ws43{word-spacing:16.841724pt;}
.ws4b{word-spacing:16.949703pt;}
.ws48{word-spacing:16.997941pt;}
.ws9{word-spacing:19.857270pt;}
.wsd{word-spacing:20.196125pt;}
.ws21{word-spacing:23.236724pt;}
.ws4a{word-spacing:31.831960pt;}
.wsdd{word-spacing:100.893252pt;}
.ws10c{word-spacing:113.533280pt;}
.ws10b{word-spacing:113.538624pt;}
.wsc7{word-spacing:121.613408pt;}
.wsc3{word-spacing:121.934048pt;}
.wsc1{word-spacing:129.618720pt;}
.wsee{word-spacing:139.248000pt;}
.wsc5{word-spacing:141.466368pt;}
.wsec{word-spacing:141.904000pt;}
.wse6{word-spacing:144.581333pt;}
.ws72{word-spacing:145.377152pt;}
.wsf3{word-spacing:145.898667pt;}
.wsf0{word-spacing:147.210667pt;}
.wsf2{word-spacing:148.549333pt;}
.ws79{word-spacing:149.228800pt;}
.wse8{word-spacing:152.117965pt;}
.wsf5{word-spacing:153.861333pt;}
.ws7c{word-spacing:155.877649pt;}
.ws7a{word-spacing:157.190460pt;}
.ws7b{word-spacing:158.529758pt;}
.ws7d{word-spacing:163.839309pt;}
.wse3{word-spacing:165.264000pt;}
.ws77{word-spacing:170.481152pt;}
.wsc8{word-spacing:174.941184pt;}
.ws7e{word-spacing:175.797709pt;}
.ws74{word-spacing:179.806208pt;}
.wsea{word-spacing:185.178667pt;}
.wse0{word-spacing:189.173333pt;}
.wsc6{word-spacing:193.511584pt;}
.wsc2{word-spacing:193.832224pt;}
.wsc0{word-spacing:201.516896pt;}
.ws73{word-spacing:205.007770pt;}
.wsbe{word-spacing:208.164832pt;}
.wse7{word-spacing:209.694208pt;}
.ws10a{word-spacing:212.450720pt;}
.wsc4{word-spacing:213.359200pt;}
.ws78{word-spacing:218.307575pt;}
.ws109{word-spacing:225.602304pt;}
.wse4{word-spacing:229.683302pt;}
.ws108{word-spacing:285.786432pt;}
.wsbf{word-spacing:286.427712pt;}
.wse1{word-spacing:1219.765146pt;}
.ws33{word-spacing:1881.898293pt;}
.ws13e{word-spacing:1882.959626pt;}
._47{margin-left:-99.731156pt;}
._2c{margin-left:-44.178848pt;}
._29{margin-left:-41.036576pt;}
._28{margin-left:-39.027232pt;}
._2b{margin-left:-31.983840pt;}
._45{margin-left:-29.156864pt;}
._2f{margin-left:-13.708071pt;}
._2a{margin-left:-11.201024pt;}
._18{margin-left:-6.429198pt;}
._5{margin-left:-5.260288pt;}
._3e{margin-left:-4.365472pt;}
._0{margin-left:-3.459005pt;}
._1{margin-left:-2.045747pt;}
._a{margin-left:-0.908595pt;}
._26{width:0.910784pt;}
._7{width:2.663855pt;}
._2e{width:5.440192pt;}
._3{width:9.335594pt;}
._53{width:10.233651pt;}
._2{width:11.530016pt;}
._9{width:12.688419pt;}
._b{width:14.680986pt;}
._19{width:15.674491pt;}
._10{width:16.684034pt;}
._e{width:18.697933pt;}
._1a{width:19.712735pt;}
._14{width:20.615940pt;}
._1c{width:21.582588pt;}
._4{width:22.502128pt;}
._c{width:23.852032pt;}
._13{width:24.919783pt;}
._d{width:27.305677pt;}
._12{width:28.320351pt;}
._6{width:29.648896pt;}
._17{width:31.720918pt;}
._1b{width:32.928320pt;}
._f{width:34.314240pt;}
._15{width:35.595852pt;}
._1d{width:37.193707pt;}
._16{width:41.125613pt;}
._8{width:48.361105pt;}
._3b{width:59.542848pt;}
._3a{width:64.427264pt;}
._3c{width:65.704480pt;}
._41{width:68.887725pt;}
._4c{width:70.492422pt;}
._34{width:71.385152pt;}
._44{width:74.773363pt;}
._31{width:76.584864pt;}
._38{width:79.069824pt;}
._48{width:84.119365pt;}
._33{width:89.955552pt;}
._37{width:97.640224pt;}
._36{width:103.801856pt;}
._32{width:109.803168pt;}
._30{width:120.304128pt;}
._4b{width:122.650144pt;}
._4a{width:125.626752pt;}
._35{width:129.025536pt;}
._39{width:130.751648pt;}
._4d{width:133.952704pt;}
._3d{width:136.801056pt;}
._4e{width:139.724224pt;}
._25{width:142.601626pt;}
._46{width:143.940640pt;}
._1e{width:149.245766pt;}
._42{width:158.497696pt;}
._49{width:165.664000pt;}
._43{width:170.174336pt;}
._50{width:184.014438pt;}
._21{width:187.744461pt;}
._2d{width:194.366624pt;}
._1f{width:195.682714pt;}
._22{width:197.069517pt;}
._23{width:201.086464pt;}
._11{width:202.236341pt;}
._24{width:209.024717pt;}
._20{width:219.640934pt;}
._52{width:222.891486pt;}
._51{width:242.271420pt;}
._40{width:398.843520pt;}
._3f{width:437.433856pt;}
._4f{width:513.758300pt;}
._27{width:1498.286496pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs6{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.yd7{bottom:-191.748933pt;}
.y106{bottom:-170.352933pt;}
.yfd{bottom:-117.989600pt;}
.y129{bottom:-117.152933pt;}
.yfc{bottom:-102.549200pt;}
.yfb{bottom:-87.189200pt;}
.y128{bottom:-82.433733pt;}
.yfa{bottom:-71.829200pt;}
.y127{bottom:-66.993333pt;}
.yf9{bottom:-56.388800pt;}
.y126{bottom:-51.633333pt;}
.yf8{bottom:-36.467877pt;}
.y125{bottom:-36.192933pt;}
.y124{bottom:-16.272813pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:28.346667pt;}
.y45{bottom:92.108000pt;}
.y18{bottom:93.018667pt;}
.y175{bottom:96.653333pt;}
.yc6{bottom:101.561333pt;}
.yaa{bottom:105.510667pt;}
.y78{bottom:106.706667pt;}
.y44{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y174{bottom:113.390667pt;}
.yc5{bottom:118.298667pt;}
.ya9{bottom:122.248000pt;}
.y77{bottom:123.444000pt;}
.y16{bottom:124.820000pt;}
.y43{bottom:125.581333pt;}
.y173{bottom:130.128000pt;}
.yc4{bottom:135.034667pt;}
.y193{bottom:135.080000pt;}
.ya8{bottom:138.985333pt;}
.y76{bottom:140.181333pt;}
.y15{bottom:140.720000pt;}
.y42{bottom:142.318667pt;}
.y172{bottom:146.865333pt;}
.y192{bottom:150.422667pt;}
.yc3{bottom:151.772000pt;}
.ya7{bottom:155.722667pt;}
.y14{bottom:156.621333pt;}
.y75{bottom:156.918667pt;}
.y41{bottom:159.056000pt;}
.y171{bottom:163.602667pt;}
.y191{bottom:165.765333pt;}
.yc2{bottom:168.509333pt;}
.y13{bottom:172.521333pt;}
.y74{bottom:173.656000pt;}
.y40{bottom:175.793333pt;}
.y1c6{bottom:176.180000pt;}
.ya6{bottom:176.445333pt;}
.y170{bottom:180.340000pt;}
.y190{bottom:181.108000pt;}
.yc1{bottom:185.246667pt;}
.y12{bottom:188.421333pt;}
.y73{bottom:190.393333pt;}
.y1c5{bottom:191.521333pt;}
.y3f{bottom:192.530667pt;}
.y18f{bottom:196.450667pt;}
.y16f{bottom:197.077333pt;}
.yc0{bottom:201.984000pt;}
.y11{bottom:204.322667pt;}
.ya5{bottom:206.333333pt;}
.y1c4{bottom:206.864000pt;}
.y72{bottom:207.130667pt;}
.y3e{bottom:209.268000pt;}
.y18e{bottom:211.793333pt;}
.y16e{bottom:213.814667pt;}
.ybf{bottom:218.721333pt;}
.ya4{bottom:223.070667pt;}
.y71{bottom:223.868000pt;}
.y3d{bottom:226.005333pt;}
.y18d{bottom:227.136000pt;}
.y102{bottom:227.434667pt;}
.y16d{bottom:230.552000pt;}
.ya3{bottom:239.808000pt;}
.y70{bottom:240.605333pt;}
.y1c3{bottom:241.601333pt;}
.y18c{bottom:242.478667pt;}
.y3c{bottom:242.742667pt;}
.y101{bottom:244.530667pt;}
.y16c{bottom:247.289333pt;}
.ybe{bottom:254.396000pt;}
.ya2{bottom:256.545333pt;}
.y1c2{bottom:256.944000pt;}
.y6f{bottom:257.342667pt;}
.y18b{bottom:257.820000pt;}
.y3b{bottom:259.480000pt;}
.y100{bottom:261.626667pt;}
.y16b{bottom:264.026667pt;}
.y10{bottom:265.668000pt;}
.ybd{bottom:267.014667pt;}
.y1c1{bottom:272.285333pt;}
.y18a{bottom:273.162667pt;}
.ya1{bottom:273.282667pt;}
.y123{bottom:273.486883pt;}
.y6e{bottom:274.080000pt;}
.y3a{bottom:276.217333pt;}
.yf7{bottom:277.291723pt;}
.yff{bottom:278.721333pt;}
.ybc{bottom:279.634667pt;}
.y16a{bottom:280.764000pt;}
.yf{bottom:281.568000pt;}
.y1c0{bottom:287.628000pt;}
.y189{bottom:288.505333pt;}
.ya0{bottom:290.020000pt;}
.y122{bottom:290.527563pt;}
.y6d{bottom:290.817333pt;}
.y39{bottom:292.954667pt;}
.yf6{bottom:294.331067pt;}
.yfe{bottom:295.817333pt;}
.ybb{bottom:296.384000pt;}
.ye{bottom:297.469333pt;}
.y169{bottom:297.501333pt;}
.y1bf{bottom:302.970667pt;}
.y188{bottom:303.848000pt;}
.y9f{bottom:306.757333pt;}
.y121{bottom:307.650179pt;}
.y38{bottom:309.692000pt;}
.y141{bottom:310.646667pt;}
.y6c{bottom:311.538667pt;}
.yd{bottom:313.369333pt;}
.y168{bottom:314.238667pt;}
.yd4{bottom:315.754667pt;}
.yba{bottom:317.398667pt;}
.y1be{bottom:318.313333pt;}
.y187{bottom:319.190667pt;}
.y140{bottom:323.266667pt;}
.y9e{bottom:323.494667pt;}
.y120{bottom:324.769683pt;}
.y37{bottom:326.429333pt;}
.yf5{bottom:327.050267pt;}
.y167{bottom:330.976000pt;}
.y1bd{bottom:333.656000pt;}
.y186{bottom:334.533333pt;}
.y13f{bottom:335.885333pt;}
.yb9{bottom:338.412000pt;}
.yc{bottom:338.568000pt;}
.y9d{bottom:340.232000pt;}
.y6b{bottom:341.426667pt;}
.y11f{bottom:341.809027pt;}
.yf4{bottom:342.490667pt;}
.y36{bottom:343.166667pt;}
.y166{bottom:347.713333pt;}
.y13e{bottom:348.505333pt;}
.y1bc{bottom:348.998667pt;}
.y185{bottom:353.860000pt;}
.yb{bottom:354.469333pt;}
.y9c{bottom:356.968000pt;}
.yf3{bottom:357.931067pt;}
.y6a{bottom:358.164000pt;}
.y11e{bottom:358.928531pt;}
.yb8{bottom:359.426667pt;}
.y35{bottom:359.904000pt;}
.y1bb{bottom:364.341333pt;}
.y165{bottom:364.450667pt;}
.y13d{bottom:365.254667pt;}
.y9b{bottom:373.705333pt;}
.y69{bottom:374.901333pt;}
.yf1{bottom:375.131067pt;}
.y11d{bottom:375.967875pt;}
.y34{bottom:376.641333pt;}
.ya{bottom:378.338667pt;}
.yf2{bottom:378.491067pt;}
.y1ba{bottom:379.684000pt;}
.yb7{bottom:380.440000pt;}
.y164{bottom:381.188000pt;}
.y184{bottom:383.748000pt;}
.y13c{bottom:386.269333pt;}
.y9a{bottom:390.442667pt;}
.y68{bottom:391.638667pt;}
.y11c{bottom:393.087379pt;}
.y33{bottom:393.378667pt;}
.yef{bottom:393.851067pt;}
.y9{bottom:394.240000pt;}
.y1b9{bottom:395.025333pt;}
.yf0{bottom:397.211067pt;}
.y163{bottom:397.925333pt;}
.yb6{bottom:401.454667pt;}
.y99{bottom:407.180000pt;}
.y13b{bottom:407.282667pt;}
.y183{bottom:407.340000pt;}
.y67{bottom:408.376000pt;}
.y8{bottom:410.140000pt;}
.y11b{bottom:410.206883pt;}
.y1b8{bottom:410.368000pt;}
.yed{bottom:412.491067pt;}
.y32{bottom:414.101333pt;}
.y162{bottom:414.662667pt;}
.yee{bottom:415.851067pt;}
.yb5{bottom:422.468000pt;}
.y182{bottom:422.961333pt;}
.y98{bottom:423.917333pt;}
.y66{bottom:425.113333pt;}
.y1b7{bottom:425.710667pt;}
.y7{bottom:426.040000pt;}
.y11a{bottom:427.247563pt;}
.y13a{bottom:428.297333pt;}
.yeb{bottom:431.131067pt;}
.y161{bottom:431.398667pt;}
.yec{bottom:434.491067pt;}
.y97{bottom:440.654667pt;}
.y1b6{bottom:441.053333pt;}
.y6{bottom:441.941333pt;}
.yb4{bottom:443.482667pt;}
.y119{bottom:444.367067pt;}
.y65{bottom:445.836000pt;}
.y181{bottom:446.553333pt;}
.y160{bottom:448.136000pt;}
.y139{bottom:449.310667pt;}
.ye9{bottom:449.771067pt;}
.yea{bottom:453.131067pt;}
.y1b5{bottom:456.396000pt;}
.y96{bottom:457.392000pt;}
.y5{bottom:457.841333pt;}
.y64{bottom:463.768000pt;}
.y15f{bottom:464.873333pt;}
.ye8{bottom:468.411200pt;}
.y180{bottom:470.145333pt;}
.y138{bottom:470.324000pt;}
.yb3{bottom:471.588000pt;}
.y1b4{bottom:471.738667pt;}
.y4{bottom:473.741333pt;}
.y95{bottom:474.129333pt;}
.y118{bottom:477.086667pt;}
.y31{bottom:477.786667pt;}
.y15e{bottom:481.610667pt;}
.y17f{bottom:485.766667pt;}
.ye7{bottom:487.051067pt;}
.y1b3{bottom:487.081333pt;}
.y3{bottom:489.642667pt;}
.y94{bottom:490.866667pt;}
.y137{bottom:491.338667pt;}
.y117{bottom:492.527067pt;}
.y30{bottom:495.081333pt;}
.y15d{bottom:498.348000pt;}
.y17e{bottom:501.388000pt;}
.y63{bottom:501.626667pt;}
.y1b2{bottom:502.424000pt;}
.yb2{bottom:504.570667pt;}
.y2{bottom:505.542667pt;}
.y93{bottom:507.604000pt;}
.y116{bottom:507.887067pt;}
.y136{bottom:512.352000pt;}
.ye6{bottom:513.771067pt;}
.y15c{bottom:515.085333pt;}
.y1b1{bottom:517.766667pt;}
.y62{bottom:518.364000pt;}
.yb1{bottom:521.308000pt;}
.y1{bottom:521.442667pt;}
.y115{bottom:523.247067pt;}
.y92{bottom:524.341333pt;}
.y17d{bottom:524.978667pt;}
.y2f{bottom:528.317333pt;}
.y15b{bottom:531.822667pt;}
.y1b0{bottom:533.108000pt;}
.y135{bottom:533.366667pt;}
.y114{bottom:540.527067pt;}
.y91{bottom:541.078667pt;}
.yb0{bottom:542.029333pt;}
.y61{bottom:543.070667pt;}
.ye5{bottom:545.532219pt;}
.y2e{bottom:545.612000pt;}
.y1af{bottom:548.450667pt;}
.y15a{bottom:548.560000pt;}
.y17c{bottom:548.570667pt;}
.y134{bottom:554.380000pt;}
.y90{bottom:557.816000pt;}
.y113{bottom:559.167067pt;}
.y60{bottom:559.808000pt;}
.ye4{bottom:562.651723pt;}
.y2d{bottom:562.908000pt;}
.y1ae{bottom:563.793333pt;}
.y17b{bottom:564.192000pt;}
.y159{bottom:565.297333pt;}
.y8f{bottom:574.553333pt;}
.y133{bottom:575.394667pt;}
.y112{bottom:577.807200pt;}
.yd3{bottom:577.913333pt;}
.y1ad{bottom:579.136000pt;}
.yaf{bottom:579.650667pt;}
.ye3{bottom:579.691067pt;}
.y17a{bottom:579.813333pt;}
.y2c{bottom:580.202667pt;}
.y158{bottom:582.034667pt;}
.y132{bottom:582.700000pt;}
.y5f{bottom:584.516000pt;}
.y8e{bottom:591.290667pt;}
.y1ac{bottom:594.478667pt;}
.yd2{bottom:594.650667pt;}
.y179{bottom:595.434667pt;}
.y111{bottom:596.527067pt;}
.ye2{bottom:596.815715pt;}
.y2b{bottom:597.497333pt;}
.y157{bottom:598.772000pt;}
.y12f{bottom:600.528000pt;}
.yae{bottom:600.665333pt;}
.y8d{bottom:608.028000pt;}
.y5e{bottom:609.224000pt;}
.y1ab{bottom:609.821333pt;}
.y131{bottom:611.020000pt;}
.y178{bottom:611.056000pt;}
.ye1{bottom:613.935219pt;}
.y2a{bottom:614.793333pt;}
.y110{bottom:615.167067pt;}
.y130{bottom:618.326667pt;}
.y156{bottom:619.494667pt;}
.y8c{bottom:624.765333pt;}
.y1aa{bottom:625.164000pt;}
.y5d{bottom:625.961333pt;}
.y177{bottom:626.678667pt;}
.yad{bottom:629.117333pt;}
.yd1{bottom:630.325333pt;}
.ye0{bottom:630.974563pt;}
.y29{bottom:632.088000pt;}
.y10f{bottom:633.807067pt;}
.y1a9{bottom:640.506667pt;}
.y8b{bottom:641.502667pt;}
.yd0{bottom:642.945333pt;}
.ydf{bottom:648.094067pt;}
.y28{bottom:649.382667pt;}
.y5c{bottom:650.668000pt;}
.y155{bottom:651.609333pt;}
.y10e{bottom:652.447067pt;}
.y12e{bottom:653.738667pt;}
.ycf{bottom:655.564000pt;}
.y1a8{bottom:655.848000pt;}
.y8a{bottom:658.240000pt;}
.yac{bottom:658.638667pt;}
.y154{bottom:664.228000pt;}
.yde{bottom:665.213571pt;}
.y27{bottom:666.678667pt;}
.y5b{bottom:667.405333pt;}
.y10d{bottom:671.087067pt;}
.y1a7{bottom:671.190667pt;}
.yce{bottom:672.314667pt;}
.y89{bottom:674.977333pt;}
.yab{bottom:675.376000pt;}
.y153{bottom:676.848000pt;}
.ydd{bottom:682.252915pt;}
.y26{bottom:683.973333pt;}
.y1a6{bottom:686.533333pt;}
.y12d{bottom:687.153333pt;}
.y152{bottom:689.466667pt;}
.y10c{bottom:689.807067pt;}
.y88{bottom:691.714667pt;}
.y5a{bottom:692.113333pt;}
.ycd{bottom:693.328000pt;}
.ydc{bottom:699.372419pt;}
.y25{bottom:701.269333pt;}
.y1a5{bottom:701.876000pt;}
.y12c{bottom:704.249333pt;}
.y151{bottom:706.217333pt;}
.y10b{bottom:708.447067pt;}
.y87{bottom:708.452000pt;}
.y59{bottom:708.850667pt;}
.ycc{bottom:714.342667pt;}
.ydb{bottom:716.411763pt;}
.y1a4{bottom:717.218667pt;}
.y24{bottom:718.564000pt;}
.y12b{bottom:721.345333pt;}
.y86{bottom:725.189333pt;}
.y58{bottom:725.588000pt;}
.y10a{bottom:727.087067pt;}
.y150{bottom:727.230667pt;}
.y1a3{bottom:732.561333pt;}
.yda{bottom:733.531267pt;}
.ycb{bottom:735.356000pt;}
.y23{bottom:735.858667pt;}
.y12a{bottom:738.441333pt;}
.y85{bottom:741.926667pt;}
.y57{bottom:742.324000pt;}
.y108{bottom:745.407067pt;}
.y109{bottom:745.727707pt;}
.y1a2{bottom:747.904000pt;}
.y14f{bottom:748.244000pt;}
.yd9{bottom:750.650771pt;}
.yca{bottom:756.369333pt;}
.y103{bottom:758.378667pt;}
.y84{bottom:758.664000pt;}
.y56{bottom:759.061333pt;}
.y1a1{bottom:763.246667pt;}
.yd8{bottom:767.691451pt;}
.y22{bottom:769.241333pt;}
.y14e{bottom:769.258667pt;}
.y83{bottom:775.401333pt;}
.y55{bottom:775.798667pt;}
.yc9{bottom:777.384000pt;}
.y1a0{bottom:778.589333pt;}
.y176{bottom:779.385333pt;}
.y21{bottom:787.445333pt;}
.y14d{bottom:790.272000pt;}
.y107{bottom:790.447067pt;}
.y82{bottom:792.138667pt;}
.y54{bottom:792.536000pt;}
.y19f{bottom:793.930667pt;}
.y20{bottom:797.934667pt;}
.yc8{bottom:798.397333pt;}
.y81{bottom:808.874667pt;}
.y53{bottom:809.273333pt;}
.y14c{bottom:811.286667pt;}
.y1f{bottom:816.138667pt;}
.yd6{bottom:816.331187pt;}
.y19e{bottom:824.616000pt;}
.yd5{bottom:824.891067pt;}
.y80{bottom:825.612000pt;}
.y52{bottom:826.010667pt;}
.yc7{bottom:826.504000pt;}
.y1e{bottom:830.484000pt;}
.y14b{bottom:832.300000pt;}
.y105{bottom:837.727187pt;}
.y19d{bottom:839.958667pt;}
.y7f{bottom:842.349333pt;}
.y51{bottom:842.748000pt;}
.y104{bottom:846.287067pt;}
.y14a{bottom:853.314667pt;}
.y19c{bottom:855.301333pt;}
.y7e{bottom:859.086667pt;}
.y50{bottom:859.485333pt;}
.y1d{bottom:869.281333pt;}
.y19b{bottom:870.644000pt;}
.y149{bottom:874.328000pt;}
.y7d{bottom:875.824000pt;}
.y4f{bottom:876.222667pt;}
.y19a{bottom:885.986667pt;}
.y1c{bottom:886.018667pt;}
.y7c{bottom:892.561333pt;}
.y4e{bottom:892.960000pt;}
.y148{bottom:895.342667pt;}
.y199{bottom:901.329333pt;}
.y7b{bottom:909.298667pt;}
.y4d{bottom:909.697333pt;}
.y147{bottom:916.356000pt;}
.y198{bottom:916.670667pt;}
.y1b{bottom:921.502667pt;}
.y146{bottom:923.662667pt;}
.y7a{bottom:926.036000pt;}
.y4c{bottom:926.434667pt;}
.y197{bottom:932.013333pt;}
.y143{bottom:941.490667pt;}
.y4b{bottom:943.172000pt;}
.y1a{bottom:946.608000pt;}
.y79{bottom:946.758667pt;}
.y196{bottom:947.356000pt;}
.y145{bottom:951.982667pt;}
.y144{bottom:959.288000pt;}
.y4a{bottom:959.909333pt;}
.y195{bottom:962.698667pt;}
.y19{bottom:971.714667pt;}
.y49{bottom:976.646667pt;}
.y194{bottom:978.041333pt;}
.y48{bottom:993.384000pt;}
.y142{bottom:994.700000pt;}
.y47{bottom:1046.810667pt;}
.h7{height:23.209028pt;}
.h18{height:23.359375pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h8{height:30.945242pt;}
.h14{height:31.067969pt;}
.hc{height:31.157778pt;}
.h13{height:31.338125pt;}
.h1b{height:31.691456pt;}
.h10{height:34.574438pt;}
.h9{height:34.813542pt;}
.h19{height:35.039062pt;}
.h1a{height:35.052646pt;}
.h11{height:35.212691pt;}
.h16{height:35.343750pt;}
.hd{height:37.087439pt;}
.ha{height:38.415786pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h15{height:39.010156pt;}
.h17{height:39.349375pt;}
.h1e{height:41.462969pt;}
.hf{height:44.245639pt;}
.h6{height:48.486756pt;}
.he{height:48.688666pt;}
.h1f{height:63.795772pt;}
.h20{height:63.801105pt;}
.h5{height:69.148877pt;}
.h1d{height:112.631647pt;}
.h1c{height:248.289333pt;}
.h12{height:251.772000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:380.644000pt;}
.w2{width:383.132000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x71{left:-246.065333pt;}
.x83{left:-219.694667pt;}
.x72{left:-72.226302pt;}
.x74{left:-56.945333pt;}
.x77{left:-55.505333pt;}
.x7d{left:-53.585333pt;}
.x84{left:-45.854667pt;}
.x7f{left:-43.905333pt;}
.x73{left:-41.025333pt;}
.x8a{left:-31.774667pt;}
.x88{left:-30.574667pt;}
.x85{left:-28.094667pt;}
.x89{left:-25.054667pt;}
.x87{left:-23.934667pt;}
.x8b{left:-17.534667pt;}
.x0{left:0.000000pt;}
.x75{left:39.134667pt;}
.x76{left:41.134667pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x86{left:53.585333pt;}
.xd1{left:76.309333pt;}
.x78{left:117.294667pt;}
.x79{left:119.294667pt;}
.x7a{left:193.534667pt;}
.x7b{left:195.534667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x6d{left:225.932000pt;}
.x59{left:233.008000pt;}
.x92{left:234.960000pt;}
.x90{left:235.958667pt;}
.x93{left:237.949333pt;}
.x4{left:239.392000pt;}
.x91{left:240.937333pt;}
.x8f{left:241.936000pt;}
.x4c{left:244.994667pt;}
.x4a{left:246.022667pt;}
.x4d{left:247.984000pt;}
.x8{left:250.204000pt;}
.x31{left:259.446667pt;}
.x48{left:260.760000pt;}
.x63{left:269.480000pt;}
.x18{left:271.265333pt;}
.x32{left:272.729333pt;}
.xa{left:274.160000pt;}
.x66{left:275.262667pt;}
.x7c{left:276.654667pt;}
.x19{left:277.908000pt;}
.x12{left:279.481333pt;}
.xb{left:280.801333pt;}
.x9e{left:282.701333pt;}
.x13{left:286.122667pt;}
.x6e{left:287.354667pt;}
.x5e{left:288.769333pt;}
.x49{left:290.714667pt;}
.xc1{left:292.004000pt;}
.x9f{left:293.032000pt;}
.x10{left:299.781333pt;}
.x6f{left:302.645333pt;}
.x5f{left:303.676000pt;}
.x11{left:306.422667pt;}
.xa0{left:307.348000pt;}
.xc9{left:313.833333pt;}
.xc2{left:315.314667pt;}
.xbb{left:317.973333pt;}
.x4b{left:319.829333pt;}
.x8d{left:323.272000pt;}
.xb6{left:328.682667pt;}
.xc{left:333.640000pt;}
.x6{left:334.908000pt;}
.xa1{left:337.870667pt;}
.xd{left:340.281333pt;}
.x9{left:342.394667pt;}
.xe{left:343.536000pt;}
.x64{left:346.140000pt;}
.x5a{left:347.724000pt;}
.xf{left:350.177333pt;}
.x7e{left:352.814667pt;}
.x55{left:357.350667pt;}
.x6a{left:358.798667pt;}
.xbc{left:359.881333pt;}
.x65{left:361.420000pt;}
.x5b{left:362.858667pt;}
.x9a{left:365.040000pt;}
.x35{left:368.170667pt;}
.x56{left:371.584000pt;}
.x6b{left:373.180000pt;}
.xc3{left:375.693333pt;}
.x9b{left:377.225333pt;}
.x36{left:380.248000pt;}
.xbd{left:382.313333pt;}
.xce{left:385.264000pt;}
.x7{left:390.558667pt;}
.x47{left:392.869333pt;}
.xcf{left:398.548000pt;}
.xc7{left:401.413333pt;}
.x45{left:402.614667pt;}
.x22{left:405.405333pt;}
.x14{left:412.776000pt;}
.xc8{left:414.697333pt;}
.x46{left:415.898667pt;}
.x15{left:419.417333pt;}
.xb7{left:420.457333pt;}
.x1e{left:425.670667pt;}
.x1f{left:432.312000pt;}
.x42{left:433.762667pt;}
.xbe{left:439.758667pt;}
.x1a{left:441.693333pt;}
.xaf{left:444.778667pt;}
.x43{left:447.046667pt;}
.x1b{left:448.336000pt;}
.x8c{left:450.628614pt;}
.x80{left:451.773152pt;}
.xb0{left:456.909333pt;}
.xa2{left:459.745333pt;}
.x44{left:462.725333pt;}
.x57{left:465.753333pt;}
.xca{left:467.760000pt;}
.x27{left:468.844000pt;}
.x39{left:472.341333pt;}
.xb8{left:473.706667pt;}
.x28{left:475.485333pt;}
.x67{left:478.360000pt;}
.x58{left:479.986667pt;}
.x1c{left:481.002667pt;}
.x6c{left:482.996000pt;}
.x51{left:484.118667pt;}
.x23{left:485.186667pt;}
.x1d{left:487.645333pt;}
.x94{left:489.732000pt;}
.x24{left:491.829333pt;}
.x2f{left:493.917333pt;}
.x52{left:499.960000pt;}
.x60{left:501.228000pt;}
.x30{left:507.200000pt;}
.x61{left:515.470667pt;}
.xb1{left:522.917333pt;}
.x16{left:524.686667pt;}
.xb9{left:527.662667pt;}
.xa3{left:529.049333pt;}
.x17{left:531.328000pt;}
.xb2{left:537.173333pt;}
.xba{left:541.902667pt;}
.x95{left:543.550667pt;}
.x9c{left:545.824000pt;}
.xa7{left:556.318667pt;}
.x96{left:557.797333pt;}
.x9d{left:560.134667pt;}
.x20{left:567.150667pt;}
.xa8{left:568.520000pt;}
.xcc{left:571.573333pt;}
.x21{left:573.793333pt;}
.xa4{left:574.704000pt;}
.xb3{left:579.313333pt;}
.xa9{left:580.296000pt;}
.x68{left:583.469333pt;}
.x97{left:587.154667pt;}
.xaa{left:591.221333pt;}
.x4e{left:595.602667pt;}
.x8e{left:597.016000pt;}
.x69{left:599.609333pt;}
.x37{left:601.205333pt;}
.x53{left:603.422667pt;}
.x81{left:605.724000pt;}
.x4f{left:609.860000pt;}
.x38{left:613.284000pt;}
.x82{left:618.214667pt;}
.x54{left:619.264000pt;}
.x29{left:621.309333pt;}
.x62{left:623.774667pt;}
.x2a{left:627.950667pt;}
.x2b{left:631.310667pt;}
.xab{left:635.448000pt;}
.xc4{left:636.572000pt;}
.x2c{left:637.953333pt;}
.xa5{left:644.008000pt;}
.xb4{left:645.320000pt;}
.x70{left:646.310667pt;}
.xd0{left:648.261333pt;}
.xac{left:649.773333pt;}
.x98{left:653.094667pt;}
.xb5{left:656.246667pt;}
.xa6{left:658.649333pt;}
.xc5{left:659.884000pt;}
.x33{left:662.064000pt;}
.xcd{left:665.852000pt;}
.x99{left:667.341333pt;}
.x2d{left:669.157333pt;}
.x34{left:674.140000pt;}
.x2e{left:675.798667pt;}
.xad{left:680.312000pt;}
.xbf{left:681.376000pt;}
.xc6{left:687.017333pt;}
.x50{left:692.038667pt;}
.xc0{left:693.500000pt;}
.x3e{left:695.452000pt;}
.x40{left:697.149333pt;}
.x25{left:699.645333pt;}
.xcb{left:702.089333pt;}
.x5c{left:705.128000pt;}
.x26{left:706.288000pt;}
.x3f{left:708.736000pt;}
.xae{left:715.214667pt;}
.x5d{left:720.262667pt;}
.x3c{left:727.005333pt;}
.x3a{left:734.546667pt;}
.x3d{left:740.289333pt;}
.x3b{left:741.189333pt;}
.x41{left:744.770667pt;}
}




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