
    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_1870ab78b12d8d1568490039.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ec38ae46e54af82f12c6a704.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e5bf043080364b4e3c2430bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_172342253c8aa9de272a0a16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8c947dee61fd02f76af21c03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_042f4ce3d5dd18213b057fa2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74aebe3a7d07e86e636691b4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4799d455b441acd26bd1f5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bbb185bbeba5f37225c782c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.913086;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_1ea4094f81306106be1d7eec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f8cf7f603261c951463b3fb2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1e5e79eb4d61d46bf39f99f9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2d44a465aab4498b5903db15.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c629f00179149472f501e1a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;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_980d2e6b3450ab125d980907.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9c8f7a4dc860667c6243e23c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8feac217093b19407f76d5c0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.697000;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_9cdf07873a2863cc6f94192e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_be303970db656b36832ccd83.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_91bdd93cca10089814456428.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_066c922688fc7e724b2f63ab.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c913dbd7e85feff96fa3f330.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9570b13434d4fc80ca18fc5a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7ab15c00f2d51614271ba254.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5f45f8dc66ac235e2f8b429a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d8416c957cfcee5e57b55a84.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_37a56e68ef136cb6ef336585.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_6640302d9f5c54eb63cff3ea.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_8b84a3026ceaabd6a713e08f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1876918af1fd8ec5f23e37d0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.703450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_8561a6a219bbcf981d859232.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_65249d95ebdb13c6defd480b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d14cefd5382d14335e3ff638.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-8.964000px;}
.v5{vertical-align:-6.378000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.970000px;}
.v1{vertical-align:21.690000px;}
.ls14{letter-spacing:-0.348480px;}
.ls6{letter-spacing:-0.338688px;}
.ls4{letter-spacing:-0.320544px;}
.ls5{letter-spacing:-0.260064px;}
.ls12{letter-spacing:-0.247104px;}
.ls11{letter-spacing:-0.240768px;}
.lsd{letter-spacing:-0.228096px;}
.ls1b{letter-spacing:-0.198720px;}
.ls1d{letter-spacing:-0.192096px;}
.lse{letter-spacing:-0.190080px;}
.lsf{letter-spacing:-0.177408px;}
.ls16{letter-spacing:-0.158976px;}
.ls1a{letter-spacing:-0.139104px;}
.ls17{letter-spacing:-0.125856px;}
.ls13{letter-spacing:-0.120384px;}
.ls19{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.107712px;}
.ls18{letter-spacing:-0.079488px;}
.ls10{letter-spacing:-0.069696px;}
.ls1c{letter-spacing:-0.039744px;}
.ls0{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000538px;}
.ls2a{letter-spacing:0.000921px;}
.ls35{letter-spacing:0.003031px;}
.ls2d{letter-spacing:0.003269px;}
.ls43{letter-spacing:0.006921px;}
.ls3{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.145440px;}
.ls1{letter-spacing:0.186336px;}
.ls2{letter-spacing:0.186624px;}
.ls7{letter-spacing:0.359136px;}
.ls53{letter-spacing:2.455358px;}
.ls46{letter-spacing:2.982648px;}
.ls23{letter-spacing:2.984525px;}
.ls21{letter-spacing:2.988532px;}
.ls2f{letter-spacing:2.988648px;}
.ls32{letter-spacing:2.989140px;}
.ls22{letter-spacing:2.990525px;}
.ls44{letter-spacing:2.992362px;}
.ls56{letter-spacing:2.993282px;}
.ls1f{letter-spacing:3.361680px;}
.ls20{letter-spacing:7.020000px;}
.ls1e{letter-spacing:9.754272px;}
.ls55{letter-spacing:12.092915px;}
.ls52{letter-spacing:12.283002px;}
.ls2c{letter-spacing:13.280338px;}
.ls2e{letter-spacing:13.282200px;}
.ls29{letter-spacing:13.284538px;}
.ls30{letter-spacing:13.286338px;}
.ls5a{letter-spacing:13.304915px;}
.ls54{letter-spacing:15.080352px;}
.ls51{letter-spacing:15.278352px;}
.ls31{letter-spacing:16.267140px;}
.ls2b{letter-spacing:16.268525px;}
.ls28{letter-spacing:16.270087px;}
.ls45{letter-spacing:16.270362px;}
.ls47{letter-spacing:16.273140px;}
.ls41{letter-spacing:16.276087px;}
.ls42{letter-spacing:16.276362px;}
.ls59{letter-spacing:16.298352px;}
.ls27{letter-spacing:16.602538px;}
.ls57{letter-spacing:16.935056px;}
.ls58{letter-spacing:16.941056px;}
.ls3e{letter-spacing:18.027199px;}
.ls3c{letter-spacing:18.029306px;}
.ls3d{letter-spacing:18.032800px;}
.ls25{letter-spacing:18.608800px;}
.ls26{letter-spacing:18.609199px;}
.ls24{letter-spacing:18.611306px;}
.ls4e{letter-spacing:18.754087px;}
.ls3f{letter-spacing:19.923031px;}
.ls48{letter-spacing:21.935306px;}
.ls34{letter-spacing:22.091306px;}
.ls4f{letter-spacing:22.908648px;}
.ls4c{letter-spacing:23.704362px;}
.ls39{letter-spacing:23.741915px;}
.ls37{letter-spacing:24.414648px;}
.ls36{letter-spacing:24.418087px;}
.ls3a{letter-spacing:24.692525px;}
.ls4a{letter-spacing:24.924648px;}
.ls4d{letter-spacing:25.178338px;}
.ls38{letter-spacing:26.367199px;}
.ls4b{letter-spacing:26.428087px;}
.ls50{letter-spacing:27.684648px;}
.ls3b{letter-spacing:27.710222px;}
.lsc{letter-spacing:27.900576px;}
.ls49{letter-spacing:32.588338px;}
.lsb{letter-spacing:82.879200px;}
.lsa{letter-spacing:104.889888px;}
.ls9{letter-spacing:123.226848px;}
.ls33{letter-spacing:270.692338px;}
.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;}
}
.wsea{word-spacing:-38.937826px;}
.ws206{word-spacing:-33.211407px;}
.wseb{word-spacing:-30.629017px;}
.ws1f1{word-spacing:-26.899125px;}
.ws207{word-spacing:-26.133958px;}
.ws2{word-spacing:-20.030400px;}
.ws8{word-spacing:-18.414720px;}
.wsd{word-spacing:-18.374976px;}
.wsb{word-spacing:-18.295488px;}
.wsa{word-spacing:-18.288864px;}
.wsc{word-spacing:-18.275616px;}
.ws9{word-spacing:-18.255744px;}
.ws3{word-spacing:-17.614080px;}
.ws7{word-spacing:-17.506368px;}
.ws6{word-spacing:-17.436672px;}
.ws4{word-spacing:-17.424000px;}
.ws5{word-spacing:-17.373312px;}
.ws7e{word-spacing:-16.605662px;}
.ws1{word-spacing:-16.553376px;}
.ws154{word-spacing:-15.359443px;}
.ws1dd{word-spacing:-14.111859px;}
.ws152{word-spacing:-14.111320px;}
.ws18f{word-spacing:-3.534555px;}
.wsee{word-spacing:-3.335478px;}
.ws1ed{word-spacing:-3.192017px;}
.ws124{word-spacing:-3.093408px;}
.ws177{word-spacing:-3.039610px;}
.ws5d{word-spacing:-3.036600px;}
.wsd4{word-spacing:-2.976825px;}
.wsf6{word-spacing:-2.857274px;}
.ws90{word-spacing:-2.677947px;}
.ws71{word-spacing:-2.618171px;}
.wsa6{word-spacing:-2.438844px;}
.wsf9{word-spacing:-2.379069px;}
.ws27{word-spacing:-2.347991px;}
.ws11b{word-spacing:-2.259518px;}
.ws65{word-spacing:-2.199742px;}
.ws19d{word-spacing:-2.125037px;}
.ws31{word-spacing:-2.080191px;}
.wsfa{word-spacing:-1.900864px;}
.ws126{word-spacing:-1.856045px;}
.ws29{word-spacing:-1.821965px;}
.ws147{word-spacing:-1.762234px;}
.ws83{word-spacing:-1.721537px;}
.wsb2{word-spacing:-1.601986px;}
.ws15{word-spacing:-1.482435px;}
.ws113{word-spacing:-1.422659px;}
.ws38{word-spacing:-1.362884px;}
.ws135{word-spacing:-1.314599px;}
.ws56{word-spacing:-1.303108px;}
.ws19c{word-spacing:-1.221224px;}
.wsf1{word-spacing:-1.183557px;}
.wse2{word-spacing:-1.123781px;}
.ws74{word-spacing:-1.064006px;}
.ws1e9{word-spacing:-0.961194px;}
.ws3b{word-spacing:-0.944454px;}
.ws1c4{word-spacing:-0.887674px;}
.ws4f{word-spacing:-0.884679px;}
.ws199{word-spacing:-0.833875px;}
.ws51{word-spacing:-0.824903px;}
.ws53{word-spacing:-0.806108px;}
.wsa1{word-spacing:-0.765128px;}
.ws93{word-spacing:-0.705352px;}
.ws18d{word-spacing:-0.618682px;}
.wsc0{word-spacing:-0.585801px;}
.ws1e8{word-spacing:-0.578629px;}
.ws19a{word-spacing:-0.537539px;}
.ws4a{word-spacing:-0.466250px;}
.ws11c{word-spacing:-0.406474px;}
.ws123{word-spacing:-0.403488px;}
.ws9a{word-spacing:-0.387347px;}
.ws11f{word-spacing:-0.346698px;}
.ws4c{word-spacing:-0.286923px;}
.ws7d{word-spacing:-0.167372px;}
.ws17d{word-spacing:-0.131656px;}
.ws164{word-spacing:-0.118564px;}
.ws69{word-spacing:-0.107596px;}
.ws198{word-spacing:-0.091457px;}
.ws1c5{word-spacing:-0.080698px;}
.ws54{word-spacing:-0.059776px;}
.ws1f9{word-spacing:-0.053798px;}
.ws87{word-spacing:-0.047821px;}
.wsa3{word-spacing:-0.041843px;}
.wsa8{word-spacing:-0.035866px;}
.ws125{word-spacing:-0.016140px;}
.wsdb{word-spacing:-0.004782px;}
.ws0{word-spacing:0.000000px;}
.ws178{word-spacing:0.037659px;}
.ws2f{word-spacing:0.071731px;}
.ws70{word-spacing:0.090859px;}
.ws18c{word-spacing:0.123736px;}
.ws16{word-spacing:0.131506px;}
.ws183{word-spacing:0.134496px;}
.wsd1{word-spacing:0.191282px;}
.ws1ba{word-spacing:0.242093px;}
.ws1c{word-spacing:0.251058px;}
.ws117{word-spacing:0.310833px;}
.ws122{word-spacing:0.338930px;}
.ws162{word-spacing:0.349690px;}
.ws14{word-spacing:0.370609px;}
.ws89{word-spacing:0.430384px;}
.ws60{word-spacing:0.490160px;}
.ws49{word-spacing:0.549936px;}
.ws1ee{word-spacing:0.555913px;}
.ws148{word-spacing:0.564883px;}
.ws6c{word-spacing:0.569065px;}
.ws6b{word-spacing:0.609711px;}
.ws196{word-spacing:0.618682px;}
.wse7{word-spacing:0.669487px;}
.ws112{word-spacing:0.729262px;}
.ws179{word-spacing:0.746782px;}
.ws146{word-spacing:0.760827px;}
.ws14e{word-spacing:0.767340px;}
.ws16a{word-spacing:0.780077px;}
.wsa0{word-spacing:0.789038px;}
.ws1f5{word-spacing:0.808168px;}
.ws47{word-spacing:0.848814px;}
.ws182{word-spacing:0.876914px;}
.ws1c0{word-spacing:0.887674px;}
.ws5b{word-spacing:0.908589px;}
.ws100{word-spacing:0.968365px;}
.ws136{word-spacing:0.995270px;}
.ws86{word-spacing:1.028140px;}
.ws5e{word-spacing:1.087916px;}
.ws141{word-spacing:1.097917px;}
.ws14a{word-spacing:1.102867px;}
.ws11d{word-spacing:1.147692px;}
.ws13e{word-spacing:1.156666px;}
.ws4e{word-spacing:1.207467px;}
.ws12e{word-spacing:1.210464px;}
.ws1a9{word-spacing:1.252237px;}
.ws195{word-spacing:1.253503px;}
.ws156{word-spacing:1.264262px;}
.ws12{word-spacing:1.267243px;}
.ws1f2{word-spacing:1.286374px;}
.ws82{word-spacing:1.327018px;}
.ws75{word-spacing:1.386794px;}
.ws10c{word-spacing:1.399790px;}
.ws10d{word-spacing:1.404087px;}
.ws169{word-spacing:1.414898px;}
.ws1ae{word-spacing:1.425658px;}
.ws97{word-spacing:1.429836px;}
.wsbc{word-spacing:1.446570px;}
.ws19f{word-spacing:1.479456px;}
.ws61{word-spacing:1.506345px;}
.ws1bf{word-spacing:1.522495px;}
.wsdc{word-spacing:1.525477px;}
.ws17c{word-spacing:1.533254px;}
.ws7a{word-spacing:1.566121px;}
.ws1e6{word-spacing:1.573298px;}
.ws130{word-spacing:1.587053px;}
.ws1cf{word-spacing:1.601647px;}
.wsf7{word-spacing:1.625896px;}
.ws1a8{word-spacing:1.630092px;}
.ws1b9{word-spacing:1.640851px;}
.ws1ef{word-spacing:1.649807px;}
.ws48{word-spacing:1.685672px;}
.ws1e5{word-spacing:1.716760px;}
.ws62{word-spacing:1.745448px;}
.ws13d{word-spacing:1.791487px;}
.ws19b{word-spacing:1.802246px;}
.ws3e{word-spacing:1.805223px;}
.ws155{word-spacing:1.845285px;}
.ws30{word-spacing:1.864999px;}
.ws24{word-spacing:1.924774px;}
.ws1e3{word-spacing:1.955863px;}
.ws158{word-spacing:1.963642px;}
.wscc{word-spacing:1.984550px;}
.ws1ad{word-spacing:2.006680px;}
.ws1ca{word-spacing:2.043788px;}
.ws84{word-spacing:2.044326px;}
.ws17a{word-spacing:2.092908px;}
.ws1dc{word-spacing:2.099324px;}
.wsc1{word-spacing:2.104101px;}
.ws19e{word-spacing:2.114277px;}
.wsf4{word-spacing:2.150542px;}
.wsca{word-spacing:2.163877px;}
.ws165{word-spacing:2.178835px;}
.ws18e{word-spacing:2.189595px;}
.wsb8{word-spacing:2.223652px;}
.ws3a{word-spacing:2.283428px;}
.ws212{word-spacing:2.290607px;}
.ws104{word-spacing:2.338427px;}
.ws41{word-spacing:2.343204px;}
.ws7b{word-spacing:2.402979px;}
.wsf5{word-spacing:2.439902px;}
.wse8{word-spacing:2.462755px;}
.ws8b{word-spacing:2.522530px;}
.ws157{word-spacing:2.544664px;}
.ws1eb{word-spacing:2.546441px;}
.ws4d{word-spacing:2.582306px;}
.wscb{word-spacing:2.642082px;}
.wsf3{word-spacing:2.701857px;}
.ws1f3{word-spacing:2.720992px;}
.ws45{word-spacing:2.761633px;}
.ws102{word-spacing:2.768813px;}
.ws2d{word-spacing:2.816633px;}
.wsbe{word-spacing:2.821408px;}
.ws1cc{word-spacing:2.824416px;}
.wsda{word-spacing:2.864454px;}
.ws176{word-spacing:2.878214px;}
.ws20{word-spacing:2.881184px;}
.ws187{word-spacing:2.921253px;}
.ws44{word-spacing:2.940960px;}
.ws1e0{word-spacing:2.960095px;}
.ws1b6{word-spacing:2.985811px;}
.ws1bb{word-spacing:2.996571px;}
.ws105{word-spacing:3.000735px;}
.ws12a{word-spacing:3.039610px;}
.ws33{word-spacing:3.060511px;}
.ws133{word-spacing:3.093408px;}
.ws10a{word-spacing:3.120286px;}
.ws13b{word-spacing:3.147206px;}
.ws163{word-spacing:3.157966px;}
.ws59{word-spacing:3.239838px;}
.ws1cb{word-spacing:3.244044px;}
.ws1d5{word-spacing:3.261805px;}
.ws175{word-spacing:3.283354px;}
.wse9{word-spacing:3.290417px;}
.ws210{word-spacing:3.294839px;}
.ws19{word-spacing:3.299613px;}
.ws16e{word-spacing:3.308602px;}
.ws1d6{word-spacing:3.319536px;}
.ws1d{word-spacing:3.359389px;}
.ws16d{word-spacing:3.362400px;}
.ws138{word-spacing:3.371645px;}
.ws149{word-spacing:3.373160px;}
.ws1b5{word-spacing:3.405439px;}
.ws142{word-spacing:3.416198px;}
.ws17{word-spacing:3.419164px;}
.ws2a{word-spacing:3.438301px;}
.wsc4{word-spacing:3.478940px;}
.ws159{word-spacing:3.513036px;}
.ws1f7{word-spacing:3.566834px;}
.ws1aa{word-spacing:3.577594px;}
.ws2c{word-spacing:3.581763px;}
.ws72{word-spacing:3.598491px;}
.ws13a{word-spacing:3.620632px;}
.ws50{word-spacing:3.658267px;}
.ws1b2{word-spacing:3.685190px;}
.ws9d{word-spacing:3.718042px;}
.ws1c7{word-spacing:3.738989px;}
.ws1d9{word-spacing:3.769838px;}
.ws6d{word-spacing:3.773045px;}
.ws3c{word-spacing:3.777818px;}
.wsff{word-spacing:3.801728px;}
.ws1d7{word-spacing:3.827569px;}
.ws39{word-spacing:3.837594px;}
.ws140{word-spacing:3.846586px;}
.ws1f6{word-spacing:3.861504px;}
.ws34{word-spacing:3.897369px;}
.ws12f{word-spacing:3.911144px;}
.ws16c{word-spacing:3.943423px;}
.ws1d0{word-spacing:3.954182px;}
.wsc6{word-spacing:3.957145px;}
.ws180{word-spacing:4.007981px;}
.ws205{word-spacing:4.012148px;}
.ws40{word-spacing:4.016920px;}
.ws5f{word-spacing:4.076696px;}
.ws173{word-spacing:4.115578px;}
.ws12d{word-spacing:4.169376px;}
.wsab{word-spacing:4.196247px;}
.ws1b1{word-spacing:4.247115px;}
.ws95{word-spacing:4.256023px;}
.ws168{word-spacing:4.276973px;}
.ws10{word-spacing:4.315798px;}
.ws1b8{word-spacing:4.330771px;}
.wsb7{word-spacing:4.435350px;}
.ws17b{word-spacing:4.438368px;}
.ws64{word-spacing:4.483200px;}
.wsd7{word-spacing:4.490354px;}
.ws15b{word-spacing:4.522239px;}
.ws1e2{word-spacing:4.538175px;}
.ws145{word-spacing:4.545965px;}
.wsb1{word-spacing:4.554901px;}
.wsc9{word-spacing:4.614676px;}
.ws1c1{word-spacing:4.642802px;}
.wscf{word-spacing:4.674452px;}
.ws6e{word-spacing:4.681637px;}
.ws13f{word-spacing:4.696600px;}
.ws1e7{word-spacing:4.729457px;}
.wsad{word-spacing:4.734228px;}
.ws18a{word-spacing:4.761158px;}
.wsf0{word-spacing:4.794003px;}
.ws1de{word-spacing:4.825099px;}
.ws166{word-spacing:4.825716px;}
.ws85{word-spacing:4.853779px;}
.ws1ac{word-spacing:4.857996px;}
.ws17f{word-spacing:4.911794px;}
.ws91{word-spacing:4.913554px;}
.ws167{word-spacing:4.965592px;}
.ws23{word-spacing:4.973330px;}
.ws1a3{word-spacing:5.030150px;}
.wsa2{word-spacing:5.033106px;}
.ws1f0{word-spacing:5.039083px;}
.ws1e1{word-spacing:5.064202px;}
.ws193{word-spacing:5.073189px;}
.ws1a7{word-spacing:5.083949px;}
.ws2e{word-spacing:5.092881px;}
.ws12c{word-spacing:5.126988px;}
.ws1bd{word-spacing:5.137747px;}
.wsc8{word-spacing:5.152657px;}
.ws99{word-spacing:5.207663px;}
.wsbb{word-spacing:5.212432px;}
.ws2b{word-spacing:5.255484px;}
.ws37{word-spacing:5.272208px;}
.ws111{word-spacing:5.322486px;}
.ws10e{word-spacing:5.328421px;}
.ws110{word-spacing:5.331984px;}
.ws132{word-spacing:5.352941px;}
.wsc3{word-spacing:5.379825px;}
.ws3d{word-spacing:5.391759px;}
.ws1b7{word-spacing:5.395980px;}
.ws1df{word-spacing:5.398946px;}
.ws186{word-spacing:5.406739px;}
.ws1ea{word-spacing:5.446766px;}
.wsbf{word-spacing:5.451535px;}
.wsd8{word-spacing:5.494587px;}
.wsef{word-spacing:5.511310px;}
.ws73{word-spacing:5.571086px;}
.ws170{word-spacing:5.578894px;}
.wsa7{word-spacing:5.630862px;}
.ws12b{word-spacing:5.632692px;}
.ws15d{word-spacing:5.648465px;}
.ws144{word-spacing:5.664972px;}
.ws13c{word-spacing:5.686491px;}
.ws46{word-spacing:5.690637px;}
.ws139{word-spacing:5.729530px;}
.wsf{word-spacing:5.750413px;}
.ws8d{word-spacing:5.810188px;}
.ws1a2{word-spacing:5.815039px;}
.ws211{word-spacing:5.829331px;}
.ws172{word-spacing:5.837126px;}
.ws4b{word-spacing:5.869964px;}
.ws1ec{word-spacing:5.875941px;}
.ws1f4{word-spacing:5.877152px;}
.ws16f{word-spacing:5.901684px;}
.wsce{word-spacing:5.929740px;}
.ws17e{word-spacing:5.944723px;}
.ws189{word-spacing:5.987762px;}
.ws143{word-spacing:6.009281px;}
.ws9f{word-spacing:6.049291px;}
.wsfc{word-spacing:6.109066px;}
.ws127{word-spacing:6.149157px;}
.ws1b4{word-spacing:6.159917px;}
.ws103{word-spacing:6.164075px;}
.ws6a{word-spacing:6.168842px;}
.ws1a0{word-spacing:6.213715px;}
.wsb0{word-spacing:6.228618px;}
.ws1af{word-spacing:6.267514px;}
.wse0{word-spacing:6.288393px;}
.wsba{word-spacing:6.348169px;}
.wse4{word-spacing:6.407944px;}
.ws14d{word-spacing:6.428909px;}
.ws88{word-spacing:6.467720px;}
.wsdd{word-spacing:6.498820px;}
.ws1bc{word-spacing:6.525746px;}
.ws57{word-spacing:6.527496px;}
.wsfe{word-spacing:6.587271px;}
.ws7c{word-spacing:6.647047px;}
.ws28{word-spacing:6.690102px;}
.ws118{word-spacing:6.706822px;}
.ws134{word-spacing:6.740940px;}
.ws43{word-spacing:6.766598px;}
.wsdf{word-spacing:6.785743px;}
.wsae{word-spacing:6.826374px;}
.ws131{word-spacing:6.848536px;}
.wsf8{word-spacing:6.886149px;}
.ws32{word-spacing:6.945925px;}
.ws18{word-spacing:7.005700px;}
.ws1d1{word-spacing:7.011678px;}
.wsac{word-spacing:7.065476px;}
.ws1e4{word-spacing:7.071453px;}
.ws188{word-spacing:7.074490px;}
.ws3f{word-spacing:7.125252px;}
.ws190{word-spacing:7.182086px;}
.wsa9{word-spacing:7.185027px;}
.ws1f{word-spacing:7.244803px;}
.ws5a{word-spacing:7.304578px;}
.ws192{word-spacing:7.343482px;}
.ws114{word-spacing:7.364354px;}
.ws80{word-spacing:7.424130px;}
.ws14c{word-spacing:7.440319px;}
.ws185{word-spacing:7.451078px;}
.ws1a4{word-spacing:7.461838px;}
.wsfd{word-spacing:7.483905px;}
.wsd9{word-spacing:7.503052px;}
.ws8a{word-spacing:7.543681px;}
.ws171{word-spacing:7.547916px;}
.ws11a{word-spacing:7.603456px;}
.ws101{word-spacing:7.663232px;}
.ws1b{word-spacing:7.723008px;}
.ws119{word-spacing:7.782783px;}
.wsde{word-spacing:7.789976px;}
.wsaa{word-spacing:7.842559px;}
.wsb9{word-spacing:7.902334px;}
.ws15e{word-spacing:7.935264px;}
.ws9e{word-spacing:7.962110px;}
.ws1b3{word-spacing:7.978303px;}
.ws1e{word-spacing:8.021886px;}
.ws129{word-spacing:8.042861px;}
.wse1{word-spacing:8.081661px;}
.wsc5{word-spacing:8.141437px;}
.ws5c{word-spacing:8.201212px;}
.ws1be{word-spacing:8.258054px;}
.ws76{word-spacing:8.260988px;}
.ws26{word-spacing:8.320764px;}
.ws15c{word-spacing:8.354892px;}
.ws10b{word-spacing:8.380539px;}
.ws191{word-spacing:8.462488px;}
.ws1a5{word-spacing:8.516287px;}
.ws11{word-spacing:8.559866px;}
.ws6f{word-spacing:8.602926px;}
.ws94{word-spacing:8.619642px;}
.wsb5{word-spacing:8.679417px;}
.ws96{word-spacing:8.698567px;}
.ws67{word-spacing:8.739193px;}
.ws35{word-spacing:8.798968px;}
.ws92{word-spacing:8.858744px;}
.ws8c{word-spacing:8.978295px;}
.ws1c6{word-spacing:9.011232px;}
.ws9c{word-spacing:9.038071px;}
.wscd{word-spacing:9.097846px;}
.ws1ce{word-spacing:9.118829px;}
.ws15a{word-spacing:9.172627px;}
.ws181{word-spacing:9.206129px;}
.ws1a1{word-spacing:9.206845px;}
.ws1b0{word-spacing:9.207420px;}
.ws1ab{word-spacing:9.208900px;}
.ws194{word-spacing:9.209209px;}
.ws18b{word-spacing:9.210248px;}
.ws1c2{word-spacing:9.211175px;}
.ws16b{word-spacing:9.211217px;}
.ws174{word-spacing:9.215017px;}
.wsbd{word-spacing:9.217398px;}
.ws14b{word-spacing:9.226426px;}
.ws197{word-spacing:9.233549px;}
.wsc7{word-spacing:9.336949px;}
.wsb6{word-spacing:9.396724px;}
.ws13{word-spacing:9.456500px;}
.wse5{word-spacing:9.516276px;}
.ws115{word-spacing:9.695602px;}
.ws98{word-spacing:9.750620px;}
.wsaf{word-spacing:9.755378px;}
.wsb3{word-spacing:9.815154px;}
.ws184{word-spacing:9.861247px;}
.ws77{word-spacing:9.874929px;}
.ws66{word-spacing:9.934705px;}
.wsa5{word-spacing:9.994480px;}
.ws1c8{word-spacing:10.050872px;}
.wsfb{word-spacing:10.114032px;}
.ws15f{word-spacing:10.151758px;}
.wse6{word-spacing:10.233583px;}
.ws121{word-spacing:10.302394px;}
.ws8f{word-spacing:10.412910px;}
.wsd6{word-spacing:10.420109px;}
.wsd5{word-spacing:10.467929px;}
.ws1cd{word-spacing:10.506828px;}
.ws161{word-spacing:10.517587px;}
.ws107{word-spacing:10.532461px;}
.ws9b{word-spacing:10.592236px;}
.wsa4{word-spacing:10.652012px;}
.ws25{word-spacing:10.771563px;}
.ws22{word-spacing:10.950890px;}
.ws42{word-spacing:11.010666px;}
.ws68{word-spacing:11.189992px;}
.ws78{word-spacing:11.249768px;}
.ws1c3{word-spacing:11.281524px;}
.ws7f{word-spacing:11.429095px;}
.wsd2{word-spacing:11.668197px;}
.ws109{word-spacing:11.787748px;}
.ws1a{word-spacing:11.847524px;}
.ws120{word-spacing:11.851788px;}
.ws58{word-spacing:11.907300px;}
.ws81{word-spacing:11.967075px;}
.ws36{word-spacing:12.206178px;}
.ws79{word-spacing:12.265953px;}
.ws1c9{word-spacing:12.400531px;}
.ws21{word-spacing:12.564831px;}
.ws106{word-spacing:12.624607px;}
.ws137{word-spacing:12.658764px;}
.ws11e{word-spacing:12.684382px;}
.wsd0{word-spacing:12.803934px;}
.ws116{word-spacing:12.923485px;}
.ws63{word-spacing:12.983260px;}
.ws108{word-spacing:13.162587px;}
.wsd3{word-spacing:13.222363px;}
.ws150{word-spacing:13.368902px;}
.ws151{word-spacing:14.229677px;}
.ws160{word-spacing:14.272716px;}
.ws128{word-spacing:14.660064px;}
.wsed{word-spacing:16.226606px;}
.ws153{word-spacing:17.027194px;}
.ws8e{word-spacing:17.406655px;}
.ws52{word-spacing:17.514251px;}
.wsc2{word-spacing:18.263514px;}
.ws14f{word-spacing:18.361394px;}
.ws1fd{word-spacing:18.641146px;}
.wsec{word-spacing:19.552394px;}
.ws1a6{word-spacing:19.555718px;}
.ws1fa{word-spacing:19.827420px;}
.wsf2{word-spacing:22.262606px;}
.ws10f{word-spacing:24.880394px;}
.ws55{word-spacing:26.112587px;}
.ws20f{word-spacing:30.960979px;}
.ws20a{word-spacing:34.027488px;}
.wsb4{word-spacing:34.378229px;}
.ws1fc{word-spacing:43.227014px;}
.ws203{word-spacing:46.293523px;}
.ws1fb{word-spacing:49.256262px;}
.wse3{word-spacing:58.281600px;}
.ws20d{word-spacing:58.472262px;}
.ws1fe{word-spacing:61.679866px;}
.ws201{word-spacing:63.080262px;}
.ws20e{word-spacing:63.186221px;}
.ws209{word-spacing:67.812883px;}
.wse{word-spacing:69.937725px;}
.ws202{word-spacing:70.879392px;}
.ws20b{word-spacing:77.012410px;}
.ws1ff{word-spacing:89.278445px;}
.ws204{word-spacing:90.838598px;}
.ws1d3{word-spacing:94.303691px;}
.ws1f8{word-spacing:104.664787px;}
.ws208{word-spacing:119.997331px;}
.ws200{word-spacing:131.994374px;}
.ws20c{word-spacing:147.326918px;}
.ws1d4{word-spacing:177.090036px;}
.ws1d2{word-spacing:459.683589px;}
.ws1db{word-spacing:549.859510px;}
.ws1da{word-spacing:579.475545px;}
.ws1d8{word-spacing:579.533276px;}
._33{margin-left:-32.937293px;}
._32{margin-left:-31.794854px;}
._25{margin-left:-25.705176px;}
._30{margin-left:-24.313890px;}
._36{margin-left:-18.987034px;}
._2f{margin-left:-8.091257px;}
._16{margin-left:-5.908039px;}
._8{margin-left:-4.305600px;}
._9{margin-left:-3.179520px;}
._c{margin-left:-2.091312px;}
._3{margin-left:-1.002240px;}
._0{width:1.088640px;}
._10{width:2.568683px;}
._4{width:3.864960px;}
._6c{width:5.324518px;}
._6{width:6.589440px;}
._a{width:7.787520px;}
._7{width:9.175680px;}
._5{width:10.391040px;}
._1e{width:13.570002px;}
._20{width:15.659107px;}
._14{width:16.796944px;}
._13{width:18.590212px;}
._2a{width:19.787480px;}
._1c{width:20.919792px;}
._e{width:21.981808px;}
._d{width:23.714418px;}
._15{width:25.235048px;}
._17{width:26.420815px;}
._11{width:28.007298px;}
._12{width:29.170493px;}
._27{width:30.224804px;}
._19{width:31.501741px;}
._b{width:32.855040px;}
._1f{width:34.188372px;}
._23{width:35.445263px;}
._22{width:37.299140px;}
._18{width:38.375935px;}
._21{width:40.228145px;}
._1d{width:41.723369px;}
._f{width:42.980413px;}
._2b{width:44.046045px;}
._2c{width:45.728334px;}
._28{width:46.890695px;}
._1b{width:49.664269px;}
._29{width:51.087406px;}
._24{width:52.411445px;}
._1a{width:54.276245px;}
._34{width:55.372015px;}
._2d{width:56.628492px;}
._35{width:58.621121px;}
._51{width:60.092813px;}
._50{width:61.097262px;}
._5e{width:63.159322px;}
._65{width:65.697976px;}
._5f{width:67.606256px;}
._31{width:68.741940px;}
._61{width:72.412646px;}
._5d{width:77.039309px;}
._54{width:78.599462px;}
._26{width:80.697600px;}
._60{width:83.118528px;}
._5c{width:87.565463px;}
._53{width:92.318054px;}
._2e{width:96.836850px;}
._62{width:104.637888px;}
._57{width:106.144243px;}
._63{width:118.517875px;}
._56{width:120.078029px;}
._4f{width:121.638182px;}
._1{width:126.340128px;}
._64{width:133.850419px;}
._4e{width:135.356774px;}
._5a{width:148.913971px;}
._59{width:163.379412px;}
._4b{width:170.479829px;}
._69{width:176.724871px;}
._3f{width:178.735371px;}
._38{width:188.640884px;}
._2{width:194.987232px;}
._6a{width:205.404019px;}
._4c{width:247.493067px;}
._40{width:255.690878px;}
._3a{width:270.585492px;}
._6b{width:301.050118px;}
._66{width:472.893350px;}
._5b{width:500.265593px;}
._67{width:553.746931px;}
._48{width:581.826647px;}
._49{width:586.085752px;}
._3c{width:595.957764px;}
._68{width:616.361443px;}
._52{width:672.108826px;}
._4d{width:714.847266px;}
._55{width:752.962406px;}
._4a{width:761.210054px;}
._58{width:815.576918px;}
._46{width:847.908196px;}
._47{width:895.192138px;}
._44{width:1019.198461px;}
._3d{width:1038.884754px;}
._3e{width:1048.577548px;}
._37{width:1093.561267px;}
._42{width:1107.122870px;}
._39{width:1110.586734px;}
._45{width:1136.166791px;}
._3b{width:1276.722459px;}
._41{width:1281.764532px;}
._43{width:1633.500429px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:35.865600px;}
.fse{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:47.520000px;}
.fs10{font-size:47.820600px;}
.fs12{font-size:53.798400px;}
.fs13{font-size:57.731063px;}
.fsd{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs11{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:83.520000px;}
.fsc{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.500000px;}
.y7d{bottom:9.840000px;}
.y71{bottom:14.880000px;}
.y52{bottom:19.440000px;}
.y48{bottom:26.820000px;}
.y7c{bottom:28.920000px;}
.y6d{bottom:29.280000px;}
.y70{bottom:33.240000px;}
.y50{bottom:33.540000px;}
.y6c{bottom:47.280000px;}
.y7b{bottom:47.640000px;}
.y6f{bottom:51.240000px;}
.y4f{bottom:54.060000px;}
.y21{bottom:57.600000px;}
.yb2{bottom:63.168000px;}
.y7a{bottom:66.720000px;}
.y4d{bottom:66.840000px;}
.y6b{bottom:74.280000px;}
.y79{bottom:85.800000px;}
.y4c{bottom:87.720000px;}
.y6a{bottom:92.640000px;}
.y4{bottom:97.125005px;}
.y78{bottom:104.880000px;}
.y72{bottom:105.000000px;}
.y22c{bottom:108.000000px;}
.y4b{bottom:108.240000px;}
.yd2{bottom:108.447000px;}
.y19b{bottom:110.319000px;}
.y69{bottom:110.640000px;}
.yf2{bottom:115.377000px;}
.y179{bottom:115.800000px;}
.y10e{bottom:116.379000px;}
.y14b{bottom:117.891000px;}
.y1bb{bottom:118.560000px;}
.y158{bottom:120.931500px;}
.y196{bottom:121.899000px;}
.y77{bottom:123.600000px;}
.y10d{bottom:126.417000px;}
.y138{bottom:128.020500px;}
.y18b{bottom:128.517000px;}
.y68{bottom:128.640000px;}
.yb1{bottom:130.755000px;}
.yf1{bottom:132.558000px;}
.y15e{bottom:132.690000px;}
.y222{bottom:133.005000px;}
.y1db{bottom:133.359000px;}
.y210{bottom:134.872500px;}
.y157{bottom:135.129000px;}
.yd1{bottom:138.340500px;}
.y1f{bottom:139.264499px;}
.y19a{bottom:140.212500px;}
.y10c{bottom:140.613000px;}
.y205{bottom:141.970500px;}
.y76{bottom:142.680000px;}
.y18a{bottom:142.714500px;}
.yb0{bottom:144.951000px;}
.y178{bottom:145.695000px;}
.y1ba{bottom:145.963500px;}
.y137{bottom:146.437500px;}
.yf0{bottom:146.755500px;}
.y67{bottom:147.000000px;}
.y221{bottom:147.201000px;}
.y14a{bottom:147.786000px;}
.y20f{bottom:149.070000px;}
.y156{bottom:149.325000px;}
.y195{bottom:151.794000px;}
.y10b{bottom:154.810500px;}
.y204{bottom:156.168000px;}
.y189{bottom:156.910500px;}
.yaf{bottom:159.148500px;}
.y136{bottom:160.693500px;}
.y1da{bottom:160.761000px;}
.yef{bottom:160.951500px;}
.y220{bottom:161.398500px;}
.y75{bottom:161.760000px;}
.y15d{bottom:162.585000px;}
.y20e{bottom:163.266000px;}
.y155{bottom:163.522500px;}
.yd0{bottom:168.235500px;}
.y11a{bottom:169.872000px;}
.y199{bottom:170.107500px;}
.y203{bottom:170.364000px;}
.y10a{bottom:173.226000px;}
.yae{bottom:173.344500px;}
.y1b9{bottom:173.365500px;}
.y66{bottom:174.000000px;}
.yee{bottom:175.149000px;}
.y188{bottom:175.327500px;}
.y177{bottom:175.588500px;}
.y20d{bottom:177.463500px;}
.y149{bottom:177.679500px;}
.y154{bottom:177.718500px;}
.y119{bottom:179.910000px;}
.y51{bottom:180.000000px;}
.y74{bottom:180.480000px;}
.y194{bottom:181.687500px;}
.y135{bottom:182.827500px;}
.y109{bottom:187.483500px;}
.yad{bottom:187.542000px;}
.y1d9{bottom:188.164500px;}
.yed{bottom:189.345000px;}
.y65{bottom:192.000000px;}
.y15c{bottom:192.478500px;}
.y153{bottom:196.134000px;}
.y16{bottom:196.933500px;}
.y187{bottom:197.460000px;}
.y108{bottom:197.520000px;}
.ycf{bottom:198.129000px;}
.y118{bottom:198.325500px;}
.y73{bottom:199.560000px;}
.y1b8{bottom:200.769000px;}
.yac{bottom:201.739500px;}
.y176{bottom:205.482000px;}
.y139{bottom:205.890000px;}
.y152{bottom:206.172000px;}
.y148{bottom:207.574500px;}
.yec{bottom:207.762000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y64{bottom:210.360000px;}
.y193{bottom:211.582500px;}
.y107{bottom:211.717500px;}
.y117{bottom:212.581500px;}
.y134{bottom:212.721000px;}
.y198{bottom:214.800000px;}
.y1dc{bottom:215.566500px;}
.y1d8{bottom:215.568000px;}
.yab{bottom:220.155000px;}
.y151{bottom:220.368000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y15b{bottom:222.372000px;}
.y186{bottom:227.355000px;}
.yce{bottom:228.022500px;}
.y1b7{bottom:228.171000px;}
.yeb{bottom:229.894500px;}
.y106{bottom:230.133000px;}
.y150{bottom:234.565500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y175{bottom:235.377000px;}
.y116{bottom:235.546500px;}
.y147{bottom:237.468000px;}
.y192{bottom:241.476000px;}
.y22e{bottom:242.595000px;}
.y133{bottom:242.614500px;}
.y1d7{bottom:242.970000px;}
.y227{bottom:243.036000px;}
.yaa{bottom:243.118500px;}
.y14f{bottom:248.761500px;}
.y105{bottom:252.267000px;}
.y1b6{bottom:255.574500px;}
.y185{bottom:257.248500px;}
.ycd{bottom:257.917500px;}
.yea{bottom:259.789500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y46{bottom:261.000000px;}
.y14e{bottom:262.959000px;}
.y115{bottom:265.440000px;}
.y146{bottom:267.361500px;}
.y1d6{bottom:270.373500px;}
.y191{bottom:271.369500px;}
.y132{bottom:272.509500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.ya9{bottom:273.012000px;}
.y174{bottom:274.921500px;}
.y14d{bottom:277.155000px;}
.y104{bottom:282.160500px;}
.y1b5{bottom:282.976500px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y184{bottom:287.143500px;}
.ycc{bottom:287.811000px;}
.ye9{bottom:289.683000px;}
.y114{bottom:295.333500px;}
.y14c{bottom:295.572000px;}
.y145{bottom:297.256500px;}
.y45{bottom:297.720000px;}
.y1d5{bottom:297.775500px;}
.y190{bottom:301.264500px;}
.ya8{bottom:302.907000px;}
.y22d{bottom:307.626000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y1b4{bottom:310.380000px;}
.y103{bottom:312.054000px;}
.y44{bottom:316.800000px;}
.y183{bottom:317.037000px;}
.ycb{bottom:317.704500px;}
.ye8{bottom:319.578000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y1d4{bottom:325.179000px;}
.y113{bottom:325.228500px;}
.y144{bottom:327.150000px;}
.y173{bottom:330.709500px;}
.ya7{bottom:332.800500px;}
.y43{bottom:336.240000px;}
.y1b3{bottom:337.783500px;}
.y102{bottom:341.949000px;}
.y182{bottom:346.930500px;}
.y18e{bottom:347.016000px;}
.yca{bottom:347.599500px;}
.yd{bottom:348.133500px;}
.ye7{bottom:349.471500px;}
.y1d3{bottom:352.581000px;}
.y112{bottom:355.122000px;}
.y42{bottom:356.760000px;}
.y143{bottom:357.043500px;}
.y172{bottom:360.603000px;}
.ya6{bottom:362.694000px;}
.y1b2{bottom:365.185500px;}
.y18f{bottom:366.447000px;}
.y131{bottom:367.842000px;}
.y101{bottom:371.842500px;}
.y4e{bottom:376.500000px;}
.y181{bottom:376.825500px;}
.yc9{bottom:377.493000px;}
.y41{bottom:377.640000px;}
.ye6{bottom:379.365000px;}
.y1d2{bottom:379.984500px;}
.y18d{bottom:381.393000px;}
.y111{bottom:385.015500px;}
.yc{bottom:386.785499px;}
.y142{bottom:386.938500px;}
.y214{bottom:387.960000px;}
.y171{bottom:390.498000px;}
.ya5{bottom:392.589000px;}
.y130{bottom:397.735500px;}
.y40{bottom:398.160000px;}
.y226{bottom:398.640000px;}
.y100{bottom:401.736000px;}
.y213{bottom:402.156000px;}
.y180{bottom:406.719000px;}
.yc8{bottom:407.388000px;}
.yb{bottom:408.044999px;}
.ye5{bottom:409.260000px;}
.y110{bottom:414.910500px;}
.y212{bottom:416.353500px;}
.y141{bottom:416.832000px;}
.y3f{bottom:419.040000px;}
.y1b1{bottom:419.991000px;}
.ya4{bottom:422.482500px;}
.y12f{bottom:427.630500px;}
.yff{bottom:431.631000px;}
.y231{bottom:433.552500px;}
.y1d1{bottom:434.790000px;}
.y170{bottom:435.190500px;}
.y17f{bottom:436.612500px;}
.yc7{bottom:437.281500px;}
.ye4{bottom:439.153500px;}
.y3e{bottom:439.560000px;}
.y230{bottom:444.304500px;}
.y140{bottom:446.725500px;}
.y1b0{bottom:447.394500px;}
.ya3{bottom:452.376000px;}
.y12e{bottom:457.524000px;}
.y10f{bottom:459.603000px;}
.y3d{bottom:460.440000px;}
.yfe{bottom:461.524500px;}
.y1d0{bottom:462.193500px;}
.y17e{bottom:466.507500px;}
.yc6{bottom:467.175000px;}
.ye3{bottom:469.047000px;}
.y4a{bottom:471.000000px;}
.y18c{bottom:471.175500px;}
.y1af{bottom:474.796500px;}
.y13f{bottom:476.620500px;}
.y3c{bottom:480.960000px;}
.ya2{bottom:482.271000px;}
.y22a{bottom:483.796500px;}
.y22b{bottom:487.252500px;}
.y12d{bottom:487.417500px;}
.y1cf{bottom:489.595500px;}
.y15a{bottom:491.418000px;}
.yfd{bottom:491.419500px;}
.y229{bottom:494.548500px;}
.y17d{bottom:496.401000px;}
.yc5{bottom:497.070000px;}
.ye2{bottom:498.942000px;}
.y1f9{bottom:499.872000px;}
.y3b{bottom:501.840000px;}
.y1ae{bottom:502.200000px;}
.y16f{bottom:502.551000px;}
.y62{bottom:505.800000px;}
.y13e{bottom:506.514000px;}
.ya1{bottom:512.164500px;}
.y1f8{bottom:514.069500px;}
.y1ce{bottom:516.999000px;}
.y12c{bottom:517.312500px;}
.ya{bottom:520.864502px;}
.yfc{bottom:521.313000px;}
.y3a{bottom:522.360000px;}
.y17c{bottom:526.294500px;}
.yc4{bottom:526.963500px;}
.y1f7{bottom:528.265500px;}
.ye1{bottom:528.835500px;}
.y1ad{bottom:529.603500px;}
.y61{bottom:529.920000px;}
.y16e{bottom:532.444500px;}
.y21f{bottom:534.856500px;}
.y13d{bottom:536.407500px;}
.y6e{bottom:537.000000px;}
.y9{bottom:538.864499px;}
.y39{bottom:541.080000px;}
.ya0{bottom:542.059500px;}
.y1f6{bottom:542.463000px;}
.y202{bottom:543.823500px;}
.y1cd{bottom:544.401000px;}
.y12b{bottom:547.206000px;}
.y20c{bottom:550.921500px;}
.yfb{bottom:551.206500px;}
.y21e{bottom:552.789000px;}
.y1f5{bottom:556.659000px;}
.yc3{bottom:556.857000px;}
.y8{bottom:556.864499px;}
.y1ac{bottom:557.005500px;}
.y38{bottom:560.160000px;}
.y159{bottom:560.857500px;}
.y16d{bottom:562.339500px;}
.y17b{bottom:565.840500px;}
.y13c{bottom:566.302500px;}
.ye0{bottom:568.381500px;}
.y1cc{bottom:571.804500px;}
.y9f{bottom:571.953000px;}
.y12a{bottom:577.099500px;}
.y37{bottom:579.240000px;}
.yfa{bottom:581.101500px;}
.y1ab{bottom:584.409000px;}
.yc2{bottom:586.752000px;}
.y1f4{bottom:591.183074px;}
.y16c{bottom:592.233000px;}
.y13b{bottom:596.196000px;}
.y36{bottom:597.960000px;}
.y1cb{bottom:599.208000px;}
.y9e{bottom:601.846500px;}
.y129{bottom:606.994500px;}
.y1f3{bottom:608.823228px;}
.yf9{bottom:610.995000px;}
.y1aa{bottom:611.811000px;}
.y225{bottom:615.214500px;}
.yc1{bottom:616.645500px;}
.y35{bottom:617.040000px;}
.y16b{bottom:622.126500px;}
.ydf{bottom:624.168000px;}
.y21d{bottom:624.982500px;}
.y1f2{bottom:626.463383px;}
.y1ca{bottom:626.610000px;}
.y20b{bottom:626.850000px;}
.y224{bottom:629.412000px;}
.y60{bottom:630.360000px;}
.y9d{bottom:631.741500px;}
.y201{bottom:633.948000px;}
.y13a{bottom:635.742000px;}
.y34{bottom:636.120000px;}
.y128{bottom:636.888000px;}
.y21c{bottom:639.178500px;}
.y1a9{bottom:639.214500px;}
.yf8{bottom:640.888500px;}
.y20a{bottom:641.047500px;}
.y223{bottom:643.608000px;}
.y1f1{bottom:644.103537px;}
.y7{bottom:645.510000px;}
.yc0{bottom:646.539000px;}
.y218{bottom:647.662500px;}
.y200{bottom:648.145500px;}
.y5f{bottom:649.440000px;}
.y17a{bottom:650.539500px;}
.y206{bottom:651.397500px;}
.y16a{bottom:652.021500px;}
.y21b{bottom:653.376000px;}
.y1c9{bottom:654.013500px;}
.yde{bottom:654.063000px;}
.y33{bottom:655.200000px;}
.y209{bottom:655.243500px;}
.y9c{bottom:661.635000px;}
.y1f0{bottom:661.743691px;}
.y217{bottom:661.858500px;}
.y1ff{bottom:662.341500px;}
.y1fd{bottom:665.595000px;}
.y1a8{bottom:666.618000px;}
.y6{bottom:666.771000px;}
.y127{bottom:666.783000px;}
.y208{bottom:669.441000px;}
.yf7{bottom:670.783500px;}
.y22f{bottom:672.913500px;}
.y32{bottom:673.920000px;}
.y216{bottom:676.056000px;}
.ybf{bottom:676.434000px;}
.y1ef{bottom:679.383846px;}
.y1fc{bottom:679.791000px;}
.y1c8{bottom:681.415500px;}
.y169{bottom:681.915000px;}
.ydd{bottom:683.956500px;}
.y5e{bottom:685.440000px;}
.y47{bottom:688.500000px;}
.y9b{bottom:691.528500px;}
.y31{bottom:693.000000px;}
.y1fb{bottom:693.988500px;}
.y1a7{bottom:694.020000px;}
.y126{bottom:696.676500px;}
.y1ee{bottom:697.022390px;}
.y228{bottom:697.815000px;}
.yf6{bottom:700.677000px;}
.y5d{bottom:703.440000px;}
.ybe{bottom:706.327500px;}
.y1c7{bottom:708.819000px;}
.y168{bottom:711.808500px;}
.y30{bottom:712.080000px;}
.ydc{bottom:713.850000px;}
.y1ed{bottom:714.662545px;}
.y9a{bottom:721.423500px;}
.y5c{bottom:721.440000px;}
.y5{bottom:726.298500px;}
.y125{bottom:726.570000px;}
.yf5{bottom:730.570500px;}
.y2f{bottom:730.800000px;}
.y1ec{bottom:732.302699px;}
.ybd{bottom:736.221000px;}
.y5b{bottom:739.800000px;}
.y167{bottom:741.703500px;}
.ydb{bottom:743.745000px;}
.y1a6{bottom:748.825500px;}
.y2e{bottom:749.880000px;}
.y1eb{bottom:749.942853px;}
.y99{bottom:751.317000px;}
.y3{bottom:752.599495px;}
.y124{bottom:756.465000px;}
.y5a{bottom:757.800000px;}
.yf4{bottom:760.465500px;}
.y1c6{bottom:763.624500px;}
.ybc{bottom:766.116000px;}
.y1ea{bottom:767.583008px;}
.y2d{bottom:768.960000px;}
.y197{bottom:770.116500px;}
.y166{bottom:771.597000px;}
.yda{bottom:773.638500px;}
.y1a5{bottom:776.229000px;}
.y98{bottom:781.210500px;}
.y1e9{bottom:785.223162px;}
.y123{bottom:786.358500px;}
.y2c{bottom:787.680000px;}
.y211{bottom:789.811500px;}
.y1c5{bottom:791.028000px;}
.y59{bottom:793.800000px;}
.ybb{bottom:796.009500px;}
.yf3{bottom:800.010000px;}
.y165{bottom:801.492000px;}
.y1e8{bottom:802.863317px;}
.yd9{bottom:803.532000px;}
.y1a4{bottom:803.631000px;}
.y2b{bottom:806.760000px;}
.y97{bottom:811.105500px;}
.y122{bottom:816.252000px;}
.y1c4{bottom:818.430000px;}
.y1e7{bottom:820.503471px;}
.yba{bottom:825.904500px;}
.y2a{bottom:826.560000px;}
.y58{bottom:830.160000px;}
.y1a3{bottom:831.034500px;}
.y164{bottom:831.385500px;}
.yd8{bottom:833.427000px;}
.y8e{bottom:835.920000px;}
.y1e6{bottom:838.143625px;}
.y96{bottom:840.999000px;}
.y1c3{bottom:845.833500px;}
.y121{bottom:846.147000px;}
.y57{bottom:848.160000px;}
.y29{bottom:850.680000px;}
.y8d{bottom:855.000000px;}
.y1e5{bottom:855.783780px;}
.yb9{bottom:855.798000px;}
.y1a2{bottom:858.438000px;}
.y163{bottom:861.279000px;}
.yd7{bottom:863.320500px;}
.y56{bottom:866.160000px;}
.y95{bottom:870.892500px;}
.y1c2{bottom:873.235500px;}
.y1e4{bottom:873.422324px;}
.y8c{bottom:873.720000px;}
.y28{bottom:874.800000px;}
.y120{bottom:876.040500px;}
.y2{bottom:879.369000px;}
.y55{bottom:884.520000px;}
.yb8{bottom:885.691500px;}
.y1a1{bottom:885.840000px;}
.y1e3{bottom:891.062479px;}
.y162{bottom:891.174000px;}
.y8b{bottom:892.800000px;}
.yd6{bottom:893.214000px;}
.y27{bottom:898.920000px;}
.y1c1{bottom:900.639000px;}
.y94{bottom:900.787500px;}
.y54{bottom:902.520000px;}
.y11f{bottom:905.934000px;}
.y1e2{bottom:908.702633px;}
.y8a{bottom:911.880000px;}
.y1a0{bottom:913.243500px;}
.yb7{bottom:915.586500px;}
.y53{bottom:916.200000px;}
.y161{bottom:921.067500px;}
.y26{bottom:923.040000px;}
.yd5{bottom:923.109000px;}
.y63{bottom:924.000000px;}
.y1e1{bottom:926.342787px;}
.y1c0{bottom:928.041000px;}
.y93{bottom:930.681000px;}
.y89{bottom:930.960000px;}
.y11e{bottom:935.829000px;}
.y19f{bottom:940.645500px;}
.y1e0{bottom:943.982942px;}
.yb6{bottom:945.480000px;}
.y25{bottom:947.160000px;}
.y88{bottom:949.680000px;}
.y160{bottom:950.961000px;}
.yd4{bottom:953.002500px;}
.y1bf{bottom:955.444500px;}
.y92{bottom:960.576000px;}
.y1df{bottom:962.263737px;}
.y11d{bottom:965.722500px;}
.y1{bottom:966.726000px;}
.y19e{bottom:968.049000px;}
.y87{bottom:968.760000px;}
.y24{bottom:971.280000px;}
.yb5{bottom:975.373500px;}
.y1de{bottom:979.903891px;}
.y1be{bottom:982.848000px;}
.y86{bottom:987.840000px;}
.y91{bottom:990.469500px;}
.y23{bottom:995.400000px;}
.y19d{bottom:995.451000px;}
.y11c{bottom:995.616000px;}
.yd3{bottom:997.695000px;}
.y15f{bottom:1004.644500px;}
.yb4{bottom:1005.268500px;}
.y85{bottom:1006.560000px;}
.y1bd{bottom:1010.250000px;}
.y22{bottom:1015.200000px;}
.y1dd{bottom:1017.067500px;}
.y90{bottom:1020.363000px;}
.y19c{bottom:1022.854500px;}
.y11b{bottom:1025.511000px;}
.y84{bottom:1025.640000px;}
.y21a{bottom:1026.834000px;}
.yb3{bottom:1035.162000px;}
.y1fe{bottom:1035.801000px;}
.y1bc{bottom:1037.653500px;}
.y207{bottom:1042.899000px;}
.y83{bottom:1044.720000px;}
.y219{bottom:1044.766500px;}
.y215{bottom:1049.514000px;}
.y82{bottom:1063.440000px;}
.y8f{bottom:1065.055500px;}
.y1fa{bottom:1067.446500px;}
.y81{bottom:1082.520000px;}
.y80{bottom:1101.600000px;}
.y7f{bottom:1120.680000px;}
.y7e{bottom:1139.400000px;}
.y20{bottom:1194.840000px;}
.h1f{height:24.245146px;}
.h7{height:32.130000px;}
.h23{height:33.187496px;}
.h20{height:35.865450px;}
.h25{height:40.348800px;}
.h26{height:42.500452px;}
.h27{height:43.298297px;}
.h14{height:44.031094px;}
.hd{height:44.149219px;}
.h1d{height:44.831700px;}
.h12{height:45.000000px;}
.h6{height:45.900000px;}
.h15{height:46.189688px;}
.hc{height:47.988281px;}
.h3{height:48.195000px;}
.h16{height:48.224531px;}
.hb{height:48.289219px;}
.h1e{height:49.975733px;}
.h22{height:49.981733px;}
.h21{height:50.211840px;}
.h9{height:52.417969px;}
.h24{height:53.801700px;}
.h2{height:55.080000px;}
.hf{height:56.611406px;}
.h1c{height:60.254040px;}
.ha{height:60.804844px;}
.h1a{height:61.910156px;}
.h18{height:66.000000px;}
.h11{height:72.000000px;}
.h13{height:77.308594px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h10{height:126.000000px;}
.he{height:138.000000px;}
.h19{height:216.000000px;}
.h17{height:225.000000px;}
.h1b{height:1188.000000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:195.000000px;}
.w5{width:313.500000px;}
.w9{width:328.500000px;}
.w4{width:411.000000px;}
.w7{width:568.500000px;}
.w2{width:637.794021px;}
.w8{width:675.000000px;}
.w0{width:892.912500px;}
.w3{width:893.160000px;}
.w1{width:893.250000px;}
.wa{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:11.519892px;}
.x27{left:72.690000px;}
.xd{left:93.000000px;}
.xb{left:99.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.000000px;}
.x25{left:110.368500px;}
.x28{left:114.459000px;}
.x19{left:117.622378px;}
.x11{left:119.158500px;}
.x10{left:124.638000px;}
.xf{left:130.416000px;}
.x29{left:139.116000px;}
.x20{left:145.602000px;}
.x14{left:147.079500px;}
.x21{left:152.659500px;}
.x1f{left:154.003500px;}
.x2a{left:163.774500px;}
.x23{left:173.985000px;}
.x24{left:177.403500px;}
.x22{left:182.386500px;}
.x2b{left:189.028500px;}
.x13{left:194.767500px;}
.x15{left:196.200000px;}
.x4{left:203.484001px;}
.x26{left:205.866000px;}
.x2c{left:213.687000px;}
.x1d{left:236.616000px;}
.x2d{left:238.344000px;}
.x1e{left:243.673500px;}
.x1c{left:245.017500px;}
.x2e{left:263.001000px;}
.x2f{left:287.659500px;}
.x30{left:312.316500px;}
.x31{left:337.572000px;}
.x17{left:352.779000px;}
.x32{left:362.229000px;}
.x7{left:364.320000px;}
.x33{left:386.887500px;}
.x34{left:412.143000px;}
.x9{left:425.025000px;}
.x35{left:436.800000px;}
.x6{left:446.512680px;}
.x12{left:451.528500px;}
.x3{left:454.959000px;}
.x36{left:461.457000px;}
.x18{left:486.858382px;}
.x37{left:510.772500px;}
.x8{left:522.900000px;}
.x38{left:535.429500px;}
.x1b{left:553.311172px;}
.x1a{left:557.019806px;}
.x39{left:560.685000px;}
.x3a{left:585.342000px;}
.xa{left:605.025000px;}
.x3b{left:610.000500px;}
.x3c{left:635.256000px;}
.x3d{left:659.913000px;}
.x3e{left:684.570000px;}
.x3f{left:709.228500px;}
.x40{left:733.885500px;}
.x41{left:758.542500px;}
.xe{left:785.160000px;}
.x16{left:790.905000px;}
.x42{left:805.476000px;}
.x43{left:819.672000px;}
.x44{left:833.869500px;}
.x45{left:848.065500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.968000pt;}
.v5{vertical-align:-5.669333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.973333pt;}
.v1{vertical-align:19.280000pt;}
.ls14{letter-spacing:-0.309760pt;}
.ls6{letter-spacing:-0.301056pt;}
.ls4{letter-spacing:-0.284928pt;}
.ls5{letter-spacing:-0.231168pt;}
.ls12{letter-spacing:-0.219648pt;}
.ls11{letter-spacing:-0.214016pt;}
.lsd{letter-spacing:-0.202752pt;}
.ls1b{letter-spacing:-0.176640pt;}
.ls1d{letter-spacing:-0.170752pt;}
.lse{letter-spacing:-0.168960pt;}
.lsf{letter-spacing:-0.157696pt;}
.ls16{letter-spacing:-0.141312pt;}
.ls1a{letter-spacing:-0.123648pt;}
.ls17{letter-spacing:-0.111872pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls19{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.095744pt;}
.ls18{letter-spacing:-0.070656pt;}
.ls10{letter-spacing:-0.061952pt;}
.ls1c{letter-spacing:-0.035328pt;}
.ls0{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000479pt;}
.ls2a{letter-spacing:0.000818pt;}
.ls35{letter-spacing:0.002694pt;}
.ls2d{letter-spacing:0.002906pt;}
.ls43{letter-spacing:0.006152pt;}
.ls3{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.129280pt;}
.ls1{letter-spacing:0.165632pt;}
.ls2{letter-spacing:0.165888pt;}
.ls7{letter-spacing:0.319232pt;}
.ls53{letter-spacing:2.182541pt;}
.ls46{letter-spacing:2.651242pt;}
.ls23{letter-spacing:2.652911pt;}
.ls21{letter-spacing:2.656473pt;}
.ls2f{letter-spacing:2.656576pt;}
.ls32{letter-spacing:2.657014pt;}
.ls22{letter-spacing:2.658245pt;}
.ls44{letter-spacing:2.659878pt;}
.ls56{letter-spacing:2.660695pt;}
.ls1f{letter-spacing:2.988160pt;}
.ls20{letter-spacing:6.240000pt;}
.ls1e{letter-spacing:8.670464pt;}
.ls55{letter-spacing:10.749258pt;}
.ls52{letter-spacing:10.918224pt;}
.ls2c{letter-spacing:11.804745pt;}
.ls2e{letter-spacing:11.806400pt;}
.ls29{letter-spacing:11.808479pt;}
.ls30{letter-spacing:11.810079pt;}
.ls5a{letter-spacing:11.826591pt;}
.ls54{letter-spacing:13.404757pt;}
.ls51{letter-spacing:13.580757pt;}
.ls31{letter-spacing:14.459680pt;}
.ls2b{letter-spacing:14.460911pt;}
.ls28{letter-spacing:14.462299pt;}
.ls45{letter-spacing:14.462544pt;}
.ls47{letter-spacing:14.465014pt;}
.ls41{letter-spacing:14.467633pt;}
.ls42{letter-spacing:14.467878pt;}
.ls59{letter-spacing:14.487424pt;}
.ls27{letter-spacing:14.757812pt;}
.ls57{letter-spacing:15.053383pt;}
.ls58{letter-spacing:15.058717pt;}
.ls3e{letter-spacing:16.024177pt;}
.ls3c{letter-spacing:16.026050pt;}
.ls3d{letter-spacing:16.029156pt;}
.ls25{letter-spacing:16.541156pt;}
.ls26{letter-spacing:16.541510pt;}
.ls24{letter-spacing:16.543383pt;}
.ls4e{letter-spacing:16.670299pt;}
.ls3f{letter-spacing:17.709361pt;}
.ls48{letter-spacing:19.498050pt;}
.ls34{letter-spacing:19.636716pt;}
.ls4f{letter-spacing:20.363242pt;}
.ls4c{letter-spacing:21.070544pt;}
.ls39{letter-spacing:21.103925pt;}
.ls37{letter-spacing:21.701909pt;}
.ls36{letter-spacing:21.704966pt;}
.ls3a{letter-spacing:21.948911pt;}
.ls4a{letter-spacing:22.155242pt;}
.ls4d{letter-spacing:22.380745pt;}
.ls38{letter-spacing:23.437510pt;}
.ls4b{letter-spacing:23.491633pt;}
.ls50{letter-spacing:24.608576pt;}
.ls3b{letter-spacing:24.631309pt;}
.lsc{letter-spacing:24.800512pt;}
.ls49{letter-spacing:28.967412pt;}
.lsb{letter-spacing:73.670400pt;}
.lsa{letter-spacing:93.235456pt;}
.ls9{letter-spacing:109.534976pt;}
.ls33{letter-spacing:240.615412pt;}
.wsea{word-spacing:-34.611401pt;}
.ws206{word-spacing:-29.521250pt;}
.wseb{word-spacing:-27.225793pt;}
.ws1f1{word-spacing:-23.910333pt;}
.ws207{word-spacing:-23.230185pt;}
.ws2{word-spacing:-17.804800pt;}
.ws8{word-spacing:-16.368640pt;}
.wsd{word-spacing:-16.333312pt;}
.wsb{word-spacing:-16.262656pt;}
.wsa{word-spacing:-16.256768pt;}
.wsc{word-spacing:-16.244992pt;}
.ws9{word-spacing:-16.227328pt;}
.ws3{word-spacing:-15.656960pt;}
.ws7{word-spacing:-15.561216pt;}
.ws6{word-spacing:-15.499264pt;}
.ws4{word-spacing:-15.488000pt;}
.ws5{word-spacing:-15.442944pt;}
.ws7e{word-spacing:-14.760588pt;}
.ws1{word-spacing:-14.714112pt;}
.ws154{word-spacing:-13.652838pt;}
.ws1dd{word-spacing:-12.543875pt;}
.ws152{word-spacing:-12.543396pt;}
.ws18f{word-spacing:-3.141827pt;}
.wsee{word-spacing:-2.964870pt;}
.ws1ed{word-spacing:-2.837348pt;}
.ws124{word-spacing:-2.749696pt;}
.ws177{word-spacing:-2.701875pt;}
.ws5d{word-spacing:-2.699200pt;}
.wsd4{word-spacing:-2.646067pt;}
.wsf6{word-spacing:-2.539799pt;}
.ws90{word-spacing:-2.380397pt;}
.ws71{word-spacing:-2.327263pt;}
.wsa6{word-spacing:-2.167862pt;}
.wsf9{word-spacing:-2.114728pt;}
.ws27{word-spacing:-2.087104pt;}
.ws11b{word-spacing:-2.008460pt;}
.ws65{word-spacing:-1.955326pt;}
.ws19d{word-spacing:-1.888922pt;}
.ws31{word-spacing:-1.849059pt;}
.wsfa{word-spacing:-1.689657pt;}
.ws126{word-spacing:-1.649818pt;}
.ws29{word-spacing:-1.619524pt;}
.ws147{word-spacing:-1.566430pt;}
.ws83{word-spacing:-1.530255pt;}
.wsb2{word-spacing:-1.423988pt;}
.ws15{word-spacing:-1.317720pt;}
.ws113{word-spacing:-1.264586pt;}
.ws38{word-spacing:-1.211452pt;}
.ws135{word-spacing:-1.168532pt;}
.ws56{word-spacing:-1.158318pt;}
.ws19c{word-spacing:-1.085532pt;}
.wsf1{word-spacing:-1.052051pt;}
.wse2{word-spacing:-0.998917pt;}
.ws74{word-spacing:-0.945783pt;}
.ws1e9{word-spacing:-0.854395pt;}
.ws3b{word-spacing:-0.839515pt;}
.ws1c4{word-spacing:-0.789043pt;}
.ws4f{word-spacing:-0.786381pt;}
.ws199{word-spacing:-0.741222pt;}
.ws51{word-spacing:-0.733247pt;}
.ws53{word-spacing:-0.716541pt;}
.wsa1{word-spacing:-0.680113pt;}
.ws93{word-spacing:-0.626980pt;}
.ws18d{word-spacing:-0.549939pt;}
.wsc0{word-spacing:-0.520712pt;}
.ws1e8{word-spacing:-0.514337pt;}
.ws19a{word-spacing:-0.477812pt;}
.ws4a{word-spacing:-0.414444pt;}
.ws11c{word-spacing:-0.361310pt;}
.ws123{word-spacing:-0.358656pt;}
.ws9a{word-spacing:-0.344308pt;}
.ws11f{word-spacing:-0.308176pt;}
.ws4c{word-spacing:-0.255043pt;}
.ws7d{word-spacing:-0.148775pt;}
.ws17d{word-spacing:-0.117028pt;}
.ws164{word-spacing:-0.105390pt;}
.ws69{word-spacing:-0.095641pt;}
.ws198{word-spacing:-0.081295pt;}
.ws1c5{word-spacing:-0.071731pt;}
.ws54{word-spacing:-0.053134pt;}
.ws1f9{word-spacing:-0.047821pt;}
.ws87{word-spacing:-0.042507pt;}
.wsa3{word-spacing:-0.037194pt;}
.wsa8{word-spacing:-0.031881pt;}
.ws125{word-spacing:-0.014346pt;}
.wsdb{word-spacing:-0.004251pt;}
.ws0{word-spacing:0.000000pt;}
.ws178{word-spacing:0.033475pt;}
.ws2f{word-spacing:0.063761pt;}
.ws70{word-spacing:0.080764pt;}
.ws18c{word-spacing:0.109988pt;}
.ws16{word-spacing:0.116895pt;}
.ws183{word-spacing:0.119552pt;}
.wsd1{word-spacing:0.170028pt;}
.ws1ba{word-spacing:0.215194pt;}
.ws1c{word-spacing:0.223162pt;}
.ws117{word-spacing:0.276296pt;}
.ws122{word-spacing:0.301271pt;}
.ws162{word-spacing:0.310835pt;}
.ws14{word-spacing:0.329430pt;}
.ws89{word-spacing:0.382564pt;}
.ws60{word-spacing:0.435698pt;}
.ws49{word-spacing:0.488832pt;}
.ws1ee{word-spacing:0.494145pt;}
.ws148{word-spacing:0.502118pt;}
.ws6c{word-spacing:0.505836pt;}
.ws6b{word-spacing:0.541965pt;}
.ws196{word-spacing:0.549939pt;}
.wse7{word-spacing:0.595099pt;}
.ws112{word-spacing:0.648233pt;}
.ws179{word-spacing:0.663806pt;}
.ws146{word-spacing:0.676291pt;}
.ws14e{word-spacing:0.682080pt;}
.ws16a{word-spacing:0.693402pt;}
.wsa0{word-spacing:0.701367pt;}
.ws1f5{word-spacing:0.718372pt;}
.ws47{word-spacing:0.754501pt;}
.ws182{word-spacing:0.779479pt;}
.ws1c0{word-spacing:0.789043pt;}
.ws5b{word-spacing:0.807635pt;}
.ws100{word-spacing:0.860769pt;}
.ws136{word-spacing:0.884685pt;}
.ws86{word-spacing:0.913903pt;}
.ws5e{word-spacing:0.967036pt;}
.ws141{word-spacing:0.975927pt;}
.ws14a{word-spacing:0.980326pt;}
.ws11d{word-spacing:1.020170pt;}
.ws13e{word-spacing:1.028147pt;}
.ws4e{word-spacing:1.073304pt;}
.ws12e{word-spacing:1.075968pt;}
.ws1a9{word-spacing:1.113100pt;}
.ws195{word-spacing:1.114225pt;}
.ws156{word-spacing:1.123789pt;}
.ws12{word-spacing:1.126438pt;}
.ws1f2{word-spacing:1.143444pt;}
.ws82{word-spacing:1.179572pt;}
.ws75{word-spacing:1.232706pt;}
.ws10c{word-spacing:1.244257pt;}
.ws10d{word-spacing:1.248077pt;}
.ws169{word-spacing:1.257687pt;}
.ws1ae{word-spacing:1.267251pt;}
.ws97{word-spacing:1.270965pt;}
.wsbc{word-spacing:1.285840pt;}
.ws19f{word-spacing:1.315072pt;}
.ws61{word-spacing:1.338973pt;}
.ws1bf{word-spacing:1.353329pt;}
.wsdc{word-spacing:1.355980pt;}
.ws17c{word-spacing:1.362893pt;}
.ws7a{word-spacing:1.392107pt;}
.ws1e6{word-spacing:1.398487pt;}
.ws130{word-spacing:1.410714pt;}
.ws1cf{word-spacing:1.423686pt;}
.wsf7{word-spacing:1.445241pt;}
.ws1a8{word-spacing:1.448970pt;}
.ws1b9{word-spacing:1.458534pt;}
.ws1ef{word-spacing:1.466495pt;}
.ws48{word-spacing:1.498375pt;}
.ws1e5{word-spacing:1.526008pt;}
.ws62{word-spacing:1.551509pt;}
.ws13d{word-spacing:1.592433pt;}
.ws19b{word-spacing:1.601997pt;}
.ws3e{word-spacing:1.604643pt;}
.ws155{word-spacing:1.640253pt;}
.ws30{word-spacing:1.657777pt;}
.ws24{word-spacing:1.710911pt;}
.ws1e3{word-spacing:1.738544pt;}
.ws158{word-spacing:1.745459pt;}
.wscc{word-spacing:1.764044pt;}
.ws1ad{word-spacing:1.783716pt;}
.ws1ca{word-spacing:1.816701pt;}
.ws84{word-spacing:1.817178pt;}
.ws17a{word-spacing:1.860362pt;}
.ws1dc{word-spacing:1.866066pt;}
.wsc1{word-spacing:1.870312pt;}
.ws19e{word-spacing:1.879357pt;}
.wsf4{word-spacing:1.911593pt;}
.wsca{word-spacing:1.923446pt;}
.ws165{word-spacing:1.936742pt;}
.ws18e{word-spacing:1.946307pt;}
.wsb8{word-spacing:1.976580pt;}
.ws3a{word-spacing:2.029714pt;}
.ws212{word-spacing:2.036095pt;}
.ws104{word-spacing:2.078602pt;}
.ws41{word-spacing:2.082848pt;}
.ws7b{word-spacing:2.135981pt;}
.wsf5{word-spacing:2.168802pt;}
.wse8{word-spacing:2.189115pt;}
.ws8b{word-spacing:2.242249pt;}
.ws157{word-spacing:2.261924pt;}
.ws1eb{word-spacing:2.263503pt;}
.ws4d{word-spacing:2.295383pt;}
.wscb{word-spacing:2.348517pt;}
.wsf3{word-spacing:2.401651pt;}
.ws1f3{word-spacing:2.418660pt;}
.ws45{word-spacing:2.454785pt;}
.ws102{word-spacing:2.461167pt;}
.ws2d{word-spacing:2.503674pt;}
.wsbe{word-spacing:2.507919pt;}
.ws1cc{word-spacing:2.510592pt;}
.wsda{word-spacing:2.546181pt;}
.ws176{word-spacing:2.558413pt;}
.ws20{word-spacing:2.561052pt;}
.ws187{word-spacing:2.596669pt;}
.ws44{word-spacing:2.614186pt;}
.ws1e0{word-spacing:2.631196pt;}
.ws1b6{word-spacing:2.654054pt;}
.ws1bb{word-spacing:2.663619pt;}
.ws105{word-spacing:2.667320pt;}
.ws12a{word-spacing:2.701875pt;}
.ws33{word-spacing:2.720454pt;}
.ws133{word-spacing:2.749696pt;}
.ws10a{word-spacing:2.773588pt;}
.ws13b{word-spacing:2.797517pt;}
.ws163{word-spacing:2.807081pt;}
.ws59{word-spacing:2.879856pt;}
.ws1cb{word-spacing:2.883594pt;}
.ws1d5{word-spacing:2.899382pt;}
.ws175{word-spacing:2.918537pt;}
.wse9{word-spacing:2.924815pt;}
.ws210{word-spacing:2.928746pt;}
.ws19{word-spacing:2.932989pt;}
.ws16e{word-spacing:2.940979pt;}
.ws1d6{word-spacing:2.950699pt;}
.ws1d{word-spacing:2.986123pt;}
.ws16d{word-spacing:2.988800pt;}
.ws138{word-spacing:2.997018pt;}
.ws149{word-spacing:2.998364pt;}
.ws1b5{word-spacing:3.027057pt;}
.ws142{word-spacing:3.036621pt;}
.ws17{word-spacing:3.039257pt;}
.ws2a{word-spacing:3.056268pt;}
.wsc4{word-spacing:3.092391pt;}
.ws159{word-spacing:3.122698pt;}
.ws1f7{word-spacing:3.170519pt;}
.ws1aa{word-spacing:3.180083pt;}
.ws2c{word-spacing:3.183789pt;}
.ws72{word-spacing:3.198659pt;}
.ws13a{word-spacing:3.218340pt;}
.ws50{word-spacing:3.251793pt;}
.ws1b2{word-spacing:3.275725pt;}
.ws9d{word-spacing:3.304927pt;}
.ws1c7{word-spacing:3.323546pt;}
.ws1d9{word-spacing:3.350967pt;}
.ws6d{word-spacing:3.353818pt;}
.ws3c{word-spacing:3.358060pt;}
.wsff{word-spacing:3.379314pt;}
.ws1d7{word-spacing:3.402284pt;}
.ws39{word-spacing:3.411194pt;}
.ws140{word-spacing:3.419187pt;}
.ws1f6{word-spacing:3.432448pt;}
.ws34{word-spacing:3.464328pt;}
.ws12f{word-spacing:3.476572pt;}
.ws16c{word-spacing:3.505265pt;}
.ws1d0{word-spacing:3.514829pt;}
.wsc6{word-spacing:3.517462pt;}
.ws180{word-spacing:3.562650pt;}
.ws205{word-spacing:3.566354pt;}
.ws40{word-spacing:3.570596pt;}
.ws5f{word-spacing:3.623730pt;}
.ws173{word-spacing:3.658291pt;}
.ws12d{word-spacing:3.706112pt;}
.wsab{word-spacing:3.729997pt;}
.ws1b1{word-spacing:3.775213pt;}
.ws95{word-spacing:3.783131pt;}
.ws168{word-spacing:3.801754pt;}
.ws10{word-spacing:3.836265pt;}
.ws1b8{word-spacing:3.849574pt;}
.wsb7{word-spacing:3.942533pt;}
.ws17b{word-spacing:3.945216pt;}
.ws64{word-spacing:3.985067pt;}
.wsd7{word-spacing:3.991426pt;}
.ws15b{word-spacing:4.019768pt;}
.ws1e2{word-spacing:4.033933pt;}
.ws145{word-spacing:4.040858pt;}
.wsb1{word-spacing:4.048801pt;}
.wsc9{word-spacing:4.101935pt;}
.ws1c1{word-spacing:4.126935pt;}
.wscf{word-spacing:4.155068pt;}
.ws6e{word-spacing:4.161455pt;}
.ws13f{word-spacing:4.174756pt;}
.ws1e7{word-spacing:4.203962pt;}
.wsad{word-spacing:4.208202pt;}
.ws18a{word-spacing:4.232141pt;}
.wsf0{word-spacing:4.261336pt;}
.ws1de{word-spacing:4.288976pt;}
.ws166{word-spacing:4.289526pt;}
.ws85{word-spacing:4.314470pt;}
.ws1ac{word-spacing:4.318218pt;}
.ws17f{word-spacing:4.366039pt;}
.ws91{word-spacing:4.367604pt;}
.ws167{word-spacing:4.413860pt;}
.ws23{word-spacing:4.420738pt;}
.ws1a3{word-spacing:4.471245pt;}
.wsa2{word-spacing:4.473872pt;}
.ws1f0{word-spacing:4.479185pt;}
.ws1e1{word-spacing:4.501512pt;}
.ws193{word-spacing:4.509501pt;}
.ws1a7{word-spacing:4.519066pt;}
.ws2e{word-spacing:4.527005pt;}
.ws12c{word-spacing:4.557322pt;}
.ws1bd{word-spacing:4.566886pt;}
.wsc8{word-spacing:4.580139pt;}
.ws99{word-spacing:4.629034pt;}
.wsbb{word-spacing:4.633273pt;}
.ws2b{word-spacing:4.671541pt;}
.ws37{word-spacing:4.686407pt;}
.ws111{word-spacing:4.731098pt;}
.ws10e{word-spacing:4.736374pt;}
.ws110{word-spacing:4.739541pt;}
.ws132{word-spacing:4.758170pt;}
.wsc3{word-spacing:4.782067pt;}
.ws3d{word-spacing:4.792675pt;}
.ws1b7{word-spacing:4.796426pt;}
.ws1df{word-spacing:4.799063pt;}
.ws186{word-spacing:4.805990pt;}
.ws1ea{word-spacing:4.841570pt;}
.wsbf{word-spacing:4.845809pt;}
.wsd8{word-spacing:4.884077pt;}
.wsef{word-spacing:4.898943pt;}
.ws73{word-spacing:4.952076pt;}
.ws170{word-spacing:4.959017pt;}
.wsa7{word-spacing:5.005210pt;}
.ws12b{word-spacing:5.006838pt;}
.ws15d{word-spacing:5.020858pt;}
.ws144{word-spacing:5.035530pt;}
.ws13c{word-spacing:5.054659pt;}
.ws46{word-spacing:5.058344pt;}
.ws139{word-spacing:5.092915pt;}
.wsf{word-spacing:5.111478pt;}
.ws8d{word-spacing:5.164612pt;}
.ws1a2{word-spacing:5.168923pt;}
.ws211{word-spacing:5.181628pt;}
.ws172{word-spacing:5.188557pt;}
.ws4b{word-spacing:5.217746pt;}
.ws1ec{word-spacing:5.223059pt;}
.ws1f4{word-spacing:5.224135pt;}
.ws16f{word-spacing:5.245942pt;}
.wsce{word-spacing:5.270880pt;}
.ws17e{word-spacing:5.284198pt;}
.ws189{word-spacing:5.322455pt;}
.ws143{word-spacing:5.341583pt;}
.ws9f{word-spacing:5.377147pt;}
.wsfc{word-spacing:5.430281pt;}
.ws127{word-spacing:5.465917pt;}
.ws1b4{word-spacing:5.475482pt;}
.ws103{word-spacing:5.479178pt;}
.ws6a{word-spacing:5.483415pt;}
.ws1a0{word-spacing:5.523302pt;}
.wsb0{word-spacing:5.536549pt;}
.ws1af{word-spacing:5.571123pt;}
.wse0{word-spacing:5.589683pt;}
.wsba{word-spacing:5.642817pt;}
.wse4{word-spacing:5.695951pt;}
.ws14d{word-spacing:5.714586pt;}
.ws88{word-spacing:5.749084pt;}
.wsdd{word-spacing:5.776728pt;}
.ws1bc{word-spacing:5.800663pt;}
.ws57{word-spacing:5.802218pt;}
.wsfe{word-spacing:5.855352pt;}
.ws7c{word-spacing:5.908486pt;}
.ws28{word-spacing:5.946757pt;}
.ws118{word-spacing:5.961620pt;}
.ws134{word-spacing:5.991946pt;}
.ws43{word-spacing:6.014754pt;}
.wsdf{word-spacing:6.031772pt;}
.wsae{word-spacing:6.067888pt;}
.ws131{word-spacing:6.087588pt;}
.wsf8{word-spacing:6.121021pt;}
.ws32{word-spacing:6.174155pt;}
.ws18{word-spacing:6.227289pt;}
.ws1d1{word-spacing:6.232603pt;}
.wsac{word-spacing:6.280423pt;}
.ws1e4{word-spacing:6.285736pt;}
.ws188{word-spacing:6.288435pt;}
.ws3f{word-spacing:6.333557pt;}
.ws190{word-spacing:6.384077pt;}
.wsa9{word-spacing:6.386691pt;}
.ws1f{word-spacing:6.439825pt;}
.ws5a{word-spacing:6.492959pt;}
.ws192{word-spacing:6.527539pt;}
.ws114{word-spacing:6.546092pt;}
.ws80{word-spacing:6.599226pt;}
.ws14c{word-spacing:6.613617pt;}
.ws185{word-spacing:6.623181pt;}
.ws1a4{word-spacing:6.632745pt;}
.wsfd{word-spacing:6.652360pt;}
.wsd9{word-spacing:6.669380pt;}
.ws8a{word-spacing:6.705494pt;}
.ws171{word-spacing:6.709258pt;}
.ws11a{word-spacing:6.758628pt;}
.ws101{word-spacing:6.811762pt;}
.ws1b{word-spacing:6.864896pt;}
.ws119{word-spacing:6.918029pt;}
.wsde{word-spacing:6.924423pt;}
.wsaa{word-spacing:6.971163pt;}
.wsb9{word-spacing:7.024297pt;}
.ws15e{word-spacing:7.053568pt;}
.ws9e{word-spacing:7.077431pt;}
.ws1b3{word-spacing:7.091825pt;}
.ws1e{word-spacing:7.130565pt;}
.ws129{word-spacing:7.149210pt;}
.wse1{word-spacing:7.183699pt;}
.wsc5{word-spacing:7.236833pt;}
.ws5c{word-spacing:7.289967pt;}
.ws1be{word-spacing:7.340493pt;}
.ws76{word-spacing:7.343100pt;}
.ws26{word-spacing:7.396234pt;}
.ws15c{word-spacing:7.426570pt;}
.ws10b{word-spacing:7.449368pt;}
.ws191{word-spacing:7.522212pt;}
.ws1a5{word-spacing:7.570033pt;}
.ws11{word-spacing:7.608770pt;}
.ws6f{word-spacing:7.647045pt;}
.ws94{word-spacing:7.661904pt;}
.wsb5{word-spacing:7.715037pt;}
.ws96{word-spacing:7.732060pt;}
.ws67{word-spacing:7.768171pt;}
.ws35{word-spacing:7.821305pt;}
.ws92{word-spacing:7.874439pt;}
.ws8c{word-spacing:7.980707pt;}
.ws1c6{word-spacing:8.009984pt;}
.ws9c{word-spacing:8.033841pt;}
.wscd{word-spacing:8.086975pt;}
.ws1ce{word-spacing:8.105626pt;}
.ws15a{word-spacing:8.153446pt;}
.ws181{word-spacing:8.183226pt;}
.ws1a1{word-spacing:8.183863pt;}
.ws1b0{word-spacing:8.184373pt;}
.ws1ab{word-spacing:8.185689pt;}
.ws194{word-spacing:8.185964pt;}
.ws18b{word-spacing:8.186887pt;}
.ws1c2{word-spacing:8.187711pt;}
.ws16b{word-spacing:8.187749pt;}
.ws174{word-spacing:8.191126pt;}
.wsbd{word-spacing:8.193242pt;}
.ws14b{word-spacing:8.201267pt;}
.ws197{word-spacing:8.207599pt;}
.wsc7{word-spacing:8.299510pt;}
.wsb6{word-spacing:8.352644pt;}
.ws13{word-spacing:8.405778pt;}
.wse5{word-spacing:8.458912pt;}
.ws115{word-spacing:8.618313pt;}
.ws98{word-spacing:8.667218pt;}
.wsaf{word-spacing:8.671447pt;}
.wsb3{word-spacing:8.724581pt;}
.ws184{word-spacing:8.765553pt;}
.ws77{word-spacing:8.777715pt;}
.ws66{word-spacing:8.830849pt;}
.wsa5{word-spacing:8.883983pt;}
.ws1c8{word-spacing:8.934108pt;}
.wsfb{word-spacing:8.990250pt;}
.ws15f{word-spacing:9.023785pt;}
.wse6{word-spacing:9.096518pt;}
.ws121{word-spacing:9.157683pt;}
.ws8f{word-spacing:9.255920pt;}
.wsd6{word-spacing:9.262319pt;}
.wsd5{word-spacing:9.304826pt;}
.ws1cd{word-spacing:9.339402pt;}
.ws161{word-spacing:9.348966pt;}
.ws107{word-spacing:9.362187pt;}
.ws9b{word-spacing:9.415321pt;}
.wsa4{word-spacing:9.468455pt;}
.ws25{word-spacing:9.574723pt;}
.ws22{word-spacing:9.734124pt;}
.ws42{word-spacing:9.787258pt;}
.ws68{word-spacing:9.946660pt;}
.ws78{word-spacing:9.999794pt;}
.ws1c3{word-spacing:10.028022pt;}
.ws7f{word-spacing:10.159195pt;}
.wsd2{word-spacing:10.371731pt;}
.ws109{word-spacing:10.477999pt;}
.ws1a{word-spacing:10.531132pt;}
.ws120{word-spacing:10.534922pt;}
.ws58{word-spacing:10.584266pt;}
.ws81{word-spacing:10.637400pt;}
.ws36{word-spacing:10.849936pt;}
.ws79{word-spacing:10.903069pt;}
.ws1c9{word-spacing:11.022694pt;}
.ws21{word-spacing:11.168739pt;}
.ws106{word-spacing:11.221873pt;}
.ws137{word-spacing:11.252234pt;}
.ws11e{word-spacing:11.275007pt;}
.wsd0{word-spacing:11.381274pt;}
.ws116{word-spacing:11.487542pt;}
.ws63{word-spacing:11.540676pt;}
.ws108{word-spacing:11.700077pt;}
.wsd3{word-spacing:11.753211pt;}
.ws150{word-spacing:11.883469pt;}
.ws151{word-spacing:12.648602pt;}
.ws160{word-spacing:12.686858pt;}
.ws128{word-spacing:13.031168pt;}
.wsed{word-spacing:14.423650pt;}
.ws153{word-spacing:15.135283pt;}
.ws8e{word-spacing:15.472582pt;}
.ws52{word-spacing:15.568223pt;}
.wsc2{word-spacing:16.234235pt;}
.ws14f{word-spacing:16.321239pt;}
.ws1fd{word-spacing:16.569907pt;}
.wsec{word-spacing:17.379906pt;}
.ws1a6{word-spacing:17.382861pt;}
.ws1fa{word-spacing:17.624373pt;}
.wsf2{word-spacing:19.788983pt;}
.ws10f{word-spacing:22.115906pt;}
.ws55{word-spacing:23.211189pt;}
.ws20f{word-spacing:27.520870pt;}
.ws20a{word-spacing:30.246656pt;}
.wsb4{word-spacing:30.558426pt;}
.ws1fc{word-spacing:38.424013pt;}
.ws203{word-spacing:41.149798pt;}
.ws1fb{word-spacing:43.783344pt;}
.wse3{word-spacing:51.805867pt;}
.ws20d{word-spacing:51.975344pt;}
.ws1fe{word-spacing:54.826547pt;}
.ws201{word-spacing:56.071344pt;}
.ws20e{word-spacing:56.165530pt;}
.ws209{word-spacing:60.278118pt;}
.wse{word-spacing:62.166867pt;}
.ws202{word-spacing:63.003904pt;}
.ws20b{word-spacing:68.455475pt;}
.ws1ff{word-spacing:79.358618pt;}
.ws204{word-spacing:80.745421pt;}
.ws1d3{word-spacing:83.825504pt;}
.ws1f8{word-spacing:93.035366pt;}
.ws208{word-spacing:106.664294pt;}
.ws200{word-spacing:117.328333pt;}
.ws20c{word-spacing:130.957261pt;}
.ws1d4{word-spacing:157.413365pt;}
.ws1d2{word-spacing:408.607635pt;}
.ws1db{word-spacing:488.764009pt;}
.ws1da{word-spacing:515.089374pt;}
.ws1d8{word-spacing:515.140690pt;}
._33{margin-left:-29.277594pt;}
._32{margin-left:-28.262093pt;}
._25{margin-left:-22.849045pt;}
._30{margin-left:-21.612347pt;}
._36{margin-left:-16.877363pt;}
._2f{margin-left:-7.192228pt;}
._16{margin-left:-5.251590pt;}
._8{margin-left:-3.827200pt;}
._9{margin-left:-2.826240pt;}
._c{margin-left:-1.858944pt;}
._3{margin-left:-0.890880pt;}
._0{width:0.967680pt;}
._10{width:2.283274pt;}
._4{width:3.435520pt;}
._6c{width:4.732905pt;}
._6{width:5.857280pt;}
._a{width:6.922240pt;}
._7{width:8.156160pt;}
._5{width:9.236480pt;}
._1e{width:12.062224pt;}
._20{width:13.919206pt;}
._14{width:14.930617pt;}
._13{width:16.524633pt;}
._2a{width:17.588871pt;}
._1c{width:18.595371pt;}
._e{width:19.539385pt;}
._d{width:21.079483pt;}
._15{width:22.431154pt;}
._17{width:23.485169pt;}
._11{width:24.895376pt;}
._12{width:25.929327pt;}
._27{width:26.866493pt;}
._19{width:28.001548pt;}
._b{width:29.204480pt;}
._1f{width:30.389664pt;}
._23{width:31.506900pt;}
._22{width:33.154791pt;}
._18{width:34.111942pt;}
._21{width:35.758351pt;}
._1d{width:37.087439pt;}
._f{width:38.204812pt;}
._2b{width:39.152040pt;}
._2c{width:40.647408pt;}
._28{width:41.680618pt;}
._1b{width:44.146017pt;}
._29{width:45.411028pt;}
._24{width:46.587951pt;}
._1a{width:48.245551pt;}
._34{width:49.219569pt;}
._2d{width:50.336438pt;}
._35{width:52.107663pt;}
._51{width:53.415834pt;}
._50{width:54.308677pt;}
._5e{width:56.141619pt;}
._65{width:58.398201pt;}
._5f{width:60.094450pt;}
._31{width:61.103947pt;}
._61{width:64.366797pt;}
._5d{width:68.479386pt;}
._54{width:69.866189pt;}
._26{width:71.731200pt;}
._60{width:73.883136pt;}
._5c{width:77.835967pt;}
._53{width:82.060493pt;}
._2e{width:86.077200pt;}
._62{width:93.011456pt;}
._57{width:94.350438pt;}
._63{width:105.349222pt;}
._56{width:106.736026pt;}
._4f{width:108.122829pt;}
._1{width:112.302336pt;}
._64{width:118.978150pt;}
._4e{width:120.317133pt;}
._5a{width:132.367974pt;}
._59{width:145.226144pt;}
._4b{width:151.537626pt;}
._69{width:157.088774pt;}
._3f{width:158.875885pt;}
._38{width:167.680786pt;}
._2{width:173.321984pt;}
._6a{width:182.581350pt;}
._4c{width:219.993838pt;}
._40{width:227.280781pt;}
._3a{width:240.520438pt;}
._6b{width:267.600105pt;}
._66{width:420.349645pt;}
._5b{width:444.680527pt;}
._67{width:492.219494pt;}
._48{width:517.179242pt;}
._49{width:520.965113pt;}
._3c{width:529.740234pt;}
._68{width:547.876838pt;}
._52{width:597.430067pt;}
._4d{width:635.419792pt;}
._55{width:669.299917pt;}
._4a{width:676.631159pt;}
._58{width:724.957261pt;}
._46{width:753.696174pt;}
._47{width:795.726345pt;}
._44{width:905.954188pt;}
._3d{width:923.453114pt;}
._3e{width:932.068932pt;}
._37{width:972.054459pt;}
._42{width:984.109218pt;}
._39{width:987.188208pt;}
._45{width:1009.926037pt;}
._3b{width:1134.864408pt;}
._41{width:1139.346251pt;}
._43{width:1452.000381pt;}
.fsf{font-size:31.880533pt;}
.fse{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.240000pt;}
.fs10{font-size:42.507200pt;}
.fs12{font-size:47.820800pt;}
.fs13{font-size:51.316500pt;}
.fsd{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs11{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:74.240000pt;}
.fsc{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:4.000000pt;}
.y7d{bottom:8.746667pt;}
.y71{bottom:13.226667pt;}
.y52{bottom:17.280000pt;}
.y48{bottom:23.840000pt;}
.y7c{bottom:25.706667pt;}
.y6d{bottom:26.026667pt;}
.y70{bottom:29.546667pt;}
.y50{bottom:29.813333pt;}
.y6c{bottom:42.026667pt;}
.y7b{bottom:42.346667pt;}
.y6f{bottom:45.546667pt;}
.y4f{bottom:48.053333pt;}
.y21{bottom:51.200000pt;}
.yb2{bottom:56.149333pt;}
.y7a{bottom:59.306667pt;}
.y4d{bottom:59.413333pt;}
.y6b{bottom:66.026667pt;}
.y79{bottom:76.266667pt;}
.y4c{bottom:77.973333pt;}
.y6a{bottom:82.346667pt;}
.y4{bottom:86.333337pt;}
.y78{bottom:93.226667pt;}
.y72{bottom:93.333333pt;}
.y22c{bottom:96.000000pt;}
.y4b{bottom:96.213333pt;}
.yd2{bottom:96.397333pt;}
.y19b{bottom:98.061333pt;}
.y69{bottom:98.346667pt;}
.yf2{bottom:102.557333pt;}
.y179{bottom:102.933333pt;}
.y10e{bottom:103.448000pt;}
.y14b{bottom:104.792000pt;}
.y1bb{bottom:105.386667pt;}
.y158{bottom:107.494667pt;}
.y196{bottom:108.354667pt;}
.y77{bottom:109.866667pt;}
.y10d{bottom:112.370667pt;}
.y138{bottom:113.796000pt;}
.y18b{bottom:114.237333pt;}
.y68{bottom:114.346667pt;}
.yb1{bottom:116.226667pt;}
.yf1{bottom:117.829333pt;}
.y15e{bottom:117.946667pt;}
.y222{bottom:118.226667pt;}
.y1db{bottom:118.541333pt;}
.y210{bottom:119.886667pt;}
.y157{bottom:120.114667pt;}
.yd1{bottom:122.969333pt;}
.y1f{bottom:123.790666pt;}
.y19a{bottom:124.633333pt;}
.y10c{bottom:124.989333pt;}
.y205{bottom:126.196000pt;}
.y76{bottom:126.826667pt;}
.y18a{bottom:126.857333pt;}
.yb0{bottom:128.845333pt;}
.y178{bottom:129.506667pt;}
.y1ba{bottom:129.745333pt;}
.y137{bottom:130.166667pt;}
.yf0{bottom:130.449333pt;}
.y67{bottom:130.666667pt;}
.y221{bottom:130.845333pt;}
.y14a{bottom:131.365333pt;}
.y20f{bottom:132.506667pt;}
.y156{bottom:132.733333pt;}
.y195{bottom:134.928000pt;}
.y10b{bottom:137.609333pt;}
.y204{bottom:138.816000pt;}
.y189{bottom:139.476000pt;}
.yaf{bottom:141.465333pt;}
.y136{bottom:142.838667pt;}
.y1da{bottom:142.898667pt;}
.yef{bottom:143.068000pt;}
.y220{bottom:143.465333pt;}
.y75{bottom:143.786667pt;}
.y15d{bottom:144.520000pt;}
.y20e{bottom:145.125333pt;}
.y155{bottom:145.353333pt;}
.yd0{bottom:149.542667pt;}
.y11a{bottom:150.997333pt;}
.y199{bottom:151.206667pt;}
.y203{bottom:151.434667pt;}
.y10a{bottom:153.978667pt;}
.yae{bottom:154.084000pt;}
.y1b9{bottom:154.102667pt;}
.y66{bottom:154.666667pt;}
.yee{bottom:155.688000pt;}
.y188{bottom:155.846667pt;}
.y177{bottom:156.078667pt;}
.y20d{bottom:157.745333pt;}
.y149{bottom:157.937333pt;}
.y154{bottom:157.972000pt;}
.y119{bottom:159.920000pt;}
.y51{bottom:160.000000pt;}
.y74{bottom:160.426667pt;}
.y194{bottom:161.500000pt;}
.y135{bottom:162.513333pt;}
.y109{bottom:166.652000pt;}
.yad{bottom:166.704000pt;}
.y1d9{bottom:167.257333pt;}
.yed{bottom:168.306667pt;}
.y65{bottom:170.666667pt;}
.y15c{bottom:171.092000pt;}
.y153{bottom:174.341333pt;}
.y16{bottom:175.052000pt;}
.y187{bottom:175.520000pt;}
.y108{bottom:175.573333pt;}
.ycf{bottom:176.114667pt;}
.y118{bottom:176.289333pt;}
.y73{bottom:177.386667pt;}
.y1b8{bottom:178.461333pt;}
.yac{bottom:179.324000pt;}
.y176{bottom:182.650667pt;}
.y139{bottom:183.013333pt;}
.y152{bottom:183.264000pt;}
.y148{bottom:184.510667pt;}
.yec{bottom:184.677333pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y64{bottom:186.986667pt;}
.y193{bottom:188.073333pt;}
.y107{bottom:188.193333pt;}
.y117{bottom:188.961333pt;}
.y134{bottom:189.085333pt;}
.y198{bottom:190.933333pt;}
.y1dc{bottom:191.614667pt;}
.y1d8{bottom:191.616000pt;}
.yab{bottom:195.693333pt;}
.y151{bottom:195.882667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y15b{bottom:197.664000pt;}
.y186{bottom:202.093333pt;}
.yce{bottom:202.686667pt;}
.y1b7{bottom:202.818667pt;}
.yeb{bottom:204.350667pt;}
.y106{bottom:204.562667pt;}
.y150{bottom:208.502667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y175{bottom:209.224000pt;}
.y116{bottom:209.374667pt;}
.y147{bottom:211.082667pt;}
.y192{bottom:214.645333pt;}
.y22e{bottom:215.640000pt;}
.y133{bottom:215.657333pt;}
.y1d7{bottom:215.973333pt;}
.y227{bottom:216.032000pt;}
.yaa{bottom:216.105333pt;}
.y14f{bottom:221.121333pt;}
.y105{bottom:224.237333pt;}
.y1b6{bottom:227.177333pt;}
.y185{bottom:228.665333pt;}
.ycd{bottom:229.260000pt;}
.yea{bottom:230.924000pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y46{bottom:232.000000pt;}
.y14e{bottom:233.741333pt;}
.y115{bottom:235.946667pt;}
.y146{bottom:237.654667pt;}
.y1d6{bottom:240.332000pt;}
.y191{bottom:241.217333pt;}
.y132{bottom:242.230667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.ya9{bottom:242.677333pt;}
.y174{bottom:244.374667pt;}
.y14d{bottom:246.360000pt;}
.y104{bottom:250.809333pt;}
.y1b5{bottom:251.534667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y184{bottom:255.238667pt;}
.ycc{bottom:255.832000pt;}
.ye9{bottom:257.496000pt;}
.y114{bottom:262.518667pt;}
.y14c{bottom:262.730667pt;}
.y145{bottom:264.228000pt;}
.y45{bottom:264.640000pt;}
.y1d5{bottom:264.689333pt;}
.y190{bottom:267.790667pt;}
.ya8{bottom:269.250667pt;}
.y22d{bottom:273.445333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y1b4{bottom:275.893333pt;}
.y103{bottom:277.381333pt;}
.y44{bottom:281.600000pt;}
.y183{bottom:281.810667pt;}
.ycb{bottom:282.404000pt;}
.ye8{bottom:284.069333pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y1d4{bottom:289.048000pt;}
.y113{bottom:289.092000pt;}
.y144{bottom:290.800000pt;}
.y173{bottom:293.964000pt;}
.ya7{bottom:295.822667pt;}
.y43{bottom:298.880000pt;}
.y1b3{bottom:300.252000pt;}
.y102{bottom:303.954667pt;}
.y182{bottom:308.382667pt;}
.y18e{bottom:308.458667pt;}
.yca{bottom:308.977333pt;}
.yd{bottom:309.452000pt;}
.ye7{bottom:310.641333pt;}
.y1d3{bottom:313.405333pt;}
.y112{bottom:315.664000pt;}
.y42{bottom:317.120000pt;}
.y143{bottom:317.372000pt;}
.y172{bottom:320.536000pt;}
.ya6{bottom:322.394667pt;}
.y1b2{bottom:324.609333pt;}
.y18f{bottom:325.730667pt;}
.y131{bottom:326.970667pt;}
.y101{bottom:330.526667pt;}
.y4e{bottom:334.666667pt;}
.y181{bottom:334.956000pt;}
.yc9{bottom:335.549333pt;}
.y41{bottom:335.680000pt;}
.ye6{bottom:337.213333pt;}
.y1d2{bottom:337.764000pt;}
.y18d{bottom:339.016000pt;}
.y111{bottom:342.236000pt;}
.yc{bottom:343.809333pt;}
.y142{bottom:343.945333pt;}
.y214{bottom:344.853333pt;}
.y171{bottom:347.109333pt;}
.ya5{bottom:348.968000pt;}
.y130{bottom:353.542667pt;}
.y40{bottom:353.920000pt;}
.y226{bottom:354.346667pt;}
.y100{bottom:357.098667pt;}
.y213{bottom:357.472000pt;}
.y180{bottom:361.528000pt;}
.yc8{bottom:362.122667pt;}
.yb{bottom:362.706666pt;}
.ye5{bottom:363.786667pt;}
.y110{bottom:368.809333pt;}
.y212{bottom:370.092000pt;}
.y141{bottom:370.517333pt;}
.y3f{bottom:372.480000pt;}
.y1b1{bottom:373.325333pt;}
.ya4{bottom:375.540000pt;}
.y12f{bottom:380.116000pt;}
.yff{bottom:383.672000pt;}
.y231{bottom:385.380000pt;}
.y1d1{bottom:386.480000pt;}
.y170{bottom:386.836000pt;}
.y17f{bottom:388.100000pt;}
.yc7{bottom:388.694667pt;}
.ye4{bottom:390.358667pt;}
.y3e{bottom:390.720000pt;}
.y230{bottom:394.937333pt;}
.y140{bottom:397.089333pt;}
.y1b0{bottom:397.684000pt;}
.ya3{bottom:402.112000pt;}
.y12e{bottom:406.688000pt;}
.y10f{bottom:408.536000pt;}
.y3d{bottom:409.280000pt;}
.yfe{bottom:410.244000pt;}
.y1d0{bottom:410.838667pt;}
.y17e{bottom:414.673333pt;}
.yc6{bottom:415.266667pt;}
.ye3{bottom:416.930667pt;}
.y4a{bottom:418.666667pt;}
.y18c{bottom:418.822667pt;}
.y1af{bottom:422.041333pt;}
.y13f{bottom:423.662667pt;}
.y3c{bottom:427.520000pt;}
.ya2{bottom:428.685333pt;}
.y22a{bottom:430.041333pt;}
.y22b{bottom:433.113333pt;}
.y12d{bottom:433.260000pt;}
.y1cf{bottom:435.196000pt;}
.y15a{bottom:436.816000pt;}
.yfd{bottom:436.817333pt;}
.y229{bottom:439.598667pt;}
.y17d{bottom:441.245333pt;}
.yc5{bottom:441.840000pt;}
.ye2{bottom:443.504000pt;}
.y1f9{bottom:444.330667pt;}
.y3b{bottom:446.080000pt;}
.y1ae{bottom:446.400000pt;}
.y16f{bottom:446.712000pt;}
.y62{bottom:449.600000pt;}
.y13e{bottom:450.234667pt;}
.ya1{bottom:455.257333pt;}
.y1f8{bottom:456.950667pt;}
.y1ce{bottom:459.554667pt;}
.y12c{bottom:459.833333pt;}
.ya{bottom:462.990669pt;}
.yfc{bottom:463.389333pt;}
.y3a{bottom:464.320000pt;}
.y17c{bottom:467.817333pt;}
.yc4{bottom:468.412000pt;}
.y1f7{bottom:469.569333pt;}
.ye1{bottom:470.076000pt;}
.y1ad{bottom:470.758667pt;}
.y61{bottom:471.040000pt;}
.y16e{bottom:473.284000pt;}
.y21f{bottom:475.428000pt;}
.y13d{bottom:476.806667pt;}
.y6e{bottom:477.333333pt;}
.y9{bottom:478.990666pt;}
.y39{bottom:480.960000pt;}
.ya0{bottom:481.830667pt;}
.y1f6{bottom:482.189333pt;}
.y202{bottom:483.398667pt;}
.y1cd{bottom:483.912000pt;}
.y12b{bottom:486.405333pt;}
.y20c{bottom:489.708000pt;}
.yfb{bottom:489.961333pt;}
.y21e{bottom:491.368000pt;}
.y1f5{bottom:494.808000pt;}
.yc3{bottom:494.984000pt;}
.y8{bottom:494.990666pt;}
.y1ac{bottom:495.116000pt;}
.y38{bottom:497.920000pt;}
.y159{bottom:498.540000pt;}
.y16d{bottom:499.857333pt;}
.y17b{bottom:502.969333pt;}
.y13c{bottom:503.380000pt;}
.ye0{bottom:505.228000pt;}
.y1cc{bottom:508.270667pt;}
.y9f{bottom:508.402667pt;}
.y12a{bottom:512.977333pt;}
.y37{bottom:514.880000pt;}
.yfa{bottom:516.534667pt;}
.y1ab{bottom:519.474667pt;}
.yc2{bottom:521.557333pt;}
.y1f4{bottom:525.496066pt;}
.y16c{bottom:526.429333pt;}
.y13b{bottom:529.952000pt;}
.y36{bottom:531.520000pt;}
.y1cb{bottom:532.629333pt;}
.y9e{bottom:534.974667pt;}
.y129{bottom:539.550667pt;}
.y1f3{bottom:541.176203pt;}
.yf9{bottom:543.106667pt;}
.y1aa{bottom:543.832000pt;}
.y225{bottom:546.857333pt;}
.yc1{bottom:548.129333pt;}
.y35{bottom:548.480000pt;}
.y16b{bottom:553.001333pt;}
.ydf{bottom:554.816000pt;}
.y21d{bottom:555.540000pt;}
.y1f2{bottom:556.856340pt;}
.y1ca{bottom:556.986667pt;}
.y20b{bottom:557.200000pt;}
.y224{bottom:559.477333pt;}
.y60{bottom:560.320000pt;}
.y9d{bottom:561.548000pt;}
.y201{bottom:563.509333pt;}
.y13a{bottom:565.104000pt;}
.y34{bottom:565.440000pt;}
.y128{bottom:566.122667pt;}
.y21c{bottom:568.158667pt;}
.y1a9{bottom:568.190667pt;}
.yf8{bottom:569.678667pt;}
.y20a{bottom:569.820000pt;}
.y223{bottom:572.096000pt;}
.y1f1{bottom:572.536477pt;}
.y7{bottom:573.786667pt;}
.yc0{bottom:574.701333pt;}
.y218{bottom:575.700000pt;}
.y200{bottom:576.129333pt;}
.y5f{bottom:577.280000pt;}
.y17a{bottom:578.257333pt;}
.y206{bottom:579.020000pt;}
.y16a{bottom:579.574667pt;}
.y21b{bottom:580.778667pt;}
.y1c9{bottom:581.345333pt;}
.yde{bottom:581.389333pt;}
.y33{bottom:582.400000pt;}
.y209{bottom:582.438667pt;}
.y9c{bottom:588.120000pt;}
.y1f0{bottom:588.216615pt;}
.y217{bottom:588.318667pt;}
.y1ff{bottom:588.748000pt;}
.y1fd{bottom:591.640000pt;}
.y1a8{bottom:592.549333pt;}
.y6{bottom:592.685334pt;}
.y127{bottom:592.696000pt;}
.y208{bottom:595.058667pt;}
.yf7{bottom:596.252000pt;}
.y22f{bottom:598.145333pt;}
.y32{bottom:599.040000pt;}
.y216{bottom:600.938667pt;}
.ybf{bottom:601.274667pt;}
.y1ef{bottom:603.896752pt;}
.y1fc{bottom:604.258667pt;}
.y1c8{bottom:605.702667pt;}
.y169{bottom:606.146667pt;}
.ydd{bottom:607.961333pt;}
.y5e{bottom:609.280000pt;}
.y47{bottom:612.000000pt;}
.y9b{bottom:614.692000pt;}
.y31{bottom:616.000000pt;}
.y1fb{bottom:616.878667pt;}
.y1a7{bottom:616.906667pt;}
.y126{bottom:619.268000pt;}
.y1ee{bottom:619.575458pt;}
.y228{bottom:620.280000pt;}
.yf6{bottom:622.824000pt;}
.y5d{bottom:625.280000pt;}
.ybe{bottom:627.846667pt;}
.y1c7{bottom:630.061333pt;}
.y168{bottom:632.718667pt;}
.y30{bottom:632.960000pt;}
.ydc{bottom:634.533333pt;}
.y1ed{bottom:635.255595pt;}
.y9a{bottom:641.265333pt;}
.y5c{bottom:641.280000pt;}
.y5{bottom:645.598667pt;}
.y125{bottom:645.840000pt;}
.yf5{bottom:649.396000pt;}
.y2f{bottom:649.600000pt;}
.y1ec{bottom:650.935733pt;}
.ybd{bottom:654.418667pt;}
.y5b{bottom:657.600000pt;}
.y167{bottom:659.292000pt;}
.ydb{bottom:661.106667pt;}
.y1a6{bottom:665.622667pt;}
.y2e{bottom:666.560000pt;}
.y1eb{bottom:666.615870pt;}
.y99{bottom:667.837333pt;}
.y3{bottom:668.977329pt;}
.y124{bottom:672.413333pt;}
.y5a{bottom:673.600000pt;}
.yf4{bottom:675.969333pt;}
.y1c6{bottom:678.777333pt;}
.ybc{bottom:680.992000pt;}
.y1ea{bottom:682.296007pt;}
.y2d{bottom:683.520000pt;}
.y197{bottom:684.548000pt;}
.y166{bottom:685.864000pt;}
.yda{bottom:687.678667pt;}
.y1a5{bottom:689.981333pt;}
.y98{bottom:694.409333pt;}
.y1e9{bottom:697.976144pt;}
.y123{bottom:698.985333pt;}
.y2c{bottom:700.160000pt;}
.y211{bottom:702.054667pt;}
.y1c5{bottom:703.136000pt;}
.y59{bottom:705.600000pt;}
.ybb{bottom:707.564000pt;}
.yf3{bottom:711.120000pt;}
.y165{bottom:712.437333pt;}
.y1e8{bottom:713.656281pt;}
.yd9{bottom:714.250667pt;}
.y1a4{bottom:714.338667pt;}
.y2b{bottom:717.120000pt;}
.y97{bottom:720.982667pt;}
.y122{bottom:725.557333pt;}
.y1c4{bottom:727.493333pt;}
.y1e7{bottom:729.336419pt;}
.yba{bottom:734.137333pt;}
.y2a{bottom:734.720000pt;}
.y58{bottom:737.920000pt;}
.y1a3{bottom:738.697333pt;}
.y164{bottom:739.009333pt;}
.yd8{bottom:740.824000pt;}
.y8e{bottom:743.040000pt;}
.y1e6{bottom:745.016556pt;}
.y96{bottom:747.554667pt;}
.y1c3{bottom:751.852000pt;}
.y121{bottom:752.130667pt;}
.y57{bottom:753.920000pt;}
.y29{bottom:756.160000pt;}
.y8d{bottom:760.000000pt;}
.y1e5{bottom:760.696693pt;}
.yb9{bottom:760.709333pt;}
.y1a2{bottom:763.056000pt;}
.y163{bottom:765.581333pt;}
.yd7{bottom:767.396000pt;}
.y56{bottom:769.920000pt;}
.y95{bottom:774.126667pt;}
.y1c2{bottom:776.209333pt;}
.y1e4{bottom:776.375399pt;}
.y8c{bottom:776.640000pt;}
.y28{bottom:777.600000pt;}
.y120{bottom:778.702667pt;}
.y2{bottom:781.661334pt;}
.y55{bottom:786.240000pt;}
.yb8{bottom:787.281333pt;}
.y1a1{bottom:787.413333pt;}
.y1e3{bottom:792.055537pt;}
.y162{bottom:792.154667pt;}
.y8b{bottom:793.600000pt;}
.yd6{bottom:793.968000pt;}
.y27{bottom:799.040000pt;}
.y1c1{bottom:800.568000pt;}
.y94{bottom:800.700000pt;}
.y54{bottom:802.240000pt;}
.y11f{bottom:805.274667pt;}
.y1e2{bottom:807.735674pt;}
.y8a{bottom:810.560000pt;}
.y1a0{bottom:811.772000pt;}
.yb7{bottom:813.854667pt;}
.y53{bottom:814.400000pt;}
.y161{bottom:818.726667pt;}
.y26{bottom:820.480000pt;}
.yd5{bottom:820.541333pt;}
.y63{bottom:821.333333pt;}
.y1e1{bottom:823.415811pt;}
.y1c0{bottom:824.925333pt;}
.y93{bottom:827.272000pt;}
.y89{bottom:827.520000pt;}
.y11e{bottom:831.848000pt;}
.y19f{bottom:836.129333pt;}
.y1e0{bottom:839.095948pt;}
.yb6{bottom:840.426667pt;}
.y25{bottom:841.920000pt;}
.y88{bottom:844.160000pt;}
.y160{bottom:845.298667pt;}
.yd4{bottom:847.113333pt;}
.y1bf{bottom:849.284000pt;}
.y92{bottom:853.845333pt;}
.y1df{bottom:855.345544pt;}
.y11d{bottom:858.420000pt;}
.y1{bottom:859.312000pt;}
.y19e{bottom:860.488000pt;}
.y87{bottom:861.120000pt;}
.y24{bottom:863.360000pt;}
.yb5{bottom:866.998667pt;}
.y1de{bottom:871.025681pt;}
.y1be{bottom:873.642667pt;}
.y86{bottom:878.080000pt;}
.y91{bottom:880.417333pt;}
.y23{bottom:884.800000pt;}
.y19d{bottom:884.845333pt;}
.y11c{bottom:884.992000pt;}
.yd3{bottom:886.840000pt;}
.y15f{bottom:893.017333pt;}
.yb4{bottom:893.572000pt;}
.y85{bottom:894.720000pt;}
.y1bd{bottom:898.000000pt;}
.y22{bottom:902.400000pt;}
.y1dd{bottom:904.060000pt;}
.y90{bottom:906.989333pt;}
.y19c{bottom:909.204000pt;}
.y11b{bottom:911.565333pt;}
.y84{bottom:911.680000pt;}
.y21a{bottom:912.741333pt;}
.yb3{bottom:920.144000pt;}
.y1fe{bottom:920.712000pt;}
.y1bc{bottom:922.358667pt;}
.y207{bottom:927.021333pt;}
.y83{bottom:928.640000pt;}
.y219{bottom:928.681333pt;}
.y215{bottom:932.901333pt;}
.y82{bottom:945.280000pt;}
.y8f{bottom:946.716000pt;}
.y1fa{bottom:948.841333pt;}
.y81{bottom:962.240000pt;}
.y80{bottom:979.200000pt;}
.y7f{bottom:996.160000pt;}
.y7e{bottom:1012.800000pt;}
.y20{bottom:1062.080000pt;}
.h1f{height:21.551241pt;}
.h7{height:28.560000pt;}
.h23{height:29.499997pt;}
.h20{height:31.880400pt;}
.h25{height:35.865600pt;}
.h26{height:37.778179pt;}
.h27{height:38.487375pt;}
.h14{height:39.138750pt;}
.hd{height:39.243750pt;}
.h1d{height:39.850400pt;}
.h12{height:40.000000pt;}
.h6{height:40.800000pt;}
.h15{height:41.057500pt;}
.hc{height:42.656250pt;}
.h3{height:42.840000pt;}
.h16{height:42.866250pt;}
.hb{height:42.923750pt;}
.h1e{height:44.422874pt;}
.h22{height:44.428207pt;}
.h21{height:44.632747pt;}
.h9{height:46.593750pt;}
.h24{height:47.823733pt;}
.h2{height:48.960000pt;}
.hf{height:50.321250pt;}
.h1c{height:53.559147pt;}
.ha{height:54.048750pt;}
.h1a{height:55.031250pt;}
.h18{height:58.666667pt;}
.h11{height:64.000000pt;}
.h13{height:68.718750pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h10{height:112.000000pt;}
.he{height:122.666667pt;}
.h19{height:192.000000pt;}
.h17{height:200.000000pt;}
.h1b{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:173.333333pt;}
.w5{width:278.666667pt;}
.w9{width:292.000000pt;}
.w4{width:365.333333pt;}
.w7{width:505.333333pt;}
.w2{width:566.928019pt;}
.w8{width:600.000000pt;}
.w0{width:793.700000pt;}
.w3{width:793.920000pt;}
.w1{width:794.000000pt;}
.wa{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:10.239904pt;}
.x27{left:64.613333pt;}
.xd{left:82.666667pt;}
.xb{left:88.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.000000pt;}
.x25{left:98.105333pt;}
.x28{left:101.741333pt;}
.x19{left:104.553225pt;}
.x11{left:105.918667pt;}
.x10{left:110.789333pt;}
.xf{left:115.925333pt;}
.x29{left:123.658667pt;}
.x20{left:129.424000pt;}
.x14{left:130.737333pt;}
.x21{left:135.697333pt;}
.x1f{left:136.892000pt;}
.x2a{left:145.577333pt;}
.x23{left:154.653333pt;}
.x24{left:157.692000pt;}
.x22{left:162.121333pt;}
.x2b{left:168.025333pt;}
.x13{left:173.126667pt;}
.x15{left:174.400000pt;}
.x4{left:180.874667pt;}
.x26{left:182.992000pt;}
.x2c{left:189.944000pt;}
.x1d{left:210.325333pt;}
.x2d{left:211.861333pt;}
.x1e{left:216.598667pt;}
.x1c{left:217.793333pt;}
.x2e{left:233.778667pt;}
.x2f{left:255.697333pt;}
.x30{left:277.614667pt;}
.x31{left:300.064000pt;}
.x17{left:313.581333pt;}
.x32{left:321.981333pt;}
.x7{left:323.840000pt;}
.x33{left:343.900000pt;}
.x34{left:366.349333pt;}
.x9{left:377.800000pt;}
.x35{left:388.266667pt;}
.x6{left:396.900160pt;}
.x12{left:401.358667pt;}
.x3{left:404.408000pt;}
.x36{left:410.184000pt;}
.x18{left:432.763006pt;}
.x37{left:454.020000pt;}
.x8{left:464.800000pt;}
.x38{left:475.937333pt;}
.x1b{left:491.832153pt;}
.x1a{left:495.128717pt;}
.x39{left:498.386667pt;}
.x3a{left:520.304000pt;}
.xa{left:537.800000pt;}
.x3b{left:542.222667pt;}
.x3c{left:564.672000pt;}
.x3d{left:586.589333pt;}
.x3e{left:608.506667pt;}
.x3f{left:630.425333pt;}
.x40{left:652.342667pt;}
.x41{left:674.260000pt;}
.xe{left:697.920000pt;}
.x16{left:703.026667pt;}
.x42{left:715.978667pt;}
.x43{left:728.597333pt;}
.x44{left:741.217333pt;}
.x45{left:753.836000pt;}
}




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