
    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_2fb998a0a9b63ef02311a139.woff')format("woff");}.ff1{font-family:ff1;line-height:0.747070;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_84092ddc2f7304fcad7ac822.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958984;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_dd381866c3728482af19886c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_793ec72a0beb11d4e29400a5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_beab8307fe17586ecd9ca41e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d8ee345546312e6223a824e1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_b1f1096a9b542ea82f5112eb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.675000;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_686abad67f4be592b0243132.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931641;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_4c3aef74a75ee7bae285df38.woff')format("woff");}.ff9{font-family:ff9;line-height:0.772949;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_f64456ef0242f6dc7be8e126.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_43e78cd625cd2d75eebec9b1.woff')format("woff");}.ffb{font-family:ffb;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7bca7a227b04322e32913884.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_686abad67f4be592b0243132.woff')format("woff");}.ffd{font-family:ffd;line-height:0.931641;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_bbae1be036fd324ce5a6df34.woff')format("woff");}.ffe{font-family:ffe;line-height:0.772949;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_686abad67f4be592b0243132.woff')format("woff");}.fff{font-family:fff;line-height:0.931641;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_353194f2070ab922ba2c3589.woff')format("woff");}.ff10{font-family:ff10;line-height:0.775391;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_992fcdaa4b3417635ac5a1af.woff')format("woff");}.ff11{font-family:ff11;line-height:0.481000;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_419c850bde73e33518a253e8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.931641;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_77b5e6c76966f273f3f198dc.woff')format("woff");}.ff13{font-family:ff13;line-height:0.772949;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_c80560f8782f6d8750293180.woff')format("woff");}.ff14{font-family:ff14;line-height:0.505000;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_be8a46e1ad711d6f23d6513b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.715000;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;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v8{vertical-align:-14.350800px;}
.v1{vertical-align:-11.952000px;}
.v2{vertical-align:-10.921860px;}
.v7{vertical-align:-9.900000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:40.465140px;}
.v4{vertical-align:84.312000px;}
.v3{vertical-align:102.246000px;}
.v6{vertical-align:125.322564px;}
.ls31{letter-spacing:-0.323190px;}
.ls20{letter-spacing:-0.222444px;}
.ls2f{letter-spacing:-0.189378px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000072px;}
.ls19{letter-spacing:0.000435px;}
.ls2d{letter-spacing:0.000480px;}
.ls26{letter-spacing:0.000658px;}
.ls11{letter-spacing:0.000686px;}
.ls46{letter-spacing:0.000691px;}
.ls25{letter-spacing:0.000840px;}
.ls2c{letter-spacing:0.001080px;}
.ls4f{letter-spacing:0.001133px;}
.ls40{letter-spacing:0.001260px;}
.ls15{letter-spacing:0.001498px;}
.ls16{letter-spacing:0.001790px;}
.ls10{letter-spacing:0.001920px;}
.ls24{letter-spacing:0.001973px;}
.lsd{letter-spacing:0.001996px;}
.ls8{letter-spacing:0.002100px;}
.ls2e{letter-spacing:0.002342px;}
.ls17{letter-spacing:0.002638px;}
.ls3e{letter-spacing:0.003180px;}
.ls4b{letter-spacing:0.003780px;}
.ls3{letter-spacing:0.004200px;}
.lse{letter-spacing:0.004260px;}
.ls14{letter-spacing:0.004500px;}
.lsf{letter-spacing:0.005306px;}
.ls9{letter-spacing:0.013936px;}
.ls27{letter-spacing:0.014760px;}
.ls28{letter-spacing:0.015390px;}
.lsc{letter-spacing:0.018616px;}
.lsb{letter-spacing:0.020956px;}
.ls29{letter-spacing:0.115860px;}
.ls2b{letter-spacing:0.118200px;}
.ls21{letter-spacing:0.134616px;}
.ls22{letter-spacing:0.136956px;}
.ls13{letter-spacing:0.138660px;}
.ls2a{letter-spacing:0.139980px;}
.ls44{letter-spacing:0.451560px;}
.ls42{letter-spacing:0.565680px;}
.ls5{letter-spacing:0.580385px;}
.ls6{letter-spacing:0.582725px;}
.ls7{letter-spacing:0.585065px;}
.lsa{letter-spacing:0.587465px;}
.ls35{letter-spacing:0.746316px;}
.ls3a{letter-spacing:0.747338px;}
.ls1f{letter-spacing:0.749837px;}
.ls34{letter-spacing:0.770072px;}
.ls38{letter-spacing:1.478119px;}
.ls1d{letter-spacing:1.497980px;}
.ls36{letter-spacing:1.515332px;}
.ls45{letter-spacing:2.039820px;}
.ls3f{letter-spacing:2.986968px;}
.ls1e{letter-spacing:4.479866px;}
.ls1{letter-spacing:8.366640px;}
.ls39{letter-spacing:8.652319px;}
.ls4{letter-spacing:11.960490px;}
.ls51{letter-spacing:13.282200px;}
.ls4d{letter-spacing:13.415040px;}
.ls49{letter-spacing:13.447260px;}
.ls4c{letter-spacing:13.449600px;}
.ls4a{letter-spacing:13.454280px;}
.ls4e{letter-spacing:13.561260px;}
.ls48{letter-spacing:14.888671px;}
.ls32{letter-spacing:14.944200px;}
.ls3d{letter-spacing:14.955282px;}
.ls18{letter-spacing:16.440300px;}
.ls12{letter-spacing:17.153376px;}
.ls1b{letter-spacing:17.709500px;}
.ls3c{letter-spacing:17.928180px;}
.ls47{letter-spacing:17.930520px;}
.ls3b{letter-spacing:17.935200px;}
.ls1a{letter-spacing:18.118712px;}
.ls33{letter-spacing:18.121112px;}
.ls50{letter-spacing:19.314660px;}
.ls2{letter-spacing:28.452814px;}
.ls37{letter-spacing:38.109158px;}
.ls1c{letter-spacing:49.089512px;}
.ls41{letter-spacing:53.233112px;}
.ls43{letter-spacing:147.017912px;}
.ls30{letter-spacing:954.954000px;}
.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;}
}
.ws125{word-spacing:-45.150120px;}
.ws142{word-spacing:-40.635108px;}
.ws0{word-spacing:-40.032000px;}
.ws147{word-spacing:-38.526300px;}
.ws119{word-spacing:-29.887800px;}
.ws1ce{word-spacing:-26.899200px;}
.ws1{word-spacing:-25.020000px;}
.ws2{word-spacing:-17.514000px;}
.ws1b0{word-spacing:-13.449600px;}
.ws2b{word-spacing:-0.059776px;}
.ws12a{word-spacing:-0.053798px;}
.ws39{word-spacing:-0.047821px;}
.ws135{word-spacing:-0.045430px;}
.wsc{word-spacing:-0.041843px;}
.ws17c{word-spacing:-0.035866px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:8.324764px;}
.wsf{word-spacing:8.325587px;}
.ws9{word-spacing:8.325629px;}
.ws8{word-spacing:8.325839px;}
.ws6{word-spacing:8.325880px;}
.ws10{word-spacing:8.326006px;}
.ws4{word-spacing:8.326592px;}
.ws5{word-spacing:8.327010px;}
.wsd{word-spacing:8.327177px;}
.wsa{word-spacing:10.838468px;}
.wse{word-spacing:10.840510px;}
.ws31{word-spacing:11.595869px;}
.ws78{word-spacing:11.716675px;}
.wse2{word-spacing:11.895165px;}
.wse1{word-spacing:11.896062px;}
.ws38{word-spacing:11.903872px;}
.ws150{word-spacing:11.906469px;}
.ws14{word-spacing:11.907329px;}
.ws3a{word-spacing:11.907999px;}
.ws15{word-spacing:11.908095px;}
.ws3b{word-spacing:11.908238px;}
.ws1a8{word-spacing:11.946204px;}
.ws176{word-spacing:12.050842px;}
.ws1d8{word-spacing:12.051218px;}
.ws1bd{word-spacing:12.266573px;}
.ws80{word-spacing:12.373729px;}
.ws67{word-spacing:12.613488px;}
.wsf8{word-spacing:12.671531px;}
.ws198{word-spacing:12.695562px;}
.ws199{word-spacing:12.696046px;}
.ws16f{word-spacing:12.971664px;}
.wsf1{word-spacing:13.030423px;}
.ws8c{word-spacing:13.090797px;}
.ws91{word-spacing:13.091215px;}
.ws1a3{word-spacing:13.125626px;}
.ws126{word-spacing:13.125787px;}
.ws1df{word-spacing:13.125895px;}
.ws1a2{word-spacing:13.126164px;}
.ws128{word-spacing:13.126325px;}
.ws129{word-spacing:13.126917px;}
.ws127{word-spacing:13.127509px;}
.ws1a1{word-spacing:13.139563px;}
.wsac{word-spacing:13.150453px;}
.wsaa{word-spacing:13.150512px;}
.wsab{word-spacing:13.150632px;}
.ws1e4{word-spacing:13.179909px;}
.ws1ad{word-spacing:13.180178px;}
.ws1c0{word-spacing:13.181630px;}
.ws1e5{word-spacing:13.204181px;}
.ws10b{word-spacing:13.211244px;}
.ws1d2{word-spacing:13.233653px;}
.ws1d3{word-spacing:13.233815px;}
.ws1d1{word-spacing:13.234944px;}
.ws1e6{word-spacing:13.235482px;}
.ws19c{word-spacing:13.287129px;}
.ws1c5{word-spacing:13.287236px;}
.ws19b{word-spacing:13.287613px;}
.ws1e8{word-spacing:13.288689px;}
.ws1cc{word-spacing:13.289066px;}
.wsf3{word-spacing:13.330855px;}
.ws1ea{word-spacing:13.340873px;}
.ws1aa{word-spacing:13.341035px;}
.ws1f9{word-spacing:13.341788px;}
.ws1b8{word-spacing:13.342003px;}
.ws1f8{word-spacing:13.342218px;}
.ws1c3{word-spacing:13.342756px;}
.ws1c4{word-spacing:13.342972px;}
.ws1bf{word-spacing:13.371730px;}
.ws1c2{word-spacing:13.389904px;}
.ws1b5{word-spacing:13.390181px;}
.ws1cd{word-spacing:13.390930px;}
.ws1ba{word-spacing:13.391645px;}
.ws1a6{word-spacing:13.394395px;}
.ws19a{word-spacing:13.394618px;}
.ws1a9{word-spacing:13.394672px;}
.ws19e{word-spacing:13.394726px;}
.ws12c{word-spacing:13.394779px;}
.ws1e9{word-spacing:13.394794px;}
.ws1fa{word-spacing:13.394833px;}
.ws1a0{word-spacing:13.394941px;}
.ws1cb{word-spacing:13.394981px;}
.ws1ee{word-spacing:13.394995px;}
.ws1dd{word-spacing:13.395048px;}
.ws17e{word-spacing:13.395102px;}
.ws1ec{word-spacing:13.395156px;}
.ws1d0{word-spacing:13.395158px;}
.ws12d{word-spacing:13.395210px;}
.ws1cf{word-spacing:13.395317px;}
.ws12b{word-spacing:13.395371px;}
.ws1be{word-spacing:13.395479px;}
.ws12e{word-spacing:13.395533px;}
.ws19f{word-spacing:13.395640px;}
.ws159{word-spacing:13.395748px;}
.ws19d{word-spacing:13.395802px;}
.wsdc{word-spacing:13.395909px;}
.ws1c6{word-spacing:13.395963px;}
.ws1b4{word-spacing:13.396124px;}
.ws1b6{word-spacing:13.396286px;}
.ws1de{word-spacing:13.396340px;}
.ws195{word-spacing:13.396555px;}
.wsdd{word-spacing:13.396716px;}
.wsf0{word-spacing:13.396824px;}
.ws1a4{word-spacing:13.397355px;}
.ws44{word-spacing:13.449092px;}
.ws145{word-spacing:13.449600px;}
.ws52{word-spacing:13.449988px;}
.ws1d4{word-spacing:13.502322px;}
.ws144{word-spacing:13.502860px;}
.ws143{word-spacing:13.502914px;}
.ws1bb{word-spacing:13.503076px;}
.ws1d5{word-spacing:13.503398px;}
.ws1a7{word-spacing:13.503936px;}
.ws1bc{word-spacing:13.504044px;}
.ws1f3{word-spacing:13.556228px;}
.ws1eb{word-spacing:13.556336px;}
.ws14b{word-spacing:13.556497px;}
.ws178{word-spacing:13.556605px;}
.ws1d6{word-spacing:13.556820px;}
.ws177{word-spacing:13.557412px;}
.ws1f5{word-spacing:13.557466px;}
.ws1f4{word-spacing:13.561758px;}
.ws1f6{word-spacing:13.609919px;}
.ws1f1{word-spacing:13.610134px;}
.ws193{word-spacing:13.610511px;}
.ws1f0{word-spacing:13.610565px;}
.ws194{word-spacing:13.610780px;}
.ws1ef{word-spacing:13.610834px;}
.ws1f7{word-spacing:13.611426px;}
.ws1af{word-spacing:13.663771px;}
.ws1ae{word-spacing:13.664094px;}
.ws1c8{word-spacing:13.664148px;}
.ws1b3{word-spacing:13.664417px;}
.ws1b2{word-spacing:13.664847px;}
.ws1fd{word-spacing:13.665170px;}
.wsbc{word-spacing:13.687656px;}
.ws1c7{word-spacing:13.718700px;}
.ws1b1{word-spacing:13.719453px;}
.ws106{word-spacing:13.747432px;}
.ws170{word-spacing:13.867461px;}
.ws9d{word-spacing:13.988088px;}
.wsf7{word-spacing:14.046549px;}
.wsbb{word-spacing:14.048342px;}
.ws43{word-spacing:14.166817px;}
.wsa3{word-spacing:14.227848px;}
.ws48{word-spacing:14.287026px;}
.wsa2{word-spacing:14.287145px;}
.ws102{word-spacing:14.345486px;}
.ws103{word-spacing:14.347100px;}
.ws11a{word-spacing:14.406278px;}
.ws1e7{word-spacing:14.418832px;}
.ws111{word-spacing:14.524634px;}
.ws68{word-spacing:14.524694px;}
.ws62{word-spacing:14.524813px;}
.ws36{word-spacing:14.525291px;}
.ws11e{word-spacing:14.526487px;}
.ws18e{word-spacing:14.584051px;}
.ws108{word-spacing:14.584230px;}
.ws5e{word-spacing:14.584350px;}
.ws189{word-spacing:14.584469px;}
.ws1e{word-spacing:14.584589px;}
.wsfb{word-spacing:14.584649px;}
.wsb0{word-spacing:14.584888px;}
.wsf6{word-spacing:14.586382px;}
.ws3c{word-spacing:14.643886px;}
.wsfa{word-spacing:14.644125px;}
.ws37{word-spacing:14.644185px;}
.ws18a{word-spacing:14.644424px;}
.ws7f{word-spacing:14.644604px;}
.ws10f{word-spacing:14.644783px;}
.ws107{word-spacing:14.644843px;}
.ws4f{word-spacing:14.644962px;}
.wsa5{word-spacing:14.645022px;}
.wsc4{word-spacing:14.645261px;}
.ws6e{word-spacing:14.645321px;}
.ws3f{word-spacing:14.645680px;}
.ws11c{word-spacing:14.645739px;}
.ws40{word-spacing:14.645799px;}
.ws3d{word-spacing:14.646038px;}
.ws47{word-spacing:14.703602px;}
.ws5a{word-spacing:14.703662px;}
.ws27{word-spacing:14.703901px;}
.ws92{word-spacing:14.704021px;}
.ws88{word-spacing:14.704200px;}
.ws5f{word-spacing:14.704499px;}
.wsc3{word-spacing:14.704798px;}
.ws82{word-spacing:14.705216px;}
.ws131{word-spacing:14.705276px;}
.wsd2{word-spacing:14.705455px;}
.ws66{word-spacing:14.705515px;}
.wsef{word-spacing:14.705814px;}
.ws32{word-spacing:14.705993px;}
.wse6{word-spacing:14.761773px;}
.wse7{word-spacing:14.763497px;}
.ws8d{word-spacing:14.763557px;}
.ws74{word-spacing:14.763617px;}
.ws6c{word-spacing:14.763677px;}
.ws17{word-spacing:14.763796px;}
.ws117{word-spacing:14.763856px;}
.wsfd{word-spacing:14.764035px;}
.ws16e{word-spacing:14.764334px;}
.ws168{word-spacing:14.764573px;}
.ws115{word-spacing:14.764992px;}
.ws163{word-spacing:14.765111px;}
.ws59{word-spacing:14.765171px;}
.ws124{word-spacing:14.765291px;}
.ws187{word-spacing:14.765470px;}
.ws16{word-spacing:14.776996px;}
.ws116{word-spacing:14.780991px;}
.ws89{word-spacing:14.823153px;}
.ws13f{word-spacing:14.823213px;}
.ws1f{word-spacing:14.823333px;}
.ws98{word-spacing:14.823631px;}
.ws49{word-spacing:14.823691px;}
.wsd4{word-spacing:14.823871px;}
.ws16c{word-spacing:14.823930px;}
.ws13c{word-spacing:14.824050px;}
.wsd9{word-spacing:14.824110px;}
.ws141{word-spacing:14.824289px;}
.wsec{word-spacing:14.824468px;}
.wsed{word-spacing:14.824707px;}
.ws183{word-spacing:14.824767px;}
.ws11d{word-spacing:14.824827px;}
.wsfc{word-spacing:14.824947px;}
.wsc5{word-spacing:14.825305px;}
.wsa8{word-spacing:14.825544px;}
.ws155{word-spacing:14.882664px;}
.ws21{word-spacing:14.882929px;}
.wsc1{word-spacing:14.883048px;}
.ws24{word-spacing:14.883108px;}
.ws13{word-spacing:14.883168px;}
.ws8a{word-spacing:14.883228px;}
.ws30{word-spacing:14.883407px;}
.ws146{word-spacing:14.883467px;}
.ws13d{word-spacing:14.883527px;}
.ws60{word-spacing:14.883706px;}
.wsa4{word-spacing:14.883826px;}
.ws2a{word-spacing:14.883945px;}
.ws114{word-spacing:14.884005px;}
.wsdb{word-spacing:14.884124px;}
.ws118{word-spacing:14.884244px;}
.ws17d{word-spacing:14.884419px;}
.ws70{word-spacing:14.884483px;}
.ws84{word-spacing:14.884543px;}
.ws171{word-spacing:14.884662px;}
.ws97{word-spacing:14.884722px;}
.ws165{word-spacing:14.884842px;}
.ws28{word-spacing:14.885141px;}
.ws15c{word-spacing:14.885320px;}
.ws156{word-spacing:14.888134px;}
.wsd5{word-spacing:14.942944px;}
.ws105{word-spacing:14.943003px;}
.ws54{word-spacing:14.943123px;}
.ws7b{word-spacing:14.943242px;}
.ws8e{word-spacing:14.943482px;}
.ws132{word-spacing:14.943601px;}
.ws9f{word-spacing:14.943900px;}
.wsb4{word-spacing:14.944020px;}
.ws7c{word-spacing:14.944139px;}
.ws162{word-spacing:14.944199px;}
.ws2f{word-spacing:14.944378px;}
.ws160{word-spacing:14.944498px;}
.ws15f{word-spacing:14.944558px;}
.ws53{word-spacing:14.944916px;}
.ws5c{word-spacing:15.002540px;}
.ws18f{word-spacing:15.002719px;}
.ws166{word-spacing:15.002839px;}
.ws90{word-spacing:15.002899px;}
.ws15e{word-spacing:15.002958px;}
.wscf{word-spacing:15.003138px;}
.ws50{word-spacing:15.003257px;}
.ws35{word-spacing:15.003317px;}
.ws58{word-spacing:15.003436px;}
.ws56{word-spacing:15.003496px;}
.wsd0{word-spacing:15.003676px;}
.ws101{word-spacing:15.003915px;}
.wscb{word-spacing:15.003974px;}
.wsb3{word-spacing:15.004034px;}
.ws64{word-spacing:15.004094px;}
.ws99{word-spacing:15.004214px;}
.ws6d{word-spacing:15.004393px;}
.wsd1{word-spacing:15.004512px;}
.ws161{word-spacing:15.004811px;}
.ws86{word-spacing:15.062256px;}
.ws41{word-spacing:15.062315px;}
.wsad{word-spacing:15.062495px;}
.wsf9{word-spacing:15.062614px;}
.wsa6{word-spacing:15.062794px;}
.ws71{word-spacing:15.062853px;}
.wsf5{word-spacing:15.063332px;}
.ws181{word-spacing:15.063451px;}
.wse5{word-spacing:15.063631px;}
.wsb6{word-spacing:15.063750px;}
.wsc7{word-spacing:15.063810px;}
.ws190{word-spacing:15.063929px;}
.ws9a{word-spacing:15.064049px;}
.wsa0{word-spacing:15.064288px;}
.wsf4{word-spacing:15.064587px;}
.ws18d{word-spacing:15.122211px;}
.wsb9{word-spacing:15.122270px;}
.wsa7{word-spacing:15.122390px;}
.ws112{word-spacing:15.122450px;}
.wsd8{word-spacing:15.122689px;}
.ws10a{word-spacing:15.123167px;}
.wsff{word-spacing:15.123227px;}
.ws1a{word-spacing:15.123346px;}
.ws100{word-spacing:15.123645px;}
.ws8b{word-spacing:15.124004px;}
.ws87{word-spacing:15.124243px;}
.wsd3{word-spacing:15.124363px;}
.wsba{word-spacing:15.181986px;}
.ws4b{word-spacing:15.182046px;}
.ws10c{word-spacing:15.182166px;}
.ws51{word-spacing:15.182345px;}
.wsc8{word-spacing:15.182584px;}
.wsda{word-spacing:15.182644px;}
.wsc9{word-spacing:15.182883px;}
.ws29{word-spacing:15.182943px;}
.ws3e{word-spacing:15.183242px;}
.ws10d{word-spacing:15.183540px;}
.ws113{word-spacing:15.183779px;}
.ws122{word-spacing:15.184078px;}
.ws4c{word-spacing:15.184138px;}
.ws1c{word-spacing:15.241702px;}
.ws42{word-spacing:15.242658px;}
.ws6a{word-spacing:15.242778px;}
.wse4{word-spacing:15.242957px;}
.wsb7{word-spacing:15.243555px;}
.ws63{word-spacing:15.243974px;}
.ws1e1{word-spacing:15.277939px;}
.wsca{word-spacing:15.302673px;}
.ws140{word-spacing:15.303570px;}
.ws46{word-spacing:15.421029px;}
.ws13b{word-spacing:15.422165px;}
.ws10e{word-spacing:15.423061px;}
.ws1ac{word-spacing:15.439926px;}
.wse9{word-spacing:15.542553px;}
.ws136{word-spacing:15.573186px;}
.ws75{word-spacing:15.600834px;}
.ws16d{word-spacing:15.601432px;}
.ws18{word-spacing:15.661865px;}
.ws7d{word-spacing:15.720325px;}
.wsbe{word-spacing:15.721043px;}
.wsc0{word-spacing:15.721162px;}
.wsbf{word-spacing:15.721461px;}
.ws172{word-spacing:15.763146px;}
.ws109{word-spacing:15.779802px;}
.ws2c{word-spacing:15.780639px;}
.ws173{word-spacing:15.817644px;}
.ws57{word-spacing:15.841251px;}
.ws104{word-spacing:15.900728px;}
.ws1a5{word-spacing:15.924057px;}
.ws55{word-spacing:15.959846px;}
.ws174{word-spacing:15.978932px;}
.ws175{word-spacing:16.032784px;}
.ws9b{word-spacing:16.079935px;}
.ws85{word-spacing:16.139113px;}
.ws20{word-spacing:16.318320px;}
.ws45{word-spacing:16.319217px;}
.ws6b{word-spacing:16.378933px;}
.ws5b{word-spacing:16.437513px;}
.ws123{word-spacing:16.438649px;}
.ws19{word-spacing:16.497109px;}
.ws18b{word-spacing:16.497707px;}
.ws23{word-spacing:16.498125px;}
.ws5d{word-spacing:16.556705px;}
.ws139{word-spacing:16.557082px;}
.ws72{word-spacing:16.557303px;}
.ws1ab{word-spacing:16.568670px;}
.ws1ca{word-spacing:16.613506px;}
.ws11b{word-spacing:16.617019px;}
.ws13a{word-spacing:16.617916px;}
.ws1d7{word-spacing:16.619662px;}
.ws1c1{word-spacing:16.620602px;}
.ws1e0{word-spacing:16.620790px;}
.ws1e2{word-spacing:16.623116px;}
.ws1d9{word-spacing:16.623275px;}
.ws1ed{word-spacing:16.677289px;}
.ws65{word-spacing:16.677392px;}
.ws167{word-spacing:16.677632px;}
.ws4e{word-spacing:16.736212px;}
.ws152{word-spacing:16.736510px;}
.ws188{word-spacing:16.737407px;}
.wsdf{word-spacing:16.738244px;}
.ws164{word-spacing:16.797123px;}
.ws1b7{word-spacing:16.819663px;}
.ws1fc{word-spacing:16.838146px;}
.ws191{word-spacing:16.839491px;}
.ws8f{word-spacing:16.857735px;}
.ws192{word-spacing:16.893020px;}
.ws1fb{word-spacing:16.893774px;}
.ws4a{word-spacing:16.915777px;}
.wsea{word-spacing:16.975613px;}
.ws26{word-spacing:16.975792px;}
.wscd{word-spacing:17.036046px;}
.ws120{word-spacing:17.094865px;}
.ws121{word-spacing:17.095104px;}
.ws11f{word-spacing:17.098164px;}
.wsbd{word-spacing:17.154701px;}
.wsc2{word-spacing:17.155597px;}
.wse0{word-spacing:17.214476px;}
.ws16b{word-spacing:17.249183px;}
.ws16a{word-spacing:17.273346px;}
.ws133{word-spacing:17.275089px;}
.ws180{word-spacing:17.334804px;}
.ws1b9{word-spacing:17.376668px;}
.ws34{word-spacing:17.394102px;}
.ws33{word-spacing:17.454296px;}
.wsaf{word-spacing:17.513474px;}
.ws154{word-spacing:17.574385px;}
.ws1b{word-spacing:17.634938px;}
.wsf2{word-spacing:17.692980px;}
.ws1f2{word-spacing:17.698651px;}
.wsa1{word-spacing:17.752995px;}
.ws73{word-spacing:17.754429px;}
.ws110{word-spacing:17.861643px;}
.ws61{word-spacing:17.861786px;}
.ws151{word-spacing:17.872187px;}
.ws2d{word-spacing:17.872486px;}
.wseb{word-spacing:17.873383px;}
.wsd7{word-spacing:17.931963px;}
.wsd6{word-spacing:17.991559px;}
.wse8{word-spacing:17.992695px;}
.ws1da{word-spacing:18.023379px;}
.wse3{word-spacing:18.051454px;}
.wsce{word-spacing:18.231558px;}
.ws1d{word-spacing:18.291274px;}
.ws17f{word-spacing:18.469883px;}
.wscc{word-spacing:18.469943px;}
.ws17a{word-spacing:18.470780px;}
.ws197{word-spacing:18.505466px;}
.ws179{word-spacing:18.589494px;}
.ws93{word-spacing:18.589972px;}
.ws79{word-spacing:18.590212px;}
.ws157{word-spacing:18.635718px;}
.ws17b{word-spacing:18.635746px;}
.ws96{word-spacing:18.769538px;}
.ws138{word-spacing:19.128551px;}
.ws185{word-spacing:19.187669px;}
.ws69{word-spacing:19.189163px;}
.wsde{word-spacing:19.248879px;}
.ws1dc{word-spacing:19.260903px;}
.wsc6{word-spacing:19.366936px;}
.ws95{word-spacing:19.485829px;}
.ws9e{word-spacing:19.486009px;}
.ws4d{word-spacing:19.486427px;}
.ws7e{word-spacing:19.486726px;}
.ws83{word-spacing:19.487862px;}
.ws14a{word-spacing:19.529142px;}
.ws148{word-spacing:19.529250px;}
.ws149{word-spacing:19.529465px;}
.wsb2{word-spacing:19.605620px;}
.ws134{word-spacing:19.836186px;}
.ws13e{word-spacing:19.844603px;}
.ws94{word-spacing:19.904318px;}
.wsee{word-spacing:19.905155px;}
.ws1c9{word-spacing:19.905677px;}
.ws184{word-spacing:20.023929px;}
.ws182{word-spacing:20.024647px;}
.ws1e3{word-spacing:20.335365px;}
.wsfe{word-spacing:20.504047px;}
.ws169{word-spacing:20.802746px;}
.wsb1{word-spacing:20.922536px;}
.ws81{word-spacing:21.100010px;}
.ws12f{word-spacing:21.338933px;}
.ws130{word-spacing:21.339889px;}
.ws6f{word-spacing:21.519096px;}
.ws18c{word-spacing:21.697586px;}
.ws2e{word-spacing:21.877571px;}
.wsae{word-spacing:21.878408px;}
.ws22{word-spacing:21.917599px;}
.ws153{word-spacing:21.996763px;}
.wsb5{word-spacing:22.056778px;}
.ws25{word-spacing:22.165802px;}
.ws7a{word-spacing:22.236882px;}
.wsa9{word-spacing:22.355178px;}
.ws77{word-spacing:22.474968px;}
.ws76{word-spacing:22.834997px;}
.wsb8{word-spacing:23.012650px;}
.ws9c{word-spacing:23.251632px;}
.ws11{word-spacing:26.790527px;}
.ws12{word-spacing:26.791388px;}
.ws196{word-spacing:27.063024px;}
.ws1db{word-spacing:30.988524px;}
.ws7{word-spacing:32.597198px;}
.ws15d{word-spacing:179.385978px;}
.ws137{word-spacing:644.620070px;}
.ws15a{word-spacing:653.825513px;}
.ws15b{word-spacing:668.769413px;}
.ws158{word-spacing:683.892640px;}
.ws14c{word-spacing:893.460000px;}
.ws14e{word-spacing:893.802000px;}
.ws14d{word-spacing:894.828000px;}
.ws14f{word-spacing:898.932000px;}
.ws186{word-spacing:1439.232000px;}
._0{margin-left:-770.580000px;}
._13{margin-left:-7.343343px;}
._7{margin-left:-6.167963px;}
._19{margin-left:-4.926632px;}
._4{margin-left:-3.848985px;}
._8{margin-left:-2.631372px;}
._1{margin-left:-1.006725px;}
._21{width:1.074903px;}
._25{width:2.392381px;}
._2{width:3.870001px;}
._22{width:4.900525px;}
._3{width:10.878793px;}
._10{width:12.776398px;}
._14{width:14.048931px;}
._18{width:16.055022px;}
._c{width:17.716638px;}
._b{width:19.064503px;}
._1b{width:20.074589px;}
._9{width:21.339351px;}
._16{width:22.656871px;}
._f{width:23.789493px;}
._d{width:25.588926px;}
._a{width:27.188312px;}
._1f{width:29.581817px;}
._1a{width:30.843552px;}
._15{width:31.966254px;}
._23{width:33.121301px;}
._1d{width:34.320539px;}
._20{width:35.741146px;}
._1e{width:37.114060px;}
._e{width:39.909059px;}
._17{width:41.009523px;}
._1c{width:44.114213px;}
._5{width:54.428794px;}
._3a{width:61.869236px;}
._36{width:71.712729px;}
._35{width:73.488076px;}
._6{width:84.317762px;}
._38{width:95.706816px;}
._26{width:101.380015px;}
._39{width:109.317811px;}
._34{width:115.504627px;}
._33{width:134.280268px;}
._37{width:140.413286px;}
._32{width:142.188633px;}
._2e{width:160.559960px;}
._28{width:197.556574px;}
._27{width:212.500773px;}
._29{width:493.568922px;}
._30{width:681.142962px;}
._2c{width:690.886385px;}
._31{width:696.086862px;}
._2f{width:705.830285px;}
._2d{width:711.030762px;}
._2a{width:720.774185px;}
._2b{width:725.974662px;}
._11{width:1940.198751px;}
._24{width:2533.412991px;}
._12{width:2557.322991px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:29.887800px;}
.fs13{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fsb{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs12{font-size:51.300000px;}
.fsd{font-size:53.798400px;}
.fs10{font-size:54.108000px;}
.fs11{font-size:57.114000px;}
.fs2{font-size:58.500000px;}
.fs6{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:83.686200px;}
.fs3{font-size:90.000000px;}
.fs7{font-size:107.596800px;}
.fs1{font-size:166.500000px;}
.y0{bottom:0.000000px;}
.y108{bottom:6.772500px;}
.y13f{bottom:8.536500px;}
.y113{bottom:9.101550px;}
.yee{bottom:9.677355px;}
.y112{bottom:26.543100px;}
.yec{bottom:34.066350px;}
.yed{bottom:43.337055px;}
.y49{bottom:45.921150px;}
.yd{bottom:58.125000px;}
.y164{bottom:99.720150px;}
.y20{bottom:100.259700px;}
.y105{bottom:101.581650px;}
.yd0{bottom:102.622200px;}
.y116{bottom:103.795350px;}
.yd1{bottom:108.046350px;}
.yb{bottom:112.500000px;}
.yb4{bottom:113.807700px;}
.y7b{bottom:114.881850px;}
.y8d{bottom:116.407650px;}
.y1f{bottom:118.147200px;}
.y163{bottom:120.610500px;}
.y48{bottom:121.716150px;}
.y104{bottom:122.473200px;}
.y115{bottom:123.028650px;}
.ycf{bottom:123.513300px;}
.y1dc{bottom:125.111700px;}
.y192{bottom:131.215500px;}
.ya{bottom:131.625000px;}
.yb3{bottom:134.698200px;}
.y7a{bottom:135.774000px;}
.y1e{bottom:136.034700px;}
.y9d{bottom:137.298000px;}
.y8c{bottom:137.298900px;}
.y13d{bottom:139.752000px;}
.y162{bottom:141.502800px;}
.y114{bottom:142.261500px;}
.y47{bottom:142.606650px;}
.y103{bottom:143.365500px;}
.y1db{bottom:144.262500px;}
.yce{bottom:144.404850px;}
.y191{bottom:150.366000px;}
.y1d{bottom:153.922200px;}
.y111{bottom:154.109250px;}
.y2{bottom:154.125000px;}
.yb2{bottom:155.590500px;}
.y79{bottom:156.666000px;}
.y9c{bottom:158.190000px;}
.y8b{bottom:158.190450px;}
.y9{bottom:158.625000px;}
.y13c{bottom:160.644000px;}
.y161{bottom:162.394500px;}
.y1da{bottom:163.413000px;}
.y1d9{bottom:163.413300px;}
.y46{bottom:163.498500px;}
.y102{bottom:164.256000px;}
.ycd{bottom:165.297000px;}
.y10f{bottom:167.679000px;}
.y18f{bottom:169.516200px;}
.y190{bottom:169.516500px;}
.y110{bottom:171.637500px;}
.y1c{bottom:171.811500px;}
.yb1{bottom:176.482500px;}
.y78{bottom:177.556950px;}
.y8a{bottom:179.082000px;}
.y8{bottom:180.000000px;}
.y13b{bottom:181.534500px;}
.y1d8{bottom:182.563500px;}
.y160{bottom:183.285000px;}
.y45{bottom:184.390500px;}
.y9b{bottom:184.506000px;}
.y101{bottom:185.148000px;}
.ycc{bottom:186.189000px;}
.y18e{bottom:188.667000px;}
.y1b{bottom:189.699000px;}
.yb0{bottom:197.373000px;}
.y77{bottom:198.448500px;}
.y89{bottom:199.972500px;}
.y1d7{bottom:201.714000px;}
.y1d6{bottom:201.714300px;}
.y3{bottom:202.125000px;}
.y13a{bottom:202.426500px;}
.y15f{bottom:204.177000px;}
.y44{bottom:205.281000px;}
.y100{bottom:206.040000px;}
.ycb{bottom:207.079500px;}
.y1a{bottom:207.586500px;}
.y18c{bottom:207.817200px;}
.y18d{bottom:207.817500px;}
.yeb{bottom:214.247850px;}
.yaf{bottom:218.265000px;}
.y76{bottom:219.340500px;}
.y88{bottom:220.864500px;}
.y139{bottom:223.318500px;}
.y15e{bottom:225.069450px;}
.y107{bottom:225.472500px;}
.y19{bottom:225.475800px;}
.y43{bottom:226.173000px;}
.yff{bottom:226.930950px;}
.y18b{bottom:226.968000px;}
.yca{bottom:227.971500px;}
.yae{bottom:239.157000px;}
.y1d5{bottom:240.015000px;}
.y75{bottom:240.232500px;}
.y87{bottom:241.756500px;}
.y138{bottom:244.209000px;}
.y15d{bottom:245.961000px;}
.y18a{bottom:246.118500px;}
.y189{bottom:246.119850px;}
.y42{bottom:247.065000px;}
.yea{bottom:247.097850px;}
.yfe{bottom:247.822350px;}
.yc9{bottom:248.863500px;}
.y18{bottom:252.329850px;}
.y7{bottom:254.250000px;}
.y1d3{bottom:259.165200px;}
.y1d4{bottom:259.165500px;}
.yad{bottom:260.047350px;}
.y74{bottom:261.123000px;}
.y99{bottom:262.646850px;}
.y86{bottom:262.647000px;}
.y137{bottom:265.101000px;}
.y15c{bottom:266.851500px;}
.y41{bottom:267.955500px;}
.y9a{bottom:268.072500px;}
.yfd{bottom:268.714500px;}
.yc8{bottom:269.754000px;}
.y188{bottom:269.754300px;}
.y17{bottom:270.217350px;}
.y1d2{bottom:278.316000px;}
.yac{bottom:280.939500px;}
.y73{bottom:282.015000px;}
.y98{bottom:283.538850px;}
.y85{bottom:283.539000px;}
.y136{bottom:285.993000px;}
.y15b{bottom:287.743500px;}
.y16{bottom:288.104850px;}
.y40{bottom:288.847500px;}
.yc7{bottom:290.646000px;}
.y1d0{bottom:297.466200px;}
.y1d1{bottom:297.466500px;}
.yf9{bottom:300.926940px;}
.yfb{bottom:300.926955px;}
.yab{bottom:301.831500px;}
.y72{bottom:302.907000px;}
.y84{bottom:304.431000px;}
.y15{bottom:305.994150px;}
.y135{bottom:306.883800px;}
.y15a{bottom:308.635500px;}
.y187{bottom:309.654300px;}
.y3f{bottom:309.739350px;}
.yc6{bottom:311.538000px;}
.y1cf{bottom:316.617000px;}
.yfa{bottom:317.102940px;}
.yfc{bottom:317.102955px;}
.yf8{bottom:317.103000px;}
.yaa{bottom:322.722000px;}
.y71{bottom:323.797500px;}
.y14{bottom:323.881650px;}
.y83{bottom:325.323000px;}
.y134{bottom:327.775950px;}
.y186{bottom:329.152500px;}
.y3e{bottom:330.629850px;}
.yc5{bottom:332.428950px;}
.ye8{bottom:333.226650px;}
.y1cd{bottom:335.767200px;}
.y1ce{bottom:335.767500px;}
.y13{bottom:341.769150px;}
.ya9{bottom:343.614450px;}
.ye5{bottom:344.689500px;}
.y82{bottom:346.213500px;}
.y185{bottom:348.652500px;}
.y133{bottom:348.667500px;}
.y70{bottom:349.173300px;}
.y6{bottom:349.875000px;}
.y3d{bottom:351.522000px;}
.yc4{bottom:353.320500px;}
.y1cc{bottom:354.918000px;}
.y159{bottom:356.274000px;}
.ya8{bottom:364.506000px;}
.ye4{bottom:365.581500px;}
.y12{bottom:365.635500px;}
.yf7{bottom:366.364500px;}
.y81{bottom:367.105500px;}
.y184{bottom:368.150700px;}
.y132{bottom:369.558000px;}
.y3c{bottom:372.414000px;}
.y1cb{bottom:374.070000px;}
.y1ca{bottom:374.070300px;}
.yc3{bottom:374.212500px;}
.y158{bottom:381.409500px;}
.y11{bottom:383.523000px;}
.ya7{bottom:385.398000px;}
.ye3{bottom:386.472000px;}
.yf6{bottom:387.256500px;}
.y183{bottom:387.648900px;}
.y6f{bottom:387.997500px;}
.y131{bottom:390.449850px;}
.y1c9{bottom:393.220500px;}
.y3b{bottom:393.306000px;}
.yc2{bottom:395.102850px;}
.y5{bottom:396.000000px;}
.y10{bottom:401.410500px;}
.ya6{bottom:406.288500px;}
.y157{bottom:406.545000px;}
.y182{bottom:407.147100px;}
.ye2{bottom:407.364450px;}
.yf5{bottom:408.148500px;}
.y6e{bottom:408.888000px;}
.y130{bottom:411.342000px;}
.y1c8{bottom:412.371000px;}
.y1c7{bottom:412.371300px;}
.y3a{bottom:414.196500px;}
.yc0{bottom:415.995000px;}
.ye9{bottom:418.816350px;}
.yf{bottom:419.299800px;}
.yc1{bottom:421.420500px;}
.y181{bottom:426.645300px;}
.ye1{bottom:428.256000px;}
.yf4{bottom:429.039450px;}
.y97{bottom:429.779700px;}
.y6d{bottom:429.780000px;}
.y1c6{bottom:431.521200px;}
.y156{bottom:431.679000px;}
.y12f{bottom:432.234000px;}
.y39{bottom:435.088500px;}
.ybf{bottom:436.887000px;}
.ya5{bottom:441.916500px;}
.y4{bottom:442.125000px;}
.ye{bottom:443.164500px;}
.y180{bottom:446.143500px;}
.ye0{bottom:449.146500px;}
.yf3{bottom:449.931000px;}
.y96{bottom:450.671850px;}
.y6c{bottom:450.672000px;}
.ye7{bottom:452.568000px;}
.y12e{bottom:453.124500px;}
.y38{bottom:455.980500px;}
.y155{bottom:456.814500px;}
.ybe{bottom:457.779000px;}
.y1c4{bottom:469.822200px;}
.y1c5{bottom:469.822500px;}
.ydf{bottom:470.038500px;}
.y95{bottom:471.562350px;}
.y6b{bottom:471.562500px;}
.y12d{bottom:474.016500px;}
.yf2{bottom:475.305000px;}
.ybd{bottom:478.669500px;}
.y17f{bottom:480.786450px;}
.y37{bottom:481.354500px;}
.y10e{bottom:487.552500px;}
.y1c3{bottom:488.973000px;}
.y154{bottom:489.479850px;}
.yde{bottom:490.930500px;}
.y6a{bottom:492.454500px;}
.y12c{bottom:494.908500px;}
.ybc{bottom:499.561500px;}
.y17e{bottom:504.768300px;}
.y1c1{bottom:508.123200px;}
.y1c2{bottom:508.123500px;}
.y10d{bottom:508.443000px;}
.yc{bottom:509.625000px;}
.yf1{bottom:510.933000px;}
.ydd{bottom:511.822500px;}
.y69{bottom:513.346500px;}
.y12b{bottom:515.799000px;}
.ybb{bottom:520.453500px;}
.y153{bottom:526.251000px;}
.y1c0{bottom:527.274000px;}
.yf0{bottom:527.544000px;}
.y10c{bottom:529.335000px;}
.yef{bottom:530.166000px;}
.ydc{bottom:532.713000px;}
.y68{bottom:534.237000px;}
.y12a{bottom:536.691450px;}
.yba{bottom:541.344000px;}
.y17d{bottom:543.592500px;}
.y1be{bottom:546.423900px;}
.y1bf{bottom:546.424500px;}
.y10b{bottom:550.227000px;}
.ye6{bottom:552.595500px;}
.ydb{bottom:553.605000px;}
.y129{bottom:554.853000px;}
.y67{bottom:555.128850px;}
.y80{bottom:555.129000px;}
.y94{bottom:555.129450px;}
.y128{bottom:557.583000px;}
.y151{bottom:559.107000px;}
.y36{bottom:560.566500px;}
.yb9{bottom:562.236000px;}
.y1bd{bottom:565.574700px;}
.y14e{bottom:569.215500px;}
.y17c{bottom:572.058000px;}
.y150{bottom:572.842500px;}
.yda{bottom:574.497000px;}
.y66{bottom:576.021000px;}
.y127{bottom:578.473500px;}
.y14f{bottom:579.466470px;}
.y152{bottom:579.466500px;}
.y14d{bottom:579.466650px;}
.y35{bottom:581.458500px;}
.yb8{bottom:583.128000px;}
.y1bc{bottom:584.725500px;}
.y10a{bottom:585.855000px;}
.y17b{bottom:591.556500px;}
.yd9{bottom:595.387500px;}
.y65{bottom:596.913000px;}
.y1ba{bottom:603.875700px;}
.y1bb{bottom:603.876000px;}
.y109{bottom:605.086500px;}
.yd8{bottom:616.279500px;}
.y64{bottom:617.803500px;}
.y93{bottom:617.803950px;}
.yb7{bottom:618.756000px;}
.y17a{bottom:620.022000px;}
.y34{bottom:620.281500px;}
.y1b9{bottom:623.026500px;}
.y14c{bottom:623.296500px;}
.y106{bottom:627.516000px;}
.y126{bottom:629.434350px;}
.yd7{bottom:637.171500px;}
.y63{bottom:638.695500px;}
.y179{bottom:639.520500px;}
.y33{bottom:641.173350px;}
.y1b7{bottom:642.176700px;}
.y1b8{bottom:642.177000px;}
.y125{bottom:647.368200px;}
.yd6{bottom:658.062000px;}
.y178{bottom:659.019000px;}
.y62{bottom:659.587500px;}
.y1b6{bottom:661.327500px;}
.y32{bottom:662.065500px;}
.y124{bottom:665.300850px;}
.y14b{bottom:670.936500px;}
.yd5{bottom:678.954000px;}
.y1b5{bottom:680.477700px;}
.y61{bottom:680.478000px;}
.y31{bottom:682.957500px;}
.y123{bottom:683.233500px;}
.y177{bottom:687.484500px;}
.y14a{bottom:696.072000px;}
.y1b4{bottom:699.628500px;}
.yd4{bottom:699.846000px;}
.y60{bottom:701.370000px;}
.y30{bottom:703.848000px;}
.y92{bottom:706.794000px;}
.y176{bottom:706.982700px;}
.y122{bottom:708.369000px;}
.y1b3{bottom:716.157000px;}
.y1b1{bottom:718.778700px;}
.y1b2{bottom:718.779000px;}
.y149{bottom:721.206000px;}
.y5f{bottom:722.262000px;}
.y2f{bottom:724.740000px;}
.yd3{bottom:725.220300px;}
.y175{bottom:726.481500px;}
.y91{bottom:727.686000px;}
.y121{bottom:733.503000px;}
.y1b0{bottom:737.929500px;}
.y5e{bottom:743.152500px;}
.y2e{bottom:745.632000px;}
.y174{bottom:745.980000px;}
.y148{bottom:746.341500px;}
.y1af{bottom:757.081500px;}
.y1ae{bottom:757.081800px;}
.y5d{bottom:764.044350px;}
.y7f{bottom:764.044500px;}
.y2d{bottom:766.522500px;}
.y147{bottom:769.002000px;}
.y120{bottom:769.158000px;}
.y146{bottom:771.477000px;}
.y1ad{bottom:776.232000px;}
.y173{bottom:783.411000px;}
.y5c{bottom:784.936500px;}
.y2c{bottom:787.414350px;}
.y1ac{bottom:795.382500px;}
.y1ab{bottom:795.382800px;}
.y145{bottom:801.519000px;}
.y144{bottom:804.142500px;}
.y172{bottom:804.303000px;}
.y5b{bottom:805.827000px;}
.y2b{bottom:808.306500px;}
.y1aa{bottom:814.533000px;}
.y11f{bottom:817.174050px;}
.y171{bottom:825.195000px;}
.y5a{bottom:826.719000px;}
.yd2{bottom:826.719450px;}
.y2a{bottom:829.197000px;}
.y143{bottom:833.502000px;}
.y1a8{bottom:833.683200px;}
.y1a9{bottom:833.683500px;}
.y11e{bottom:835.106700px;}
.y170{bottom:846.087000px;}
.y7e{bottom:847.610850px;}
.y59{bottom:847.611000px;}
.y29{bottom:850.089000px;}
.y142{bottom:852.735000px;}
.y1a7{bottom:852.834000px;}
.y11d{bottom:853.039350px;}
.y16f{bottom:866.977500px;}
.y58{bottom:868.503000px;}
.y11c{bottom:870.972000px;}
.y141{bottom:871.968150px;}
.y1a6{bottom:871.984500px;}
.y28{bottom:879.946350px;}
.y1df{bottom:886.405500px;}
.y16e{bottom:887.869500px;}
.y90{bottom:889.393350px;}
.y57{bottom:889.393500px;}
.y1a4{bottom:891.134700px;}
.y1a5{bottom:891.135000px;}
.y140{bottom:891.201000px;}
.y11b{bottom:896.107500px;}
.y1de{bottom:905.556000px;}
.ya4{bottom:907.555500px;}
.y16d{bottom:908.761500px;}
.y56{bottom:910.285350px;}
.y7d{bottom:910.285500px;}
.y13e{bottom:916.620000px;}
.y27{bottom:919.966500px;}
.y11a{bottom:921.243000px;}
.y1dd{bottom:924.706500px;}
.ya3{bottom:928.447500px;}
.y1a2{bottom:929.435700px;}
.y1a3{bottom:929.436000px;}
.y16c{bottom:929.652000px;}
.y55{bottom:931.177500px;}
.y26{bottom:936.106800px;}
.y1a1{bottom:948.586500px;}
.y16b{bottom:950.544000px;}
.y54{bottom:952.067850px;}
.y8f{bottom:952.068000px;}
.y25{bottom:952.246500px;}
.y119{bottom:956.896791px;}
.y1{bottom:967.125000px;}
.y1a0{bottom:967.737000px;}
.y16a{bottom:971.436000px;}
.y53{bottom:972.960000px;}
.y19e{bottom:986.887200px;}
.y19f{bottom:986.887500px;}
.y169{bottom:992.326500px;}
.y52{bottom:993.852000px;}
.y24{bottom:1001.262000px;}
.y118{bottom:1001.905500px;}
.y19d{bottom:1006.038000px;}
.y117{bottom:1012.157700px;}
.y168{bottom:1013.218500px;}
.y51{bottom:1014.742350px;}
.y7c{bottom:1014.742500px;}
.ya2{bottom:1020.168000px;}
.y19c{bottom:1023.233805px;}
.y19a{bottom:1025.188200px;}
.y19b{bottom:1025.188500px;}
.y167{bottom:1034.110500px;}
.y8e{bottom:1035.634350px;}
.y50{bottom:1035.634500px;}
.y23{bottom:1040.086200px;}
.y199{bottom:1044.339000px;}
.y166{bottom:1055.001000px;}
.y4f{bottom:1056.526500px;}
.y197{bottom:1063.489200px;}
.y198{bottom:1063.489500px;}
.y22{bottom:1071.424500px;}
.ya0{bottom:1077.416700px;}
.y4e{bottom:1077.417000px;}
.yb6{bottom:1077.417450px;}
.y165{bottom:1080.376800px;}
.y196{bottom:1082.640000px;}
.ya1{bottom:1082.842500px;}
.y9f{bottom:1098.308850px;}
.y4d{bottom:1098.309000px;}
.y194{bottom:1101.790200px;}
.y195{bottom:1101.790500px;}
.y21{bottom:1102.761000px;}
.y4c{bottom:1119.201000px;}
.y193{bottom:1120.941000px;}
.yb5{bottom:1124.625000px;}
.y4b{bottom:1140.091500px;}
.y9e{bottom:1145.517000px;}
.y4a{bottom:1200.543000px;}
.h2a{height:21.758318px;}
.h14{height:28.453186px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h16{height:31.526842px;}
.h27{height:32.845601px;}
.h12{height:33.072749px;}
.h1b{height:33.299897px;}
.he{height:34.813397px;}
.h11{height:35.052500px;}
.h22{height:37.447998px;}
.h15{height:39.165235px;}
.h1f{height:39.365684px;}
.h29{height:39.434227px;}
.h21{height:40.018843px;}
.h13{height:41.482876px;}
.h18{height:42.125098px;}
.hd{height:43.217759px;}
.h5{height:43.360840px;}
.hf{height:43.516637px;}
.h1d{height:43.517237px;}
.h19{height:43.739648px;}
.h25{height:43.814315px;}
.hb{height:43.815515px;}
.h7{height:46.696289px;}
.h10{height:51.861658px;}
.h2{height:52.136719px;}
.h1c{height:52.585877px;}
.h6{height:66.708984px;}
.hc{height:77.792486px;}
.h28{height:84.285035px;}
.h23{height:86.703024px;}
.h1a{height:104.637024px;}
.h4{height:123.411621px;}
.h24{height:127.713588px;}
.h26{height:238.417500px;}
.h1{height:295.875000px;}
.h20{height:296.233500px;}
.h1e{height:426.264000px;}
.h3{height:534.375000px;}
.h17{height:602.442000px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w6{width:339.313500px;}
.w5{width:589.873500px;}
.w7{width:712.602000px;}
.w8{width:712.795500px;}
.w1{width:892.125000px;}
.w2{width:892.200000px;}
.w0{width:892.500000px;}
.w3{width:892.920000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:53.574000px;}
.x61{left:80.311470px;}
.x2{left:84.375000px;}
.x72{left:85.848000px;}
.x5a{left:89.945550px;}
.x5c{left:112.487250px;}
.x50{left:127.383120px;}
.x67{left:142.680450px;}
.x60{left:144.741150px;}
.x59{left:162.996000px;}
.x5f{left:213.802500px;}
.x5b{left:239.026950px;}
.x6{left:248.525766px;}
.x5{left:249.591000px;}
.x62{left:262.068000px;}
.x7{left:281.479500px;}
.x4e{left:285.333000px;}
.x1c{left:301.696500px;}
.x29{left:309.474000px;}
.x68{left:310.776000px;}
.x1d{left:317.463000px;}
.x3a{left:318.634500px;}
.x27{left:319.972500px;}
.x63{left:325.077000px;}
.x2a{left:328.576500px;}
.x64{left:332.707500px;}
.x28{left:335.739000px;}
.x6e{left:339.039000px;}
.x2d{left:344.689500px;}
.x35{left:347.859000px;}
.x36{left:354.285000px;}
.x2e{left:361.335000px;}
.x69{left:368.818500px;}
.x47{left:374.110500px;}
.x48{left:380.916000px;}
.x73{left:383.853000px;}
.x74{left:386.449875px;}
.x75{left:390.915000px;}
.x65{left:402.249000px;}
.x1e{left:404.602500px;}
.x20{left:408.642000px;}
.x1f{left:420.370500px;}
.x21{left:424.963500px;}
.x5d{left:436.696500px;}
.x4f{left:445.443000px;}
.x23{left:447.801000px;}
.x6a{left:454.998000px;}
.x66{left:457.452000px;}
.x24{left:463.567500px;}
.x2f{left:467.109000px;}
.x30{left:472.020000px;}
.x57{left:475.534500px;}
.x6f{left:480.528000px;}
.x31{left:487.402500px;}
.x4d{left:491.692500px;}
.xe{left:498.283500px;}
.x45{left:499.339500px;}
.x16{left:507.936000px;}
.x58{left:511.767000px;}
.xf{left:513.226500px;}
.x46{left:514.282500px;}
.x10{left:520.632000px;}
.x17{left:522.880500px;}
.x55{left:526.957275px;}
.x11{left:535.575000px;}
.x5e{left:539.892000px;}
.x70{left:541.744410px;}
.x37{left:552.348000px;}
.x38{left:558.774000px;}
.x71{left:561.774000px;}
.x56{left:566.746080px;}
.x3{left:568.125000px;}
.x76{left:569.551500px;}
.x77{left:571.468095px;}
.x78{left:575.253000px;}
.x32{left:577.663500px;}
.x12{left:579.096000px;}
.x6b{left:581.983500px;}
.x39{left:586.638000px;}
.x18{left:588.876000px;}
.x6c{left:592.017000px;}
.x13{left:594.040500px;}
.x22{left:597.730500px;}
.x14{left:601.579500px;}
.x19{left:603.820500px;}
.x33{left:609.438000px;}
.x51{left:611.256000px;}
.x15{left:616.524000px;}
.x34{left:624.820500px;}
.x49{left:635.569500px;}
.xa{left:640.932000px;}
.xb{left:648.403500px;}
.x4a{left:651.610500px;}
.xc{left:655.756500px;}
.xd{left:663.228000px;}
.x6d{left:667.101000px;}
.x52{left:677.505000px;}
.x53{left:686.847000px;}
.x4b{left:693.517500px;}
.x4c{left:709.560000px;}
.x25{left:722.212500px;}
.x2b{left:734.578500px;}
.x26{left:741.346500px;}
.x79{left:753.220500px;}
.x1{left:754.312500px;}
.x3f{left:758.008500px;}
.x7a{left:762.574500px;}
.x41{left:763.686000px;}
.x40{left:768.549000px;}
.x8{left:773.109000px;}
.x42{left:779.440500px;}
.x9{left:780.582000px;}
.x54{left:790.539000px;}
.x3b{left:799.404000px;}
.x43{left:808.531500px;}
.x3c{left:814.348500px;}
.x3d{left:818.020500px;}
.x1a{left:821.203500px;}
.x2c{left:823.714500px;}
.x44{left:830.694000px;}
.x3e{left:832.963500px;}
.x1b{left:836.970000px;}
@media print{
.v8{vertical-align:-12.756267pt;}
.v1{vertical-align:-10.624000pt;}
.v2{vertical-align:-9.708320pt;}
.v7{vertical-align:-8.800000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:35.969013pt;}
.v4{vertical-align:74.944000pt;}
.v3{vertical-align:90.885333pt;}
.v6{vertical-align:111.397835pt;}
.ls31{letter-spacing:-0.287280pt;}
.ls20{letter-spacing:-0.197728pt;}
.ls2f{letter-spacing:-0.168336pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000064pt;}
.ls19{letter-spacing:0.000387pt;}
.ls2d{letter-spacing:0.000427pt;}
.ls26{letter-spacing:0.000585pt;}
.ls11{letter-spacing:0.000610pt;}
.ls46{letter-spacing:0.000614pt;}
.ls25{letter-spacing:0.000747pt;}
.ls2c{letter-spacing:0.000960pt;}
.ls4f{letter-spacing:0.001007pt;}
.ls40{letter-spacing:0.001120pt;}
.ls15{letter-spacing:0.001331pt;}
.ls16{letter-spacing:0.001591pt;}
.ls10{letter-spacing:0.001707pt;}
.ls24{letter-spacing:0.001754pt;}
.lsd{letter-spacing:0.001774pt;}
.ls8{letter-spacing:0.001867pt;}
.ls2e{letter-spacing:0.002082pt;}
.ls17{letter-spacing:0.002345pt;}
.ls3e{letter-spacing:0.002827pt;}
.ls4b{letter-spacing:0.003360pt;}
.ls3{letter-spacing:0.003733pt;}
.lse{letter-spacing:0.003787pt;}
.ls14{letter-spacing:0.004000pt;}
.lsf{letter-spacing:0.004717pt;}
.ls9{letter-spacing:0.012387pt;}
.ls27{letter-spacing:0.013120pt;}
.ls28{letter-spacing:0.013680pt;}
.lsc{letter-spacing:0.016547pt;}
.lsb{letter-spacing:0.018627pt;}
.ls29{letter-spacing:0.102987pt;}
.ls2b{letter-spacing:0.105067pt;}
.ls21{letter-spacing:0.119659pt;}
.ls22{letter-spacing:0.121739pt;}
.ls13{letter-spacing:0.123253pt;}
.ls2a{letter-spacing:0.124427pt;}
.ls44{letter-spacing:0.401387pt;}
.ls42{letter-spacing:0.502827pt;}
.ls5{letter-spacing:0.515898pt;}
.ls6{letter-spacing:0.517978pt;}
.ls7{letter-spacing:0.520058pt;}
.lsa{letter-spacing:0.522191pt;}
.ls35{letter-spacing:0.663392pt;}
.ls3a{letter-spacing:0.664301pt;}
.ls1f{letter-spacing:0.666522pt;}
.ls34{letter-spacing:0.684508pt;}
.ls38{letter-spacing:1.313884pt;}
.ls1d{letter-spacing:1.331538pt;}
.ls36{letter-spacing:1.346962pt;}
.ls45{letter-spacing:1.813173pt;}
.ls3f{letter-spacing:2.655083pt;}
.ls1e{letter-spacing:3.982103pt;}
.ls1{letter-spacing:7.437013pt;}
.ls39{letter-spacing:7.690950pt;}
.ls4{letter-spacing:10.631547pt;}
.ls51{letter-spacing:11.806400pt;}
.ls4d{letter-spacing:11.924480pt;}
.ls49{letter-spacing:11.953120pt;}
.ls4c{letter-spacing:11.955200pt;}
.ls4a{letter-spacing:11.959360pt;}
.ls4e{letter-spacing:12.054453pt;}
.ls48{letter-spacing:13.234374pt;}
.ls32{letter-spacing:13.283733pt;}
.ls3d{letter-spacing:13.293584pt;}
.ls18{letter-spacing:14.613600pt;}
.ls12{letter-spacing:15.247446pt;}
.ls1b{letter-spacing:15.741778pt;}
.ls3c{letter-spacing:15.936160pt;}
.ls47{letter-spacing:15.938240pt;}
.ls3b{letter-spacing:15.942400pt;}
.ls1a{letter-spacing:16.105522pt;}
.ls33{letter-spacing:16.107655pt;}
.ls50{letter-spacing:17.168587pt;}
.ls2{letter-spacing:25.291390pt;}
.ls37{letter-spacing:33.874807pt;}
.ls1c{letter-spacing:43.635122pt;}
.ls41{letter-spacing:47.318322pt;}
.ls43{letter-spacing:130.682588pt;}
.ls30{letter-spacing:848.848000pt;}
.ws125{word-spacing:-40.133440pt;}
.ws142{word-spacing:-36.120096pt;}
.ws0{word-spacing:-35.584000pt;}
.ws147{word-spacing:-34.245600pt;}
.ws119{word-spacing:-26.566933pt;}
.ws1ce{word-spacing:-23.910400pt;}
.ws1{word-spacing:-22.240000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws1b0{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws12a{word-spacing:-0.047821pt;}
.ws39{word-spacing:-0.042507pt;}
.ws135{word-spacing:-0.040382pt;}
.wsc{word-spacing:-0.037194pt;}
.ws17c{word-spacing:-0.031881pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:7.399790pt;}
.wsf{word-spacing:7.400522pt;}
.ws9{word-spacing:7.400559pt;}
.ws8{word-spacing:7.400745pt;}
.ws6{word-spacing:7.400783pt;}
.ws10{word-spacing:7.400894pt;}
.ws4{word-spacing:7.401415pt;}
.ws5{word-spacing:7.401787pt;}
.wsd{word-spacing:7.401936pt;}
.wsa{word-spacing:9.634194pt;}
.wse{word-spacing:9.636009pt;}
.ws31{word-spacing:10.307439pt;}
.ws78{word-spacing:10.414822pt;}
.wse2{word-spacing:10.573480pt;}
.wse1{word-spacing:10.574277pt;}
.ws38{word-spacing:10.581220pt;}
.ws150{word-spacing:10.583528pt;}
.ws14{word-spacing:10.584293pt;}
.ws3a{word-spacing:10.584888pt;}
.ws15{word-spacing:10.584973pt;}
.ws3b{word-spacing:10.585100pt;}
.ws1a8{word-spacing:10.618848pt;}
.ws176{word-spacing:10.711859pt;}
.ws1d8{word-spacing:10.712194pt;}
.ws1bd{word-spacing:10.903621pt;}
.ws80{word-spacing:10.998870pt;}
.ws67{word-spacing:11.211990pt;}
.wsf8{word-spacing:11.263583pt;}
.ws198{word-spacing:11.284944pt;}
.ws199{word-spacing:11.285374pt;}
.ws16f{word-spacing:11.530368pt;}
.wsf1{word-spacing:11.582598pt;}
.ws8c{word-spacing:11.636264pt;}
.ws91{word-spacing:11.636636pt;}
.ws1a3{word-spacing:11.667223pt;}
.ws126{word-spacing:11.667367pt;}
.ws1df{word-spacing:11.667462pt;}
.ws1a2{word-spacing:11.667701pt;}
.ws128{word-spacing:11.667845pt;}
.ws129{word-spacing:11.668371pt;}
.ws127{word-spacing:11.668897pt;}
.ws1a1{word-spacing:11.679612pt;}
.wsac{word-spacing:11.689291pt;}
.wsaa{word-spacing:11.689344pt;}
.wsab{word-spacing:11.689451pt;}
.ws1e4{word-spacing:11.715474pt;}
.ws1ad{word-spacing:11.715713pt;}
.ws1c0{word-spacing:11.717005pt;}
.ws1e5{word-spacing:11.737050pt;}
.ws10b{word-spacing:11.743328pt;}
.ws1d2{word-spacing:11.763247pt;}
.ws1d3{word-spacing:11.763391pt;}
.ws1d1{word-spacing:11.764395pt;}
.ws1e6{word-spacing:11.764873pt;}
.ws19c{word-spacing:11.810781pt;}
.ws1c5{word-spacing:11.810877pt;}
.ws19b{word-spacing:11.811212pt;}
.ws1e8{word-spacing:11.812168pt;}
.ws1cc{word-spacing:11.812503pt;}
.wsf3{word-spacing:11.849649pt;}
.ws1ea{word-spacing:11.858554pt;}
.ws1aa{word-spacing:11.858698pt;}
.ws1f9{word-spacing:11.859367pt;}
.ws1b8{word-spacing:11.859558pt;}
.ws1f8{word-spacing:11.859750pt;}
.ws1c3{word-spacing:11.860228pt;}
.ws1c4{word-spacing:11.860419pt;}
.ws1bf{word-spacing:11.885982pt;}
.ws1c2{word-spacing:11.902137pt;}
.ws1b5{word-spacing:11.902383pt;}
.ws1cd{word-spacing:11.903049pt;}
.ws1ba{word-spacing:11.903684pt;}
.ws1a6{word-spacing:11.906129pt;}
.ws19a{word-spacing:11.906327pt;}
.ws1a9{word-spacing:11.906375pt;}
.ws19e{word-spacing:11.906423pt;}
.ws12c{word-spacing:11.906471pt;}
.ws1e9{word-spacing:11.906483pt;}
.ws1fa{word-spacing:11.906518pt;}
.ws1a0{word-spacing:11.906614pt;}
.ws1cb{word-spacing:11.906650pt;}
.ws1ee{word-spacing:11.906662pt;}
.ws1dd{word-spacing:11.906710pt;}
.ws17e{word-spacing:11.906758pt;}
.ws1ec{word-spacing:11.906805pt;}
.ws1d0{word-spacing:11.906807pt;}
.ws12d{word-spacing:11.906853pt;}
.ws1cf{word-spacing:11.906949pt;}
.ws12b{word-spacing:11.906997pt;}
.ws1be{word-spacing:11.907092pt;}
.ws12e{word-spacing:11.907140pt;}
.ws19f{word-spacing:11.907236pt;}
.ws159{word-spacing:11.907331pt;}
.ws19d{word-spacing:11.907379pt;}
.wsdc{word-spacing:11.907475pt;}
.ws1c6{word-spacing:11.907523pt;}
.ws1b4{word-spacing:11.907666pt;}
.ws1b6{word-spacing:11.907810pt;}
.ws1de{word-spacing:11.907857pt;}
.ws195{word-spacing:11.908049pt;}
.wsdd{word-spacing:11.908192pt;}
.wsf0{word-spacing:11.908288pt;}
.ws1a4{word-spacing:11.908760pt;}
.ws44{word-spacing:11.954748pt;}
.ws145{word-spacing:11.955200pt;}
.ws52{word-spacing:11.955545pt;}
.ws1d4{word-spacing:12.002064pt;}
.ws144{word-spacing:12.002543pt;}
.ws143{word-spacing:12.002590pt;}
.ws1bb{word-spacing:12.002734pt;}
.ws1d5{word-spacing:12.003021pt;}
.ws1a7{word-spacing:12.003499pt;}
.ws1bc{word-spacing:12.003595pt;}
.ws1f3{word-spacing:12.049981pt;}
.ws1eb{word-spacing:12.050076pt;}
.ws14b{word-spacing:12.050220pt;}
.ws178{word-spacing:12.050316pt;}
.ws1d6{word-spacing:12.050507pt;}
.ws177{word-spacing:12.051033pt;}
.ws1f5{word-spacing:12.051081pt;}
.ws1f4{word-spacing:12.054896pt;}
.ws1f6{word-spacing:12.097706pt;}
.ws1f1{word-spacing:12.097897pt;}
.ws193{word-spacing:12.098232pt;}
.ws1f0{word-spacing:12.098280pt;}
.ws194{word-spacing:12.098471pt;}
.ws1ef{word-spacing:12.098519pt;}
.ws1f7{word-spacing:12.099045pt;}
.ws1af{word-spacing:12.145575pt;}
.ws1ae{word-spacing:12.145862pt;}
.ws1c8{word-spacing:12.145909pt;}
.ws1b3{word-spacing:12.146148pt;}
.ws1b2{word-spacing:12.146531pt;}
.ws1fd{word-spacing:12.146818pt;}
.wsbc{word-spacing:12.166805pt;}
.ws1c7{word-spacing:12.194400pt;}
.ws1b1{word-spacing:12.195069pt;}
.ws106{word-spacing:12.219939pt;}
.ws170{word-spacing:12.326632pt;}
.ws9d{word-spacing:12.433856pt;}
.wsf7{word-spacing:12.485821pt;}
.wsbb{word-spacing:12.487415pt;}
.ws43{word-spacing:12.592726pt;}
.wsa3{word-spacing:12.646976pt;}
.ws48{word-spacing:12.699579pt;}
.wsa2{word-spacing:12.699685pt;}
.ws102{word-spacing:12.751544pt;}
.ws103{word-spacing:12.752978pt;}
.ws11a{word-spacing:12.805581pt;}
.ws1e7{word-spacing:12.816740pt;}
.ws111{word-spacing:12.910786pt;}
.ws68{word-spacing:12.910839pt;}
.ws62{word-spacing:12.910945pt;}
.ws36{word-spacing:12.911370pt;}
.ws11e{word-spacing:12.912433pt;}
.ws18e{word-spacing:12.963601pt;}
.ws108{word-spacing:12.963760pt;}
.ws5e{word-spacing:12.963866pt;}
.ws189{word-spacing:12.963973pt;}
.ws1e{word-spacing:12.964079pt;}
.wsfb{word-spacing:12.964132pt;}
.wsb0{word-spacing:12.964345pt;}
.wsf6{word-spacing:12.965673pt;}
.ws3c{word-spacing:13.016788pt;}
.wsfa{word-spacing:13.017000pt;}
.ws37{word-spacing:13.017053pt;}
.ws18a{word-spacing:13.017266pt;}
.ws7f{word-spacing:13.017425pt;}
.ws10f{word-spacing:13.017585pt;}
.ws107{word-spacing:13.017638pt;}
.ws4f{word-spacing:13.017744pt;}
.wsa5{word-spacing:13.017797pt;}
.wsc4{word-spacing:13.018010pt;}
.ws6e{word-spacing:13.018063pt;}
.ws3f{word-spacing:13.018382pt;}
.ws11c{word-spacing:13.018435pt;}
.ws40{word-spacing:13.018488pt;}
.ws3d{word-spacing:13.018701pt;}
.ws47{word-spacing:13.069869pt;}
.ws5a{word-spacing:13.069922pt;}
.ws27{word-spacing:13.070134pt;}
.ws92{word-spacing:13.070240pt;}
.ws88{word-spacing:13.070400pt;}
.ws5f{word-spacing:13.070666pt;}
.wsc3{word-spacing:13.070931pt;}
.ws82{word-spacing:13.071303pt;}
.ws131{word-spacing:13.071356pt;}
.wsd2{word-spacing:13.071516pt;}
.ws66{word-spacing:13.071569pt;}
.wsef{word-spacing:13.071834pt;}
.ws32{word-spacing:13.071994pt;}
.wse6{word-spacing:13.121576pt;}
.wse7{word-spacing:13.123109pt;}
.ws8d{word-spacing:13.123162pt;}
.ws74{word-spacing:13.123215pt;}
.ws6c{word-spacing:13.123268pt;}
.ws17{word-spacing:13.123374pt;}
.ws117{word-spacing:13.123427pt;}
.wsfd{word-spacing:13.123587pt;}
.ws16e{word-spacing:13.123853pt;}
.ws168{word-spacing:13.124065pt;}
.ws115{word-spacing:13.124437pt;}
.ws163{word-spacing:13.124543pt;}
.ws59{word-spacing:13.124596pt;}
.ws124{word-spacing:13.124703pt;}
.ws187{word-spacing:13.124862pt;}
.ws16{word-spacing:13.135107pt;}
.ws116{word-spacing:13.138659pt;}
.ws89{word-spacing:13.176136pt;}
.ws13f{word-spacing:13.176189pt;}
.ws1f{word-spacing:13.176296pt;}
.ws98{word-spacing:13.176561pt;}
.ws49{word-spacing:13.176614pt;}
.wsd4{word-spacing:13.176774pt;}
.ws16c{word-spacing:13.176827pt;}
.ws13c{word-spacing:13.176933pt;}
.wsd9{word-spacing:13.176986pt;}
.ws141{word-spacing:13.177146pt;}
.wsec{word-spacing:13.177305pt;}
.wsed{word-spacing:13.177518pt;}
.ws183{word-spacing:13.177571pt;}
.ws11d{word-spacing:13.177624pt;}
.wsfc{word-spacing:13.177730pt;}
.wsc5{word-spacing:13.178049pt;}
.wsa8{word-spacing:13.178262pt;}
.ws155{word-spacing:13.229035pt;}
.ws21{word-spacing:13.229270pt;}
.wsc1{word-spacing:13.229376pt;}
.ws24{word-spacing:13.229430pt;}
.ws13{word-spacing:13.229483pt;}
.ws8a{word-spacing:13.229536pt;}
.ws30{word-spacing:13.229695pt;}
.ws146{word-spacing:13.229748pt;}
.ws13d{word-spacing:13.229801pt;}
.ws60{word-spacing:13.229961pt;}
.wsa4{word-spacing:13.230067pt;}
.ws2a{word-spacing:13.230173pt;}
.ws114{word-spacing:13.230227pt;}
.wsdb{word-spacing:13.230333pt;}
.ws118{word-spacing:13.230439pt;}
.ws17d{word-spacing:13.230594pt;}
.ws70{word-spacing:13.230652pt;}
.ws84{word-spacing:13.230705pt;}
.ws171{word-spacing:13.230811pt;}
.ws97{word-spacing:13.230864pt;}
.ws165{word-spacing:13.230970pt;}
.ws28{word-spacing:13.231236pt;}
.ws15c{word-spacing:13.231395pt;}
.ws156{word-spacing:13.233897pt;}
.wsd5{word-spacing:13.282617pt;}
.ws105{word-spacing:13.282670pt;}
.ws54{word-spacing:13.282776pt;}
.ws7b{word-spacing:13.282882pt;}
.ws8e{word-spacing:13.283095pt;}
.ws132{word-spacing:13.283201pt;}
.ws9f{word-spacing:13.283467pt;}
.wsb4{word-spacing:13.283573pt;}
.ws7c{word-spacing:13.283679pt;}
.ws162{word-spacing:13.283732pt;}
.ws2f{word-spacing:13.283892pt;}
.ws160{word-spacing:13.283998pt;}
.ws15f{word-spacing:13.284051pt;}
.ws53{word-spacing:13.284370pt;}
.ws5c{word-spacing:13.335591pt;}
.ws18f{word-spacing:13.335750pt;}
.ws166{word-spacing:13.335857pt;}
.ws90{word-spacing:13.335910pt;}
.ws15e{word-spacing:13.335963pt;}
.wscf{word-spacing:13.336122pt;}
.ws50{word-spacing:13.336229pt;}
.ws35{word-spacing:13.336282pt;}
.ws58{word-spacing:13.336388pt;}
.ws56{word-spacing:13.336441pt;}
.wsd0{word-spacing:13.336601pt;}
.ws101{word-spacing:13.336813pt;}
.wscb{word-spacing:13.336866pt;}
.wsb3{word-spacing:13.336919pt;}
.ws64{word-spacing:13.336972pt;}
.ws99{word-spacing:13.337079pt;}
.ws6d{word-spacing:13.337238pt;}
.wsd1{word-spacing:13.337344pt;}
.ws161{word-spacing:13.337610pt;}
.ws86{word-spacing:13.388672pt;}
.ws41{word-spacing:13.388725pt;}
.wsad{word-spacing:13.388884pt;}
.wsf9{word-spacing:13.388991pt;}
.wsa6{word-spacing:13.389150pt;}
.ws71{word-spacing:13.389203pt;}
.wsf5{word-spacing:13.389628pt;}
.ws181{word-spacing:13.389734pt;}
.wse5{word-spacing:13.389894pt;}
.wsb6{word-spacing:13.390000pt;}
.wsc7{word-spacing:13.390053pt;}
.ws190{word-spacing:13.390159pt;}
.ws9a{word-spacing:13.390266pt;}
.wsa0{word-spacing:13.390478pt;}
.wsf4{word-spacing:13.390744pt;}
.ws18d{word-spacing:13.441965pt;}
.wsb9{word-spacing:13.442018pt;}
.wsa7{word-spacing:13.442124pt;}
.ws112{word-spacing:13.442178pt;}
.wsd8{word-spacing:13.442390pt;}
.ws10a{word-spacing:13.442815pt;}
.wsff{word-spacing:13.442868pt;}
.ws1a{word-spacing:13.442975pt;}
.ws100{word-spacing:13.443240pt;}
.ws8b{word-spacing:13.443559pt;}
.ws87{word-spacing:13.443772pt;}
.wsd3{word-spacing:13.443878pt;}
.wsba{word-spacing:13.495099pt;}
.ws4b{word-spacing:13.495152pt;}
.ws10c{word-spacing:13.495258pt;}
.ws51{word-spacing:13.495418pt;}
.wsc8{word-spacing:13.495630pt;}
.wsda{word-spacing:13.495683pt;}
.wsc9{word-spacing:13.495896pt;}
.ws29{word-spacing:13.495949pt;}
.ws3e{word-spacing:13.496215pt;}
.ws10d{word-spacing:13.496480pt;}
.ws113{word-spacing:13.496693pt;}
.ws122{word-spacing:13.496959pt;}
.ws4c{word-spacing:13.497012pt;}
.ws1c{word-spacing:13.548180pt;}
.ws42{word-spacing:13.549030pt;}
.ws6a{word-spacing:13.549136pt;}
.wse4{word-spacing:13.549295pt;}
.wsb7{word-spacing:13.549827pt;}
.ws63{word-spacing:13.550199pt;}
.ws1e1{word-spacing:13.580390pt;}
.wsca{word-spacing:13.602376pt;}
.ws140{word-spacing:13.603173pt;}
.ws46{word-spacing:13.707581pt;}
.ws13b{word-spacing:13.708591pt;}
.ws10e{word-spacing:13.709388pt;}
.ws1ac{word-spacing:13.724378pt;}
.wse9{word-spacing:13.815602pt;}
.ws136{word-spacing:13.842832pt;}
.ws75{word-spacing:13.867408pt;}
.ws16d{word-spacing:13.867939pt;}
.ws18{word-spacing:13.921658pt;}
.ws7d{word-spacing:13.973622pt;}
.wsbe{word-spacing:13.974260pt;}
.wsc0{word-spacing:13.974366pt;}
.wsbf{word-spacing:13.974632pt;}
.ws172{word-spacing:14.011686pt;}
.ws109{word-spacing:14.026491pt;}
.ws2c{word-spacing:14.027235pt;}
.ws173{word-spacing:14.060128pt;}
.ws57{word-spacing:14.081112pt;}
.ws104{word-spacing:14.133980pt;}
.ws1a5{word-spacing:14.154718pt;}
.ws55{word-spacing:14.186530pt;}
.ws174{word-spacing:14.203495pt;}
.ws175{word-spacing:14.251364pt;}
.ws9b{word-spacing:14.293276pt;}
.ws85{word-spacing:14.345878pt;}
.ws20{word-spacing:14.505174pt;}
.ws45{word-spacing:14.505971pt;}
.ws6b{word-spacing:14.559051pt;}
.ws5b{word-spacing:14.611123pt;}
.ws123{word-spacing:14.612132pt;}
.ws19{word-spacing:14.664097pt;}
.ws18b{word-spacing:14.664628pt;}
.ws23{word-spacing:14.665000pt;}
.ws5d{word-spacing:14.717072pt;}
.ws139{word-spacing:14.717406pt;}
.ws72{word-spacing:14.717603pt;}
.ws1ab{word-spacing:14.727707pt;}
.ws1ca{word-spacing:14.767561pt;}
.ws11b{word-spacing:14.770684pt;}
.ws13a{word-spacing:14.771481pt;}
.ws1d7{word-spacing:14.773033pt;}
.ws1c1{word-spacing:14.773868pt;}
.ws1e0{word-spacing:14.774035pt;}
.ws1e2{word-spacing:14.776103pt;}
.ws1d9{word-spacing:14.776245pt;}
.ws1ed{word-spacing:14.824257pt;}
.ws65{word-spacing:14.824349pt;}
.ws167{word-spacing:14.824561pt;}
.ws4e{word-spacing:14.876633pt;}
.ws152{word-spacing:14.876898pt;}
.ws188{word-spacing:14.877695pt;}
.wsdf{word-spacing:14.878439pt;}
.ws164{word-spacing:14.930776pt;}
.ws1b7{word-spacing:14.950812pt;}
.ws1fc{word-spacing:14.967241pt;}
.ws191{word-spacing:14.968436pt;}
.ws8f{word-spacing:14.984654pt;}
.ws192{word-spacing:15.016018pt;}
.ws1fb{word-spacing:15.016688pt;}
.ws4a{word-spacing:15.036247pt;}
.wsea{word-spacing:15.089434pt;}
.ws26{word-spacing:15.089593pt;}
.wscd{word-spacing:15.143152pt;}
.ws120{word-spacing:15.195436pt;}
.ws121{word-spacing:15.195648pt;}
.ws11f{word-spacing:15.198368pt;}
.wsbd{word-spacing:15.248623pt;}
.wsc2{word-spacing:15.249420pt;}
.wse0{word-spacing:15.301757pt;}
.ws16b{word-spacing:15.332607pt;}
.ws16a{word-spacing:15.354085pt;}
.ws133{word-spacing:15.355634pt;}
.ws180{word-spacing:15.408715pt;}
.ws1b9{word-spacing:15.445927pt;}
.ws34{word-spacing:15.461424pt;}
.ws33{word-spacing:15.514930pt;}
.wsaf{word-spacing:15.567532pt;}
.ws154{word-spacing:15.621676pt;}
.ws1b{word-spacing:15.675500pt;}
.wsf2{word-spacing:15.727093pt;}
.ws1f2{word-spacing:15.732135pt;}
.wsa1{word-spacing:15.780440pt;}
.ws73{word-spacing:15.781715pt;}
.ws110{word-spacing:15.877016pt;}
.ws61{word-spacing:15.877143pt;}
.ws151{word-spacing:15.886389pt;}
.ws2d{word-spacing:15.886654pt;}
.wseb{word-spacing:15.887451pt;}
.wsd7{word-spacing:15.939522pt;}
.wsd6{word-spacing:15.992497pt;}
.wse8{word-spacing:15.993506pt;}
.ws1da{word-spacing:16.020781pt;}
.wse3{word-spacing:16.045737pt;}
.wsce{word-spacing:16.205829pt;}
.ws1d{word-spacing:16.258910pt;}
.ws17f{word-spacing:16.417674pt;}
.wscc{word-spacing:16.417727pt;}
.ws17a{word-spacing:16.418471pt;}
.ws197{word-spacing:16.449303pt;}
.ws179{word-spacing:16.523995pt;}
.ws93{word-spacing:16.524420pt;}
.ws79{word-spacing:16.524633pt;}
.ws157{word-spacing:16.565083pt;}
.ws17b{word-spacing:16.565107pt;}
.ws96{word-spacing:16.684034pt;}
.ws138{word-spacing:17.003156pt;}
.ws185{word-spacing:17.055706pt;}
.ws69{word-spacing:17.057034pt;}
.wsde{word-spacing:17.110115pt;}
.ws1dc{word-spacing:17.120803pt;}
.wsc6{word-spacing:17.215054pt;}
.ws95{word-spacing:17.320737pt;}
.ws9e{word-spacing:17.320897pt;}
.ws4d{word-spacing:17.321269pt;}
.ws7e{word-spacing:17.321534pt;}
.ws83{word-spacing:17.322544pt;}
.ws14a{word-spacing:17.359237pt;}
.ws148{word-spacing:17.359333pt;}
.ws149{word-spacing:17.359524pt;}
.wsb2{word-spacing:17.427218pt;}
.ws134{word-spacing:17.632166pt;}
.ws13e{word-spacing:17.639647pt;}
.ws94{word-spacing:17.692727pt;}
.wsee{word-spacing:17.693471pt;}
.ws1c9{word-spacing:17.693935pt;}
.ws184{word-spacing:17.799048pt;}
.ws182{word-spacing:17.799686pt;}
.ws1e3{word-spacing:18.075880pt;}
.wsfe{word-spacing:18.225820pt;}
.ws169{word-spacing:18.491329pt;}
.wsb1{word-spacing:18.597810pt;}
.ws81{word-spacing:18.755564pt;}
.ws12f{word-spacing:18.967941pt;}
.ws130{word-spacing:18.968790pt;}
.ws6f{word-spacing:19.128086pt;}
.ws18c{word-spacing:19.286743pt;}
.ws2e{word-spacing:19.446730pt;}
.wsae{word-spacing:19.447473pt;}
.ws22{word-spacing:19.482310pt;}
.ws153{word-spacing:19.552678pt;}
.wsb5{word-spacing:19.606025pt;}
.ws25{word-spacing:19.702935pt;}
.ws7a{word-spacing:19.766117pt;}
.wsa9{word-spacing:19.871269pt;}
.ws77{word-spacing:19.977749pt;}
.ws76{word-spacing:20.297775pt;}
.wsb8{word-spacing:20.455689pt;}
.ws9c{word-spacing:20.668118pt;}
.ws11{word-spacing:23.813802pt;}
.ws12{word-spacing:23.814567pt;}
.ws196{word-spacing:24.056021pt;}
.ws1db{word-spacing:27.545355pt;}
.ws7{word-spacing:28.975287pt;}
.ws15d{word-spacing:159.454203pt;}
.ws137{word-spacing:572.995618pt;}
.ws15a{word-spacing:581.178234pt;}
.ws15b{word-spacing:594.461700pt;}
.ws158{word-spacing:607.904569pt;}
.ws14c{word-spacing:794.186667pt;}
.ws14e{word-spacing:794.490667pt;}
.ws14d{word-spacing:795.402667pt;}
.ws14f{word-spacing:799.050667pt;}
.ws186{word-spacing:1279.317333pt;}
._0{margin-left:-684.960000pt;}
._13{margin-left:-6.527416pt;}
._7{margin-left:-5.482634pt;}
._19{margin-left:-4.379228pt;}
._4{margin-left:-3.421320pt;}
._8{margin-left:-2.338997pt;}
._1{margin-left:-0.894867pt;}
._21{width:0.955469pt;}
._25{width:2.126561pt;}
._2{width:3.440001pt;}
._22{width:4.356022pt;}
._3{width:9.670038pt;}
._10{width:11.356798pt;}
._14{width:12.487938pt;}
._18{width:14.271131pt;}
._c{width:15.748122pt;}
._b{width:16.946225pt;}
._1b{width:17.844079pt;}
._9{width:18.968312pt;}
._16{width:20.139441pt;}
._f{width:21.146216pt;}
._d{width:22.745712pt;}
._a{width:24.167389pt;}
._1f{width:26.294948pt;}
._1a{width:27.416491pt;}
._15{width:28.414448pt;}
._23{width:29.441157pt;}
._1d{width:30.507146pt;}
._20{width:31.769908pt;}
._1e{width:32.990276pt;}
._e{width:35.474719pt;}
._17{width:36.452909pt;}
._1c{width:39.212634pt;}
._5{width:48.381150pt;}
._3a{width:54.994876pt;}
._36{width:63.744648pt;}
._35{width:65.322735pt;}
._6{width:74.949122pt;}
._38{width:85.072725pt;}
._26{width:90.115569pt;}
._39{width:97.171387pt;}
._34{width:102.670779pt;}
._33{width:119.360239pt;}
._37{width:124.811810pt;}
._32{width:126.389896pt;}
._2e{width:142.719964pt;}
._28{width:175.605843pt;}
._27{width:188.889576pt;}
._29{width:438.727931pt;}
._30{width:605.460411pt;}
._2c{width:614.121231pt;}
._31{width:618.743877pt;}
._2f{width:627.404698pt;}
._2d{width:632.027344pt;}
._2a{width:640.688164pt;}
._2b{width:645.310811pt;}
._11{width:1724.621112pt;}
._24{width:2251.922658pt;}
._12{width:2273.175992pt;}
.fs14{font-size:26.566933pt;}
.fs13{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fsb{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs12{font-size:45.600000pt;}
.fsd{font-size:47.820800pt;}
.fs10{font-size:48.096000pt;}
.fs11{font-size:50.768000pt;}
.fs2{font-size:52.000000pt;}
.fs6{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:74.387733pt;}
.fs3{font-size:80.000000pt;}
.fs7{font-size:95.641600pt;}
.fs1{font-size:148.000000pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:6.020000pt;}
.y13f{bottom:7.588000pt;}
.y113{bottom:8.090267pt;}
.yee{bottom:8.602093pt;}
.y112{bottom:23.593867pt;}
.yec{bottom:30.281200pt;}
.yed{bottom:38.521827pt;}
.y49{bottom:40.818800pt;}
.yd{bottom:51.666667pt;}
.y164{bottom:88.640133pt;}
.y20{bottom:89.119733pt;}
.y105{bottom:90.294800pt;}
.yd0{bottom:91.219733pt;}
.y116{bottom:92.262533pt;}
.yd1{bottom:96.041200pt;}
.yb{bottom:100.000000pt;}
.yb4{bottom:101.162400pt;}
.y7b{bottom:102.117200pt;}
.y8d{bottom:103.473467pt;}
.y1f{bottom:105.019733pt;}
.y163{bottom:107.209333pt;}
.y48{bottom:108.192133pt;}
.y104{bottom:108.865067pt;}
.y115{bottom:109.358800pt;}
.ycf{bottom:109.789600pt;}
.y1dc{bottom:111.210400pt;}
.y192{bottom:116.636000pt;}
.ya{bottom:117.000000pt;}
.yb3{bottom:119.731733pt;}
.y7a{bottom:120.688000pt;}
.y1e{bottom:120.919733pt;}
.y9d{bottom:122.042667pt;}
.y8c{bottom:122.043467pt;}
.y13d{bottom:124.224000pt;}
.y162{bottom:125.780267pt;}
.y114{bottom:126.454667pt;}
.y47{bottom:126.761467pt;}
.y103{bottom:127.436000pt;}
.y1db{bottom:128.233333pt;}
.yce{bottom:128.359867pt;}
.y191{bottom:133.658667pt;}
.y1d{bottom:136.819733pt;}
.y111{bottom:136.986000pt;}
.y2{bottom:137.000000pt;}
.yb2{bottom:138.302667pt;}
.y79{bottom:139.258667pt;}
.y9c{bottom:140.613333pt;}
.y8b{bottom:140.613733pt;}
.y9{bottom:141.000000pt;}
.y13c{bottom:142.794667pt;}
.y161{bottom:144.350667pt;}
.y1da{bottom:145.256000pt;}
.y1d9{bottom:145.256267pt;}
.y46{bottom:145.332000pt;}
.y102{bottom:146.005333pt;}
.ycd{bottom:146.930667pt;}
.y10f{bottom:149.048000pt;}
.y18f{bottom:150.681067pt;}
.y190{bottom:150.681333pt;}
.y110{bottom:152.566667pt;}
.y1c{bottom:152.721333pt;}
.yb1{bottom:156.873333pt;}
.y78{bottom:157.828400pt;}
.y8a{bottom:159.184000pt;}
.y8{bottom:160.000000pt;}
.y13b{bottom:161.364000pt;}
.y1d8{bottom:162.278667pt;}
.y160{bottom:162.920000pt;}
.y45{bottom:163.902667pt;}
.y9b{bottom:164.005333pt;}
.y101{bottom:164.576000pt;}
.ycc{bottom:165.501333pt;}
.y18e{bottom:167.704000pt;}
.y1b{bottom:168.621333pt;}
.yb0{bottom:175.442667pt;}
.y77{bottom:176.398667pt;}
.y89{bottom:177.753333pt;}
.y1d7{bottom:179.301333pt;}
.y1d6{bottom:179.301600pt;}
.y3{bottom:179.666667pt;}
.y13a{bottom:179.934667pt;}
.y15f{bottom:181.490667pt;}
.y44{bottom:182.472000pt;}
.y100{bottom:183.146667pt;}
.ycb{bottom:184.070667pt;}
.y1a{bottom:184.521333pt;}
.y18c{bottom:184.726400pt;}
.y18d{bottom:184.726667pt;}
.yeb{bottom:190.442533pt;}
.yaf{bottom:194.013333pt;}
.y76{bottom:194.969333pt;}
.y88{bottom:196.324000pt;}
.y139{bottom:198.505333pt;}
.y15e{bottom:200.061733pt;}
.y107{bottom:200.420000pt;}
.y19{bottom:200.422933pt;}
.y43{bottom:201.042667pt;}
.yff{bottom:201.716400pt;}
.y18b{bottom:201.749333pt;}
.yca{bottom:202.641333pt;}
.yae{bottom:212.584000pt;}
.y1d5{bottom:213.346667pt;}
.y75{bottom:213.540000pt;}
.y87{bottom:214.894667pt;}
.y138{bottom:217.074667pt;}
.y15d{bottom:218.632000pt;}
.y18a{bottom:218.772000pt;}
.y189{bottom:218.773200pt;}
.y42{bottom:219.613333pt;}
.yea{bottom:219.642533pt;}
.yfe{bottom:220.286533pt;}
.yc9{bottom:221.212000pt;}
.y18{bottom:224.293200pt;}
.y7{bottom:226.000000pt;}
.y1d3{bottom:230.369067pt;}
.y1d4{bottom:230.369333pt;}
.yad{bottom:231.153200pt;}
.y74{bottom:232.109333pt;}
.y99{bottom:233.463867pt;}
.y86{bottom:233.464000pt;}
.y137{bottom:235.645333pt;}
.y15c{bottom:237.201333pt;}
.y41{bottom:238.182667pt;}
.y9a{bottom:238.286667pt;}
.yfd{bottom:238.857333pt;}
.yc8{bottom:239.781333pt;}
.y188{bottom:239.781600pt;}
.y17{bottom:240.193200pt;}
.y1d2{bottom:247.392000pt;}
.yac{bottom:249.724000pt;}
.y73{bottom:250.680000pt;}
.y98{bottom:252.034533pt;}
.y85{bottom:252.034667pt;}
.y136{bottom:254.216000pt;}
.y15b{bottom:255.772000pt;}
.y16{bottom:256.093200pt;}
.y40{bottom:256.753333pt;}
.yc7{bottom:258.352000pt;}
.y1d0{bottom:264.414400pt;}
.y1d1{bottom:264.414667pt;}
.yf9{bottom:267.490613pt;}
.yfb{bottom:267.490627pt;}
.yab{bottom:268.294667pt;}
.y72{bottom:269.250667pt;}
.y84{bottom:270.605333pt;}
.y15{bottom:271.994800pt;}
.y135{bottom:272.785600pt;}
.y15a{bottom:274.342667pt;}
.y187{bottom:275.248267pt;}
.y3f{bottom:275.323867pt;}
.yc6{bottom:276.922667pt;}
.y1cf{bottom:281.437333pt;}
.yfa{bottom:281.869280pt;}
.yfc{bottom:281.869293pt;}
.yf8{bottom:281.869333pt;}
.yaa{bottom:286.864000pt;}
.y71{bottom:287.820000pt;}
.y14{bottom:287.894800pt;}
.y83{bottom:289.176000pt;}
.y134{bottom:291.356400pt;}
.y186{bottom:292.580000pt;}
.y3e{bottom:293.893200pt;}
.yc5{bottom:295.492400pt;}
.ye8{bottom:296.201467pt;}
.y1cd{bottom:298.459733pt;}
.y1ce{bottom:298.460000pt;}
.y13{bottom:303.794800pt;}
.ya9{bottom:305.435067pt;}
.ye5{bottom:306.390667pt;}
.y82{bottom:307.745333pt;}
.y185{bottom:309.913333pt;}
.y133{bottom:309.926667pt;}
.y70{bottom:310.376267pt;}
.y6{bottom:311.000000pt;}
.y3d{bottom:312.464000pt;}
.yc4{bottom:314.062667pt;}
.y1cc{bottom:315.482667pt;}
.y159{bottom:316.688000pt;}
.ya8{bottom:324.005333pt;}
.ye4{bottom:324.961333pt;}
.y12{bottom:325.009333pt;}
.yf7{bottom:325.657333pt;}
.y81{bottom:326.316000pt;}
.y184{bottom:327.245067pt;}
.y132{bottom:328.496000pt;}
.y3c{bottom:331.034667pt;}
.y1cb{bottom:332.506667pt;}
.y1ca{bottom:332.506933pt;}
.yc3{bottom:332.633333pt;}
.y158{bottom:339.030667pt;}
.y11{bottom:340.909333pt;}
.ya7{bottom:342.576000pt;}
.ye3{bottom:343.530667pt;}
.yf6{bottom:344.228000pt;}
.y183{bottom:344.576800pt;}
.y6f{bottom:344.886667pt;}
.y131{bottom:347.066533pt;}
.y1c9{bottom:349.529333pt;}
.y3b{bottom:349.605333pt;}
.yc2{bottom:351.202533pt;}
.y5{bottom:352.000000pt;}
.y10{bottom:356.809333pt;}
.ya6{bottom:361.145333pt;}
.y157{bottom:361.373333pt;}
.y182{bottom:361.908533pt;}
.ye2{bottom:362.101733pt;}
.yf5{bottom:362.798667pt;}
.y6e{bottom:363.456000pt;}
.y130{bottom:365.637333pt;}
.y1c8{bottom:366.552000pt;}
.y1c7{bottom:366.552267pt;}
.y3a{bottom:368.174667pt;}
.yc0{bottom:369.773333pt;}
.ye9{bottom:372.281200pt;}
.yf{bottom:372.710933pt;}
.yc1{bottom:374.596000pt;}
.y181{bottom:379.240267pt;}
.ye1{bottom:380.672000pt;}
.yf4{bottom:381.368400pt;}
.y97{bottom:382.026400pt;}
.y6d{bottom:382.026667pt;}
.y1c6{bottom:383.574400pt;}
.y156{bottom:383.714667pt;}
.y12f{bottom:384.208000pt;}
.y39{bottom:386.745333pt;}
.ybf{bottom:388.344000pt;}
.ya5{bottom:392.814667pt;}
.y4{bottom:393.000000pt;}
.ye{bottom:393.924000pt;}
.y180{bottom:396.572000pt;}
.ye0{bottom:399.241333pt;}
.yf3{bottom:399.938667pt;}
.y96{bottom:400.597200pt;}
.y6c{bottom:400.597333pt;}
.ye7{bottom:402.282667pt;}
.y12e{bottom:402.777333pt;}
.y38{bottom:405.316000pt;}
.y155{bottom:406.057333pt;}
.ybe{bottom:406.914667pt;}
.y1c4{bottom:417.619733pt;}
.y1c5{bottom:417.620000pt;}
.ydf{bottom:417.812000pt;}
.y95{bottom:419.166533pt;}
.y6b{bottom:419.166667pt;}
.y12d{bottom:421.348000pt;}
.yf2{bottom:422.493333pt;}
.ybd{bottom:425.484000pt;}
.y17f{bottom:427.365733pt;}
.y37{bottom:427.870667pt;}
.y10e{bottom:433.380000pt;}
.y1c3{bottom:434.642667pt;}
.y154{bottom:435.093200pt;}
.yde{bottom:436.382667pt;}
.y6a{bottom:437.737333pt;}
.y12c{bottom:439.918667pt;}
.ybc{bottom:444.054667pt;}
.y17e{bottom:448.682933pt;}
.y1c1{bottom:451.665067pt;}
.y1c2{bottom:451.665333pt;}
.y10d{bottom:451.949333pt;}
.yc{bottom:453.000000pt;}
.yf1{bottom:454.162667pt;}
.ydd{bottom:454.953333pt;}
.y69{bottom:456.308000pt;}
.y12b{bottom:458.488000pt;}
.ybb{bottom:462.625333pt;}
.y153{bottom:467.778667pt;}
.y1c0{bottom:468.688000pt;}
.yf0{bottom:468.928000pt;}
.y10c{bottom:470.520000pt;}
.yef{bottom:471.258667pt;}
.ydc{bottom:473.522667pt;}
.y68{bottom:474.877333pt;}
.y12a{bottom:477.059067pt;}
.yba{bottom:481.194667pt;}
.y17d{bottom:483.193333pt;}
.y1be{bottom:485.710133pt;}
.y1bf{bottom:485.710667pt;}
.y10b{bottom:489.090667pt;}
.ye6{bottom:491.196000pt;}
.ydb{bottom:492.093333pt;}
.y129{bottom:493.202667pt;}
.y67{bottom:493.447867pt;}
.y80{bottom:493.448000pt;}
.y94{bottom:493.448400pt;}
.y128{bottom:495.629333pt;}
.y151{bottom:496.984000pt;}
.y36{bottom:498.281333pt;}
.yb9{bottom:499.765333pt;}
.y1bd{bottom:502.733067pt;}
.y14e{bottom:505.969333pt;}
.y17c{bottom:508.496000pt;}
.y150{bottom:509.193333pt;}
.yda{bottom:510.664000pt;}
.y66{bottom:512.018667pt;}
.y127{bottom:514.198667pt;}
.y14f{bottom:515.081307pt;}
.y152{bottom:515.081333pt;}
.y14d{bottom:515.081467pt;}
.y35{bottom:516.852000pt;}
.yb8{bottom:518.336000pt;}
.y1bc{bottom:519.756000pt;}
.y10a{bottom:520.760000pt;}
.y17b{bottom:525.828000pt;}
.yd9{bottom:529.233333pt;}
.y65{bottom:530.589333pt;}
.y1ba{bottom:536.778400pt;}
.y1bb{bottom:536.778667pt;}
.y109{bottom:537.854667pt;}
.yd8{bottom:547.804000pt;}
.y64{bottom:549.158667pt;}
.y93{bottom:549.159067pt;}
.yb7{bottom:550.005333pt;}
.y17a{bottom:551.130667pt;}
.y34{bottom:551.361333pt;}
.y1b9{bottom:553.801333pt;}
.y14c{bottom:554.041333pt;}
.y106{bottom:557.792000pt;}
.y126{bottom:559.497200pt;}
.yd7{bottom:566.374667pt;}
.y63{bottom:567.729333pt;}
.y179{bottom:568.462667pt;}
.y33{bottom:569.931867pt;}
.y1b7{bottom:570.823733pt;}
.y1b8{bottom:570.824000pt;}
.y125{bottom:575.438400pt;}
.yd6{bottom:584.944000pt;}
.y178{bottom:585.794667pt;}
.y62{bottom:586.300000pt;}
.y1b6{bottom:587.846667pt;}
.y32{bottom:588.502667pt;}
.y124{bottom:591.378533pt;}
.y14b{bottom:596.388000pt;}
.yd5{bottom:603.514667pt;}
.y1b5{bottom:604.869067pt;}
.y61{bottom:604.869333pt;}
.y31{bottom:607.073333pt;}
.y123{bottom:607.318667pt;}
.y177{bottom:611.097333pt;}
.y14a{bottom:618.730667pt;}
.y1b4{bottom:621.892000pt;}
.yd4{bottom:622.085333pt;}
.y60{bottom:623.440000pt;}
.y30{bottom:625.642667pt;}
.y92{bottom:628.261333pt;}
.y176{bottom:628.429067pt;}
.y122{bottom:629.661333pt;}
.y1b3{bottom:636.584000pt;}
.y1b1{bottom:638.914400pt;}
.y1b2{bottom:638.914667pt;}
.y149{bottom:641.072000pt;}
.y5f{bottom:642.010667pt;}
.y2f{bottom:644.213333pt;}
.yd3{bottom:644.640267pt;}
.y175{bottom:645.761333pt;}
.y91{bottom:646.832000pt;}
.y121{bottom:652.002667pt;}
.y1b0{bottom:655.937333pt;}
.y5e{bottom:660.580000pt;}
.y2e{bottom:662.784000pt;}
.y174{bottom:663.093333pt;}
.y148{bottom:663.414667pt;}
.y1af{bottom:672.961333pt;}
.y1ae{bottom:672.961600pt;}
.y5d{bottom:679.150533pt;}
.y7f{bottom:679.150667pt;}
.y2d{bottom:681.353333pt;}
.y147{bottom:683.557333pt;}
.y120{bottom:683.696000pt;}
.y146{bottom:685.757333pt;}
.y1ad{bottom:689.984000pt;}
.y173{bottom:696.365333pt;}
.y5c{bottom:697.721333pt;}
.y2c{bottom:699.923867pt;}
.y1ac{bottom:707.006667pt;}
.y1ab{bottom:707.006933pt;}
.y145{bottom:712.461333pt;}
.y144{bottom:714.793333pt;}
.y172{bottom:714.936000pt;}
.y5b{bottom:716.290667pt;}
.y2b{bottom:718.494667pt;}
.y1aa{bottom:724.029333pt;}
.y11f{bottom:726.376933pt;}
.y171{bottom:733.506667pt;}
.y5a{bottom:734.861333pt;}
.yd2{bottom:734.861733pt;}
.y2a{bottom:737.064000pt;}
.y143{bottom:740.890667pt;}
.y1a8{bottom:741.051733pt;}
.y1a9{bottom:741.052000pt;}
.y11e{bottom:742.317067pt;}
.y170{bottom:752.077333pt;}
.y7e{bottom:753.431867pt;}
.y59{bottom:753.432000pt;}
.y29{bottom:755.634667pt;}
.y142{bottom:757.986667pt;}
.y1a7{bottom:758.074667pt;}
.y11d{bottom:758.257200pt;}
.y16f{bottom:770.646667pt;}
.y58{bottom:772.002667pt;}
.y11c{bottom:774.197333pt;}
.y141{bottom:775.082800pt;}
.y1a6{bottom:775.097333pt;}
.y28{bottom:782.174533pt;}
.y1df{bottom:787.916000pt;}
.y16e{bottom:789.217333pt;}
.y90{bottom:790.571867pt;}
.y57{bottom:790.572000pt;}
.y1a4{bottom:792.119733pt;}
.y1a5{bottom:792.120000pt;}
.y140{bottom:792.178667pt;}
.y11b{bottom:796.540000pt;}
.y1de{bottom:804.938667pt;}
.ya4{bottom:806.716000pt;}
.y16d{bottom:807.788000pt;}
.y56{bottom:809.142533pt;}
.y7d{bottom:809.142667pt;}
.y13e{bottom:814.773333pt;}
.y27{bottom:817.748000pt;}
.y11a{bottom:818.882667pt;}
.y1dd{bottom:821.961333pt;}
.ya3{bottom:825.286667pt;}
.y1a2{bottom:826.165067pt;}
.y1a3{bottom:826.165333pt;}
.y16c{bottom:826.357333pt;}
.y55{bottom:827.713333pt;}
.y26{bottom:832.094933pt;}
.y1a1{bottom:843.188000pt;}
.y16b{bottom:844.928000pt;}
.y54{bottom:846.282533pt;}
.y8f{bottom:846.282667pt;}
.y25{bottom:846.441333pt;}
.y119{bottom:850.574925pt;}
.y1{bottom:859.666667pt;}
.y1a0{bottom:860.210667pt;}
.y16a{bottom:863.498667pt;}
.y53{bottom:864.853333pt;}
.y19e{bottom:877.233067pt;}
.y19f{bottom:877.233333pt;}
.y169{bottom:882.068000pt;}
.y52{bottom:883.424000pt;}
.y24{bottom:890.010667pt;}
.y118{bottom:890.582667pt;}
.y19d{bottom:894.256000pt;}
.y117{bottom:899.695733pt;}
.y168{bottom:900.638667pt;}
.y51{bottom:901.993200pt;}
.y7c{bottom:901.993333pt;}
.ya2{bottom:906.816000pt;}
.y19c{bottom:909.541160pt;}
.y19a{bottom:911.278400pt;}
.y19b{bottom:911.278667pt;}
.y167{bottom:919.209333pt;}
.y8e{bottom:920.563867pt;}
.y50{bottom:920.564000pt;}
.y23{bottom:924.521067pt;}
.y199{bottom:928.301333pt;}
.y166{bottom:937.778667pt;}
.y4f{bottom:939.134667pt;}
.y197{bottom:945.323733pt;}
.y198{bottom:945.324000pt;}
.y22{bottom:952.377333pt;}
.ya0{bottom:957.703733pt;}
.y4e{bottom:957.704000pt;}
.yb6{bottom:957.704400pt;}
.y165{bottom:960.334933pt;}
.y196{bottom:962.346667pt;}
.ya1{bottom:962.526667pt;}
.y9f{bottom:976.274533pt;}
.y4d{bottom:976.274667pt;}
.y194{bottom:979.369067pt;}
.y195{bottom:979.369333pt;}
.y21{bottom:980.232000pt;}
.y4c{bottom:994.845333pt;}
.y193{bottom:996.392000pt;}
.yb5{bottom:999.666667pt;}
.y4b{bottom:1013.414667pt;}
.y9e{bottom:1018.237333pt;}
.y4a{bottom:1067.149333pt;}
.h2a{height:19.340727pt;}
.h14{height:25.291721pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h16{height:28.023859pt;}
.h27{height:29.196090pt;}
.h12{height:29.397999pt;}
.h1b{height:29.599908pt;}
.he{height:30.945242pt;}
.h11{height:31.157778pt;}
.h22{height:33.287109pt;}
.h15{height:34.813542pt;}
.h1f{height:34.991719pt;}
.h29{height:35.052646pt;}
.h21{height:35.572305pt;}
.h13{height:36.873667pt;}
.h18{height:37.444531pt;}
.hd{height:38.415786pt;}
.h5{height:38.542969pt;}
.hf{height:38.681455pt;}
.h1d{height:38.681988pt;}
.h19{height:38.879687pt;}
.h25{height:38.946058pt;}
.hb{height:38.947124pt;}
.h7{height:41.507813pt;}
.h10{height:46.099251pt;}
.h2{height:46.343750pt;}
.h1c{height:46.743002pt;}
.h6{height:59.296875pt;}
.hc{height:69.148877pt;}
.h28{height:74.920031pt;}
.h23{height:77.069355pt;}
.h1a{height:93.010688pt;}
.h4{height:109.699219pt;}
.h24{height:113.523189pt;}
.h26{height:211.926667pt;}
.h1{height:263.000000pt;}
.h20{height:263.318667pt;}
.h1e{height:378.901333pt;}
.h3{height:475.000000pt;}
.h17{height:535.504000pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w6{width:301.612000pt;}
.w5{width:524.332000pt;}
.w7{width:633.424000pt;}
.w8{width:633.596000pt;}
.w1{width:793.000000pt;}
.w2{width:793.066667pt;}
.w0{width:793.333333pt;}
.w3{width:793.706667pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:47.621333pt;}
.x61{left:71.387973pt;}
.x2{left:75.000000pt;}
.x72{left:76.309333pt;}
.x5a{left:79.951600pt;}
.x5c{left:99.988667pt;}
.x50{left:113.229440pt;}
.x67{left:126.827067pt;}
.x60{left:128.658800pt;}
.x59{left:144.885333pt;}
.x5f{left:190.046667pt;}
.x5b{left:212.468400pt;}
.x6{left:220.911792pt;}
.x5{left:221.858667pt;}
.x62{left:232.949333pt;}
.x7{left:250.204000pt;}
.x4e{left:253.629333pt;}
.x1c{left:268.174667pt;}
.x29{left:275.088000pt;}
.x68{left:276.245333pt;}
.x1d{left:282.189333pt;}
.x3a{left:283.230667pt;}
.x27{left:284.420000pt;}
.x63{left:288.957333pt;}
.x2a{left:292.068000pt;}
.x64{left:295.740000pt;}
.x28{left:298.434667pt;}
.x6e{left:301.368000pt;}
.x2d{left:306.390667pt;}
.x35{left:309.208000pt;}
.x36{left:314.920000pt;}
.x2e{left:321.186667pt;}
.x69{left:327.838667pt;}
.x47{left:332.542667pt;}
.x48{left:338.592000pt;}
.x73{left:341.202667pt;}
.x74{left:343.511000pt;}
.x75{left:347.480000pt;}
.x65{left:357.554667pt;}
.x1e{left:359.646667pt;}
.x20{left:363.237333pt;}
.x1f{left:373.662667pt;}
.x21{left:377.745333pt;}
.x5d{left:388.174667pt;}
.x4f{left:395.949333pt;}
.x23{left:398.045333pt;}
.x6a{left:404.442667pt;}
.x66{left:406.624000pt;}
.x24{left:412.060000pt;}
.x2f{left:415.208000pt;}
.x30{left:419.573333pt;}
.x57{left:422.697333pt;}
.x6f{left:427.136000pt;}
.x31{left:433.246667pt;}
.x4d{left:437.060000pt;}
.xe{left:442.918667pt;}
.x45{left:443.857333pt;}
.x16{left:451.498667pt;}
.x58{left:454.904000pt;}
.xf{left:456.201333pt;}
.x46{left:457.140000pt;}
.x10{left:462.784000pt;}
.x17{left:464.782667pt;}
.x55{left:468.406467pt;}
.x11{left:476.066667pt;}
.x5e{left:479.904000pt;}
.x70{left:481.550587pt;}
.x37{left:490.976000pt;}
.x38{left:496.688000pt;}
.x71{left:499.354667pt;}
.x56{left:503.774293pt;}
.x3{left:505.000000pt;}
.x76{left:506.268000pt;}
.x77{left:507.971640pt;}
.x78{left:511.336000pt;}
.x32{left:513.478667pt;}
.x12{left:514.752000pt;}
.x6b{left:517.318667pt;}
.x39{left:521.456000pt;}
.x18{left:523.445333pt;}
.x6c{left:526.237333pt;}
.x13{left:528.036000pt;}
.x22{left:531.316000pt;}
.x14{left:534.737333pt;}
.x19{left:536.729333pt;}
.x33{left:541.722667pt;}
.x51{left:543.338667pt;}
.x15{left:548.021333pt;}
.x34{left:555.396000pt;}
.x49{left:564.950667pt;}
.xa{left:569.717333pt;}
.xb{left:576.358667pt;}
.x4a{left:579.209333pt;}
.xc{left:582.894667pt;}
.xd{left:589.536000pt;}
.x6d{left:592.978667pt;}
.x52{left:602.226667pt;}
.x53{left:610.530667pt;}
.x4b{left:616.460000pt;}
.x4c{left:630.720000pt;}
.x25{left:641.966667pt;}
.x2b{left:652.958667pt;}
.x26{left:658.974667pt;}
.x79{left:669.529333pt;}
.x1{left:670.500000pt;}
.x3f{left:673.785333pt;}
.x7a{left:677.844000pt;}
.x41{left:678.832000pt;}
.x40{left:683.154667pt;}
.x8{left:687.208000pt;}
.x42{left:692.836000pt;}
.x9{left:693.850667pt;}
.x54{left:702.701333pt;}
.x3b{left:710.581333pt;}
.x43{left:718.694667pt;}
.x3c{left:723.865333pt;}
.x3d{left:727.129333pt;}
.x1a{left:729.958667pt;}
.x2c{left:732.190667pt;}
.x44{left:738.394667pt;}
.x3e{left:740.412000pt;}
.x1b{left:743.973333pt;}
}




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