
    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_a54a954bfc400785bbdc9534.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_e8cffefe415b264540381e01.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5df41f7e4e3077bb708bf827.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_4a50539d15940136db441e4b.woff2')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_a54a954bfc400785bbdc9534.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_5df41f7e4e3077bb708bf827.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_78ab35228cea23de00405a9a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4cd756b2436ff32f365093a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_825b72d8aa58bb25c883cd68.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.042000;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_99190d54b3b3c61612814a57.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e3d9fd0b3a30ee344e37b222.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5b9fbe3d7b1ea00abdb5feb7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7ec91ea90e762e0beb8b6811.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e773f94f2f536cff53f8a1d1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ba714cb3c43d6cb919b9bdc8.woff2')format("woff");}.fff{font-family:fff;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e1aecaf0efbfe47694f39da4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4e4e745d4c458079e6fdcd65.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.030000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a54a954bfc400785bbdc9534.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_51139c7d4457aafcc4c37e99.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.030000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5df41f7e4e3077bb708bf827.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941000;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;}
.m1{transform:matrix(0.157597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157597,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-32.046975px;}
.v2{vertical-align:-29.880000px;}
.v5{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.v4{vertical-align:56.160000px;}
.ls59{letter-spacing:-2.664000px;}
.ls12{letter-spacing:-0.794880px;}
.ls92{letter-spacing:-0.578880px;}
.ls72{letter-spacing:-0.505008px;}
.ls40{letter-spacing:-0.492984px;}
.ls7c{letter-spacing:-0.432864px;}
.ls67{letter-spacing:-0.360720px;}
.ls14{letter-spacing:-0.331200px;}
.ls8a{letter-spacing:-0.324000px;}
.ls8c{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264960px;}
.ls95{letter-spacing:-0.241200px;}
.ls8f{letter-spacing:-0.216000px;}
.ls96{letter-spacing:-0.192960px;}
.ls13{letter-spacing:-0.191520px;}
.ls57{letter-spacing:-0.181116px;}
.ls42{letter-spacing:-0.150300px;}
.ls93{letter-spacing:-0.144720px;}
.ls3e{letter-spacing:-0.144288px;}
.ls7{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.138276px;}
.ls63{letter-spacing:-0.132264px;}
.ls71{letter-spacing:-0.126252px;}
.ls2a{letter-spacing:-0.124488px;}
.ls7e{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.108000px;}
.ls3d{letter-spacing:-0.096192px;}
.ls82{letter-spacing:-0.093600px;}
.ls7d{letter-spacing:-0.090180px;}
.ls4f{letter-spacing:-0.084168px;}
.ls74{letter-spacing:-0.078156px;}
.ls38{letter-spacing:-0.076896px;}
.ls44{letter-spacing:-0.072144px;}
.ls5{letter-spacing:-0.072000px;}
.ls4b{letter-spacing:-0.067284px;}
.ls10{letter-spacing:-0.066240px;}
.ls41{letter-spacing:-0.066132px;}
.ls73{letter-spacing:-0.060120px;}
.ls5e{letter-spacing:-0.057600px;}
.ls43{letter-spacing:-0.054108px;}
.ls8e{letter-spacing:-0.054000px;}
.ls4d{letter-spacing:-0.050400px;}
.ls66{letter-spacing:-0.048096px;}
.ls56{letter-spacing:-0.048060px;}
.ls70{letter-spacing:-0.043200px;}
.ls27{letter-spacing:-0.043092px;}
.ls46{letter-spacing:-0.042084px;}
.ls22{letter-spacing:-0.038448px;}
.ls2d{letter-spacing:-0.036072px;}
.ls4c{letter-spacing:-0.036000px;}
.ls3f{letter-spacing:-0.030060px;}
.ls3a{letter-spacing:-0.028800px;}
.ls45{letter-spacing:-0.024048px;}
.ls3c{letter-spacing:-0.021600px;}
.ls7f{letter-spacing:-0.019764px;}
.ls28{letter-spacing:-0.019152px;}
.ls24{letter-spacing:-0.018036px;}
.ls39{letter-spacing:-0.014400px;}
.ls2c{letter-spacing:-0.012024px;}
.ls78{letter-spacing:-0.008424px;}
.ls3b{letter-spacing:-0.007200px;}
.ls23{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.006012px;}
.ls2e{letter-spacing:0.007200px;}
.ls31{letter-spacing:0.012024px;}
.ls20{letter-spacing:0.014364px;}
.ls52{letter-spacing:0.014400px;}
.ls6e{letter-spacing:0.018036px;}
.ls60{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.024048px;}
.ls1c{letter-spacing:0.028728px;}
.ls5f{letter-spacing:0.028800px;}
.ls33{letter-spacing:0.030060px;}
.ls77{letter-spacing:0.036000px;}
.ls4a{letter-spacing:0.036072px;}
.ls61{letter-spacing:0.042084px;}
.ls55{letter-spacing:0.043200px;}
.ls91{letter-spacing:0.048240px;}
.ls6f{letter-spacing:0.050328px;}
.ls54{letter-spacing:0.050400px;}
.ls64{letter-spacing:0.054108px;}
.ls1d{letter-spacing:0.056160px;}
.ls11{letter-spacing:0.066240px;}
.ls76{letter-spacing:0.067104px;}
.ls53{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.072144px;}
.ls79{letter-spacing:0.075492px;}
.ls7b{letter-spacing:0.078156px;}
.ls37{letter-spacing:0.084168px;}
.ls4{letter-spacing:0.084240px;}
.ls2f{letter-spacing:0.087840px;}
.ls36{letter-spacing:0.090180px;}
.ls80{letter-spacing:0.092268px;}
.ls62{letter-spacing:0.096192px;}
.ls1f{letter-spacing:0.119700px;}
.ls25{letter-spacing:0.120240px;}
.lsd{letter-spacing:0.132480px;}
.ls1a{letter-spacing:0.138276px;}
.ls6{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.144288px;}
.ls97{letter-spacing:0.144720px;}
.ls18{letter-spacing:0.150300px;}
.ls1b{letter-spacing:0.156312px;}
.ls17{letter-spacing:0.162324px;}
.ls1e{letter-spacing:0.174960px;}
.lsf{letter-spacing:0.191520px;}
.lsb{letter-spacing:0.198720px;}
.ls81{letter-spacing:0.211464px;}
.ls94{letter-spacing:0.241200px;}
.ls83{letter-spacing:0.270000px;}
.ls84{letter-spacing:0.289440px;}
.ls90{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.336960px;}
.ls86{letter-spacing:0.337680px;}
.ls6d{letter-spacing:0.444888px;}
.ls6a{letter-spacing:0.450900px;}
.ls6c{letter-spacing:0.805608px;}
.ls6b{letter-spacing:0.811620px;}
.ls8b{letter-spacing:1.024578px;}
.ls89{letter-spacing:1.656000px;}
.ls8d{letter-spacing:1.821472px;}
.ls98{letter-spacing:1.944000px;}
.ls35{letter-spacing:2.969928px;}
.ls32{letter-spacing:3.324636px;}
.ls30{letter-spacing:3.330648px;}
.ls69{letter-spacing:4.052088px;}
.ls68{letter-spacing:4.412808px;}
.lse{letter-spacing:5.365440px;}
.lsa{letter-spacing:7.153920px;}
.ls4e{letter-spacing:7.280532px;}
.ls49{letter-spacing:7.286544px;}
.ls48{letter-spacing:7.292556px;}
.ls9{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.929440px;}
.ls1{letter-spacing:14.256000px;}
.ls5d{letter-spacing:105.019200px;}
.ls85{letter-spacing:110.035440px;}
.ls87{letter-spacing:117.946080px;}
.ls88{letter-spacing:117.946800px;}
.ls75{letter-spacing:311.257440px;}
.ls50{letter-spacing:395.827875px;}
.ls5b{letter-spacing:482.140800px;}
.ls5c{letter-spacing:538.466400px;}
.ls58{letter-spacing:599.861250px;}
.ls5a{letter-spacing:635.243287px;}
.ls51{letter-spacing:1082.448000px;}
.ls7a{letter-spacing:1362.097440px;}
.ls2b{letter-spacing:1391.976396px;}
.ls29{letter-spacing:1849.892400px;}
.ls26{letter-spacing:1871.854236px;}
.ls21{letter-spacing:2235.093264px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6c{word-spacing:-67.400532px;}
.ws45{word-spacing:-60.120000px;}
.ws44{word-spacing:-60.113988px;}
.ws51{word-spacing:-60.065892px;}
.ws2{word-spacing:-29.232000px;}
.ws3{word-spacing:-21.816000px;}
.ws4{word-spacing:-21.708000px;}
.wsc{word-spacing:-19.535040px;}
.wsf{word-spacing:-19.152000px;}
.ws0{word-spacing:-17.100720px;}
.ws42{word-spacing:-15.264000px;}
.ws97{word-spacing:-15.256800px;}
.ws1{word-spacing:-15.192000px;}
.wse{word-spacing:-14.374080px;}
.ws10{word-spacing:-14.241600px;}
.ws13{word-spacing:-14.042880px;}
.wsd{word-spacing:-13.976640px;}
.ws11{word-spacing:-13.777920px;}
.ws12{word-spacing:-13.711680px;}
.ws2d{word-spacing:-12.907764px;}
.ws32{word-spacing:-12.901752px;}
.ws3c{word-spacing:-12.895740px;}
.ws36{word-spacing:-12.745440px;}
.ws2e{word-spacing:-12.739428px;}
.ws39{word-spacing:-12.733416px;}
.ws3b{word-spacing:-12.709368px;}
.ws11a{word-spacing:-11.178000px;}
.ws11f{word-spacing:-10.564560px;}
.ws11c{word-spacing:-10.468080px;}
.ws120{word-spacing:-10.371600px;}
.ws34{word-spacing:-10.179288px;}
.ws38{word-spacing:-10.164924px;}
.ws35{word-spacing:-10.131408px;}
.ws121{word-spacing:-10.082160px;}
.ws11e{word-spacing:-10.033920px;}
.ws37{word-spacing:-10.026072px;}
.ws11d{word-spacing:-9.985680px;}
.ws116{word-spacing:-9.828000px;}
.ws117{word-spacing:-9.720000px;}
.ws11b{word-spacing:-9.648000px;}
.ws119{word-spacing:-9.612000px;}
.ws118{word-spacing:-9.558000px;}
.ws115{word-spacing:-9.504000px;}
.ws43{word-spacing:-8.929440px;}
.wsd0{word-spacing:-8.921016px;}
.ws81{word-spacing:-8.748324px;}
.ws126{word-spacing:-2.504524px;}
.ws133{word-spacing:-1.944000px;}
.ws123{word-spacing:-1.707630px;}
.ws31{word-spacing:-1.707408px;}
.ws2f{word-spacing:-1.124244px;}
.ws3a{word-spacing:-1.022040px;}
.ws12d{word-spacing:-0.482400px;}
.ws12b{word-spacing:-0.432000px;}
.ws131{word-spacing:-0.385920px;}
.ws12a{word-spacing:-0.378000px;}
.ws12f{word-spacing:-0.289440px;}
.wsa{word-spacing:-0.288000px;}
.ws3f{word-spacing:-0.282564px;}
.wsb{word-spacing:-0.216000px;}
.ws12c{word-spacing:-0.192960px;}
.ws41{word-spacing:-0.191520px;}
.ws93{word-spacing:-0.187200px;}
.wsd6{word-spacing:-0.180000px;}
.wsd9{word-spacing:-0.165600px;}
.ws101{word-spacing:-0.158400px;}
.ws10c{word-spacing:-0.151200px;}
.ws6d{word-spacing:-0.150300px;}
.ws129{word-spacing:-0.144720px;}
.ws3e{word-spacing:-0.144288px;}
.ws8{word-spacing:-0.144000px;}
.wsf0{word-spacing:-0.138276px;}
.ws6b{word-spacing:-0.136800px;}
.ws57{word-spacing:-0.132264px;}
.ws114{word-spacing:-0.129600px;}
.ws40{word-spacing:-0.126252px;}
.wsc3{word-spacing:-0.122400px;}
.ws113{word-spacing:-0.115200px;}
.ws9a{word-spacing:-0.114228px;}
.ws88{word-spacing:-0.108000px;}
.ws99{word-spacing:-0.102204px;}
.wsf2{word-spacing:-0.100656px;}
.ws6e{word-spacing:-0.096192px;}
.ws10e{word-spacing:-0.093600px;}
.ws4b{word-spacing:-0.090180px;}
.ws91{word-spacing:-0.086400px;}
.ws7{word-spacing:-0.084240px;}
.wsb1{word-spacing:-0.079200px;}
.wsa8{word-spacing:-0.078156px;}
.ws46{word-spacing:-0.072144px;}
.ws9{word-spacing:-0.072000px;}
.ws4d{word-spacing:-0.066132px;}
.ws73{word-spacing:-0.064800px;}
.ws6f{word-spacing:-0.060120px;}
.ws111{word-spacing:-0.057600px;}
.ws47{word-spacing:-0.054108px;}
.wsa1{word-spacing:-0.050400px;}
.ws52{word-spacing:-0.042084px;}
.ws54{word-spacing:-0.036072px;}
.ws112{word-spacing:-0.036000px;}
.ws4a{word-spacing:-0.030060px;}
.ws74{word-spacing:-0.028836px;}
.wsd8{word-spacing:-0.028800px;}
.ws50{word-spacing:-0.024048px;}
.wsc4{word-spacing:-0.021600px;}
.ws56{word-spacing:-0.018036px;}
.ws80{word-spacing:-0.014400px;}
.ws9c{word-spacing:-0.012024px;}
.ws55{word-spacing:-0.006012px;}
.ws5{word-spacing:0.000000px;}
.ws4e{word-spacing:0.006012px;}
.ws76{word-spacing:0.007200px;}
.ws53{word-spacing:0.012024px;}
.wsbb{word-spacing:0.014400px;}
.wsa9{word-spacing:0.018036px;}
.ws70{word-spacing:0.024048px;}
.wsee{word-spacing:0.030060px;}
.ws48{word-spacing:0.036072px;}
.ws130{word-spacing:0.048240px;}
.wse8{word-spacing:0.057600px;}
.wsb2{word-spacing:0.057672px;}
.wsef{word-spacing:0.060120px;}
.wsa6{word-spacing:0.066132px;}
.ws83{word-spacing:0.067284px;}
.ws132{word-spacing:0.072000px;}
.ws98{word-spacing:0.072144px;}
.ws9b{word-spacing:0.078156px;}
.ws49{word-spacing:0.084168px;}
.ws4f{word-spacing:0.090180px;}
.ws12e{word-spacing:0.096480px;}
.ws3d{word-spacing:0.125172px;}
.wscf{word-spacing:0.136800px;}
.ws100{word-spacing:0.144936px;}
.ws78{word-spacing:0.223200px;}
.ws10d{word-spacing:0.230400px;}
.ws65{word-spacing:0.244800px;}
.ws6{word-spacing:0.252720px;}
.wsc2{word-spacing:0.259200px;}
.ws124{word-spacing:0.270000px;}
.ws9d{word-spacing:0.300600px;}
.wsed{word-spacing:0.372744px;}
.ws122{word-spacing:0.378000px;}
.ws21{word-spacing:0.397440px;}
.ws4c{word-spacing:0.432864px;}
.wsa7{word-spacing:0.444888px;}
.wsec{word-spacing:0.540000px;}
.wsf4{word-spacing:0.568800px;}
.ws94{word-spacing:0.576000px;}
.ws125{word-spacing:0.594000px;}
.wsc8{word-spacing:0.604800px;}
.wsfa{word-spacing:0.612000px;}
.ws5a{word-spacing:0.950400px;}
.ws29{word-spacing:1.126080px;}
.wse7{word-spacing:1.281600px;}
.wsc0{word-spacing:1.296000px;}
.wsc5{word-spacing:1.317600px;}
.ws60{word-spacing:1.634400px;}
.ws59{word-spacing:1.713600px;}
.ws1a{word-spacing:1.722240px;}
.ws15{word-spacing:1.854720px;}
.wsb0{word-spacing:1.972800px;}
.ws58{word-spacing:2.030400px;}
.wse3{word-spacing:2.044800px;}
.ws89{word-spacing:2.066400px;}
.wsfd{word-spacing:2.088000px;}
.ws8a{word-spacing:2.203200px;}
.wse1{word-spacing:2.376000px;}
.wsf1{word-spacing:2.404800px;}
.ws71{word-spacing:2.448000px;}
.wsde{word-spacing:2.786400px;}
.wsc7{word-spacing:3.074400px;}
.ws84{word-spacing:3.096000px;}
.ws64{word-spacing:3.110400px;}
.ws127{word-spacing:3.132000px;}
.wsbe{word-spacing:3.139200px;}
.ws128{word-spacing:3.186000px;}
.wsbf{word-spacing:3.196800px;}
.ws62{word-spacing:3.448800px;}
.ws8d{word-spacing:3.456000px;}
.wsb5{word-spacing:3.470400px;}
.ws68{word-spacing:3.484800px;}
.ws8e{word-spacing:3.585600px;}
.wsc9{word-spacing:3.736800px;}
.wsc1{word-spacing:3.823200px;}
.ws9e{word-spacing:3.837600px;}
.wsf5{word-spacing:3.844800px;}
.ws7e{word-spacing:3.873600px;}
.wsd7{word-spacing:3.880800px;}
.wsb6{word-spacing:3.902400px;}
.ws109{word-spacing:3.967200px;}
.wscd{word-spacing:4.176000px;}
.wsd5{word-spacing:4.219200px;}
.wse5{word-spacing:4.334400px;}
.wse6{word-spacing:4.528800px;}
.wsce{word-spacing:4.615200px;}
.ws1b{word-spacing:4.769280px;}
.wsfe{word-spacing:4.831200px;}
.ws85{word-spacing:4.910400px;}
.ws67{word-spacing:4.953600px;}
.wsfb{word-spacing:5.256000px;}
.wse4{word-spacing:5.263200px;}
.wsbc{word-spacing:5.270400px;}
.wsfc{word-spacing:5.292000px;}
.ws108{word-spacing:5.587200px;}
.wseb{word-spacing:5.688000px;}
.ws28{word-spacing:6.160320px;}
.wse9{word-spacing:6.336000px;}
.ws66{word-spacing:6.343200px;}
.ws77{word-spacing:6.372000px;}
.wsaf{word-spacing:6.717600px;}
.ws20{word-spacing:6.888960px;}
.wsb4{word-spacing:7.401600px;}
.ws72{word-spacing:7.416000px;}
.ws95{word-spacing:7.423200px;}
.ws105{word-spacing:7.437600px;}
.wse0{word-spacing:7.473600px;}
.wsc6{word-spacing:7.509600px;}
.wsba{word-spacing:7.624800px;}
.ws10a{word-spacing:7.869600px;}
.wsf7{word-spacing:8.150400px;}
.wsac{word-spacing:8.172000px;}
.ws87{word-spacing:8.208000px;}
.ws16{word-spacing:8.346240px;}
.wsea{word-spacing:8.510400px;}
.ws106{word-spacing:8.517600px;}
.ws96{word-spacing:8.539200px;}
.wsf3{word-spacing:8.870400px;}
.ws107{word-spacing:8.942400px;}
.ws23{word-spacing:9.074880px;}
.ws8c{word-spacing:9.201600px;}
.wsad{word-spacing:9.259200px;}
.wscc{word-spacing:9.266400px;}
.wsdf{word-spacing:9.583200px;}
.ws10b{word-spacing:9.691200px;}
.ws90{word-spacing:9.885600px;}
.ws8f{word-spacing:9.928800px;}
.ws5b{word-spacing:9.936000px;}
.ws103{word-spacing:9.957600px;}
.wsaa{word-spacing:10.288800px;}
.ws7f{word-spacing:10.317600px;}
.wsb9{word-spacing:10.324800px;}
.ws79{word-spacing:10.396800px;}
.ws7a{word-spacing:10.440000px;}
.ws18{word-spacing:10.532160px;}
.wsae{word-spacing:10.670400px;}
.wsa0{word-spacing:10.677600px;}
.wse2{word-spacing:10.706400px;}
.wsbd{word-spacing:10.735200px;}
.ws9f{word-spacing:11.037600px;}
.ws7b{word-spacing:11.390400px;}
.ws7d{word-spacing:11.404800px;}
.ws26{word-spacing:11.459520px;}
.wsd3{word-spacing:11.728800px;}
.wsd4{word-spacing:11.764800px;}
.ws63{word-spacing:11.786400px;}
.ws27{word-spacing:11.923200px;}
.ws19{word-spacing:12.651840px;}
.wsb7{word-spacing:12.830400px;}
.ws86{word-spacing:12.844800px;}
.wsb8{word-spacing:12.888000px;}
.ws22{word-spacing:12.916800px;}
.ws5d{word-spacing:13.154400px;}
.ws7c{word-spacing:13.226400px;}
.wsf6{word-spacing:13.233600px;}
.ws102{word-spacing:13.284000px;}
.ws24{word-spacing:13.380480px;}
.ws5f{word-spacing:13.564800px;}
.wsca{word-spacing:13.903200px;}
.ws8b{word-spacing:14.637600px;}
.wsab{word-spacing:14.688000px;}
.ws69{word-spacing:14.990400px;}
.ws75{word-spacing:15.314400px;}
.ws61{word-spacing:15.372000px;}
.wscb{word-spacing:15.746400px;}
.ws6a{word-spacing:16.423200px;}
.ws5e{word-spacing:19.008000px;}
.wsd2{word-spacing:21.103200px;}
.wsff{word-spacing:21.110400px;}
.ws14{word-spacing:22.057920px;}
.ws17{word-spacing:23.448960px;}
.ws5c{word-spacing:23.623200px;}
.ws1d{word-spacing:24.177600px;}
.ws1e{word-spacing:24.906240px;}
.ws2b{word-spacing:25.634880px;}
.ws2a{word-spacing:25.833600px;}
.ws25{word-spacing:36.696960px;}
.ws1c{word-spacing:37.160640px;}
.ws82{word-spacing:37.800000px;}
.ws92{word-spacing:41.212800px;}
.ws1f{word-spacing:60.874560px;}
.ws104{word-spacing:80.524800px;}
.wsd1{word-spacing:80.549964px;}
.wsb3{word-spacing:80.566740px;}
.ws2c{word-spacing:93.678984px;}
.ws30{word-spacing:93.919464px;}
.ws10f{word-spacing:109.281600px;}
.ws110{word-spacing:109.324800px;}
.ws33{word-spacing:128.969424px;}
.wsa2{word-spacing:501.328800px;}
.wsa3{word-spacing:550.281600px;}
.wsa4{word-spacing:606.787200px;}
.wsdb{word-spacing:622.656000px;}
.wsf8{word-spacing:671.997600px;}
.wsdc{word-spacing:765.223200px;}
.wsf9{word-spacing:765.230400px;}
.wsa5{word-spacing:859.514400px;}
.wsda{word-spacing:890.503200px;}
.wsdd{word-spacing:981.208800px;}
._34{margin-left:-940.320000px;}
._32{margin-left:-909.655200px;}
._1d{margin-left:-859.269600px;}
._2b{margin-left:-812.527200px;}
._29{margin-left:-782.287200px;}
._33{margin-left:-759.463200px;}
._31{margin-left:-687.240000px;}
._2f{margin-left:-657.000000px;}
._2a{margin-left:-631.447200px;}
._39{margin-left:-619.920000px;}
._1b{margin-left:-606.960000px;}
._38{margin-left:-556.920000px;}
._19{margin-left:-550.440000px;}
._2e{margin-left:-544.680000px;}
._1e{margin-left:-534.240000px;}
._36{margin-left:-526.680000px;}
._2c{margin-left:-514.432800px;}
._30{margin-left:-506.160000px;}
._17{margin-left:-501.480000px;}
._f{margin-left:-467.640000px;}
._37{margin-left:-412.920000px;}
._2d{margin-left:-400.680000px;}
._11{margin-left:-376.560000px;}
._10{margin-left:-293.040000px;}
._1c{margin-left:-244.440000px;}
._1a{margin-left:-150.840000px;}
._18{margin-left:-138.960000px;}
._3c{margin-left:-109.958400px;}
._21{margin-left:-80.642232px;}
._14{margin-left:-41.177520px;}
._22{margin-left:-11.880000px;}
._12{margin-left:-10.440000px;}
._7{margin-left:-8.731980px;}
._23{margin-left:-4.505688px;}
._1f{margin-left:-2.822400px;}
._0{margin-left:-1.432080px;}
._1{width:1.440000px;}
._3e{width:2.441690px;}
._6{width:3.535056px;}
._2{width:5.345892px;}
._8{width:7.038108px;}
._4{width:8.344656px;}
._13{width:10.526400px;}
._5{width:29.806812px;}
._a{width:57.600000px;}
._35{width:80.642232px;}
._e{width:85.032000px;}
._d{width:91.432944px;}
._3{width:106.713000px;}
._3a{width:109.317600px;}
._c{width:122.616000px;}
._3b{width:161.287200px;}
._27{width:164.008800px;}
._b{width:173.880000px;}
._3d{width:190.029600px;}
._28{width:286.192800px;}
._9{width:289.656000px;}
._25{width:550.440000px;}
._20{width:966.837600px;}
._26{width:1115.640000px;}
._24{width:1364.616000px;}
._15{width:2068.416000px;}
._16{width:2160.576000px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:18.000000px;}
.fsb{font-size:38.880000px;}
.fsd{font-size:41.625000px;}
.fsa{font-size:42.120000px;}
.fs9{font-size:47.880000px;}
.fs11{font-size:48.240000px;}
.fsf{font-size:54.000000px;}
.fs10{font-size:56.920998px;}
.fs8{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fse{font-size:83.880000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs7{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.fsc{font-size:112.500000px;}
.fs3{font-size:144.000000px;}
.y1b{bottom:-43.380000px;}
.y1a{bottom:-16.020000px;}
.y0{bottom:0.000000px;}
.y1a0{bottom:4.500000px;}
.y17{bottom:57.787200px;}
.y146{bottom:60.300000px;}
.y152{bottom:66.960000px;}
.y41{bottom:71.670000px;}
.y14f{bottom:84.960000px;}
.y2a{bottom:97.200000px;}
.yaf{bottom:119.460207px;}
.yce{bottom:119.461737px;}
.y6c{bottom:119.550027px;}
.yfb{bottom:120.720000px;}
.y28{bottom:140.040000px;}
.ycd{bottom:141.150027px;}
.yfa{bottom:144.930000px;}
.yae{bottom:148.620000px;}
.y6b{bottom:148.800000px;}
.yad{bottom:159.510150px;}
.y6a{bottom:159.600150px;}
.y1a2{bottom:159.840000px;}
.y9f{bottom:164.370000px;}
.yf9{bottom:169.140000px;}
.ycc{bottom:170.400000px;}
.y3d{bottom:174.780000px;}
.y144{bottom:175.170150px;}
.y14a{bottom:175.680000px;}
.y19f{bottom:176.040000px;}
.y1a1{bottom:180.540000px;}
.ycb{bottom:181.200000px;}
.yac{bottom:190.200000px;}
.yf8{bottom:193.260000px;}
.y114{bottom:196.680000px;}
.y9e{bottom:197.490000px;}
.y19e{bottom:199.697940px;}
.yde{bottom:200.100000px;}
.y69{bottom:203.520000px;}
.y143{bottom:205.590000px;}
.y19d{bottom:213.373980px;}
.yab{bottom:214.500000px;}
.yf7{bottom:217.470000px;}
.y113{bottom:220.890000px;}
.y9d{bottom:221.700000px;}
.ydd{bottom:224.310000px;}
.y188{bottom:226.440000px;}
.y19c{bottom:227.050020px;}
.y40{bottom:229.673520px;}
.y68{bottom:236.730000px;}
.yaa{bottom:238.710000px;}
.y142{bottom:238.800000px;}
.y19b{bottom:240.906960px;}
.y112{bottom:245.010000px;}
.y9c{bottom:245.910000px;}
.y22{bottom:247.320000px;}
.ydc{bottom:248.430000px;}
.yf6{bottom:250.590000px;}
.y187{bottom:251.460000px;}
.y199{bottom:255.487500px;}
.y80{bottom:255.990150px;}
.y67{bottom:260.850000px;}
.ya9{bottom:263.010000px;}
.y3f{bottom:267.480000px;}
.y21{bottom:268.920000px;}
.y198{bottom:268.982640px;}
.y111{bottom:269.220000px;}
.y9b{bottom:271.470000px;}
.y141{bottom:271.920000px;}
.ydb{bottom:272.640000px;}
.yf5{bottom:274.800000px;}
.y171{bottom:279.360000px;}
.y15f{bottom:279.540000px;}
.y7f{bottom:280.200150px;}
.y34{bottom:281.880000px;}
.y197{bottom:282.658680px;}
.y66{bottom:285.060000px;}
.y110{bottom:293.430150px;}
.ya8{bottom:296.130000px;}
.y196{bottom:296.153820px;}
.yda{bottom:296.760000px;}
.y9a{bottom:297.930000px;}
.yf4{bottom:300.450000px;}
.y7e{bottom:304.320150px;}
.y140{bottom:305.130000px;}
.y65{bottom:309.180000px;}
.y195{bottom:309.829860px;}
.y10f{bottom:317.550150px;}
.yd9{bottom:320.970000px;}
.y194{bottom:323.325000px;}
.y99{bottom:323.580000px;}
.y35{bottom:325.080000px;}
.yf3{bottom:326.910000px;}
.y7d{bottom:328.530150px;}
.ya7{bottom:329.340000px;}
.y1d{bottom:333.180000px;}
.y64{bottom:333.390000px;}
.y193{bottom:336.820140px;}
.y13f{bottom:338.340000px;}
.yd8{bottom:345.180000px;}
.y98{bottom:350.040000px;}
.y192{bottom:350.496180px;}
.y10e{bottom:350.850150px;}
.y63{bottom:357.600000px;}
.ya6{bottom:357.960000px;}
.yf2{bottom:360.030000px;}
.y7c{bottom:361.740150px;}
.y191{bottom:363.991320px;}
.yd7{bottom:369.300000px;}
.y13e{bottom:371.460000px;}
.y10d{bottom:377.220000px;}
.y190{bottom:377.667360px;}
.y62{bottom:381.720000px;}
.y97{bottom:383.160000px;}
.yf1{bottom:384.240000px;}
.y7b{bottom:385.860150px;}
.y18f{bottom:391.162500px;}
.yd6{bottom:393.510000px;}
.y10c{bottom:401.610000px;}
.y18e{bottom:404.657640px;}
.y13d{bottom:404.670000px;}
.y96{bottom:407.370000px;}
.yf0{bottom:408.360000px;}
.y7a{bottom:410.070150px;}
.y61{bottom:414.930000px;}
.yd5{bottom:417.720000px;}
.y18d{bottom:418.333680px;}
.y10b{bottom:425.910000px;}
.y95{bottom:431.490000px;}
.y18c{bottom:431.828820px;}
.yef{bottom:432.570000px;}
.y79{bottom:434.190000px;}
.y3e{bottom:435.240000px;}
.y13c{bottom:437.880000px;}
.y60{bottom:442.920150px;}
.y18b{bottom:445.504860px;}
.y10a{bottom:450.120000px;}
.yd4{bottom:450.840150px;}
.y3c{bottom:456.705360px;}
.yee{bottom:456.780000px;}
.y78{bottom:458.400000px;}
.yca{bottom:458.850000px;}
.y18a{bottom:459.000000px;}
.y93{bottom:464.160000px;}
.y189{bottom:470.520000px;}
.y13b{bottom:471.090000px;}
.y90{bottom:472.171744px;}
.y109{bottom:474.420000px;}
.y8d{bottom:476.130000px;}
.y186{bottom:477.900000px;}
.y3b{bottom:478.117440px;}
.y92{bottom:478.200000px;}
.yd3{bottom:479.550150px;}
.y19a{bottom:479.586420px;}
.yed{bottom:480.900000px;}
.y77{bottom:482.610000px;}
.yc9{bottom:483.060000px;}
.y94{bottom:486.300150px;}
.y8f{bottom:486.301350px;}
.y91{bottom:489.540000px;}
.y15e{bottom:489.960000px;}
.y8e{bottom:497.640000px;}
.y185{bottom:498.960000px;}
.y3a{bottom:499.529520px;}
.y13a{bottom:503.220000px;}
.yec{bottom:505.110000px;}
.yc8{bottom:507.270000px;}
.y108{bottom:507.900000px;}
.y76{bottom:515.730000px;}
.y184{bottom:518.089860px;}
.y14{bottom:518.951520px;}
.y39{bottom:521.123760px;}
.y8c{bottom:526.980000px;}
.yc7{bottom:531.390000px;}
.y183{bottom:531.585000px;}
.y107{bottom:532.110000px;}
.yeb{bottom:538.320000px;}
.y170{bottom:539.820000px;}
.y75{bottom:539.940000px;}
.y38{bottom:542.535840px;}
.y182{bottom:545.261040px;}
.y8b{bottom:551.190000px;}
.yc6{bottom:555.600000px;}
.y106{bottom:556.230000px;}
.y13{bottom:557.105760px;}
.y181{bottom:558.756180px;}
.y16f{bottom:558.958680px;}
.y37{bottom:563.947920px;}
.yea{bottom:564.780000px;}
.y74{bottom:566.400000px;}
.y180{bottom:572.251320px;}
.y16e{bottom:572.453820px;}
.y139{bottom:573.424077px;}
.y8a{bottom:575.400000px;}
.yc5{bottom:579.720000px;}
.y105{bottom:580.440000px;}
.y36{bottom:585.360000px;}
.y17f{bottom:585.927360px;}
.y16d{bottom:586.129860px;}
.ye9{bottom:589.170000px;}
.y12{bottom:595.260000px;}
.y17e{bottom:599.422500px;}
.y89{bottom:599.520000px;}
.y16c{bottom:599.625000px;}
.y138{bottom:602.493600px;}
.yc4{bottom:603.930000px;}
.y33{bottom:606.991680px;}
.y17d{bottom:613.098540px;}
.y16b{bottom:613.120140px;}
.ye8{bottom:613.380000px;}
.y104{bottom:613.650000px;}
.y73{bottom:614.100000px;}
.y17c{bottom:626.593680px;}
.y16a{bottom:626.796180px;}
.yc3{bottom:628.140000px;}
.y32{bottom:628.403760px;}
.y137{bottom:631.651800px;}
.y88{bottom:632.730000px;}
.ye7{bottom:637.680000px;}
.y17b{bottom:640.088820px;}
.y169{bottom:640.291320px;}
.y11{bottom:640.980000px;}
.y72{bottom:642.810000px;}
.y103{bottom:642.900000px;}
.y31{bottom:649.815840px;}
.y17a{bottom:653.764860px;}
.y168{bottom:653.967360px;}
.y87{bottom:656.850000px;}
.y136{bottom:660.810000px;}
.yc2{bottom:661.260000px;}
.ye6{bottom:662.340000px;}
.y125{bottom:665.310000px;}
.y179{bottom:667.282500px;}
.y167{bottom:667.462500px;}
.y30{bottom:671.227920px;}
.y10{bottom:680.211000px;}
.y166{bottom:680.957640px;}
.y178{bottom:680.958540px;}
.y86{bottom:681.060000px;}
.yc1{bottom:685.470000px;}
.y135{bottom:691.320000px;}
.y2f{bottom:692.640000px;}
.ya5{bottom:693.930000px;}
.y177{bottom:694.453680px;}
.y165{bottom:694.633680px;}
.ye5{bottom:695.730000px;}
.y124{bottom:698.520000px;}
.y85{bottom:705.270000px;}
.y176{bottom:707.948820px;}
.y164{bottom:708.128820px;}
.yc0{bottom:709.680000px;}
.yf{bottom:711.180000px;}
.y134{bottom:715.440000px;}
.ya4{bottom:718.140000px;}
.y175{bottom:721.624860px;}
.y163{bottom:721.804860px;}
.y123{bottom:722.640000px;}
.y2e{bottom:723.960000px;}
.ye4{bottom:724.440000px;}
.y84{bottom:729.390000px;}
.ybf{bottom:733.800000px;}
.y174{bottom:735.120000px;}
.y162{bottom:735.300000px;}
.y133{bottom:739.650000px;}
.ya3{bottom:742.260000px;}
.ye{bottom:744.480000px;}
.y173{bottom:746.820000px;}
.y122{bottom:746.850000px;}
.y161{bottom:747.000000px;}
.y5f{bottom:752.430000px;}
.y172{bottom:754.200000px;}
.y160{bottom:754.380000px;}
.y83{bottom:755.850000px;}
.ybe{bottom:758.010000px;}
.ya2{bottom:766.470000px;}
.y2d{bottom:767.700000px;}
.y121{bottom:771.060000px;}
.y132{bottom:772.770000px;}
.y5e{bottom:776.550000px;}
.ybd{bottom:782.130000px;}
.y15d{bottom:783.008820px;}
.y1c{bottom:783.540000px;}
.yd{bottom:785.700000px;}
.yd2{bottom:786.540000px;}
.y120{bottom:795.180000px;}
.y15c{bottom:796.684860px;}
.y131{bottom:796.980000px;}
.y4f{bottom:799.051197px;}
.ya1{bottom:799.590000px;}
.y5d{bottom:800.760000px;}
.y82{bottom:803.640000px;}
.ybc{bottom:806.340000px;}
.y15b{bottom:810.180000px;}
.yd1{bottom:810.660000px;}
.y11f{bottom:819.390000px;}
.y15a{bottom:824.220000px;}
.y5c{bottom:824.970000px;}
.y4e{bottom:825.060612px;}
.yc{bottom:827.100000px;}
.ya0{bottom:828.300000px;}
.y130{bottom:830.190000px;}
.ybb{bottom:830.550000px;}
.y81{bottom:831.630000px;}
.y2c{bottom:837.725760px;}
.y159{bottom:839.533680px;}
.yd0{bottom:840.000000px;}
.y11e{bottom:843.510000px;}
.y5b{bottom:849.090000px;}
.y4d{bottom:850.981350px;}
.y158{bottom:853.028820px;}
.y71{bottom:853.680000px;}
.y12f{bottom:854.310000px;}
.yba{bottom:854.670000px;}
.y2b{bottom:859.320000px;}
.y157{bottom:866.704860px;}
.y11d{bottom:867.720000px;}
.yb{bottom:868.320000px;}
.ycf{bottom:868.710000px;}
.y5a{bottom:873.300000px;}
.y4c{bottom:876.990765px;}
.y70{bottom:877.800000px;}
.y156{bottom:880.200000px;}
.yb9{bottom:880.320000px;}
.y12e{bottom:887.520000px;}
.y149{bottom:890.640000px;}
.y11c{bottom:891.930000px;}
.y155{bottom:894.060000px;}
.y59{bottom:897.420000px;}
.y6f{bottom:902.010000px;}
.y29{bottom:902.160000px;}
.y4b{bottom:902.910549px;}
.y12d{bottom:911.730000px;}
.y11b{bottom:916.050000px;}
.y154{bottom:918.180000px;}
.y4a{bottom:919.920729px;}
.y58{bottom:921.630000px;}
.yb8{bottom:923.250000px;}
.y27{bottom:923.609520px;}
.ya{bottom:924.292440px;}
.y6e{bottom:935.130000px;}
.y49{bottom:936.840549px;}
.y11a{bottom:940.260000px;}
.y153{bottom:942.480000px;}
.y12c{bottom:944.850000px;}
.y26{bottom:945.021600px;}
.y57{bottom:945.840000px;}
.y102{bottom:949.260000px;}
.y48{bottom:953.853177px;}
.y151{bottom:957.600000px;}
.y6d{bottom:963.210000px;}
.y119{bottom:965.820000px;}
.y25{bottom:966.615840px;}
.y9{bottom:966.960000px;}
.y12b{bottom:969.060000px;}
.y56{bottom:969.960000px;}
.yb7{bottom:971.040450px;}
.y101{bottom:973.380000px;}
.y150{bottom:975.600000px;}
.y14e{bottom:975.609000px;}
.y47{bottom:979.772412px;}
.y24{bottom:988.027920px;}
.y12a{bottom:993.180000px;}
.y14d{bottom:994.144500px;}
.y55{bottom:994.170000px;}
.yb6{bottom:995.340450px;}
.y100{bottom:997.590000px;}
.y46{bottom:1005.781827px;}
.y8{bottom:1008.540000px;}
.y23{bottom:1009.440000px;}
.y118{bottom:1011.000450px;}
.y129{bottom:1017.390000px;}
.y54{bottom:1018.290000px;}
.yb5{bottom:1019.550450px;}
.y14c{bottom:1021.144500px;}
.yff{bottom:1021.800000px;}
.y7{bottom:1029.781080px;}
.ye3{bottom:1030.800000px;}
.y45{bottom:1031.702565px;}
.y117{bottom:1035.210450px;}
.y14b{bottom:1039.140000px;}
.y128{bottom:1041.600000px;}
.y53{bottom:1042.500000px;}
.yb4{bottom:1043.850450px;}
.yfe{bottom:1047.360000px;}
.y20{bottom:1052.475840px;}
.y6{bottom:1053.726300px;}
.ye2{bottom:1054.920000px;}
.y44{bottom:1057.711980px;}
.y116{bottom:1059.330450px;}
.y148{bottom:1066.320000px;}
.y52{bottom:1066.710000px;}
.yb3{bottom:1068.060450px;}
.y127{bottom:1073.371800px;}
.y1f{bottom:1073.887920px;}
.y5{bottom:1077.840000px;}
.ye1{bottom:1079.130000px;}
.y115{bottom:1083.540450px;}
.y43{bottom:1086.780000px;}
.yb2{bottom:1092.360450px;}
.yfd{bottom:1092.540450px;}
.y1e{bottom:1095.300000px;}
.y51{bottom:1099.830000px;}
.y147{bottom:1100.340000px;}
.y126{bottom:1102.530000px;}
.ye0{bottom:1103.340000px;}
.yb1{bottom:1116.660450px;}
.yfc{bottom:1116.750450px;}
.y4{bottom:1119.060000px;}
.y42{bottom:1120.170450px;}
.y50{bottom:1126.290600px;}
.ydf{bottom:1128.900450px;}
.y19{bottom:1131.120000px;}
.yb0{bottom:1140.870450px;}
.y18{bottom:1147.860000px;}
.y3{bottom:1158.644880px;}
.y16{bottom:1174.146480px;}
.y15{bottom:1194.300000px;}
.y2{bottom:1201.312440px;}
.y145{bottom:1204.380000px;}
.y1{bottom:1243.980000px;}
.h27{height:12.978000px;}
.h11{height:26.938828px;}
.h17{height:28.901733px;}
.h16{height:30.812256px;}
.h15{height:34.215750px;}
.h24{height:34.781040px;}
.h8{height:38.340000px;}
.h25{height:38.934000px;}
.h10{height:40.070215px;}
.h23{height:41.040039px;}
.h12{height:41.655410px;}
.h19{height:43.413574px;}
.h3{height:44.149219px;}
.h21{height:44.334000px;}
.ha{height:47.759040px;}
.he{height:49.418640px;}
.h18{height:49.992188px;}
.h4{height:51.912000px;}
.hf{height:59.184000px;}
.h13{height:59.184600px;}
.h1c{height:60.477480px;}
.h2{height:60.737040px;}
.h1e{height:68.948760px;}
.h1d{height:68.949360px;}
.h7{height:69.042960px;}
.hd{height:69.302520px;}
.hc{height:70.293960px;}
.h20{height:70.664062px;}
.h1a{height:75.093750px;}
.h29{height:75.420000px;}
.h6{height:77.868000px;}
.h14{height:78.112793px;}
.h5{height:103.824000px;}
.h1b{height:115.344000px;}
.h22{height:187.740000px;}
.h28{height:238.498500px;}
.h26{height:289.980000px;}
.h9{height:347.580000px;}
.hb{height:425.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1f{height:1263.060000px;}
.w6{width:345.418500px;}
.w7{width:345.420000px;}
.w2{width:521.100000px;}
.w5{width:690.840000px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:21.240000px;}
.x7{left:25.020000px;}
.x8{left:45.720000px;}
.xd{left:106.290000px;}
.x6{left:111.420000px;}
.x2a{left:117.000000px;}
.xa{left:119.970000px;}
.x29{left:127.620000px;}
.x1{left:129.240000px;}
.xb{left:137.969928px;}
.x26{left:156.960000px;}
.x17{left:161.010000px;}
.x4{left:170.100000px;}
.x2{left:182.160000px;}
.x31{left:189.540000px;}
.x1d{left:192.510000px;}
.x2d{left:197.100000px;}
.x1f{left:205.740000px;}
.x1c{left:216.090000px;}
.x16{left:228.780000px;}
.x5{left:233.460000px;}
.x1a{left:238.500000px;}
.x28{left:241.920000px;}
.x18{left:245.250000px;}
.x14{left:250.920000px;}
.x1b{left:287.729888px;}
.x1e{left:293.400000px;}
.x32{left:306.720000px;}
.x27{left:316.440000px;}
.x13{left:377.460000px;}
.x20{left:383.220000px;}
.x2b{left:392.400000px;}
.xf{left:422.370000px;}
.x25{left:427.320000px;}
.xc{left:431.820000px;}
.x9{left:439.110000px;}
.x23{left:441.720000px;}
.x24{left:446.490000px;}
.x19{left:458.999578px;}
.x30{left:462.420000px;}
.x15{left:464.669578px;}
.xe{left:555.300000px;}
.x2f{left:563.940000px;}
.x10{left:606.240000px;}
.x11{left:607.320000px;}
.x22{left:613.080000px;}
.x21{left:633.870000px;}
.x2c{left:664.200000px;}
.x12{left:669.780000px;}
.x2e{left:776.700000px;}
@media print{
.v3{vertical-align:-28.486200pt;}
.v2{vertical-align:-26.560000pt;}
.v5{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.v4{vertical-align:49.920000pt;}
.ls59{letter-spacing:-2.368000pt;}
.ls12{letter-spacing:-0.706560pt;}
.ls92{letter-spacing:-0.514560pt;}
.ls72{letter-spacing:-0.448896pt;}
.ls40{letter-spacing:-0.438208pt;}
.ls7c{letter-spacing:-0.384768pt;}
.ls67{letter-spacing:-0.320640pt;}
.ls14{letter-spacing:-0.294400pt;}
.ls8a{letter-spacing:-0.288000pt;}
.ls8c{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls95{letter-spacing:-0.214400pt;}
.ls8f{letter-spacing:-0.192000pt;}
.ls96{letter-spacing:-0.171520pt;}
.ls13{letter-spacing:-0.170240pt;}
.ls57{letter-spacing:-0.160992pt;}
.ls42{letter-spacing:-0.133600pt;}
.ls93{letter-spacing:-0.128640pt;}
.ls3e{letter-spacing:-0.128256pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.122912pt;}
.ls63{letter-spacing:-0.117568pt;}
.ls71{letter-spacing:-0.112224pt;}
.ls2a{letter-spacing:-0.110656pt;}
.ls7e{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls3d{letter-spacing:-0.085504pt;}
.ls82{letter-spacing:-0.083200pt;}
.ls7d{letter-spacing:-0.080160pt;}
.ls4f{letter-spacing:-0.074816pt;}
.ls74{letter-spacing:-0.069472pt;}
.ls38{letter-spacing:-0.068352pt;}
.ls44{letter-spacing:-0.064128pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls4b{letter-spacing:-0.059808pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls41{letter-spacing:-0.058784pt;}
.ls73{letter-spacing:-0.053440pt;}
.ls5e{letter-spacing:-0.051200pt;}
.ls43{letter-spacing:-0.048096pt;}
.ls8e{letter-spacing:-0.048000pt;}
.ls4d{letter-spacing:-0.044800pt;}
.ls66{letter-spacing:-0.042752pt;}
.ls56{letter-spacing:-0.042720pt;}
.ls70{letter-spacing:-0.038400pt;}
.ls27{letter-spacing:-0.038304pt;}
.ls46{letter-spacing:-0.037408pt;}
.ls22{letter-spacing:-0.034176pt;}
.ls2d{letter-spacing:-0.032064pt;}
.ls4c{letter-spacing:-0.032000pt;}
.ls3f{letter-spacing:-0.026720pt;}
.ls3a{letter-spacing:-0.025600pt;}
.ls45{letter-spacing:-0.021376pt;}
.ls3c{letter-spacing:-0.019200pt;}
.ls7f{letter-spacing:-0.017568pt;}
.ls28{letter-spacing:-0.017024pt;}
.ls24{letter-spacing:-0.016032pt;}
.ls39{letter-spacing:-0.012800pt;}
.ls2c{letter-spacing:-0.010688pt;}
.ls78{letter-spacing:-0.007488pt;}
.ls3b{letter-spacing:-0.006400pt;}
.ls23{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.005344pt;}
.ls2e{letter-spacing:0.006400pt;}
.ls31{letter-spacing:0.010688pt;}
.ls20{letter-spacing:0.012768pt;}
.ls52{letter-spacing:0.012800pt;}
.ls6e{letter-spacing:0.016032pt;}
.ls60{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.021376pt;}
.ls1c{letter-spacing:0.025536pt;}
.ls5f{letter-spacing:0.025600pt;}
.ls33{letter-spacing:0.026720pt;}
.ls77{letter-spacing:0.032000pt;}
.ls4a{letter-spacing:0.032064pt;}
.ls61{letter-spacing:0.037408pt;}
.ls55{letter-spacing:0.038400pt;}
.ls91{letter-spacing:0.042880pt;}
.ls6f{letter-spacing:0.044736pt;}
.ls54{letter-spacing:0.044800pt;}
.ls64{letter-spacing:0.048096pt;}
.ls1d{letter-spacing:0.049920pt;}
.ls11{letter-spacing:0.058880pt;}
.ls76{letter-spacing:0.059648pt;}
.ls53{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.064128pt;}
.ls79{letter-spacing:0.067104pt;}
.ls7b{letter-spacing:0.069472pt;}
.ls37{letter-spacing:0.074816pt;}
.ls4{letter-spacing:0.074880pt;}
.ls2f{letter-spacing:0.078080pt;}
.ls36{letter-spacing:0.080160pt;}
.ls80{letter-spacing:0.082016pt;}
.ls62{letter-spacing:0.085504pt;}
.ls1f{letter-spacing:0.106400pt;}
.ls25{letter-spacing:0.106880pt;}
.lsd{letter-spacing:0.117760pt;}
.ls1a{letter-spacing:0.122912pt;}
.ls6{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.128256pt;}
.ls97{letter-spacing:0.128640pt;}
.ls18{letter-spacing:0.133600pt;}
.ls1b{letter-spacing:0.138944pt;}
.ls17{letter-spacing:0.144288pt;}
.ls1e{letter-spacing:0.155520pt;}
.lsf{letter-spacing:0.170240pt;}
.lsb{letter-spacing:0.176640pt;}
.ls81{letter-spacing:0.187968pt;}
.ls94{letter-spacing:0.214400pt;}
.ls83{letter-spacing:0.240000pt;}
.ls84{letter-spacing:0.257280pt;}
.ls90{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.299520pt;}
.ls86{letter-spacing:0.300160pt;}
.ls6d{letter-spacing:0.395456pt;}
.ls6a{letter-spacing:0.400800pt;}
.ls6c{letter-spacing:0.716096pt;}
.ls6b{letter-spacing:0.721440pt;}
.ls8b{letter-spacing:0.910736pt;}
.ls89{letter-spacing:1.472000pt;}
.ls8d{letter-spacing:1.619086pt;}
.ls98{letter-spacing:1.728000pt;}
.ls35{letter-spacing:2.639936pt;}
.ls32{letter-spacing:2.955232pt;}
.ls30{letter-spacing:2.960576pt;}
.ls69{letter-spacing:3.601856pt;}
.ls68{letter-spacing:3.922496pt;}
.lse{letter-spacing:4.769280pt;}
.lsa{letter-spacing:6.359040pt;}
.ls4e{letter-spacing:6.471584pt;}
.ls49{letter-spacing:6.476928pt;}
.ls48{letter-spacing:6.482272pt;}
.ls9{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.937280pt;}
.ls1{letter-spacing:12.672000pt;}
.ls5d{letter-spacing:93.350400pt;}
.ls85{letter-spacing:97.809280pt;}
.ls87{letter-spacing:104.840960pt;}
.ls88{letter-spacing:104.841600pt;}
.ls75{letter-spacing:276.673280pt;}
.ls50{letter-spacing:351.847000pt;}
.ls5b{letter-spacing:428.569600pt;}
.ls5c{letter-spacing:478.636800pt;}
.ls58{letter-spacing:533.210000pt;}
.ls5a{letter-spacing:564.660700pt;}
.ls51{letter-spacing:962.176000pt;}
.ls7a{letter-spacing:1210.753280pt;}
.ls2b{letter-spacing:1237.312352pt;}
.ls29{letter-spacing:1644.348800pt;}
.ls26{letter-spacing:1663.870432pt;}
.ls21{letter-spacing:1986.749568pt;}
.ws6c{word-spacing:-59.911584pt;}
.ws45{word-spacing:-53.440000pt;}
.ws44{word-spacing:-53.434656pt;}
.ws51{word-spacing:-53.391904pt;}
.ws2{word-spacing:-25.984000pt;}
.ws3{word-spacing:-19.392000pt;}
.ws4{word-spacing:-19.296000pt;}
.wsc{word-spacing:-17.364480pt;}
.wsf{word-spacing:-17.024000pt;}
.ws0{word-spacing:-15.200640pt;}
.ws42{word-spacing:-13.568000pt;}
.ws97{word-spacing:-13.561600pt;}
.ws1{word-spacing:-13.504000pt;}
.wse{word-spacing:-12.776960pt;}
.ws10{word-spacing:-12.659200pt;}
.ws13{word-spacing:-12.482560pt;}
.wsd{word-spacing:-12.423680pt;}
.ws11{word-spacing:-12.247040pt;}
.ws12{word-spacing:-12.188160pt;}
.ws2d{word-spacing:-11.473568pt;}
.ws32{word-spacing:-11.468224pt;}
.ws3c{word-spacing:-11.462880pt;}
.ws36{word-spacing:-11.329280pt;}
.ws2e{word-spacing:-11.323936pt;}
.ws39{word-spacing:-11.318592pt;}
.ws3b{word-spacing:-11.297216pt;}
.ws11a{word-spacing:-9.936000pt;}
.ws11f{word-spacing:-9.390720pt;}
.ws11c{word-spacing:-9.304960pt;}
.ws120{word-spacing:-9.219200pt;}
.ws34{word-spacing:-9.048256pt;}
.ws38{word-spacing:-9.035488pt;}
.ws35{word-spacing:-9.005696pt;}
.ws121{word-spacing:-8.961920pt;}
.ws11e{word-spacing:-8.919040pt;}
.ws37{word-spacing:-8.912064pt;}
.ws11d{word-spacing:-8.876160pt;}
.ws116{word-spacing:-8.736000pt;}
.ws117{word-spacing:-8.640000pt;}
.ws11b{word-spacing:-8.576000pt;}
.ws119{word-spacing:-8.544000pt;}
.ws118{word-spacing:-8.496000pt;}
.ws115{word-spacing:-8.448000pt;}
.ws43{word-spacing:-7.937280pt;}
.wsd0{word-spacing:-7.929792pt;}
.ws81{word-spacing:-7.776288pt;}
.ws126{word-spacing:-2.226243pt;}
.ws133{word-spacing:-1.728000pt;}
.ws123{word-spacing:-1.517893pt;}
.ws31{word-spacing:-1.517696pt;}
.ws2f{word-spacing:-0.999328pt;}
.ws3a{word-spacing:-0.908480pt;}
.ws12d{word-spacing:-0.428800pt;}
.ws12b{word-spacing:-0.384000pt;}
.ws131{word-spacing:-0.343040pt;}
.ws12a{word-spacing:-0.336000pt;}
.ws12f{word-spacing:-0.257280pt;}
.wsa{word-spacing:-0.256000pt;}
.ws3f{word-spacing:-0.251168pt;}
.wsb{word-spacing:-0.192000pt;}
.ws12c{word-spacing:-0.171520pt;}
.ws41{word-spacing:-0.170240pt;}
.ws93{word-spacing:-0.166400pt;}
.wsd6{word-spacing:-0.160000pt;}
.wsd9{word-spacing:-0.147200pt;}
.ws101{word-spacing:-0.140800pt;}
.ws10c{word-spacing:-0.134400pt;}
.ws6d{word-spacing:-0.133600pt;}
.ws129{word-spacing:-0.128640pt;}
.ws3e{word-spacing:-0.128256pt;}
.ws8{word-spacing:-0.128000pt;}
.wsf0{word-spacing:-0.122912pt;}
.ws6b{word-spacing:-0.121600pt;}
.ws57{word-spacing:-0.117568pt;}
.ws114{word-spacing:-0.115200pt;}
.ws40{word-spacing:-0.112224pt;}
.wsc3{word-spacing:-0.108800pt;}
.ws113{word-spacing:-0.102400pt;}
.ws9a{word-spacing:-0.101536pt;}
.ws88{word-spacing:-0.096000pt;}
.ws99{word-spacing:-0.090848pt;}
.wsf2{word-spacing:-0.089472pt;}
.ws6e{word-spacing:-0.085504pt;}
.ws10e{word-spacing:-0.083200pt;}
.ws4b{word-spacing:-0.080160pt;}
.ws91{word-spacing:-0.076800pt;}
.ws7{word-spacing:-0.074880pt;}
.wsb1{word-spacing:-0.070400pt;}
.wsa8{word-spacing:-0.069472pt;}
.ws46{word-spacing:-0.064128pt;}
.ws9{word-spacing:-0.064000pt;}
.ws4d{word-spacing:-0.058784pt;}
.ws73{word-spacing:-0.057600pt;}
.ws6f{word-spacing:-0.053440pt;}
.ws111{word-spacing:-0.051200pt;}
.ws47{word-spacing:-0.048096pt;}
.wsa1{word-spacing:-0.044800pt;}
.ws52{word-spacing:-0.037408pt;}
.ws54{word-spacing:-0.032064pt;}
.ws112{word-spacing:-0.032000pt;}
.ws4a{word-spacing:-0.026720pt;}
.ws74{word-spacing:-0.025632pt;}
.wsd8{word-spacing:-0.025600pt;}
.ws50{word-spacing:-0.021376pt;}
.wsc4{word-spacing:-0.019200pt;}
.ws56{word-spacing:-0.016032pt;}
.ws80{word-spacing:-0.012800pt;}
.ws9c{word-spacing:-0.010688pt;}
.ws55{word-spacing:-0.005344pt;}
.ws5{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.005344pt;}
.ws76{word-spacing:0.006400pt;}
.ws53{word-spacing:0.010688pt;}
.wsbb{word-spacing:0.012800pt;}
.wsa9{word-spacing:0.016032pt;}
.ws70{word-spacing:0.021376pt;}
.wsee{word-spacing:0.026720pt;}
.ws48{word-spacing:0.032064pt;}
.ws130{word-spacing:0.042880pt;}
.wse8{word-spacing:0.051200pt;}
.wsb2{word-spacing:0.051264pt;}
.wsef{word-spacing:0.053440pt;}
.wsa6{word-spacing:0.058784pt;}
.ws83{word-spacing:0.059808pt;}
.ws132{word-spacing:0.064000pt;}
.ws98{word-spacing:0.064128pt;}
.ws9b{word-spacing:0.069472pt;}
.ws49{word-spacing:0.074816pt;}
.ws4f{word-spacing:0.080160pt;}
.ws12e{word-spacing:0.085760pt;}
.ws3d{word-spacing:0.111264pt;}
.wscf{word-spacing:0.121600pt;}
.ws100{word-spacing:0.128832pt;}
.ws78{word-spacing:0.198400pt;}
.ws10d{word-spacing:0.204800pt;}
.ws65{word-spacing:0.217600pt;}
.ws6{word-spacing:0.224640pt;}
.wsc2{word-spacing:0.230400pt;}
.ws124{word-spacing:0.240000pt;}
.ws9d{word-spacing:0.267200pt;}
.wsed{word-spacing:0.331328pt;}
.ws122{word-spacing:0.336000pt;}
.ws21{word-spacing:0.353280pt;}
.ws4c{word-spacing:0.384768pt;}
.wsa7{word-spacing:0.395456pt;}
.wsec{word-spacing:0.480000pt;}
.wsf4{word-spacing:0.505600pt;}
.ws94{word-spacing:0.512000pt;}
.ws125{word-spacing:0.528000pt;}
.wsc8{word-spacing:0.537600pt;}
.wsfa{word-spacing:0.544000pt;}
.ws5a{word-spacing:0.844800pt;}
.ws29{word-spacing:1.000960pt;}
.wse7{word-spacing:1.139200pt;}
.wsc0{word-spacing:1.152000pt;}
.wsc5{word-spacing:1.171200pt;}
.ws60{word-spacing:1.452800pt;}
.ws59{word-spacing:1.523200pt;}
.ws1a{word-spacing:1.530880pt;}
.ws15{word-spacing:1.648640pt;}
.wsb0{word-spacing:1.753600pt;}
.ws58{word-spacing:1.804800pt;}
.wse3{word-spacing:1.817600pt;}
.ws89{word-spacing:1.836800pt;}
.wsfd{word-spacing:1.856000pt;}
.ws8a{word-spacing:1.958400pt;}
.wse1{word-spacing:2.112000pt;}
.wsf1{word-spacing:2.137600pt;}
.ws71{word-spacing:2.176000pt;}
.wsde{word-spacing:2.476800pt;}
.wsc7{word-spacing:2.732800pt;}
.ws84{word-spacing:2.752000pt;}
.ws64{word-spacing:2.764800pt;}
.ws127{word-spacing:2.784000pt;}
.wsbe{word-spacing:2.790400pt;}
.ws128{word-spacing:2.832000pt;}
.wsbf{word-spacing:2.841600pt;}
.ws62{word-spacing:3.065600pt;}
.ws8d{word-spacing:3.072000pt;}
.wsb5{word-spacing:3.084800pt;}
.ws68{word-spacing:3.097600pt;}
.ws8e{word-spacing:3.187200pt;}
.wsc9{word-spacing:3.321600pt;}
.wsc1{word-spacing:3.398400pt;}
.ws9e{word-spacing:3.411200pt;}
.wsf5{word-spacing:3.417600pt;}
.ws7e{word-spacing:3.443200pt;}
.wsd7{word-spacing:3.449600pt;}
.wsb6{word-spacing:3.468800pt;}
.ws109{word-spacing:3.526400pt;}
.wscd{word-spacing:3.712000pt;}
.wsd5{word-spacing:3.750400pt;}
.wse5{word-spacing:3.852800pt;}
.wse6{word-spacing:4.025600pt;}
.wsce{word-spacing:4.102400pt;}
.ws1b{word-spacing:4.239360pt;}
.wsfe{word-spacing:4.294400pt;}
.ws85{word-spacing:4.364800pt;}
.ws67{word-spacing:4.403200pt;}
.wsfb{word-spacing:4.672000pt;}
.wse4{word-spacing:4.678400pt;}
.wsbc{word-spacing:4.684800pt;}
.wsfc{word-spacing:4.704000pt;}
.ws108{word-spacing:4.966400pt;}
.wseb{word-spacing:5.056000pt;}
.ws28{word-spacing:5.475840pt;}
.wse9{word-spacing:5.632000pt;}
.ws66{word-spacing:5.638400pt;}
.ws77{word-spacing:5.664000pt;}
.wsaf{word-spacing:5.971200pt;}
.ws20{word-spacing:6.123520pt;}
.wsb4{word-spacing:6.579200pt;}
.ws72{word-spacing:6.592000pt;}
.ws95{word-spacing:6.598400pt;}
.ws105{word-spacing:6.611200pt;}
.wse0{word-spacing:6.643200pt;}
.wsc6{word-spacing:6.675200pt;}
.wsba{word-spacing:6.777600pt;}
.ws10a{word-spacing:6.995200pt;}
.wsf7{word-spacing:7.244800pt;}
.wsac{word-spacing:7.264000pt;}
.ws87{word-spacing:7.296000pt;}
.ws16{word-spacing:7.418880pt;}
.wsea{word-spacing:7.564800pt;}
.ws106{word-spacing:7.571200pt;}
.ws96{word-spacing:7.590400pt;}
.wsf3{word-spacing:7.884800pt;}
.ws107{word-spacing:7.948800pt;}
.ws23{word-spacing:8.066560pt;}
.ws8c{word-spacing:8.179200pt;}
.wsad{word-spacing:8.230400pt;}
.wscc{word-spacing:8.236800pt;}
.wsdf{word-spacing:8.518400pt;}
.ws10b{word-spacing:8.614400pt;}
.ws90{word-spacing:8.787200pt;}
.ws8f{word-spacing:8.825600pt;}
.ws5b{word-spacing:8.832000pt;}
.ws103{word-spacing:8.851200pt;}
.wsaa{word-spacing:9.145600pt;}
.ws7f{word-spacing:9.171200pt;}
.wsb9{word-spacing:9.177600pt;}
.ws79{word-spacing:9.241600pt;}
.ws7a{word-spacing:9.280000pt;}
.ws18{word-spacing:9.361920pt;}
.wsae{word-spacing:9.484800pt;}
.wsa0{word-spacing:9.491200pt;}
.wse2{word-spacing:9.516800pt;}
.wsbd{word-spacing:9.542400pt;}
.ws9f{word-spacing:9.811200pt;}
.ws7b{word-spacing:10.124800pt;}
.ws7d{word-spacing:10.137600pt;}
.ws26{word-spacing:10.186240pt;}
.wsd3{word-spacing:10.425600pt;}
.wsd4{word-spacing:10.457600pt;}
.ws63{word-spacing:10.476800pt;}
.ws27{word-spacing:10.598400pt;}
.ws19{word-spacing:11.246080pt;}
.wsb7{word-spacing:11.404800pt;}
.ws86{word-spacing:11.417600pt;}
.wsb8{word-spacing:11.456000pt;}
.ws22{word-spacing:11.481600pt;}
.ws5d{word-spacing:11.692800pt;}
.ws7c{word-spacing:11.756800pt;}
.wsf6{word-spacing:11.763200pt;}
.ws102{word-spacing:11.808000pt;}
.ws24{word-spacing:11.893760pt;}
.ws5f{word-spacing:12.057600pt;}
.wsca{word-spacing:12.358400pt;}
.ws8b{word-spacing:13.011200pt;}
.wsab{word-spacing:13.056000pt;}
.ws69{word-spacing:13.324800pt;}
.ws75{word-spacing:13.612800pt;}
.ws61{word-spacing:13.664000pt;}
.wscb{word-spacing:13.996800pt;}
.ws6a{word-spacing:14.598400pt;}
.ws5e{word-spacing:16.896000pt;}
.wsd2{word-spacing:18.758400pt;}
.wsff{word-spacing:18.764800pt;}
.ws14{word-spacing:19.607040pt;}
.ws17{word-spacing:20.843520pt;}
.ws5c{word-spacing:20.998400pt;}
.ws1d{word-spacing:21.491200pt;}
.ws1e{word-spacing:22.138880pt;}
.ws2b{word-spacing:22.786560pt;}
.ws2a{word-spacing:22.963200pt;}
.ws25{word-spacing:32.619520pt;}
.ws1c{word-spacing:33.031680pt;}
.ws82{word-spacing:33.600000pt;}
.ws92{word-spacing:36.633600pt;}
.ws1f{word-spacing:54.110720pt;}
.ws104{word-spacing:71.577600pt;}
.wsd1{word-spacing:71.599968pt;}
.wsb3{word-spacing:71.614880pt;}
.ws2c{word-spacing:83.270208pt;}
.ws30{word-spacing:83.483968pt;}
.ws10f{word-spacing:97.139200pt;}
.ws110{word-spacing:97.177600pt;}
.ws33{word-spacing:114.639488pt;}
.wsa2{word-spacing:445.625600pt;}
.wsa3{word-spacing:489.139200pt;}
.wsa4{word-spacing:539.366400pt;}
.wsdb{word-spacing:553.472000pt;}
.wsf8{word-spacing:597.331200pt;}
.wsdc{word-spacing:680.198400pt;}
.wsf9{word-spacing:680.204800pt;}
.wsa5{word-spacing:764.012800pt;}
.wsda{word-spacing:791.558400pt;}
.wsdd{word-spacing:872.185600pt;}
._34{margin-left:-835.840000pt;}
._32{margin-left:-808.582400pt;}
._1d{margin-left:-763.795200pt;}
._2b{margin-left:-722.246400pt;}
._29{margin-left:-695.366400pt;}
._33{margin-left:-675.078400pt;}
._31{margin-left:-610.880000pt;}
._2f{margin-left:-584.000000pt;}
._2a{margin-left:-561.286400pt;}
._39{margin-left:-551.040000pt;}
._1b{margin-left:-539.520000pt;}
._38{margin-left:-495.040000pt;}
._19{margin-left:-489.280000pt;}
._2e{margin-left:-484.160000pt;}
._1e{margin-left:-474.880000pt;}
._36{margin-left:-468.160000pt;}
._2c{margin-left:-457.273600pt;}
._30{margin-left:-449.920000pt;}
._17{margin-left:-445.760000pt;}
._f{margin-left:-415.680000pt;}
._37{margin-left:-367.040000pt;}
._2d{margin-left:-356.160000pt;}
._11{margin-left:-334.720000pt;}
._10{margin-left:-260.480000pt;}
._1c{margin-left:-217.280000pt;}
._1a{margin-left:-134.080000pt;}
._18{margin-left:-123.520000pt;}
._3c{margin-left:-97.740800pt;}
._21{margin-left:-71.681984pt;}
._14{margin-left:-36.602240pt;}
._22{margin-left:-10.560000pt;}
._12{margin-left:-9.280000pt;}
._7{margin-left:-7.761760pt;}
._23{margin-left:-4.005056pt;}
._1f{margin-left:-2.508800pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.280000pt;}
._3e{width:2.170392pt;}
._6{width:3.142272pt;}
._2{width:4.751904pt;}
._8{width:6.256096pt;}
._4{width:7.417472pt;}
._13{width:9.356800pt;}
._5{width:26.494944pt;}
._a{width:51.200000pt;}
._35{width:71.681984pt;}
._e{width:75.584000pt;}
._d{width:81.273728pt;}
._3{width:94.856000pt;}
._3a{width:97.171200pt;}
._c{width:108.992000pt;}
._3b{width:143.366400pt;}
._27{width:145.785600pt;}
._b{width:154.560000pt;}
._3d{width:168.915200pt;}
._28{width:254.393600pt;}
._9{width:257.472000pt;}
._25{width:489.280000pt;}
._20{width:859.411200pt;}
._26{width:991.680000pt;}
._24{width:1212.992000pt;}
._15{width:1838.592000pt;}
._16{width:1920.512000pt;}
.fs12{font-size:16.000000pt;}
.fsb{font-size:34.560000pt;}
.fsd{font-size:37.000000pt;}
.fsa{font-size:37.440000pt;}
.fs9{font-size:42.560000pt;}
.fs11{font-size:42.880000pt;}
.fsf{font-size:48.000000pt;}
.fs10{font-size:50.596443pt;}
.fs8{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fse{font-size:74.560000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs7{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.fsc{font-size:100.000000pt;}
.fs3{font-size:128.000000pt;}
.y1b{bottom:-38.560000pt;}
.y1a{bottom:-14.240000pt;}
.y0{bottom:0.000000pt;}
.y1a0{bottom:4.000000pt;}
.y17{bottom:51.366400pt;}
.y146{bottom:53.600000pt;}
.y152{bottom:59.520000pt;}
.y41{bottom:63.706667pt;}
.y14f{bottom:75.520000pt;}
.y2a{bottom:86.400000pt;}
.yaf{bottom:106.186851pt;}
.yce{bottom:106.188211pt;}
.y6c{bottom:106.266691pt;}
.yfb{bottom:107.306667pt;}
.y28{bottom:124.480000pt;}
.ycd{bottom:125.466691pt;}
.yfa{bottom:128.826667pt;}
.yae{bottom:132.106667pt;}
.y6b{bottom:132.266667pt;}
.yad{bottom:141.786800pt;}
.y6a{bottom:141.866800pt;}
.y1a2{bottom:142.080000pt;}
.y9f{bottom:146.106667pt;}
.yf9{bottom:150.346667pt;}
.ycc{bottom:151.466667pt;}
.y3d{bottom:155.360000pt;}
.y144{bottom:155.706800pt;}
.y14a{bottom:156.160000pt;}
.y19f{bottom:156.480000pt;}
.y1a1{bottom:160.480000pt;}
.ycb{bottom:161.066667pt;}
.yac{bottom:169.066667pt;}
.yf8{bottom:171.786667pt;}
.y114{bottom:174.826667pt;}
.y9e{bottom:175.546667pt;}
.y19e{bottom:177.509280pt;}
.yde{bottom:177.866667pt;}
.y69{bottom:180.906667pt;}
.y143{bottom:182.746667pt;}
.y19d{bottom:189.665760pt;}
.yab{bottom:190.666667pt;}
.yf7{bottom:193.306667pt;}
.y113{bottom:196.346667pt;}
.y9d{bottom:197.066667pt;}
.ydd{bottom:199.386667pt;}
.y188{bottom:201.280000pt;}
.y19c{bottom:201.822240pt;}
.y40{bottom:204.154240pt;}
.y68{bottom:210.426667pt;}
.yaa{bottom:212.186667pt;}
.y142{bottom:212.266667pt;}
.y19b{bottom:214.139520pt;}
.y112{bottom:217.786667pt;}
.y9c{bottom:218.586667pt;}
.y22{bottom:219.840000pt;}
.ydc{bottom:220.826667pt;}
.yf6{bottom:222.746667pt;}
.y187{bottom:223.520000pt;}
.y199{bottom:227.100000pt;}
.y80{bottom:227.546800pt;}
.y67{bottom:231.866667pt;}
.ya9{bottom:233.786667pt;}
.y3f{bottom:237.760000pt;}
.y21{bottom:239.040000pt;}
.y198{bottom:239.095680pt;}
.y111{bottom:239.306667pt;}
.y9b{bottom:241.306667pt;}
.y141{bottom:241.706667pt;}
.ydb{bottom:242.346667pt;}
.yf5{bottom:244.266667pt;}
.y171{bottom:248.320000pt;}
.y15f{bottom:248.480000pt;}
.y7f{bottom:249.066800pt;}
.y34{bottom:250.560000pt;}
.y197{bottom:251.252160pt;}
.y66{bottom:253.386667pt;}
.y110{bottom:260.826800pt;}
.ya8{bottom:263.226667pt;}
.y196{bottom:263.247840pt;}
.yda{bottom:263.786667pt;}
.y9a{bottom:264.826667pt;}
.yf4{bottom:267.066667pt;}
.y7e{bottom:270.506800pt;}
.y140{bottom:271.226667pt;}
.y65{bottom:274.826667pt;}
.y195{bottom:275.404320pt;}
.y10f{bottom:282.266800pt;}
.yd9{bottom:285.306667pt;}
.y194{bottom:287.400000pt;}
.y99{bottom:287.626667pt;}
.y35{bottom:288.960000pt;}
.yf3{bottom:290.586667pt;}
.y7d{bottom:292.026800pt;}
.ya7{bottom:292.746667pt;}
.y1d{bottom:296.160000pt;}
.y64{bottom:296.346667pt;}
.y193{bottom:299.395680pt;}
.y13f{bottom:300.746667pt;}
.yd8{bottom:306.826667pt;}
.y98{bottom:311.146667pt;}
.y192{bottom:311.552160pt;}
.y10e{bottom:311.866800pt;}
.y63{bottom:317.866667pt;}
.ya6{bottom:318.186667pt;}
.yf2{bottom:320.026667pt;}
.y7c{bottom:321.546800pt;}
.y191{bottom:323.547840pt;}
.yd7{bottom:328.266667pt;}
.y13e{bottom:330.186667pt;}
.y10d{bottom:335.306667pt;}
.y190{bottom:335.704320pt;}
.y62{bottom:339.306667pt;}
.y97{bottom:340.586667pt;}
.yf1{bottom:341.546667pt;}
.y7b{bottom:342.986800pt;}
.y18f{bottom:347.700000pt;}
.yd6{bottom:349.786667pt;}
.y10c{bottom:356.986667pt;}
.y18e{bottom:359.695680pt;}
.y13d{bottom:359.706667pt;}
.y96{bottom:362.106667pt;}
.yf0{bottom:362.986667pt;}
.y7a{bottom:364.506800pt;}
.y61{bottom:368.826667pt;}
.yd5{bottom:371.306667pt;}
.y18d{bottom:371.852160pt;}
.y10b{bottom:378.586667pt;}
.y95{bottom:383.546667pt;}
.y18c{bottom:383.847840pt;}
.yef{bottom:384.506667pt;}
.y79{bottom:385.946667pt;}
.y3e{bottom:386.880000pt;}
.y13c{bottom:389.226667pt;}
.y60{bottom:393.706800pt;}
.y18b{bottom:396.004320pt;}
.y10a{bottom:400.106667pt;}
.yd4{bottom:400.746800pt;}
.y3c{bottom:405.960320pt;}
.yee{bottom:406.026667pt;}
.y78{bottom:407.466667pt;}
.yca{bottom:407.866667pt;}
.y18a{bottom:408.000000pt;}
.y93{bottom:412.586667pt;}
.y189{bottom:418.240000pt;}
.y13b{bottom:418.746667pt;}
.y90{bottom:419.708217pt;}
.y109{bottom:421.706667pt;}
.y8d{bottom:423.226667pt;}
.y186{bottom:424.800000pt;}
.y3b{bottom:424.993280pt;}
.y92{bottom:425.066667pt;}
.yd3{bottom:426.266800pt;}
.y19a{bottom:426.299040pt;}
.yed{bottom:427.466667pt;}
.y77{bottom:428.986667pt;}
.yc9{bottom:429.386667pt;}
.y94{bottom:432.266800pt;}
.y8f{bottom:432.267867pt;}
.y91{bottom:435.146667pt;}
.y15e{bottom:435.520000pt;}
.y8e{bottom:442.346667pt;}
.y185{bottom:443.520000pt;}
.y3a{bottom:444.026240pt;}
.y13a{bottom:447.306667pt;}
.yec{bottom:448.986667pt;}
.yc8{bottom:450.906667pt;}
.y108{bottom:451.466667pt;}
.y76{bottom:458.426667pt;}
.y184{bottom:460.524320pt;}
.y14{bottom:461.290240pt;}
.y39{bottom:463.221120pt;}
.y8c{bottom:468.426667pt;}
.yc7{bottom:472.346667pt;}
.y183{bottom:472.520000pt;}
.y107{bottom:472.986667pt;}
.yeb{bottom:478.506667pt;}
.y170{bottom:479.840000pt;}
.y75{bottom:479.946667pt;}
.y38{bottom:482.254080pt;}
.y182{bottom:484.676480pt;}
.y8b{bottom:489.946667pt;}
.yc6{bottom:493.866667pt;}
.y106{bottom:494.426667pt;}
.y13{bottom:495.205120pt;}
.y181{bottom:496.672160pt;}
.y16f{bottom:496.852160pt;}
.y37{bottom:501.287040pt;}
.yea{bottom:502.026667pt;}
.y74{bottom:503.466667pt;}
.y180{bottom:508.667840pt;}
.y16e{bottom:508.847840pt;}
.y139{bottom:509.710291pt;}
.y8a{bottom:511.466667pt;}
.yc5{bottom:515.306667pt;}
.y105{bottom:515.946667pt;}
.y36{bottom:520.320000pt;}
.y17f{bottom:520.824320pt;}
.y16d{bottom:521.004320pt;}
.ye9{bottom:523.706667pt;}
.y12{bottom:529.120000pt;}
.y17e{bottom:532.820000pt;}
.y89{bottom:532.906667pt;}
.y16c{bottom:533.000000pt;}
.y138{bottom:535.549867pt;}
.yc4{bottom:536.826667pt;}
.y33{bottom:539.548160pt;}
.y17d{bottom:544.976480pt;}
.y16b{bottom:544.995680pt;}
.ye8{bottom:545.226667pt;}
.y104{bottom:545.466667pt;}
.y73{bottom:545.866667pt;}
.y17c{bottom:556.972160pt;}
.y16a{bottom:557.152160pt;}
.yc3{bottom:558.346667pt;}
.y32{bottom:558.581120pt;}
.y137{bottom:561.468267pt;}
.y88{bottom:562.426667pt;}
.ye7{bottom:566.826667pt;}
.y17b{bottom:568.967840pt;}
.y169{bottom:569.147840pt;}
.y11{bottom:569.760000pt;}
.y72{bottom:571.386667pt;}
.y103{bottom:571.466667pt;}
.y31{bottom:577.614080pt;}
.y17a{bottom:581.124320pt;}
.y168{bottom:581.304320pt;}
.y87{bottom:583.866667pt;}
.y136{bottom:587.386667pt;}
.yc2{bottom:587.786667pt;}
.ye6{bottom:588.746667pt;}
.y125{bottom:591.386667pt;}
.y179{bottom:593.140000pt;}
.y167{bottom:593.300000pt;}
.y30{bottom:596.647040pt;}
.y10{bottom:604.632000pt;}
.y166{bottom:605.295680pt;}
.y178{bottom:605.296480pt;}
.y86{bottom:605.386667pt;}
.yc1{bottom:609.306667pt;}
.y135{bottom:614.506667pt;}
.y2f{bottom:615.680000pt;}
.ya5{bottom:616.826667pt;}
.y177{bottom:617.292160pt;}
.y165{bottom:617.452160pt;}
.ye5{bottom:618.426667pt;}
.y124{bottom:620.906667pt;}
.y85{bottom:626.906667pt;}
.y176{bottom:629.287840pt;}
.y164{bottom:629.447840pt;}
.yc0{bottom:630.826667pt;}
.yf{bottom:632.160000pt;}
.y134{bottom:635.946667pt;}
.ya4{bottom:638.346667pt;}
.y175{bottom:641.444320pt;}
.y163{bottom:641.604320pt;}
.y123{bottom:642.346667pt;}
.y2e{bottom:643.520000pt;}
.ye4{bottom:643.946667pt;}
.y84{bottom:648.346667pt;}
.ybf{bottom:652.266667pt;}
.y174{bottom:653.440000pt;}
.y162{bottom:653.600000pt;}
.y133{bottom:657.466667pt;}
.ya3{bottom:659.786667pt;}
.ye{bottom:661.760000pt;}
.y173{bottom:663.840000pt;}
.y122{bottom:663.866667pt;}
.y161{bottom:664.000000pt;}
.y5f{bottom:668.826667pt;}
.y172{bottom:670.400000pt;}
.y160{bottom:670.560000pt;}
.y83{bottom:671.866667pt;}
.ybe{bottom:673.786667pt;}
.ya2{bottom:681.306667pt;}
.y2d{bottom:682.400000pt;}
.y121{bottom:685.386667pt;}
.y132{bottom:686.906667pt;}
.y5e{bottom:690.266667pt;}
.ybd{bottom:695.226667pt;}
.y15d{bottom:696.007840pt;}
.y1c{bottom:696.480000pt;}
.yd{bottom:698.400000pt;}
.yd2{bottom:699.146667pt;}
.y120{bottom:706.826667pt;}
.y15c{bottom:708.164320pt;}
.y131{bottom:708.426667pt;}
.y4f{bottom:710.267731pt;}
.ya1{bottom:710.746667pt;}
.y5d{bottom:711.786667pt;}
.y82{bottom:714.346667pt;}
.ybc{bottom:716.746667pt;}
.y15b{bottom:720.160000pt;}
.yd1{bottom:720.586667pt;}
.y11f{bottom:728.346667pt;}
.y15a{bottom:732.640000pt;}
.y5c{bottom:733.306667pt;}
.y4e{bottom:733.387211pt;}
.yc{bottom:735.200000pt;}
.ya0{bottom:736.266667pt;}
.y130{bottom:737.946667pt;}
.ybb{bottom:738.266667pt;}
.y81{bottom:739.226667pt;}
.y2c{bottom:744.645120pt;}
.y159{bottom:746.252160pt;}
.yd0{bottom:746.666667pt;}
.y11e{bottom:749.786667pt;}
.y5b{bottom:754.746667pt;}
.y4d{bottom:756.427867pt;}
.y158{bottom:758.247840pt;}
.y71{bottom:758.826667pt;}
.y12f{bottom:759.386667pt;}
.yba{bottom:759.706667pt;}
.y2b{bottom:763.840000pt;}
.y157{bottom:770.404320pt;}
.y11d{bottom:771.306667pt;}
.yb{bottom:771.840000pt;}
.ycf{bottom:772.186667pt;}
.y5a{bottom:776.266667pt;}
.y4c{bottom:779.547347pt;}
.y70{bottom:780.266667pt;}
.y156{bottom:782.400000pt;}
.yb9{bottom:782.506667pt;}
.y12e{bottom:788.906667pt;}
.y149{bottom:791.680000pt;}
.y11c{bottom:792.826667pt;}
.y155{bottom:794.720000pt;}
.y59{bottom:797.706667pt;}
.y6f{bottom:801.786667pt;}
.y29{bottom:801.920000pt;}
.y4b{bottom:802.587155pt;}
.y12d{bottom:810.426667pt;}
.y11b{bottom:814.266667pt;}
.y154{bottom:816.160000pt;}
.y4a{bottom:817.707315pt;}
.y58{bottom:819.226667pt;}
.yb8{bottom:820.666667pt;}
.y27{bottom:820.986240pt;}
.ya{bottom:821.593280pt;}
.y6e{bottom:831.226667pt;}
.y49{bottom:832.747155pt;}
.y11a{bottom:835.786667pt;}
.y153{bottom:837.760000pt;}
.y12c{bottom:839.866667pt;}
.y26{bottom:840.019200pt;}
.y57{bottom:840.746667pt;}
.y102{bottom:843.786667pt;}
.y48{bottom:847.869491pt;}
.y151{bottom:851.200000pt;}
.y6d{bottom:856.186667pt;}
.y119{bottom:858.506667pt;}
.y25{bottom:859.214080pt;}
.y9{bottom:859.520000pt;}
.y12b{bottom:861.386667pt;}
.y56{bottom:862.186667pt;}
.yb7{bottom:863.147067pt;}
.y101{bottom:865.226667pt;}
.y150{bottom:867.200000pt;}
.y14e{bottom:867.208000pt;}
.y47{bottom:870.908811pt;}
.y24{bottom:878.247040pt;}
.y12a{bottom:882.826667pt;}
.y14d{bottom:883.684000pt;}
.y55{bottom:883.706667pt;}
.yb6{bottom:884.747067pt;}
.y100{bottom:886.746667pt;}
.y46{bottom:894.028291pt;}
.y8{bottom:896.480000pt;}
.y23{bottom:897.280000pt;}
.y118{bottom:898.667067pt;}
.y129{bottom:904.346667pt;}
.y54{bottom:905.146667pt;}
.yb5{bottom:906.267067pt;}
.y14c{bottom:907.684000pt;}
.yff{bottom:908.266667pt;}
.y7{bottom:915.360960pt;}
.ye3{bottom:916.266667pt;}
.y45{bottom:917.068947pt;}
.y117{bottom:920.187067pt;}
.y14b{bottom:923.680000pt;}
.y128{bottom:925.866667pt;}
.y53{bottom:926.666667pt;}
.yb4{bottom:927.867067pt;}
.yfe{bottom:930.986667pt;}
.y20{bottom:935.534080pt;}
.y6{bottom:936.645600pt;}
.ye2{bottom:937.706667pt;}
.y44{bottom:940.188427pt;}
.y116{bottom:941.627067pt;}
.y148{bottom:947.840000pt;}
.y52{bottom:948.186667pt;}
.yb3{bottom:949.387067pt;}
.y127{bottom:954.108267pt;}
.y1f{bottom:954.567040pt;}
.y5{bottom:958.080000pt;}
.ye1{bottom:959.226667pt;}
.y115{bottom:963.147067pt;}
.y43{bottom:966.026667pt;}
.yb2{bottom:970.987067pt;}
.yfd{bottom:971.147067pt;}
.y1e{bottom:973.600000pt;}
.y51{bottom:977.626667pt;}
.y147{bottom:978.080000pt;}
.y126{bottom:980.026667pt;}
.ye0{bottom:980.746667pt;}
.yb1{bottom:992.587067pt;}
.yfc{bottom:992.667067pt;}
.y4{bottom:994.720000pt;}
.y42{bottom:995.707067pt;}
.y50{bottom:1001.147200pt;}
.ydf{bottom:1003.467067pt;}
.y19{bottom:1005.440000pt;}
.yb0{bottom:1014.107067pt;}
.y18{bottom:1020.320000pt;}
.y3{bottom:1029.906560pt;}
.y16{bottom:1043.685760pt;}
.y15{bottom:1061.600000pt;}
.y2{bottom:1067.833280pt;}
.y145{bottom:1070.560000pt;}
.y1{bottom:1105.760000pt;}
.h27{height:11.536000pt;}
.h11{height:23.945625pt;}
.h17{height:25.690430pt;}
.h16{height:27.388672pt;}
.h15{height:30.414000pt;}
.h24{height:30.916480pt;}
.h8{height:34.080000pt;}
.h25{height:34.608000pt;}
.h10{height:35.617969pt;}
.h23{height:36.480035pt;}
.h12{height:37.027031pt;}
.h19{height:38.589844pt;}
.h3{height:39.243750pt;}
.h21{height:39.408000pt;}
.ha{height:42.452480pt;}
.he{height:43.927680pt;}
.h18{height:44.437500pt;}
.h4{height:46.144000pt;}
.hf{height:52.608000pt;}
.h13{height:52.608533pt;}
.h1c{height:53.757760pt;}
.h2{height:53.988480pt;}
.h1e{height:61.287787pt;}
.h1d{height:61.288320pt;}
.h7{height:61.371520pt;}
.hd{height:61.602240pt;}
.hc{height:62.483520pt;}
.h20{height:62.812500pt;}
.h1a{height:66.750000pt;}
.h29{height:67.040000pt;}
.h6{height:69.216000pt;}
.h14{height:69.433594pt;}
.h5{height:92.288000pt;}
.h1b{height:102.528000pt;}
.h22{height:166.880000pt;}
.h28{height:211.998667pt;}
.h26{height:257.760000pt;}
.h9{height:308.960000pt;}
.hb{height:377.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1f{height:1122.720000pt;}
.w6{width:307.038667pt;}
.w7{width:307.040000pt;}
.w2{width:463.200000pt;}
.w5{width:614.080000pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:18.880000pt;}
.x7{left:22.240000pt;}
.x8{left:40.640000pt;}
.xd{left:94.480000pt;}
.x6{left:99.040000pt;}
.x2a{left:104.000000pt;}
.xa{left:106.640000pt;}
.x29{left:113.440000pt;}
.x1{left:114.880000pt;}
.xb{left:122.639936pt;}
.x26{left:139.520000pt;}
.x17{left:143.120000pt;}
.x4{left:151.200000pt;}
.x2{left:161.920000pt;}
.x31{left:168.480000pt;}
.x1d{left:171.120000pt;}
.x2d{left:175.200000pt;}
.x1f{left:182.880000pt;}
.x1c{left:192.080000pt;}
.x16{left:203.360000pt;}
.x5{left:207.520000pt;}
.x1a{left:212.000000pt;}
.x28{left:215.040000pt;}
.x18{left:218.000000pt;}
.x14{left:223.040000pt;}
.x1b{left:255.759900pt;}
.x1e{left:260.800000pt;}
.x32{left:272.640000pt;}
.x27{left:281.280000pt;}
.x13{left:335.520000pt;}
.x20{left:340.640000pt;}
.x2b{left:348.800000pt;}
.xf{left:375.440000pt;}
.x25{left:379.840000pt;}
.xc{left:383.840000pt;}
.x9{left:390.320000pt;}
.x23{left:392.640000pt;}
.x24{left:396.880000pt;}
.x19{left:407.999625pt;}
.x30{left:411.040000pt;}
.x15{left:413.039625pt;}
.xe{left:493.600000pt;}
.x2f{left:501.280000pt;}
.x10{left:538.880000pt;}
.x11{left:539.840000pt;}
.x22{left:544.960000pt;}
.x21{left:563.440000pt;}
.x2c{left:590.400000pt;}
.x12{left:595.360000pt;}
.x2e{left:690.400000pt;}
}




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