
    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_0d40e39921982219be4e992c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_7f9a14a089d583a720899dd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_585162a4a000127e3bef2a77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_b79cdcedb8c8ca11f72d1a84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_49adbde33511cc36a8a9cd1d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eb27af2162d2009cdd4fdd89.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_cffffc22d1332cda9e345772.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_c5c18836244505812706283d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_7b6f1a2232e067096726c6fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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;}
.m12{transform:matrix(0.000000,-0.246879,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246879,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246879,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.246880,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246880,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246880,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.248187,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248187,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248187,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.248192,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248192,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248192,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249857,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249857,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249857,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250395,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250395,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250395,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250397,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250397,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250397,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,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);}
.m7{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-22.646400px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.904000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.892600px;}
.v7{vertical-align:22.646400px;}
.v4{vertical-align:26.998920px;}
.v5{vertical-align:28.849355px;}
.lsa7{letter-spacing:-4.510615px;}
.lsa6{letter-spacing:-4.275720px;}
.lsba{letter-spacing:-4.018064px;}
.lsb6{letter-spacing:-3.622485px;}
.lsb7{letter-spacing:-3.612017px;}
.lsb8{letter-spacing:-3.409860px;}
.lsa8{letter-spacing:-3.359441px;}
.lsbd{letter-spacing:-3.217914px;}
.lsa3{letter-spacing:-2.814571px;}
.lsb4{letter-spacing:-2.808120px;}
.lsb9{letter-spacing:-2.804182px;}
.lsc7{letter-spacing:-2.628978px;}
.lsc6{letter-spacing:-2.624806px;}
.lsc3{letter-spacing:-2.624257px;}
.lsc4{letter-spacing:-2.605225px;}
.lsa4{letter-spacing:-2.593760px;}
.lsa5{letter-spacing:-2.324284px;}
.lsb5{letter-spacing:-2.150904px;}
.lsc5{letter-spacing:-2.043854px;}
.lsc2{letter-spacing:-2.025408px;}
.lsbb{letter-spacing:-2.002141px;}
.lsbc{letter-spacing:-1.003174px;}
.ls98{letter-spacing:-0.988200px;}
.ls99{letter-spacing:-0.658800px;}
.ls43{letter-spacing:-0.395280px;}
.ls23{letter-spacing:-0.329400px;}
.ls44{letter-spacing:-0.263520px;}
.ls41{letter-spacing:-0.197640px;}
.ls24{letter-spacing:-0.131760px;}
.ls42{letter-spacing:-0.065880px;}
.ls9{letter-spacing:-0.042120px;}
.ls8{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.014040px;}
.ls91{letter-spacing:0.019764px;}
.ls1{letter-spacing:0.041940px;}
.ls9d{letter-spacing:0.045360px;}
.ls2b{letter-spacing:0.046116px;}
.ls5e{letter-spacing:0.052704px;}
.lsb3{letter-spacing:0.059292px;}
.ls3{letter-spacing:0.065880px;}
.ls6e{letter-spacing:0.072468px;}
.ls2{letter-spacing:0.083880px;}
.ls21{letter-spacing:0.098820px;}
.ls4f{letter-spacing:0.111996px;}
.ls25{letter-spacing:0.131760px;}
.ls90{letter-spacing:0.138348px;}
.ls5d{letter-spacing:0.144936px;}
.lsae{letter-spacing:0.151524px;}
.ls5c{letter-spacing:0.158112px;}
.ls0{letter-spacing:0.167760px;}
.ls22{letter-spacing:0.168480px;}
.ls8f{letter-spacing:0.171288px;}
.ls4{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.197640px;}
.lsaf{letter-spacing:0.204228px;}
.ls38{letter-spacing:0.210816px;}
.ls20{letter-spacing:0.225360px;}
.ls60{letter-spacing:0.230580px;}
.ls9e{letter-spacing:0.263520px;}
.ls94{letter-spacing:0.289872px;}
.ls1c{letter-spacing:0.309636px;}
.ls4a{letter-spacing:0.316224px;}
.ls1b{letter-spacing:0.322812px;}
.ls9f{letter-spacing:0.329400px;}
.ls8c{letter-spacing:0.335988px;}
.ls1f{letter-spacing:0.341280px;}
.ls66{letter-spacing:0.355752px;}
.ls3c{letter-spacing:0.395280px;}
.ls46{letter-spacing:0.441396px;}
.ls3b{letter-spacing:0.461160px;}
.ls27{letter-spacing:0.467748px;}
.ls52{letter-spacing:0.606096px;}
.ls88{letter-spacing:0.718092px;}
.ls58{letter-spacing:0.790560px;}
.ls96{letter-spacing:0.856440px;}
.ls57{letter-spacing:0.975024px;}
.lsc1{letter-spacing:0.981612px;}
.ls53{letter-spacing:1.007964px;}
.ls2c{letter-spacing:1.119960px;}
.ls6c{letter-spacing:1.172664px;}
.ls6b{letter-spacing:1.231956px;}
.ls37{letter-spacing:1.238544px;}
.ls70{letter-spacing:1.449360px;}
.ls6f{letter-spacing:1.508652px;}
.ls2d{letter-spacing:1.515240px;}
.lsc0{letter-spacing:1.548180px;}
.ls54{letter-spacing:1.554768px;}
.ls95{letter-spacing:1.640412px;}
.ls10{letter-spacing:1.844640px;}
.ls2a{letter-spacing:2.174040px;}
.ls35{letter-spacing:2.569320px;}
.lsaa{letter-spacing:2.589084px;}
.ls36{letter-spacing:2.622024px;}
.ls1e{letter-spacing:2.628612px;}
.ls8e{letter-spacing:2.635200px;}
.ls4e{letter-spacing:2.859192px;}
.ls12{letter-spacing:2.898720px;}
.ls13{letter-spacing:2.964600px;}
.lsb2{letter-spacing:2.971188px;}
.ls31{letter-spacing:2.984364px;}
.ls32{letter-spacing:2.997540px;}
.ls8a{letter-spacing:3.017304px;}
.ls47{letter-spacing:3.214944px;}
.ls40{letter-spacing:3.294000px;}
.ls3f{letter-spacing:3.340116px;}
.ls7{letter-spacing:3.353292px;}
.ls3e{letter-spacing:3.386232px;}
.ls89{letter-spacing:3.465288px;}
.ls3d{letter-spacing:3.623400px;}
.ls71{letter-spacing:3.728808px;}
.ls5b{letter-spacing:4.018680px;}
.ls72{letter-spacing:4.262436px;}
.ls18{letter-spacing:4.348080px;}
.ls7f{letter-spacing:4.394196px;}
.ls17{letter-spacing:4.433724px;}
.ls77{letter-spacing:4.506192px;}
.lsd{letter-spacing:4.743360px;}
.ls76{letter-spacing:4.875120px;}
.ls55{letter-spacing:5.184756px;}
.lsad{letter-spacing:5.217696px;}
.ls7b{letter-spacing:5.257224px;}
.ls56{letter-spacing:5.388984px;}
.ls80{letter-spacing:5.468040px;}
.lsab{letter-spacing:5.514156px;}
.lsac{letter-spacing:5.547096px;}
.ls81{letter-spacing:5.705208px;}
.ls9a{letter-spacing:5.738148px;}
.ls59{letter-spacing:6.172956px;}
.lsb{letter-spacing:6.192720px;}
.ls33{letter-spacing:6.298128px;}
.ls30{letter-spacing:6.522120px;}
.ls97{letter-spacing:6.910812px;}
.lsf{letter-spacing:6.917400px;}
.ls69{letter-spacing:6.996456px;}
.ls28{letter-spacing:7.174332px;}
.ls78{letter-spacing:7.576200px;}
.ls79{letter-spacing:7.642080px;}
.ls11{letter-spacing:7.971480px;}
.ls51{letter-spacing:8.037360px;}
.lse{letter-spacing:8.202060px;}
.ls5{letter-spacing:8.287704px;}
.ls2e{letter-spacing:8.300880px;}
.ls7e{letter-spacing:9.025560px;}
.ls84{letter-spacing:9.038736px;}
.ls49{letter-spacing:9.289080px;}
.ls4d{letter-spacing:9.420840px;}
.ls1d{letter-spacing:9.750240px;}
.ls82{letter-spacing:9.802944px;}
.ls9c{letter-spacing:10.125756px;}
.ls5f{letter-spacing:10.145520px;}
.ls2f{letter-spacing:10.567152px;}
.ls92{letter-spacing:10.817496px;}
.ls9b{letter-spacing:10.824084px;}
.lsb1{letter-spacing:10.870200px;}
.ls45{letter-spacing:10.916316px;}
.ls6d{letter-spacing:11.305008px;}
.ls19{letter-spacing:11.594880px;}
.ls83{letter-spacing:11.667348px;}
.ls65{letter-spacing:11.673936px;}
.ls64{letter-spacing:11.726640px;}
.ls3a{letter-spacing:11.924280px;}
.ls39{letter-spacing:12.168036px;}
.ls6{letter-spacing:12.253680px;}
.lsc{letter-spacing:12.319560px;}
.ls75{letter-spacing:12.398616px;}
.ls74{letter-spacing:12.431556px;}
.ls26{letter-spacing:12.648960px;}
.ls48{letter-spacing:12.905892px;}
.ls15{letter-spacing:13.096944px;}
.ls14{letter-spacing:13.110120px;}
.ls16{letter-spacing:13.169412px;}
.ls50{letter-spacing:13.373640px;}
.lsa1{letter-spacing:13.703040px;}
.lsa2{letter-spacing:13.795272px;}
.ls63{letter-spacing:14.823000px;}
.ls61{letter-spacing:14.849352px;}
.ls62{letter-spacing:15.132636px;}
.ls7c{letter-spacing:15.547680px;}
.ls7d{letter-spacing:15.626736px;}
.ls4b{letter-spacing:15.639912px;}
.ls6a{letter-spacing:16.601760px;}
.ls87{letter-spacing:16.997040px;}
.ls85{letter-spacing:17.715132px;}
.ls86{letter-spacing:17.866656px;}
.ls7a{letter-spacing:19.177668px;}
.ls5a{letter-spacing:19.829880px;}
.ls8d{letter-spacing:20.147040px;}
.ls29{letter-spacing:20.238336px;}
.ls4c{letter-spacing:21.674520px;}
.ls1a{letter-spacing:23.361048px;}
.ls73{letter-spacing:25.726140px;}
.ls8b{letter-spacing:33.984000px;}
.lsa{letter-spacing:34.587000px;}
.ls93{letter-spacing:40.720428px;}
.lsa0{letter-spacing:142.085585px;}
.lsa9{letter-spacing:146.573835px;}
.lsbf{letter-spacing:148.617413px;}
.ls67{letter-spacing:154.422720px;}
.lsb0{letter-spacing:155.011514px;}
.lsbe{letter-spacing:193.426464px;}
.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;}
}
.ws71{word-spacing:-156.057921px;}
.ws3f{word-spacing:-65.880000px;}
.ws83{word-spacing:-63.778800px;}
.ws7f{word-spacing:-59.213400px;}
.ws92{word-spacing:-43.098000px;}
.ws8f{word-spacing:-42.708600px;}
.ws0{word-spacing:-23.402520px;}
.ws1{word-spacing:-23.318640px;}
.ws30{word-spacing:-18.775800px;}
.ws6c{word-spacing:-18.578160px;}
.ws2f{word-spacing:-18.512280px;}
.ws17{word-spacing:-18.446400px;}
.ws4{word-spacing:-18.380520px;}
.ws14{word-spacing:-18.314640px;}
.ws31{word-spacing:-18.248760px;}
.ws16{word-spacing:-18.182880px;}
.ws2e{word-spacing:-18.117000px;}
.ws33{word-spacing:-18.051120px;}
.ws15{word-spacing:-17.985240px;}
.ws32{word-spacing:-17.919360px;}
.ws6b{word-spacing:-17.326440px;}
.ws13{word-spacing:-11.877840px;}
.ws2{word-spacing:-11.709360px;}
.ws3{word-spacing:-11.667240px;}
.ws73{word-spacing:-11.157764px;}
.ws80{word-spacing:-10.530450px;}
.ws82{word-spacing:-9.975533px;}
.ws7e{word-spacing:-8.526798px;}
.ws91{word-spacing:-8.102423px;}
.ws76{word-spacing:-7.932081px;}
.ws4d{word-spacing:-0.461160px;}
.ws6{word-spacing:-0.419400px;}
.ws9{word-spacing:-0.395280px;}
.ws50{word-spacing:-0.329400px;}
.ws37{word-spacing:-0.197640px;}
.ws8{word-spacing:-0.167760px;}
.ws4b{word-spacing:-0.131760px;}
.ws7{word-spacing:-0.083880px;}
.ws89{word-spacing:-0.077167px;}
.wsb{word-spacing:-0.065880px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:0.042120px;}
.ws43{word-spacing:0.065880px;}
.ws41{word-spacing:0.131760px;}
.ws3e{word-spacing:0.197640px;}
.ws3c{word-spacing:0.263520px;}
.ws19{word-spacing:0.329400px;}
.ws52{word-spacing:0.395280px;}
.ws18{word-spacing:0.724680px;}
.ws96{word-spacing:0.831864px;}
.ws97{word-spacing:0.839440px;}
.ws55{word-spacing:0.988200px;}
.ws39{word-spacing:1.054080px;}
.ws7a{word-spacing:1.155985px;}
.ws2d{word-spacing:1.449360px;}
.ws95{word-spacing:1.494801px;}
.ws99{word-spacing:1.508430px;}
.ws1b{word-spacing:1.778760px;}
.ws93{word-spacing:2.025408px;}
.ws88{word-spacing:2.040922px;}
.ws86{word-spacing:2.072469px;}
.ws38{word-spacing:2.174040px;}
.ws11{word-spacing:2.503440px;}
.ws8b{word-spacing:2.569320px;}
.ws94{word-spacing:2.624257px;}
.ws98{word-spacing:2.624806px;}
.ws78{word-spacing:2.731710px;}
.ws84{word-spacing:2.808120px;}
.ws25{word-spacing:2.898720px;}
.ws8d{word-spacing:2.964600px;}
.ws79{word-spacing:2.967510px;}
.ws8a{word-spacing:3.217914px;}
.ws29{word-spacing:3.228120px;}
.ws7b{word-spacing:3.359441px;}
.ws85{word-spacing:3.622485px;}
.ws1e{word-spacing:3.623400px;}
.ws24{word-spacing:3.952800px;}
.ws2a{word-spacing:4.282200px;}
.wsf{word-spacing:4.677480px;}
.ws1f{word-spacing:5.006880px;}
.ws42{word-spacing:5.402160px;}
.ws87{word-spacing:5.533920px;}
.ws4a{word-spacing:5.731560px;}
.ws1d{word-spacing:6.126840px;}
.ws20{word-spacing:6.456240px;}
.ws23{word-spacing:6.851520px;}
.ws35{word-spacing:6.983280px;}
.ws70{word-spacing:7.049160px;}
.ws53{word-spacing:7.180920px;}
.wsd{word-spacing:7.576200px;}
.ws22{word-spacing:7.905600px;}
.ws48{word-spacing:8.235000px;}
.wsc{word-spacing:8.630280px;}
.ws5b{word-spacing:9.025560px;}
.ws10{word-spacing:9.354960px;}
.ws2c{word-spacing:9.684360px;}
.ws4e{word-spacing:10.079640px;}
.ws3a{word-spacing:10.409040px;}
.ws40{word-spacing:10.804320px;}
.ws49{word-spacing:11.133720px;}
.ws8c{word-spacing:11.331360px;}
.ws2b{word-spacing:11.529000px;}
.ws3d{word-spacing:11.858400px;}
.wse{word-spacing:12.253680px;}
.ws34{word-spacing:12.583080px;}
.ws28{word-spacing:12.978360px;}
.ws47{word-spacing:13.307760px;}
.ws1a{word-spacing:13.703040px;}
.ws59{word-spacing:14.032440px;}
.ws51{word-spacing:14.757120px;}
.ws5c{word-spacing:15.086520px;}
.ws44{word-spacing:15.481800px;}
.ws6a{word-spacing:15.811200px;}
.ws5a{word-spacing:16.206480px;}
.ws54{word-spacing:16.535880px;}
.ws5f{word-spacing:16.931160px;}
.ws57{word-spacing:17.260560px;}
.ws5e{word-spacing:17.655840px;}
.ws68{word-spacing:17.985240px;}
.ws3b{word-spacing:18.380520px;}
.ws21{word-spacing:18.709920px;}
.ws61{word-spacing:19.105200px;}
.ws6e{word-spacing:19.434600px;}
.ws4c{word-spacing:19.764000px;}
.ws12{word-spacing:20.159280px;}
.ws36{word-spacing:20.225160px;}
.ws64{word-spacing:21.213360px;}
.ws45{word-spacing:21.608640px;}
.ws5d{word-spacing:21.938040px;}
.ws26{word-spacing:22.662720px;}
.ws60{word-spacing:23.058000px;}
.ws4f{word-spacing:23.387400px;}
.ws58{word-spacing:24.112080px;}
.ws46{word-spacing:24.441480px;}
.ws56{word-spacing:25.166160px;}
.ws27{word-spacing:25.561440px;}
.ws6f{word-spacing:27.340200px;}
.ws7d{word-spacing:27.731298px;}
.ws6d{word-spacing:28.064880px;}
.ws1c{word-spacing:28.789560px;}
.ws69{word-spacing:29.514240px;}
.ws67{word-spacing:33.862320px;}
.ws63{word-spacing:40.318560px;}
.ws62{word-spacing:40.647960px;}
.ws66{word-spacing:41.043240px;}
.ws65{word-spacing:41.372640px;}
.ws77{word-spacing:49.772676px;}
.ws75{word-spacing:71.390167px;}
.ws74{word-spacing:75.795443px;}
.ws7c{word-spacing:100.340145px;}
.ws81{word-spacing:102.329665px;}
.ws72{word-spacing:108.612292px;}
.ws90{word-spacing:123.908673px;}
.ws8e{word-spacing:169.338576px;}
._16{margin-left:-12.313749px;}
._1a{margin-left:-7.016714px;}
._1e{margin-left:-3.850998px;}
._1c{margin-left:-2.520193px;}
._0{margin-left:-1.073664px;}
._1{width:1.133136px;}
._a{width:3.030480px;}
._4{width:4.499424px;}
._5{width:6.588000px;}
._b{width:7.661664px;}
._7{width:8.807976px;}
._8{width:9.882000px;}
._c{width:11.265480px;}
._9{width:12.583080px;}
._6{width:13.584456px;}
._12{width:15.877080px;}
._11{width:17.128800px;}
._2{width:20.225160px;}
._15{width:22.023504px;}
._19{width:45.860346px;}
._d{width:86.050080px;}
._17{width:97.945333px;}
._14{width:105.627960px;}
._18{width:112.575525px;}
._f{width:119.329344px;}
._1b{width:123.889689px;}
._1d{width:168.542880px;}
._10{width:175.767840px;}
._13{width:181.317600px;}
._e{width:191.183760px;}
._3{width:194.477760px;}
.fc3{color:rgb(128,0,128);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:20.271600px;}
.fs12{font-size:20.329800px;}
.fsc{font-size:25.130400px;}
.fsb{font-size:25.144800px;}
.fs19{font-size:36.168000px;}
.fs1a{font-size:36.431400px;}
.fs1f{font-size:36.439800px;}
.fs1e{font-size:36.497400px;}
.fs7{font-size:36.893400px;}
.fsf{font-size:38.409000px;}
.fs18{font-size:38.583600px;}
.fs14{font-size:38.929800px;}
.fs15{font-size:39.421800px;}
.fs6{font-size:41.170800px;}
.fs2{font-size:42.120000px;}
.fs1c{font-size:42.708600px;}
.fs1b{font-size:43.020600px;}
.fs20{font-size:43.029600px;}
.fs21{font-size:43.098000px;}
.fs1d{font-size:45.787200px;}
.fs13{font-size:45.970200px;}
.fs22{font-size:47.368800px;}
.fse{font-size:50.145000px;}
.fs5{font-size:50.260200px;}
.fs8{font-size:50.290200px;}
.fsd{font-size:55.072800px;}
.fs4{font-size:56.880000px;}
.fs10{font-size:59.213400px;}
.fsa{font-size:59.350200px;}
.fs9{font-size:59.385000px;}
.fs16{font-size:63.778800px;}
.fs17{font-size:64.585200px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1c2{bottom:9.450000px;}
.y1db{bottom:12.623850px;}
.y14b{bottom:13.050000px;}
.y150{bottom:13.140000px;}
.y1b4{bottom:13.149300px;}
.y173{bottom:13.626000px;}
.y199{bottom:14.003400px;}
.y1cc{bottom:14.432250px;}
.y1b1{bottom:15.013050px;}
.y14e{bottom:18.270000px;}
.y152{bottom:18.360000px;}
.y1d0{bottom:28.052700px;}
.y1c4{bottom:29.723100px;}
.y1a8{bottom:30.750600px;}
.y165{bottom:34.621200px;}
.y188{bottom:35.208150px;}
.y1c5{bottom:37.318380px;}
.y1d1{bottom:45.334219px;}
.y1a9{bottom:50.943010px;}
.y1b6{bottom:54.253500px;}
.y1ce{bottom:54.546390px;}
.y1d7{bottom:54.751200px;}
.y19b{bottom:65.615250px;}
.y19a{bottom:66.415350px;}
.y174{bottom:69.233250px;}
.y166{bottom:72.454566px;}
.y1aa{bottom:73.410946px;}
.y2{bottom:75.599010px;}
.y172{bottom:75.649500px;}
.y1d2{bottom:76.010284px;}
.y17a{bottom:77.262317px;}
.y189{bottom:77.618284px;}
.y1c6{bottom:93.017100px;}
.y1ab{bottom:95.878881px;}
.y175{bottom:96.373758px;}
.y1d3{bottom:106.585980px;}
.y1b5{bottom:106.953750px;}
.y1cb{bottom:110.623350px;}
.y1da{bottom:111.632700px;}
.y18a{bottom:112.957972px;}
.y1{bottom:113.760000px;}
.y1c9{bottom:116.587200px;}
.y1d8{bottom:117.650850px;}
.y1ac{bottom:118.346816px;}
.y1b2{bottom:125.486850px;}
.y167{bottom:126.986883px;}
.y1dc{bottom:136.482150px;}
.y1d4{bottom:137.262045px;}
.y176{bottom:137.675077px;}
.ybe{bottom:139.634370px;}
.y1ad{bottom:140.814751px;}
.y88{bottom:141.528420px;}
.y113{bottom:142.387920px;}
.y66{bottom:143.307180px;}
.yd3{bottom:143.361720px;}
.ya8{bottom:143.366310px;}
.y42{bottom:143.370270px;}
.y1cd{bottom:147.272100px;}
.y19c{bottom:147.500700px;}
.y18b{bottom:148.297661px;}
.y1c7{bottom:148.616358px;}
.y17d{bottom:154.649400px;}
.y149{bottom:155.420370px;}
.yf0{bottom:157.953960px;}
.y190{bottom:158.703300px;}
.y198{bottom:158.836650px;}
.y196{bottom:161.904150px;}
.y170{bottom:162.001350px;}
.y1ae{bottom:163.282687px;}
.y16b{bottom:166.148850px;}
.y191{bottom:166.836406px;}
.y177{bottom:167.077294px;}
.y1d5{bottom:167.837742px;}
.ybd{bottom:168.078060px;}
.y87{bottom:169.972110px;}
.y112{bottom:170.913960px;}
.y65{bottom:171.750870px;}
.ya7{bottom:171.795780px;}
.yd2{bottom:171.805410px;}
.y41{bottom:171.813960px;}
.y15b{bottom:171.900000px;}
.y168{bottom:181.393549px;}
.y16c{bottom:182.724150px;}
.y15c{bottom:183.420000px;}
.y18c{bottom:183.637350px;}
.y1af{bottom:185.750622px;}
.yef{bottom:186.480000px;}
.y1cf{bottom:192.193200px;}
.y1dd{bottom:192.878400px;}
.y192{bottom:195.239861px;}
.ybc{bottom:196.521750px;}
.y86{bottom:198.415800px;}
.y1d6{bottom:198.513807px;}
.y111{bottom:199.440000px;}
.y64{bottom:200.276910px;}
.y40{bottom:200.286000px;}
.ya6{bottom:200.321820px;}
.yd1{bottom:200.331450px;}
.y159{bottom:201.060000px;}
.y1c8{bottom:204.315078px;}
.y1b0{bottom:208.218557px;}
.y1b7{bottom:208.828298px;}
.y16d{bottom:209.462642px;}
.y132{bottom:210.153960px;}
.y15a{bottom:212.580000px;}
.y1ca{bottom:215.279100px;}
.yee{bottom:216.183960px;}
.y1d9{bottom:217.242300px;}
.y185{bottom:217.415340px;}
.y18d{bottom:218.977039px;}
.y178{bottom:221.220095px;}
.y19d{bottom:222.451350px;}
.y193{bottom:223.777748px;}
.ybb{bottom:225.047790px;}
.y85{bottom:226.859490px;}
.y17b{bottom:228.436200px;}
.yd0{bottom:228.676320px;}
.y63{bottom:228.720600px;}
.y3f{bottom:228.729690px;}
.ya5{bottom:228.765510px;}
.y110{bottom:229.140270px;}
.y157{bottom:230.310000px;}
.y1b3{bottom:231.715650px;}
.y169{bottom:235.925866px;}
.y16e{bottom:236.062783px;}
.y184{bottom:236.767590px;}
.y131{bottom:238.680000px;}
.y158{bottom:241.830000px;}
.yed{bottom:244.710000px;}
.y194{bottom:252.181204px;}
.yba{bottom:253.491480px;}
.y18e{bottom:254.316727px;}
.y84{bottom:255.303180px;}
.y183{bottom:255.757500px;}
.ycf{bottom:257.120010px;}
.y62{bottom:257.164290px;}
.y3e{bottom:257.173380px;}
.ya4{bottom:257.209200px;}
.y179{bottom:257.583349px;}
.y10f{bottom:257.583960px;}
.y155{bottom:259.470000px;}
.y16f{bottom:262.801275px;}
.y1c0{bottom:267.030090px;}
.y130{bottom:268.466310px;}
.y156{bottom:271.080000px;}
.yec{bottom:274.413960px;}
.y182{bottom:274.665060px;}
.y195{bottom:280.719091px;}
.y1e{bottom:280.895310px;}
.yb9{bottom:281.935170px;}
.y83{bottom:283.829220px;}
.y61{bottom:285.607980px;}
.y3d{bottom:285.617070px;}
.yce{bottom:285.646050px;}
.ya3{bottom:285.652890px;}
.y1bf{bottom:285.997050px;}
.y10e{bottom:286.110000px;}
.y153{bottom:288.720000px;}
.y18f{bottom:289.656416px;}
.y19e{bottom:290.200350px;}
.y16a{bottom:290.458183px;}
.y181{bottom:294.560820px;}
.y17c{bottom:295.806600px;}
.y12f{bottom:296.910000px;}
.y154{bottom:300.240000px;}
.yeb{bottom:302.940000px;}
.y197{bottom:304.870350px;}
.y1be{bottom:304.904610px;}
.y171{bottom:305.698200px;}
.y1d{bottom:309.339000px;}
.yb8{bottom:310.378860px;}
.y82{bottom:312.272910px;}
.y60{bottom:314.134020px;}
.y3c{bottom:314.143110px;}
.ycd{bottom:314.172090px;}
.ya2{bottom:314.178930px;}
.y180{bottom:314.637750px;}
.y10d{bottom:315.810270px;}
.y14f{bottom:317.880000px;}
.y1bd{bottom:323.894520px;}
.y12e{bottom:326.703960px;}
.y151{bottom:329.490000px;}
.yea{bottom:332.647920px;}
.y17f{bottom:334.797030px;}
.y1c{bottom:337.865040px;}
.yb7{bottom:338.822550px;}
.y81{bottom:340.716600px;}
.y5f{bottom:342.577710px;}
.y3b{bottom:342.586800px;}
.ycc{bottom:342.615780px;}
.ya1{bottom:342.622620px;}
.y1bc{bottom:342.884430px;}
.y10c{bottom:344.253960px;}
.y14c{bottom:347.130000px;}
.y164{bottom:350.385000px;}
.y17e{bottom:350.460000px;}
.y12d{bottom:355.230000px;}
.y14d{bottom:358.650000px;}
.ye9{bottom:361.173960px;}
.y1bb{bottom:361.791990px;}
.y1b{bottom:366.391080px;}
.yb6{bottom:367.348590px;}
.y80{bottom:369.160290px;}
.y5e{bottom:371.021400px;}
.y3a{bottom:371.030490px;}
.ycb{bottom:371.059470px;}
.ya0{bottom:371.066310px;}
.y10b{bottom:372.780000px;}
.y14a{bottom:376.380000px;}
.y1ba{bottom:381.687750px;}
.y12c{bottom:384.930270px;}
.ye8{bottom:389.700000px;}
.y148{bottom:390.233160px;}
.y1eb{bottom:393.479640px;}
.y1a{bottom:394.834770px;}
.yb5{bottom:395.792280px;}
.y7f{bottom:397.686330px;}
.y5d{bottom:399.465090px;}
.y39{bottom:399.474180px;}
.y9f{bottom:399.499200px;}
.yca{bottom:399.503160px;}
.y1b9{bottom:401.764680px;}
.y10a{bottom:402.573960px;}
.y1ea{bottom:412.469550px;}
.y12b{bottom:413.373960px;}
.y1a7{bottom:417.435000px;}
.y1b8{bottom:417.510000px;}
.y147{bottom:418.676850px;}
.ye7{bottom:419.400270px;}
.y19{bottom:423.179640px;}
.yb4{bottom:424.235970px;}
.y7e{bottom:426.130020px;}
.y5c{bottom:427.908780px;}
.y38{bottom:427.917870px;}
.y9e{bottom:427.942890px;}
.yc9{bottom:427.946850px;}
.y109{bottom:431.100000px;}
.y1e9{bottom:431.459460px;}
.y12a{bottom:441.900000px;}
.y146{bottom:447.021720px;}
.ye6{bottom:447.843960px;}
.y1e8{bottom:450.367020px;}
.y18{bottom:451.705680px;}
.yb3{bottom:452.679660px;}
.y7d{bottom:454.474890px;}
.y5b{bottom:456.434820px;}
.y37{bottom:456.443910px;}
.y9d{bottom:456.468930px;}
.yc8{bottom:456.472890px;}
.y108{bottom:460.800270px;}
.y1e7{bottom:465.750000px;}
.y129{bottom:471.607920px;}
.y145{bottom:475.646580px;}
.ye5{bottom:476.370000px;}
.y17{bottom:480.149370px;}
.yb2{bottom:481.205700px;}
.y7c{bottom:482.918580px;}
.y5a{bottom:484.878510px;}
.y36{bottom:484.887600px;}
.y9c{bottom:484.912620px;}
.yc7{bottom:484.916580px;}
.y107{bottom:489.243960px;}
.y128{bottom:500.133960px;}
.y144{bottom:504.090270px;}
.ye4{bottom:506.073960px;}
.y16{bottom:508.593060px;}
.yb1{bottom:509.649390px;}
.y7b{bottom:511.362270px;}
.y59{bottom:513.322200px;}
.y35{bottom:513.331290px;}
.y9b{bottom:513.356310px;}
.yc6{bottom:513.360270px;}
.y106{bottom:517.770000px;}
.y127{bottom:528.660000px;}
.y143{bottom:532.533960px;}
.ye3{bottom:534.600000px;}
.y15{bottom:537.036750px;}
.yb0{bottom:538.093080px;}
.y7a{bottom:540.069480px;}
.y58{bottom:541.765890px;}
.y34{bottom:541.774980px;}
.y9a{bottom:541.782360px;}
.yc5{bottom:541.803960px;}
.y105{bottom:547.474230px;}
.y126{bottom:558.363960px;}
.y142{bottom:561.060000px;}
.ye2{bottom:564.307920px;}
.y14{bottom:565.480440px;}
.yaf{bottom:566.536770px;}
.y79{bottom:568.513170px;}
.y57{bottom:570.291930px;}
.y33{bottom:570.301020px;}
.y99{bottom:570.308400px;}
.yc4{bottom:570.315510px;}
.y104{bottom:576.000270px;}
.y125{bottom:586.890000px;}
.y141{bottom:590.764230px;}
.ye1{bottom:592.833960px;}
.y13{bottom:594.006480px;}
.yae{bottom:594.980460px;}
.y78{bottom:596.858040px;}
.y56{bottom:598.735620px;}
.y32{bottom:598.744710px;}
.y98{bottom:598.752090px;}
.yc3{bottom:598.759200px;}
.y1c1{bottom:599.850000px;}
.y103{bottom:604.443960px;}
.y124{bottom:616.593960px;}
.y140{bottom:619.207920px;}
.ye0{bottom:621.360000px;}
.y12{bottom:622.351350px;}
.yad{bottom:623.506500px;}
.y77{bottom:625.301730px;}
.y55{bottom:627.080490px;}
.y31{bottom:627.188400px;}
.y97{bottom:627.195780px;}
.yc2{bottom:627.202890px;}
.y102{bottom:632.970000px;}
.y123{bottom:645.120000px;}
.y13f{bottom:647.733960px;}
.y11{bottom:650.877390px;}
.yac{bottom:651.950190px;}
.y76{bottom:653.827770px;}
.y54{bottom:655.524180px;}
.y30{bottom:655.632090px;}
.y96{bottom:655.639470px;}
.yc1{bottom:655.646580px;}
.y101{bottom:665.457390px;}
.ydf{bottom:666.072900px;}
.y122{bottom:674.823960px;}
.y13e{bottom:676.260000px;}
.y1a6{bottom:678.869370px;}
.yab{bottom:680.393880px;}
.y163{bottom:680.937750px;}
.y75{bottom:682.271460px;}
.y2f{bottom:684.075780px;}
.y95{bottom:684.083160px;}
.yc0{bottom:684.090270px;}
.y53{bottom:684.149040px;}
.y10{bottom:687.687840px;}
.y1f0{bottom:688.866120px;}
.y100{bottom:695.613960px;}
.y1a5{bottom:698.946300px;}
.y162{bottom:701.014680px;}
.y121{bottom:703.350000px;}
.y13d{bottom:705.960270px;}
.y1ef{bottom:708.218370px;}
.yde{bottom:709.454880px;}
.yaa{bottom:709.545780px;}
.y74{bottom:710.715150px;}
.y52{bottom:712.592730px;}
.y2e{bottom:712.601820px;}
.y94{bottom:712.609200px;}
.ybf{bottom:712.616310px;}
.yf{bottom:714.780000px;}
.y1a4{bottom:718.298550px;}
.y161{bottom:721.173960px;}
.yff{bottom:724.140000px;}
.y1ee{bottom:727.208280px;}
.y120{bottom:733.053960px;}
.y13c{bottom:734.403960px;}
.y1a3{bottom:737.288460px;}
.y73{bottom:739.158840px;}
.y51{bottom:741.036420px;}
.y2d{bottom:741.045510px;}
.y93{bottom:741.052890px;}
.y160{bottom:741.333240px;}
.y1ed{bottom:746.017020px;}
.ye{bottom:746.376660px;}
.ydd{bottom:753.018030px;}
.yfe{bottom:753.847920px;}
.y1a2{bottom:756.278370px;}
.y15f{bottom:760.685490px;}
.y1ec{bottom:761.400000px;}
.y11f{bottom:761.580000px;}
.y1e6{bottom:762.104250px;}
.y13b{bottom:762.930000px;}
.y72{bottom:767.602530px;}
.ya9{bottom:768.310740px;}
.y50{bottom:769.480110px;}
.y2c{bottom:769.489200px;}
.y92{bottom:769.496580px;}
.yd{bottom:773.370000px;}
.y1a1{bottom:775.268280px;}
.y15e{bottom:779.675400px;}
.ydc{bottom:781.461720px;}
.y1e5{bottom:782.181180px;}
.yfd{bottom:782.373960px;}
.y11e{bottom:791.373960px;}
.y13a{bottom:792.637920px;}
.y1a0{bottom:794.077020px;}
.y71{bottom:796.128570px;}
.y4f{bottom:797.923800px;}
.y2b{bottom:797.932890px;}
.y91{bottom:797.940270px;}
.y15d{bottom:798.484140px;}
.y1e4{bottom:802.340460px;}
.yc{bottom:804.957840px;}
.y187{bottom:809.385000px;}
.y19f{bottom:809.460000px;}
.ydb{bottom:809.905410px;}
.yfc{bottom:810.900000px;}
.y11d{bottom:819.900000px;}
.y139{bottom:821.163960px;}
.y1e3{bottom:822.499740px;}
.y70{bottom:824.572260px;}
.y4e{bottom:826.449840px;}
.y2a{bottom:826.458930px;}
.y90{bottom:826.466310px;}
.yb{bottom:832.050000px;}
.yda{bottom:838.349100px;}
.yfb{bottom:840.600270px;}
.y1e2{bottom:841.851990px;}
.y11c{bottom:849.603960px;}
.y138{bottom:849.690000px;}
.y6f{bottom:853.015950px;}
.y4d{bottom:854.893530px;}
.y29{bottom:854.902620px;}
.y8f{bottom:854.910000px;}
.y1e1{bottom:860.841900px;}
.ya{bottom:863.646660px;}
.yd9{bottom:866.792790px;}
.yfa{bottom:869.043960px;}
.y11b{bottom:878.130000px;}
.y137{bottom:879.390270px;}
.y1e0{bottom:879.749460px;}
.y6e{bottom:881.459640px;}
.y4c{bottom:883.337220px;}
.y28{bottom:883.346310px;}
.y8e{bottom:883.353690px;}
.y9{bottom:890.640000px;}
.yd8{bottom:895.236480px;}
.yf9{bottom:897.570000px;}
.y1df{bottom:898.657020px;}
.y11a{bottom:907.830270px;}
.y136{bottom:907.833960px;}
.y6d{bottom:909.985680px;}
.y27{bottom:911.764440px;}
.y4b{bottom:911.780910px;}
.y8d{bottom:911.797380px;}
.y1c3{bottom:914.010000px;}
.y1de{bottom:914.040000px;}
.yd7{bottom:923.762520px;}
.yf8{bottom:927.270270px;}
.y8{bottom:928.985670px;}
.y119{bottom:936.273960px;}
.y135{bottom:936.360000px;}
.y6c{bottom:938.429370px;}
.y8c{bottom:940.142250px;}
.y26{bottom:940.208130px;}
.y4a{bottom:940.224600px;}
.yf7{bottom:955.713960px;}
.y118{bottom:964.800000px;}
.y134{bottom:966.060270px;}
.y6b{bottom:966.873060px;}
.yd6{bottom:967.226850px;}
.y8b{bottom:968.668290px;}
.y25{bottom:968.734170px;}
.y49{bottom:968.750640px;}
.y7{bottom:972.446850px;}
.yf6{bottom:984.240000px;}
.y133{bottom:994.503960px;}
.y117{bottom:994.507920px;}
.y6a{bottom:995.316750px;}
.y24{bottom:997.177860px;}
.y48{bottom:997.194330px;}
.y8a{bottom:997.293150px;}
.yd5{bottom:1010.790000px;}
.y6{bottom:1016.010000px;}
.yf5{bottom:1016.821080px;}
.y116{bottom:1023.033960px;}
.y69{bottom:1023.760440px;}
.y23{bottom:1025.621550px;}
.y47{bottom:1025.638020px;}
.y89{bottom:1025.736840px;}
.yf4{bottom:1047.060000px;}
.y115{bottom:1051.560000px;}
.y68{bottom:1052.286480px;}
.y22{bottom:1054.065240px;}
.y46{bottom:1054.081710px;}
.yd4{bottom:1054.164060px;}
.y5{bottom:1062.808650px;}
.yf3{bottom:1079.547390px;}
.y114{bottom:1081.260270px;}
.y67{bottom:1081.438380px;}
.y21{bottom:1082.508930px;}
.y45{bottom:1082.607750px;}
.y4{bottom:1099.086750px;}
.yf2{bottom:1109.703960px;}
.y20{bottom:1110.952620px;}
.y44{bottom:1111.051440px;}
.y3{bottom:1135.260000px;}
.yf1{bottom:1138.230000px;}
.y186{bottom:1139.215140px;}
.y1f{bottom:1139.396310px;}
.y43{bottom:1139.495130px;}
.h26{height:21.142645px;}
.h27{height:21.203346px;}
.h2f{height:24.751500px;}
.h20{height:26.210222px;}
.h1f{height:26.225241px;}
.h16{height:28.438500px;}
.h13{height:28.440000px;}
.h15{height:28.530000px;}
.h31{height:37.722094px;}
.h32{height:37.996812px;}
.h38{height:38.005573px;}
.h37{height:38.065648px;}
.h1a{height:38.478663px;}
.h24{height:40.059387px;}
.h2a{height:40.602565px;}
.h2b{height:41.115705px;}
.h19{height:42.939858px;}
.h2{height:43.909277px;}
.h14{height:43.929844px;}
.h34{height:44.544335px;}
.h33{height:44.869141px;}
.h39{height:44.878528px;}
.h3a{height:44.950467px;}
.h35{height:47.754619px;}
.h7{height:47.830781px;}
.h29{height:47.945482px;}
.h3b{height:49.404178px;}
.h23{height:52.299668px;}
.h18{height:52.419818px;}
.h1b{height:52.451107px;}
.h21{height:57.439209px;}
.h25{height:61.757726px;}
.h1d{height:61.900404px;}
.h1c{height:61.936699px;}
.h4{height:64.657617px;}
.h2c{height:66.519295px;}
.h2d{height:67.360345px;}
.h6{height:68.710781px;}
.h5{height:68.723381px;}
.hc{height:68.753981px;}
.hd{height:68.767661px;}
.hf{height:68.768741px;}
.hb{height:68.781341px;}
.h2e{height:68.802581px;}
.he{height:68.805101px;}
.h8{height:68.813021px;}
.h9{height:68.926781px;}
.ha{height:68.962061px;}
.h12{height:70.293960px;}
.h11{height:75.093750px;}
.h1e{height:81.269173px;}
.h3{height:87.484219px;}
.h10{height:87.507979px;}
.h30{height:238.650000px;}
.h36{height:240.823500px;}
.h28{height:256.875000px;}
.h22{height:325.275000px;}
.h17{height:326.025000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:38.791500px;}
.w2{width:93.780000px;}
.w3{width:188.280000px;}
.w7{width:339.900000px;}
.w8{width:339.975000px;}
.w5{width:367.800000px;}
.w4{width:425.323500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:10.800000px;}
.x14{left:14.310000px;}
.x6a{left:17.190090px;}
.x42{left:21.132450px;}
.x17{left:26.190000px;}
.x5b{left:27.469650px;}
.x1f{left:30.780000px;}
.x52{left:31.966200px;}
.x24{left:36.360000px;}
.x34{left:38.070000px;}
.x16{left:42.300000px;}
.x1b{left:44.280000px;}
.x4f{left:46.268677px;}
.x60{left:48.736630px;}
.x4e{left:52.554952px;}
.x26{left:54.090000px;}
.x36{left:55.800000px;}
.x58{left:58.608750px;}
.x2b{left:60.840000px;}
.x44{left:69.951150px;}
.x21{left:71.730000px;}
.x51{left:74.881710px;}
.x49{left:76.772400px;}
.x2d{left:79.470000px;}
.x2{left:80.990550px;}
.x7{left:82.170000px;}
.x19{left:83.700000px;}
.x38{left:85.410000px;}
.x1d{left:86.670000px;}
.x67{left:89.451750px;}
.x4{left:91.529280px;}
.x50{left:97.637400px;}
.xb{left:99.360000px;}
.x9{left:101.340000px;}
.xd{left:103.320000px;}
.x11{left:107.818830px;}
.x40{left:115.827450px;}
.x3a{left:116.910000px;}
.x23{left:121.320000px;}
.x2f{left:123.030000px;}
.x45{left:125.597256px;}
.xf{left:134.188650px;}
.x3{left:137.160000px;}
.x31{left:140.760000px;}
.x28{left:142.560000px;}
.x3c{left:146.610000px;}
.x64{left:149.021550px;}
.x63{left:151.347000px;}
.x55{left:153.946200px;}
.x5c{left:156.220500px;}
.x33{left:159.390000px;}
.x4c{left:162.238650px;}
.x54{left:164.913600px;}
.x4b{left:169.327350px;}
.x62{left:174.795000px;}
.x53{left:182.702400px;}
.x10{left:187.419690px;}
.x59{left:189.142200px;}
.x43{left:192.064950px;}
.x66{left:200.902950px;}
.x41{left:221.757450px;}
.x56{left:228.043650px;}
.x3f{left:233.895000px;}
.x4a{left:256.664585px;}
.xa{left:270.363690px;}
.x68{left:280.760250px;}
.x5{left:284.851710px;}
.x5e{left:288.000000px;}
.xe{left:298.706760px;}
.x46{left:301.876980px;}
.x13{left:305.100000px;}
.x61{left:307.635000px;}
.x47{left:330.504676px;}
.x5a{left:332.886000px;}
.xc{left:340.932150px;}
.x48{left:351.764858px;}
.x8{left:394.658460px;}
.x15{left:399.600000px;}
.x3e{left:414.358110px;}
.x65{left:420.945000px;}
.x57{left:432.645000px;}
.x29{left:436.860000px;}
.x12{left:438.120000px;}
.x1{left:442.260000px;}
.x6{left:446.494860px;}
.x25{left:447.840000px;}
.x35{left:449.550000px;}
.x2a{left:454.590000px;}
.x20{left:465.480000px;}
.x2c{left:473.220000px;}
.x18{left:477.450000px;}
.x37{left:479.160000px;}
.x1c{left:480.420000px;}
.x39{left:510.660000px;}
.x22{left:514.980000px;}
.x2e{left:516.780000px;}
.x1e{left:528.300000px;}
.x1a{left:530.370000px;}
.x30{left:534.510000px;}
.x27{left:536.310000px;}
.x3b{left:540.360000px;}
.x3d{left:542.610000px;}
.x32{left:553.140000px;}
.x4d{left:659.160000px;}
.x6b{left:754.470000px;}
.x69{left:760.860000px;}
.x6c{left:765.360000px;}
.x5d{left:800.370000px;}
@media print{
.v6{vertical-align:-20.130133pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.248000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.571200pt;}
.v7{vertical-align:20.130133pt;}
.v4{vertical-align:23.999040pt;}
.v5{vertical-align:25.643871pt;}
.lsa7{letter-spacing:-4.009436pt;}
.lsa6{letter-spacing:-3.800640pt;}
.lsba{letter-spacing:-3.571613pt;}
.lsb6{letter-spacing:-3.219987pt;}
.lsb7{letter-spacing:-3.210682pt;}
.lsb8{letter-spacing:-3.030987pt;}
.lsa8{letter-spacing:-2.986170pt;}
.lsbd{letter-spacing:-2.860368pt;}
.lsa3{letter-spacing:-2.501841pt;}
.lsb4{letter-spacing:-2.496107pt;}
.lsb9{letter-spacing:-2.492606pt;}
.lsc7{letter-spacing:-2.336869pt;}
.lsc6{letter-spacing:-2.333161pt;}
.lsc3{letter-spacing:-2.332673pt;}
.lsc4{letter-spacing:-2.315755pt;}
.lsa4{letter-spacing:-2.305565pt;}
.lsa5{letter-spacing:-2.066030pt;}
.lsb5{letter-spacing:-1.911915pt;}
.lsc5{letter-spacing:-1.816759pt;}
.lsc2{letter-spacing:-1.800363pt;}
.lsbb{letter-spacing:-1.779681pt;}
.lsbc{letter-spacing:-0.891710pt;}
.ls98{letter-spacing:-0.878400pt;}
.ls99{letter-spacing:-0.585600pt;}
.ls43{letter-spacing:-0.351360pt;}
.ls23{letter-spacing:-0.292800pt;}
.ls44{letter-spacing:-0.234240pt;}
.ls41{letter-spacing:-0.175680pt;}
.ls24{letter-spacing:-0.117120pt;}
.ls42{letter-spacing:-0.058560pt;}
.ls9{letter-spacing:-0.037440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.012480pt;}
.ls91{letter-spacing:0.017568pt;}
.ls1{letter-spacing:0.037280pt;}
.ls9d{letter-spacing:0.040320pt;}
.ls2b{letter-spacing:0.040992pt;}
.ls5e{letter-spacing:0.046848pt;}
.lsb3{letter-spacing:0.052704pt;}
.ls3{letter-spacing:0.058560pt;}
.ls6e{letter-spacing:0.064416pt;}
.ls2{letter-spacing:0.074560pt;}
.ls21{letter-spacing:0.087840pt;}
.ls4f{letter-spacing:0.099552pt;}
.ls25{letter-spacing:0.117120pt;}
.ls90{letter-spacing:0.122976pt;}
.ls5d{letter-spacing:0.128832pt;}
.lsae{letter-spacing:0.134688pt;}
.ls5c{letter-spacing:0.140544pt;}
.ls0{letter-spacing:0.149120pt;}
.ls22{letter-spacing:0.149760pt;}
.ls8f{letter-spacing:0.152256pt;}
.ls4{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.175680pt;}
.lsaf{letter-spacing:0.181536pt;}
.ls38{letter-spacing:0.187392pt;}
.ls20{letter-spacing:0.200320pt;}
.ls60{letter-spacing:0.204960pt;}
.ls9e{letter-spacing:0.234240pt;}
.ls94{letter-spacing:0.257664pt;}
.ls1c{letter-spacing:0.275232pt;}
.ls4a{letter-spacing:0.281088pt;}
.ls1b{letter-spacing:0.286944pt;}
.ls9f{letter-spacing:0.292800pt;}
.ls8c{letter-spacing:0.298656pt;}
.ls1f{letter-spacing:0.303360pt;}
.ls66{letter-spacing:0.316224pt;}
.ls3c{letter-spacing:0.351360pt;}
.ls46{letter-spacing:0.392352pt;}
.ls3b{letter-spacing:0.409920pt;}
.ls27{letter-spacing:0.415776pt;}
.ls52{letter-spacing:0.538752pt;}
.ls88{letter-spacing:0.638304pt;}
.ls58{letter-spacing:0.702720pt;}
.ls96{letter-spacing:0.761280pt;}
.ls57{letter-spacing:0.866688pt;}
.lsc1{letter-spacing:0.872544pt;}
.ls53{letter-spacing:0.895968pt;}
.ls2c{letter-spacing:0.995520pt;}
.ls6c{letter-spacing:1.042368pt;}
.ls6b{letter-spacing:1.095072pt;}
.ls37{letter-spacing:1.100928pt;}
.ls70{letter-spacing:1.288320pt;}
.ls6f{letter-spacing:1.341024pt;}
.ls2d{letter-spacing:1.346880pt;}
.lsc0{letter-spacing:1.376160pt;}
.ls54{letter-spacing:1.382016pt;}
.ls95{letter-spacing:1.458144pt;}
.ls10{letter-spacing:1.639680pt;}
.ls2a{letter-spacing:1.932480pt;}
.ls35{letter-spacing:2.283840pt;}
.lsaa{letter-spacing:2.301408pt;}
.ls36{letter-spacing:2.330688pt;}
.ls1e{letter-spacing:2.336544pt;}
.ls8e{letter-spacing:2.342400pt;}
.ls4e{letter-spacing:2.541504pt;}
.ls12{letter-spacing:2.576640pt;}
.ls13{letter-spacing:2.635200pt;}
.lsb2{letter-spacing:2.641056pt;}
.ls31{letter-spacing:2.652768pt;}
.ls32{letter-spacing:2.664480pt;}
.ls8a{letter-spacing:2.682048pt;}
.ls47{letter-spacing:2.857728pt;}
.ls40{letter-spacing:2.928000pt;}
.ls3f{letter-spacing:2.968992pt;}
.ls7{letter-spacing:2.980704pt;}
.ls3e{letter-spacing:3.009984pt;}
.ls89{letter-spacing:3.080256pt;}
.ls3d{letter-spacing:3.220800pt;}
.ls71{letter-spacing:3.314496pt;}
.ls5b{letter-spacing:3.572160pt;}
.ls72{letter-spacing:3.788832pt;}
.ls18{letter-spacing:3.864960pt;}
.ls7f{letter-spacing:3.905952pt;}
.ls17{letter-spacing:3.941088pt;}
.ls77{letter-spacing:4.005504pt;}
.lsd{letter-spacing:4.216320pt;}
.ls76{letter-spacing:4.333440pt;}
.ls55{letter-spacing:4.608672pt;}
.lsad{letter-spacing:4.637952pt;}
.ls7b{letter-spacing:4.673088pt;}
.ls56{letter-spacing:4.790208pt;}
.ls80{letter-spacing:4.860480pt;}
.lsab{letter-spacing:4.901472pt;}
.lsac{letter-spacing:4.930752pt;}
.ls81{letter-spacing:5.071296pt;}
.ls9a{letter-spacing:5.100576pt;}
.ls59{letter-spacing:5.487072pt;}
.lsb{letter-spacing:5.504640pt;}
.ls33{letter-spacing:5.598336pt;}
.ls30{letter-spacing:5.797440pt;}
.ls97{letter-spacing:6.142944pt;}
.lsf{letter-spacing:6.148800pt;}
.ls69{letter-spacing:6.219072pt;}
.ls28{letter-spacing:6.377184pt;}
.ls78{letter-spacing:6.734400pt;}
.ls79{letter-spacing:6.792960pt;}
.ls11{letter-spacing:7.085760pt;}
.ls51{letter-spacing:7.144320pt;}
.lse{letter-spacing:7.290720pt;}
.ls5{letter-spacing:7.366848pt;}
.ls2e{letter-spacing:7.378560pt;}
.ls7e{letter-spacing:8.022720pt;}
.ls84{letter-spacing:8.034432pt;}
.ls49{letter-spacing:8.256960pt;}
.ls4d{letter-spacing:8.374080pt;}
.ls1d{letter-spacing:8.666880pt;}
.ls82{letter-spacing:8.713728pt;}
.ls9c{letter-spacing:9.000672pt;}
.ls5f{letter-spacing:9.018240pt;}
.ls2f{letter-spacing:9.393024pt;}
.ls92{letter-spacing:9.615552pt;}
.ls9b{letter-spacing:9.621408pt;}
.lsb1{letter-spacing:9.662400pt;}
.ls45{letter-spacing:9.703392pt;}
.ls6d{letter-spacing:10.048896pt;}
.ls19{letter-spacing:10.306560pt;}
.ls83{letter-spacing:10.370976pt;}
.ls65{letter-spacing:10.376832pt;}
.ls64{letter-spacing:10.423680pt;}
.ls3a{letter-spacing:10.599360pt;}
.ls39{letter-spacing:10.816032pt;}
.ls6{letter-spacing:10.892160pt;}
.lsc{letter-spacing:10.950720pt;}
.ls75{letter-spacing:11.020992pt;}
.ls74{letter-spacing:11.050272pt;}
.ls26{letter-spacing:11.243520pt;}
.ls48{letter-spacing:11.471904pt;}
.ls15{letter-spacing:11.641728pt;}
.ls14{letter-spacing:11.653440pt;}
.ls16{letter-spacing:11.706144pt;}
.ls50{letter-spacing:11.887680pt;}
.lsa1{letter-spacing:12.180480pt;}
.lsa2{letter-spacing:12.262464pt;}
.ls63{letter-spacing:13.176000pt;}
.ls61{letter-spacing:13.199424pt;}
.ls62{letter-spacing:13.451232pt;}
.ls7c{letter-spacing:13.820160pt;}
.ls7d{letter-spacing:13.890432pt;}
.ls4b{letter-spacing:13.902144pt;}
.ls6a{letter-spacing:14.757120pt;}
.ls87{letter-spacing:15.108480pt;}
.ls85{letter-spacing:15.746784pt;}
.ls86{letter-spacing:15.881472pt;}
.ls7a{letter-spacing:17.046816pt;}
.ls5a{letter-spacing:17.626560pt;}
.ls8d{letter-spacing:17.908480pt;}
.ls29{letter-spacing:17.989632pt;}
.ls4c{letter-spacing:19.266240pt;}
.ls1a{letter-spacing:20.765376pt;}
.ls73{letter-spacing:22.867680pt;}
.ls8b{letter-spacing:30.208000pt;}
.lsa{letter-spacing:30.744000pt;}
.ls93{letter-spacing:36.195936pt;}
.lsa0{letter-spacing:126.298298pt;}
.lsa9{letter-spacing:130.287853pt;}
.lsbf{letter-spacing:132.104367pt;}
.ls67{letter-spacing:137.264640pt;}
.lsb0{letter-spacing:137.788013pt;}
.lsbe{letter-spacing:171.934635pt;}
.ws71{word-spacing:-138.718152pt;}
.ws3f{word-spacing:-58.560000pt;}
.ws83{word-spacing:-56.692267pt;}
.ws7f{word-spacing:-52.634133pt;}
.ws92{word-spacing:-38.309333pt;}
.ws8f{word-spacing:-37.963200pt;}
.ws0{word-spacing:-20.802240pt;}
.ws1{word-spacing:-20.727680pt;}
.ws30{word-spacing:-16.689600pt;}
.ws6c{word-spacing:-16.513920pt;}
.ws2f{word-spacing:-16.455360pt;}
.ws17{word-spacing:-16.396800pt;}
.ws4{word-spacing:-16.338240pt;}
.ws14{word-spacing:-16.279680pt;}
.ws31{word-spacing:-16.221120pt;}
.ws16{word-spacing:-16.162560pt;}
.ws2e{word-spacing:-16.104000pt;}
.ws33{word-spacing:-16.045440pt;}
.ws15{word-spacing:-15.986880pt;}
.ws32{word-spacing:-15.928320pt;}
.ws6b{word-spacing:-15.401280pt;}
.ws13{word-spacing:-10.558080pt;}
.ws2{word-spacing:-10.408320pt;}
.ws3{word-spacing:-10.370880pt;}
.ws73{word-spacing:-9.918013pt;}
.ws80{word-spacing:-9.360400pt;}
.ws82{word-spacing:-8.867141pt;}
.ws7e{word-spacing:-7.579376pt;}
.ws91{word-spacing:-7.202154pt;}
.ws76{word-spacing:-7.050739pt;}
.ws4d{word-spacing:-0.409920pt;}
.ws6{word-spacing:-0.372800pt;}
.ws9{word-spacing:-0.351360pt;}
.ws50{word-spacing:-0.292800pt;}
.ws37{word-spacing:-0.175680pt;}
.ws8{word-spacing:-0.149120pt;}
.ws4b{word-spacing:-0.117120pt;}
.ws7{word-spacing:-0.074560pt;}
.ws89{word-spacing:-0.068593pt;}
.wsb{word-spacing:-0.058560pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:0.037440pt;}
.ws43{word-spacing:0.058560pt;}
.ws41{word-spacing:0.117120pt;}
.ws3e{word-spacing:0.175680pt;}
.ws3c{word-spacing:0.234240pt;}
.ws19{word-spacing:0.292800pt;}
.ws52{word-spacing:0.351360pt;}
.ws18{word-spacing:0.644160pt;}
.ws96{word-spacing:0.739435pt;}
.ws97{word-spacing:0.746169pt;}
.ws55{word-spacing:0.878400pt;}
.ws39{word-spacing:0.936960pt;}
.ws7a{word-spacing:1.027542pt;}
.ws2d{word-spacing:1.288320pt;}
.ws95{word-spacing:1.328712pt;}
.ws99{word-spacing:1.340827pt;}
.ws1b{word-spacing:1.581120pt;}
.ws93{word-spacing:1.800363pt;}
.ws88{word-spacing:1.814153pt;}
.ws86{word-spacing:1.842195pt;}
.ws38{word-spacing:1.932480pt;}
.ws11{word-spacing:2.225280pt;}
.ws8b{word-spacing:2.283840pt;}
.ws94{word-spacing:2.332673pt;}
.ws98{word-spacing:2.333161pt;}
.ws78{word-spacing:2.428187pt;}
.ws84{word-spacing:2.496107pt;}
.ws25{word-spacing:2.576640pt;}
.ws8d{word-spacing:2.635200pt;}
.ws79{word-spacing:2.637787pt;}
.ws8a{word-spacing:2.860368pt;}
.ws29{word-spacing:2.869440pt;}
.ws7b{word-spacing:2.986170pt;}
.ws85{word-spacing:3.219987pt;}
.ws1e{word-spacing:3.220800pt;}
.ws24{word-spacing:3.513600pt;}
.ws2a{word-spacing:3.806400pt;}
.wsf{word-spacing:4.157760pt;}
.ws1f{word-spacing:4.450560pt;}
.ws42{word-spacing:4.801920pt;}
.ws87{word-spacing:4.919040pt;}
.ws4a{word-spacing:5.094720pt;}
.ws1d{word-spacing:5.446080pt;}
.ws20{word-spacing:5.738880pt;}
.ws23{word-spacing:6.090240pt;}
.ws35{word-spacing:6.207360pt;}
.ws70{word-spacing:6.265920pt;}
.ws53{word-spacing:6.383040pt;}
.wsd{word-spacing:6.734400pt;}
.ws22{word-spacing:7.027200pt;}
.ws48{word-spacing:7.320000pt;}
.wsc{word-spacing:7.671360pt;}
.ws5b{word-spacing:8.022720pt;}
.ws10{word-spacing:8.315520pt;}
.ws2c{word-spacing:8.608320pt;}
.ws4e{word-spacing:8.959680pt;}
.ws3a{word-spacing:9.252480pt;}
.ws40{word-spacing:9.603840pt;}
.ws49{word-spacing:9.896640pt;}
.ws8c{word-spacing:10.072320pt;}
.ws2b{word-spacing:10.248000pt;}
.ws3d{word-spacing:10.540800pt;}
.wse{word-spacing:10.892160pt;}
.ws34{word-spacing:11.184960pt;}
.ws28{word-spacing:11.536320pt;}
.ws47{word-spacing:11.829120pt;}
.ws1a{word-spacing:12.180480pt;}
.ws59{word-spacing:12.473280pt;}
.ws51{word-spacing:13.117440pt;}
.ws5c{word-spacing:13.410240pt;}
.ws44{word-spacing:13.761600pt;}
.ws6a{word-spacing:14.054400pt;}
.ws5a{word-spacing:14.405760pt;}
.ws54{word-spacing:14.698560pt;}
.ws5f{word-spacing:15.049920pt;}
.ws57{word-spacing:15.342720pt;}
.ws5e{word-spacing:15.694080pt;}
.ws68{word-spacing:15.986880pt;}
.ws3b{word-spacing:16.338240pt;}
.ws21{word-spacing:16.631040pt;}
.ws61{word-spacing:16.982400pt;}
.ws6e{word-spacing:17.275200pt;}
.ws4c{word-spacing:17.568000pt;}
.ws12{word-spacing:17.919360pt;}
.ws36{word-spacing:17.977920pt;}
.ws64{word-spacing:18.856320pt;}
.ws45{word-spacing:19.207680pt;}
.ws5d{word-spacing:19.500480pt;}
.ws26{word-spacing:20.144640pt;}
.ws60{word-spacing:20.496000pt;}
.ws4f{word-spacing:20.788800pt;}
.ws58{word-spacing:21.432960pt;}
.ws46{word-spacing:21.725760pt;}
.ws56{word-spacing:22.369920pt;}
.ws27{word-spacing:22.721280pt;}
.ws6f{word-spacing:24.302400pt;}
.ws7d{word-spacing:24.650043pt;}
.ws6d{word-spacing:24.946560pt;}
.ws1c{word-spacing:25.590720pt;}
.ws69{word-spacing:26.234880pt;}
.ws67{word-spacing:30.099840pt;}
.ws63{word-spacing:35.838720pt;}
.ws62{word-spacing:36.131520pt;}
.ws66{word-spacing:36.482880pt;}
.ws65{word-spacing:36.775680pt;}
.ws77{word-spacing:44.242379pt;}
.ws75{word-spacing:63.457926pt;}
.ws74{word-spacing:67.373727pt;}
.ws7c{word-spacing:89.191240pt;}
.ws81{word-spacing:90.959702pt;}
.ws72{word-spacing:96.544260pt;}
.ws90{word-spacing:110.141043pt;}
.ws8e{word-spacing:150.523179pt;}
._16{margin-left:-10.945555pt;}
._1a{margin-left:-6.237079pt;}
._1e{margin-left:-3.423110pt;}
._1c{margin-left:-2.240172pt;}
._0{margin-left:-0.954368pt;}
._1{width:1.007232pt;}
._a{width:2.693760pt;}
._4{width:3.999488pt;}
._5{width:5.856000pt;}
._b{width:6.810368pt;}
._7{width:7.829312pt;}
._8{width:8.784000pt;}
._c{width:10.013760pt;}
._9{width:11.184960pt;}
._6{width:12.075072pt;}
._12{width:14.112960pt;}
._11{width:15.225600pt;}
._2{width:17.977920pt;}
._15{width:19.576448pt;}
._19{width:40.764752pt;}
._d{width:76.488960pt;}
._17{width:87.062518pt;}
._14{width:93.891520pt;}
._18{width:100.067133pt;}
._f{width:106.070528pt;}
._1b{width:110.124168pt;}
._1d{width:149.815893pt;}
._10{width:156.238080pt;}
._13{width:161.171200pt;}
._e{width:169.941120pt;}
._3{width:172.869120pt;}
.fs11{font-size:18.019200pt;}
.fs12{font-size:18.070933pt;}
.fsc{font-size:22.338133pt;}
.fsb{font-size:22.350933pt;}
.fs19{font-size:32.149333pt;}
.fs1a{font-size:32.383467pt;}
.fs1f{font-size:32.390933pt;}
.fs1e{font-size:32.442133pt;}
.fs7{font-size:32.794133pt;}
.fsf{font-size:34.141333pt;}
.fs18{font-size:34.296533pt;}
.fs14{font-size:34.604267pt;}
.fs15{font-size:35.041600pt;}
.fs6{font-size:36.596267pt;}
.fs2{font-size:37.440000pt;}
.fs1c{font-size:37.963200pt;}
.fs1b{font-size:38.240533pt;}
.fs20{font-size:38.248533pt;}
.fs21{font-size:38.309333pt;}
.fs1d{font-size:40.699733pt;}
.fs13{font-size:40.862400pt;}
.fs22{font-size:42.105600pt;}
.fse{font-size:44.573333pt;}
.fs5{font-size:44.675733pt;}
.fs8{font-size:44.702400pt;}
.fsd{font-size:48.953600pt;}
.fs4{font-size:50.560000pt;}
.fs10{font-size:52.634133pt;}
.fsa{font-size:52.755733pt;}
.fs9{font-size:52.786667pt;}
.fs16{font-size:56.692267pt;}
.fs17{font-size:57.409067pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1c2{bottom:8.400000pt;}
.y1db{bottom:11.221200pt;}
.y14b{bottom:11.600000pt;}
.y150{bottom:11.680000pt;}
.y1b4{bottom:11.688267pt;}
.y173{bottom:12.112000pt;}
.y199{bottom:12.447467pt;}
.y1cc{bottom:12.828667pt;}
.y1b1{bottom:13.344933pt;}
.y14e{bottom:16.240000pt;}
.y152{bottom:16.320000pt;}
.y1d0{bottom:24.935733pt;}
.y1c4{bottom:26.420533pt;}
.y1a8{bottom:27.333867pt;}
.y165{bottom:30.774400pt;}
.y188{bottom:31.296133pt;}
.y1c5{bottom:33.171893pt;}
.y1d1{bottom:40.297083pt;}
.y1a9{bottom:45.282676pt;}
.y1b6{bottom:48.225333pt;}
.y1ce{bottom:48.485680pt;}
.y1d7{bottom:48.667733pt;}
.y19b{bottom:58.324667pt;}
.y19a{bottom:59.035867pt;}
.y174{bottom:61.540667pt;}
.y166{bottom:64.404058pt;}
.y1aa{bottom:65.254174pt;}
.y2{bottom:67.199120pt;}
.y172{bottom:67.244000pt;}
.y1d2{bottom:67.564697pt;}
.y17a{bottom:68.677615pt;}
.y189{bottom:68.994030pt;}
.y1c6{bottom:82.681867pt;}
.y1ab{bottom:85.225672pt;}
.y175{bottom:85.665563pt;}
.y1d3{bottom:94.743094pt;}
.y1b5{bottom:95.070000pt;}
.y1cb{bottom:98.331867pt;}
.y1da{bottom:99.229067pt;}
.y18a{bottom:100.407087pt;}
.y1{bottom:101.120000pt;}
.y1c9{bottom:103.633067pt;}
.y1d8{bottom:104.578533pt;}
.y1ac{bottom:105.197170pt;}
.y1b2{bottom:111.543867pt;}
.y167{bottom:112.877229pt;}
.y1dc{bottom:121.317467pt;}
.y1d4{bottom:122.010707pt;}
.y176{bottom:122.377847pt;}
.ybe{bottom:124.119440pt;}
.y1ad{bottom:125.168668pt;}
.y88{bottom:125.803040pt;}
.y113{bottom:126.567040pt;}
.y66{bottom:127.384160pt;}
.yd3{bottom:127.432640pt;}
.ya8{bottom:127.436720pt;}
.y42{bottom:127.440240pt;}
.y1cd{bottom:130.908533pt;}
.y19c{bottom:131.111733pt;}
.y18b{bottom:131.820143pt;}
.y1c7{bottom:132.103429pt;}
.y17d{bottom:137.466133pt;}
.y149{bottom:138.151440pt;}
.yf0{bottom:140.403520pt;}
.y190{bottom:141.069600pt;}
.y198{bottom:141.188133pt;}
.y196{bottom:143.914800pt;}
.y170{bottom:144.001200pt;}
.y1ae{bottom:145.140166pt;}
.y16b{bottom:147.687867pt;}
.y191{bottom:148.299027pt;}
.y177{bottom:148.513151pt;}
.y1d5{bottom:149.189104pt;}
.ybd{bottom:149.402720pt;}
.y87{bottom:151.086320pt;}
.y112{bottom:151.923520pt;}
.y65{bottom:152.667440pt;}
.ya7{bottom:152.707360pt;}
.yd2{bottom:152.715920pt;}
.y41{bottom:152.723520pt;}
.y15b{bottom:152.800000pt;}
.y168{bottom:161.238710pt;}
.y16c{bottom:162.421467pt;}
.y15c{bottom:163.040000pt;}
.y18c{bottom:163.233200pt;}
.y1af{bottom:165.111664pt;}
.yef{bottom:165.760000pt;}
.y1cf{bottom:170.838400pt;}
.y1dd{bottom:171.447467pt;}
.y192{bottom:173.546543pt;}
.ybc{bottom:174.686000pt;}
.y86{bottom:176.369600pt;}
.y1d6{bottom:176.456717pt;}
.y111{bottom:177.280000pt;}
.y64{bottom:178.023920pt;}
.y40{bottom:178.032000pt;}
.ya6{bottom:178.063840pt;}
.yd1{bottom:178.072400pt;}
.y159{bottom:178.720000pt;}
.y1c8{bottom:181.613403pt;}
.y1b0{bottom:185.083162pt;}
.y1b7{bottom:185.625153pt;}
.y16d{bottom:186.189015pt;}
.y132{bottom:186.803520pt;}
.y15a{bottom:188.960000pt;}
.y1ca{bottom:191.359200pt;}
.yee{bottom:192.163520pt;}
.y1d9{bottom:193.104267pt;}
.y185{bottom:193.258080pt;}
.y18d{bottom:194.646257pt;}
.y178{bottom:196.640084pt;}
.y19d{bottom:197.734533pt;}
.y193{bottom:198.913554pt;}
.ybb{bottom:200.042480pt;}
.y85{bottom:201.652880pt;}
.y17b{bottom:203.054400pt;}
.yd0{bottom:203.267840pt;}
.y63{bottom:203.307200pt;}
.y3f{bottom:203.315280pt;}
.ya5{bottom:203.347120pt;}
.y110{bottom:203.680240pt;}
.y157{bottom:204.720000pt;}
.y1b3{bottom:205.969467pt;}
.y169{bottom:209.711881pt;}
.y16e{bottom:209.833585pt;}
.y184{bottom:210.460080pt;}
.y131{bottom:212.160000pt;}
.y158{bottom:214.960000pt;}
.yed{bottom:217.520000pt;}
.y194{bottom:224.161070pt;}
.yba{bottom:225.325760pt;}
.y18e{bottom:226.059313pt;}
.y84{bottom:226.936160pt;}
.y183{bottom:227.340000pt;}
.ycf{bottom:228.551120pt;}
.y62{bottom:228.590480pt;}
.y3e{bottom:228.598560pt;}
.ya4{bottom:228.630400pt;}
.y179{bottom:228.962977pt;}
.y10f{bottom:228.963520pt;}
.y155{bottom:230.640000pt;}
.y16f{bottom:233.601133pt;}
.y1c0{bottom:237.360080pt;}
.y130{bottom:238.636720pt;}
.y156{bottom:240.960000pt;}
.yec{bottom:243.923520pt;}
.y182{bottom:244.146720pt;}
.y195{bottom:249.528081pt;}
.y1e{bottom:249.684720pt;}
.yb9{bottom:250.609040pt;}
.y83{bottom:252.292640pt;}
.y61{bottom:253.873760pt;}
.y3d{bottom:253.881840pt;}
.yce{bottom:253.907600pt;}
.ya3{bottom:253.913680pt;}
.y1bf{bottom:254.219600pt;}
.y10e{bottom:254.320000pt;}
.y153{bottom:256.640000pt;}
.y18f{bottom:257.472370pt;}
.y19e{bottom:257.955867pt;}
.y16a{bottom:258.185052pt;}
.y181{bottom:261.831840pt;}
.y17c{bottom:262.939200pt;}
.y12f{bottom:263.920000pt;}
.y154{bottom:266.880000pt;}
.yeb{bottom:269.280000pt;}
.y197{bottom:270.995867pt;}
.y1be{bottom:271.026320pt;}
.y171{bottom:271.731733pt;}
.y1d{bottom:274.968000pt;}
.yb8{bottom:275.892320pt;}
.y82{bottom:277.575920pt;}
.y60{bottom:279.230240pt;}
.y3c{bottom:279.238320pt;}
.ycd{bottom:279.264080pt;}
.ya2{bottom:279.270160pt;}
.y180{bottom:279.678000pt;}
.y10d{bottom:280.720240pt;}
.y14f{bottom:282.560000pt;}
.y1bd{bottom:287.906240pt;}
.y12e{bottom:290.403520pt;}
.y151{bottom:292.880000pt;}
.yea{bottom:295.687040pt;}
.y17f{bottom:297.597360pt;}
.y1c{bottom:300.324480pt;}
.yb7{bottom:301.175600pt;}
.y81{bottom:302.859200pt;}
.y5f{bottom:304.513520pt;}
.y3b{bottom:304.521600pt;}
.ycc{bottom:304.547360pt;}
.ya1{bottom:304.553440pt;}
.y1bc{bottom:304.786160pt;}
.y10c{bottom:306.003520pt;}
.y14c{bottom:308.560000pt;}
.y164{bottom:311.453333pt;}
.y17e{bottom:311.520000pt;}
.y12d{bottom:315.760000pt;}
.y14d{bottom:318.800000pt;}
.ye9{bottom:321.043520pt;}
.y1bb{bottom:321.592880pt;}
.y1b{bottom:325.680960pt;}
.yb6{bottom:326.532080pt;}
.y80{bottom:328.142480pt;}
.y5e{bottom:329.796800pt;}
.y3a{bottom:329.804880pt;}
.ycb{bottom:329.830640pt;}
.ya0{bottom:329.836720pt;}
.y10b{bottom:331.360000pt;}
.y14a{bottom:334.560000pt;}
.y1ba{bottom:339.278000pt;}
.y12c{bottom:342.160240pt;}
.ye8{bottom:346.400000pt;}
.y148{bottom:346.873920pt;}
.y1eb{bottom:349.759680pt;}
.y1a{bottom:350.964240pt;}
.yb5{bottom:351.815360pt;}
.y7f{bottom:353.498960pt;}
.y5d{bottom:355.080080pt;}
.y39{bottom:355.088160pt;}
.y9f{bottom:355.110400pt;}
.yca{bottom:355.113920pt;}
.y1b9{bottom:357.124160pt;}
.y10a{bottom:357.843520pt;}
.y1ea{bottom:366.639600pt;}
.y12b{bottom:367.443520pt;}
.y1a7{bottom:371.053333pt;}
.y1b8{bottom:371.120000pt;}
.y147{bottom:372.157200pt;}
.ye7{bottom:372.800240pt;}
.y19{bottom:376.159680pt;}
.yb4{bottom:377.098640pt;}
.y7e{bottom:378.782240pt;}
.y5c{bottom:380.363360pt;}
.y38{bottom:380.371440pt;}
.y9e{bottom:380.393680pt;}
.yc9{bottom:380.397200pt;}
.y109{bottom:383.200000pt;}
.y1e9{bottom:383.519520pt;}
.y12a{bottom:392.800000pt;}
.y146{bottom:397.352640pt;}
.ye6{bottom:398.083520pt;}
.y1e8{bottom:400.326240pt;}
.y18{bottom:401.516160pt;}
.yb3{bottom:402.381920pt;}
.y7d{bottom:403.977680pt;}
.y5b{bottom:405.719840pt;}
.y37{bottom:405.727920pt;}
.y9d{bottom:405.750160pt;}
.yc8{bottom:405.753680pt;}
.y108{bottom:409.600240pt;}
.y1e7{bottom:414.000000pt;}
.y129{bottom:419.207040pt;}
.y145{bottom:422.796960pt;}
.ye5{bottom:423.440000pt;}
.y17{bottom:426.799440pt;}
.yb2{bottom:427.738400pt;}
.y7c{bottom:429.260960pt;}
.y5a{bottom:431.003120pt;}
.y36{bottom:431.011200pt;}
.y9c{bottom:431.033440pt;}
.yc7{bottom:431.036960pt;}
.y107{bottom:434.883520pt;}
.y128{bottom:444.563520pt;}
.y144{bottom:448.080240pt;}
.ye4{bottom:449.843520pt;}
.y16{bottom:452.082720pt;}
.yb1{bottom:453.021680pt;}
.y7b{bottom:454.544240pt;}
.y59{bottom:456.286400pt;}
.y35{bottom:456.294480pt;}
.y9b{bottom:456.316720pt;}
.yc6{bottom:456.320240pt;}
.y106{bottom:460.240000pt;}
.y127{bottom:469.920000pt;}
.y143{bottom:473.363520pt;}
.ye3{bottom:475.200000pt;}
.y15{bottom:477.366000pt;}
.yb0{bottom:478.304960pt;}
.y7a{bottom:480.061760pt;}
.y58{bottom:481.569680pt;}
.y34{bottom:481.577760pt;}
.y9a{bottom:481.584320pt;}
.yc5{bottom:481.603520pt;}
.y105{bottom:486.643760pt;}
.y126{bottom:496.323520pt;}
.y142{bottom:498.720000pt;}
.ye2{bottom:501.607040pt;}
.y14{bottom:502.649280pt;}
.yaf{bottom:503.588240pt;}
.y79{bottom:505.345040pt;}
.y57{bottom:506.926160pt;}
.y33{bottom:506.934240pt;}
.y99{bottom:506.940800pt;}
.yc4{bottom:506.947120pt;}
.y104{bottom:512.000240pt;}
.y125{bottom:521.680000pt;}
.y141{bottom:525.123760pt;}
.ye1{bottom:526.963520pt;}
.y13{bottom:528.005760pt;}
.yae{bottom:528.871520pt;}
.y78{bottom:530.540480pt;}
.y56{bottom:532.209440pt;}
.y32{bottom:532.217520pt;}
.y98{bottom:532.224080pt;}
.yc3{bottom:532.230400pt;}
.y1c1{bottom:533.200000pt;}
.y103{bottom:537.283520pt;}
.y124{bottom:548.083520pt;}
.y140{bottom:550.407040pt;}
.ye0{bottom:552.320000pt;}
.y12{bottom:553.201200pt;}
.yad{bottom:554.228000pt;}
.y77{bottom:555.823760pt;}
.y55{bottom:557.404880pt;}
.y31{bottom:557.500800pt;}
.y97{bottom:557.507360pt;}
.yc2{bottom:557.513680pt;}
.y102{bottom:562.640000pt;}
.y123{bottom:573.440000pt;}
.y13f{bottom:575.763520pt;}
.y11{bottom:578.557680pt;}
.yac{bottom:579.511280pt;}
.y76{bottom:581.180240pt;}
.y54{bottom:582.688160pt;}
.y30{bottom:582.784080pt;}
.y96{bottom:582.790640pt;}
.yc1{bottom:582.796960pt;}
.y101{bottom:591.517680pt;}
.ydf{bottom:592.064800pt;}
.y122{bottom:599.843520pt;}
.y13e{bottom:601.120000pt;}
.y1a6{bottom:603.439440pt;}
.yab{bottom:604.794560pt;}
.y163{bottom:605.278000pt;}
.y75{bottom:606.463520pt;}
.y2f{bottom:608.067360pt;}
.y95{bottom:608.073920pt;}
.yc0{bottom:608.080240pt;}
.y53{bottom:608.132480pt;}
.y10{bottom:611.278080pt;}
.y1f0{bottom:612.325440pt;}
.y100{bottom:618.323520pt;}
.y1a5{bottom:621.285600pt;}
.y162{bottom:623.124160pt;}
.y121{bottom:625.200000pt;}
.y13d{bottom:627.520240pt;}
.y1ef{bottom:629.527440pt;}
.yde{bottom:630.626560pt;}
.yaa{bottom:630.707360pt;}
.y74{bottom:631.746800pt;}
.y52{bottom:633.415760pt;}
.y2e{bottom:633.423840pt;}
.y94{bottom:633.430400pt;}
.ybf{bottom:633.436720pt;}
.yf{bottom:635.360000pt;}
.y1a4{bottom:638.487600pt;}
.y161{bottom:641.043520pt;}
.yff{bottom:643.680000pt;}
.y1ee{bottom:646.407360pt;}
.y120{bottom:651.603520pt;}
.y13c{bottom:652.803520pt;}
.y1a3{bottom:655.367520pt;}
.y73{bottom:657.030080pt;}
.y51{bottom:658.699040pt;}
.y2d{bottom:658.707120pt;}
.y93{bottom:658.713680pt;}
.y160{bottom:658.962880pt;}
.y1ed{bottom:663.126240pt;}
.ye{bottom:663.445920pt;}
.ydd{bottom:669.349360pt;}
.yfe{bottom:670.087040pt;}
.y1a2{bottom:672.247440pt;}
.y15f{bottom:676.164880pt;}
.y1ec{bottom:676.800000pt;}
.y11f{bottom:676.960000pt;}
.y1e6{bottom:677.426000pt;}
.y13b{bottom:678.160000pt;}
.y72{bottom:682.313360pt;}
.ya9{bottom:682.942880pt;}
.y50{bottom:683.982320pt;}
.y2c{bottom:683.990400pt;}
.y92{bottom:683.996960pt;}
.yd{bottom:687.440000pt;}
.y1a1{bottom:689.127360pt;}
.y15e{bottom:693.044800pt;}
.ydc{bottom:694.632640pt;}
.y1e5{bottom:695.272160pt;}
.yfd{bottom:695.443520pt;}
.y11e{bottom:703.443520pt;}
.y13a{bottom:704.567040pt;}
.y1a0{bottom:705.846240pt;}
.y71{bottom:707.669840pt;}
.y4f{bottom:709.265600pt;}
.y2b{bottom:709.273680pt;}
.y91{bottom:709.280240pt;}
.y15d{bottom:709.763680pt;}
.y1e4{bottom:713.191520pt;}
.yc{bottom:715.518080pt;}
.y187{bottom:719.453333pt;}
.y19f{bottom:719.520000pt;}
.ydb{bottom:719.915920pt;}
.yfc{bottom:720.800000pt;}
.y11d{bottom:728.800000pt;}
.y139{bottom:729.923520pt;}
.y1e3{bottom:731.110880pt;}
.y70{bottom:732.953120pt;}
.y4e{bottom:734.622080pt;}
.y2a{bottom:734.630160pt;}
.y90{bottom:734.636720pt;}
.yb{bottom:739.600000pt;}
.yda{bottom:745.199200pt;}
.yfb{bottom:747.200240pt;}
.y1e2{bottom:748.312880pt;}
.y11c{bottom:755.203520pt;}
.y138{bottom:755.280000pt;}
.y6f{bottom:758.236400pt;}
.y4d{bottom:759.905360pt;}
.y29{bottom:759.913440pt;}
.y8f{bottom:759.920000pt;}
.y1e1{bottom:765.192800pt;}
.ya{bottom:767.685920pt;}
.yd9{bottom:770.482480pt;}
.yfa{bottom:772.483520pt;}
.y11b{bottom:780.560000pt;}
.y137{bottom:781.680240pt;}
.y1e0{bottom:781.999520pt;}
.y6e{bottom:783.519680pt;}
.y4c{bottom:785.188640pt;}
.y28{bottom:785.196720pt;}
.y8e{bottom:785.203280pt;}
.y9{bottom:791.680000pt;}
.yd8{bottom:795.765760pt;}
.yf9{bottom:797.840000pt;}
.y1df{bottom:798.806240pt;}
.y11a{bottom:806.960240pt;}
.y136{bottom:806.963520pt;}
.y6d{bottom:808.876160pt;}
.y27{bottom:810.457280pt;}
.y4b{bottom:810.471920pt;}
.y8d{bottom:810.486560pt;}
.y1c3{bottom:812.453333pt;}
.y1de{bottom:812.480000pt;}
.yd7{bottom:821.122240pt;}
.yf8{bottom:824.240240pt;}
.y8{bottom:825.765040pt;}
.y119{bottom:832.243520pt;}
.y135{bottom:832.320000pt;}
.y6c{bottom:834.159440pt;}
.y8c{bottom:835.682000pt;}
.y26{bottom:835.740560pt;}
.y4a{bottom:835.755200pt;}
.yf7{bottom:849.523520pt;}
.y118{bottom:857.600000pt;}
.y134{bottom:858.720240pt;}
.y6b{bottom:859.442720pt;}
.yd6{bottom:859.757200pt;}
.y8b{bottom:861.038480pt;}
.y25{bottom:861.097040pt;}
.y49{bottom:861.111680pt;}
.y7{bottom:864.397200pt;}
.yf6{bottom:874.880000pt;}
.y133{bottom:884.003520pt;}
.y117{bottom:884.007040pt;}
.y6a{bottom:884.726000pt;}
.y24{bottom:886.380320pt;}
.y48{bottom:886.394960pt;}
.y8a{bottom:886.482800pt;}
.yd5{bottom:898.480000pt;}
.y6{bottom:903.120000pt;}
.yf5{bottom:903.840960pt;}
.y116{bottom:909.363520pt;}
.y69{bottom:910.009280pt;}
.y23{bottom:911.663600pt;}
.y47{bottom:911.678240pt;}
.y89{bottom:911.766080pt;}
.yf4{bottom:930.720000pt;}
.y115{bottom:934.720000pt;}
.y68{bottom:935.365760pt;}
.y22{bottom:936.946880pt;}
.y46{bottom:936.961520pt;}
.yd4{bottom:937.034720pt;}
.y5{bottom:944.718800pt;}
.yf3{bottom:959.597680pt;}
.y114{bottom:961.120240pt;}
.y67{bottom:961.278560pt;}
.y21{bottom:962.230160pt;}
.y45{bottom:962.318000pt;}
.y4{bottom:976.966000pt;}
.yf2{bottom:986.403520pt;}
.y20{bottom:987.513440pt;}
.y44{bottom:987.601280pt;}
.y3{bottom:1009.120000pt;}
.yf1{bottom:1011.760000pt;}
.y186{bottom:1012.635680pt;}
.y1f{bottom:1012.796720pt;}
.y43{bottom:1012.884560pt;}
.h26{height:18.793463pt;}
.h27{height:18.847419pt;}
.h2f{height:22.001333pt;}
.h20{height:23.297975pt;}
.h1f{height:23.311325pt;}
.h16{height:25.278667pt;}
.h13{height:25.280000pt;}
.h15{height:25.360000pt;}
.h31{height:33.530750pt;}
.h32{height:33.774944pt;}
.h38{height:33.782731pt;}
.h37{height:33.836131pt;}
.h1a{height:34.203256pt;}
.h24{height:35.608344pt;}
.h2a{height:36.091169pt;}
.h2b{height:36.547294pt;}
.h19{height:38.168762pt;}
.h2{height:39.030469pt;}
.h14{height:39.048750pt;}
.h34{height:39.594965pt;}
.h33{height:39.883681pt;}
.h39{height:39.892025pt;}
.h3a{height:39.955971pt;}
.h35{height:42.448550pt;}
.h7{height:42.516250pt;}
.h29{height:42.618206pt;}
.h3b{height:43.914825pt;}
.h23{height:46.488594pt;}
.h18{height:46.595394pt;}
.h1b{height:46.623206pt;}
.h21{height:51.057075pt;}
.h25{height:54.895756pt;}
.h1d{height:55.022581pt;}
.h1c{height:55.054844pt;}
.h4{height:57.473437pt;}
.h2c{height:59.128262pt;}
.h2d{height:59.875862pt;}
.h6{height:61.076250pt;}
.h5{height:61.087450pt;}
.hc{height:61.114650pt;}
.hd{height:61.126810pt;}
.hf{height:61.127770pt;}
.hb{height:61.138970pt;}
.h2e{height:61.157850pt;}
.he{height:61.160090pt;}
.h8{height:61.167130pt;}
.h9{height:61.268250pt;}
.ha{height:61.299610pt;}
.h12{height:62.483520pt;}
.h11{height:66.750000pt;}
.h1e{height:72.239265pt;}
.h3{height:77.763750pt;}
.h10{height:77.784870pt;}
.h30{height:212.133333pt;}
.h36{height:214.065333pt;}
.h28{height:228.333333pt;}
.h22{height:289.133333pt;}
.h17{height:289.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:34.481333pt;}
.w2{width:83.360000pt;}
.w3{width:167.360000pt;}
.w7{width:302.133333pt;}
.w8{width:302.200000pt;}
.w5{width:326.933333pt;}
.w4{width:378.065333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:9.600000pt;}
.x14{left:12.720000pt;}
.x6a{left:15.280080pt;}
.x42{left:18.784400pt;}
.x17{left:23.280000pt;}
.x5b{left:24.417467pt;}
.x1f{left:27.360000pt;}
.x52{left:28.414400pt;}
.x24{left:32.320000pt;}
.x34{left:33.840000pt;}
.x16{left:37.600000pt;}
.x1b{left:39.360000pt;}
.x4f{left:41.127713pt;}
.x60{left:43.321449pt;}
.x4e{left:46.715513pt;}
.x26{left:48.080000pt;}
.x36{left:49.600000pt;}
.x58{left:52.096667pt;}
.x2b{left:54.080000pt;}
.x44{left:62.178800pt;}
.x21{left:63.760000pt;}
.x51{left:66.561520pt;}
.x49{left:68.242133pt;}
.x2d{left:70.640000pt;}
.x2{left:71.991600pt;}
.x7{left:73.040000pt;}
.x19{left:74.400000pt;}
.x38{left:75.920000pt;}
.x1d{left:77.040000pt;}
.x67{left:79.512667pt;}
.x4{left:81.359360pt;}
.x50{left:86.788800pt;}
.xb{left:88.320000pt;}
.x9{left:90.080000pt;}
.xd{left:91.840000pt;}
.x11{left:95.838960pt;}
.x40{left:102.957733pt;}
.x3a{left:103.920000pt;}
.x23{left:107.840000pt;}
.x2f{left:109.360000pt;}
.x45{left:111.642006pt;}
.xf{left:119.278800pt;}
.x3{left:121.920000pt;}
.x31{left:125.120000pt;}
.x28{left:126.720000pt;}
.x3c{left:130.320000pt;}
.x64{left:132.463600pt;}
.x63{left:134.530667pt;}
.x55{left:136.841067pt;}
.x5c{left:138.862667pt;}
.x33{left:141.680000pt;}
.x4c{left:144.212133pt;}
.x54{left:146.589867pt;}
.x4b{left:150.513200pt;}
.x62{left:155.373333pt;}
.x53{left:162.402133pt;}
.x10{left:166.595280pt;}
.x59{left:168.126400pt;}
.x43{left:170.724400pt;}
.x66{left:178.580400pt;}
.x41{left:197.117733pt;}
.x56{left:202.705467pt;}
.x3f{left:207.906667pt;}
.x4a{left:228.146298pt;}
.xa{left:240.323280pt;}
.x68{left:249.564667pt;}
.x5{left:253.201520pt;}
.x5e{left:256.000000pt;}
.xe{left:265.517120pt;}
.x46{left:268.335093pt;}
.x13{left:271.200000pt;}
.x61{left:273.453333pt;}
.x47{left:293.781934pt;}
.x5a{left:295.898667pt;}
.xc{left:303.050800pt;}
.x48{left:312.679874pt;}
.x8{left:350.807520pt;}
.x15{left:355.200000pt;}
.x3e{left:368.318320pt;}
.x65{left:374.173333pt;}
.x57{left:384.573333pt;}
.x29{left:388.320000pt;}
.x12{left:389.440000pt;}
.x1{left:393.120000pt;}
.x6{left:396.884320pt;}
.x25{left:398.080000pt;}
.x35{left:399.600000pt;}
.x2a{left:404.080000pt;}
.x20{left:413.760000pt;}
.x2c{left:420.640000pt;}
.x18{left:424.400000pt;}
.x37{left:425.920000pt;}
.x1c{left:427.040000pt;}
.x39{left:453.920000pt;}
.x22{left:457.760000pt;}
.x2e{left:459.360000pt;}
.x1e{left:469.600000pt;}
.x1a{left:471.440000pt;}
.x30{left:475.120000pt;}
.x27{left:476.720000pt;}
.x3b{left:480.320000pt;}
.x3d{left:482.320000pt;}
.x32{left:491.680000pt;}
.x4d{left:585.920000pt;}
.x6b{left:670.640000pt;}
.x69{left:676.320000pt;}
.x6c{left:680.320000pt;}
.x5d{left:711.440000pt;}
}




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