
    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_808912b95319a2dfd00b51b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_69c8f7df7d7c014c388e7cf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_43c1228e4c5147da771c9438.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_1884c6f7e1c09d561a24525f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_905bc934bb7be024292f3aad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_143befab89bdd82b022836d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048340;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_25b31c4248431df2d14d861d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8e317d6a2d8d54ed08ac0c0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69c8f7df7d7c014c388e7cf0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_43c1228e4c5147da771c9438.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056152;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_438b41ed45137e0e6fd5e1bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37e95c80a28bd955da7bc888.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7181ab0c4d834662880fcb27.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956000;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_8e317d6a2d8d54ed08ac0c0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_69c8f7df7d7c014c388e7cf0.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_43c1228e4c5147da771c9438.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.056152;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_438b41ed45137e0e6fd5e1bc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ae3dc6c037729ed2288254da.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_69c8f7df7d7c014c388e7cf0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_43c1228e4c5147da771c9438.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.056152;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_438b41ed45137e0e6fd5e1bc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_69c8f7df7d7c014c388e7cf0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_43c1228e4c5147da771c9438.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.056152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_438b41ed45137e0e6fd5e1bc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bf50a28d3377981b215300e6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400600px;}
.v6{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v7{vertical-align:-10.812000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.340000px;}
.v5{vertical-align:18.354000px;}
.v1{vertical-align:20.400600px;}
.ls14{letter-spacing:-4.320000px;}
.ls16{letter-spacing:-1.680000px;}
.ls85{letter-spacing:-1.485000px;}
.ls15{letter-spacing:-1.440000px;}
.ls7f{letter-spacing:-1.305000px;}
.ls90{letter-spacing:-1.260000px;}
.ls91{letter-spacing:-1.215000px;}
.ls67{letter-spacing:-1.050000px;}
.ls8f{letter-spacing:-0.945000px;}
.ls68{letter-spacing:-0.924000px;}
.ls84{letter-spacing:-0.900000px;}
.ls45{letter-spacing:-0.810000px;}
.ls82{letter-spacing:-0.765000px;}
.ls7e{letter-spacing:-0.720000px;}
.ls8d{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.540000px;}
.ls8c{letter-spacing:-0.495000px;}
.ls88{letter-spacing:-0.450000px;}
.ls6b{letter-spacing:-0.432000px;}
.ls64{letter-spacing:-0.420000px;}
.ls58{letter-spacing:-0.378000px;}
.ls22{letter-spacing:-0.357000px;}
.ls13{letter-spacing:-0.351000px;}
.ls7d{letter-spacing:-0.315000px;}
.ls63{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.232050px;}
.ls56{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.204000px;}
.ls86{letter-spacing:-0.180000px;}
.ls6e{letter-spacing:-0.175500px;}
.ls43{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.153000px;}
.ls83{letter-spacing:-0.135000px;}
.ls21{letter-spacing:-0.132600px;}
.ls49{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.105300px;}
.ls18{letter-spacing:-0.102000px;}
.ls27{letter-spacing:-0.099450px;}
.ls81{letter-spacing:-0.090000px;}
.ls65{letter-spacing:-0.084000px;}
.ls4a{letter-spacing:-0.070200px;}
.ls28{letter-spacing:-0.066300px;}
.ls47{letter-spacing:-0.054000px;}
.ls80{letter-spacing:-0.045000px;}
.ls48{letter-spacing:-0.035100px;}
.ls11{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.004500px;}
.ls61{letter-spacing:0.035100px;}
.ls7a{letter-spacing:0.045000px;}
.ls42{letter-spacing:0.054000px;}
.ls6a{letter-spacing:0.070200px;}
.ls70{letter-spacing:0.090000px;}
.ls24{letter-spacing:0.099450px;}
.ls60{letter-spacing:0.105300px;}
.ls54{letter-spacing:0.108000px;}
.ls5c{letter-spacing:0.122850px;}
.ls1e{letter-spacing:0.132600px;}
.ls73{letter-spacing:0.135000px;}
.lse{letter-spacing:0.153000px;}
.ls51{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.165750px;}
.ls2b{letter-spacing:0.175500px;}
.ls40{letter-spacing:0.177300px;}
.ls8a{letter-spacing:0.180000px;}
.ls6d{letter-spacing:0.196200px;}
.lsc{letter-spacing:0.204000px;}
.ls39{letter-spacing:0.210600px;}
.ls37{letter-spacing:0.216000px;}
.ls77{letter-spacing:0.225000px;}
.ls5f{letter-spacing:0.228150px;}
.ls4d{letter-spacing:0.232050px;}
.ls53{letter-spacing:0.237600px;}
.ls69{letter-spacing:0.245700px;}
.ls89{letter-spacing:0.247500px;}
.lsd{letter-spacing:0.255000px;}
.ls9{letter-spacing:0.266850px;}
.ls31{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.280800px;}
.ls19{letter-spacing:0.298350px;}
.ls2{letter-spacing:0.304650px;}
.ls3{letter-spacing:0.305250px;}
.ls3f{letter-spacing:0.307350px;}
.ls6f{letter-spacing:0.315000px;}
.ls2e{letter-spacing:0.315900px;}
.ls4c{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.331500px;}
.ls35{letter-spacing:0.351000px;}
.ls3a{letter-spacing:0.357000px;}
.ls8e{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.378000px;}
.ls2d{letter-spacing:0.386100px;}
.ls92{letter-spacing:0.387000px;}
.ls74{letter-spacing:0.405000px;}
.ls8{letter-spacing:0.408000px;}
.ls5d{letter-spacing:0.421200px;}
.ls46{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.448200px;}
.ls87{letter-spacing:0.450000px;}
.ls6c{letter-spacing:0.456300px;}
.lsa{letter-spacing:0.459000px;}
.ls2a{letter-spacing:0.486000px;}
.ls5a{letter-spacing:0.491400px;}
.ls75{letter-spacing:0.495000px;}
.ls4{letter-spacing:0.510000px;}
.ls62{letter-spacing:0.526500px;}
.ls1d{letter-spacing:0.530400px;}
.ls2f{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.546000px;}
.ls4e{letter-spacing:0.563550px;}
.ls3d{letter-spacing:0.570600px;}
.ls71{letter-spacing:0.585000px;}
.ls2c{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.596700px;}
.ls76{letter-spacing:0.630000px;}
.ls38{letter-spacing:0.631800px;}
.ls32{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.663000px;}
.ls7{letter-spacing:0.671250px;}
.ls30{letter-spacing:0.702000px;}
.ls7c{letter-spacing:0.720000px;}
.ls59{letter-spacing:0.756000px;}
.ls3c{letter-spacing:0.761400px;}
.ls4f{letter-spacing:0.762450px;}
.ls3e{letter-spacing:0.765000px;}
.ls5e{letter-spacing:0.810000px;}
.ls1c{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.848250px;}
.ls78{letter-spacing:0.855000px;}
.ls5b{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.867000px;}
.lsf{letter-spacing:0.918000px;}
.ls79{letter-spacing:0.945000px;}
.ls10{letter-spacing:0.960000px;}
.ls4b{letter-spacing:0.972000px;}
.ls72{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.020000px;}
.ls57{letter-spacing:1.053000px;}
.ls17{letter-spacing:1.071000px;}
.ls8b{letter-spacing:1.089000px;}
.ls50{letter-spacing:1.173000px;}
.ls5{letter-spacing:1.326000px;}
.ls7b{letter-spacing:1.363500px;}
.ls52{letter-spacing:1.620000px;}
.ls0{letter-spacing:2.592000px;}
.ls29{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls55{letter-spacing:14.742000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.wsa1{word-spacing:-13.596000px;}
.ws9a{word-spacing:-12.960000px;}
.ws6e{word-spacing:-12.906000px;}
.ws72{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.360000px;}
.ws52{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws39{word-spacing:-12.096000px;}
.ws75{word-spacing:-12.042000px;}
.wsa0{word-spacing:-11.988000px;}
.ws95{word-spacing:-11.826000px;}
.ws4{word-spacing:-11.820000px;}
.ws83{word-spacing:-11.718000px;}
.ws8{word-spacing:-10.920000px;}
.ws9{word-spacing:-10.680000px;}
.wsa6{word-spacing:-10.395000px;}
.wsa2{word-spacing:-10.305000px;}
.wsa7{word-spacing:-10.170000px;}
.wsc5{word-spacing:-10.080000px;}
.wsc7{word-spacing:-10.035000px;}
.wsc3{word-spacing:-10.012500px;}
.wsa3{word-spacing:-9.990000px;}
.wsab{word-spacing:-9.810000px;}
.wsa8{word-spacing:-9.720000px;}
.wsa9{word-spacing:-9.675000px;}
.ws78{word-spacing:-9.660000px;}
.wsaa{word-spacing:-9.630000px;}
.wsa4{word-spacing:-9.585000px;}
.wsc4{word-spacing:-9.360000px;}
.wsc6{word-spacing:-9.045000px;}
.ws63{word-spacing:-9.020700px;}
.wsa5{word-spacing:-9.000000px;}
.ws77{word-spacing:-8.694000px;}
.ws42{word-spacing:-8.599500px;}
.ws70{word-spacing:-8.494200px;}
.ws64{word-spacing:-8.459100px;}
.ws9b{word-spacing:-8.424000px;}
.ws6f{word-spacing:-8.388900px;}
.ws3c{word-spacing:-8.353800px;}
.ws3f{word-spacing:-8.318700px;}
.ws3d{word-spacing:-8.283600px;}
.ws41{word-spacing:-8.248500px;}
.ws93{word-spacing:-8.213400px;}
.ws71{word-spacing:-8.195850px;}
.ws43{word-spacing:-8.178300px;}
.ws38{word-spacing:-8.143200px;}
.ws6d{word-spacing:-8.090550px;}
.ws73{word-spacing:-8.073000px;}
.ws7{word-spacing:-8.040000px;}
.ws94{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws74{word-spacing:-8.002800px;}
.ws3a{word-spacing:-7.967700px;}
.ws3e{word-spacing:-7.932600px;}
.ws40{word-spacing:-7.897500px;}
.ws3b{word-spacing:-7.862400px;}
.ws9c{word-spacing:-7.792200px;}
.ws5{word-spacing:-7.683000px;}
.ws46{word-spacing:-7.392450px;}
.wsc{word-spacing:-7.293000px;}
.ws14{word-spacing:-7.226700px;}
.ws45{word-spacing:-7.193550px;}
.wse{word-spacing:-7.160400px;}
.wsd{word-spacing:-6.961500px;}
.wsb{word-spacing:-6.928350px;}
.ws44{word-spacing:-6.862050px;}
.ws10{word-spacing:-6.795750px;}
.wsf{word-spacing:-6.762600px;}
.ws13{word-spacing:-6.729450px;}
.wsa{word-spacing:-6.630000px;}
.ws16{word-spacing:-6.563700px;}
.ws15{word-spacing:-6.530550px;}
.ws11{word-spacing:-6.497400px;}
.ws12{word-spacing:-6.397950px;}
.ws1e{word-spacing:-5.340000px;}
.wsd7{word-spacing:-3.960000px;}
.ws1b{word-spacing:-3.900000px;}
.ws1c{word-spacing:-3.600000px;}
.ws18{word-spacing:-3.276000px;}
.ws33{word-spacing:-3.111000px;}
.ws37{word-spacing:-2.760000px;}
.ws1f{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.ws1d{word-spacing:-2.400000px;}
.ws68{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.091000px;}
.ws8c{word-spacing:-1.998000px;}
.ws8d{word-spacing:-1.890000px;}
.ws4a{word-spacing:-1.836000px;}
.ws8b{word-spacing:-1.782000px;}
.ws6c{word-spacing:-1.728000px;}
.ws9f{word-spacing:-1.674000px;}
.ws36{word-spacing:-1.581000px;}
.wsb3{word-spacing:-1.575000px;}
.ws59{word-spacing:-1.566000px;}
.ws28{word-spacing:-1.530000px;}
.ws9e{word-spacing:-1.512000px;}
.ws98{word-spacing:-1.458000px;}
.wsb6{word-spacing:-1.395000px;}
.ws65{word-spacing:-1.386000px;}
.ws87{word-spacing:-1.350000px;}
.ws90{word-spacing:-1.344000px;}
.ws23{word-spacing:-1.326000px;}
.wsce{word-spacing:-1.305000px;}
.ws60{word-spacing:-1.275000px;}
.ws1a{word-spacing:-1.260000px;}
.ws50{word-spacing:-1.242000px;}
.wsd2{word-spacing:-1.215000px;}
.ws4b{word-spacing:-1.188000px;}
.ws61{word-spacing:-1.173000px;}
.wsb4{word-spacing:-1.170000px;}
.ws47{word-spacing:-1.134000px;}
.wsb2{word-spacing:-1.125000px;}
.ws96{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.071000px;}
.wsaf{word-spacing:-1.035000px;}
.wsd8{word-spacing:-1.026000px;}
.ws2a{word-spacing:-1.020000px;}
.ws99{word-spacing:-0.972000px;}
.ws91{word-spacing:-0.966000px;}
.ws8f{word-spacing:-0.924000px;}
.ws34{word-spacing:-0.918000px;}
.wsd1{word-spacing:-0.900000px;}
.ws5e{word-spacing:-0.867000px;}
.ws97{word-spacing:-0.864000px;}
.wsae{word-spacing:-0.855000px;}
.ws2d{word-spacing:-0.816000px;}
.wsd4{word-spacing:-0.810000px;}
.ws62{word-spacing:-0.765000px;}
.wsd6{word-spacing:-0.756000px;}
.wsc1{word-spacing:-0.720000px;}
.ws66{word-spacing:-0.648000px;}
.ws4f{word-spacing:-0.594000px;}
.wsc2{word-spacing:-0.585000px;}
.ws48{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.510000px;}
.wsb9{word-spacing:-0.495000px;}
.ws5b{word-spacing:-0.486000px;}
.ws29{word-spacing:-0.459000px;}
.wsca{word-spacing:-0.450000px;}
.ws84{word-spacing:-0.432000px;}
.ws26{word-spacing:-0.408000px;}
.wscf{word-spacing:-0.405000px;}
.ws5a{word-spacing:-0.378000px;}
.wsc9{word-spacing:-0.360000px;}
.ws5c{word-spacing:-0.357000px;}
.ws49{word-spacing:-0.324000px;}
.ws56{word-spacing:-0.315900px;}
.wsad{word-spacing:-0.315000px;}
.ws6b{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.255000px;}
.wsac{word-spacing:-0.225000px;}
.ws4c{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.204000px;}
.wsbb{word-spacing:-0.180000px;}
.wsd9{word-spacing:-0.162000px;}
.ws32{word-spacing:-0.153000px;}
.wsd3{word-spacing:-0.135000px;}
.ws55{word-spacing:-0.108000px;}
.ws57{word-spacing:-0.054000px;}
.wsc0{word-spacing:-0.045000px;}
.ws17{word-spacing:0.000000px;}
.wsbe{word-spacing:0.045000px;}
.ws4e{word-spacing:0.054000px;}
.ws92{word-spacing:0.084000px;}
.ws27{word-spacing:0.102000px;}
.ws54{word-spacing:0.108000px;}
.ws22{word-spacing:0.153000px;}
.ws53{word-spacing:0.162000px;}
.wsbd{word-spacing:0.180000px;}
.ws30{word-spacing:0.204000px;}
.ws4d{word-spacing:0.216000px;}
.wsb5{word-spacing:0.225000px;}
.ws2b{word-spacing:0.255000px;}
.ws9d{word-spacing:0.270000px;}
.ws2c{word-spacing:0.306000px;}
.ws51{word-spacing:0.324000px;}
.ws20{word-spacing:0.351000px;}
.ws31{word-spacing:0.357000px;}
.ws8e{word-spacing:0.378000px;}
.wsb0{word-spacing:0.405000px;}
.ws88{word-spacing:0.432000px;}
.wsb1{word-spacing:0.450000px;}
.ws85{word-spacing:0.486000px;}
.ws19{word-spacing:0.540000px;}
.wscb{word-spacing:0.630000px;}
.ws6a{word-spacing:0.756000px;}
.wsb7{word-spacing:0.765000px;}
.ws8a{word-spacing:0.810000px;}
.wsbc{word-spacing:0.855000px;}
.ws89{word-spacing:0.918000px;}
.wsc8{word-spacing:0.945000px;}
.wscc{word-spacing:0.990000px;}
.ws86{word-spacing:1.134000px;}
.ws5f{word-spacing:1.173000px;}
.wscd{word-spacing:1.215000px;}
.ws58{word-spacing:1.242000px;}
.wsbf{word-spacing:1.260000px;}
.ws35{word-spacing:1.275000px;}
.wsd0{word-spacing:1.305000px;}
.wsb8{word-spacing:1.440000px;}
.wsba{word-spacing:1.485000px;}
.ws24{word-spacing:2.295000px;}
.wsd5{word-spacing:2.808000px;}
.ws69{word-spacing:2.862000px;}
.ws67{word-spacing:2.916000px;}
.ws79{word-spacing:169.260000px;}
.ws7b{word-spacing:179.340000px;}
.ws7e{word-spacing:189.420000px;}
.ws76{word-spacing:198.870000px;}
.ws7a{word-spacing:220.794000px;}
.ws80{word-spacing:235.242000px;}
.ws82{word-spacing:239.778000px;}
.ws7f{word-spacing:311.262000px;}
.ws7d{word-spacing:322.476000px;}
.ws81{word-spacing:328.608000px;}
.ws7c{word-spacing:345.534000px;}
._9{margin-left:-12.415800px;}
._21{margin-left:-10.854000px;}
._1e{margin-left:-9.344400px;}
._2{margin-left:-7.737600px;}
._6{margin-left:-6.264000px;}
._4{margin-left:-4.861200px;}
._1{margin-left:-3.603600px;}
._0{margin-left:-1.776000px;}
._7{width:1.636200px;}
._3{width:2.798400px;}
._5{width:4.303800px;}
._22{width:6.205800px;}
._24{width:7.785000px;}
._23{width:10.438200px;}
._8{width:12.768600px;}
._a{width:49.477800px;}
._1a{width:54.810000px;}
._c{width:60.354000px;}
._d{width:63.378000px;}
._b{width:74.046000px;}
._17{width:81.228000px;}
._12{width:84.126000px;}
._1d{width:93.289200px;}
._16{width:98.238000px;}
._19{width:99.547200px;}
._13{width:100.674000px;}
._14{width:103.698000px;}
._1b{width:168.693600px;}
._1f{width:177.828000px;}
._11{width:184.632000px;}
._10{width:198.114000px;}
._e{width:209.503200px;}
._20{width:239.064000px;}
._18{width:244.272000px;}
._f{width:291.270000px;}
._15{width:335.580000px;}
._1c{width:342.972000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs5{font-size:33.150000px;}
.fs9{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y11b{bottom:71.794800px;}
.y97{bottom:72.558300px;}
.y67{bottom:73.572150px;}
.y33{bottom:75.549300px;}
.ybf{bottom:78.544800px;}
.y1bc{bottom:84.089550px;}
.y11a{bottom:86.794800px;}
.y16c{bottom:87.551250px;}
.y96{bottom:87.556800px;}
.y66{bottom:88.570650px;}
.y32{bottom:90.549300px;}
.ybe{bottom:93.546300px;}
.y1bb{bottom:96.835800px;}
.yf5{bottom:97.299300px;}
.y16b{bottom:100.297500px;}
.y119{bottom:101.796300px;}
.y95{bottom:102.555300px;}
.y65{bottom:103.569150px;}
.y31{bottom:105.549300px;}
.ybd{bottom:108.544800px;}
.y1ba{bottom:109.582050px;}
.yf4{bottom:112.297800px;}
.y16a{bottom:113.043750px;}
.y118{bottom:116.794800px;}
.y94{bottom:117.553800px;}
.y64{bottom:118.567650px;}
.y30{bottom:120.549300px;}
.y1b9{bottom:122.328300px;}
.ybc{bottom:123.547800px;}
.y169{bottom:125.790000px;}
.yf3{bottom:127.296300px;}
.y117{bottom:131.794800px;}
.y93{bottom:132.552300px;}
.y63{bottom:133.566150px;}
.y1b8{bottom:135.074550px;}
.y2f{bottom:135.549300px;}
.y168{bottom:138.536250px;}
.ybb{bottom:138.546300px;}
.yf2{bottom:142.294800px;}
.y116{bottom:146.802300px;}
.y92{bottom:147.550800px;}
.y1b7{bottom:147.820800px;}
.y62{bottom:148.564650px;}
.y2e{bottom:150.549300px;}
.y167{bottom:151.282500px;}
.yba{bottom:153.544800px;}
.yf1{bottom:157.294800px;}
.y1b6{bottom:160.567050px;}
.y115{bottom:161.800800px;}
.y91{bottom:162.549300px;}
.y61{bottom:163.563150px;}
.y166{bottom:164.028750px;}
.y2d{bottom:165.549300px;}
.yb9{bottom:168.546300px;}
.yf0{bottom:172.294800px;}
.y1b5{bottom:173.313300px;}
.y165{bottom:176.775000px;}
.y114{bottom:176.799300px;}
.y90{bottom:177.547800px;}
.y60{bottom:178.563150px;}
.yb8{bottom:183.544800px;}
.y2c{bottom:184.878300px;}
.y1b4{bottom:186.059550px;}
.yef{bottom:187.296300px;}
.y164{bottom:189.521250px;}
.y113{bottom:191.797800px;}
.y8f{bottom:192.546300px;}
.y5f{bottom:193.564650px;}
.y2b{bottom:195.549300px;}
.yb7{bottom:198.546300px;}
.y1b3{bottom:198.805800px;}
.y163{bottom:202.267500px;}
.yee{bottom:202.294800px;}
.y112{bottom:206.796300px;}
.y8e{bottom:207.544800px;}
.y5e{bottom:208.563150px;}
.y2a{bottom:210.549300px;}
.y1b2{bottom:211.552050px;}
.yb6{bottom:213.544800px;}
.y162{bottom:215.013750px;}
.yed{bottom:217.302300px;}
.y1e6{bottom:220.302300px;}
.y111{bottom:221.794800px;}
.y8d{bottom:222.547800px;}
.y5d{bottom:223.563150px;}
.y1b1{bottom:224.298300px;}
.y29{bottom:225.549300px;}
.y161{bottom:227.760000px;}
.yb5{bottom:228.549300px;}
.yec{bottom:232.300800px;}
.y1e5{bottom:235.300800px;}
.y110{bottom:236.796300px;}
.y1b0{bottom:237.044550px;}
.y8c{bottom:237.546300px;}
.y5c{bottom:238.563150px;}
.y160{bottom:240.506250px;}
.y28{bottom:240.549300px;}
.yb4{bottom:243.547800px;}
.yeb{bottom:247.299300px;}
.y1af{bottom:249.790800px;}
.y1e4{bottom:250.299300px;}
.y10f{bottom:251.794800px;}
.y8b{bottom:252.544800px;}
.y15f{bottom:253.252500px;}
.y5b{bottom:253.566150px;}
.y27{bottom:255.549300px;}
.yb3{bottom:258.546300px;}
.yea{bottom:262.297800px;}
.y1ae{bottom:262.537050px;}
.y1e3{bottom:265.297800px;}
.y15e{bottom:265.998750px;}
.y10e{bottom:266.796300px;}
.y8a{bottom:267.547800px;}
.y5a{bottom:268.564650px;}
.y26{bottom:270.549300px;}
.yb2{bottom:273.544800px;}
.y1ad{bottom:275.283300px;}
.ye9{bottom:277.296300px;}
.y15d{bottom:278.745000px;}
.y1e2{bottom:280.296300px;}
.y10d{bottom:281.794800px;}
.y89{bottom:282.546300px;}
.y59{bottom:283.563150px;}
.y25{bottom:285.549300px;}
.y1ac{bottom:288.029550px;}
.yb1{bottom:288.544800px;}
.y15c{bottom:291.491250px;}
.ye8{bottom:292.294800px;}
.y1e1{bottom:295.294800px;}
.y10c{bottom:296.794800px;}
.y88{bottom:297.544800px;}
.y58{bottom:298.564650px;}
.y24{bottom:300.549300px;}
.y1ab{bottom:300.775800px;}
.yb0{bottom:303.547800px;}
.y15b{bottom:304.237500px;}
.ye7{bottom:307.297800px;}
.y1e0{bottom:310.293300px;}
.y10b{bottom:311.808300px;}
.y87{bottom:312.553800px;}
.y1aa{bottom:313.522050px;}
.y57{bottom:313.563150px;}
.y23{bottom:315.549300px;}
.y15a{bottom:316.983750px;}
.yaf{bottom:318.546300px;}
.ye6{bottom:322.296300px;}
.y1a9{bottom:326.268300px;}
.y10a{bottom:326.806800px;}
.y86{bottom:327.552300px;}
.y56{bottom:328.563150px;}
.y159{bottom:329.730000px;}
.y22{bottom:330.549300px;}
.y1df{bottom:332.053800px;}
.yae{bottom:333.544800px;}
.ye5{bottom:337.294800px;}
.y1a8{bottom:339.014550px;}
.y109{bottom:341.805300px;}
.y158{bottom:342.476250px;}
.y85{bottom:342.550800px;}
.y55{bottom:343.563150px;}
.y21{bottom:345.549300px;}
.y1de{bottom:347.052300px;}
.yad{bottom:348.567300px;}
.y1a7{bottom:351.760800px;}
.ye4{bottom:352.299300px;}
.y157{bottom:355.222500px;}
.y108{bottom:356.803800px;}
.y84{bottom:357.549300px;}
.y54{bottom:358.567650px;}
.y20{bottom:360.549300px;}
.yac{bottom:363.565800px;}
.y1a6{bottom:364.507050px;}
.ye3{bottom:367.297800px;}
.y156{bottom:367.968750px;}
.y1dd{bottom:368.800800px;}
.y107{bottom:371.802300px;}
.y83{bottom:372.547800px;}
.y53{bottom:373.566150px;}
.y1f{bottom:375.549300px;}
.y1a5{bottom:377.253300px;}
.yab{bottom:378.564300px;}
.y155{bottom:380.715000px;}
.ye2{bottom:382.296300px;}
.y1dc{bottom:383.799300px;}
.y106{bottom:386.800800px;}
.y82{bottom:387.546300px;}
.y52{bottom:388.564650px;}
.y1a4{bottom:389.999550px;}
.y1e{bottom:390.549300px;}
.y154{bottom:393.461250px;}
.yaa{bottom:393.562800px;}
.ye1{bottom:397.294800px;}
.y105{bottom:401.799300px;}
.y81{bottom:402.544800px;}
.y1a3{bottom:402.745800px;}
.y51{bottom:403.563150px;}
.y1db{bottom:405.547800px;}
.y1d{bottom:405.549300px;}
.y153{bottom:406.207500px;}
.ya9{bottom:408.561300px;}
.ye0{bottom:412.294800px;}
.y1a2{bottom:415.492050px;}
.y104{bottom:416.797800px;}
.y80{bottom:417.553800px;}
.y50{bottom:418.564650px;}
.y152{bottom:418.953750px;}
.y1c{bottom:420.549300px;}
.ya8{bottom:423.559800px;}
.ydf{bottom:427.293300px;}
.y1da{bottom:427.296300px;}
.y1a1{bottom:428.238300px;}
.y151{bottom:431.700000px;}
.y103{bottom:431.796300px;}
.y7f{bottom:432.552300px;}
.y4f{bottom:433.563150px;}
.y1b{bottom:435.549300px;}
.ya7{bottom:438.558300px;}
.y1a0{bottom:440.984550px;}
.y150{bottom:444.446250px;}
.y102{bottom:446.794800px;}
.y7e{bottom:447.550800px;}
.y4e{bottom:448.566150px;}
.y1d9{bottom:449.044800px;}
.y1a{bottom:450.549300px;}
.ya6{bottom:453.556800px;}
.y19f{bottom:453.730800px;}
.y14f{bottom:457.192500px;}
.y101{bottom:461.793300px;}
.y7d{bottom:462.549300px;}
.y4d{bottom:463.564650px;}
.y1d8{bottom:464.043300px;}
.y19e{bottom:466.477050px;}
.ya5{bottom:468.555300px;}
.y19{bottom:469.878300px;}
.y14e{bottom:469.938750px;}
.y100{bottom:476.793300px;}
.y7c{bottom:477.547800px;}
.y4c{bottom:478.563150px;}
.y1d7{bottom:479.043300px;}
.y19d{bottom:479.223300px;}
.yf9{bottom:479.283450px;}
.y14d{bottom:482.685000px;}
.ya4{bottom:483.553800px;}
.y19c{bottom:491.969550px;}
.y7b{bottom:492.546300px;}
.y4b{bottom:493.563150px;}
.yf8{bottom:494.281950px;}
.y14c{bottom:495.431250px;}
.ya3{bottom:498.552300px;}
.y19b{bottom:504.715800px;}
.y7a{bottom:507.544800px;}
.y14b{bottom:508.177500px;}
.y4a{bottom:508.564650px;}
.yf7{bottom:509.280450px;}
.yff{bottom:509.800800px;}
.y1d6{bottom:512.056800px;}
.ya2{bottom:513.550800px;}
.y18{bottom:514.434450px;}
.y19a{bottom:517.462050px;}
.y14a{bottom:520.923750px;}
.y79{bottom:522.543300px;}
.y49{bottom:523.563150px;}
.yf6{bottom:524.278950px;}
.yfe{bottom:524.799300px;}
.y1d5{bottom:527.055300px;}
.ya1{bottom:528.549300px;}
.y199{bottom:530.208300px;}
.y17{bottom:532.434450px;}
.y149{bottom:533.670000px;}
.y78{bottom:537.543300px;}
.y48{bottom:538.563150px;}
.yfd{bottom:539.797800px;}
.y1d4{bottom:542.053800px;}
.y198{bottom:542.954550px;}
.ya0{bottom:543.547800px;}
.y148{bottom:546.416250px;}
.y16{bottom:550.434450px;}
.y47{bottom:553.599150px;}
.yfc{bottom:554.796300px;}
.y197{bottom:555.700800px;}
.y1d3{bottom:557.052300px;}
.y9f{bottom:558.546300px;}
.y147{bottom:559.162500px;}
.y15{bottom:568.434450px;}
.y196{bottom:568.447050px;}
.y46{bottom:568.597650px;}
.yfb{bottom:569.794800px;}
.y146{bottom:571.908750px;}
.y1d2{bottom:572.050800px;}
.y9e{bottom:573.544800px;}
.y195{bottom:581.193300px;}
.y145{bottom:584.655000px;}
.yfa{bottom:584.793300px;}
.y14{bottom:586.434450px;}
.y1d1{bottom:587.049300px;}
.y9d{bottom:588.543300px;}
.y194{bottom:593.939550px;}
.y9c{bottom:596.224950px;}
.y144{bottom:597.401250px;}
.y1d0{bottom:602.047800px;}
.y13{bottom:604.434450px;}
.y193{bottom:606.685800px;}
.y143{bottom:610.147500px;}
.y9b{bottom:611.223450px;}
.y45{bottom:615.847650px;}
.y1cf{bottom:617.046300px;}
.y192{bottom:619.432050px;}
.y12{bottom:622.434450px;}
.y142{bottom:622.893750px;}
.y9a{bottom:626.221950px;}
.y1ce{bottom:632.044800px;}
.y191{bottom:632.178300px;}
.y44{bottom:632.344650px;}
.y141{bottom:635.640000px;}
.y11{bottom:640.434450px;}
.y99{bottom:641.220450px;}
.y11f{bottom:644.340450px;}
.yde{bottom:644.425800px;}
.y190{bottom:644.924550px;}
.y1cd{bottom:647.043300px;}
.y140{bottom:648.386250px;}
.y43{bottom:648.841650px;}
.y98{bottom:656.218950px;}
.y18f{bottom:657.670800px;}
.y10{bottom:658.434450px;}
.y11e{bottom:659.341950px;}
.ydd{bottom:659.424300px;}
.y13f{bottom:661.132500px;}
.y1cc{bottom:662.043300px;}
.y42{bottom:665.338650px;}
.y18e{bottom:670.417050px;}
.y13e{bottom:673.878750px;}
.y11d{bottom:674.340450px;}
.ydc{bottom:674.422800px;}
.yf{bottom:676.434450px;}
.y41{bottom:681.835650px;}
.y18d{bottom:683.163300px;}
.y13d{bottom:686.625000px;}
.y11c{bottom:689.338950px;}
.ydb{bottom:689.421300px;}
.ye{bottom:694.434450px;}
.y1cb{bottom:695.062800px;}
.y18c{bottom:695.909550px;}
.y40{bottom:698.332650px;}
.y13c{bottom:699.371250px;}
.yda{bottom:704.419800px;}
.y18b{bottom:708.655800px;}
.y1ca{bottom:710.061300px;}
.y13b{bottom:712.117500px;}
.yd{bottom:712.434450px;}
.y3f{bottom:714.829650px;}
.yd9{bottom:719.418300px;}
.y18a{bottom:721.402050px;}
.y13a{bottom:724.863750px;}
.y1c9{bottom:725.059800px;}
.yc{bottom:730.434450px;}
.y3e{bottom:731.326650px;}
.y189{bottom:734.148300px;}
.y139{bottom:737.610000px;}
.y1c8{bottom:740.058300px;}
.y188{bottom:746.894550px;}
.y3d{bottom:747.823650px;}
.yb{bottom:748.434450px;}
.yd8{bottom:749.562300px;}
.y138{bottom:750.356250px;}
.y1c7{bottom:755.056800px;}
.y36{bottom:757.050000px;}
.y187{bottom:759.640800px;}
.y137{bottom:763.102500px;}
.y3c{bottom:764.320650px;}
.ya{bottom:766.434300px;}
.yd7{bottom:767.002800px;}
.y1c6{bottom:770.055300px;}
.y186{bottom:772.387050px;}
.y136{bottom:775.848750px;}
.y35{bottom:778.050000px;}
.y3b{bottom:780.817650px;}
.y9{bottom:784.434300px;}
.yd6{bottom:784.443300px;}
.y1c5{bottom:785.053800px;}
.y185{bottom:785.133300px;}
.y135{bottom:788.595000px;}
.y3a{bottom:797.314650px;}
.y184{bottom:797.879550px;}
.y34{bottom:799.050000px;}
.y1c4{bottom:800.052300px;}
.y134{bottom:801.341250px;}
.yd5{bottom:801.883800px;}
.y8{bottom:802.434300px;}
.y183{bottom:810.625800px;}
.y39{bottom:813.811650px;}
.y133{bottom:814.087500px;}
.y1c3{bottom:815.050800px;}
.yd4{bottom:819.324300px;}
.y7{bottom:820.434300px;}
.y182{bottom:823.372050px;}
.y132{bottom:826.833750px;}
.y1c2{bottom:830.049300px;}
.y181{bottom:836.118300px;}
.yd3{bottom:836.764800px;}
.y6{bottom:838.434300px;}
.y131{bottom:839.580000px;}
.y1c1{bottom:845.047800px;}
.yd0{bottom:845.490300px;}
.y180{bottom:848.864550px;}
.y130{bottom:852.326250px;}
.yd2{bottom:854.205300px;}
.y1c0{bottom:860.046300px;}
.y17f{bottom:861.610800px;}
.y12f{bottom:865.072500px;}
.y77{bottom:869.317650px;}
.y5{bottom:871.428300px;}
.yd1{bottom:871.645800px;}
.y17e{bottom:874.357050px;}
.y1bf{bottom:875.044800px;}
.y12e{bottom:877.818750px;}
.y17d{bottom:887.103300px;}
.y76{bottom:888.646800px;}
.ycf{bottom:889.086300px;}
.y1be{bottom:890.043300px;}
.y12d{bottom:890.565000px;}
.y75{bottom:899.323650px;}
.y17c{bottom:899.849550px;}
.y12c{bottom:903.311250px;}
.y1bd{bottom:905.043300px;}
.yce{bottom:906.526800px;}
.y17b{bottom:912.595800px;}
.y74{bottom:914.317650px;}
.y12b{bottom:916.057500px;}
.y4{bottom:916.434300px;}
.ycd{bottom:923.967300px;}
.yca{bottom:923.977800px;}
.y17a{bottom:925.342050px;}
.y37{bottom:926.409600px;}
.y12a{bottom:928.803750px;}
.y73{bottom:929.317650px;}
.y179{bottom:938.088300px;}
.ycc{bottom:941.407800px;}
.y129{bottom:941.550000px;}
.y72{bottom:944.323650px;}
.y178{bottom:950.834550px;}
.y128{bottom:954.300000px;}
.ycb{bottom:958.848300px;}
.y71{bottom:959.317650px;}
.y177{bottom:963.580800px;}
.y70{bottom:974.317650px;}
.yc9{bottom:976.288800px;}
.y176{bottom:976.327050px;}
.y127{bottom:983.794800px;}
.y175{bottom:989.073300px;}
.y6f{bottom:993.646800px;}
.yc8{bottom:993.729300px;}
.y126{bottom:998.796300px;}
.yc5{bottom:999.924300px;}
.y174{bottom:1001.819550px;}
.y6e{bottom:1008.646800px;}
.yc3{bottom:1011.169800px;}
.y125{bottom:1013.794800px;}
.y173{bottom:1014.565800px;}
.y6d{bottom:1019.317650px;}
.yc4{bottom:1022.415300px;}
.y172{bottom:1027.312050px;}
.yc7{bottom:1028.610300px;}
.y124{bottom:1028.794800px;}
.y6c{bottom:1034.317650px;}
.y171{bottom:1040.058300px;}
.y123{bottom:1043.794800px;}
.yc6{bottom:1046.050800px;}
.y6b{bottom:1049.317650px;}
.y170{bottom:1052.804550px;}
.y122{bottom:1058.796300px;}
.yc0{bottom:1063.480800px;}
.y6a{bottom:1064.317650px;}
.y16f{bottom:1065.550800px;}
.y121{bottom:1073.794800px;}
.yc1{bottom:1074.726300px;}
.y16e{bottom:1078.297050px;}
.y69{bottom:1079.317650px;}
.y120{bottom:1088.793300px;}
.y16d{bottom:1091.043300px;}
.yc2{bottom:1092.166800px;}
.y68{bottom:1094.311650px;}
.y38{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.ha{height:23.842749px;}
.h1e{height:29.988000px;}
.h1f{height:30.072000px;}
.h20{height:31.038000px;}
.h24{height:32.220000px;}
.hc{height:34.523438px;}
.h19{height:36.681152px;}
.h10{height:38.664000px;}
.h3{height:39.210938px;}
.h15{height:39.906000px;}
.h1a{height:41.135349px;}
.hb{height:41.158749px;}
.h18{height:41.159349px;}
.h17{height:41.183349px;}
.h2{height:43.154297px;}
.h11{height:43.341600px;}
.h1d{height:43.395600px;}
.h22{height:43.431600px;}
.h1c{height:43.449600px;}
.h21{height:43.455600px;}
.h16{height:43.467600px;}
.h14{height:43.473600px;}
.h13{height:43.479600px;}
.h12{height:43.485600px;}
.h23{height:43.491600px;}
.hf{height:43.690430px;}
.he{height:44.112305px;}
.h4{height:44.233154px;}
.h9{height:51.954199px;}
.h8{height:52.258887px;}
.h7{height:52.259487px;}
.h1b{height:53.915039px;}
.hd{height:88.224609px;}
.h6{height:126.216797px;}
.h5{height:127.435547px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x5{left:67.742100px;}
.x6{left:85.874100px;}
.x7{left:92.426100px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xb{left:238.143900px;}
.x9{left:251.457150px;}
.x13{left:279.860400px;}
.x12{left:289.415400px;}
.x14{left:296.261400px;}
.x17{left:300.348750px;}
.xc{left:455.000400px;}
.x16{left:458.118900px;}
.x15{left:460.586400px;}
.xd{left:465.101400px;}
.xf{left:526.221900px;}
.x3{left:584.586600px;}
.xe{left:598.062900px;}
.x11{left:701.498400px;}
.x10{left:706.769400px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133867pt;}
.v6{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v7{vertical-align:-9.610667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.413333pt;}
.v5{vertical-align:16.314667pt;}
.v1{vertical-align:18.133867pt;}
.ls14{letter-spacing:-3.840000pt;}
.ls16{letter-spacing:-1.493333pt;}
.ls85{letter-spacing:-1.320000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls7f{letter-spacing:-1.160000pt;}
.ls90{letter-spacing:-1.120000pt;}
.ls91{letter-spacing:-1.080000pt;}
.ls67{letter-spacing:-0.933333pt;}
.ls8f{letter-spacing:-0.840000pt;}
.ls68{letter-spacing:-0.821333pt;}
.ls84{letter-spacing:-0.800000pt;}
.ls45{letter-spacing:-0.720000pt;}
.ls82{letter-spacing:-0.680000pt;}
.ls7e{letter-spacing:-0.640000pt;}
.ls8d{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls8c{letter-spacing:-0.440000pt;}
.ls88{letter-spacing:-0.400000pt;}
.ls6b{letter-spacing:-0.384000pt;}
.ls64{letter-spacing:-0.373333pt;}
.ls58{letter-spacing:-0.336000pt;}
.ls22{letter-spacing:-0.317333pt;}
.ls13{letter-spacing:-0.312000pt;}
.ls7d{letter-spacing:-0.280000pt;}
.ls63{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.206267pt;}
.ls56{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.181333pt;}
.ls86{letter-spacing:-0.160000pt;}
.ls6e{letter-spacing:-0.156000pt;}
.ls43{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.136000pt;}
.ls83{letter-spacing:-0.120000pt;}
.ls21{letter-spacing:-0.117867pt;}
.ls49{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.093600pt;}
.ls18{letter-spacing:-0.090667pt;}
.ls27{letter-spacing:-0.088400pt;}
.ls81{letter-spacing:-0.080000pt;}
.ls65{letter-spacing:-0.074667pt;}
.ls4a{letter-spacing:-0.062400pt;}
.ls28{letter-spacing:-0.058933pt;}
.ls47{letter-spacing:-0.048000pt;}
.ls80{letter-spacing:-0.040000pt;}
.ls48{letter-spacing:-0.031200pt;}
.ls11{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.004000pt;}
.ls61{letter-spacing:0.031200pt;}
.ls7a{letter-spacing:0.040000pt;}
.ls42{letter-spacing:0.048000pt;}
.ls6a{letter-spacing:0.062400pt;}
.ls70{letter-spacing:0.080000pt;}
.ls24{letter-spacing:0.088400pt;}
.ls60{letter-spacing:0.093600pt;}
.ls54{letter-spacing:0.096000pt;}
.ls5c{letter-spacing:0.109200pt;}
.ls1e{letter-spacing:0.117867pt;}
.ls73{letter-spacing:0.120000pt;}
.lse{letter-spacing:0.136000pt;}
.ls51{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.147333pt;}
.ls2b{letter-spacing:0.156000pt;}
.ls40{letter-spacing:0.157600pt;}
.ls8a{letter-spacing:0.160000pt;}
.ls6d{letter-spacing:0.174400pt;}
.lsc{letter-spacing:0.181333pt;}
.ls39{letter-spacing:0.187200pt;}
.ls37{letter-spacing:0.192000pt;}
.ls77{letter-spacing:0.200000pt;}
.ls5f{letter-spacing:0.202800pt;}
.ls4d{letter-spacing:0.206267pt;}
.ls53{letter-spacing:0.211200pt;}
.ls69{letter-spacing:0.218400pt;}
.ls89{letter-spacing:0.220000pt;}
.lsd{letter-spacing:0.226667pt;}
.ls9{letter-spacing:0.237200pt;}
.ls31{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.249600pt;}
.ls19{letter-spacing:0.265200pt;}
.ls2{letter-spacing:0.270800pt;}
.ls3{letter-spacing:0.271333pt;}
.ls3f{letter-spacing:0.273200pt;}
.ls6f{letter-spacing:0.280000pt;}
.ls2e{letter-spacing:0.280800pt;}
.ls4c{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.294667pt;}
.ls35{letter-spacing:0.312000pt;}
.ls3a{letter-spacing:0.317333pt;}
.ls8e{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.336000pt;}
.ls2d{letter-spacing:0.343200pt;}
.ls92{letter-spacing:0.344000pt;}
.ls74{letter-spacing:0.360000pt;}
.ls8{letter-spacing:0.362667pt;}
.ls5d{letter-spacing:0.374400pt;}
.ls46{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.398400pt;}
.ls87{letter-spacing:0.400000pt;}
.ls6c{letter-spacing:0.405600pt;}
.lsa{letter-spacing:0.408000pt;}
.ls2a{letter-spacing:0.432000pt;}
.ls5a{letter-spacing:0.436800pt;}
.ls75{letter-spacing:0.440000pt;}
.ls4{letter-spacing:0.453333pt;}
.ls62{letter-spacing:0.468000pt;}
.ls1d{letter-spacing:0.471467pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.485333pt;}
.ls4e{letter-spacing:0.500933pt;}
.ls3d{letter-spacing:0.507200pt;}
.ls71{letter-spacing:0.520000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.530400pt;}
.ls76{letter-spacing:0.560000pt;}
.ls38{letter-spacing:0.561600pt;}
.ls32{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.589333pt;}
.ls7{letter-spacing:0.596667pt;}
.ls30{letter-spacing:0.624000pt;}
.ls7c{letter-spacing:0.640000pt;}
.ls59{letter-spacing:0.672000pt;}
.ls3c{letter-spacing:0.676800pt;}
.ls4f{letter-spacing:0.677733pt;}
.ls3e{letter-spacing:0.680000pt;}
.ls5e{letter-spacing:0.720000pt;}
.ls1c{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.754000pt;}
.ls78{letter-spacing:0.760000pt;}
.ls5b{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.770667pt;}
.lsf{letter-spacing:0.816000pt;}
.ls79{letter-spacing:0.840000pt;}
.ls10{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.864000pt;}
.ls72{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.906667pt;}
.ls57{letter-spacing:0.936000pt;}
.ls17{letter-spacing:0.952000pt;}
.ls8b{letter-spacing:0.968000pt;}
.ls50{letter-spacing:1.042667pt;}
.ls5{letter-spacing:1.178667pt;}
.ls7b{letter-spacing:1.212000pt;}
.ls52{letter-spacing:1.440000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls29{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls55{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.wsa1{word-spacing:-12.085333pt;}
.ws9a{word-spacing:-11.520000pt;}
.ws6e{word-spacing:-11.472000pt;}
.ws72{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws52{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws39{word-spacing:-10.752000pt;}
.ws75{word-spacing:-10.704000pt;}
.wsa0{word-spacing:-10.656000pt;}
.ws95{word-spacing:-10.512000pt;}
.ws4{word-spacing:-10.506667pt;}
.ws83{word-spacing:-10.416000pt;}
.ws8{word-spacing:-9.706667pt;}
.ws9{word-spacing:-9.493333pt;}
.wsa6{word-spacing:-9.240000pt;}
.wsa2{word-spacing:-9.160000pt;}
.wsa7{word-spacing:-9.040000pt;}
.wsc5{word-spacing:-8.960000pt;}
.wsc7{word-spacing:-8.920000pt;}
.wsc3{word-spacing:-8.900000pt;}
.wsa3{word-spacing:-8.880000pt;}
.wsab{word-spacing:-8.720000pt;}
.wsa8{word-spacing:-8.640000pt;}
.wsa9{word-spacing:-8.600000pt;}
.ws78{word-spacing:-8.586667pt;}
.wsaa{word-spacing:-8.560000pt;}
.wsa4{word-spacing:-8.520000pt;}
.wsc4{word-spacing:-8.320000pt;}
.wsc6{word-spacing:-8.040000pt;}
.ws63{word-spacing:-8.018400pt;}
.wsa5{word-spacing:-8.000000pt;}
.ws77{word-spacing:-7.728000pt;}
.ws42{word-spacing:-7.644000pt;}
.ws70{word-spacing:-7.550400pt;}
.ws64{word-spacing:-7.519200pt;}
.ws9b{word-spacing:-7.488000pt;}
.ws6f{word-spacing:-7.456800pt;}
.ws3c{word-spacing:-7.425600pt;}
.ws3f{word-spacing:-7.394400pt;}
.ws3d{word-spacing:-7.363200pt;}
.ws41{word-spacing:-7.332000pt;}
.ws93{word-spacing:-7.300800pt;}
.ws71{word-spacing:-7.285200pt;}
.ws43{word-spacing:-7.269600pt;}
.ws38{word-spacing:-7.238400pt;}
.ws6d{word-spacing:-7.191600pt;}
.ws73{word-spacing:-7.176000pt;}
.ws7{word-spacing:-7.146667pt;}
.ws94{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws74{word-spacing:-7.113600pt;}
.ws3a{word-spacing:-7.082400pt;}
.ws3e{word-spacing:-7.051200pt;}
.ws40{word-spacing:-7.020000pt;}
.ws3b{word-spacing:-6.988800pt;}
.ws9c{word-spacing:-6.926400pt;}
.ws5{word-spacing:-6.829333pt;}
.ws46{word-spacing:-6.571067pt;}
.wsc{word-spacing:-6.482667pt;}
.ws14{word-spacing:-6.423733pt;}
.ws45{word-spacing:-6.394267pt;}
.wse{word-spacing:-6.364800pt;}
.wsd{word-spacing:-6.188000pt;}
.wsb{word-spacing:-6.158533pt;}
.ws44{word-spacing:-6.099600pt;}
.ws10{word-spacing:-6.040667pt;}
.wsf{word-spacing:-6.011200pt;}
.ws13{word-spacing:-5.981733pt;}
.wsa{word-spacing:-5.893333pt;}
.ws16{word-spacing:-5.834400pt;}
.ws15{word-spacing:-5.804933pt;}
.ws11{word-spacing:-5.775467pt;}
.ws12{word-spacing:-5.687067pt;}
.ws1e{word-spacing:-4.746667pt;}
.wsd7{word-spacing:-3.520000pt;}
.ws1b{word-spacing:-3.466667pt;}
.ws1c{word-spacing:-3.200000pt;}
.ws18{word-spacing:-2.912000pt;}
.ws33{word-spacing:-2.765333pt;}
.ws37{word-spacing:-2.453333pt;}
.ws1f{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws1d{word-spacing:-2.133333pt;}
.ws68{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.858667pt;}
.ws8c{word-spacing:-1.776000pt;}
.ws8d{word-spacing:-1.680000pt;}
.ws4a{word-spacing:-1.632000pt;}
.ws8b{word-spacing:-1.584000pt;}
.ws6c{word-spacing:-1.536000pt;}
.ws9f{word-spacing:-1.488000pt;}
.ws36{word-spacing:-1.405333pt;}
.wsb3{word-spacing:-1.400000pt;}
.ws59{word-spacing:-1.392000pt;}
.ws28{word-spacing:-1.360000pt;}
.ws9e{word-spacing:-1.344000pt;}
.ws98{word-spacing:-1.296000pt;}
.wsb6{word-spacing:-1.240000pt;}
.ws65{word-spacing:-1.232000pt;}
.ws87{word-spacing:-1.200000pt;}
.ws90{word-spacing:-1.194667pt;}
.ws23{word-spacing:-1.178667pt;}
.wsce{word-spacing:-1.160000pt;}
.ws60{word-spacing:-1.133333pt;}
.ws1a{word-spacing:-1.120000pt;}
.ws50{word-spacing:-1.104000pt;}
.wsd2{word-spacing:-1.080000pt;}
.ws4b{word-spacing:-1.056000pt;}
.ws61{word-spacing:-1.042667pt;}
.wsb4{word-spacing:-1.040000pt;}
.ws47{word-spacing:-1.008000pt;}
.wsb2{word-spacing:-1.000000pt;}
.ws96{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.952000pt;}
.wsaf{word-spacing:-0.920000pt;}
.wsd8{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.906667pt;}
.ws99{word-spacing:-0.864000pt;}
.ws91{word-spacing:-0.858667pt;}
.ws8f{word-spacing:-0.821333pt;}
.ws34{word-spacing:-0.816000pt;}
.wsd1{word-spacing:-0.800000pt;}
.ws5e{word-spacing:-0.770667pt;}
.ws97{word-spacing:-0.768000pt;}
.wsae{word-spacing:-0.760000pt;}
.ws2d{word-spacing:-0.725333pt;}
.wsd4{word-spacing:-0.720000pt;}
.ws62{word-spacing:-0.680000pt;}
.wsd6{word-spacing:-0.672000pt;}
.wsc1{word-spacing:-0.640000pt;}
.ws66{word-spacing:-0.576000pt;}
.ws4f{word-spacing:-0.528000pt;}
.wsc2{word-spacing:-0.520000pt;}
.ws48{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.453333pt;}
.wsb9{word-spacing:-0.440000pt;}
.ws5b{word-spacing:-0.432000pt;}
.ws29{word-spacing:-0.408000pt;}
.wsca{word-spacing:-0.400000pt;}
.ws84{word-spacing:-0.384000pt;}
.ws26{word-spacing:-0.362667pt;}
.wscf{word-spacing:-0.360000pt;}
.ws5a{word-spacing:-0.336000pt;}
.wsc9{word-spacing:-0.320000pt;}
.ws5c{word-spacing:-0.317333pt;}
.ws49{word-spacing:-0.288000pt;}
.ws56{word-spacing:-0.280800pt;}
.wsad{word-spacing:-0.280000pt;}
.ws6b{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.226667pt;}
.wsac{word-spacing:-0.200000pt;}
.ws4c{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.181333pt;}
.wsbb{word-spacing:-0.160000pt;}
.wsd9{word-spacing:-0.144000pt;}
.ws32{word-spacing:-0.136000pt;}
.wsd3{word-spacing:-0.120000pt;}
.ws55{word-spacing:-0.096000pt;}
.ws57{word-spacing:-0.048000pt;}
.wsc0{word-spacing:-0.040000pt;}
.ws17{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.040000pt;}
.ws4e{word-spacing:0.048000pt;}
.ws92{word-spacing:0.074667pt;}
.ws27{word-spacing:0.090667pt;}
.ws54{word-spacing:0.096000pt;}
.ws22{word-spacing:0.136000pt;}
.ws53{word-spacing:0.144000pt;}
.wsbd{word-spacing:0.160000pt;}
.ws30{word-spacing:0.181333pt;}
.ws4d{word-spacing:0.192000pt;}
.wsb5{word-spacing:0.200000pt;}
.ws2b{word-spacing:0.226667pt;}
.ws9d{word-spacing:0.240000pt;}
.ws2c{word-spacing:0.272000pt;}
.ws51{word-spacing:0.288000pt;}
.ws20{word-spacing:0.312000pt;}
.ws31{word-spacing:0.317333pt;}
.ws8e{word-spacing:0.336000pt;}
.wsb0{word-spacing:0.360000pt;}
.ws88{word-spacing:0.384000pt;}
.wsb1{word-spacing:0.400000pt;}
.ws85{word-spacing:0.432000pt;}
.ws19{word-spacing:0.480000pt;}
.wscb{word-spacing:0.560000pt;}
.ws6a{word-spacing:0.672000pt;}
.wsb7{word-spacing:0.680000pt;}
.ws8a{word-spacing:0.720000pt;}
.wsbc{word-spacing:0.760000pt;}
.ws89{word-spacing:0.816000pt;}
.wsc8{word-spacing:0.840000pt;}
.wscc{word-spacing:0.880000pt;}
.ws86{word-spacing:1.008000pt;}
.ws5f{word-spacing:1.042667pt;}
.wscd{word-spacing:1.080000pt;}
.ws58{word-spacing:1.104000pt;}
.wsbf{word-spacing:1.120000pt;}
.ws35{word-spacing:1.133333pt;}
.wsd0{word-spacing:1.160000pt;}
.wsb8{word-spacing:1.280000pt;}
.wsba{word-spacing:1.320000pt;}
.ws24{word-spacing:2.040000pt;}
.wsd5{word-spacing:2.496000pt;}
.ws69{word-spacing:2.544000pt;}
.ws67{word-spacing:2.592000pt;}
.ws79{word-spacing:150.453333pt;}
.ws7b{word-spacing:159.413333pt;}
.ws7e{word-spacing:168.373333pt;}
.ws76{word-spacing:176.773333pt;}
.ws7a{word-spacing:196.261333pt;}
.ws80{word-spacing:209.104000pt;}
.ws82{word-spacing:213.136000pt;}
.ws7f{word-spacing:276.677333pt;}
.ws7d{word-spacing:286.645333pt;}
.ws81{word-spacing:292.096000pt;}
.ws7c{word-spacing:307.141333pt;}
._9{margin-left:-11.036267pt;}
._21{margin-left:-9.648000pt;}
._1e{margin-left:-8.306133pt;}
._2{margin-left:-6.877867pt;}
._6{margin-left:-5.568000pt;}
._4{margin-left:-4.321067pt;}
._1{margin-left:-3.203200pt;}
._0{margin-left:-1.578667pt;}
._7{width:1.454400pt;}
._3{width:2.487467pt;}
._5{width:3.825600pt;}
._22{width:5.516267pt;}
._24{width:6.920000pt;}
._23{width:9.278400pt;}
._8{width:11.349867pt;}
._a{width:43.980267pt;}
._1a{width:48.720000pt;}
._c{width:53.648000pt;}
._d{width:56.336000pt;}
._b{width:65.818667pt;}
._17{width:72.202667pt;}
._12{width:74.778667pt;}
._1d{width:82.923733pt;}
._16{width:87.322667pt;}
._19{width:88.486400pt;}
._13{width:89.488000pt;}
._14{width:92.176000pt;}
._1b{width:149.949867pt;}
._1f{width:158.069333pt;}
._11{width:164.117333pt;}
._10{width:176.101333pt;}
._e{width:186.225067pt;}
._20{width:212.501333pt;}
._18{width:217.130667pt;}
._f{width:258.906667pt;}
._15{width:298.293333pt;}
._1c{width:304.864000pt;}
.fs5{font-size:29.466667pt;}
.fs9{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y11b{bottom:63.817600pt;}
.y97{bottom:64.496267pt;}
.y67{bottom:65.397467pt;}
.y33{bottom:67.154933pt;}
.ybf{bottom:69.817600pt;}
.y1bc{bottom:74.746267pt;}
.y11a{bottom:77.150933pt;}
.y16c{bottom:77.823333pt;}
.y96{bottom:77.828267pt;}
.y66{bottom:78.729467pt;}
.y32{bottom:80.488267pt;}
.ybe{bottom:83.152267pt;}
.y1bb{bottom:86.076267pt;}
.yf5{bottom:86.488267pt;}
.y16b{bottom:89.153333pt;}
.y119{bottom:90.485600pt;}
.y95{bottom:91.160267pt;}
.y65{bottom:92.061467pt;}
.y31{bottom:93.821600pt;}
.ybd{bottom:96.484267pt;}
.y1ba{bottom:97.406267pt;}
.yf4{bottom:99.820267pt;}
.y16a{bottom:100.483333pt;}
.y118{bottom:103.817600pt;}
.y94{bottom:104.492267pt;}
.y64{bottom:105.393467pt;}
.y30{bottom:107.154933pt;}
.y1b9{bottom:108.736267pt;}
.ybc{bottom:109.820267pt;}
.y169{bottom:111.813333pt;}
.yf3{bottom:113.152267pt;}
.y117{bottom:117.150933pt;}
.y93{bottom:117.824267pt;}
.y63{bottom:118.725467pt;}
.y1b8{bottom:120.066267pt;}
.y2f{bottom:120.488267pt;}
.y168{bottom:123.143333pt;}
.ybb{bottom:123.152267pt;}
.yf2{bottom:126.484267pt;}
.y116{bottom:130.490933pt;}
.y92{bottom:131.156267pt;}
.y1b7{bottom:131.396267pt;}
.y62{bottom:132.057467pt;}
.y2e{bottom:133.821600pt;}
.y167{bottom:134.473333pt;}
.yba{bottom:136.484267pt;}
.yf1{bottom:139.817600pt;}
.y1b6{bottom:142.726267pt;}
.y115{bottom:143.822933pt;}
.y91{bottom:144.488267pt;}
.y61{bottom:145.389467pt;}
.y166{bottom:145.803333pt;}
.y2d{bottom:147.154933pt;}
.yb9{bottom:149.818933pt;}
.yf0{bottom:153.150933pt;}
.y1b5{bottom:154.056267pt;}
.y165{bottom:157.133333pt;}
.y114{bottom:157.154933pt;}
.y90{bottom:157.820267pt;}
.y60{bottom:158.722800pt;}
.yb8{bottom:163.150933pt;}
.y2c{bottom:164.336267pt;}
.y1b4{bottom:165.386267pt;}
.yef{bottom:166.485600pt;}
.y164{bottom:168.463333pt;}
.y113{bottom:170.486933pt;}
.y8f{bottom:171.152267pt;}
.y5f{bottom:172.057467pt;}
.y2b{bottom:173.821600pt;}
.yb7{bottom:176.485600pt;}
.y1b3{bottom:176.716267pt;}
.y163{bottom:179.793333pt;}
.yee{bottom:179.817600pt;}
.y112{bottom:183.818933pt;}
.y8e{bottom:184.484267pt;}
.y5e{bottom:185.389467pt;}
.y2a{bottom:187.154933pt;}
.y1b2{bottom:188.046267pt;}
.yb6{bottom:189.817600pt;}
.y162{bottom:191.123333pt;}
.yed{bottom:193.157600pt;}
.y1e6{bottom:195.824267pt;}
.y111{bottom:197.150933pt;}
.y8d{bottom:197.820267pt;}
.y5d{bottom:198.722800pt;}
.y1b1{bottom:199.376267pt;}
.y29{bottom:200.488267pt;}
.y161{bottom:202.453333pt;}
.yb5{bottom:203.154933pt;}
.yec{bottom:206.489600pt;}
.y1e5{bottom:209.156267pt;}
.y110{bottom:210.485600pt;}
.y1b0{bottom:210.706267pt;}
.y8c{bottom:211.152267pt;}
.y5c{bottom:212.056133pt;}
.y160{bottom:213.783333pt;}
.y28{bottom:213.821600pt;}
.yb4{bottom:216.486933pt;}
.yeb{bottom:219.821600pt;}
.y1af{bottom:222.036267pt;}
.y1e4{bottom:222.488267pt;}
.y10f{bottom:223.817600pt;}
.y8b{bottom:224.484267pt;}
.y15f{bottom:225.113333pt;}
.y5b{bottom:225.392133pt;}
.y27{bottom:227.154933pt;}
.yb3{bottom:229.818933pt;}
.yea{bottom:233.153600pt;}
.y1ae{bottom:233.366267pt;}
.y1e3{bottom:235.820267pt;}
.y15e{bottom:236.443333pt;}
.y10e{bottom:237.152267pt;}
.y8a{bottom:237.820267pt;}
.y5a{bottom:238.724133pt;}
.y26{bottom:240.488267pt;}
.yb2{bottom:243.150933pt;}
.y1ad{bottom:244.696267pt;}
.ye9{bottom:246.485600pt;}
.y15d{bottom:247.773333pt;}
.y1e2{bottom:249.152267pt;}
.y10d{bottom:250.484267pt;}
.y89{bottom:251.152267pt;}
.y59{bottom:252.056133pt;}
.y25{bottom:253.821600pt;}
.y1ac{bottom:256.026267pt;}
.yb1{bottom:256.484267pt;}
.y15c{bottom:259.103333pt;}
.ye8{bottom:259.817600pt;}
.y1e1{bottom:262.484267pt;}
.y10c{bottom:263.817600pt;}
.y88{bottom:264.484267pt;}
.y58{bottom:265.390800pt;}
.y24{bottom:267.154933pt;}
.y1ab{bottom:267.356267pt;}
.yb0{bottom:269.820267pt;}
.y15b{bottom:270.433333pt;}
.ye7{bottom:273.153600pt;}
.y1e0{bottom:275.816267pt;}
.y10b{bottom:277.162933pt;}
.y87{bottom:277.825600pt;}
.y1aa{bottom:278.686267pt;}
.y57{bottom:278.722800pt;}
.y23{bottom:280.488267pt;}
.y15a{bottom:281.763333pt;}
.yaf{bottom:283.152267pt;}
.ye6{bottom:286.485600pt;}
.y1a9{bottom:290.016267pt;}
.y10a{bottom:290.494933pt;}
.y86{bottom:291.157600pt;}
.y56{bottom:292.056133pt;}
.y159{bottom:293.093333pt;}
.y22{bottom:293.821600pt;}
.y1df{bottom:295.158933pt;}
.yae{bottom:296.484267pt;}
.ye5{bottom:299.817600pt;}
.y1a8{bottom:301.346267pt;}
.y109{bottom:303.826933pt;}
.y158{bottom:304.423333pt;}
.y85{bottom:304.489600pt;}
.y55{bottom:305.389467pt;}
.y21{bottom:307.154933pt;}
.y1de{bottom:308.490933pt;}
.yad{bottom:309.837600pt;}
.y1a7{bottom:312.676267pt;}
.ye4{bottom:313.154933pt;}
.y157{bottom:315.753333pt;}
.y108{bottom:317.158933pt;}
.y84{bottom:317.821600pt;}
.y54{bottom:318.726800pt;}
.y20{bottom:320.488267pt;}
.yac{bottom:323.169600pt;}
.y1a6{bottom:324.006267pt;}
.ye3{bottom:326.486933pt;}
.y156{bottom:327.083333pt;}
.y1dd{bottom:327.822933pt;}
.y107{bottom:330.490933pt;}
.y83{bottom:331.153600pt;}
.y53{bottom:332.058800pt;}
.y1f{bottom:333.821600pt;}
.y1a5{bottom:335.336267pt;}
.yab{bottom:336.501600pt;}
.y155{bottom:338.413333pt;}
.ye2{bottom:339.818933pt;}
.y1dc{bottom:341.154933pt;}
.y106{bottom:343.822933pt;}
.y82{bottom:344.485600pt;}
.y52{bottom:345.390800pt;}
.y1a4{bottom:346.666267pt;}
.y1e{bottom:347.154933pt;}
.y154{bottom:349.743333pt;}
.yaa{bottom:349.833600pt;}
.ye1{bottom:353.150933pt;}
.y105{bottom:357.154933pt;}
.y81{bottom:357.817600pt;}
.y1a3{bottom:357.996267pt;}
.y51{bottom:358.722800pt;}
.y1db{bottom:360.486933pt;}
.y1d{bottom:360.488267pt;}
.y153{bottom:361.073333pt;}
.ya9{bottom:363.165600pt;}
.ye0{bottom:366.484267pt;}
.y1a2{bottom:369.326267pt;}
.y104{bottom:370.486933pt;}
.y80{bottom:371.158933pt;}
.y50{bottom:372.057467pt;}
.y152{bottom:372.403333pt;}
.y1c{bottom:373.821600pt;}
.ya8{bottom:376.497600pt;}
.ydf{bottom:379.816267pt;}
.y1da{bottom:379.818933pt;}
.y1a1{bottom:380.656267pt;}
.y151{bottom:383.733333pt;}
.y103{bottom:383.818933pt;}
.y7f{bottom:384.490933pt;}
.y4f{bottom:385.389467pt;}
.y1b{bottom:387.154933pt;}
.ya7{bottom:389.829600pt;}
.y1a0{bottom:391.986267pt;}
.y150{bottom:395.063333pt;}
.y102{bottom:397.150933pt;}
.y7e{bottom:397.822933pt;}
.y4e{bottom:398.725467pt;}
.y1d9{bottom:399.150933pt;}
.y1a{bottom:400.488267pt;}
.ya6{bottom:403.161600pt;}
.y19f{bottom:403.316267pt;}
.y14f{bottom:406.393333pt;}
.y101{bottom:410.482933pt;}
.y7d{bottom:411.154933pt;}
.y4d{bottom:412.057467pt;}
.y1d8{bottom:412.482933pt;}
.y19e{bottom:414.646267pt;}
.ya5{bottom:416.493600pt;}
.y19{bottom:417.669600pt;}
.y14e{bottom:417.723333pt;}
.y100{bottom:423.816267pt;}
.y7c{bottom:424.486933pt;}
.y4c{bottom:425.389467pt;}
.y1d7{bottom:425.816267pt;}
.y19d{bottom:425.976267pt;}
.yf9{bottom:426.029733pt;}
.y14d{bottom:429.053333pt;}
.ya4{bottom:429.825600pt;}
.y19c{bottom:437.306267pt;}
.y7b{bottom:437.818933pt;}
.y4b{bottom:438.722800pt;}
.yf8{bottom:439.361733pt;}
.y14c{bottom:440.383333pt;}
.ya3{bottom:443.157600pt;}
.y19b{bottom:448.636267pt;}
.y7a{bottom:451.150933pt;}
.y14b{bottom:451.713333pt;}
.y4a{bottom:452.057467pt;}
.yf7{bottom:452.693733pt;}
.yff{bottom:453.156267pt;}
.y1d6{bottom:455.161600pt;}
.ya2{bottom:456.489600pt;}
.y18{bottom:457.275067pt;}
.y19a{bottom:459.966267pt;}
.y14a{bottom:463.043333pt;}
.y79{bottom:464.482933pt;}
.y49{bottom:465.389467pt;}
.yf6{bottom:466.025733pt;}
.yfe{bottom:466.488267pt;}
.y1d5{bottom:468.493600pt;}
.ya1{bottom:469.821600pt;}
.y199{bottom:471.296267pt;}
.y17{bottom:473.275067pt;}
.y149{bottom:474.373333pt;}
.y78{bottom:477.816267pt;}
.y48{bottom:478.722800pt;}
.yfd{bottom:479.820267pt;}
.y1d4{bottom:481.825600pt;}
.y198{bottom:482.626267pt;}
.ya0{bottom:483.153600pt;}
.y148{bottom:485.703333pt;}
.y16{bottom:489.275067pt;}
.y47{bottom:492.088133pt;}
.yfc{bottom:493.152267pt;}
.y197{bottom:493.956267pt;}
.y1d3{bottom:495.157600pt;}
.y9f{bottom:496.485600pt;}
.y147{bottom:497.033333pt;}
.y15{bottom:505.275067pt;}
.y196{bottom:505.286267pt;}
.y46{bottom:505.420133pt;}
.yfb{bottom:506.484267pt;}
.y146{bottom:508.363333pt;}
.y1d2{bottom:508.489600pt;}
.y9e{bottom:509.817600pt;}
.y195{bottom:516.616267pt;}
.y145{bottom:519.693333pt;}
.yfa{bottom:519.816267pt;}
.y14{bottom:521.275067pt;}
.y1d1{bottom:521.821600pt;}
.y9d{bottom:523.149600pt;}
.y194{bottom:527.946267pt;}
.y9c{bottom:529.977733pt;}
.y144{bottom:531.023333pt;}
.y1d0{bottom:535.153600pt;}
.y13{bottom:537.275067pt;}
.y193{bottom:539.276267pt;}
.y143{bottom:542.353333pt;}
.y9b{bottom:543.309733pt;}
.y45{bottom:547.420133pt;}
.y1cf{bottom:548.485600pt;}
.y192{bottom:550.606267pt;}
.y12{bottom:553.275067pt;}
.y142{bottom:553.683333pt;}
.y9a{bottom:556.641733pt;}
.y1ce{bottom:561.817600pt;}
.y191{bottom:561.936267pt;}
.y44{bottom:562.084133pt;}
.y141{bottom:565.013333pt;}
.y11{bottom:569.275067pt;}
.y99{bottom:569.973733pt;}
.y11f{bottom:572.747067pt;}
.yde{bottom:572.822933pt;}
.y190{bottom:573.266267pt;}
.y1cd{bottom:575.149600pt;}
.y140{bottom:576.343333pt;}
.y43{bottom:576.748133pt;}
.y98{bottom:583.305733pt;}
.y18f{bottom:584.596267pt;}
.y10{bottom:585.275067pt;}
.y11e{bottom:586.081733pt;}
.ydd{bottom:586.154933pt;}
.y13f{bottom:587.673333pt;}
.y1cc{bottom:588.482933pt;}
.y42{bottom:591.412133pt;}
.y18e{bottom:595.926267pt;}
.y13e{bottom:599.003333pt;}
.y11d{bottom:599.413733pt;}
.ydc{bottom:599.486933pt;}
.yf{bottom:601.275067pt;}
.y41{bottom:606.076133pt;}
.y18d{bottom:607.256267pt;}
.y13d{bottom:610.333333pt;}
.y11c{bottom:612.745733pt;}
.ydb{bottom:612.818933pt;}
.ye{bottom:617.275067pt;}
.y1cb{bottom:617.833600pt;}
.y18c{bottom:618.586267pt;}
.y40{bottom:620.740133pt;}
.y13c{bottom:621.663333pt;}
.yda{bottom:626.150933pt;}
.y18b{bottom:629.916267pt;}
.y1ca{bottom:631.165600pt;}
.y13b{bottom:632.993333pt;}
.yd{bottom:633.275067pt;}
.y3f{bottom:635.404133pt;}
.yd9{bottom:639.482933pt;}
.y18a{bottom:641.246267pt;}
.y13a{bottom:644.323333pt;}
.y1c9{bottom:644.497600pt;}
.yc{bottom:649.275067pt;}
.y3e{bottom:650.068133pt;}
.y189{bottom:652.576267pt;}
.y139{bottom:655.653333pt;}
.y1c8{bottom:657.829600pt;}
.y188{bottom:663.906267pt;}
.y3d{bottom:664.732133pt;}
.yb{bottom:665.275067pt;}
.yd8{bottom:666.277600pt;}
.y138{bottom:666.983333pt;}
.y1c7{bottom:671.161600pt;}
.y36{bottom:672.933333pt;}
.y187{bottom:675.236267pt;}
.y137{bottom:678.313333pt;}
.y3c{bottom:679.396133pt;}
.ya{bottom:681.274933pt;}
.yd7{bottom:681.780267pt;}
.y1c6{bottom:684.493600pt;}
.y186{bottom:686.566267pt;}
.y136{bottom:689.643333pt;}
.y35{bottom:691.600000pt;}
.y3b{bottom:694.060133pt;}
.y9{bottom:697.274933pt;}
.yd6{bottom:697.282933pt;}
.y1c5{bottom:697.825600pt;}
.y185{bottom:697.896267pt;}
.y135{bottom:700.973333pt;}
.y3a{bottom:708.724133pt;}
.y184{bottom:709.226267pt;}
.y34{bottom:710.266667pt;}
.y1c4{bottom:711.157600pt;}
.y134{bottom:712.303333pt;}
.yd5{bottom:712.785600pt;}
.y8{bottom:713.274933pt;}
.y183{bottom:720.556267pt;}
.y39{bottom:723.388133pt;}
.y133{bottom:723.633333pt;}
.y1c3{bottom:724.489600pt;}
.yd4{bottom:728.288267pt;}
.y7{bottom:729.274933pt;}
.y182{bottom:731.886267pt;}
.y132{bottom:734.963333pt;}
.y1c2{bottom:737.821600pt;}
.y181{bottom:743.216267pt;}
.yd3{bottom:743.790933pt;}
.y6{bottom:745.274933pt;}
.y131{bottom:746.293333pt;}
.y1c1{bottom:751.153600pt;}
.yd0{bottom:751.546933pt;}
.y180{bottom:754.546267pt;}
.y130{bottom:757.623333pt;}
.yd2{bottom:759.293600pt;}
.y1c0{bottom:764.485600pt;}
.y17f{bottom:765.876267pt;}
.y12f{bottom:768.953333pt;}
.y77{bottom:772.726800pt;}
.y5{bottom:774.602933pt;}
.yd1{bottom:774.796267pt;}
.y17e{bottom:777.206267pt;}
.y1bf{bottom:777.817600pt;}
.y12e{bottom:780.283333pt;}
.y17d{bottom:788.536267pt;}
.y76{bottom:789.908267pt;}
.ycf{bottom:790.298933pt;}
.y1be{bottom:791.149600pt;}
.y12d{bottom:791.613333pt;}
.y75{bottom:799.398800pt;}
.y17c{bottom:799.866267pt;}
.y12c{bottom:802.943333pt;}
.y1bd{bottom:804.482933pt;}
.yce{bottom:805.801600pt;}
.y17b{bottom:811.196267pt;}
.y74{bottom:812.726800pt;}
.y12b{bottom:814.273333pt;}
.y4{bottom:814.608267pt;}
.ycd{bottom:821.304267pt;}
.yca{bottom:821.313600pt;}
.y17a{bottom:822.526267pt;}
.y37{bottom:823.475200pt;}
.y12a{bottom:825.603333pt;}
.y73{bottom:826.060133pt;}
.y179{bottom:833.856267pt;}
.ycc{bottom:836.806933pt;}
.y129{bottom:836.933333pt;}
.y72{bottom:839.398800pt;}
.y178{bottom:845.186267pt;}
.y128{bottom:848.266667pt;}
.ycb{bottom:852.309600pt;}
.y71{bottom:852.726800pt;}
.y177{bottom:856.516267pt;}
.y70{bottom:866.060133pt;}
.yc9{bottom:867.812267pt;}
.y176{bottom:867.846267pt;}
.y127{bottom:874.484267pt;}
.y175{bottom:879.176267pt;}
.y6f{bottom:883.241600pt;}
.yc8{bottom:883.314933pt;}
.y126{bottom:887.818933pt;}
.yc5{bottom:888.821600pt;}
.y174{bottom:890.506267pt;}
.y6e{bottom:896.574933pt;}
.yc3{bottom:898.817600pt;}
.y125{bottom:901.150933pt;}
.y173{bottom:901.836267pt;}
.y6d{bottom:906.060133pt;}
.yc4{bottom:908.813600pt;}
.y172{bottom:913.166267pt;}
.yc7{bottom:914.320267pt;}
.y124{bottom:914.484267pt;}
.y6c{bottom:919.393467pt;}
.y171{bottom:924.496267pt;}
.y123{bottom:927.817600pt;}
.yc6{bottom:929.822933pt;}
.y6b{bottom:932.726800pt;}
.y170{bottom:935.826267pt;}
.y122{bottom:941.152267pt;}
.yc0{bottom:945.316267pt;}
.y6a{bottom:946.060133pt;}
.y16f{bottom:947.156267pt;}
.y121{bottom:954.484267pt;}
.yc1{bottom:955.312267pt;}
.y16e{bottom:958.486267pt;}
.y69{bottom:959.393467pt;}
.y120{bottom:967.816267pt;}
.y16d{bottom:969.816267pt;}
.yc2{bottom:970.814933pt;}
.y68{bottom:972.721467pt;}
.y38{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.ha{height:21.193555pt;}
.h1e{height:26.656000pt;}
.h1f{height:26.730667pt;}
.h20{height:27.589333pt;}
.h24{height:28.640000pt;}
.hc{height:30.687500pt;}
.h19{height:32.605469pt;}
.h10{height:34.368000pt;}
.h3{height:34.854167pt;}
.h15{height:35.472000pt;}
.h1a{height:36.564755pt;}
.hb{height:36.585555pt;}
.h18{height:36.586088pt;}
.h17{height:36.607421pt;}
.h2{height:38.359375pt;}
.h11{height:38.525867pt;}
.h1d{height:38.573867pt;}
.h22{height:38.605867pt;}
.h1c{height:38.621867pt;}
.h21{height:38.627200pt;}
.h16{height:38.637867pt;}
.h14{height:38.643200pt;}
.h13{height:38.648533pt;}
.h12{height:38.653867pt;}
.h23{height:38.659200pt;}
.hf{height:38.835938pt;}
.he{height:39.210938pt;}
.h4{height:39.318359pt;}
.h9{height:46.181510pt;}
.h8{height:46.452344pt;}
.h7{height:46.452877pt;}
.h1b{height:47.924479pt;}
.hd{height:78.421875pt;}
.h6{height:112.192708pt;}
.h5{height:113.276042pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x5{left:60.215200pt;}
.x6{left:76.332533pt;}
.x7{left:82.156533pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xb{left:211.683467pt;}
.x9{left:223.517467pt;}
.x13{left:248.764800pt;}
.x12{left:257.258133pt;}
.x14{left:263.343467pt;}
.x17{left:266.976667pt;}
.xc{left:404.444800pt;}
.x16{left:407.216800pt;}
.x15{left:409.410133pt;}
.xd{left:413.423467pt;}
.xf{left:467.752800pt;}
.x3{left:519.632533pt;}
.xe{left:531.611467pt;}
.x11{left:623.554133pt;}
.x10{left:628.239467pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  