
    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_367c003d708f3108ea7b4f5d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_324b6d7bdda36b949f8c5038.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_558341f9e20e1c4210c4f705.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_66f8301916a2c531c253c8fb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ded93bbaa964b861dc0f9e11.woff')format("woff");}.ff5{font-family:ff5;line-height:1.145996;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_afc7a546909f4d93764ac30d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15{transform:matrix(0.229266,0.000000,-0.076422,0.238033,0,0);-ms-transform:matrix(0.229266,0.000000,-0.076422,0.238033,0,0);-webkit-transform:matrix(0.229266,0.000000,-0.076422,0.238033,0,0);}
.m19{transform:matrix(0.235842,0.000000,-0.078614,0.237318,0,0);-ms-transform:matrix(0.235842,0.000000,-0.078614,0.237318,0,0);-webkit-transform:matrix(0.235842,0.000000,-0.078614,0.237318,0,0);}
.m18{transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);-ms-transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);-webkit-transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);}
.ma{transform:matrix(0.237102,0.000000,-0.079035,0.237178,0,0);-ms-transform:matrix(0.237102,0.000000,-0.079035,0.237178,0,0);-webkit-transform:matrix(0.237102,0.000000,-0.079035,0.237178,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1a{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.md{transform:matrix(0.239112,0.000000,-0.079704,0.236954,0,0);-ms-transform:matrix(0.239112,0.000000,-0.079704,0.236954,0,0);-webkit-transform:matrix(0.239112,0.000000,-0.079704,0.236954,0,0);}
.m14{transform:matrix(0.240792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240792,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245765,0.000000,-0.081922,0.236196,0,0);-ms-transform:matrix(0.245765,0.000000,-0.081922,0.236196,0,0);-webkit-transform:matrix(0.245765,0.000000,-0.081922,0.236196,0,0);}
.m12{transform:matrix(0.246304,0.000000,-0.082102,0.236134,0,0);-ms-transform:matrix(0.246304,0.000000,-0.082102,0.236134,0,0);-webkit-transform:matrix(0.246304,0.000000,-0.082102,0.236134,0,0);}
.m17{transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248446,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,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);}
.mc{transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252278,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254741,0.000000,-0.084915,0.235137,0,0);-ms-transform:matrix(0.254741,0.000000,-0.084915,0.235137,0,0);-webkit-transform:matrix(0.254741,0.000000,-0.084915,0.235137,0,0);}
.m4{transform:matrix(0.256376,0.000000,-0.085459,0.234940,0,0);-ms-transform:matrix(0.256376,0.000000,-0.085459,0.234940,0,0);-webkit-transform:matrix(0.256376,0.000000,-0.085459,0.234940,0,0);}
.me{transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260127,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260766,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270843,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.272553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272553,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272554,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272810,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272811,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-47.404500px;}
.v7{vertical-align:-44.143617px;}
.v6{vertical-align:-38.220000px;}
.vb{vertical-align:-35.292443px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-5.748480px;}
.v8{vertical-align:-2.880600px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880600px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls4b{letter-spacing:-4.980000px;}
.ls8e{letter-spacing:-1.314720px;}
.ls8f{letter-spacing:-0.956160px;}
.ls19{letter-spacing:-0.918000px;}
.ls16{letter-spacing:-0.810000px;}
.ls48{letter-spacing:-0.776880px;}
.ls18{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.597600px;}
.ls1b{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.537840px;}
.ls20{letter-spacing:-0.478080px;}
.ls49{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.358560px;}
.ls4c{letter-spacing:-0.312185px;}
.ls13{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.239040px;}
.ls56{letter-spacing:-0.235580px;}
.ls15{letter-spacing:-0.216000px;}
.ls52{letter-spacing:-0.158501px;}
.ls7d{letter-spacing:-0.157781px;}
.ls57{letter-spacing:-0.157054px;}
.ls77{letter-spacing:-0.150149px;}
.ls75{letter-spacing:-0.144000px;}
.ls4a{letter-spacing:-0.119520px;}
.ls1a{letter-spacing:-0.108000px;}
.ls74{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.059760px;}
.ls11{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.008640px;}
.ls43{letter-spacing:0.017280px;}
.ls5f{letter-spacing:0.018000px;}
.ls5a{letter-spacing:0.038880px;}
.ls28{letter-spacing:0.048600px;}
.ls47{letter-spacing:0.052560px;}
.ls85{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.059760px;}
.ls5e{letter-spacing:0.072000px;}
.ls89{letter-spacing:0.095616px;}
.ls6{letter-spacing:0.108000px;}
.ls95{letter-spacing:0.113544px;}
.ls44{letter-spacing:0.115920px;}
.ls1d{letter-spacing:0.119520px;}
.ls5c{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.144000px;}
.ls46{letter-spacing:0.159408px;}
.ls7f{letter-spacing:0.160560px;}
.ls81{letter-spacing:0.161352px;}
.ls5{letter-spacing:0.162000px;}
.ls2a{letter-spacing:0.167760px;}
.ls29{letter-spacing:0.177048px;}
.ls10{letter-spacing:0.179280px;}
.ls32{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.182880px;}
.ls38{letter-spacing:0.192816px;}
.ls31{letter-spacing:0.206640px;}
.ls30{letter-spacing:0.210240px;}
.ls6d{letter-spacing:0.214344px;}
.lsf{letter-spacing:0.215136px;}
.ls5d{letter-spacing:0.216000px;}
.ls68{letter-spacing:0.221112px;}
.ls3d{letter-spacing:0.223200px;}
.ls2c{letter-spacing:0.231120px;}
.ls9{letter-spacing:0.239040px;}
.ls2b{letter-spacing:0.252720px;}
.ls84{letter-spacing:0.259920px;}
.ls63{letter-spacing:0.262944px;}
.ls40{letter-spacing:0.271440px;}
.ls86{letter-spacing:0.274896px;}
.ls1c{letter-spacing:0.288000px;}
.ls93{letter-spacing:0.292824px;}
.ls91{letter-spacing:0.298800px;}
.ls6e{letter-spacing:0.322704px;}
.ls3f{letter-spacing:0.331920px;}
.ls12{letter-spacing:0.336960px;}
.ls45{letter-spacing:0.340128px;}
.lsa{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.ls83{letter-spacing:0.884448px;}
.ls39{letter-spacing:0.896400px;}
.ls3a{letter-spacing:0.968112px;}
.ls73{letter-spacing:1.058984px;}
.ls2d{letter-spacing:1.613520px;}
.ls3c{letter-spacing:1.625472px;}
.ls3b{letter-spacing:1.643400px;}
.ls64{letter-spacing:2.300760px;}
.ls27{letter-spacing:2.330640px;}
.ls2e{letter-spacing:2.348568px;}
.ls33{letter-spacing:2.520000px;}
.ls8d{letter-spacing:3.011904px;}
.ls67{letter-spacing:3.047760px;}
.ls2{letter-spacing:3.078000px;}
.lsb{letter-spacing:3.764880px;}
.ls4{letter-spacing:3.780000px;}
.ls88{letter-spacing:4.482000px;}
.ls87{letter-spacing:4.493952px;}
.ls82{letter-spacing:5.199120px;}
.ls26{letter-spacing:5.916240px;}
.ls8b{letter-spacing:6.633360px;}
.ls62{letter-spacing:7.350480px;}
.ls92{letter-spacing:7.368408px;}
.lse{letter-spacing:8.127360px;}
.ls3{letter-spacing:8.802000px;}
.ls25{letter-spacing:9.561600px;}
.lsd{letter-spacing:10.995840px;}
.lsc{letter-spacing:11.712960px;}
.ls80{letter-spacing:12.430080px;}
.ls94{letter-spacing:13.147200px;}
.ls8c{letter-spacing:15.298560px;}
.ls90{letter-spacing:15.776640px;}
.ls78{letter-spacing:36.322695px;}
.ls41{letter-spacing:40.946430px;}
.ls4e{letter-spacing:40.989227px;}
.ls4f{letter-spacing:42.461294px;}
.ls58{letter-spacing:45.377619px;}
.ls76{letter-spacing:50.600146px;}
.ls54{letter-spacing:51.003157px;}
.ls4d{letter-spacing:62.520000px;}
.ls66{letter-spacing:74.056125px;}
.ls6a{letter-spacing:83.885902px;}
.ls71{letter-spacing:94.076246px;}
.ls69{letter-spacing:94.202232px;}
.ls7b{letter-spacing:95.458249px;}
.ls72{letter-spacing:100.874525px;}
.ls79{letter-spacing:106.277843px;}
.ls1{letter-spacing:106.758000px;}
.ls7a{letter-spacing:109.849154px;}
.ls36{letter-spacing:111.440234px;}
.ls53{letter-spacing:114.913428px;}
.ls6b{letter-spacing:117.775908px;}
.ls7c{letter-spacing:119.028919px;}
.ls6c{letter-spacing:122.737803px;}
.ls50{letter-spacing:126.897221px;}
.ls55{letter-spacing:135.347583px;}
.ls6f{letter-spacing:137.742638px;}
.ls3e{letter-spacing:146.896722px;}
.ls61{letter-spacing:167.940000px;}
.ls60{letter-spacing:167.994000px;}
.ls65{letter-spacing:199.002375px;}
.ls37{letter-spacing:201.032640px;}
.ls59{letter-spacing:214.972215px;}
.ls51{letter-spacing:216.283141px;}
.ls7e{letter-spacing:260.233133px;}
.ls42{letter-spacing:355.224303px;}
.ls35{letter-spacing:396.960000px;}
.ls70{letter-spacing:420.406689px;}
.ls5b{letter-spacing:422.118000px;}
.ls8a{letter-spacing:846.000000px;}
.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;}
}
.ws90{word-spacing:-273.381533px;}
.ws71{word-spacing:-216.283141px;}
.ws78{word-spacing:-214.972215px;}
.ws5c{word-spacing:-161.048622px;}
.ws5d{word-spacing:-149.370333px;}
.ws8a{word-spacing:-127.117685px;}
.ws70{word-spacing:-126.897221px;}
.ws88{word-spacing:-120.403454px;}
.ws9d{word-spacing:-119.028919px;}
.ws89{word-spacing:-117.405226px;}
.ws85{word-spacing:-116.808743px;}
.ws59{word-spacing:-101.164908px;}
.ws5b{word-spacing:-100.608687px;}
.ws87{word-spacing:-98.930002px;}
.ws9c{word-spacing:-95.458249px;}
.ws86{word-spacing:-91.412470px;}
.ws82{word-spacing:-67.428075px;}
.ws8b{word-spacing:-61.277628px;}
.ws56{word-spacing:-57.348000px;}
.ws76{word-spacing:-51.003157px;}
.ws97{word-spacing:-50.600146px;}
.ws77{word-spacing:-45.377619px;}
.ws6f{word-spacing:-42.461294px;}
.ws99{word-spacing:-36.322695px;}
.ws6{word-spacing:-18.288000px;}
.ws0{word-spacing:-17.712000px;}
.wsd{word-spacing:-15.298560px;}
.ws9f{word-spacing:-15.199920px;}
.ws9{word-spacing:-15.179040px;}
.wsb{word-spacing:-15.059520px;}
.wsc{word-spacing:-14.999760px;}
.ws52{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.880240px;}
.ws53{word-spacing:-14.820480px;}
.ws8{word-spacing:-14.700960px;}
.wse{word-spacing:-14.581440px;}
.ws7{word-spacing:-14.461920px;}
.ws9e{word-spacing:-14.342400px;}
.ws83{word-spacing:-14.163120px;}
.ws1{word-spacing:-13.878000px;}
.ws7b{word-spacing:-13.662000px;}
.ws3{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.284000px;}
.ws7f{word-spacing:-13.122000px;}
.ws7d{word-spacing:-12.960000px;}
.ws7e{word-spacing:-12.690000px;}
.ws60{word-spacing:-11.790328px;}
.ws84{word-spacing:-10.530900px;}
.ws61{word-spacing:-9.758880px;}
.wsf{word-spacing:-9.720000px;}
.ws7a{word-spacing:-9.000000px;}
.ws7c{word-spacing:-8.928000px;}
.ws80{word-spacing:-8.856000px;}
.ws4a{word-spacing:-3.764880px;}
.ws4c{word-spacing:-3.346560px;}
.ws4b{word-spacing:-2.808720px;}
.ws75{word-spacing:-2.629440px;}
.ws1a{word-spacing:-2.484000px;}
.ws6c{word-spacing:-2.330640px;}
.wsaa{word-spacing:-2.211120px;}
.ws93{word-spacing:-2.151360px;}
.ws6e{word-spacing:-2.091600px;}
.ws74{word-spacing:-1.912320px;}
.ws17{word-spacing:-1.782000px;}
.ws6d{word-spacing:-1.733040px;}
.ws2a{word-spacing:-1.620000px;}
.ws35{word-spacing:-1.613520px;}
.wsac{word-spacing:-1.494000px;}
.ws3a{word-spacing:-1.374480px;}
.wsab{word-spacing:-1.195200px;}
.ws24{word-spacing:-0.918000px;}
.ws38{word-spacing:-0.896400px;}
.ws73{word-spacing:-0.776880px;}
.ws45{word-spacing:-0.657360px;}
.ws11{word-spacing:-0.505440px;}
.ws5a{word-spacing:-0.495315px;}
.ws5f{word-spacing:-0.490792px;}
.ws37{word-spacing:-0.478080px;}
.ws20{word-spacing:-0.378000px;}
.ws43{word-spacing:-0.358560px;}
.ws18{word-spacing:-0.324000px;}
.wsa6{word-spacing:-0.298800px;}
.ws44{word-spacing:-0.239040px;}
.ws19{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.179280px;}
.ws14{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.119520px;}
.ws2e{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.059760px;}
.ws10{word-spacing:0.000000px;}
.ws12{word-spacing:0.054000px;}
.ws36{word-spacing:0.059760px;}
.ws29{word-spacing:0.108000px;}
.ws92{word-spacing:0.119520px;}
.ws98{word-spacing:0.150149px;}
.ws2f{word-spacing:0.162000px;}
.ws1f{word-spacing:0.216000px;}
.ws50{word-spacing:0.239040px;}
.ws6b{word-spacing:0.298800px;}
.ws39{word-spacing:0.358560px;}
.ws25{word-spacing:0.378000px;}
.ws79{word-spacing:0.418320px;}
.ws6a{word-spacing:0.432000px;}
.wsa1{word-spacing:0.478080px;}
.ws32{word-spacing:0.537840px;}
.ws13{word-spacing:0.540000px;}
.ws2b{word-spacing:0.594000px;}
.ws51{word-spacing:0.597600px;}
.wsa8{word-spacing:0.657360px;}
.ws26{word-spacing:0.702000px;}
.ws46{word-spacing:0.776880px;}
.ws27{word-spacing:0.918000px;}
.wsa9{word-spacing:0.956160px;}
.wsb7{word-spacing:1.135440px;}
.ws41{word-spacing:1.254960px;}
.wsba{word-spacing:1.314720px;}
.wsa7{word-spacing:1.374480px;}
.ws40{word-spacing:1.494000px;}
.ws3f{word-spacing:1.673280px;}
.ws69{word-spacing:1.972080px;}
.ws67{word-spacing:2.091600px;}
.ws66{word-spacing:2.211120px;}
.ws2d{word-spacing:2.214000px;}
.ws68{word-spacing:2.390400px;}
.ws30{word-spacing:2.689200px;}
.ws15{word-spacing:2.700000px;}
.ws31{word-spacing:2.928240px;}
.ws2c{word-spacing:2.970000px;}
.ws9a{word-spacing:3.107520px;}
.ws1e{word-spacing:3.294000px;}
.ws21{word-spacing:3.402000px;}
.ws3b{word-spacing:3.406320px;}
.ws9b{word-spacing:3.525840px;}
.ws42{word-spacing:3.645360px;}
.ws72{word-spacing:3.824640px;}
.ws16{word-spacing:3.888000px;}
.ws22{word-spacing:3.996000px;}
.wsae{word-spacing:4.123440px;}
.ws28{word-spacing:4.158000px;}
.wsad{word-spacing:4.362480px;}
.wsaf{word-spacing:4.541760px;}
.wsa4{word-spacing:4.840560px;}
.ws34{word-spacing:5.079600px;}
.wsbe{word-spacing:5.139360px;}
.wsa5{word-spacing:5.258880px;}
.ws65{word-spacing:5.557680px;}
.wsa3{word-spacing:5.796720px;}
.wsb6{word-spacing:5.856480px;}
.wsa2{word-spacing:5.976000px;}
.wsb9{word-spacing:6.274800px;}
.wsb0{word-spacing:6.394320px;}
.wsb8{word-spacing:6.693120px;}
.ws96{word-spacing:7.051680px;}
.ws95{word-spacing:7.290720px;}
.ws94{word-spacing:7.470000px;}
.ws4f{word-spacing:7.768800px;}
.ws4e{word-spacing:8.007840px;}
.ws1b{word-spacing:8.424000px;}
.ws62{word-spacing:8.485920px;}
.ws1c{word-spacing:8.694000px;}
.ws1d{word-spacing:9.180000px;}
.ws63{word-spacing:9.203040px;}
.ws64{word-spacing:9.621360px;}
.ws23{word-spacing:9.774000px;}
.wsb3{word-spacing:9.920160px;}
.wsb2{word-spacing:10.039680px;}
.ws47{word-spacing:10.637280px;}
.wsb4{word-spacing:10.876320px;}
.wsb1{word-spacing:11.055600px;}
.ws49{word-spacing:11.354400px;}
.ws48{word-spacing:11.593440px;}
.wsb5{word-spacing:11.772720px;}
.ws3d{word-spacing:12.071520px;}
.ws3e{word-spacing:12.310560px;}
.wsa0{word-spacing:12.489840px;}
.wsbd{word-spacing:13.027680px;}
.wsbc{word-spacing:14.461920px;}
.wsbb{word-spacing:15.179040px;}
.ws8d{word-spacing:27.106741px;}
.ws57{word-spacing:32.759459px;}
.ws8f{word-spacing:38.915875px;}
.ws55{word-spacing:39.924967px;}
.ws5e{word-spacing:41.411108px;}
.ws81{word-spacing:42.732348px;}
.ws8e{word-spacing:95.378494px;}
.ws54{word-spacing:115.896000px;}
.ws8c{word-spacing:314.404541px;}
.ws91{word-spacing:324.344731px;}
.ws58{word-spacing:480.840000px;}
._17{margin-left:-549.688100px;}
._1f{margin-left:-314.789663px;}
._12{margin-left:-200.793600px;}
._11{margin-left:-199.419120px;}
._21{margin-left:-192.905280px;}
._1e{margin-left:-141.810480px;}
._22{margin-left:-57.548880px;}
._25{margin-left:-15.358320px;}
._20{margin-left:-6.454080px;}
._1{margin-left:-4.119336px;}
._19{margin-left:-3.083688px;}
._0{margin-left:-1.945944px;}
._2{width:1.657944px;}
._3{width:2.990448px;}
._4{width:4.269888px;}
._24{width:5.442696px;}
._7{width:6.999408px;}
._6{width:8.844480px;}
._8{width:10.163376px;}
._5{width:11.488896px;}
._23{width:12.699792px;}
._1b{width:16.015680px;}
._16{width:42.614201px;}
._b{width:49.949568px;}
._a{width:62.093557px;}
._1d{width:65.491153px;}
._18{width:71.472960px;}
._13{width:92.572392px;}
._15{width:96.998527px;}
._14{width:102.355854px;}
._1a{width:130.743196px;}
._c{width:140.281974px;}
._1c{width:163.620000px;}
._f{width:167.925600px;}
._d{width:169.692000px;}
._e{width:182.459522px;}
._10{width:201.032640px;}
._9{width:229.663951px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:34.687200px;}
.fs4{font-size:36.000000px;}
.fs1e{font-size:36.815400px;}
.fs13{font-size:37.537200px;}
.fs23{font-size:37.947332px;}
.fs20{font-size:38.782810px;}
.fs6{font-size:38.880000px;}
.fs10{font-size:39.263400px;}
.fse{font-size:39.625200px;}
.fs22{font-size:40.983118px;}
.fs1c{font-size:42.123000px;}
.fs16{font-size:42.123600px;}
.fs19{font-size:42.217200px;}
.fsc{font-size:42.583200px;}
.fs3{font-size:48.240000px;}
.fs1f{font-size:52.593600px;}
.fs14{font-size:53.625000px;}
.fs0{font-size:54.000000px;}
.fs21{font-size:55.404150px;}
.fs11{font-size:56.091000px;}
.fs15{font-size:56.577406px;}
.fsf{font-size:56.607600px;}
.fs12{font-size:59.123272px;}
.fs5{font-size:59.760000px;}
.fs9{font-size:60.000000px;}
.fs18{font-size:60.176400px;}
.fs1a{font-size:60.310200px;}
.fsb{font-size:60.832800px;}
.fs7{font-size:62.992571px;}
.fs1d{font-size:63.201752px;}
.fs17{font-size:63.693193px;}
.fsa{font-size:63.846148px;}
.fs1b{font-size:63.851672px;}
.fsd{font-size:64.677973px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y4d{bottom:3.202500px;}
.ybc{bottom:3.204000px;}
.yef{bottom:3.240000px;}
.y88{bottom:3.420000px;}
.ydc{bottom:3.600000px;}
.yc5{bottom:3.624350px;}
.yd3{bottom:4.643100px;}
.ya6{bottom:4.783273px;}
.y70{bottom:4.954032px;}
.yb8{bottom:5.122950px;}
.yb6{bottom:5.123100px;}
.y63{bottom:5.277600px;}
.y54{bottom:5.672100px;}
.yd6{bottom:6.252199px;}
.yc6{bottom:7.522200px;}
.yd4{bottom:8.066678px;}
.ya3{bottom:8.253300px;}
.y6d{bottom:8.587500px;}
.y64{bottom:8.948250px;}
.yb7{bottom:9.025050px;}
.y56{bottom:9.616500px;}
.y55{bottom:9.616650px;}
.y53{bottom:9.616800px;}
.y4e{bottom:11.109300px;}
.ybd{bottom:11.169079px;}
.ya2{bottom:14.286150px;}
.yc4{bottom:14.292000px;}
.yd5{bottom:14.509394px;}
.yd0{bottom:14.997450px;}
.y50{bottom:14.999700px;}
.y4f{bottom:14.999850px;}
.yc1{bottom:15.073714px;}
.ybf{bottom:15.073864px;}
.y6f{bottom:15.996863px;}
.ya5{bottom:16.635644px;}
.yd2{bottom:18.414469px;}
.y72{bottom:19.626830px;}
.y73{bottom:19.630350px;}
.ya8{bottom:20.106019px;}
.ya9{bottom:20.109450px;}
.yf5{bottom:20.340000px;}
.yee{bottom:20.520000px;}
.y92{bottom:20.700000px;}
.y4b{bottom:21.750000px;}
.ybb{bottom:22.757700px;}
.y4c{bottom:24.562500px;}
.y6e{bottom:25.371000px;}
.y6c{bottom:25.374794px;}
.ya4{bottom:25.597650px;}
.yc0{bottom:26.668350px;}
.ybe{bottom:26.668500px;}
.yd1{bottom:26.790000px;}
.y71{bottom:29.008050px;}
.ya7{bottom:29.074800px;}
.y6b{bottom:35.318250px;}
.y10e{bottom:37.800000px;}
.y34{bottom:54.720000px;}
.y2{bottom:104.220000px;}
.y1{bottom:107.100000px;}
.y32{bottom:136.679940px;}
.yda{bottom:138.420000px;}
.yd9{bottom:138.424680px;}
.y31{bottom:153.786240px;}
.yd8{bottom:156.785940px;}
.yfe{bottom:163.934640px;}
.ycf{bottom:170.745000px;}
.y30{bottom:171.071820px;}
.yfd{bottom:181.220220px;}
.y2f{bottom:188.357400px;}
.yd7{bottom:191.880000px;}
.y124{bottom:196.920000px;}
.yfc{bottom:198.505800px;}
.y81{bottom:200.880000px;}
.y2e{bottom:205.642980px;}
.y123{bottom:214.135380px;}
.yfb{bottom:215.791380px;}
.yce{bottom:216.173700px;}
.y80{bottom:220.836960px;}
.y2d{bottom:222.928560px;}
.y122{bottom:231.420960px;}
.yfa{bottom:232.897680px;}
.ycd{bottom:233.268840px;}
.y7f{bottom:238.122540px;}
.y2c{bottom:240.034860px;}
.y121{bottom:248.527260px;}
.yf9{bottom:250.183260px;}
.ycc{bottom:250.554420px;}
.y7e{bottom:255.408120px;}
.y2b{bottom:257.320440px;}
.y120{bottom:265.812840px;}
.ycb{bottom:266.400000px;}
.yf8{bottom:267.468840px;}
.yc9{bottom:267.835500px;}
.yca{bottom:267.840000px;}
.y7d{bottom:272.514420px;}
.y2a{bottom:274.606020px;}
.yf7{bottom:284.754420px;}
.yc8{bottom:286.196760px;}
.y7c{bottom:289.798920px;}
.y29{bottom:291.891600px;}
.y11f{bottom:295.155000px;}
.yc3{bottom:300.120000px;}
.yf6{bottom:302.040000px;}
.yc7{bottom:307.800000px;}
.y28{bottom:309.177180px;}
.yf4{bottom:316.080000px;}
.y7b{bottom:319.141080px;}
.yba{bottom:325.695000px;}
.y27{bottom:326.462760px;}
.yc2{bottom:340.740000px;}
.y26{bottom:343.569060px;}
.y11e{bottom:345.368340px;}
.yf3{bottom:350.460000px;}
.y25{bottom:360.854640px;}
.y11d{bottom:362.653920px;}
.y7a{bottom:369.354420px;}
.yb5{bottom:369.421500px;}
.y24{bottom:378.140220px;}
.yb9{bottom:378.540000px;}
.y11c{bottom:379.939500px;}
.yf2{bottom:385.020000px;}
.y79{bottom:386.634420px;}
.y23{bottom:395.425800px;}
.y11b{bottom:397.045800px;}
.yb4{bottom:398.323260px;}
.y78{bottom:402.480000px;}
.y77{bottom:403.920000px;}
.y76{bottom:403.924680px;}
.y22{bottom:412.711380px;}
.y11a{bottom:414.331380px;}
.yb3{bottom:415.608840px;}
.y75{bottom:422.285940px;}
.y108{bottom:426.240000px;}
.y21{bottom:429.996960px;}
.y119{bottom:431.616960px;}
.yb2{bottom:432.894420px;}
.y6a{bottom:436.246500px;}
.y107{bottom:443.520000px;}
.y20{bottom:447.103260px;}
.yb1{bottom:448.740000px;}
.y118{bottom:448.902540px;}
.yaf{bottom:450.158040px;}
.yb0{bottom:450.180000px;}
.y74{bottom:457.380000px;}
.y106{bottom:457.560000px;}
.y1f{bottom:464.388840px;}
.y117{bottom:466.188120px;}
.yae{bottom:468.519300px;}
.y1e{bottom:481.674420px;}
.y116{bottom:483.473700px;}
.yad{bottom:485.625600px;}
.y69{bottom:485.634420px;}
.y105{bottom:491.940000px;}
.y1d{bottom:498.960000px;}
.y115{bottom:500.580000px;}
.yac{bottom:502.911180px;}
.y68{bottom:502.914420px;}
.yf1{bottom:513.180000px;}
.y67{bottom:520.190460px;}
.yab{bottom:520.196760px;}
.y104{bottom:526.500000px;}
.y1c{bottom:531.900000px;}
.y114{bottom:533.520000px;}
.ya1{bottom:534.120000px;}
.y66{bottom:537.476040px;}
.yf0{bottom:547.740000px;}
.y62{bottom:551.220000px;}
.yaa{bottom:556.740000px;}
.y65{bottom:558.900000px;}
.y61{bottom:577.794420px;}
.ya0{bottom:580.303260px;}
.y1b{bottom:581.530500px;}
.y113{bottom:583.543260px;}
.y60{bottom:595.062540px;}
.y9f{bottom:597.588840px;}
.y112{bottom:600.828840px;}
.y140{bottom:607.314420px;}
.y5f{bottom:612.168840px;}
.y9e{bottom:614.874420px;}
.y1a{bottom:615.010500px;}
.y111{bottom:618.114420px;}
.y13f{bottom:624.600000px;}
.y5e{bottom:629.454420px;}
.y19{bottom:630.495000px;}
.y9d{bottom:632.160000px;}
.y110{bottom:635.400000px;}
.y13e{bottom:641.880000px;}
.y18{bottom:646.155000px;}
.y5c{bottom:646.738740px;}
.y5d{bottom:646.740000px;}
.y10d{bottom:649.260000px;}
.y9c{bottom:650.508120px;}
.y103{bottom:654.840000px;}
.y13d{bottom:658.980000px;}
.y17{bottom:661.639500px;}
.y5b{bottom:663.660000px;}
.y59{bottom:665.095500px;}
.y5a{bottom:665.100000px;}
.y9b{bottom:667.793700px;}
.y10f{bottom:669.780000px;}
.yed{bottom:675.900000px;}
.y13c{bottom:676.260000px;}
.y16{bottom:677.124000px;}
.y58{bottom:683.456760px;}
.y9a{bottom:684.900000px;}
.y102{bottom:689.220000px;}
.y15{bottom:692.608500px;}
.y13b{bottom:693.540000px;}
.y52{bottom:697.395000px;}
.y98{bottom:699.660000px;}
.y10c{bottom:701.100000px;}
.y57{bottom:705.060000px;}
.y14{bottom:708.268500px;}
.yec{bottom:710.460000px;}
.y13a{bottom:710.820000px;}
.y99{bottom:711.720000px;}
.y10b{bottom:718.380000px;}
.y4a{bottom:722.220000px;}
.y13{bottom:723.753000px;}
.y139{bottom:728.100000px;}
.y96{bottom:734.940000px;}
.y51{bottom:737.280000px;}
.y12{bottom:739.237500px;}
.y138{bottom:745.277400px;}
.y97{bottom:747.000000px;}
.y11{bottom:754.722000px;}
.y137{bottom:762.383700px;}
.y49{bottom:765.894420px;}
.y94{bottom:770.220000px;}
.y10{bottom:770.382000px;}
.y136{bottom:779.669280px;}
.y95{bottom:782.280000px;}
.y48{bottom:783.174420px;}
.yf{bottom:785.866500px;}
.y135{bottom:796.954860px;}
.y47{bottom:800.454420px;}
.ye{bottom:801.351000px;}
.y91{bottom:805.500000px;}
.y134{bottom:814.240440px;}
.y46{bottom:816.300000px;}
.yd{bottom:816.835500px;}
.y93{bottom:817.560000px;}
.y44{bottom:817.738740px;}
.y45{bottom:817.740000px;}
.y133{bottom:831.526020px;}
.yc{bottom:832.495500px;}
.y43{bottom:836.094420px;}
.y90{bottom:840.780000px;}
.yeb{bottom:841.680000px;}
.yb{bottom:847.980000px;}
.y132{bottom:848.632320px;}
.y101{bottom:851.940000px;}
.y42{bottom:853.373550px;}
.yea{bottom:857.468340px;}
.y8f{bottom:858.780000px;}
.ya{bottom:863.464500px;}
.y131{bottom:865.917900px;}
.y41{bottom:870.474420px;}
.ye9{bottom:874.753920px;}
.y8e{bottom:876.780000px;}
.y9{bottom:878.949000px;}
.y130{bottom:883.203480px;}
.y40{bottom:887.757120px;}
.ye8{bottom:892.039500px;}
.y8d{bottom:894.780000px;}
.y12f{bottom:900.489060px;}
.ye7{bottom:909.145800px;}
.y10a{bottom:909.720000px;}
.y8c{bottom:912.780000px;}
.y3f{bottom:916.920000px;}
.y12e{bottom:917.774640px;}
.ye6{bottom:926.431380px;}
.y109{bottom:927.000000px;}
.y8b{bottom:930.780000px;}
.y12d{bottom:935.060220px;}
.y8{bottom:940.144500px;}
.ye5{bottom:943.716960px;}
.y8a{bottom:948.780000px;}
.y12c{bottom:952.166520px;}
.ye4{bottom:961.002540px;}
.y7{bottom:962.640000px;}
.y89{bottom:966.780000px;}
.y3e{bottom:967.860000px;}
.y12b{bottom:969.452100px;}
.ye3{bottom:978.288120px;}
.y86{bottom:979.200000px;}
.y100{bottom:983.473920px;}
.y87{bottom:984.780000px;}
.y12a{bottom:986.737680px;}
.y6{bottom:991.440000px;}
.ye2{bottom:995.394420px;}
.yff{bottom:1000.759500px;}
.y129{bottom:1004.202540px;}
.y85{bottom:1006.008120px;}
.ye1{bottom:1012.674420px;}
.y3d{bottom:1017.865800px;}
.y128{bottom:1021.488120px;}
.y84{bottom:1023.293700px;}
.ye0{bottom:1029.960000px;}
.y5{bottom:1034.466660px;}
.y3c{bottom:1035.151380px;}
.y127{bottom:1038.773700px;}
.y83{bottom:1040.400000px;}
.ydf{bottom:1044.720000px;}
.y3b{bottom:1052.436960px;}
.y82{bottom:1054.440000px;}
.y126{bottom:1055.880000px;}
.y4{bottom:1060.560000px;}
.yde{bottom:1063.440000px;}
.y3a{bottom:1069.722540px;}
.ydb{bottom:1082.160000px;}
.ydd{bottom:1085.040000px;}
.y39{bottom:1087.008120px;}
.y125{bottom:1088.640000px;}
.y38{bottom:1104.293700px;}
.y37{bottom:1121.400000px;}
.y33{bottom:1122.840000px;}
.y36{bottom:1143.000000px;}
.y35{bottom:1160.280000px;}
.h3{height:15.480000px;}
.h30{height:17.280000px;}
.h54{height:18.000000px;}
.h57{height:18.001500px;}
.h22{height:23.100000px;}
.h17{height:24.084570px;}
.h15{height:24.101507px;}
.h1b{height:24.825000px;}
.h6{height:25.013672px;}
.h4f{height:25.562255px;}
.h3a{height:25.575000px;}
.h46{height:25.576500px;}
.h4d{height:25.580232px;}
.h35{height:26.063427px;}
.h33{height:26.081756px;}
.h29{height:27.261990px;}
.h27{height:27.281161px;}
.h23{height:27.513200px;}
.h48{height:29.247513px;}
.h47{height:29.268081px;}
.h3b{height:29.268497px;}
.h42{height:29.312919px;}
.h40{height:29.333533px;}
.h1d{height:29.567046px;}
.h5d{height:34.378500px;}
.h5b{height:34.380000px;}
.h31{height:34.560000px;}
.h55{height:35.149457px;}
.h51{height:35.923335px;}
.h50{height:36.517627px;}
.h4e{height:36.543307px;}
.h36{height:37.233765px;}
.h34{height:37.259949px;}
.h7{height:37.494141px;}
.h2{height:37.520508px;}
.h2a{height:38.945997px;}
.h28{height:38.973385px;}
.h3d{height:39.017807px;}
.h44{height:39.104506px;}
.h56{height:40.400508px;}
.h14{height:40.500000px;}
.hd{height:40.501406px;}
.hb{height:41.493516px;}
.h9{height:41.522695px;}
.h2d{height:41.527015px;}
.he{height:41.534215px;}
.hf{height:41.544415px;}
.h11{height:41.545015px;}
.h10{height:41.548495px;}
.h25{height:41.560855px;}
.h4b{height:41.567335px;}
.h21{height:41.592535px;}
.h2e{height:41.614855px;}
.h18{height:41.660156px;}
.h16{height:41.689453px;}
.h49{height:41.782637px;}
.h41{height:41.904988px;}
.h4c{height:42.075000px;}
.h1e{height:42.238399px;}
.h1c{height:42.268103px;}
.h32{height:42.900000px;}
.h3f{height:43.725000px;}
.h26{height:46.273500px;}
.h13{height:47.282695px;}
.hc{height:47.875781px;}
.h53{height:48.715849px;}
.h8{height:48.796875px;}
.h38{height:49.671204px;}
.h2f{height:50.027344px;}
.h52{height:51.319176px;}
.h60{height:51.840000px;}
.h2c{height:51.955384px;}
.h37{height:52.405927px;}
.h24{height:52.433895px;}
.h2b{height:54.764085px;}
.h1a{height:55.576172px;}
.h3e{height:55.739566px;}
.h45{height:55.863501px;}
.h20{height:56.347569px;}
.h4{height:57.092344px;}
.h12{height:58.348099px;}
.h4a{height:58.541858px;}
.h3c{height:58.997064px;}
.h19{height:59.138742px;}
.h43{height:59.143858px;}
.h1f{height:59.909235px;}
.h5{height:60.878320px;}
.h39{height:61.113867px;}
.ha{height:68.761500px;}
.h5a{height:128.160000px;}
.h59{height:128.161500px;}
.h58{height:128.338500px;}
.h5c{height:128.340000px;}
.h5e{height:191.160000px;}
.h5f{height:191.341500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:32.220000px;}
.wa{width:41.760000px;}
.wc{width:62.640000px;}
.wb{width:73.620000px;}
.w13{width:90.000000px;}
.wf{width:102.225000px;}
.w5{width:103.798500px;}
.w14{width:105.120000px;}
.w10{width:108.673500px;}
.we{width:109.573500px;}
.w8{width:136.980000px;}
.wd{width:143.400000px;}
.w7{width:154.200000px;}
.w15{width:158.760000px;}
.w12{width:163.620000px;}
.w11{width:176.398500px;}
.w6{width:194.398500px;}
.w9{width:222.661500px;}
.w1a{width:222.840000px;}
.w1b{width:223.380000px;}
.w4{width:224.250000px;}
.w16{width:226.441500px;}
.w17{width:226.618500px;}
.w18{width:226.800000px;}
.w1c{width:233.638500px;}
.w1e{width:337.860000px;}
.w1d{width:342.360000px;}
.w19{width:679.860000px;}
.w1f{width:680.220000px;}
.w3{width:690.660000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:1.750650px;}
.x17{left:3.529200px;}
.x71{left:8.100000px;}
.xd{left:10.800000px;}
.x1c{left:12.099750px;}
.x16{left:13.708500px;}
.x41{left:15.660000px;}
.x3f{left:18.720000px;}
.x48{left:20.340000px;}
.x47{left:22.860000px;}
.x63{left:24.251669px;}
.x3{left:25.560000px;}
.x1f{left:28.009500px;}
.x6d{left:30.600000px;}
.x4f{left:33.355500px;}
.x62{left:35.194407px;}
.x5f{left:36.913200px;}
.x19{left:39.335550px;}
.x1d{left:40.675650px;}
.x3b{left:41.940000px;}
.x5c{left:43.334100px;}
.x4c{left:45.531000px;}
.x58{left:47.131650px;}
.x61{left:49.040700px;}
.x2d{left:50.333700px;}
.x3a{left:52.200000px;}
.x15{left:53.453550px;}
.x43{left:56.520000px;}
.x5a{left:57.845550px;}
.x42{left:59.040000px;}
.x44{left:61.380000px;}
.x1b{left:62.609550px;}
.x57{left:63.841500px;}
.x18{left:65.730000px;}
.x2c{left:69.433500px;}
.x2a{left:70.572600px;}
.x46{left:73.620000px;}
.x45{left:75.960000px;}
.x4e{left:77.531840px;}
.x2b{left:78.983550px;}
.x4a{left:80.460000px;}
.x59{left:82.762950px;}
.x3d{left:84.240000px;}
.x4d{left:88.441050px;}
.x56{left:91.328700px;}
.x55{left:96.954150px;}
.x29{left:98.306974px;}
.x64{left:99.384906px;}
.x14{left:101.280750px;}
.xc{left:105.300000px;}
.xa{left:106.380000px;}
.x4b{left:114.660000px;}
.xe{left:116.100000px;}
.x33{left:121.317660px;}
.x7{left:124.920000px;}
.xb{left:127.620000px;}
.xf{left:131.940000px;}
.x21{left:147.780000px;}
.x9{left:148.864500px;}
.x4{left:152.280000px;}
.x22{left:156.060000px;}
.x60{left:159.372450px;}
.x66{left:162.180000px;}
.x69{left:186.660000px;}
.x25{left:188.280000px;}
.x26{left:197.640000px;}
.x72{left:213.660000px;}
.x6e{left:215.460000px;}
.x74{left:220.320000px;}
.x3c{left:244.800000px;}
.x6{left:258.120000px;}
.x1{left:281.160000px;}
.x10{left:319.320000px;}
.x76{left:324.180000px;}
.x37{left:325.263240px;}
.x11{left:328.680000px;}
.x6f{left:333.000000px;}
.x5{left:338.050260px;}
.x30{left:341.820000px;}
.x38{left:343.620000px;}
.x6a{left:351.000000px;}
.x67{left:361.080000px;}
.x6b{left:369.900000px;}
.x68{left:371.700000px;}
.x35{left:378.360000px;}
.x28{left:391.440000px;}
.x2{left:430.380000px;}
.x5b{left:439.560000px;}
.x20{left:441.180000px;}
.x8{left:446.580000px;}
.x75{left:448.740000px;}
.x36{left:458.289000px;}
.x3e{left:468.180000px;}
.x50{left:480.780000px;}
.x49{left:486.900000px;}
.x23{left:494.280000px;}
.x24{left:501.660000px;}
.x39{left:510.840000px;}
.x65{left:513.720000px;}
.x27{left:531.720000px;}
.x2e{left:545.580000px;}
.x6c{left:547.740000px;}
.x73{left:552.780000px;}
.x12{left:557.100000px;}
.x70{left:559.620000px;}
.x1a{left:561.600000px;}
.x13{left:566.460000px;}
.x40{left:585.180000px;}
.x5d{left:604.440000px;}
.x5e{left:612.180000px;}
.x31{left:619.200000px;}
.x32{left:630.720000px;}
.x51{left:665.820000px;}
.x52{left:673.560000px;}
.x34{left:706.500000px;}
.x53{left:717.300000px;}
.x54{left:725.040000px;}
.x2f{left:786.741480px;}
@media print{
.va{vertical-align:-42.137333pt;}
.v7{vertical-align:-39.238771pt;}
.v6{vertical-align:-33.973333pt;}
.vb{vertical-align:-31.371061pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-5.109760pt;}
.v8{vertical-align:-2.560533pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560533pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls4b{letter-spacing:-4.426667pt;}
.ls8e{letter-spacing:-1.168640pt;}
.ls8f{letter-spacing:-0.849920pt;}
.ls19{letter-spacing:-0.816000pt;}
.ls16{letter-spacing:-0.720000pt;}
.ls48{letter-spacing:-0.690560pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.531200pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.478080pt;}
.ls20{letter-spacing:-0.424960pt;}
.ls49{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.318720pt;}
.ls4c{letter-spacing:-0.277498pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.212480pt;}
.ls56{letter-spacing:-0.209405pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls52{letter-spacing:-0.140890pt;}
.ls7d{letter-spacing:-0.140250pt;}
.ls57{letter-spacing:-0.139603pt;}
.ls77{letter-spacing:-0.133466pt;}
.ls75{letter-spacing:-0.128000pt;}
.ls4a{letter-spacing:-0.106240pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls74{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.053120pt;}
.ls11{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.007680pt;}
.ls43{letter-spacing:0.015360pt;}
.ls5f{letter-spacing:0.016000pt;}
.ls5a{letter-spacing:0.034560pt;}
.ls28{letter-spacing:0.043200pt;}
.ls47{letter-spacing:0.046720pt;}
.ls85{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.053120pt;}
.ls5e{letter-spacing:0.064000pt;}
.ls89{letter-spacing:0.084992pt;}
.ls6{letter-spacing:0.096000pt;}
.ls95{letter-spacing:0.100928pt;}
.ls44{letter-spacing:0.103040pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls5c{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls46{letter-spacing:0.141696pt;}
.ls7f{letter-spacing:0.142720pt;}
.ls81{letter-spacing:0.143424pt;}
.ls5{letter-spacing:0.144000pt;}
.ls2a{letter-spacing:0.149120pt;}
.ls29{letter-spacing:0.157376pt;}
.ls10{letter-spacing:0.159360pt;}
.ls32{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.162560pt;}
.ls38{letter-spacing:0.171392pt;}
.ls31{letter-spacing:0.183680pt;}
.ls30{letter-spacing:0.186880pt;}
.ls6d{letter-spacing:0.190528pt;}
.lsf{letter-spacing:0.191232pt;}
.ls5d{letter-spacing:0.192000pt;}
.ls68{letter-spacing:0.196544pt;}
.ls3d{letter-spacing:0.198400pt;}
.ls2c{letter-spacing:0.205440pt;}
.ls9{letter-spacing:0.212480pt;}
.ls2b{letter-spacing:0.224640pt;}
.ls84{letter-spacing:0.231040pt;}
.ls63{letter-spacing:0.233728pt;}
.ls40{letter-spacing:0.241280pt;}
.ls86{letter-spacing:0.244352pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls93{letter-spacing:0.260288pt;}
.ls91{letter-spacing:0.265600pt;}
.ls6e{letter-spacing:0.286848pt;}
.ls3f{letter-spacing:0.295040pt;}
.ls12{letter-spacing:0.299520pt;}
.ls45{letter-spacing:0.302336pt;}
.lsa{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls83{letter-spacing:0.786176pt;}
.ls39{letter-spacing:0.796800pt;}
.ls3a{letter-spacing:0.860544pt;}
.ls73{letter-spacing:0.941319pt;}
.ls2d{letter-spacing:1.434240pt;}
.ls3c{letter-spacing:1.444864pt;}
.ls3b{letter-spacing:1.460800pt;}
.ls64{letter-spacing:2.045120pt;}
.ls27{letter-spacing:2.071680pt;}
.ls2e{letter-spacing:2.087616pt;}
.ls33{letter-spacing:2.240000pt;}
.ls8d{letter-spacing:2.677248pt;}
.ls67{letter-spacing:2.709120pt;}
.ls2{letter-spacing:2.736000pt;}
.lsb{letter-spacing:3.346560pt;}
.ls4{letter-spacing:3.360000pt;}
.ls88{letter-spacing:3.984000pt;}
.ls87{letter-spacing:3.994624pt;}
.ls82{letter-spacing:4.621440pt;}
.ls26{letter-spacing:5.258880pt;}
.ls8b{letter-spacing:5.896320pt;}
.ls62{letter-spacing:6.533760pt;}
.ls92{letter-spacing:6.549696pt;}
.lse{letter-spacing:7.224320pt;}
.ls3{letter-spacing:7.824000pt;}
.ls25{letter-spacing:8.499200pt;}
.lsd{letter-spacing:9.774080pt;}
.lsc{letter-spacing:10.411520pt;}
.ls80{letter-spacing:11.048960pt;}
.ls94{letter-spacing:11.686400pt;}
.ls8c{letter-spacing:13.598720pt;}
.ls90{letter-spacing:14.023680pt;}
.ls78{letter-spacing:32.286840pt;}
.ls41{letter-spacing:36.396827pt;}
.ls4e{letter-spacing:36.434869pt;}
.ls4f{letter-spacing:37.743373pt;}
.ls58{letter-spacing:40.335661pt;}
.ls76{letter-spacing:44.977907pt;}
.ls54{letter-spacing:45.336139pt;}
.ls4d{letter-spacing:55.573333pt;}
.ls66{letter-spacing:65.827667pt;}
.ls6a{letter-spacing:74.565246pt;}
.ls71{letter-spacing:83.623330pt;}
.ls69{letter-spacing:83.735317pt;}
.ls7b{letter-spacing:84.851777pt;}
.ls72{letter-spacing:89.666244pt;}
.ls79{letter-spacing:94.469194pt;}
.ls1{letter-spacing:94.896000pt;}
.ls7a{letter-spacing:97.643693pt;}
.ls36{letter-spacing:99.057986pt;}
.ls53{letter-spacing:102.145269pt;}
.ls6b{letter-spacing:104.689696pt;}
.ls7c{letter-spacing:105.803484pt;}
.ls6c{letter-spacing:109.100270pt;}
.ls50{letter-spacing:112.797530pt;}
.ls55{letter-spacing:120.308963pt;}
.ls6f{letter-spacing:122.437901pt;}
.ls3e{letter-spacing:130.574864pt;}
.ls61{letter-spacing:149.280000pt;}
.ls60{letter-spacing:149.328000pt;}
.ls65{letter-spacing:176.891000pt;}
.ls37{letter-spacing:178.695680pt;}
.ls59{letter-spacing:191.086414pt;}
.ls51{letter-spacing:192.251681pt;}
.ls7e{letter-spacing:231.318340pt;}
.ls42{letter-spacing:315.754936pt;}
.ls35{letter-spacing:352.853333pt;}
.ls70{letter-spacing:373.694834pt;}
.ls5b{letter-spacing:375.216000pt;}
.ls8a{letter-spacing:752.000000pt;}
.ws90{word-spacing:-243.005807pt;}
.ws71{word-spacing:-192.251681pt;}
.ws78{word-spacing:-191.086414pt;}
.ws5c{word-spacing:-143.154331pt;}
.ws5d{word-spacing:-132.773629pt;}
.ws8a{word-spacing:-112.993498pt;}
.ws70{word-spacing:-112.797530pt;}
.ws88{word-spacing:-107.025293pt;}
.ws9d{word-spacing:-105.803484pt;}
.ws89{word-spacing:-104.360201pt;}
.ws85{word-spacing:-103.829994pt;}
.ws59{word-spacing:-89.924363pt;}
.ws5b{word-spacing:-89.429944pt;}
.ws87{word-spacing:-87.937779pt;}
.ws9c{word-spacing:-84.851777pt;}
.ws86{word-spacing:-81.255529pt;}
.ws82{word-spacing:-59.936067pt;}
.ws8b{word-spacing:-54.469003pt;}
.ws56{word-spacing:-50.976000pt;}
.ws76{word-spacing:-45.336139pt;}
.ws97{word-spacing:-44.977907pt;}
.ws77{word-spacing:-40.335661pt;}
.ws6f{word-spacing:-37.743373pt;}
.ws99{word-spacing:-32.286840pt;}
.ws6{word-spacing:-16.256000pt;}
.ws0{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.598720pt;}
.ws9f{word-spacing:-13.511040pt;}
.ws9{word-spacing:-13.492480pt;}
.wsb{word-spacing:-13.386240pt;}
.wsc{word-spacing:-13.333120pt;}
.ws52{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.226880pt;}
.ws53{word-spacing:-13.173760pt;}
.ws8{word-spacing:-13.067520pt;}
.wse{word-spacing:-12.961280pt;}
.ws7{word-spacing:-12.855040pt;}
.ws9e{word-spacing:-12.748800pt;}
.ws83{word-spacing:-12.589440pt;}
.ws1{word-spacing:-12.336000pt;}
.ws7b{word-spacing:-12.144000pt;}
.ws3{word-spacing:-12.096000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.808000pt;}
.ws7f{word-spacing:-11.664000pt;}
.ws7d{word-spacing:-11.520000pt;}
.ws7e{word-spacing:-11.280000pt;}
.ws60{word-spacing:-10.480292pt;}
.ws84{word-spacing:-9.360800pt;}
.ws61{word-spacing:-8.674560pt;}
.wsf{word-spacing:-8.640000pt;}
.ws7a{word-spacing:-8.000000pt;}
.ws7c{word-spacing:-7.936000pt;}
.ws80{word-spacing:-7.872000pt;}
.ws4a{word-spacing:-3.346560pt;}
.ws4c{word-spacing:-2.974720pt;}
.ws4b{word-spacing:-2.496640pt;}
.ws75{word-spacing:-2.337280pt;}
.ws1a{word-spacing:-2.208000pt;}
.ws6c{word-spacing:-2.071680pt;}
.wsaa{word-spacing:-1.965440pt;}
.ws93{word-spacing:-1.912320pt;}
.ws6e{word-spacing:-1.859200pt;}
.ws74{word-spacing:-1.699840pt;}
.ws17{word-spacing:-1.584000pt;}
.ws6d{word-spacing:-1.540480pt;}
.ws2a{word-spacing:-1.440000pt;}
.ws35{word-spacing:-1.434240pt;}
.wsac{word-spacing:-1.328000pt;}
.ws3a{word-spacing:-1.221760pt;}
.wsab{word-spacing:-1.062400pt;}
.ws24{word-spacing:-0.816000pt;}
.ws38{word-spacing:-0.796800pt;}
.ws73{word-spacing:-0.690560pt;}
.ws45{word-spacing:-0.584320pt;}
.ws11{word-spacing:-0.449280pt;}
.ws5a{word-spacing:-0.440280pt;}
.ws5f{word-spacing:-0.436260pt;}
.ws37{word-spacing:-0.424960pt;}
.ws20{word-spacing:-0.336000pt;}
.ws43{word-spacing:-0.318720pt;}
.ws18{word-spacing:-0.288000pt;}
.wsa6{word-spacing:-0.265600pt;}
.ws44{word-spacing:-0.212480pt;}
.ws19{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.159360pt;}
.ws14{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.106240pt;}
.ws2e{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.053120pt;}
.ws10{word-spacing:0.000000pt;}
.ws12{word-spacing:0.048000pt;}
.ws36{word-spacing:0.053120pt;}
.ws29{word-spacing:0.096000pt;}
.ws92{word-spacing:0.106240pt;}
.ws98{word-spacing:0.133466pt;}
.ws2f{word-spacing:0.144000pt;}
.ws1f{word-spacing:0.192000pt;}
.ws50{word-spacing:0.212480pt;}
.ws6b{word-spacing:0.265600pt;}
.ws39{word-spacing:0.318720pt;}
.ws25{word-spacing:0.336000pt;}
.ws79{word-spacing:0.371840pt;}
.ws6a{word-spacing:0.384000pt;}
.wsa1{word-spacing:0.424960pt;}
.ws32{word-spacing:0.478080pt;}
.ws13{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.528000pt;}
.ws51{word-spacing:0.531200pt;}
.wsa8{word-spacing:0.584320pt;}
.ws26{word-spacing:0.624000pt;}
.ws46{word-spacing:0.690560pt;}
.ws27{word-spacing:0.816000pt;}
.wsa9{word-spacing:0.849920pt;}
.wsb7{word-spacing:1.009280pt;}
.ws41{word-spacing:1.115520pt;}
.wsba{word-spacing:1.168640pt;}
.wsa7{word-spacing:1.221760pt;}
.ws40{word-spacing:1.328000pt;}
.ws3f{word-spacing:1.487360pt;}
.ws69{word-spacing:1.752960pt;}
.ws67{word-spacing:1.859200pt;}
.ws66{word-spacing:1.965440pt;}
.ws2d{word-spacing:1.968000pt;}
.ws68{word-spacing:2.124800pt;}
.ws30{word-spacing:2.390400pt;}
.ws15{word-spacing:2.400000pt;}
.ws31{word-spacing:2.602880pt;}
.ws2c{word-spacing:2.640000pt;}
.ws9a{word-spacing:2.762240pt;}
.ws1e{word-spacing:2.928000pt;}
.ws21{word-spacing:3.024000pt;}
.ws3b{word-spacing:3.027840pt;}
.ws9b{word-spacing:3.134080pt;}
.ws42{word-spacing:3.240320pt;}
.ws72{word-spacing:3.399680pt;}
.ws16{word-spacing:3.456000pt;}
.ws22{word-spacing:3.552000pt;}
.wsae{word-spacing:3.665280pt;}
.ws28{word-spacing:3.696000pt;}
.wsad{word-spacing:3.877760pt;}
.wsaf{word-spacing:4.037120pt;}
.wsa4{word-spacing:4.302720pt;}
.ws34{word-spacing:4.515200pt;}
.wsbe{word-spacing:4.568320pt;}
.wsa5{word-spacing:4.674560pt;}
.ws65{word-spacing:4.940160pt;}
.wsa3{word-spacing:5.152640pt;}
.wsb6{word-spacing:5.205760pt;}
.wsa2{word-spacing:5.312000pt;}
.wsb9{word-spacing:5.577600pt;}
.wsb0{word-spacing:5.683840pt;}
.wsb8{word-spacing:5.949440pt;}
.ws96{word-spacing:6.268160pt;}
.ws95{word-spacing:6.480640pt;}
.ws94{word-spacing:6.640000pt;}
.ws4f{word-spacing:6.905600pt;}
.ws4e{word-spacing:7.118080pt;}
.ws1b{word-spacing:7.488000pt;}
.ws62{word-spacing:7.543040pt;}
.ws1c{word-spacing:7.728000pt;}
.ws1d{word-spacing:8.160000pt;}
.ws63{word-spacing:8.180480pt;}
.ws64{word-spacing:8.552320pt;}
.ws23{word-spacing:8.688000pt;}
.wsb3{word-spacing:8.817920pt;}
.wsb2{word-spacing:8.924160pt;}
.ws47{word-spacing:9.455360pt;}
.wsb4{word-spacing:9.667840pt;}
.wsb1{word-spacing:9.827200pt;}
.ws49{word-spacing:10.092800pt;}
.ws48{word-spacing:10.305280pt;}
.wsb5{word-spacing:10.464640pt;}
.ws3d{word-spacing:10.730240pt;}
.ws3e{word-spacing:10.942720pt;}
.wsa0{word-spacing:11.102080pt;}
.wsbd{word-spacing:11.580160pt;}
.wsbc{word-spacing:12.855040pt;}
.wsbb{word-spacing:13.492480pt;}
.ws8d{word-spacing:24.094881pt;}
.ws57{word-spacing:29.119519pt;}
.ws8f{word-spacing:34.591889pt;}
.ws55{word-spacing:35.488860pt;}
.ws5e{word-spacing:36.809874pt;}
.ws81{word-spacing:37.984310pt;}
.ws8e{word-spacing:84.780883pt;}
.ws54{word-spacing:103.018667pt;}
.ws8c{word-spacing:279.470703pt;}
.ws91{word-spacing:288.306428pt;}
.ws58{word-spacing:427.413333pt;}
._17{margin-left:-488.611644pt;}
._1f{margin-left:-279.813034pt;}
._12{margin-left:-178.483200pt;}
._11{margin-left:-177.261440pt;}
._21{margin-left:-171.471360pt;}
._1e{margin-left:-126.053760pt;}
._22{margin-left:-51.154560pt;}
._25{margin-left:-13.651840pt;}
._20{margin-left:-5.736960pt;}
._1{margin-left:-3.661632pt;}
._19{margin-left:-2.741056pt;}
._0{margin-left:-1.729728pt;}
._2{width:1.473728pt;}
._3{width:2.658176pt;}
._4{width:3.795456pt;}
._24{width:4.837952pt;}
._7{width:6.221696pt;}
._6{width:7.861760pt;}
._8{width:9.034112pt;}
._5{width:10.212352pt;}
._23{width:11.288704pt;}
._1b{width:14.236160pt;}
._16{width:37.879290pt;}
._b{width:44.399616pt;}
._a{width:55.194273pt;}
._1d{width:58.214358pt;}
._18{width:63.531520pt;}
._13{width:82.286571pt;}
._15{width:86.220913pt;}
._14{width:90.982981pt;}
._1a{width:116.216174pt;}
._c{width:124.695088pt;}
._1c{width:145.440000pt;}
._f{width:149.267200pt;}
._d{width:150.837333pt;}
._e{width:162.186242pt;}
._10{width:178.695680pt;}
._9{width:204.145734pt;}
.fs8{font-size:30.833067pt;}
.fs4{font-size:32.000000pt;}
.fs1e{font-size:32.724800pt;}
.fs13{font-size:33.366400pt;}
.fs23{font-size:33.730962pt;}
.fs20{font-size:34.473609pt;}
.fs6{font-size:34.560000pt;}
.fs10{font-size:34.900800pt;}
.fse{font-size:35.222400pt;}
.fs22{font-size:36.429439pt;}
.fs1c{font-size:37.442667pt;}
.fs16{font-size:37.443200pt;}
.fs19{font-size:37.526400pt;}
.fsc{font-size:37.851733pt;}
.fs3{font-size:42.880000pt;}
.fs1f{font-size:46.749867pt;}
.fs14{font-size:47.666667pt;}
.fs0{font-size:48.000000pt;}
.fs21{font-size:49.248133pt;}
.fs11{font-size:49.858667pt;}
.fs15{font-size:50.291027pt;}
.fsf{font-size:50.317867pt;}
.fs12{font-size:52.554019pt;}
.fs5{font-size:53.120000pt;}
.fs9{font-size:53.333333pt;}
.fs18{font-size:53.490133pt;}
.fs1a{font-size:53.609067pt;}
.fsb{font-size:54.073600pt;}
.fs7{font-size:55.993396pt;}
.fs1d{font-size:56.179336pt;}
.fs17{font-size:56.616171pt;}
.fsa{font-size:56.752132pt;}
.fs1b{font-size:56.757041pt;}
.fsd{font-size:57.491531pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y4d{bottom:2.846667pt;}
.ybc{bottom:2.848000pt;}
.yef{bottom:2.880000pt;}
.y88{bottom:3.040000pt;}
.ydc{bottom:3.200000pt;}
.yc5{bottom:3.221645pt;}
.yd3{bottom:4.127200pt;}
.ya6{bottom:4.251798pt;}
.y70{bottom:4.403584pt;}
.yb8{bottom:4.553733pt;}
.yb6{bottom:4.553867pt;}
.y63{bottom:4.691200pt;}
.y54{bottom:5.041867pt;}
.yd6{bottom:5.557510pt;}
.yc6{bottom:6.686400pt;}
.yd4{bottom:7.170381pt;}
.ya3{bottom:7.336267pt;}
.y6d{bottom:7.633333pt;}
.y64{bottom:7.954000pt;}
.yb7{bottom:8.022267pt;}
.y56{bottom:8.548000pt;}
.y55{bottom:8.548133pt;}
.y53{bottom:8.548267pt;}
.y4e{bottom:9.874933pt;}
.ybd{bottom:9.928070pt;}
.ya2{bottom:12.698800pt;}
.yc4{bottom:12.704000pt;}
.yd5{bottom:12.897239pt;}
.yd0{bottom:13.331067pt;}
.y50{bottom:13.333067pt;}
.y4f{bottom:13.333200pt;}
.yc1{bottom:13.398857pt;}
.ybf{bottom:13.398990pt;}
.y6f{bottom:14.219434pt;}
.ya5{bottom:14.787239pt;}
.yd2{bottom:16.368417pt;}
.y72{bottom:17.446071pt;}
.y73{bottom:17.449200pt;}
.ya8{bottom:17.872017pt;}
.ya9{bottom:17.875067pt;}
.yf5{bottom:18.080000pt;}
.yee{bottom:18.240000pt;}
.y92{bottom:18.400000pt;}
.y4b{bottom:19.333333pt;}
.ybb{bottom:20.229067pt;}
.y4c{bottom:21.833333pt;}
.y6e{bottom:22.552000pt;}
.y6c{bottom:22.555372pt;}
.ya4{bottom:22.753467pt;}
.yc0{bottom:23.705200pt;}
.ybe{bottom:23.705333pt;}
.yd1{bottom:23.813333pt;}
.y71{bottom:25.784933pt;}
.ya7{bottom:25.844267pt;}
.y6b{bottom:31.394000pt;}
.y10e{bottom:33.600000pt;}
.y34{bottom:48.640000pt;}
.y2{bottom:92.640000pt;}
.y1{bottom:95.200000pt;}
.y32{bottom:121.493280pt;}
.yda{bottom:123.040000pt;}
.yd9{bottom:123.044160pt;}
.y31{bottom:136.698880pt;}
.yd8{bottom:139.365280pt;}
.yfe{bottom:145.719680pt;}
.ycf{bottom:151.773333pt;}
.y30{bottom:152.063840pt;}
.yfd{bottom:161.084640pt;}
.y2f{bottom:167.428800pt;}
.yd7{bottom:170.560000pt;}
.y124{bottom:175.040000pt;}
.yfc{bottom:176.449600pt;}
.y81{bottom:178.560000pt;}
.y2e{bottom:182.793760pt;}
.y123{bottom:190.342560pt;}
.yfb{bottom:191.814560pt;}
.yce{bottom:192.154400pt;}
.y80{bottom:196.299520pt;}
.y2d{bottom:198.158720pt;}
.y122{bottom:205.707520pt;}
.yfa{bottom:207.020160pt;}
.ycd{bottom:207.350080pt;}
.y7f{bottom:211.664480pt;}
.y2c{bottom:213.364320pt;}
.y121{bottom:220.913120pt;}
.yf9{bottom:222.385120pt;}
.ycc{bottom:222.715040pt;}
.y7e{bottom:227.029440pt;}
.y2b{bottom:228.729280pt;}
.y120{bottom:236.278080pt;}
.ycb{bottom:236.800000pt;}
.yf8{bottom:237.750080pt;}
.yc9{bottom:238.076000pt;}
.yca{bottom:238.080000pt;}
.y7d{bottom:242.235040pt;}
.y2a{bottom:244.094240pt;}
.yf7{bottom:253.115040pt;}
.yc8{bottom:254.397120pt;}
.y7c{bottom:257.599040pt;}
.y29{bottom:259.459200pt;}
.y11f{bottom:262.360000pt;}
.yc3{bottom:266.773333pt;}
.yf6{bottom:268.480000pt;}
.yc7{bottom:273.600000pt;}
.y28{bottom:274.824160pt;}
.yf4{bottom:280.960000pt;}
.y7b{bottom:283.680960pt;}
.yba{bottom:289.506667pt;}
.y27{bottom:290.189120pt;}
.yc2{bottom:302.880000pt;}
.y26{bottom:305.394720pt;}
.y11e{bottom:306.994080pt;}
.yf3{bottom:311.520000pt;}
.y25{bottom:320.759680pt;}
.y11d{bottom:322.359040pt;}
.y7a{bottom:328.315040pt;}
.yb5{bottom:328.374667pt;}
.y24{bottom:336.124640pt;}
.yb9{bottom:336.480000pt;}
.y11c{bottom:337.724000pt;}
.yf2{bottom:342.240000pt;}
.y79{bottom:343.675040pt;}
.y23{bottom:351.489600pt;}
.y11b{bottom:352.929600pt;}
.yb4{bottom:354.065120pt;}
.y78{bottom:357.760000pt;}
.y77{bottom:359.040000pt;}
.y76{bottom:359.044160pt;}
.y22{bottom:366.854560pt;}
.y11a{bottom:368.294560pt;}
.yb3{bottom:369.430080pt;}
.y75{bottom:375.365280pt;}
.y108{bottom:378.880000pt;}
.y21{bottom:382.219520pt;}
.y119{bottom:383.659520pt;}
.yb2{bottom:384.795040pt;}
.y6a{bottom:387.774667pt;}
.y107{bottom:394.240000pt;}
.y20{bottom:397.425120pt;}
.yb1{bottom:398.880000pt;}
.y118{bottom:399.024480pt;}
.yaf{bottom:400.140480pt;}
.yb0{bottom:400.160000pt;}
.y74{bottom:406.560000pt;}
.y106{bottom:406.720000pt;}
.y1f{bottom:412.790080pt;}
.y117{bottom:414.389440pt;}
.yae{bottom:416.461600pt;}
.y1e{bottom:428.155040pt;}
.y116{bottom:429.754400pt;}
.yad{bottom:431.667200pt;}
.y69{bottom:431.675040pt;}
.y105{bottom:437.280000pt;}
.y1d{bottom:443.520000pt;}
.y115{bottom:444.960000pt;}
.yac{bottom:447.032160pt;}
.y68{bottom:447.035040pt;}
.yf1{bottom:456.160000pt;}
.y67{bottom:462.391520pt;}
.yab{bottom:462.397120pt;}
.y104{bottom:468.000000pt;}
.y1c{bottom:472.800000pt;}
.y114{bottom:474.240000pt;}
.ya1{bottom:474.773333pt;}
.y66{bottom:477.756480pt;}
.yf0{bottom:486.880000pt;}
.y62{bottom:489.973333pt;}
.yaa{bottom:494.880000pt;}
.y65{bottom:496.800000pt;}
.y61{bottom:513.595040pt;}
.ya0{bottom:515.825120pt;}
.y1b{bottom:516.916000pt;}
.y113{bottom:518.705120pt;}
.y60{bottom:528.944480pt;}
.y9f{bottom:531.190080pt;}
.y112{bottom:534.070080pt;}
.y140{bottom:539.835040pt;}
.y5f{bottom:544.150080pt;}
.y9e{bottom:546.555040pt;}
.y1a{bottom:546.676000pt;}
.y111{bottom:549.435040pt;}
.y13f{bottom:555.200000pt;}
.y5e{bottom:559.515040pt;}
.y19{bottom:560.440000pt;}
.y9d{bottom:561.920000pt;}
.y110{bottom:564.800000pt;}
.y13e{bottom:570.560000pt;}
.y18{bottom:574.360000pt;}
.y5c{bottom:574.878880pt;}
.y5d{bottom:574.880000pt;}
.y10d{bottom:577.120000pt;}
.y9c{bottom:578.229440pt;}
.y103{bottom:582.080000pt;}
.y13d{bottom:585.760000pt;}
.y17{bottom:588.124000pt;}
.y5b{bottom:589.920000pt;}
.y59{bottom:591.196000pt;}
.y5a{bottom:591.200000pt;}
.y9b{bottom:593.594400pt;}
.y10f{bottom:595.360000pt;}
.yed{bottom:600.800000pt;}
.y13c{bottom:601.120000pt;}
.y16{bottom:601.888000pt;}
.y58{bottom:607.517120pt;}
.y9a{bottom:608.800000pt;}
.y102{bottom:612.640000pt;}
.y15{bottom:615.652000pt;}
.y13b{bottom:616.480000pt;}
.y52{bottom:619.906667pt;}
.y98{bottom:621.920000pt;}
.y10c{bottom:623.200000pt;}
.y57{bottom:626.720000pt;}
.y14{bottom:629.572000pt;}
.yec{bottom:631.520000pt;}
.y13a{bottom:631.840000pt;}
.y99{bottom:632.640000pt;}
.y10b{bottom:638.560000pt;}
.y4a{bottom:641.973333pt;}
.y13{bottom:643.336000pt;}
.y139{bottom:647.200000pt;}
.y96{bottom:653.280000pt;}
.y51{bottom:655.360000pt;}
.y12{bottom:657.100000pt;}
.y138{bottom:662.468800pt;}
.y97{bottom:664.000000pt;}
.y11{bottom:670.864000pt;}
.y137{bottom:677.674400pt;}
.y49{bottom:680.795040pt;}
.y94{bottom:684.640000pt;}
.y10{bottom:684.784000pt;}
.y136{bottom:693.039360pt;}
.y95{bottom:695.360000pt;}
.y48{bottom:696.155040pt;}
.yf{bottom:698.548000pt;}
.y135{bottom:708.404320pt;}
.y47{bottom:711.515040pt;}
.ye{bottom:712.312000pt;}
.y91{bottom:716.000000pt;}
.y134{bottom:723.769280pt;}
.y46{bottom:725.600000pt;}
.yd{bottom:726.076000pt;}
.y93{bottom:726.720000pt;}
.y44{bottom:726.878880pt;}
.y45{bottom:726.880000pt;}
.y133{bottom:739.134240pt;}
.yc{bottom:739.996000pt;}
.y43{bottom:743.195040pt;}
.y90{bottom:747.360000pt;}
.yeb{bottom:748.160000pt;}
.yb{bottom:753.760000pt;}
.y132{bottom:754.339840pt;}
.y101{bottom:757.280000pt;}
.y42{bottom:758.554267pt;}
.yea{bottom:762.194080pt;}
.y8f{bottom:763.360000pt;}
.ya{bottom:767.524000pt;}
.y131{bottom:769.704800pt;}
.y41{bottom:773.755040pt;}
.ye9{bottom:777.559040pt;}
.y8e{bottom:779.360000pt;}
.y9{bottom:781.288000pt;}
.y130{bottom:785.069760pt;}
.y40{bottom:789.117440pt;}
.ye8{bottom:792.924000pt;}
.y8d{bottom:795.360000pt;}
.y12f{bottom:800.434720pt;}
.ye7{bottom:808.129600pt;}
.y10a{bottom:808.640000pt;}
.y8c{bottom:811.360000pt;}
.y3f{bottom:815.040000pt;}
.y12e{bottom:815.799680pt;}
.ye6{bottom:823.494560pt;}
.y109{bottom:824.000000pt;}
.y8b{bottom:827.360000pt;}
.y12d{bottom:831.164640pt;}
.y8{bottom:835.684000pt;}
.ye5{bottom:838.859520pt;}
.y8a{bottom:843.360000pt;}
.y12c{bottom:846.370240pt;}
.ye4{bottom:854.224480pt;}
.y7{bottom:855.680000pt;}
.y89{bottom:859.360000pt;}
.y3e{bottom:860.320000pt;}
.y12b{bottom:861.735200pt;}
.ye3{bottom:869.589440pt;}
.y86{bottom:870.400000pt;}
.y100{bottom:874.199040pt;}
.y87{bottom:875.360000pt;}
.y12a{bottom:877.100160pt;}
.y6{bottom:881.280000pt;}
.ye2{bottom:884.795040pt;}
.yff{bottom:889.564000pt;}
.y129{bottom:892.624480pt;}
.y85{bottom:894.229440pt;}
.ye1{bottom:900.155040pt;}
.y3d{bottom:904.769600pt;}
.y128{bottom:907.989440pt;}
.y84{bottom:909.594400pt;}
.ye0{bottom:915.520000pt;}
.y5{bottom:919.525920pt;}
.y3c{bottom:920.134560pt;}
.y127{bottom:923.354400pt;}
.y83{bottom:924.800000pt;}
.ydf{bottom:928.640000pt;}
.y3b{bottom:935.499520pt;}
.y82{bottom:937.280000pt;}
.y126{bottom:938.560000pt;}
.y4{bottom:942.720000pt;}
.yde{bottom:945.280000pt;}
.y3a{bottom:950.864480pt;}
.ydb{bottom:961.920000pt;}
.ydd{bottom:964.480000pt;}
.y39{bottom:966.229440pt;}
.y125{bottom:967.680000pt;}
.y38{bottom:981.594400pt;}
.y37{bottom:996.800000pt;}
.y33{bottom:998.080000pt;}
.y36{bottom:1016.000000pt;}
.y35{bottom:1031.360000pt;}
.h3{height:13.760000pt;}
.h30{height:15.360000pt;}
.h54{height:16.000000pt;}
.h57{height:16.001333pt;}
.h22{height:20.533333pt;}
.h17{height:21.408506pt;}
.h15{height:21.423561pt;}
.h1b{height:22.066667pt;}
.h6{height:22.234375pt;}
.h4f{height:22.722005pt;}
.h3a{height:22.733333pt;}
.h46{height:22.734667pt;}
.h4d{height:22.737984pt;}
.h35{height:23.167491pt;}
.h33{height:23.183783pt;}
.h29{height:24.232880pt;}
.h27{height:24.249921pt;}
.h23{height:24.456178pt;}
.h48{height:25.997789pt;}
.h47{height:26.016072pt;}
.h3b{height:26.016442pt;}
.h42{height:26.055928pt;}
.h40{height:26.074252pt;}
.h1d{height:26.281819pt;}
.h5d{height:30.558667pt;}
.h5b{height:30.560000pt;}
.h31{height:30.720000pt;}
.h55{height:31.243962pt;}
.h51{height:31.931853pt;}
.h50{height:32.460113pt;}
.h4e{height:32.482940pt;}
.h36{height:33.096680pt;}
.h34{height:33.119954pt;}
.h7{height:33.328125pt;}
.h2{height:33.351562pt;}
.h2a{height:34.618664pt;}
.h28{height:34.643009pt;}
.h3d{height:34.682495pt;}
.h44{height:34.759561pt;}
.h56{height:35.911562pt;}
.h14{height:36.000000pt;}
.hd{height:36.001250pt;}
.hb{height:36.883125pt;}
.h9{height:36.909063pt;}
.h2d{height:36.912902pt;}
.he{height:36.919302pt;}
.hf{height:36.928369pt;}
.h11{height:36.928903pt;}
.h10{height:36.931996pt;}
.h25{height:36.942983pt;}
.h4b{height:36.948742pt;}
.h21{height:36.971142pt;}
.h2e{height:36.990983pt;}
.h18{height:37.031250pt;}
.h16{height:37.057292pt;}
.h49{height:37.140122pt;}
.h41{height:37.248878pt;}
.h4c{height:37.400000pt;}
.h1e{height:37.545244pt;}
.h1c{height:37.571647pt;}
.h32{height:38.133333pt;}
.h3f{height:38.866667pt;}
.h26{height:41.132000pt;}
.h13{height:42.029062pt;}
.hc{height:42.556250pt;}
.h53{height:43.302977pt;}
.h8{height:43.375000pt;}
.h38{height:44.152181pt;}
.h2f{height:44.468750pt;}
.h52{height:45.617045pt;}
.h60{height:46.080000pt;}
.h2c{height:46.182564pt;}
.h37{height:46.583046pt;}
.h24{height:46.607907pt;}
.h2b{height:48.679187pt;}
.h1a{height:49.401042pt;}
.h3e{height:49.546281pt;}
.h45{height:49.656445pt;}
.h20{height:50.086728pt;}
.h4{height:50.748750pt;}
.h12{height:51.864977pt;}
.h4a{height:52.037207pt;}
.h3c{height:52.441834pt;}
.h19{height:52.567770pt;}
.h43{height:52.572318pt;}
.h1f{height:53.252654pt;}
.h5{height:54.114063pt;}
.h39{height:54.323437pt;}
.ha{height:61.121333pt;}
.h5a{height:113.920000pt;}
.h59{height:113.921333pt;}
.h58{height:114.078667pt;}
.h5c{height:114.080000pt;}
.h5e{height:169.920000pt;}
.h5f{height:170.081333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:28.640000pt;}
.wa{width:37.120000pt;}
.wc{width:55.680000pt;}
.wb{width:65.440000pt;}
.w13{width:80.000000pt;}
.wf{width:90.866667pt;}
.w5{width:92.265333pt;}
.w14{width:93.440000pt;}
.w10{width:96.598667pt;}
.we{width:97.398667pt;}
.w8{width:121.760000pt;}
.wd{width:127.466667pt;}
.w7{width:137.066667pt;}
.w15{width:141.120000pt;}
.w12{width:145.440000pt;}
.w11{width:156.798667pt;}
.w6{width:172.798667pt;}
.w9{width:197.921333pt;}
.w1a{width:198.080000pt;}
.w1b{width:198.560000pt;}
.w4{width:199.333333pt;}
.w16{width:201.281333pt;}
.w17{width:201.438667pt;}
.w18{width:201.600000pt;}
.w1c{width:207.678667pt;}
.w1e{width:300.320000pt;}
.w1d{width:304.320000pt;}
.w19{width:604.320000pt;}
.w1f{width:604.640000pt;}
.w3{width:613.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.556133pt;}
.x17{left:3.137067pt;}
.x71{left:7.200000pt;}
.xd{left:9.600000pt;}
.x1c{left:10.755333pt;}
.x16{left:12.185333pt;}
.x41{left:13.920000pt;}
.x3f{left:16.640000pt;}
.x48{left:18.080000pt;}
.x47{left:20.320000pt;}
.x63{left:21.557039pt;}
.x3{left:22.720000pt;}
.x1f{left:24.897333pt;}
.x6d{left:27.200000pt;}
.x4f{left:29.649333pt;}
.x62{left:31.283917pt;}
.x5f{left:32.811733pt;}
.x19{left:34.964933pt;}
.x1d{left:36.156133pt;}
.x3b{left:37.280000pt;}
.x5c{left:38.519200pt;}
.x4c{left:40.472000pt;}
.x58{left:41.894800pt;}
.x61{left:43.591733pt;}
.x2d{left:44.741067pt;}
.x3a{left:46.400000pt;}
.x15{left:47.514267pt;}
.x43{left:50.240000pt;}
.x5a{left:51.418267pt;}
.x42{left:52.480000pt;}
.x44{left:54.560000pt;}
.x1b{left:55.652933pt;}
.x57{left:56.748000pt;}
.x18{left:58.426667pt;}
.x2c{left:61.718667pt;}
.x2a{left:62.731200pt;}
.x46{left:65.440000pt;}
.x45{left:67.520000pt;}
.x4e{left:68.917191pt;}
.x2b{left:70.207600pt;}
.x4a{left:71.520000pt;}
.x59{left:73.567067pt;}
.x3d{left:74.880000pt;}
.x4d{left:78.614267pt;}
.x56{left:81.181067pt;}
.x55{left:86.181467pt;}
.x29{left:87.383977pt;}
.x64{left:88.342139pt;}
.x14{left:90.027333pt;}
.xc{left:93.600000pt;}
.xa{left:94.560000pt;}
.x4b{left:101.920000pt;}
.xe{left:103.200000pt;}
.x33{left:107.837920pt;}
.x7{left:111.040000pt;}
.xb{left:113.440000pt;}
.xf{left:117.280000pt;}
.x21{left:131.360000pt;}
.x9{left:132.324000pt;}
.x4{left:135.360000pt;}
.x22{left:138.720000pt;}
.x60{left:141.664400pt;}
.x66{left:144.160000pt;}
.x69{left:165.920000pt;}
.x25{left:167.360000pt;}
.x26{left:175.680000pt;}
.x72{left:189.920000pt;}
.x6e{left:191.520000pt;}
.x74{left:195.840000pt;}
.x3c{left:217.600000pt;}
.x6{left:229.440000pt;}
.x1{left:249.920000pt;}
.x10{left:283.840000pt;}
.x76{left:288.160000pt;}
.x37{left:289.122880pt;}
.x11{left:292.160000pt;}
.x6f{left:296.000000pt;}
.x5{left:300.489120pt;}
.x30{left:303.840000pt;}
.x38{left:305.440000pt;}
.x6a{left:312.000000pt;}
.x67{left:320.960000pt;}
.x6b{left:328.800000pt;}
.x68{left:330.400000pt;}
.x35{left:336.320000pt;}
.x28{left:347.946667pt;}
.x2{left:382.560000pt;}
.x5b{left:390.720000pt;}
.x20{left:392.160000pt;}
.x8{left:396.960000pt;}
.x75{left:398.880000pt;}
.x36{left:407.368000pt;}
.x3e{left:416.160000pt;}
.x50{left:427.360000pt;}
.x49{left:432.800000pt;}
.x23{left:439.360000pt;}
.x24{left:445.920000pt;}
.x39{left:454.080000pt;}
.x65{left:456.640000pt;}
.x27{left:472.640000pt;}
.x2e{left:484.960000pt;}
.x6c{left:486.880000pt;}
.x73{left:491.360000pt;}
.x12{left:495.200000pt;}
.x70{left:497.440000pt;}
.x1a{left:499.200000pt;}
.x13{left:503.520000pt;}
.x40{left:520.160000pt;}
.x5d{left:537.280000pt;}
.x5e{left:544.160000pt;}
.x31{left:550.400000pt;}
.x32{left:560.640000pt;}
.x51{left:591.840000pt;}
.x52{left:598.720000pt;}
.x34{left:628.000000pt;}
.x53{left:637.600000pt;}
.x54{left:644.480000pt;}
.x2f{left:699.325760pt;}
}




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