
    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_9d28327dc4c101f95599d7ca.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_fec245f20a665da58aea28d9.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_dc5d8783c6d60a5a0304ca04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_4df41a9e977965de20f9bb56.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_5512be68b8c12678d99c2b1d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aaa83d99a51d77da0b58fe07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_156da708cb1e22c051b717b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;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_560a21cb03d07fc53e50cdd3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_836f5cbf7113b5cae3642141.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_7cdcfb29e32ccdf6650dff89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fec245f20a665da58aea28d9.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_dc5d8783c6d60a5a0304ca04.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.907715;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_0a1d5be8a225c3aa4b6e3aa3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_46c36057e6cf4408c9b77e8c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_97af4d559d6d434aed6cf1c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7cdcfb29e32ccdf6650dff89.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fec245f20a665da58aea28d9.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_dc5d8783c6d60a5a0304ca04.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.907715;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_0a1d5be8a225c3aa4b6e3aa3.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_f81696308a8f89c80fd14c8e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_fec245f20a665da58aea28d9.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_da658d5d3f3083fc4d3c81f9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.907715;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_f57a41655ac84cc4968ad7bc.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_926c4bd869447de81cc4d7ab.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_da658d5d3f3083fc4d3c81f9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f57a41655ac84cc4968ad7bc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v5{vertical-align:-10.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.192000px;}
.v1{vertical-align:20.400000px;}
.ls36{letter-spacing:-4.806000px;}
.ls17{letter-spacing:-3.540000px;}
.ls18{letter-spacing:-1.260000px;}
.ls49{letter-spacing:-1.242000px;}
.ls8d{letter-spacing:-1.125000px;}
.ls8f{letter-spacing:-0.945000px;}
.ls77{letter-spacing:-0.900000px;}
.ls88{letter-spacing:-0.855000px;}
.ls78{letter-spacing:-0.765000px;}
.ls55{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.702000px;}
.ls8e{letter-spacing:-0.675000px;}
.ls48{letter-spacing:-0.648000px;}
.ls73{letter-spacing:-0.585000px;}
.ls53{letter-spacing:-0.540000px;}
.ls8a{letter-spacing:-0.495000px;}
.ls42{letter-spacing:-0.486000px;}
.ls75{letter-spacing:-0.450000px;}
.ls38{letter-spacing:-0.432000px;}
.ls67{letter-spacing:-0.378000px;}
.ls54{letter-spacing:-0.351000px;}
.ls47{letter-spacing:-0.324000px;}
.ls8c{letter-spacing:-0.315000px;}
.ls72{letter-spacing:-0.270000px;}
.ls65{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.225000px;}
.ls19{letter-spacing:-0.216000px;}
.ls74{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.162000px;}
.ls34{letter-spacing:-0.140400px;}
.ls79{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls32{letter-spacing:-0.105300px;}
.ls87{letter-spacing:-0.090000px;}
.ls56{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.051000px;}
.ls76{letter-spacing:-0.045000px;}
.ls58{letter-spacing:-0.035100px;}
.ls16{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.013800px;}
.ls4{letter-spacing:0.022800px;}
.ls60{letter-spacing:0.032400px;}
.ls5b{letter-spacing:0.034800px;}
.ls24{letter-spacing:0.035100px;}
.ls71{letter-spacing:0.045000px;}
.ls5c{letter-spacing:0.053400px;}
.ls23{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.070200px;}
.ls4e{letter-spacing:0.086400px;}
.ls85{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.105300px;}
.ls7{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.116250px;}
.ls68{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.122850px;}
.ls89{letter-spacing:0.135000px;}
.ls3b{letter-spacing:0.138600px;}
.ls1f{letter-spacing:0.140400px;}
.ls51{letter-spacing:0.145800px;}
.ls4d{letter-spacing:0.151200px;}
.ls5f{letter-spacing:0.159000px;}
.ls8{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.166050px;}
.ls61{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.184050px;}
.ls82{letter-spacing:0.202500px;}
.lsb{letter-spacing:0.204000px;}
.ls33{letter-spacing:0.210600px;}
.ls1e{letter-spacing:0.216000px;}
.ls7e{letter-spacing:0.225000px;}
.ls3a{letter-spacing:0.245700px;}
.ls12{letter-spacing:0.255000px;}
.ls1d{letter-spacing:0.258600px;}
.ls5d{letter-spacing:0.259200px;}
.ls6{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.280800px;}
.lsd{letter-spacing:0.281850px;}
.ls22{letter-spacing:0.292800px;}
.ls5e{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.306000px;}
.ls59{letter-spacing:0.310200px;}
.ls6d{letter-spacing:0.315000px;}
.ls37{letter-spacing:0.315900px;}
.ls27{letter-spacing:0.324000px;}
.ls40{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.378000px;}
.ls44{letter-spacing:0.383400px;}
.ls4f{letter-spacing:0.388800px;}
.ls3c{letter-spacing:0.405000px;}
.ls21{letter-spacing:0.421200px;}
.ls7f{letter-spacing:0.427500px;}
.ls2d{letter-spacing:0.432000px;}
.ls7c{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.459000px;}
.ls35{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.486000px;}
.ls57{letter-spacing:0.491400px;}
.ls6e{letter-spacing:0.495000px;}
.ls10{letter-spacing:0.520050px;}
.ls9{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.561600px;}
.ls4a{letter-spacing:0.572400px;}
.ls70{letter-spacing:0.585000px;}
.ls2a{letter-spacing:0.594000px;}
.ls84{letter-spacing:0.630000px;}
.ls20{letter-spacing:0.648000px;}
.ls46{letter-spacing:0.653400px;}
.ls3e{letter-spacing:0.660000px;}
.ls80{letter-spacing:0.675000px;}
.ls62{letter-spacing:0.680400px;}
.ls31{letter-spacing:0.702000px;}
.ls50{letter-spacing:0.720000px;}
.ls6a{letter-spacing:0.734400px;}
.ls2b{letter-spacing:0.756000px;}
.ls4c{letter-spacing:0.761400px;}
.ls6c{letter-spacing:0.765000px;}
.ls1a{letter-spacing:0.810000px;}
.lsf{letter-spacing:0.816000px;}
.ls3f{letter-spacing:0.840000px;}
.ls6b{letter-spacing:0.855000px;}
.lse{letter-spacing:0.867000px;}
.ls6f{letter-spacing:0.873000px;}
.ls7a{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.960000px;}
.ls52{letter-spacing:0.972000px;}
.ls7b{letter-spacing:0.990000px;}
.ls5a{letter-spacing:1.026000px;}
.ls43{letter-spacing:1.080000px;}
.ls83{letter-spacing:1.098000px;}
.ls4b{letter-spacing:1.134000px;}
.ls86{letter-spacing:1.215000px;}
.ls64{letter-spacing:1.242000px;}
.ls69{letter-spacing:1.260000px;}
.ls91{letter-spacing:1.426500px;}
.ls7d{letter-spacing:1.530000px;}
.ls81{letter-spacing:1.575000px;}
.ls90{letter-spacing:1.890000px;}
.ls0{letter-spacing:2.592000px;}
.ls1c{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls92{letter-spacing:4.620000px;}
.ls63{letter-spacing:6.120000px;}
.ls39{letter-spacing:14.526000px;}
.ls41{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;}
}
.ws6a{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws27{word-spacing:-13.596000px;}
.ws4a{word-spacing:-12.906000px;}
.ws72{word-spacing:-12.852000px;}
.ws57{word-spacing:-12.474000px;}
.ws66{word-spacing:-12.420000px;}
.ws42{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.360000px;}
.ws65{word-spacing:-12.312000px;}
.ws7{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws47{word-spacing:-12.042000px;}
.ws29{word-spacing:-11.934000px;}
.ws41{word-spacing:-11.718000px;}
.ws71{word-spacing:-11.610000px;}
.ws87{word-spacing:-10.710000px;}
.ws8b{word-spacing:-10.215000px;}
.ws8a{word-spacing:-10.192500px;}
.ws88{word-spacing:-10.170000px;}
.ws8d{word-spacing:-9.967500px;}
.ws73{word-spacing:-9.855000px;}
.ws74{word-spacing:-9.720000px;}
.ws89{word-spacing:-9.540000px;}
.ws8c{word-spacing:-9.450000px;}
.ws60{word-spacing:-8.459100px;}
.ws1f{word-spacing:-8.388900px;}
.ws28{word-spacing:-8.283600px;}
.ws21{word-spacing:-8.248500px;}
.ws40{word-spacing:-8.213400px;}
.ws24{word-spacing:-8.178300px;}
.ws1e{word-spacing:-8.108100px;}
.ws23{word-spacing:-8.090550px;}
.ws20{word-spacing:-8.073000px;}
.ws48{word-spacing:-8.037900px;}
.ws49{word-spacing:-8.002800px;}
.ws8{word-spacing:-7.967700px;}
.ws61{word-spacing:-7.932600px;}
.ws22{word-spacing:-7.862400px;}
.ws26{word-spacing:-7.827300px;}
.ws5f{word-spacing:-7.616700px;}
.ws9{word-spacing:-6.630000px;}
.ws6b{word-spacing:-6.120000px;}
.ws9e{word-spacing:-4.620000px;}
.ws19{word-spacing:-3.774000px;}
.ws1d{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws38{word-spacing:-1.890000px;}
.wsd{word-spacing:-1.836000px;}
.ws37{word-spacing:-1.782000px;}
.ws55{word-spacing:-1.728000px;}
.ws43{word-spacing:-1.674000px;}
.ws9c{word-spacing:-1.665000px;}
.ws5d{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.575000px;}
.ws44{word-spacing:-1.566000px;}
.ws1c{word-spacing:-1.530000px;}
.ws5b{word-spacing:-1.512000px;}
.ws34{word-spacing:-1.458000px;}
.ws99{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.404000px;}
.ws51{word-spacing:-1.350000px;}
.wsa4{word-spacing:-1.305000px;}
.ws36{word-spacing:-1.296000px;}
.ws76{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.ws45{word-spacing:-1.188000px;}
.ws90{word-spacing:-1.170000px;}
.ws50{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.080000px;}
.ws7b{word-spacing:-1.035000px;}
.ws58{word-spacing:-1.026000px;}
.ws9d{word-spacing:-0.990000px;}
.ws2a{word-spacing:-0.972000px;}
.ws9a{word-spacing:-0.945000px;}
.ws33{word-spacing:-0.918000px;}
.wsa3{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.867000px;}
.ws32{word-spacing:-0.864000px;}
.ws91{word-spacing:-0.855000px;}
.ws53{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.816000px;}
.ws5c{word-spacing:-0.810000px;}
.wsa1{word-spacing:-0.765000px;}
.ws3e{word-spacing:-0.756000px;}
.ws67{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.648000px;}
.wse{word-spacing:-0.594000px;}
.ws7e{word-spacing:-0.585000px;}
.ws2c{word-spacing:-0.540000px;}
.ws7d{word-spacing:-0.495000px;}
.wsf{word-spacing:-0.486000px;}
.ws39{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.459000px;}
.ws7a{word-spacing:-0.450000px;}
.ws35{word-spacing:-0.432000px;}
.ws9b{word-spacing:-0.405000px;}
.ws31{word-spacing:-0.378000px;}
.ws54{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.324000px;}
.ws83{word-spacing:-0.315000px;}
.ws1a{word-spacing:-0.306000px;}
.ws6f{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.270000px;}
.ws18{word-spacing:-0.255000px;}
.ws9f{word-spacing:-0.225000px;}
.wsc{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.204000px;}
.ws70{word-spacing:-0.180000px;}
.ws52{word-spacing:-0.162000px;}
.ws85{word-spacing:-0.135000px;}
.ws75{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.108000px;}
.ws95{word-spacing:-0.090000px;}
.ws4{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.054000px;}
.ws80{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws30{word-spacing:-0.035100px;}
.wsa{word-spacing:0.000000px;}
.ws92{word-spacing:0.045000px;}
.ws1b{word-spacing:0.051000px;}
.ws12{word-spacing:0.054000px;}
.ws63{word-spacing:0.060000px;}
.ws96{word-spacing:0.090000px;}
.ws15{word-spacing:0.102000px;}
.ws78{word-spacing:0.108000px;}
.ws4b{word-spacing:0.162000px;}
.ws86{word-spacing:0.180000px;}
.ws46{word-spacing:0.216000px;}
.ws97{word-spacing:0.225000px;}
.ws6e{word-spacing:0.240000px;}
.ws3d{word-spacing:0.270000px;}
.ws3b{word-spacing:0.324000px;}
.ws8f{word-spacing:0.360000px;}
.ws5e{word-spacing:0.378000px;}
.ws84{word-spacing:0.405000px;}
.ws2d{word-spacing:0.432000px;}
.ws56{word-spacing:0.486000px;}
.ws4e{word-spacing:0.540000px;}
.ws68{word-spacing:0.594000px;}
.ws8e{word-spacing:0.630000px;}
.ws3f{word-spacing:0.648000px;}
.ws59{word-spacing:0.702000px;}
.ws11{word-spacing:0.756000px;}
.ws4c{word-spacing:0.810000px;}
.ws98{word-spacing:0.855000px;}
.ws7f{word-spacing:0.900000px;}
.wsa5{word-spacing:0.918000px;}
.wsa2{word-spacing:0.990000px;}
.wsa0{word-spacing:1.035000px;}
.ws79{word-spacing:1.125000px;}
.ws69{word-spacing:1.188000px;}
.wsa6{word-spacing:1.242000px;}
.wsb{word-spacing:1.260000px;}
.ws6d{word-spacing:1.296000px;}
.ws5a{word-spacing:1.404000px;}
.ws64{word-spacing:1.566000px;}
.ws6c{word-spacing:1.782000px;}
.ws77{word-spacing:1.890000px;}
.ws81{word-spacing:2.070000px;}
.ws82{word-spacing:2.610000px;}
.ws93{word-spacing:2.745000px;}
.ws94{word-spacing:3.060000px;}
.ws5{word-spacing:3.480000px;}
.ws3a{word-spacing:5.184000px;}
._f{margin-left:-12.545400px;}
._c{margin-left:-11.536200px;}
._7{margin-left:-10.482000px;}
._2{margin-left:-8.604000px;}
._11{margin-left:-7.464600px;}
._d{margin-left:-6.447000px;}
._4{margin-left:-5.376000px;}
._3{margin-left:-4.293000px;}
._1{margin-left:-3.276000px;}
._0{margin-left:-1.776000px;}
._6{width:1.662600px;}
._5{width:3.651000px;}
._9{width:5.259600px;}
._a{width:7.038000px;}
._b{width:10.492200px;}
._e{width:11.724600px;}
._10{width:13.399800px;}
._8{width:47.801400px;}
._12{width:48.951000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2c{bottom:68.313900px;}
.y18b{bottom:68.553000px;}
.y151{bottom:68.556000px;}
.y76{bottom:68.560500px;}
.yc0{bottom:68.583000px;}
.y7c{bottom:68.796300px;}
.y119{bottom:68.812800px;}
.yd0{bottom:69.546300px;}
.y21f{bottom:71.343300px;}
.ydb{bottom:81.544800px;}
.y2b{bottom:83.307900px;}
.y18a{bottom:83.551500px;}
.y150{bottom:83.554500px;}
.y75{bottom:83.559000px;}
.ybf{bottom:83.581500px;}
.y1ce{bottom:83.673750px;}
.y7b{bottom:83.794800px;}
.y118{bottom:83.811300px;}
.y21e{bottom:84.089550px;}
.ycf{bottom:84.544800px;}
.y1cd{bottom:96.420000px;}
.yda{bottom:96.543300px;}
.y21d{bottom:96.835800px;}
.y2a{bottom:98.307900px;}
.y189{bottom:98.550000px;}
.y14f{bottom:98.553000px;}
.y74{bottom:98.557500px;}
.ybe{bottom:98.580000px;}
.y7a{bottom:98.797800px;}
.y117{bottom:98.809800px;}
.yce{bottom:99.549300px;}
.y1cc{bottom:109.166250px;}
.y21c{bottom:109.582050px;}
.yd9{bottom:111.543300px;}
.y29{bottom:113.307900px;}
.y14e{bottom:113.551500px;}
.y73{bottom:113.556000px;}
.ybd{bottom:113.578500px;}
.y79{bottom:113.796300px;}
.y116{bottom:113.808300px;}
.ycd{bottom:114.547800px;}
.yc9{bottom:117.910950px;}
.y1cb{bottom:121.912500px;}
.y21b{bottom:122.328300px;}
.y188{bottom:126.093600px;}
.y72{bottom:128.554500px;}
.y14d{bottom:128.575500px;}
.ybc{bottom:128.577000px;}
.y78{bottom:128.794800px;}
.y115{bottom:128.806800px;}
.ycc{bottom:129.546300px;}
.y28{bottom:132.636900px;}
.yc8{bottom:132.909450px;}
.y1ca{bottom:134.658750px;}
.y21a{bottom:135.074550px;}
.y187{bottom:141.092100px;}
.y27{bottom:143.313900px;}
.y71{bottom:143.553000px;}
.y14c{bottom:143.574000px;}
.ybb{bottom:143.575500px;}
.y77{bottom:143.793300px;}
.y114{bottom:143.805300px;}
.ycb{bottom:144.544800px;}
.y1c9{bottom:147.405000px;}
.y219{bottom:147.820800px;}
.yc7{bottom:147.907950px;}
.y186{bottom:156.093600px;}
.y26{bottom:158.307900px;}
.y70{bottom:158.551500px;}
.y14b{bottom:158.572500px;}
.yba{bottom:158.574000px;}
.y113{bottom:158.803800px;}
.yca{bottom:159.543300px;}
.y1c8{bottom:160.151250px;}
.y218{bottom:160.567050px;}
.yc6{bottom:162.906450px;}
.y185{bottom:171.092100px;}
.y1c7{bottom:172.897500px;}
.y25{bottom:173.307900px;}
.y217{bottom:173.313300px;}
.y6f{bottom:173.559000px;}
.y14a{bottom:173.571000px;}
.yb9{bottom:173.572500px;}
.y112{bottom:173.802300px;}
.yc5{bottom:177.904950px;}
.y1c6{bottom:185.643750px;}
.y216{bottom:186.059550px;}
.y184{bottom:186.090600px;}
.y6e{bottom:188.557500px;}
.y149{bottom:188.569500px;}
.yb8{bottom:188.571000px;}
.y111{bottom:188.800800px;}
.y24{bottom:192.636900px;}
.yc4{bottom:192.903450px;}
.y1c5{bottom:198.390000px;}
.y215{bottom:198.805800px;}
.y83{bottom:200.647950px;}
.y6d{bottom:203.556000px;}
.y148{bottom:203.568000px;}
.yb7{bottom:203.569500px;}
.y110{bottom:203.799300px;}
.yc3{bottom:207.901950px;}
.yd8{bottom:209.949450px;}
.y1c4{bottom:211.136250px;}
.y214{bottom:211.552050px;}
.y183{bottom:213.634050px;}
.y82{bottom:215.646450px;}
.y6c{bottom:218.554500px;}
.y147{bottom:218.566500px;}
.yb6{bottom:218.568000px;}
.y10f{bottom:218.797800px;}
.ye0{bottom:220.024950px;}
.yc2{bottom:222.900450px;}
.y1c3{bottom:223.882500px;}
.y213{bottom:224.298300px;}
.yd7{bottom:224.947950px;}
.y182{bottom:228.632550px;}
.y81{bottom:230.644950px;}
.y6b{bottom:233.553000px;}
.y146{bottom:233.565000px;}
.yb5{bottom:233.566500px;}
.y10e{bottom:233.796300px;}
.ydf{bottom:235.023450px;}
.y23{bottom:236.187300px;}
.y1c2{bottom:236.628750px;}
.y212{bottom:237.044550px;}
.yc1{bottom:237.898950px;}
.yd6{bottom:239.946450px;}
.y181{bottom:243.643050px;}
.y80{bottom:245.643450px;}
.y6a{bottom:248.551500px;}
.y145{bottom:248.563500px;}
.yb4{bottom:248.565000px;}
.y10d{bottom:248.794800px;}
.y1c1{bottom:249.375000px;}
.y211{bottom:249.790800px;}
.yde{bottom:250.021950px;}
.y22{bottom:251.185800px;}
.yd5{bottom:254.944950px;}
.y180{bottom:258.641550px;}
.y7f{bottom:260.641950px;}
.y1c0{bottom:262.121250px;}
.y210{bottom:262.537050px;}
.y69{bottom:263.553000px;}
.y144{bottom:263.562000px;}
.yb3{bottom:263.563500px;}
.y10c{bottom:263.805300px;}
.ydd{bottom:265.020450px;}
.y21{bottom:266.185800px;}
.yd4{bottom:269.943450px;}
.y17f{bottom:273.640050px;}
.y1bf{bottom:274.867500px;}
.y20f{bottom:275.283300px;}
.y7e{bottom:275.640450px;}
.y68{bottom:278.551500px;}
.y143{bottom:278.560500px;}
.yb2{bottom:278.562000px;}
.y10b{bottom:278.803800px;}
.ydc{bottom:280.018950px;}
.y20{bottom:281.185800px;}
.yd3{bottom:284.941950px;}
.y1be{bottom:287.613750px;}
.y20e{bottom:288.029550px;}
.y17e{bottom:288.638550px;}
.y7d{bottom:290.638950px;}
.y142{bottom:293.559000px;}
.yb1{bottom:293.560500px;}
.y67{bottom:293.569500px;}
.y10a{bottom:293.802300px;}
.y1f{bottom:296.226300px;}
.yd2{bottom:299.940450px;}
.y1bd{bottom:300.360000px;}
.y20d{bottom:300.775800px;}
.y17d{bottom:303.637050px;}
.y141{bottom:308.557500px;}
.yb0{bottom:308.559000px;}
.y66{bottom:308.568000px;}
.y109{bottom:308.800800px;}
.y1e{bottom:311.224800px;}
.y1bc{bottom:313.106250px;}
.y20c{bottom:313.522050px;}
.yd1{bottom:314.938950px;}
.y17c{bottom:318.635550px;}
.y140{bottom:323.556000px;}
.yaf{bottom:323.557500px;}
.y65{bottom:323.566500px;}
.y108{bottom:323.799300px;}
.y1bb{bottom:325.852500px;}
.y1d{bottom:326.223300px;}
.y20b{bottom:326.268300px;}
.y17b{bottom:333.634050px;}
.y13f{bottom:338.554500px;}
.yae{bottom:338.556000px;}
.y64{bottom:338.565000px;}
.y1ba{bottom:338.598750px;}
.y107{bottom:338.797800px;}
.y20a{bottom:339.014550px;}
.y1c{bottom:341.221800px;}
.y17a{bottom:348.632550px;}
.y1b9{bottom:351.345000px;}
.y209{bottom:351.760800px;}
.y13e{bottom:353.553000px;}
.yad{bottom:353.554500px;}
.y63{bottom:353.563500px;}
.y106{bottom:353.796300px;}
.y1b{bottom:356.220300px;}
.y179{bottom:363.632550px;}
.y1b8{bottom:364.091250px;}
.y208{bottom:364.507050px;}
.y13d{bottom:368.551500px;}
.yac{bottom:368.553000px;}
.y62{bottom:368.562000px;}
.y105{bottom:368.794800px;}
.y1b7{bottom:376.837500px;}
.y207{bottom:377.253300px;}
.y178{bottom:378.631050px;}
.y13c{bottom:383.550000px;}
.yab{bottom:383.551500px;}
.y61{bottom:383.560500px;}
.y104{bottom:383.794800px;}
.y1b6{bottom:389.583750px;}
.y206{bottom:389.999550px;}
.yaa{bottom:398.553000px;}
.y60{bottom:398.559000px;}
.y103{bottom:398.818800px;}
.y1b5{bottom:402.330000px;}
.y205{bottom:402.745800px;}
.y1a{bottom:403.470300px;}
.y177{bottom:406.189650px;}
.ya9{bottom:413.551500px;}
.y5f{bottom:413.557500px;}
.y13b{bottom:413.634150px;}
.y102{bottom:413.817300px;}
.y1b4{bottom:415.076250px;}
.y204{bottom:415.492050px;}
.y19{bottom:419.967300px;}
.y176{bottom:421.188150px;}
.y1b3{bottom:427.822500px;}
.y203{bottom:428.238300px;}
.ya8{bottom:428.551500px;}
.y5e{bottom:428.556000px;}
.y13a{bottom:428.632650px;}
.y101{bottom:428.815800px;}
.y23b{bottom:429.552300px;}
.y175{bottom:436.186650px;}
.y18{bottom:436.464300px;}
.y1b2{bottom:440.568750px;}
.y202{bottom:440.984550px;}
.ya7{bottom:443.550000px;}
.y5d{bottom:443.554500px;}
.y139{bottom:443.635650px;}
.y100{bottom:443.814300px;}
.y23a{bottom:444.550800px;}
.y174{bottom:451.185150px;}
.y17{bottom:452.961300px;}
.y1b1{bottom:453.315000px;}
.y201{bottom:453.730800px;}
.ya6{bottom:458.550000px;}
.y5c{bottom:458.553000px;}
.y138{bottom:458.634150px;}
.yff{bottom:458.812800px;}
.y239{bottom:459.549300px;}
.y1b0{bottom:466.061250px;}
.y173{bottom:466.183650px;}
.y200{bottom:466.477050px;}
.y16{bottom:469.458300px;}
.y5b{bottom:473.551500px;}
.y137{bottom:473.632650px;}
.yfe{bottom:473.811300px;}
.y238{bottom:474.547800px;}
.y1af{bottom:478.807500px;}
.y1ff{bottom:479.223300px;}
.y172{bottom:481.182150px;}
.y15{bottom:485.955300px;}
.y5a{bottom:488.550000px;}
.y136{bottom:488.632650px;}
.ya5{bottom:488.689650px;}
.yfd{bottom:488.809800px;}
.y237{bottom:489.546300px;}
.y1ae{bottom:491.553750px;}
.y1fe{bottom:491.969550px;}
.y171{bottom:496.180650px;}
.y14{bottom:502.452300px;}
.y59{bottom:503.550000px;}
.y135{bottom:503.631150px;}
.ya4{bottom:503.688150px;}
.yfc{bottom:503.808300px;}
.y1ad{bottom:504.300000px;}
.y236{bottom:504.544800px;}
.y1fd{bottom:504.715800px;}
.y170{bottom:511.179150px;}
.y1ac{bottom:517.050000px;}
.y1fc{bottom:517.462050px;}
.ya3{bottom:518.686650px;}
.yfb{bottom:518.806800px;}
.y13{bottom:518.949300px;}
.y235{bottom:519.543300px;}
.y16f{bottom:526.177650px;}
.y1fb{bottom:530.208300px;}
.ya2{bottom:533.685150px;}
.y134{bottom:533.716650px;}
.y58{bottom:533.797800px;}
.yfa{bottom:533.805300px;}
.y12{bottom:535.446300px;}
.y16e{bottom:541.176150px;}
.y234{bottom:541.302300px;}
.y1fa{bottom:542.954550px;}
.y1ab{bottom:544.401600px;}
.ya1{bottom:548.683650px;}
.y133{bottom:548.715150px;}
.y57{bottom:548.796300px;}
.yf9{bottom:548.803800px;}
.y11{bottom:551.943300px;}
.y1f9{bottom:555.700800px;}
.y16d{bottom:556.174650px;}
.y233{bottom:556.300800px;}
.y1aa{bottom:559.400100px;}
.ya0{bottom:563.682150px;}
.y132{bottom:563.713650px;}
.y56{bottom:563.794800px;}
.yf8{bottom:563.802300px;}
.y10{bottom:568.440300px;}
.y1f8{bottom:568.447050px;}
.y16c{bottom:571.173150px;}
.y1a9{bottom:574.398600px;}
.y232{bottom:578.049300px;}
.y9f{bottom:578.680650px;}
.y131{bottom:578.725650px;}
.y55{bottom:578.796300px;}
.yf7{bottom:578.800800px;}
.y1f7{bottom:581.193300px;}
.yf{bottom:584.937300px;}
.y16b{bottom:586.179150px;}
.y231{bottom:593.047800px;}
.y9e{bottom:593.679150px;}
.y130{bottom:593.724150px;}
.y54{bottom:593.794800px;}
.yf6{bottom:593.799300px;}
.y1f6{bottom:593.939550px;}
.y16a{bottom:601.177650px;}
.ye{bottom:601.434300px;}
.y1a8{bottom:601.748850px;}
.y1f5{bottom:606.685800px;}
.y230{bottom:608.046300px;}
.y9d{bottom:608.677650px;}
.y12f{bottom:608.722650px;}
.y53{bottom:608.796300px;}
.yf5{bottom:608.797800px;}
.y169{bottom:616.176150px;}
.y1a7{bottom:616.762350px;}
.y1f4{bottom:619.432050px;}
.y9c{bottom:623.676150px;}
.y12e{bottom:623.721150px;}
.y52{bottom:623.794800px;}
.yf4{bottom:623.796300px;}
.y22f{bottom:629.794800px;}
.y168{bottom:631.174650px;}
.yd{bottom:631.434300px;}
.y1a6{bottom:631.760850px;}
.y1f3{bottom:632.178300px;}
.y9b{bottom:638.674650px;}
.y12d{bottom:638.719650px;}
.yf3{bottom:638.794800px;}
.y51{bottom:638.796300px;}
.y1f2{bottom:644.924550px;}
.y167{bottom:646.173150px;}
.y1a5{bottom:646.759350px;}
.yc{bottom:649.434300px;}
.y22e{bottom:651.543300px;}
.y9a{bottom:653.673150px;}
.y12c{bottom:653.718150px;}
.y50{bottom:653.794800px;}
.yf2{bottom:653.800800px;}
.y1f1{bottom:657.670800px;}
.y166{bottom:661.171650px;}
.y1a4{bottom:661.757850px;}
.y22d{bottom:666.543300px;}
.yb{bottom:667.434300px;}
.y99{bottom:668.674650px;}
.y12b{bottom:668.716650px;}
.y4f{bottom:668.797800px;}
.yf1{bottom:668.799300px;}
.y1f0{bottom:670.417050px;}
.y1a3{bottom:676.756350px;}
.y1ef{bottom:683.163300px;}
.y98{bottom:683.673150px;}
.y12a{bottom:683.715150px;}
.y4e{bottom:683.796300px;}
.yf0{bottom:683.797800px;}
.ya{bottom:685.434300px;}
.y165{bottom:688.722750px;}
.y1a2{bottom:691.754850px;}
.y22c{bottom:693.550800px;}
.y1ee{bottom:695.909550px;}
.y97{bottom:698.680650px;}
.y129{bottom:698.713650px;}
.y4d{bottom:698.794800px;}
.yef{bottom:698.796300px;}
.y9{bottom:703.434300px;}
.y164{bottom:703.721250px;}
.y1a1{bottom:706.753350px;}
.y22b{bottom:708.549300px;}
.y1ed{bottom:708.655800px;}
.y96{bottom:713.679150px;}
.y128{bottom:713.712150px;}
.yee{bottom:713.794800px;}
.y4c{bottom:713.797800px;}
.y163{bottom:718.719750px;}
.y1ec{bottom:721.402050px;}
.y1a0{bottom:721.751850px;}
.y22a{bottom:723.547800px;}
.y95{bottom:728.677650px;}
.y127{bottom:728.712150px;}
.y4b{bottom:728.796300px;}
.y162{bottom:733.718250px;}
.y1eb{bottom:734.148300px;}
.y8{bottom:736.410300px;}
.y19f{bottom:736.750350px;}
.y229{bottom:738.546300px;}
.y94{bottom:743.676150px;}
.y4a{bottom:743.794800px;}
.y1ea{bottom:746.894550px;}
.y161{bottom:748.716750px;}
.y19e{bottom:751.748850px;}
.y228{bottom:753.544800px;}
.y2f{bottom:757.050000px;}
.y93{bottom:758.674650px;}
.y48{bottom:758.794800px;}
.yed{bottom:758.803800px;}
.y126{bottom:758.805300px;}
.y1e9{bottom:759.640800px;}
.y49{bottom:763.383300px;}
.y160{bottom:763.715250px;}
.y19d{bottom:766.747350px;}
.y227{bottom:768.543300px;}
.y1e8{bottom:772.387050px;}
.y92{bottom:773.673150px;}
.y47{bottom:773.796300px;}
.yec{bottom:773.802300px;}
.y125{bottom:773.803800px;}
.y2e{bottom:778.050000px;}
.y15f{bottom:778.713750px;}
.y7{bottom:781.416300px;}
.y226{bottom:783.543300px;}
.y1e7{bottom:785.133300px;}
.y91{bottom:788.671650px;}
.y46{bottom:788.794800px;}
.yeb{bottom:788.800800px;}
.y124{bottom:788.802300px;}
.y15e{bottom:793.712250px;}
.y19c{bottom:794.103450px;}
.y1e6{bottom:797.879550px;}
.y2d{bottom:799.050000px;}
.y90{bottom:803.671650px;}
.y45{bottom:803.797800px;}
.yea{bottom:803.799300px;}
.y123{bottom:803.800800px;}
.y19b{bottom:809.101950px;}
.y225{bottom:810.549300px;}
.y1e5{bottom:810.625800px;}
.y44{bottom:818.796300px;}
.ye9{bottom:818.797800px;}
.y122{bottom:818.799300px;}
.y15d{bottom:821.266200px;}
.y1e4{bottom:823.372050px;}
.y19a{bottom:824.100450px;}
.y224{bottom:825.547800px;}
.y6{bottom:826.422300px;}
.y43{bottom:833.794800px;}
.ye8{bottom:833.796300px;}
.y121{bottom:833.797800px;}
.y8f{bottom:833.803800px;}
.y1e3{bottom:836.118300px;}
.y15c{bottom:836.264700px;}
.y199{bottom:839.098950px;}
.y223{bottom:840.546300px;}
.y42{bottom:848.794800px;}
.y120{bottom:848.796300px;}
.y8e{bottom:848.802300px;}
.y1e2{bottom:848.864550px;}
.y15b{bottom:851.263200px;}
.y198{bottom:854.097450px;}
.y222{bottom:855.544800px;}
.y1e1{bottom:861.610800px;}
.y11f{bottom:863.794800px;}
.y41{bottom:863.796300px;}
.ye7{bottom:863.797800px;}
.y8d{bottom:863.800800px;}
.y15a{bottom:866.261700px;}
.y197{bottom:869.095950px;}
.y221{bottom:870.543300px;}
.y5{bottom:871.428300px;}
.y1e0{bottom:874.357050px;}
.y40{bottom:878.794800px;}
.ye6{bottom:878.796300px;}
.y8c{bottom:878.799300px;}
.y159{bottom:881.260200px;}
.y220{bottom:885.543300px;}
.y1df{bottom:887.103300px;}
.ye5{bottom:893.794800px;}
.y3f{bottom:893.797800px;}
.y158{bottom:896.258700px;}
.y196{bottom:896.456700px;}
.y1de{bottom:899.849550px;}
.y3e{bottom:908.796300px;}
.y157{bottom:911.257200px;}
.y195{bottom:911.455200px;}
.y1dd{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y3d{bottom:923.794800px;}
.y1dc{bottom:925.342050px;}
.y156{bottom:926.255700px;}
.y30{bottom:926.409600px;}
.y194{bottom:926.453700px;}
.y1db{bottom:938.088300px;}
.y8b{bottom:938.794800px;}
.y3c{bottom:938.796300px;}
.y11e{bottom:938.800800px;}
.y155{bottom:941.254200px;}
.y193{bottom:941.452200px;}
.y1da{bottom:950.834550px;}
.y3b{bottom:953.794800px;}
.y8a{bottom:953.796300px;}
.ye4{bottom:953.797800px;}
.y11d{bottom:953.799300px;}
.y154{bottom:956.255700px;}
.y192{bottom:956.450700px;}
.y1d9{bottom:963.580800px;}
.y89{bottom:968.794800px;}
.y3a{bottom:968.796300px;}
.y11c{bottom:968.797800px;}
.y153{bottom:971.254200px;}
.y191{bottom:971.449200px;}
.y1d8{bottom:976.327050px;}
.y39{bottom:983.794800px;}
.y11b{bottom:983.796300px;}
.y88{bottom:983.803800px;}
.y152{bottom:986.252700px;}
.y190{bottom:986.447700px;}
.y1d7{bottom:989.073300px;}
.y11a{bottom:998.794800px;}
.y38{bottom:998.796300px;}
.ye3{bottom:998.797800px;}
.y87{bottom:998.802300px;}
.y18f{bottom:1001.446200px;}
.y1d6{bottom:1001.819550px;}
.y37{bottom:1013.794800px;}
.ye2{bottom:1013.796300px;}
.y86{bottom:1013.800800px;}
.y1d5{bottom:1014.565800px;}
.y18e{bottom:1016.447700px;}
.y1d4{bottom:1027.312050px;}
.ye1{bottom:1028.794800px;}
.y36{bottom:1028.796300px;}
.y85{bottom:1028.799300px;}
.y18d{bottom:1031.446200px;}
.y1d3{bottom:1040.058300px;}
.y35{bottom:1043.794800px;}
.y84{bottom:1043.797800px;}
.y18c{bottom:1046.444700px;}
.y1d2{bottom:1052.804550px;}
.y34{bottom:1058.796300px;}
.y1d1{bottom:1065.550800px;}
.y33{bottom:1073.794800px;}
.y1d0{bottom:1078.297050px;}
.y32{bottom:1088.793300px;}
.y1cf{bottom:1091.043300px;}
.y31{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hb{height:23.842749px;}
.h12{height:25.131600px;}
.h23{height:32.220000px;}
.h24{height:33.255000px;}
.h3{height:34.523438px;}
.hd{height:36.681152px;}
.h8{height:38.664000px;}
.h7{height:38.838867px;}
.h17{height:39.906000px;}
.he{height:41.134749px;}
.hc{height:41.158749px;}
.h2{height:43.154297px;}
.h9{height:43.323600px;}
.h1f{height:43.389000px;}
.h1c{height:43.389600px;}
.h14{height:43.413000px;}
.h22{height:43.431600px;}
.h1e{height:43.437600px;}
.h1d{height:43.443600px;}
.h18{height:43.449600px;}
.h16{height:43.455000px;}
.h19{height:43.455600px;}
.h1b{height:43.461600px;}
.h1a{height:43.467600px;}
.h11{height:43.473600px;}
.h15{height:43.479000px;}
.h10{height:43.479600px;}
.ha{height:43.485600px;}
.h20{height:43.491600px;}
.h4{height:44.233154px;}
.h13{height:47.469727px;}
.h6{height:48.450293px;}
.h21{height:50.724000px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:65.657550px;}
.x8{left:77.141550px;}
.x6{left:100.349550px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xd{left:238.992300px;}
.x5{left:251.461350px;}
.xf{left:300.348750px;}
.xa{left:476.713350px;}
.x3{left:584.586600px;}
.xc{left:816.003600px;}
.xe{left:817.278150px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.626667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.170667pt;}
.v1{vertical-align:18.133333pt;}
.ls36{letter-spacing:-4.272000pt;}
.ls17{letter-spacing:-3.146667pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls49{letter-spacing:-1.104000pt;}
.ls8d{letter-spacing:-1.000000pt;}
.ls8f{letter-spacing:-0.840000pt;}
.ls77{letter-spacing:-0.800000pt;}
.ls88{letter-spacing:-0.760000pt;}
.ls78{letter-spacing:-0.680000pt;}
.ls55{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.624000pt;}
.ls8e{letter-spacing:-0.600000pt;}
.ls48{letter-spacing:-0.576000pt;}
.ls73{letter-spacing:-0.520000pt;}
.ls53{letter-spacing:-0.480000pt;}
.ls8a{letter-spacing:-0.440000pt;}
.ls42{letter-spacing:-0.432000pt;}
.ls75{letter-spacing:-0.400000pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls67{letter-spacing:-0.336000pt;}
.ls54{letter-spacing:-0.312000pt;}
.ls47{letter-spacing:-0.288000pt;}
.ls8c{letter-spacing:-0.280000pt;}
.ls72{letter-spacing:-0.240000pt;}
.ls65{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.200000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls74{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.144000pt;}
.ls34{letter-spacing:-0.124800pt;}
.ls79{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls32{letter-spacing:-0.093600pt;}
.ls87{letter-spacing:-0.080000pt;}
.ls56{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.045333pt;}
.ls76{letter-spacing:-0.040000pt;}
.ls58{letter-spacing:-0.031200pt;}
.ls16{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.012267pt;}
.ls4{letter-spacing:0.020267pt;}
.ls60{letter-spacing:0.028800pt;}
.ls5b{letter-spacing:0.030933pt;}
.ls24{letter-spacing:0.031200pt;}
.ls71{letter-spacing:0.040000pt;}
.ls5c{letter-spacing:0.047467pt;}
.ls23{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.062400pt;}
.ls4e{letter-spacing:0.076800pt;}
.ls85{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.093600pt;}
.ls7{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.103333pt;}
.ls68{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.109200pt;}
.ls89{letter-spacing:0.120000pt;}
.ls3b{letter-spacing:0.123200pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls51{letter-spacing:0.129600pt;}
.ls4d{letter-spacing:0.134400pt;}
.ls5f{letter-spacing:0.141333pt;}
.ls8{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.147600pt;}
.ls61{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.163600pt;}
.ls82{letter-spacing:0.180000pt;}
.lsb{letter-spacing:0.181333pt;}
.ls33{letter-spacing:0.187200pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls7e{letter-spacing:0.200000pt;}
.ls3a{letter-spacing:0.218400pt;}
.ls12{letter-spacing:0.226667pt;}
.ls1d{letter-spacing:0.229867pt;}
.ls5d{letter-spacing:0.230400pt;}
.ls6{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.249600pt;}
.lsd{letter-spacing:0.250533pt;}
.ls22{letter-spacing:0.260267pt;}
.ls5e{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.272000pt;}
.ls59{letter-spacing:0.275733pt;}
.ls6d{letter-spacing:0.280000pt;}
.ls37{letter-spacing:0.280800pt;}
.ls27{letter-spacing:0.288000pt;}
.ls40{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.336000pt;}
.ls44{letter-spacing:0.340800pt;}
.ls4f{letter-spacing:0.345600pt;}
.ls3c{letter-spacing:0.360000pt;}
.ls21{letter-spacing:0.374400pt;}
.ls7f{letter-spacing:0.380000pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls7c{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.408000pt;}
.ls35{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.432000pt;}
.ls57{letter-spacing:0.436800pt;}
.ls6e{letter-spacing:0.440000pt;}
.ls10{letter-spacing:0.462267pt;}
.ls9{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.499200pt;}
.ls4a{letter-spacing:0.508800pt;}
.ls70{letter-spacing:0.520000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls84{letter-spacing:0.560000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls46{letter-spacing:0.580800pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls80{letter-spacing:0.600000pt;}
.ls62{letter-spacing:0.604800pt;}
.ls31{letter-spacing:0.624000pt;}
.ls50{letter-spacing:0.640000pt;}
.ls6a{letter-spacing:0.652800pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls4c{letter-spacing:0.676800pt;}
.ls6c{letter-spacing:0.680000pt;}
.ls1a{letter-spacing:0.720000pt;}
.lsf{letter-spacing:0.725333pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls6b{letter-spacing:0.760000pt;}
.lse{letter-spacing:0.770667pt;}
.ls6f{letter-spacing:0.776000pt;}
.ls7a{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.853333pt;}
.ls52{letter-spacing:0.864000pt;}
.ls7b{letter-spacing:0.880000pt;}
.ls5a{letter-spacing:0.912000pt;}
.ls43{letter-spacing:0.960000pt;}
.ls83{letter-spacing:0.976000pt;}
.ls4b{letter-spacing:1.008000pt;}
.ls86{letter-spacing:1.080000pt;}
.ls64{letter-spacing:1.104000pt;}
.ls69{letter-spacing:1.120000pt;}
.ls91{letter-spacing:1.268000pt;}
.ls7d{letter-spacing:1.360000pt;}
.ls81{letter-spacing:1.400000pt;}
.ls90{letter-spacing:1.680000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls92{letter-spacing:4.106667pt;}
.ls63{letter-spacing:5.440000pt;}
.ls39{letter-spacing:12.912000pt;}
.ls41{letter-spacing:13.104000pt;}
.ws6a{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws27{word-spacing:-12.085333pt;}
.ws4a{word-spacing:-11.472000pt;}
.ws72{word-spacing:-11.424000pt;}
.ws57{word-spacing:-11.088000pt;}
.ws66{word-spacing:-11.040000pt;}
.ws42{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws65{word-spacing:-10.944000pt;}
.ws7{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws47{word-spacing:-10.704000pt;}
.ws29{word-spacing:-10.608000pt;}
.ws41{word-spacing:-10.416000pt;}
.ws71{word-spacing:-10.320000pt;}
.ws87{word-spacing:-9.520000pt;}
.ws8b{word-spacing:-9.080000pt;}
.ws8a{word-spacing:-9.060000pt;}
.ws88{word-spacing:-9.040000pt;}
.ws8d{word-spacing:-8.860000pt;}
.ws73{word-spacing:-8.760000pt;}
.ws74{word-spacing:-8.640000pt;}
.ws89{word-spacing:-8.480000pt;}
.ws8c{word-spacing:-8.400000pt;}
.ws60{word-spacing:-7.519200pt;}
.ws1f{word-spacing:-7.456800pt;}
.ws28{word-spacing:-7.363200pt;}
.ws21{word-spacing:-7.332000pt;}
.ws40{word-spacing:-7.300800pt;}
.ws24{word-spacing:-7.269600pt;}
.ws1e{word-spacing:-7.207200pt;}
.ws23{word-spacing:-7.191600pt;}
.ws20{word-spacing:-7.176000pt;}
.ws48{word-spacing:-7.144800pt;}
.ws49{word-spacing:-7.113600pt;}
.ws8{word-spacing:-7.082400pt;}
.ws61{word-spacing:-7.051200pt;}
.ws22{word-spacing:-6.988800pt;}
.ws26{word-spacing:-6.957600pt;}
.ws5f{word-spacing:-6.770400pt;}
.ws9{word-spacing:-5.893333pt;}
.ws6b{word-spacing:-5.440000pt;}
.ws9e{word-spacing:-4.106667pt;}
.ws19{word-spacing:-3.354667pt;}
.ws1d{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws38{word-spacing:-1.680000pt;}
.wsd{word-spacing:-1.632000pt;}
.ws37{word-spacing:-1.584000pt;}
.ws55{word-spacing:-1.536000pt;}
.ws43{word-spacing:-1.488000pt;}
.ws9c{word-spacing:-1.480000pt;}
.ws5d{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.400000pt;}
.ws44{word-spacing:-1.392000pt;}
.ws1c{word-spacing:-1.360000pt;}
.ws5b{word-spacing:-1.344000pt;}
.ws34{word-spacing:-1.296000pt;}
.ws99{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.248000pt;}
.ws51{word-spacing:-1.200000pt;}
.wsa4{word-spacing:-1.160000pt;}
.ws36{word-spacing:-1.152000pt;}
.ws76{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws45{word-spacing:-1.056000pt;}
.ws90{word-spacing:-1.040000pt;}
.ws50{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.920000pt;}
.ws58{word-spacing:-0.912000pt;}
.ws9d{word-spacing:-0.880000pt;}
.ws2a{word-spacing:-0.864000pt;}
.ws9a{word-spacing:-0.840000pt;}
.ws33{word-spacing:-0.816000pt;}
.wsa3{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.770667pt;}
.ws32{word-spacing:-0.768000pt;}
.ws91{word-spacing:-0.760000pt;}
.ws53{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.725333pt;}
.ws5c{word-spacing:-0.720000pt;}
.wsa1{word-spacing:-0.680000pt;}
.ws3e{word-spacing:-0.672000pt;}
.ws67{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.528000pt;}
.ws7e{word-spacing:-0.520000pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws7d{word-spacing:-0.440000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws39{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.408000pt;}
.ws7a{word-spacing:-0.400000pt;}
.ws35{word-spacing:-0.384000pt;}
.ws9b{word-spacing:-0.360000pt;}
.ws31{word-spacing:-0.336000pt;}
.ws54{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.288000pt;}
.ws83{word-spacing:-0.280000pt;}
.ws1a{word-spacing:-0.272000pt;}
.ws6f{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.240000pt;}
.ws18{word-spacing:-0.226667pt;}
.ws9f{word-spacing:-0.200000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.181333pt;}
.ws70{word-spacing:-0.160000pt;}
.ws52{word-spacing:-0.144000pt;}
.ws85{word-spacing:-0.120000pt;}
.ws75{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.096000pt;}
.ws95{word-spacing:-0.080000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.048000pt;}
.ws80{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws30{word-spacing:-0.031200pt;}
.wsa{word-spacing:0.000000pt;}
.ws92{word-spacing:0.040000pt;}
.ws1b{word-spacing:0.045333pt;}
.ws12{word-spacing:0.048000pt;}
.ws63{word-spacing:0.053333pt;}
.ws96{word-spacing:0.080000pt;}
.ws15{word-spacing:0.090667pt;}
.ws78{word-spacing:0.096000pt;}
.ws4b{word-spacing:0.144000pt;}
.ws86{word-spacing:0.160000pt;}
.ws46{word-spacing:0.192000pt;}
.ws97{word-spacing:0.200000pt;}
.ws6e{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.240000pt;}
.ws3b{word-spacing:0.288000pt;}
.ws8f{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.336000pt;}
.ws84{word-spacing:0.360000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws56{word-spacing:0.432000pt;}
.ws4e{word-spacing:0.480000pt;}
.ws68{word-spacing:0.528000pt;}
.ws8e{word-spacing:0.560000pt;}
.ws3f{word-spacing:0.576000pt;}
.ws59{word-spacing:0.624000pt;}
.ws11{word-spacing:0.672000pt;}
.ws4c{word-spacing:0.720000pt;}
.ws98{word-spacing:0.760000pt;}
.ws7f{word-spacing:0.800000pt;}
.wsa5{word-spacing:0.816000pt;}
.wsa2{word-spacing:0.880000pt;}
.wsa0{word-spacing:0.920000pt;}
.ws79{word-spacing:1.000000pt;}
.ws69{word-spacing:1.056000pt;}
.wsa6{word-spacing:1.104000pt;}
.wsb{word-spacing:1.120000pt;}
.ws6d{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.248000pt;}
.ws64{word-spacing:1.392000pt;}
.ws6c{word-spacing:1.584000pt;}
.ws77{word-spacing:1.680000pt;}
.ws81{word-spacing:1.840000pt;}
.ws82{word-spacing:2.320000pt;}
.ws93{word-spacing:2.440000pt;}
.ws94{word-spacing:2.720000pt;}
.ws5{word-spacing:3.093333pt;}
.ws3a{word-spacing:4.608000pt;}
._f{margin-left:-11.151467pt;}
._c{margin-left:-10.254400pt;}
._7{margin-left:-9.317333pt;}
._2{margin-left:-7.648000pt;}
._11{margin-left:-6.635200pt;}
._d{margin-left:-5.730667pt;}
._4{margin-left:-4.778667pt;}
._3{margin-left:-3.816000pt;}
._1{margin-left:-2.912000pt;}
._0{margin-left:-1.578667pt;}
._6{width:1.477867pt;}
._5{width:3.245333pt;}
._9{width:4.675200pt;}
._a{width:6.256000pt;}
._b{width:9.326400pt;}
._e{width:10.421867pt;}
._10{width:11.910933pt;}
._8{width:42.490133pt;}
._12{width:43.512000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2c{bottom:60.723467pt;}
.y18b{bottom:60.936000pt;}
.y151{bottom:60.938667pt;}
.y76{bottom:60.942667pt;}
.yc0{bottom:60.962667pt;}
.y7c{bottom:61.152267pt;}
.y119{bottom:61.166933pt;}
.yd0{bottom:61.818933pt;}
.y21f{bottom:63.416267pt;}
.ydb{bottom:72.484267pt;}
.y2b{bottom:74.051467pt;}
.y18a{bottom:74.268000pt;}
.y150{bottom:74.270667pt;}
.y75{bottom:74.274667pt;}
.ybf{bottom:74.294667pt;}
.y1ce{bottom:74.376667pt;}
.y7b{bottom:74.484267pt;}
.y118{bottom:74.498933pt;}
.y21e{bottom:74.746267pt;}
.ycf{bottom:75.150933pt;}
.y1cd{bottom:85.706667pt;}
.yda{bottom:85.816267pt;}
.y21d{bottom:86.076267pt;}
.y2a{bottom:87.384800pt;}
.y189{bottom:87.600000pt;}
.y14f{bottom:87.602667pt;}
.y74{bottom:87.606667pt;}
.ybe{bottom:87.626667pt;}
.y7a{bottom:87.820267pt;}
.y117{bottom:87.830933pt;}
.yce{bottom:88.488267pt;}
.y1cc{bottom:97.036667pt;}
.y21c{bottom:97.406267pt;}
.yd9{bottom:99.149600pt;}
.y29{bottom:100.718133pt;}
.y14e{bottom:100.934667pt;}
.y73{bottom:100.938667pt;}
.ybd{bottom:100.958667pt;}
.y79{bottom:101.152267pt;}
.y116{bottom:101.162933pt;}
.ycd{bottom:101.820267pt;}
.yc9{bottom:104.809733pt;}
.y1cb{bottom:108.366667pt;}
.y21b{bottom:108.736267pt;}
.y188{bottom:112.083200pt;}
.y72{bottom:114.270667pt;}
.y14d{bottom:114.289333pt;}
.ybc{bottom:114.290667pt;}
.y78{bottom:114.484267pt;}
.y115{bottom:114.494933pt;}
.ycc{bottom:115.152267pt;}
.y28{bottom:117.899467pt;}
.yc8{bottom:118.141733pt;}
.y1ca{bottom:119.696667pt;}
.y21a{bottom:120.066267pt;}
.y187{bottom:125.415200pt;}
.y27{bottom:127.390133pt;}
.y71{bottom:127.602667pt;}
.y14c{bottom:127.621333pt;}
.ybb{bottom:127.622667pt;}
.y77{bottom:127.816267pt;}
.y114{bottom:127.826933pt;}
.ycb{bottom:128.484267pt;}
.y1c9{bottom:131.026667pt;}
.y219{bottom:131.396267pt;}
.yc7{bottom:131.473733pt;}
.y186{bottom:138.749867pt;}
.y26{bottom:140.718133pt;}
.y70{bottom:140.934667pt;}
.y14b{bottom:140.953333pt;}
.yba{bottom:140.954667pt;}
.y113{bottom:141.158933pt;}
.yca{bottom:141.816267pt;}
.y1c8{bottom:142.356667pt;}
.y218{bottom:142.726267pt;}
.yc6{bottom:144.805733pt;}
.y185{bottom:152.081867pt;}
.y1c7{bottom:153.686667pt;}
.y25{bottom:154.051467pt;}
.y217{bottom:154.056267pt;}
.y6f{bottom:154.274667pt;}
.y14a{bottom:154.285333pt;}
.yb9{bottom:154.286667pt;}
.y112{bottom:154.490933pt;}
.yc5{bottom:158.137733pt;}
.y1c6{bottom:165.016667pt;}
.y216{bottom:165.386267pt;}
.y184{bottom:165.413867pt;}
.y6e{bottom:167.606667pt;}
.y149{bottom:167.617333pt;}
.yb8{bottom:167.618667pt;}
.y111{bottom:167.822933pt;}
.y24{bottom:171.232800pt;}
.yc4{bottom:171.469733pt;}
.y1c5{bottom:176.346667pt;}
.y215{bottom:176.716267pt;}
.y83{bottom:178.353733pt;}
.y6d{bottom:180.938667pt;}
.y148{bottom:180.949333pt;}
.yb7{bottom:180.950667pt;}
.y110{bottom:181.154933pt;}
.yc3{bottom:184.801733pt;}
.yd8{bottom:186.621733pt;}
.y1c4{bottom:187.676667pt;}
.y214{bottom:188.046267pt;}
.y183{bottom:189.896933pt;}
.y82{bottom:191.685733pt;}
.y6c{bottom:194.270667pt;}
.y147{bottom:194.281333pt;}
.yb6{bottom:194.282667pt;}
.y10f{bottom:194.486933pt;}
.ye0{bottom:195.577733pt;}
.yc2{bottom:198.133733pt;}
.y1c3{bottom:199.006667pt;}
.y213{bottom:199.376267pt;}
.yd7{bottom:199.953733pt;}
.y182{bottom:203.228933pt;}
.y81{bottom:205.017733pt;}
.y6b{bottom:207.602667pt;}
.y146{bottom:207.613333pt;}
.yb5{bottom:207.614667pt;}
.y10e{bottom:207.818933pt;}
.ydf{bottom:208.909733pt;}
.y23{bottom:209.944267pt;}
.y1c2{bottom:210.336667pt;}
.y212{bottom:210.706267pt;}
.yc1{bottom:211.465733pt;}
.yd6{bottom:213.285733pt;}
.y181{bottom:216.571600pt;}
.y80{bottom:218.349733pt;}
.y6a{bottom:220.934667pt;}
.y145{bottom:220.945333pt;}
.yb4{bottom:220.946667pt;}
.y10d{bottom:221.150933pt;}
.y1c1{bottom:221.666667pt;}
.y211{bottom:222.036267pt;}
.yde{bottom:222.241733pt;}
.y22{bottom:223.276267pt;}
.yd5{bottom:226.617733pt;}
.y180{bottom:229.903600pt;}
.y7f{bottom:231.681733pt;}
.y1c0{bottom:232.996667pt;}
.y210{bottom:233.366267pt;}
.y69{bottom:234.269333pt;}
.y144{bottom:234.277333pt;}
.yb3{bottom:234.278667pt;}
.y10c{bottom:234.493600pt;}
.ydd{bottom:235.573733pt;}
.y21{bottom:236.609600pt;}
.yd4{bottom:239.949733pt;}
.y17f{bottom:243.235600pt;}
.y1bf{bottom:244.326667pt;}
.y20f{bottom:244.696267pt;}
.y7e{bottom:245.013733pt;}
.y68{bottom:247.601333pt;}
.y143{bottom:247.609333pt;}
.yb2{bottom:247.610667pt;}
.y10b{bottom:247.825600pt;}
.ydc{bottom:248.905733pt;}
.y20{bottom:249.942933pt;}
.yd3{bottom:253.281733pt;}
.y1be{bottom:255.656667pt;}
.y20e{bottom:256.026267pt;}
.y17e{bottom:256.567600pt;}
.y7d{bottom:258.345733pt;}
.y142{bottom:260.941333pt;}
.yb1{bottom:260.942667pt;}
.y67{bottom:260.950667pt;}
.y10a{bottom:261.157600pt;}
.y1f{bottom:263.312267pt;}
.yd2{bottom:266.613733pt;}
.y1bd{bottom:266.986667pt;}
.y20d{bottom:267.356267pt;}
.y17d{bottom:269.899600pt;}
.y141{bottom:274.273333pt;}
.yb0{bottom:274.274667pt;}
.y66{bottom:274.282667pt;}
.y109{bottom:274.489600pt;}
.y1e{bottom:276.644267pt;}
.y1bc{bottom:278.316667pt;}
.y20c{bottom:278.686267pt;}
.yd1{bottom:279.945733pt;}
.y17c{bottom:283.231600pt;}
.y140{bottom:287.605333pt;}
.yaf{bottom:287.606667pt;}
.y65{bottom:287.614667pt;}
.y108{bottom:287.821600pt;}
.y1bb{bottom:289.646667pt;}
.y1d{bottom:289.976267pt;}
.y20b{bottom:290.016267pt;}
.y17b{bottom:296.563600pt;}
.y13f{bottom:300.937333pt;}
.yae{bottom:300.938667pt;}
.y64{bottom:300.946667pt;}
.y1ba{bottom:300.976667pt;}
.y107{bottom:301.153600pt;}
.y20a{bottom:301.346267pt;}
.y1c{bottom:303.308267pt;}
.y17a{bottom:309.895600pt;}
.y1b9{bottom:312.306667pt;}
.y209{bottom:312.676267pt;}
.y13e{bottom:314.269333pt;}
.yad{bottom:314.270667pt;}
.y63{bottom:314.278667pt;}
.y106{bottom:314.485600pt;}
.y1b{bottom:316.640267pt;}
.y179{bottom:323.228933pt;}
.y1b8{bottom:323.636667pt;}
.y208{bottom:324.006267pt;}
.y13d{bottom:327.601333pt;}
.yac{bottom:327.602667pt;}
.y62{bottom:327.610667pt;}
.y105{bottom:327.817600pt;}
.y1b7{bottom:334.966667pt;}
.y207{bottom:335.336267pt;}
.y178{bottom:336.560933pt;}
.y13c{bottom:340.933333pt;}
.yab{bottom:340.934667pt;}
.y61{bottom:340.942667pt;}
.y104{bottom:341.150933pt;}
.y1b6{bottom:346.296667pt;}
.y206{bottom:346.666267pt;}
.yaa{bottom:354.269333pt;}
.y60{bottom:354.274667pt;}
.y103{bottom:354.505600pt;}
.y1b5{bottom:357.626667pt;}
.y205{bottom:357.996267pt;}
.y1a{bottom:358.640267pt;}
.y177{bottom:361.057467pt;}
.ya9{bottom:367.601333pt;}
.y5f{bottom:367.606667pt;}
.y13b{bottom:367.674800pt;}
.y102{bottom:367.837600pt;}
.y1b4{bottom:368.956667pt;}
.y204{bottom:369.326267pt;}
.y19{bottom:373.304267pt;}
.y176{bottom:374.389467pt;}
.y1b3{bottom:380.286667pt;}
.y203{bottom:380.656267pt;}
.ya8{bottom:380.934667pt;}
.y5e{bottom:380.938667pt;}
.y13a{bottom:381.006800pt;}
.y101{bottom:381.169600pt;}
.y23b{bottom:381.824267pt;}
.y175{bottom:387.721467pt;}
.y18{bottom:387.968267pt;}
.y1b2{bottom:391.616667pt;}
.y202{bottom:391.986267pt;}
.ya7{bottom:394.266667pt;}
.y5d{bottom:394.270667pt;}
.y139{bottom:394.342800pt;}
.y100{bottom:394.501600pt;}
.y23a{bottom:395.156267pt;}
.y174{bottom:401.053467pt;}
.y17{bottom:402.632267pt;}
.y1b1{bottom:402.946667pt;}
.y201{bottom:403.316267pt;}
.ya6{bottom:407.600000pt;}
.y5c{bottom:407.602667pt;}
.y138{bottom:407.674800pt;}
.yff{bottom:407.833600pt;}
.y239{bottom:408.488267pt;}
.y1b0{bottom:414.276667pt;}
.y173{bottom:414.385467pt;}
.y200{bottom:414.646267pt;}
.y16{bottom:417.296267pt;}
.y5b{bottom:420.934667pt;}
.y137{bottom:421.006800pt;}
.yfe{bottom:421.165600pt;}
.y238{bottom:421.820267pt;}
.y1af{bottom:425.606667pt;}
.y1ff{bottom:425.976267pt;}
.y172{bottom:427.717467pt;}
.y15{bottom:431.960267pt;}
.y5a{bottom:434.266667pt;}
.y136{bottom:434.340133pt;}
.ya5{bottom:434.390800pt;}
.yfd{bottom:434.497600pt;}
.y237{bottom:435.152267pt;}
.y1ae{bottom:436.936667pt;}
.y1fe{bottom:437.306267pt;}
.y171{bottom:441.049467pt;}
.y14{bottom:446.624267pt;}
.y59{bottom:447.600000pt;}
.y135{bottom:447.672133pt;}
.ya4{bottom:447.722800pt;}
.yfc{bottom:447.829600pt;}
.y1ad{bottom:448.266667pt;}
.y236{bottom:448.484267pt;}
.y1fd{bottom:448.636267pt;}
.y170{bottom:454.381467pt;}
.y1ac{bottom:459.600000pt;}
.y1fc{bottom:459.966267pt;}
.ya3{bottom:461.054800pt;}
.yfb{bottom:461.161600pt;}
.y13{bottom:461.288267pt;}
.y235{bottom:461.816267pt;}
.y16f{bottom:467.713467pt;}
.y1fb{bottom:471.296267pt;}
.ya2{bottom:474.386800pt;}
.y134{bottom:474.414800pt;}
.y58{bottom:474.486933pt;}
.yfa{bottom:474.493600pt;}
.y12{bottom:475.952267pt;}
.y16e{bottom:481.045467pt;}
.y234{bottom:481.157600pt;}
.y1fa{bottom:482.626267pt;}
.y1ab{bottom:483.912533pt;}
.ya1{bottom:487.718800pt;}
.y133{bottom:487.746800pt;}
.y57{bottom:487.818933pt;}
.yf9{bottom:487.825600pt;}
.y11{bottom:490.616267pt;}
.y1f9{bottom:493.956267pt;}
.y16d{bottom:494.377467pt;}
.y233{bottom:494.489600pt;}
.y1aa{bottom:497.244533pt;}
.ya0{bottom:501.050800pt;}
.y132{bottom:501.078800pt;}
.y56{bottom:501.150933pt;}
.yf8{bottom:501.157600pt;}
.y10{bottom:505.280267pt;}
.y1f8{bottom:505.286267pt;}
.y16c{bottom:507.709467pt;}
.y1a9{bottom:510.576533pt;}
.y232{bottom:513.821600pt;}
.y9f{bottom:514.382800pt;}
.y131{bottom:514.422800pt;}
.y55{bottom:514.485600pt;}
.yf7{bottom:514.489600pt;}
.y1f7{bottom:516.616267pt;}
.yf{bottom:519.944267pt;}
.y16b{bottom:521.048133pt;}
.y231{bottom:527.153600pt;}
.y9e{bottom:527.714800pt;}
.y130{bottom:527.754800pt;}
.y54{bottom:527.817600pt;}
.yf6{bottom:527.821600pt;}
.y1f6{bottom:527.946267pt;}
.y16a{bottom:534.380133pt;}
.ye{bottom:534.608267pt;}
.y1a8{bottom:534.887867pt;}
.y1f5{bottom:539.276267pt;}
.y230{bottom:540.485600pt;}
.y9d{bottom:541.046800pt;}
.y12f{bottom:541.086800pt;}
.y53{bottom:541.152267pt;}
.yf5{bottom:541.153600pt;}
.y169{bottom:547.712133pt;}
.y1a7{bottom:548.233200pt;}
.y1f4{bottom:550.606267pt;}
.y9c{bottom:554.378800pt;}
.y12e{bottom:554.418800pt;}
.y52{bottom:554.484267pt;}
.yf4{bottom:554.485600pt;}
.y22f{bottom:559.817600pt;}
.y168{bottom:561.044133pt;}
.yd{bottom:561.274933pt;}
.y1a6{bottom:561.565200pt;}
.y1f3{bottom:561.936267pt;}
.y9b{bottom:567.710800pt;}
.y12d{bottom:567.750800pt;}
.yf3{bottom:567.817600pt;}
.y51{bottom:567.818933pt;}
.y1f2{bottom:573.266267pt;}
.y167{bottom:574.376133pt;}
.y1a5{bottom:574.897200pt;}
.yc{bottom:577.274933pt;}
.y22e{bottom:579.149600pt;}
.y9a{bottom:581.042800pt;}
.y12c{bottom:581.082800pt;}
.y50{bottom:581.150933pt;}
.yf2{bottom:581.156267pt;}
.y1f1{bottom:584.596267pt;}
.y166{bottom:587.708133pt;}
.y1a4{bottom:588.229200pt;}
.y22d{bottom:592.482933pt;}
.yb{bottom:593.274933pt;}
.y99{bottom:594.377467pt;}
.y12b{bottom:594.414800pt;}
.y4f{bottom:594.486933pt;}
.yf1{bottom:594.488267pt;}
.y1f0{bottom:595.926267pt;}
.y1a3{bottom:601.561200pt;}
.y1ef{bottom:607.256267pt;}
.y98{bottom:607.709467pt;}
.y12a{bottom:607.746800pt;}
.y4e{bottom:607.818933pt;}
.yf0{bottom:607.820267pt;}
.ya{bottom:609.274933pt;}
.y165{bottom:612.198000pt;}
.y1a2{bottom:614.893200pt;}
.y22c{bottom:616.489600pt;}
.y1ee{bottom:618.586267pt;}
.y97{bottom:621.049467pt;}
.y129{bottom:621.078800pt;}
.y4d{bottom:621.150933pt;}
.yef{bottom:621.152267pt;}
.y9{bottom:625.274933pt;}
.y164{bottom:625.530000pt;}
.y1a1{bottom:628.225200pt;}
.y22b{bottom:629.821600pt;}
.y1ed{bottom:629.916267pt;}
.y96{bottom:634.381467pt;}
.y128{bottom:634.410800pt;}
.yee{bottom:634.484267pt;}
.y4c{bottom:634.486933pt;}
.y163{bottom:638.862000pt;}
.y1ec{bottom:641.246267pt;}
.y1a0{bottom:641.557200pt;}
.y22a{bottom:643.153600pt;}
.y95{bottom:647.713467pt;}
.y127{bottom:647.744133pt;}
.y4b{bottom:647.818933pt;}
.y162{bottom:652.194000pt;}
.y1eb{bottom:652.576267pt;}
.y8{bottom:654.586933pt;}
.y19f{bottom:654.889200pt;}
.y229{bottom:656.485600pt;}
.y94{bottom:661.045467pt;}
.y4a{bottom:661.150933pt;}
.y1ea{bottom:663.906267pt;}
.y161{bottom:665.526000pt;}
.y19e{bottom:668.221200pt;}
.y228{bottom:669.817600pt;}
.y2f{bottom:672.933333pt;}
.y93{bottom:674.377467pt;}
.y48{bottom:674.484267pt;}
.yed{bottom:674.492267pt;}
.y126{bottom:674.493600pt;}
.y1e9{bottom:675.236267pt;}
.y49{bottom:678.562933pt;}
.y160{bottom:678.858000pt;}
.y19d{bottom:681.553200pt;}
.y227{bottom:683.149600pt;}
.y1e8{bottom:686.566267pt;}
.y92{bottom:687.709467pt;}
.y47{bottom:687.818933pt;}
.yec{bottom:687.824267pt;}
.y125{bottom:687.825600pt;}
.y2e{bottom:691.600000pt;}
.y15f{bottom:692.190000pt;}
.y7{bottom:694.592267pt;}
.y226{bottom:696.482933pt;}
.y1e7{bottom:697.896267pt;}
.y91{bottom:701.041467pt;}
.y46{bottom:701.150933pt;}
.yeb{bottom:701.156267pt;}
.y124{bottom:701.157600pt;}
.y15e{bottom:705.522000pt;}
.y19c{bottom:705.869733pt;}
.y1e6{bottom:709.226267pt;}
.y2d{bottom:710.266667pt;}
.y90{bottom:714.374800pt;}
.y45{bottom:714.486933pt;}
.yea{bottom:714.488267pt;}
.y123{bottom:714.489600pt;}
.y19b{bottom:719.201733pt;}
.y225{bottom:720.488267pt;}
.y1e5{bottom:720.556267pt;}
.y44{bottom:727.818933pt;}
.ye9{bottom:727.820267pt;}
.y122{bottom:727.821600pt;}
.y15d{bottom:730.014400pt;}
.y1e4{bottom:731.886267pt;}
.y19a{bottom:732.533733pt;}
.y224{bottom:733.820267pt;}
.y6{bottom:734.597600pt;}
.y43{bottom:741.150933pt;}
.ye8{bottom:741.152267pt;}
.y121{bottom:741.153600pt;}
.y8f{bottom:741.158933pt;}
.y1e3{bottom:743.216267pt;}
.y15c{bottom:743.346400pt;}
.y199{bottom:745.865733pt;}
.y223{bottom:747.152267pt;}
.y42{bottom:754.484267pt;}
.y120{bottom:754.485600pt;}
.y8e{bottom:754.490933pt;}
.y1e2{bottom:754.546267pt;}
.y15b{bottom:756.678400pt;}
.y198{bottom:759.197733pt;}
.y222{bottom:760.484267pt;}
.y1e1{bottom:765.876267pt;}
.y11f{bottom:767.817600pt;}
.y41{bottom:767.818933pt;}
.ye7{bottom:767.820267pt;}
.y8d{bottom:767.822933pt;}
.y15a{bottom:770.010400pt;}
.y197{bottom:772.529733pt;}
.y221{bottom:773.816267pt;}
.y5{bottom:774.602933pt;}
.y1e0{bottom:777.206267pt;}
.y40{bottom:781.150933pt;}
.ye6{bottom:781.152267pt;}
.y8c{bottom:781.154933pt;}
.y159{bottom:783.342400pt;}
.y220{bottom:787.149600pt;}
.y1df{bottom:788.536267pt;}
.ye5{bottom:794.484267pt;}
.y3f{bottom:794.486933pt;}
.y158{bottom:796.674400pt;}
.y196{bottom:796.850400pt;}
.y1de{bottom:799.866267pt;}
.y3e{bottom:807.818933pt;}
.y157{bottom:810.006400pt;}
.y195{bottom:810.182400pt;}
.y1dd{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y3d{bottom:821.150933pt;}
.y1dc{bottom:822.526267pt;}
.y156{bottom:823.338400pt;}
.y30{bottom:823.475200pt;}
.y194{bottom:823.514400pt;}
.y1db{bottom:833.856267pt;}
.y8b{bottom:834.484267pt;}
.y3c{bottom:834.485600pt;}
.y11e{bottom:834.489600pt;}
.y155{bottom:836.670400pt;}
.y193{bottom:836.846400pt;}
.y1da{bottom:845.186267pt;}
.y3b{bottom:847.817600pt;}
.y8a{bottom:847.818933pt;}
.ye4{bottom:847.820267pt;}
.y11d{bottom:847.821600pt;}
.y154{bottom:850.005067pt;}
.y192{bottom:850.178400pt;}
.y1d9{bottom:856.516267pt;}
.y89{bottom:861.150933pt;}
.y3a{bottom:861.152267pt;}
.y11c{bottom:861.153600pt;}
.y153{bottom:863.337067pt;}
.y191{bottom:863.510400pt;}
.y1d8{bottom:867.846267pt;}
.y39{bottom:874.484267pt;}
.y11b{bottom:874.485600pt;}
.y88{bottom:874.492267pt;}
.y152{bottom:876.669067pt;}
.y190{bottom:876.842400pt;}
.y1d7{bottom:879.176267pt;}
.y11a{bottom:887.817600pt;}
.y38{bottom:887.818933pt;}
.ye3{bottom:887.820267pt;}
.y87{bottom:887.824267pt;}
.y18f{bottom:890.174400pt;}
.y1d6{bottom:890.506267pt;}
.y37{bottom:901.150933pt;}
.ye2{bottom:901.152267pt;}
.y86{bottom:901.156267pt;}
.y1d5{bottom:901.836267pt;}
.y18e{bottom:903.509067pt;}
.y1d4{bottom:913.166267pt;}
.ye1{bottom:914.484267pt;}
.y36{bottom:914.485600pt;}
.y85{bottom:914.488267pt;}
.y18d{bottom:916.841067pt;}
.y1d3{bottom:924.496267pt;}
.y35{bottom:927.817600pt;}
.y84{bottom:927.820267pt;}
.y18c{bottom:930.173067pt;}
.y1d2{bottom:935.826267pt;}
.y34{bottom:941.152267pt;}
.y1d1{bottom:947.156267pt;}
.y33{bottom:954.484267pt;}
.y1d0{bottom:958.486267pt;}
.y32{bottom:967.816267pt;}
.y1cf{bottom:969.816267pt;}
.y31{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hb{height:21.193555pt;}
.h12{height:22.339200pt;}
.h23{height:28.640000pt;}
.h24{height:29.560000pt;}
.h3{height:30.687500pt;}
.hd{height:32.605469pt;}
.h8{height:34.368000pt;}
.h7{height:34.523438pt;}
.h17{height:35.472000pt;}
.he{height:36.564221pt;}
.hc{height:36.585555pt;}
.h2{height:38.359375pt;}
.h9{height:38.509867pt;}
.h1f{height:38.568000pt;}
.h1c{height:38.568533pt;}
.h14{height:38.589333pt;}
.h22{height:38.605867pt;}
.h1e{height:38.611200pt;}
.h1d{height:38.616533pt;}
.h18{height:38.621867pt;}
.h16{height:38.626667pt;}
.h19{height:38.627200pt;}
.h1b{height:38.632533pt;}
.h1a{height:38.637867pt;}
.h11{height:38.643200pt;}
.h15{height:38.648000pt;}
.h10{height:38.648533pt;}
.ha{height:38.653867pt;}
.h20{height:38.659200pt;}
.h4{height:39.318359pt;}
.h13{height:42.195312pt;}
.h6{height:43.066927pt;}
.h21{height:45.088000pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:58.362267pt;}
.x8{left:68.570267pt;}
.x6{left:89.199600pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xd{left:212.437600pt;}
.x5{left:223.521200pt;}
.xf{left:266.976667pt;}
.xa{left:423.745200pt;}
.x3{left:519.632533pt;}
.xc{left:725.336533pt;}
.xe{left:726.469467pt;}
.xb{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; }
  