
    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_6ef5b49aece0ac946e103d7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_61e2c0a9a8becf005b5042de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_728113872720cc543082caa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_60deeeef90488a8aea21dd29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_e9ca0a7fabc311018451062e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.687500;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_56d3233ad10bd4d530cae078.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_eaf261dcd117a51e239f8d40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946289;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_4a713b7d5b47d6f9ebbb3f3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_acbb08272d9bd83396ec18aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_71842d3034a12dc46dbe0a3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_634260245c38f2b83223fc82.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_42ce3aad7bc0f356b47bf775.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678711;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_facc9d44f4db8b8f6853265c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973000;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_59715934dfbaddf6c5e0d461.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_241d7df62763944515cd31cc.woff2')format("woff");}.fff{font-family:fff;line-height:0.171000;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_87561a56a1dd3a542e0350fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946289;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_2725830dfcca63c5b03668c4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946289;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_04f9e422a3dfcd99cdd1dea5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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_6617289043171c063849c09d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_b5f9ace0585f9d5a5cd96790.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.970000;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_bea217763670d7ce79c420e7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.956500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_87561a56a1dd3a542e0350fc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2725830dfcca63c5b03668c4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_04f9e422a3dfcd99cdd1dea5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6617289043171c063849c09d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3d6fdaf8d03a5582bbde5098.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2725830dfcca63c5b03668c4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_04f9e422a3dfcd99cdd1dea5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6617289043171c063849c09d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_2725830dfcca63c5b03668c4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_04f9e422a3dfcd99cdd1dea5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_6617289043171c063849c09d.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v6{vertical-align:-10.806000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.800000px;}
.v5{vertical-align:14.280000px;}
.v2{vertical-align:18.198000px;}
.v1{vertical-align:20.400600px;}
.ls83{letter-spacing:-3.150000px;}
.ls60{letter-spacing:-1.596000px;}
.ls8e{letter-spacing:-1.188000px;}
.ls89{letter-spacing:-0.990000px;}
.ls57{letter-spacing:-0.972000px;}
.ls8a{letter-spacing:-0.945000px;}
.ls7b{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.648000px;}
.ls46{letter-spacing:-0.594000px;}
.ls59{letter-spacing:-0.588000px;}
.ls8d{letter-spacing:-0.585000px;}
.ls67{letter-spacing:-0.561600px;}
.ls5a{letter-spacing:-0.546000px;}
.ls65{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.526500px;}
.ls76{letter-spacing:-0.450000px;}
.ls45{letter-spacing:-0.432000px;}
.ls5f{letter-spacing:-0.378000px;}
.ls87{letter-spacing:-0.360000px;}
.ls79{letter-spacing:-0.315000px;}
.ls6b{letter-spacing:-0.270000px;}
.ls55{letter-spacing:-0.245700px;}
.ls86{letter-spacing:-0.225000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls4a{letter-spacing:-0.210600px;}
.ls5b{letter-spacing:-0.210000px;}
.ls75{letter-spacing:-0.180000px;}
.ls58{letter-spacing:-0.175500px;}
.ls29{letter-spacing:-0.162000px;}
.ls3f{letter-spacing:-0.140400px;}
.ls5e{letter-spacing:-0.136500px;}
.ls77{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.131760px;}
.ls5c{letter-spacing:-0.126000px;}
.ls5d{letter-spacing:-0.109200px;}
.ls3a{letter-spacing:-0.108000px;}
.ls68{letter-spacing:-0.105300px;}
.ls78{letter-spacing:-0.090000px;}
.ls41{letter-spacing:-0.070200px;}
.ls40{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.046116px;}
.ls85{letter-spacing:-0.045000px;}
.ls6f{letter-spacing:-0.035100px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls9{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.013176px;}
.ls13{letter-spacing:0.013200px;}
.ls14{letter-spacing:0.013800px;}
.ls4d{letter-spacing:0.016200px;}
.ls7{letter-spacing:0.019764px;}
.ls12{letter-spacing:0.022800px;}
.ls1c{letter-spacing:0.023400px;}
.ls0{letter-spacing:0.025164px;}
.ls50{letter-spacing:0.025800px;}
.ls2{letter-spacing:0.026352px;}
.ls51{letter-spacing:0.032400px;}
.ls4{letter-spacing:0.032940px;}
.ls52{letter-spacing:0.034800px;}
.ls5{letter-spacing:0.039528px;}
.ls17{letter-spacing:0.040800px;}
.ls1{letter-spacing:0.041940px;}
.ls4c{letter-spacing:0.042000px;}
.ls74{letter-spacing:0.045000px;}
.ls6{letter-spacing:0.046116px;}
.ls4e{letter-spacing:0.051000px;}
.ls16{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.059292px;}
.ls54{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.064200px;}
.ls34{letter-spacing:0.070200px;}
.ls84{letter-spacing:0.090000px;}
.ls62{letter-spacing:0.105300px;}
.ls2a{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.109050px;}
.ls80{letter-spacing:0.112500px;}
.ls82{letter-spacing:0.135000px;}
.ls64{letter-spacing:0.140400px;}
.ls38{letter-spacing:0.162000px;}
.ls61{letter-spacing:0.163800px;}
.ls42{letter-spacing:0.175500px;}
.ls49{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.180450px;}
.ls7d{letter-spacing:0.202500px;}
.ls2f{letter-spacing:0.204000px;}
.ls43{letter-spacing:0.210600px;}
.ls39{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.223992px;}
.ls7c{letter-spacing:0.225000px;}
.ls3d{letter-spacing:0.245700px;}
.ls1a{letter-spacing:0.246600px;}
.ls6e{letter-spacing:0.248400px;}
.ls35{letter-spacing:0.270000px;}
.ls44{letter-spacing:0.280800px;}
.ls48{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.303450px;}
.ls23{letter-spacing:0.306000px;}
.ls81{letter-spacing:0.315000px;}
.ls3c{letter-spacing:0.315900px;}
.ls2b{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.357000px;}
.ls8b{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.378000px;}
.ls6a{letter-spacing:0.386100px;}
.ls7a{letter-spacing:0.405000px;}
.ls47{letter-spacing:0.421200px;}
.ls73{letter-spacing:0.427500px;}
.ls32{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.442050px;}
.ls72{letter-spacing:0.450000px;}
.ls3b{letter-spacing:0.456300px;}
.ls4b{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.486000px;}
.ls63{letter-spacing:0.491400px;}
.ls21{letter-spacing:0.492450px;}
.ls15{letter-spacing:0.498600px;}
.ls2c{letter-spacing:0.510000px;}
.ls33{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.594000px;}
.ls69{letter-spacing:0.596700px;}
.ls70{letter-spacing:0.631800px;}
.ls1e{letter-spacing:0.635850px;}
.ls36{letter-spacing:0.648000px;}
.ls7f{letter-spacing:0.670500px;}
.ls7e{letter-spacing:0.675000px;}
.ls31{letter-spacing:0.702000px;}
.ls2e{letter-spacing:0.714000px;}
.ls28{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.765000px;}
.ls71{letter-spacing:0.810000px;}
.ls8c{letter-spacing:0.900000px;}
.ls88{letter-spacing:0.945000px;}
.ls26{letter-spacing:0.960000px;}
.ls6d{letter-spacing:0.972000px;}
.ls2d{letter-spacing:1.020000px;}
.ls6c{letter-spacing:1.080000px;}
.ls10{letter-spacing:2.592000px;}
.ls30{letter-spacing:2.700000px;}
.ls11{letter-spacing:2.767500px;}
.ls53{letter-spacing:14.742000px;}
.lse{letter-spacing:155.384568px;}
.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;}
}
.ws13{word-spacing:-15.067500px;}
.ws2{word-spacing:-14.921820px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.ws38{word-spacing:-13.596000px;}
.ws36{word-spacing:-12.906000px;}
.ws79{word-spacing:-12.528000px;}
.ws75{word-spacing:-12.420000px;}
.ws31{word-spacing:-12.366000px;}
.ws14{word-spacing:-12.360000px;}
.ws46{word-spacing:-12.258000px;}
.ws11{word-spacing:-12.192000px;}
.ws4c{word-spacing:-12.096000px;}
.ws4b{word-spacing:-12.042000px;}
.ws35{word-spacing:-11.772000px;}
.ws77{word-spacing:-11.664000px;}
.ws74{word-spacing:-11.610000px;}
.wsa5{word-spacing:-11.178000px;}
.ws88{word-spacing:-10.305000px;}
.wsa3{word-spacing:-10.260000px;}
.wsa2{word-spacing:-10.215000px;}
.ws89{word-spacing:-10.170000px;}
.ws8b{word-spacing:-9.990000px;}
.wsa0{word-spacing:-9.967500px;}
.wsa1{word-spacing:-9.945000px;}
.ws8d{word-spacing:-9.855000px;}
.ws8a{word-spacing:-9.675000px;}
.ws8c{word-spacing:-9.585000px;}
.ws5d{word-spacing:-9.534000px;}
.wsa4{word-spacing:-9.360000px;}
.ws55{word-spacing:-9.114000px;}
.ws7b{word-spacing:-8.599500px;}
.ws71{word-spacing:-8.564400px;}
.ws6d{word-spacing:-8.459100px;}
.ws2b{word-spacing:-8.424000px;}
.ws37{word-spacing:-8.388900px;}
.ws72{word-spacing:-8.353800px;}
.ws2c{word-spacing:-8.283600px;}
.ws34{word-spacing:-8.248500px;}
.ws2d{word-spacing:-8.213400px;}
.ws32{word-spacing:-8.178300px;}
.ws30{word-spacing:-8.143200px;}
.ws6e{word-spacing:-8.108100px;}
.ws6c{word-spacing:-8.073000px;}
.ws33{word-spacing:-8.037900px;}
.ws15{word-spacing:-7.967700px;}
.ws7a{word-spacing:-7.932600px;}
.ws2f{word-spacing:-7.897500px;}
.ws70{word-spacing:-7.862400px;}
.ws2e{word-spacing:-7.827300px;}
.ws50{word-spacing:-7.792200px;}
.ws39{word-spacing:-7.757100px;}
.ws4e{word-spacing:-7.722000px;}
.ws4f{word-spacing:-7.441200px;}
.ws6f{word-spacing:-7.406100px;}
.ws9f{word-spacing:-7.155000px;}
.ws16{word-spacing:-6.630000px;}
.ws5e{word-spacing:-6.360900px;}
.ws5a{word-spacing:-6.087900px;}
.ws5b{word-spacing:-6.060600px;}
.ws18{word-spacing:-4.080000px;}
.ws17{word-spacing:-3.276000px;}
.ws2a{word-spacing:-2.760000px;}
.ws12{word-spacing:-2.640000px;}
.ws65{word-spacing:-2.268000px;}
.ws7f{word-spacing:-1.890000px;}
.ws1e{word-spacing:-1.836000px;}
.ws20{word-spacing:-1.782000px;}
.ws62{word-spacing:-1.728000px;}
.ws1d{word-spacing:-1.620000px;}
.ws9a{word-spacing:-1.575000px;}
.ws42{word-spacing:-1.566000px;}
.ws96{word-spacing:-1.530000px;}
.ws7e{word-spacing:-1.458000px;}
.wsac{word-spacing:-1.440000px;}
.ws84{word-spacing:-1.404000px;}
.ws9d{word-spacing:-1.395000px;}
.wsba{word-spacing:-1.386000px;}
.ws76{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.296000px;}
.ws9b{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.242000px;}
.wsa8{word-spacing:-1.215000px;}
.ws6b{word-spacing:-1.188000px;}
.wsa7{word-spacing:-1.170000px;}
.ws19{word-spacing:-1.134000px;}
.ws49{word-spacing:-1.080000px;}
.ws94{word-spacing:-1.035000px;}
.ws3a{word-spacing:-1.026000px;}
.ws25{word-spacing:-1.020000px;}
.wsb3{word-spacing:-0.990000px;}
.ws64{word-spacing:-0.972000px;}
.ws67{word-spacing:-0.966000px;}
.ws66{word-spacing:-0.924000px;}
.ws86{word-spacing:-0.918000px;}
.ws60{word-spacing:-0.864000px;}
.ws9e{word-spacing:-0.855000px;}
.ws68{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.765000px;}
.ws85{word-spacing:-0.756000px;}
.wsb4{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.714000px;}
.ws8e{word-spacing:-0.702000px;}
.ws97{word-spacing:-0.675000px;}
.ws21{word-spacing:-0.648000px;}
.ws1c{word-spacing:-0.594000px;}
.ws69{word-spacing:-0.588000px;}
.ws95{word-spacing:-0.585000px;}
.ws3e{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.495000px;}
.ws3f{word-spacing:-0.486000px;}
.ws63{word-spacing:-0.480000px;}
.wsa6{word-spacing:-0.450000px;}
.ws40{word-spacing:-0.432000px;}
.ws99{word-spacing:-0.405000px;}
.ws87{word-spacing:-0.378000px;}
.ws22{word-spacing:-0.324000px;}
.wsad{word-spacing:-0.315000px;}
.ws28{word-spacing:-0.306000px;}
.ws44{word-spacing:-0.300000px;}
.ws23{word-spacing:-0.270000px;}
.wsab{word-spacing:-0.225000px;}
.ws82{word-spacing:-0.216000px;}
.ws29{word-spacing:-0.204000px;}
.ws10{word-spacing:-0.191052px;}
.ws4a{word-spacing:-0.180000px;}
.wse{word-spacing:-0.177876px;}
.ws3d{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.151524px;}
.wsaa{word-spacing:-0.135000px;}
.ws4d{word-spacing:-0.108000px;}
.wsb5{word-spacing:-0.090000px;}
.ws7{word-spacing:-0.085644px;}
.ws61{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.054000px;}
.wsb0{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws98{word-spacing:0.045000px;}
.ws3c{word-spacing:0.054000px;}
.ws6{word-spacing:0.075492px;}
.wsa9{word-spacing:0.090000px;}
.ws5{word-spacing:0.092268px;}
.ws48{word-spacing:0.108000px;}
.wsb2{word-spacing:0.135000px;}
.ws24{word-spacing:0.153000px;}
.ws41{word-spacing:0.162000px;}
.ws92{word-spacing:0.180000px;}
.ws7d{word-spacing:0.216000px;}
.ws4{word-spacing:0.234864px;}
.ws45{word-spacing:0.270000px;}
.ws47{word-spacing:0.324000px;}
.ws43{word-spacing:0.378000px;}
.ws93{word-spacing:0.432000px;}
.ws73{word-spacing:0.486000px;}
.ws80{word-spacing:0.540000px;}
.ws3b{word-spacing:0.594000px;}
.wsae{word-spacing:0.630000px;}
.ws90{word-spacing:0.648000px;}
.ws1b{word-spacing:0.702000px;}
.ws8f{word-spacing:0.756000px;}
.ws78{word-spacing:0.810000px;}
.wsb6{word-spacing:0.990000px;}
.ws83{word-spacing:1.134000px;}
.wsb7{word-spacing:1.170000px;}
.wsb9{word-spacing:1.188000px;}
.ws81{word-spacing:1.242000px;}
.wsb1{word-spacing:1.260000px;}
.wsaf{word-spacing:1.350000px;}
.wsb8{word-spacing:1.404000px;}
.ws7c{word-spacing:1.512000px;}
.ws6a{word-spacing:1.596000px;}
.wsb{word-spacing:8.109828px;}
.ws9{word-spacing:8.834508px;}
.wsa{word-spacing:8.841096px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
.ws58{word-spacing:68.124000px;}
.ws5c{word-spacing:78.204000px;}
.ws5f{word-spacing:84.462000px;}
.ws59{word-spacing:90.552000px;}
.ws52{word-spacing:91.980000px;}
.ws57{word-spacing:94.042200px;}
.ws53{word-spacing:107.310000px;}
.ws51{word-spacing:122.262000px;}
.ws54{word-spacing:129.486000px;}
.ws56{word-spacing:307.654200px;}
._2a{margin-left:-12.921600px;}
._d{margin-left:-11.421000px;}
._6{margin-left:-10.188000px;}
._2b{margin-left:-8.154000px;}
._2{margin-left:-6.739200px;}
._b{margin-left:-5.670000px;}
._4{margin-left:-4.609800px;}
._3{margin-left:-3.213600px;}
._1{margin-left:-1.776000px;}
._0{width:1.317600px;}
._5{width:2.580000px;}
._29{width:4.087200px;}
._a{width:5.953800px;}
._8{width:7.551600px;}
._c{width:9.872400px;}
._e{width:11.161800px;}
._9{width:12.522600px;}
._28{width:15.282000px;}
._f{width:40.614000px;}
._7{width:47.846400px;}
._12{width:83.533800px;}
._21{width:93.176400px;}
._20{width:94.378200px;}
._1f{width:97.408200px;}
._27{width:100.086000px;}
._16{width:104.076000px;}
._23{width:105.504000px;}
._10{width:112.780800px;}
._1e{width:114.114000px;}
._18{width:117.164400px;}
._15{width:119.016600px;}
._25{width:133.008600px;}
._13{width:135.954000px;}
._22{width:146.248200px;}
._26{width:147.927300px;}
._1c{width:149.346600px;}
._17{width:162.372000px;}
._19{width:172.452000px;}
._1d{width:188.244000px;}
._11{width:214.993800px;}
._1a{width:229.776900px;}
._14{width:231.672000px;}
._24{width:235.677900px;}
._1b{width:244.860000px;}
.fc1{color:rgb(131,144,151);}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.300000px;}
.fsa{font-size:33.150000px;}
.fs9{font-size:35.100000px;}
.fs7{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:83.880000px;}
.fsc{font-size:108.000000px;}
.fs6{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:16.710000px;}
.y2a{bottom:27.197850px;}
.y2b{bottom:27.253800px;}
.y22{bottom:56.310000px;}
.y1e{bottom:62.880000px;}
.y59{bottom:68.307900px;}
.ya1{bottom:68.554500px;}
.y119{bottom:68.677650px;}
.yaf{bottom:76.631700px;}
.y21{bottom:77.280000px;}
.y58{bottom:83.307900px;}
.ya0{bottom:83.553000px;}
.y118{bottom:83.676150px;}
.y1a1{bottom:87.547800px;}
.yae{bottom:91.630200px;}
.y15b{bottom:92.640000px;}
.y20{bottom:98.250000px;}
.y57{bottom:98.307900px;}
.y9f{bottom:98.551500px;}
.y117{bottom:98.674650px;}
.yda{bottom:101.549550px;}
.y1a0{bottom:102.546300px;}
.y15a{bottom:105.386250px;}
.yad{bottom:106.630200px;}
.y56{bottom:113.307900px;}
.y9e{bottom:113.559000px;}
.y116{bottom:113.673150px;}
.yd9{bottom:116.549550px;}
.y159{bottom:118.132500px;}
.yac{bottom:121.630200px;}
.y19f{bottom:124.294800px;}
.y55{bottom:128.307900px;}
.y9d{bottom:128.557500px;}
.y115{bottom:128.682150px;}
.y158{bottom:130.878750px;}
.yd8{bottom:131.549550px;}
.yab{bottom:136.630200px;}
.y54{bottom:143.307900px;}
.y9c{bottom:143.556000px;}
.y157{bottom:143.625000px;}
.y114{bottom:143.680650px;}
.y27{bottom:144.540000px;}
.y19e{bottom:146.043300px;}
.yd7{bottom:146.549550px;}
.yaa{bottom:151.628700px;}
.y156{bottom:156.371250px;}
.y53{bottom:158.307900px;}
.y9b{bottom:158.554500px;}
.y113{bottom:158.679150px;}
.y19d{bottom:161.043300px;}
.yd6{bottom:161.549550px;}
.y26{bottom:165.510000px;}
.y155{bottom:169.117500px;}
.y9a{bottom:173.553000px;}
.y112{bottom:173.677650px;}
.yd5{bottom:176.549550px;}
.y52{bottom:177.636900px;}
.y154{bottom:181.863750px;}
.y1b{bottom:183.502590px;}
.ya9{bottom:183.623850px;}
.y25{bottom:186.480000px;}
.y99{bottom:188.551500px;}
.y111{bottom:188.676150px;}
.yd4{bottom:191.549550px;}
.y19c{bottom:194.047800px;}
.y153{bottom:194.610000px;}
.ya8{bottom:198.622350px;}
.y98{bottom:203.550000px;}
.y110{bottom:203.674650px;}
.yd3{bottom:206.549550px;}
.y1a{bottom:206.725290px;}
.y152{bottom:207.356250px;}
.y24{bottom:207.450000px;}
.y19b{bottom:209.046300px;}
.ya7{bottom:213.620850px;}
.y10f{bottom:218.673150px;}
.y151{bottom:220.102500px;}
.yd2{bottom:221.548050px;}
.y19a{bottom:224.044800px;}
.y51{bottom:225.685800px;}
.ya6{bottom:228.619350px;}
.y19{bottom:229.849170px;}
.y150{bottom:232.848750px;}
.y97{bottom:233.676150px;}
.y199{bottom:239.043300px;}
.y50{bottom:240.687300px;}
.ya5{bottom:243.617850px;}
.y14f{bottom:245.595000px;}
.y96{bottom:248.674650px;}
.y18{bottom:252.981180px;}
.y198{bottom:254.043300px;}
.yd1{bottom:254.549550px;}
.y4f{bottom:255.685800px;}
.y14e{bottom:258.341250px;}
.y95{bottom:263.673150px;}
.yd0{bottom:269.549550px;}
.y4e{bottom:270.687300px;}
.y14d{bottom:271.087500px;}
.ya4{bottom:275.610000px;}
.y17{bottom:276.203880px;}
.y10e{bottom:278.671650px;}
.y94{bottom:278.683650px;}
.y14c{bottom:283.833750px;}
.ycf{bottom:284.549550px;}
.y4d{bottom:285.685800px;}
.y197{bottom:287.062800px;}
.ya3{bottom:290.608500px;}
.y10d{bottom:293.671650px;}
.y93{bottom:293.682150px;}
.y14b{bottom:296.580000px;}
.yce{bottom:299.553900px;}
.y4c{bottom:300.688800px;}
.y196{bottom:302.061300px;}
.y23{bottom:305.055000px;}
.ya2{bottom:305.607000px;}
.y92{bottom:308.680650px;}
.y14a{bottom:309.326250px;}
.ycd{bottom:314.552400px;}
.y4b{bottom:315.687300px;}
.y195{bottom:317.059800px;}
.y149{bottom:322.072500px;}
.y91{bottom:323.679150px;}
.y10c{bottom:323.814300px;}
.ycc{bottom:329.550900px;}
.y4a{bottom:330.685800px;}
.y194{bottom:332.058300px;}
.y148{bottom:334.818750px;}
.y90{bottom:338.677650px;}
.y10b{bottom:338.812800px;}
.y16{bottom:344.356740px;}
.ycb{bottom:344.549400px;}
.y49{bottom:345.687300px;}
.y193{bottom:347.056800px;}
.y147{bottom:347.565000px;}
.y8f{bottom:353.676150px;}
.y10a{bottom:353.811300px;}
.yca{bottom:359.547900px;}
.y146{bottom:360.311250px;}
.y48{bottom:360.685800px;}
.y192{bottom:362.055300px;}
.yc9{bottom:362.245650px;}
.y8e{bottom:368.674650px;}
.y109{bottom:368.809800px;}
.y145{bottom:373.057500px;}
.y47{bottom:375.685800px;}
.y191{bottom:377.053800px;}
.yc8{bottom:377.244150px;}
.y15{bottom:382.517730px;}
.y8d{bottom:383.673150px;}
.y108{bottom:383.808300px;}
.y144{bottom:385.803750px;}
.y46{bottom:390.685800px;}
.y190{bottom:392.052300px;}
.yc7{bottom:392.242650px;}
.y143{bottom:398.550000px;}
.y8c{bottom:398.671650px;}
.y107{bottom:398.806800px;}
.y45{bottom:405.687300px;}
.y18f{bottom:407.050800px;}
.y142{bottom:411.300000px;}
.y8b{bottom:413.671650px;}
.y106{bottom:413.805300px;}
.ye3{bottom:419.219550px;}
.y14{bottom:420.678720px;}
.y44{bottom:420.685800px;}
.y18e{bottom:422.049300px;}
.y105{bottom:428.803800px;}
.ye2{bottom:434.218050px;}
.y43{bottom:435.685800px;}
.y18d{bottom:437.047800px;}
.y141{bottom:442.140150px;}
.y8a{bottom:443.800800px;}
.y104{bottom:443.802300px;}
.ye1{bottom:449.216550px;}
.y42{bottom:450.724800px;}
.y18c{bottom:452.046300px;}
.y140{bottom:457.138650px;}
.y89{bottom:458.799300px;}
.y103{bottom:458.800800px;}
.y13{bottom:458.839710px;}
.ye0{bottom:464.215050px;}
.y41{bottom:465.723300px;}
.y18b{bottom:467.044800px;}
.y13f{bottom:472.137150px;}
.y88{bottom:473.797800px;}
.y102{bottom:473.799300px;}
.ydf{bottom:479.213550px;}
.y18a{bottom:482.043300px;}
.y13e{bottom:487.135650px;}
.y87{bottom:488.796300px;}
.y101{bottom:488.797800px;}
.y12{bottom:497.000700px;}
.y189{bottom:497.043300px;}
.y13d{bottom:502.134150px;}
.y86{bottom:503.794800px;}
.y100{bottom:503.796300px;}
.y40{bottom:512.973300px;}
.y13c{bottom:517.132650px;}
.y85{bottom:518.794800px;}
.y3f{bottom:529.470300px;}
.y188{bottom:530.208300px;}
.y13b{bottom:532.143150px;}
.y84{bottom:533.794800px;}
.y11{bottom:535.161690px;}
.y187{bottom:542.954550px;}
.y3e{bottom:545.967300px;}
.y13a{bottom:547.141650px;}
.y83{bottom:548.794800px;}
.yff{bottom:548.799300px;}
.y186{bottom:555.700800px;}
.y139{bottom:562.140150px;}
.y3d{bottom:562.464300px;}
.yfe{bottom:563.797800px;}
.y82{bottom:563.806800px;}
.y185{bottom:568.447050px;}
.y10{bottom:573.322680px;}
.y138{bottom:577.138650px;}
.yfd{bottom:578.796300px;}
.y81{bottom:578.805300px;}
.y3c{bottom:578.961300px;}
.y184{bottom:581.193300px;}
.y137{bottom:592.137150px;}
.yfc{bottom:593.794800px;}
.y80{bottom:593.803800px;}
.y183{bottom:593.939550px;}
.y3b{bottom:595.458300px;}
.y182{bottom:606.685800px;}
.y136{bottom:607.135650px;}
.yfb{bottom:608.796300px;}
.y7f{bottom:608.802300px;}
.yf{bottom:611.483670px;}
.y3a{bottom:611.955300px;}
.y181{bottom:619.432050px;}
.y135{bottom:622.134150px;}
.yfa{bottom:623.794800px;}
.y7e{bottom:623.800800px;}
.y39{bottom:628.452300px;}
.y180{bottom:632.178300px;}
.y28{bottom:635.130000px;}
.y134{bottom:637.132650px;}
.yf9{bottom:638.794800px;}
.y7d{bottom:638.799300px;}
.y17f{bottom:644.924550px;}
.y38{bottom:644.949300px;}
.ye{bottom:649.644660px;}
.y133{bottom:652.138500px;}
.y7c{bottom:653.797800px;}
.yf8{bottom:653.799300px;}
.y17e{bottom:657.670800px;}
.y37{bottom:661.446300px;}
.y132{bottom:667.137000px;}
.y1d{bottom:667.530000px;}
.y7b{bottom:668.796300px;}
.yf7{bottom:668.797800px;}
.y17d{bottom:670.417050px;}
.y36{bottom:677.943300px;}
.y131{bottom:682.135500px;}
.y17c{bottom:683.163300px;}
.y7a{bottom:683.794800px;}
.yf6{bottom:683.796300px;}
.yd{bottom:687.805650px;}
.y35{bottom:694.440300px;}
.y17b{bottom:695.909550px;}
.y130{bottom:697.134000px;}
.yf5{bottom:698.794800px;}
.y79{bottom:698.799300px;}
.y17a{bottom:708.655800px;}
.yc6{bottom:710.419800px;}
.y34{bottom:710.937300px;}
.y12f{bottom:712.132500px;}
.y78{bottom:713.797800px;}
.yf4{bottom:713.800800px;}
.y179{bottom:721.402050px;}
.yc5{bottom:725.425800px;}
.yc{bottom:725.966640px;}
.y12e{bottom:727.131000px;}
.y33{bottom:727.434300px;}
.y77{bottom:728.796300px;}
.yf3{bottom:728.799300px;}
.y178{bottom:734.148300px;}
.yc4{bottom:740.424300px;}
.y76{bottom:743.794800px;}
.yf2{bottom:743.797800px;}
.y177{bottom:746.894550px;}
.y1f{bottom:749.250000px;}
.yc3{bottom:755.422800px;}
.y5c{bottom:757.050000px;}
.y32{bottom:757.434300px;}
.y12d{bottom:757.980150px;}
.yf1{bottom:758.796300px;}
.y75{bottom:758.799300px;}
.y176{bottom:759.640800px;}
.yb{bottom:764.127630px;}
.yc2{bottom:770.421300px;}
.y175{bottom:772.387050px;}
.y12c{bottom:772.978650px;}
.yf0{bottom:773.794800px;}
.y74{bottom:773.797800px;}
.y31{bottom:775.434300px;}
.y5b{bottom:778.050000px;}
.y174{bottom:785.133300px;}
.yc1{bottom:785.419800px;}
.y12b{bottom:787.977150px;}
.y73{bottom:788.796300px;}
.y30{bottom:793.434300px;}
.yde{bottom:796.437750px;}
.y173{bottom:797.879550px;}
.y5a{bottom:799.050000px;}
.yc0{bottom:800.418300px;}
.ya{bottom:802.288620px;}
.y12a{bottom:802.975650px;}
.y72{bottom:803.794800px;}
.y172{bottom:810.625800px;}
.ydd{bottom:811.436250px;}
.y129{bottom:817.974150px;}
.yef{bottom:818.794800px;}
.y71{bottom:818.796300px;}
.y171{bottom:823.372050px;}
.y2f{bottom:826.422300px;}
.ydc{bottom:826.436250px;}
.ybf{bottom:830.599800px;}
.y128{bottom:832.972650px;}
.y70{bottom:833.794800px;}
.y170{bottom:836.118300px;}
.y9{bottom:840.449610px;}
.ydb{bottom:841.434750px;}
.y127{bottom:847.971150px;}
.ybe{bottom:848.040300px;}
.y6f{bottom:848.796300px;}
.y16f{bottom:848.864550px;}
.y16e{bottom:861.610800px;}
.y126{bottom:862.969650px;}
.y6e{bottom:863.794800px;}
.ybd{bottom:865.477800px;}
.y2e{bottom:871.428300px;}
.y16d{bottom:874.357050px;}
.y125{bottom:877.968150px;}
.y8{bottom:878.610600px;}
.y6d{bottom:878.794800px;}
.ybc{bottom:882.915300px;}
.y16c{bottom:887.103300px;}
.y124{bottom:892.966650px;}
.y6c{bottom:893.796300px;}
.yee{bottom:893.802300px;}
.y16b{bottom:899.849550px;}
.y7{bottom:900.041520px;}
.ybb{bottom:900.349800px;}
.y123{bottom:907.965150px;}
.y6b{bottom:908.794800px;}
.yed{bottom:908.800800px;}
.y16a{bottom:912.595800px;}
.y2d{bottom:916.434300px;}
.yba{bottom:917.790300px;}
.y122{bottom:922.963650px;}
.y6a{bottom:923.796300px;}
.yec{bottom:923.799300px;}
.y169{bottom:925.342050px;}
.y6{bottom:925.687830px;}
.y5d{bottom:926.409600px;}
.yb9{bottom:935.227800px;}
.y121{bottom:937.962150px;}
.y168{bottom:938.088300px;}
.y69{bottom:938.794800px;}
.yeb{bottom:938.797800px;}
.y167{bottom:950.834550px;}
.y5{bottom:951.334140px;}
.yb8{bottom:952.656300px;}
.y68{bottom:953.794800px;}
.yea{bottom:953.796300px;}
.y1a8{bottom:962.052300px;}
.y166{bottom:963.580800px;}
.y67{bottom:968.794800px;}
.y120{bottom:968.805300px;}
.yb7{bottom:970.096800px;}
.y165{bottom:976.327050px;}
.y4{bottom:976.980450px;}
.y1a7{bottom:977.050800px;}
.y66{bottom:983.794800px;}
.ye9{bottom:983.802300px;}
.y11f{bottom:983.803800px;}
.yb6{bottom:987.537300px;}
.y164{bottom:989.073300px;}
.y1a6{bottom:992.049300px;}
.y65{bottom:998.796300px;}
.ye8{bottom:998.800800px;}
.y11e{bottom:998.802300px;}
.y163{bottom:1001.819550px;}
.yb5{bottom:1004.977800px;}
.y1a5{bottom:1007.047800px;}
.y64{bottom:1013.794800px;}
.ye7{bottom:1013.799300px;}
.y11d{bottom:1013.800800px;}
.y162{bottom:1014.565800px;}
.y3{bottom:1019.370450px;}
.y1a4{bottom:1022.046300px;}
.yb4{bottom:1022.409300px;}
.y161{bottom:1027.312050px;}
.y63{bottom:1028.794800px;}
.ye6{bottom:1028.797800px;}
.y11c{bottom:1028.799300px;}
.y1a3{bottom:1037.044800px;}
.yb3{bottom:1039.849800px;}
.y160{bottom:1040.058300px;}
.y62{bottom:1043.794800px;}
.ye5{bottom:1043.796300px;}
.y11b{bottom:1043.797800px;}
.y1a2{bottom:1052.043300px;}
.y15f{bottom:1052.804550px;}
.yb2{bottom:1057.290300px;}
.y61{bottom:1058.794800px;}
.y11a{bottom:1058.796300px;}
.y2{bottom:1060.044600px;}
.y15e{bottom:1065.550800px;}
.ye4{bottom:1073.793300px;}
.y60{bottom:1073.794800px;}
.yb1{bottom:1074.730800px;}
.y15d{bottom:1078.297050px;}
.y1c{bottom:1086.240450px;}
.y5f{bottom:1088.793300px;}
.y15c{bottom:1091.043300px;}
.yb0{bottom:1092.168300px;}
.y1{bottom:1093.890450px;}
.y5e{bottom:1139.853000px;}
.y2c{bottom:1140.126900px;}
.h17{height:23.842749px;}
.h23{height:30.072000px;}
.h22{height:31.038000px;}
.h31{height:32.220000px;}
.h8{height:32.625000px;}
.h21{height:33.772200px;}
.h26{height:33.838800px;}
.h27{height:33.850800px;}
.h24{height:33.862800px;}
.h25{height:33.874800px;}
.hc{height:34.523438px;}
.h19{height:36.681152px;}
.h28{height:38.556000px;}
.h12{height:38.664000px;}
.h11{height:38.838867px;}
.h2c{height:39.900000px;}
.h1e{height:39.906000px;}
.h18{height:41.158749px;}
.hb{height:43.154297px;}
.h13{height:43.329600px;}
.h2f{height:43.419600px;}
.h1c{height:43.437600px;}
.h1f{height:43.443600px;}
.h2e{height:43.449600px;}
.h20{height:43.455000px;}
.h2d{height:43.455600px;}
.h29{height:43.461600px;}
.h30{height:43.462200px;}
.h1b{height:43.467600px;}
.h2b{height:43.468200px;}
.h16{height:43.473600px;}
.h15{height:43.479600px;}
.h14{height:43.485600px;}
.h2a{height:43.491600px;}
.hd{height:44.233154px;}
.h1{height:45.035156px;}
.h3{height:45.807187px;}
.h1d{height:47.469727px;}
.h10{height:48.450293px;}
.hf{height:48.450893px;}
.h2{height:58.322812px;}
.h5{height:63.615234px;}
.h1a{height:77.677734px;}
.h4{height:78.780000px;}
.he{height:112.201172px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1263.000000px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.914000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x9{left:61.191450px;}
.xe{left:64.645350px;}
.xd{left:75.025350px;}
.x3{left:106.380000px;}
.xf{left:140.952750px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.x2{left:204.216300px;}
.xb{left:233.456400px;}
.x10{left:238.143750px;}
.xc{left:251.454000px;}
.x15{left:300.348750px;}
.x12{left:453.911250px;}
.x11{left:455.913750px;}
.x13{left:463.359000px;}
.x4{left:485.820000px;}
.xa{left:584.586600px;}
.x1{left:742.950000px;}
.x14{left:824.207400px;}
.x8{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v6{vertical-align:-9.605333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.600000pt;}
.v5{vertical-align:12.693333pt;}
.v2{vertical-align:16.176000pt;}
.v1{vertical-align:18.133867pt;}
.ls83{letter-spacing:-2.800000pt;}
.ls60{letter-spacing:-1.418667pt;}
.ls8e{letter-spacing:-1.056000pt;}
.ls89{letter-spacing:-0.880000pt;}
.ls57{letter-spacing:-0.864000pt;}
.ls8a{letter-spacing:-0.840000pt;}
.ls7b{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.576000pt;}
.ls46{letter-spacing:-0.528000pt;}
.ls59{letter-spacing:-0.522667pt;}
.ls8d{letter-spacing:-0.520000pt;}
.ls67{letter-spacing:-0.499200pt;}
.ls5a{letter-spacing:-0.485333pt;}
.ls65{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.468000pt;}
.ls76{letter-spacing:-0.400000pt;}
.ls45{letter-spacing:-0.384000pt;}
.ls5f{letter-spacing:-0.336000pt;}
.ls87{letter-spacing:-0.320000pt;}
.ls79{letter-spacing:-0.280000pt;}
.ls6b{letter-spacing:-0.240000pt;}
.ls55{letter-spacing:-0.218400pt;}
.ls86{letter-spacing:-0.200000pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls4a{letter-spacing:-0.187200pt;}
.ls5b{letter-spacing:-0.186667pt;}
.ls75{letter-spacing:-0.160000pt;}
.ls58{letter-spacing:-0.156000pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls3f{letter-spacing:-0.124800pt;}
.ls5e{letter-spacing:-0.121333pt;}
.ls77{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.117120pt;}
.ls5c{letter-spacing:-0.112000pt;}
.ls5d{letter-spacing:-0.097067pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls68{letter-spacing:-0.093600pt;}
.ls78{letter-spacing:-0.080000pt;}
.ls41{letter-spacing:-0.062400pt;}
.ls40{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.040992pt;}
.ls85{letter-spacing:-0.040000pt;}
.ls6f{letter-spacing:-0.031200pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls9{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.011712pt;}
.ls13{letter-spacing:0.011733pt;}
.ls14{letter-spacing:0.012267pt;}
.ls4d{letter-spacing:0.014400pt;}
.ls7{letter-spacing:0.017568pt;}
.ls12{letter-spacing:0.020267pt;}
.ls1c{letter-spacing:0.020800pt;}
.ls0{letter-spacing:0.022368pt;}
.ls50{letter-spacing:0.022933pt;}
.ls2{letter-spacing:0.023424pt;}
.ls51{letter-spacing:0.028800pt;}
.ls4{letter-spacing:0.029280pt;}
.ls52{letter-spacing:0.030933pt;}
.ls5{letter-spacing:0.035136pt;}
.ls17{letter-spacing:0.036267pt;}
.ls1{letter-spacing:0.037280pt;}
.ls4c{letter-spacing:0.037333pt;}
.ls74{letter-spacing:0.040000pt;}
.ls6{letter-spacing:0.040992pt;}
.ls4e{letter-spacing:0.045333pt;}
.ls16{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.052704pt;}
.ls54{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.057067pt;}
.ls34{letter-spacing:0.062400pt;}
.ls84{letter-spacing:0.080000pt;}
.ls62{letter-spacing:0.093600pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.096933pt;}
.ls80{letter-spacing:0.100000pt;}
.ls82{letter-spacing:0.120000pt;}
.ls64{letter-spacing:0.124800pt;}
.ls38{letter-spacing:0.144000pt;}
.ls61{letter-spacing:0.145600pt;}
.ls42{letter-spacing:0.156000pt;}
.ls49{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.160400pt;}
.ls7d{letter-spacing:0.180000pt;}
.ls2f{letter-spacing:0.181333pt;}
.ls43{letter-spacing:0.187200pt;}
.ls39{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.199104pt;}
.ls7c{letter-spacing:0.200000pt;}
.ls3d{letter-spacing:0.218400pt;}
.ls1a{letter-spacing:0.219200pt;}
.ls6e{letter-spacing:0.220800pt;}
.ls35{letter-spacing:0.240000pt;}
.ls44{letter-spacing:0.249600pt;}
.ls48{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.269733pt;}
.ls23{letter-spacing:0.272000pt;}
.ls81{letter-spacing:0.280000pt;}
.ls3c{letter-spacing:0.280800pt;}
.ls2b{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.317333pt;}
.ls8b{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls6a{letter-spacing:0.343200pt;}
.ls7a{letter-spacing:0.360000pt;}
.ls47{letter-spacing:0.374400pt;}
.ls73{letter-spacing:0.380000pt;}
.ls32{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.392933pt;}
.ls72{letter-spacing:0.400000pt;}
.ls3b{letter-spacing:0.405600pt;}
.ls4b{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.432000pt;}
.ls63{letter-spacing:0.436800pt;}
.ls21{letter-spacing:0.437733pt;}
.ls15{letter-spacing:0.443200pt;}
.ls2c{letter-spacing:0.453333pt;}
.ls33{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.528000pt;}
.ls69{letter-spacing:0.530400pt;}
.ls70{letter-spacing:0.561600pt;}
.ls1e{letter-spacing:0.565200pt;}
.ls36{letter-spacing:0.576000pt;}
.ls7f{letter-spacing:0.596000pt;}
.ls7e{letter-spacing:0.600000pt;}
.ls31{letter-spacing:0.624000pt;}
.ls2e{letter-spacing:0.634667pt;}
.ls28{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.680000pt;}
.ls71{letter-spacing:0.720000pt;}
.ls8c{letter-spacing:0.800000pt;}
.ls88{letter-spacing:0.840000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls6d{letter-spacing:0.864000pt;}
.ls2d{letter-spacing:0.906667pt;}
.ls6c{letter-spacing:0.960000pt;}
.ls10{letter-spacing:2.304000pt;}
.ls30{letter-spacing:2.400000pt;}
.ls11{letter-spacing:2.460000pt;}
.ls53{letter-spacing:13.104000pt;}
.lse{letter-spacing:138.119616pt;}
.ws13{word-spacing:-13.393333pt;}
.ws2{word-spacing:-13.263840pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.ws38{word-spacing:-12.085333pt;}
.ws36{word-spacing:-11.472000pt;}
.ws79{word-spacing:-11.136000pt;}
.ws75{word-spacing:-11.040000pt;}
.ws31{word-spacing:-10.992000pt;}
.ws14{word-spacing:-10.986667pt;}
.ws46{word-spacing:-10.896000pt;}
.ws11{word-spacing:-10.837333pt;}
.ws4c{word-spacing:-10.752000pt;}
.ws4b{word-spacing:-10.704000pt;}
.ws35{word-spacing:-10.464000pt;}
.ws77{word-spacing:-10.368000pt;}
.ws74{word-spacing:-10.320000pt;}
.wsa5{word-spacing:-9.936000pt;}
.ws88{word-spacing:-9.160000pt;}
.wsa3{word-spacing:-9.120000pt;}
.wsa2{word-spacing:-9.080000pt;}
.ws89{word-spacing:-9.040000pt;}
.ws8b{word-spacing:-8.880000pt;}
.wsa0{word-spacing:-8.860000pt;}
.wsa1{word-spacing:-8.840000pt;}
.ws8d{word-spacing:-8.760000pt;}
.ws8a{word-spacing:-8.600000pt;}
.ws8c{word-spacing:-8.520000pt;}
.ws5d{word-spacing:-8.474667pt;}
.wsa4{word-spacing:-8.320000pt;}
.ws55{word-spacing:-8.101333pt;}
.ws7b{word-spacing:-7.644000pt;}
.ws71{word-spacing:-7.612800pt;}
.ws6d{word-spacing:-7.519200pt;}
.ws2b{word-spacing:-7.488000pt;}
.ws37{word-spacing:-7.456800pt;}
.ws72{word-spacing:-7.425600pt;}
.ws2c{word-spacing:-7.363200pt;}
.ws34{word-spacing:-7.332000pt;}
.ws2d{word-spacing:-7.300800pt;}
.ws32{word-spacing:-7.269600pt;}
.ws30{word-spacing:-7.238400pt;}
.ws6e{word-spacing:-7.207200pt;}
.ws6c{word-spacing:-7.176000pt;}
.ws33{word-spacing:-7.144800pt;}
.ws15{word-spacing:-7.082400pt;}
.ws7a{word-spacing:-7.051200pt;}
.ws2f{word-spacing:-7.020000pt;}
.ws70{word-spacing:-6.988800pt;}
.ws2e{word-spacing:-6.957600pt;}
.ws50{word-spacing:-6.926400pt;}
.ws39{word-spacing:-6.895200pt;}
.ws4e{word-spacing:-6.864000pt;}
.ws4f{word-spacing:-6.614400pt;}
.ws6f{word-spacing:-6.583200pt;}
.ws9f{word-spacing:-6.360000pt;}
.ws16{word-spacing:-5.893333pt;}
.ws5e{word-spacing:-5.654133pt;}
.ws5a{word-spacing:-5.411467pt;}
.ws5b{word-spacing:-5.387200pt;}
.ws18{word-spacing:-3.626667pt;}
.ws17{word-spacing:-2.912000pt;}
.ws2a{word-spacing:-2.453333pt;}
.ws12{word-spacing:-2.346667pt;}
.ws65{word-spacing:-2.016000pt;}
.ws7f{word-spacing:-1.680000pt;}
.ws1e{word-spacing:-1.632000pt;}
.ws20{word-spacing:-1.584000pt;}
.ws62{word-spacing:-1.536000pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws9a{word-spacing:-1.400000pt;}
.ws42{word-spacing:-1.392000pt;}
.ws96{word-spacing:-1.360000pt;}
.ws7e{word-spacing:-1.296000pt;}
.wsac{word-spacing:-1.280000pt;}
.ws84{word-spacing:-1.248000pt;}
.ws9d{word-spacing:-1.240000pt;}
.wsba{word-spacing:-1.232000pt;}
.ws76{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.152000pt;}
.ws9b{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.104000pt;}
.wsa8{word-spacing:-1.080000pt;}
.ws6b{word-spacing:-1.056000pt;}
.wsa7{word-spacing:-1.040000pt;}
.ws19{word-spacing:-1.008000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws94{word-spacing:-0.920000pt;}
.ws3a{word-spacing:-0.912000pt;}
.ws25{word-spacing:-0.906667pt;}
.wsb3{word-spacing:-0.880000pt;}
.ws64{word-spacing:-0.864000pt;}
.ws67{word-spacing:-0.858667pt;}
.ws66{word-spacing:-0.821333pt;}
.ws86{word-spacing:-0.816000pt;}
.ws60{word-spacing:-0.768000pt;}
.ws9e{word-spacing:-0.760000pt;}
.ws68{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.680000pt;}
.ws85{word-spacing:-0.672000pt;}
.wsb4{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.634667pt;}
.ws8e{word-spacing:-0.624000pt;}
.ws97{word-spacing:-0.600000pt;}
.ws21{word-spacing:-0.576000pt;}
.ws1c{word-spacing:-0.528000pt;}
.ws69{word-spacing:-0.522667pt;}
.ws95{word-spacing:-0.520000pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.440000pt;}
.ws3f{word-spacing:-0.432000pt;}
.ws63{word-spacing:-0.426667pt;}
.wsa6{word-spacing:-0.400000pt;}
.ws40{word-spacing:-0.384000pt;}
.ws99{word-spacing:-0.360000pt;}
.ws87{word-spacing:-0.336000pt;}
.ws22{word-spacing:-0.288000pt;}
.wsad{word-spacing:-0.280000pt;}
.ws28{word-spacing:-0.272000pt;}
.ws44{word-spacing:-0.266667pt;}
.ws23{word-spacing:-0.240000pt;}
.wsab{word-spacing:-0.200000pt;}
.ws82{word-spacing:-0.192000pt;}
.ws29{word-spacing:-0.181333pt;}
.ws10{word-spacing:-0.169824pt;}
.ws4a{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.158112pt;}
.ws3d{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.134688pt;}
.wsaa{word-spacing:-0.120000pt;}
.ws4d{word-spacing:-0.096000pt;}
.wsb5{word-spacing:-0.080000pt;}
.ws7{word-spacing:-0.076128pt;}
.ws61{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.048000pt;}
.wsb0{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws98{word-spacing:0.040000pt;}
.ws3c{word-spacing:0.048000pt;}
.ws6{word-spacing:0.067104pt;}
.wsa9{word-spacing:0.080000pt;}
.ws5{word-spacing:0.082016pt;}
.ws48{word-spacing:0.096000pt;}
.wsb2{word-spacing:0.120000pt;}
.ws24{word-spacing:0.136000pt;}
.ws41{word-spacing:0.144000pt;}
.ws92{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.192000pt;}
.ws4{word-spacing:0.208768pt;}
.ws45{word-spacing:0.240000pt;}
.ws47{word-spacing:0.288000pt;}
.ws43{word-spacing:0.336000pt;}
.ws93{word-spacing:0.384000pt;}
.ws73{word-spacing:0.432000pt;}
.ws80{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.528000pt;}
.wsae{word-spacing:0.560000pt;}
.ws90{word-spacing:0.576000pt;}
.ws1b{word-spacing:0.624000pt;}
.ws8f{word-spacing:0.672000pt;}
.ws78{word-spacing:0.720000pt;}
.wsb6{word-spacing:0.880000pt;}
.ws83{word-spacing:1.008000pt;}
.wsb7{word-spacing:1.040000pt;}
.wsb9{word-spacing:1.056000pt;}
.ws81{word-spacing:1.104000pt;}
.wsb1{word-spacing:1.120000pt;}
.wsaf{word-spacing:1.200000pt;}
.wsb8{word-spacing:1.248000pt;}
.ws7c{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.418667pt;}
.wsb{word-spacing:7.208736pt;}
.ws9{word-spacing:7.852896pt;}
.wsa{word-spacing:7.858752pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
.ws58{word-spacing:60.554667pt;}
.ws5c{word-spacing:69.514667pt;}
.ws5f{word-spacing:75.077333pt;}
.ws59{word-spacing:80.490667pt;}
.ws52{word-spacing:81.760000pt;}
.ws57{word-spacing:83.593067pt;}
.ws53{word-spacing:95.386667pt;}
.ws51{word-spacing:108.677333pt;}
.ws54{word-spacing:115.098667pt;}
.ws56{word-spacing:273.470400pt;}
._2a{margin-left:-11.485867pt;}
._d{margin-left:-10.152000pt;}
._6{margin-left:-9.056000pt;}
._2b{margin-left:-7.248000pt;}
._2{margin-left:-5.990400pt;}
._b{margin-left:-5.040000pt;}
._4{margin-left:-4.097600pt;}
._3{margin-left:-2.856533pt;}
._1{margin-left:-1.578667pt;}
._0{width:1.171200pt;}
._5{width:2.293333pt;}
._29{width:3.633067pt;}
._a{width:5.292267pt;}
._8{width:6.712533pt;}
._c{width:8.775467pt;}
._e{width:9.921600pt;}
._9{width:11.131200pt;}
._28{width:13.584000pt;}
._f{width:36.101333pt;}
._7{width:42.530133pt;}
._12{width:74.252267pt;}
._21{width:82.823467pt;}
._20{width:83.891733pt;}
._1f{width:86.585067pt;}
._27{width:88.965333pt;}
._16{width:92.512000pt;}
._23{width:93.781333pt;}
._10{width:100.249600pt;}
._1e{width:101.434667pt;}
._18{width:104.146133pt;}
._15{width:105.792533pt;}
._25{width:118.229867pt;}
._13{width:120.848000pt;}
._22{width:129.998400pt;}
._26{width:131.490933pt;}
._1c{width:132.752533pt;}
._17{width:144.330667pt;}
._19{width:153.290667pt;}
._1d{width:167.328000pt;}
._11{width:191.105600pt;}
._1a{width:204.246133pt;}
._14{width:205.930667pt;}
._24{width:209.491467pt;}
._1b{width:217.653333pt;}
.fse{font-size:24.266667pt;}
.fsa{font-size:29.466667pt;}
.fs9{font-size:31.200000pt;}
.fs7{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.560000pt;}
.fsc{font-size:96.000000pt;}
.fs6{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:14.853333pt;}
.y2a{bottom:24.175867pt;}
.y2b{bottom:24.225600pt;}
.y22{bottom:50.053333pt;}
.y1e{bottom:55.893333pt;}
.y59{bottom:60.718133pt;}
.ya1{bottom:60.937333pt;}
.y119{bottom:61.046800pt;}
.yaf{bottom:68.117067pt;}
.y21{bottom:68.693333pt;}
.y58{bottom:74.051467pt;}
.ya0{bottom:74.269333pt;}
.y118{bottom:74.378800pt;}
.y1a1{bottom:77.820267pt;}
.yae{bottom:81.449067pt;}
.y15b{bottom:82.346667pt;}
.y20{bottom:87.333333pt;}
.y57{bottom:87.384800pt;}
.y9f{bottom:87.601333pt;}
.y117{bottom:87.710800pt;}
.yda{bottom:90.266267pt;}
.y1a0{bottom:91.152267pt;}
.y15a{bottom:93.676667pt;}
.yad{bottom:94.782400pt;}
.y56{bottom:100.718133pt;}
.y9e{bottom:100.941333pt;}
.y116{bottom:101.042800pt;}
.yd9{bottom:103.599600pt;}
.y159{bottom:105.006667pt;}
.yac{bottom:108.115733pt;}
.y19f{bottom:110.484267pt;}
.y55{bottom:114.051467pt;}
.y9d{bottom:114.273333pt;}
.y115{bottom:114.384133pt;}
.y158{bottom:116.336667pt;}
.yd8{bottom:116.932933pt;}
.yab{bottom:121.449067pt;}
.y54{bottom:127.384800pt;}
.y9c{bottom:127.605333pt;}
.y157{bottom:127.666667pt;}
.y114{bottom:127.716133pt;}
.y27{bottom:128.480000pt;}
.y19e{bottom:129.816267pt;}
.yd7{bottom:130.266267pt;}
.yaa{bottom:134.781067pt;}
.y156{bottom:138.996667pt;}
.y53{bottom:140.718133pt;}
.y9b{bottom:140.937333pt;}
.y113{bottom:141.048133pt;}
.y19d{bottom:143.149600pt;}
.yd6{bottom:143.599600pt;}
.y26{bottom:147.120000pt;}
.y155{bottom:150.326667pt;}
.y9a{bottom:154.269333pt;}
.y112{bottom:154.380133pt;}
.yd5{bottom:156.932933pt;}
.y52{bottom:157.899467pt;}
.y154{bottom:161.656667pt;}
.y1b{bottom:163.113413pt;}
.ya9{bottom:163.221200pt;}
.y25{bottom:165.760000pt;}
.y99{bottom:167.601333pt;}
.y111{bottom:167.712133pt;}
.yd4{bottom:170.266267pt;}
.y19c{bottom:172.486933pt;}
.y153{bottom:172.986667pt;}
.ya8{bottom:176.553200pt;}
.y98{bottom:180.933333pt;}
.y110{bottom:181.044133pt;}
.yd3{bottom:183.599600pt;}
.y1a{bottom:183.755813pt;}
.y152{bottom:184.316667pt;}
.y24{bottom:184.400000pt;}
.y19b{bottom:185.818933pt;}
.ya7{bottom:189.885200pt;}
.y10f{bottom:194.376133pt;}
.y151{bottom:195.646667pt;}
.yd2{bottom:196.931600pt;}
.y19a{bottom:199.150933pt;}
.y51{bottom:200.609600pt;}
.ya6{bottom:203.217200pt;}
.y19{bottom:204.310373pt;}
.y150{bottom:206.976667pt;}
.y97{bottom:207.712133pt;}
.y199{bottom:212.482933pt;}
.y50{bottom:213.944267pt;}
.ya5{bottom:216.549200pt;}
.y14f{bottom:218.306667pt;}
.y96{bottom:221.044133pt;}
.y18{bottom:224.872160pt;}
.y198{bottom:225.816267pt;}
.yd1{bottom:226.266267pt;}
.y4f{bottom:227.276267pt;}
.y14e{bottom:229.636667pt;}
.y95{bottom:234.376133pt;}
.yd0{bottom:239.599600pt;}
.y4e{bottom:240.610933pt;}
.y14d{bottom:240.966667pt;}
.ya4{bottom:244.986667pt;}
.y17{bottom:245.514560pt;}
.y10e{bottom:247.708133pt;}
.y94{bottom:247.718800pt;}
.y14c{bottom:252.296667pt;}
.ycf{bottom:252.932933pt;}
.y4d{bottom:253.942933pt;}
.y197{bottom:255.166933pt;}
.ya3{bottom:258.318667pt;}
.y10d{bottom:261.041467pt;}
.y93{bottom:261.050800pt;}
.y14b{bottom:263.626667pt;}
.yce{bottom:266.270133pt;}
.y4c{bottom:267.278933pt;}
.y196{bottom:268.498933pt;}
.y23{bottom:271.160000pt;}
.ya2{bottom:271.650667pt;}
.y92{bottom:274.382800pt;}
.y14a{bottom:274.956667pt;}
.ycd{bottom:279.602133pt;}
.y4b{bottom:280.610933pt;}
.y195{bottom:281.830933pt;}
.y149{bottom:286.286667pt;}
.y91{bottom:287.714800pt;}
.y10c{bottom:287.834933pt;}
.ycc{bottom:292.934133pt;}
.y4a{bottom:293.942933pt;}
.y194{bottom:295.162933pt;}
.y148{bottom:297.616667pt;}
.y90{bottom:301.046800pt;}
.y10b{bottom:301.166933pt;}
.y16{bottom:306.094880pt;}
.ycb{bottom:306.266133pt;}
.y49{bottom:307.277600pt;}
.y193{bottom:308.494933pt;}
.y147{bottom:308.946667pt;}
.y8f{bottom:314.378800pt;}
.y10a{bottom:314.498933pt;}
.yca{bottom:319.598133pt;}
.y146{bottom:320.276667pt;}
.y48{bottom:320.609600pt;}
.y192{bottom:321.826933pt;}
.yc9{bottom:321.996133pt;}
.y8e{bottom:327.710800pt;}
.y109{bottom:327.830933pt;}
.y145{bottom:331.606667pt;}
.y47{bottom:333.942933pt;}
.y191{bottom:335.158933pt;}
.yc8{bottom:335.328133pt;}
.y15{bottom:340.015760pt;}
.y8d{bottom:341.042800pt;}
.y108{bottom:341.162933pt;}
.y144{bottom:342.936667pt;}
.y46{bottom:347.276267pt;}
.y190{bottom:348.490933pt;}
.yc7{bottom:348.660133pt;}
.y143{bottom:354.266667pt;}
.y8c{bottom:354.374800pt;}
.y107{bottom:354.494933pt;}
.y45{bottom:360.610933pt;}
.y18f{bottom:361.822933pt;}
.y142{bottom:365.600000pt;}
.y8b{bottom:367.708133pt;}
.y106{bottom:367.826933pt;}
.ye3{bottom:372.639600pt;}
.y14{bottom:373.936640pt;}
.y44{bottom:373.942933pt;}
.y18e{bottom:375.154933pt;}
.y105{bottom:381.158933pt;}
.ye2{bottom:385.971600pt;}
.y43{bottom:387.276267pt;}
.y18d{bottom:388.486933pt;}
.y141{bottom:393.013467pt;}
.y8a{bottom:394.489600pt;}
.y104{bottom:394.490933pt;}
.ye1{bottom:399.303600pt;}
.y42{bottom:400.644267pt;}
.y18c{bottom:401.818933pt;}
.y140{bottom:406.345467pt;}
.y89{bottom:407.821600pt;}
.y103{bottom:407.822933pt;}
.y13{bottom:407.857520pt;}
.ye0{bottom:412.635600pt;}
.y41{bottom:413.976267pt;}
.y18b{bottom:415.150933pt;}
.y13f{bottom:419.677467pt;}
.y88{bottom:421.153600pt;}
.y102{bottom:421.154933pt;}
.ydf{bottom:425.967600pt;}
.y18a{bottom:428.482933pt;}
.y13e{bottom:433.009467pt;}
.y87{bottom:434.485600pt;}
.y101{bottom:434.486933pt;}
.y12{bottom:441.778400pt;}
.y189{bottom:441.816267pt;}
.y13d{bottom:446.341467pt;}
.y86{bottom:447.817600pt;}
.y100{bottom:447.818933pt;}
.y40{bottom:455.976267pt;}
.y13c{bottom:459.673467pt;}
.y85{bottom:461.150933pt;}
.y3f{bottom:470.640267pt;}
.y188{bottom:471.296267pt;}
.y13b{bottom:473.016133pt;}
.y84{bottom:474.484267pt;}
.y11{bottom:475.699280pt;}
.y187{bottom:482.626267pt;}
.y3e{bottom:485.304267pt;}
.y13a{bottom:486.348133pt;}
.y83{bottom:487.817600pt;}
.yff{bottom:487.821600pt;}
.y186{bottom:493.956267pt;}
.y139{bottom:499.680133pt;}
.y3d{bottom:499.968267pt;}
.yfe{bottom:501.153600pt;}
.y82{bottom:501.161600pt;}
.y185{bottom:505.286267pt;}
.y10{bottom:509.620160pt;}
.y138{bottom:513.012133pt;}
.yfd{bottom:514.485600pt;}
.y81{bottom:514.493600pt;}
.y3c{bottom:514.632267pt;}
.y184{bottom:516.616267pt;}
.y137{bottom:526.344133pt;}
.yfc{bottom:527.817600pt;}
.y80{bottom:527.825600pt;}
.y183{bottom:527.946267pt;}
.y3b{bottom:529.296267pt;}
.y182{bottom:539.276267pt;}
.y136{bottom:539.676133pt;}
.yfb{bottom:541.152267pt;}
.y7f{bottom:541.157600pt;}
.yf{bottom:543.541040pt;}
.y3a{bottom:543.960267pt;}
.y181{bottom:550.606267pt;}
.y135{bottom:553.008133pt;}
.yfa{bottom:554.484267pt;}
.y7e{bottom:554.489600pt;}
.y39{bottom:558.624267pt;}
.y180{bottom:561.936267pt;}
.y28{bottom:564.560000pt;}
.y134{bottom:566.340133pt;}
.yf9{bottom:567.817600pt;}
.y7d{bottom:567.821600pt;}
.y17f{bottom:573.266267pt;}
.y38{bottom:573.288267pt;}
.ye{bottom:577.461920pt;}
.y133{bottom:579.678667pt;}
.y7c{bottom:581.153600pt;}
.yf8{bottom:581.154933pt;}
.y17e{bottom:584.596267pt;}
.y37{bottom:587.952267pt;}
.y132{bottom:593.010667pt;}
.y1d{bottom:593.360000pt;}
.y7b{bottom:594.485600pt;}
.yf7{bottom:594.486933pt;}
.y17d{bottom:595.926267pt;}
.y36{bottom:602.616267pt;}
.y131{bottom:606.342667pt;}
.y17c{bottom:607.256267pt;}
.y7a{bottom:607.817600pt;}
.yf6{bottom:607.818933pt;}
.yd{bottom:611.382800pt;}
.y35{bottom:617.280267pt;}
.y17b{bottom:618.586267pt;}
.y130{bottom:619.674667pt;}
.yf5{bottom:621.150933pt;}
.y79{bottom:621.154933pt;}
.y17a{bottom:629.916267pt;}
.yc6{bottom:631.484267pt;}
.y34{bottom:631.944267pt;}
.y12f{bottom:633.006667pt;}
.y78{bottom:634.486933pt;}
.yf4{bottom:634.489600pt;}
.y179{bottom:641.246267pt;}
.yc5{bottom:644.822933pt;}
.yc{bottom:645.303680pt;}
.y12e{bottom:646.338667pt;}
.y33{bottom:646.608267pt;}
.y77{bottom:647.818933pt;}
.yf3{bottom:647.821600pt;}
.y178{bottom:652.576267pt;}
.yc4{bottom:658.154933pt;}
.y76{bottom:661.150933pt;}
.yf2{bottom:661.153600pt;}
.y177{bottom:663.906267pt;}
.y1f{bottom:666.000000pt;}
.yc3{bottom:671.486933pt;}
.y5c{bottom:672.933333pt;}
.y32{bottom:673.274933pt;}
.y12d{bottom:673.760133pt;}
.yf1{bottom:674.485600pt;}
.y75{bottom:674.488267pt;}
.y176{bottom:675.236267pt;}
.yb{bottom:679.224560pt;}
.yc2{bottom:684.818933pt;}
.y175{bottom:686.566267pt;}
.y12c{bottom:687.092133pt;}
.yf0{bottom:687.817600pt;}
.y74{bottom:687.820267pt;}
.y31{bottom:689.274933pt;}
.y5b{bottom:691.600000pt;}
.y174{bottom:697.896267pt;}
.yc1{bottom:698.150933pt;}
.y12b{bottom:700.424133pt;}
.y73{bottom:701.152267pt;}
.y30{bottom:705.274933pt;}
.yde{bottom:707.944667pt;}
.y173{bottom:709.226267pt;}
.y5a{bottom:710.266667pt;}
.yc0{bottom:711.482933pt;}
.ya{bottom:713.145440pt;}
.y12a{bottom:713.756133pt;}
.y72{bottom:714.484267pt;}
.y172{bottom:720.556267pt;}
.ydd{bottom:721.276667pt;}
.y129{bottom:727.088133pt;}
.yef{bottom:727.817600pt;}
.y71{bottom:727.818933pt;}
.y171{bottom:731.886267pt;}
.y2f{bottom:734.597600pt;}
.ydc{bottom:734.610000pt;}
.ybf{bottom:738.310933pt;}
.y128{bottom:740.420133pt;}
.y70{bottom:741.150933pt;}
.y170{bottom:743.216267pt;}
.y9{bottom:747.066320pt;}
.ydb{bottom:747.942000pt;}
.y127{bottom:753.752133pt;}
.ybe{bottom:753.813600pt;}
.y6f{bottom:754.485600pt;}
.y16f{bottom:754.546267pt;}
.y16e{bottom:765.876267pt;}
.y126{bottom:767.084133pt;}
.y6e{bottom:767.817600pt;}
.ybd{bottom:769.313600pt;}
.y2e{bottom:774.602933pt;}
.y16d{bottom:777.206267pt;}
.y125{bottom:780.416133pt;}
.y8{bottom:780.987200pt;}
.y6d{bottom:781.150933pt;}
.ybc{bottom:784.813600pt;}
.y16c{bottom:788.536267pt;}
.y124{bottom:793.748133pt;}
.y6c{bottom:794.485600pt;}
.yee{bottom:794.490933pt;}
.y16b{bottom:799.866267pt;}
.y7{bottom:800.036907pt;}
.ybb{bottom:800.310933pt;}
.y123{bottom:807.080133pt;}
.y6b{bottom:807.817600pt;}
.yed{bottom:807.822933pt;}
.y16a{bottom:811.196267pt;}
.y2d{bottom:814.608267pt;}
.yba{bottom:815.813600pt;}
.y122{bottom:820.412133pt;}
.y6a{bottom:821.152267pt;}
.yec{bottom:821.154933pt;}
.y169{bottom:822.526267pt;}
.y6{bottom:822.833627pt;}
.y5d{bottom:823.475200pt;}
.yb9{bottom:831.313600pt;}
.y121{bottom:833.744133pt;}
.y168{bottom:833.856267pt;}
.y69{bottom:834.484267pt;}
.yeb{bottom:834.486933pt;}
.y167{bottom:845.186267pt;}
.y5{bottom:845.630347pt;}
.yb8{bottom:846.805600pt;}
.y68{bottom:847.817600pt;}
.yea{bottom:847.818933pt;}
.y1a8{bottom:855.157600pt;}
.y166{bottom:856.516267pt;}
.y67{bottom:861.150933pt;}
.y120{bottom:861.160267pt;}
.yb7{bottom:862.308267pt;}
.y165{bottom:867.846267pt;}
.y4{bottom:868.427067pt;}
.y1a7{bottom:868.489600pt;}
.y66{bottom:874.484267pt;}
.ye9{bottom:874.490933pt;}
.y11f{bottom:874.492267pt;}
.yb6{bottom:877.810933pt;}
.y164{bottom:879.176267pt;}
.y1a6{bottom:881.821600pt;}
.y65{bottom:887.818933pt;}
.ye8{bottom:887.822933pt;}
.y11e{bottom:887.824267pt;}
.y163{bottom:890.506267pt;}
.yb5{bottom:893.313600pt;}
.y1a5{bottom:895.153600pt;}
.y64{bottom:901.150933pt;}
.ye7{bottom:901.154933pt;}
.y11d{bottom:901.156267pt;}
.y162{bottom:901.836267pt;}
.y3{bottom:906.107067pt;}
.y1a4{bottom:908.485600pt;}
.yb4{bottom:908.808267pt;}
.y161{bottom:913.166267pt;}
.y63{bottom:914.484267pt;}
.ye6{bottom:914.486933pt;}
.y11c{bottom:914.488267pt;}
.y1a3{bottom:921.817600pt;}
.yb3{bottom:924.310933pt;}
.y160{bottom:924.496267pt;}
.y62{bottom:927.817600pt;}
.ye5{bottom:927.818933pt;}
.y11b{bottom:927.820267pt;}
.y1a2{bottom:935.149600pt;}
.y15f{bottom:935.826267pt;}
.yb2{bottom:939.813600pt;}
.y61{bottom:941.150933pt;}
.y11a{bottom:941.152267pt;}
.y2{bottom:942.261867pt;}
.y15e{bottom:947.156267pt;}
.ye4{bottom:954.482933pt;}
.y60{bottom:954.484267pt;}
.yb1{bottom:955.316267pt;}
.y15d{bottom:958.486267pt;}
.y1c{bottom:965.547067pt;}
.y5f{bottom:967.816267pt;}
.y15c{bottom:969.816267pt;}
.yb0{bottom:970.816267pt;}
.y1{bottom:972.347067pt;}
.y5e{bottom:1013.202667pt;}
.y2c{bottom:1013.446133pt;}
.h17{height:21.193555pt;}
.h23{height:26.730667pt;}
.h22{height:27.589333pt;}
.h31{height:28.640000pt;}
.h8{height:29.000000pt;}
.h21{height:30.019733pt;}
.h26{height:30.078933pt;}
.h27{height:30.089600pt;}
.h24{height:30.100267pt;}
.h25{height:30.110933pt;}
.hc{height:30.687500pt;}
.h19{height:32.605469pt;}
.h28{height:34.272000pt;}
.h12{height:34.368000pt;}
.h11{height:34.523438pt;}
.h2c{height:35.466667pt;}
.h1e{height:35.472000pt;}
.h18{height:36.585555pt;}
.hb{height:38.359375pt;}
.h13{height:38.515200pt;}
.h2f{height:38.595200pt;}
.h1c{height:38.611200pt;}
.h1f{height:38.616533pt;}
.h2e{height:38.621867pt;}
.h20{height:38.626667pt;}
.h2d{height:38.627200pt;}
.h29{height:38.632533pt;}
.h30{height:38.633067pt;}
.h1b{height:38.637867pt;}
.h2b{height:38.638400pt;}
.h16{height:38.643200pt;}
.h15{height:38.648533pt;}
.h14{height:38.653867pt;}
.h2a{height:38.659200pt;}
.hd{height:39.318359pt;}
.h1{height:40.031250pt;}
.h3{height:40.717500pt;}
.h1d{height:42.195312pt;}
.h10{height:43.066927pt;}
.hf{height:43.067460pt;}
.h2{height:51.842500pt;}
.h5{height:56.546875pt;}
.h1a{height:69.046875pt;}
.h4{height:70.026667pt;}
.he{height:99.734375pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.701333pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x9{left:54.392400pt;}
.xe{left:57.462533pt;}
.xd{left:66.689200pt;}
.x3{left:94.560000pt;}
.xf{left:125.291333pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.x2{left:181.525600pt;}
.xb{left:207.516800pt;}
.x10{left:211.683333pt;}
.xc{left:223.514667pt;}
.x15{left:266.976667pt;}
.x12{left:403.476667pt;}
.x11{left:405.256667pt;}
.x13{left:411.874667pt;}
.x4{left:431.840000pt;}
.xa{left:519.632533pt;}
.x1{left:660.400000pt;}
.x14{left:732.628800pt;}
.x8{left:733.540267pt;}
}




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