
    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_b23a7f0a493d8ae224466f1d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa78319225065c3b5f84af6e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_04b989a94e89fb4bd5071232.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_492f9f74b81651fc8ddb8a09.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f237f68eaf4d1bf6a967b24.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_30ce07e1feb8990bc5a4289e.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_c09a30cf2c1ea3cffc78a546.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d4823153c03f427311734e49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_ac31d1727fe41787874d6819.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_db341347fc7cf6417bcc9c17.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;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_742dccb6d1cac0471ca10e18.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;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_f2367fda13cb3eb4930fb5cd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.268000;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_9c58097766261ab9e14b6fec.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.384000;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_e525e0f69bcdfa7333d45677.woff2')format("woff");}.fff{font-family:fff;line-height:1.225182;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_c9e2dfb236bce7079fdd1b6a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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);}
.v1{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v6{vertical-align:-10.817937px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.173969px;}
.v2{vertical-align:20.399963px;}
.ls6b{letter-spacing:-5.184000px;}
.ls7f{letter-spacing:-4.266000px;}
.ls95{letter-spacing:-4.212000px;}
.ls43{letter-spacing:-4.158000px;}
.ls87{letter-spacing:-4.104000px;}
.ls73{letter-spacing:-4.050000px;}
.ls6f{letter-spacing:-3.888000px;}
.ls46{letter-spacing:-3.780000px;}
.ls7b{letter-spacing:-3.672000px;}
.ls88{letter-spacing:-3.618000px;}
.ls86{letter-spacing:-3.564000px;}
.ls7c{letter-spacing:-3.456000px;}
.ls94{letter-spacing:-3.024000px;}
.lsb0{letter-spacing:-3.015000px;}
.ls45{letter-spacing:-2.970000px;}
.ls77{letter-spacing:-2.916000px;}
.lsbe{letter-spacing:-2.790000px;}
.ls79{letter-spacing:-2.322000px;}
.ls1b{letter-spacing:-1.836000px;}
.lsaf{letter-spacing:-1.755000px;}
.ls72{letter-spacing:-1.566000px;}
.ls93{letter-spacing:-1.512000px;}
.ls85{letter-spacing:-1.458000px;}
.ls81{letter-spacing:-1.404000px;}
.lsbf{letter-spacing:-1.305000px;}
.ls7d{letter-spacing:-1.296000px;}
.ls8c{letter-spacing:-1.242000px;}
.ls7e{letter-spacing:-1.188000px;}
.ls7a{letter-spacing:-1.134000px;}
.lsa6{letter-spacing:-1.035000px;}
.ls82{letter-spacing:-0.972000px;}
.ls71{letter-spacing:-0.918000px;}
.lsab{letter-spacing:-0.855000px;}
.ls8b{letter-spacing:-0.810000px;}
.lsa4{letter-spacing:-0.765000px;}
.ls8d{letter-spacing:-0.756000px;}
.lsb1{letter-spacing:-0.720000px;}
.ls6e{letter-spacing:-0.702000px;}
.ls67{letter-spacing:-0.648000px;}
.lsa3{letter-spacing:-0.630000px;}
.ls59{letter-spacing:-0.594000px;}
.lsaa{letter-spacing:-0.585000px;}
.ls76{letter-spacing:-0.540000px;}
.ls9f{letter-spacing:-0.495000px;}
.ls44{letter-spacing:-0.486000px;}
.lsa1{letter-spacing:-0.450000px;}
.ls80{letter-spacing:-0.432000px;}
.lsbd{letter-spacing:-0.405000px;}
.ls3f{letter-spacing:-0.378000px;}
.lsa5{letter-spacing:-0.360000px;}
.ls74{letter-spacing:-0.324000px;}
.ls9c{letter-spacing:-0.315000px;}
.ls84{letter-spacing:-0.300000px;}
.ls70{letter-spacing:-0.270000px;}
.ls9e{letter-spacing:-0.225000px;}
.ls4e{letter-spacing:-0.216000px;}
.ls58{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.162000px;}
.lsa2{letter-spacing:-0.135000px;}
.ls6a{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.108000px;}
.ls68{letter-spacing:-0.105300px;}
.lsa9{letter-spacing:-0.090000px;}
.ls4b{letter-spacing:-0.070200px;}
.ls20{letter-spacing:-0.054000px;}
.lsa8{letter-spacing:-0.045000px;}
.ls78{letter-spacing:-0.035100px;}
.ls1a{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.006168px;}
.ls3{letter-spacing:0.013040px;}
.ls7{letter-spacing:0.013132px;}
.ls2{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013772px;}
.ls6{letter-spacing:0.013864px;}
.ls5{letter-spacing:0.013956px;}
.ls63{letter-spacing:0.022746px;}
.ls64{letter-spacing:0.023295px;}
.ls4f{letter-spacing:0.028190px;}
.ls49{letter-spacing:0.035100px;}
.ls97{letter-spacing:0.045000px;}
.lsb{letter-spacing:0.048973px;}
.ls2b{letter-spacing:0.053999px;}
.ls1f{letter-spacing:0.054000px;}
.ls56{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.070200px;}
.lsa7{letter-spacing:0.090000px;}
.ls66{letter-spacing:0.105300px;}
.ls5f{letter-spacing:0.107998px;}
.lse{letter-spacing:0.108000px;}
.lsb8{letter-spacing:0.108005px;}
.ls57{letter-spacing:0.120000px;}
.lsb7{letter-spacing:0.130559px;}
.ls16{letter-spacing:0.133088px;}
.ls98{letter-spacing:0.135000px;}
.ls40{letter-spacing:0.140400px;}
.ls52{letter-spacing:0.162000px;}
.ls3b{letter-spacing:0.173485px;}
.ls39{letter-spacing:0.174034px;}
.ls75{letter-spacing:0.175500px;}
.ls29{letter-spacing:0.175501px;}
.ls62{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.189000px;}
.ls65{letter-spacing:0.189606px;}
.ls15{letter-spacing:0.204000px;}
.ls3e{letter-spacing:0.210600px;}
.ls33{letter-spacing:0.216000px;}
.ls90{letter-spacing:0.223756px;}
.ls9d{letter-spacing:0.225000px;}
.ls27{letter-spacing:0.239348px;}
.ls4d{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.245699px;}
.ls9{letter-spacing:0.245700px;}
.ls9a{letter-spacing:0.260952px;}
.ls3a{letter-spacing:0.267652px;}
.ls21{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.273643px;}
.lsc{letter-spacing:0.280800px;}
.lsbb{letter-spacing:0.292500px;}
.lsd{letter-spacing:0.295692px;}
.lsa{letter-spacing:0.296990px;}
.ls89{letter-spacing:0.298350px;}
.lsad{letter-spacing:0.315000px;}
.ls10{letter-spacing:0.315461px;}
.ls41{letter-spacing:0.315900px;}
.ls50{letter-spacing:0.323999px;}
.ls24{letter-spacing:0.324000px;}
.ls8f{letter-spacing:0.327032px;}
.lsb9{letter-spacing:0.337500px;}
.ls61{letter-spacing:0.350998px;}
.ls23{letter-spacing:0.351000px;}
.ls36{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.395351px;}
.ls19{letter-spacing:0.400056px;}
.ls18{letter-spacing:0.401337px;}
.lsb6{letter-spacing:0.405000px;}
.ls5d{letter-spacing:0.415791px;}
.ls35{letter-spacing:0.419996px;}
.ls8e{letter-spacing:0.421188px;}
.ls31{letter-spacing:0.421201px;}
.ls60{letter-spacing:0.431994px;}
.ls1e{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.446368px;}
.ls47{letter-spacing:0.456300px;}
.ls5e{letter-spacing:0.459021px;}
.ls69{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.486000px;}
.ls2e{letter-spacing:0.491400px;}
.ls11{letter-spacing:0.510000px;}
.ls91{letter-spacing:0.517182px;}
.ls92{letter-spacing:0.517274px;}
.ls3d{letter-spacing:0.526500px;}
.ls38{letter-spacing:0.529224px;}
.lsf{letter-spacing:0.529747px;}
.ls1d{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.551850px;}
.ls37{letter-spacing:0.556121px;}
.ls12{letter-spacing:0.571076px;}
.ls99{letter-spacing:0.585000px;}
.ls5c{letter-spacing:0.593998px;}
.ls30{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.612000px;}
.lsb5{letter-spacing:0.630000px;}
.ls28{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.702000px;}
.ls4c{letter-spacing:0.720000px;}
.ls6d{letter-spacing:0.756000px;}
.lsa0{letter-spacing:0.765000px;}
.ls2d{letter-spacing:0.780000px;}
.ls2c{letter-spacing:0.810000px;}
.ls5b{letter-spacing:0.840000px;}
.ls3c{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.867000px;}
.ls25{letter-spacing:0.918000px;}
.ls55{letter-spacing:0.960000px;}
.ls54{letter-spacing:0.972000px;}
.lsac{letter-spacing:1.035000px;}
.lsba{letter-spacing:1.057500px;}
.lsb2{letter-spacing:1.170000px;}
.ls9b{letter-spacing:1.215000px;}
.ls5a{letter-spacing:1.242000px;}
.lsb4{letter-spacing:1.350000px;}
.lsae{letter-spacing:1.395000px;}
.ls53{letter-spacing:1.458000px;}
.lsb3{letter-spacing:1.485000px;}
.ls96{letter-spacing:1.890000px;}
.ls0{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls83{letter-spacing:3.060000px;}
.lsbc{letter-spacing:4.620000px;}
.ls8a{letter-spacing:6.120000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.067500px;}
.ws21{word-spacing:-14.700000px;}
.ws48{word-spacing:-13.824000px;}
.ws64{word-spacing:-13.596000px;}
.ws63{word-spacing:-13.500000px;}
.ws90{word-spacing:-13.176000px;}
.ws8f{word-spacing:-13.122000px;}
.ws8d{word-spacing:-13.068000px;}
.ws25{word-spacing:-13.014000px;}
.ws67{word-spacing:-12.960000px;}
.ws49{word-spacing:-12.906000px;}
.ws77{word-spacing:-12.852000px;}
.ws75{word-spacing:-12.798000px;}
.ws98{word-spacing:-12.744000px;}
.ws74{word-spacing:-12.636000px;}
.ws91{word-spacing:-12.582000px;}
.ws69{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws86{word-spacing:-12.474000px;}
.ws7b{word-spacing:-12.447000px;}
.ws4a{word-spacing:-12.420000px;}
.ws65{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws5d{word-spacing:-12.312000px;}
.ws2d{word-spacing:-12.258000px;}
.ws68{word-spacing:-12.204000px;}
.ws66{word-spacing:-12.150000px;}
.ws2e{word-spacing:-12.096000px;}
.ws5f{word-spacing:-12.042000px;}
.ws9b{word-spacing:-11.934000px;}
.ws29{word-spacing:-11.880000px;}
.ws96{word-spacing:-11.826000px;}
.wsa9{word-spacing:-11.772000px;}
.wse3{word-spacing:-11.718000px;}
.ws73{word-spacing:-11.664000px;}
.wsa2{word-spacing:-11.556000px;}
.ws78{word-spacing:-11.448000px;}
.ws8e{word-spacing:-11.394000px;}
.ws80{word-spacing:-11.232000px;}
.ws8a{word-spacing:-11.178000px;}
.ws89{word-spacing:-11.070000px;}
.ws8c{word-spacing:-10.962000px;}
.ws99{word-spacing:-10.908000px;}
.wsa8{word-spacing:-10.854000px;}
.ws79{word-spacing:-10.800000px;}
.wsad{word-spacing:-10.485000px;}
.wsae{word-spacing:-10.305000px;}
.wsc1{word-spacing:-10.260000px;}
.wsde{word-spacing:-10.215000px;}
.wse2{word-spacing:-10.057500px;}
.ws7f{word-spacing:-10.044000px;}
.wse6{word-spacing:-10.035000px;}
.wsac{word-spacing:-9.990000px;}
.wsb0{word-spacing:-9.855000px;}
.wsd4{word-spacing:-9.810000px;}
.wsb2{word-spacing:-9.765000px;}
.wsaf{word-spacing:-9.675000px;}
.wsc4{word-spacing:-9.630000px;}
.wsb3{word-spacing:-9.585000px;}
.ws7d{word-spacing:-9.450000px;}
.ws2a{word-spacing:-9.396000px;}
.wsaa{word-spacing:-9.342000px;}
.ws4{word-spacing:-9.288000px;}
.wsb1{word-spacing:-9.270000px;}
.wse1{word-spacing:-9.000000px;}
.ws88{word-spacing:-8.910000px;}
.ws9a{word-spacing:-8.802000px;}
.ws9d{word-spacing:-8.748000px;}
.ws87{word-spacing:-8.694000px;}
.ws2b{word-spacing:-8.586000px;}
.ws22{word-spacing:-8.494200px;}
.ws76{word-spacing:-8.478000px;}
.ws2c{word-spacing:-8.424000px;}
.ws26{word-spacing:-8.388900px;}
.ws8{word-spacing:-8.318700px;}
.ws7a{word-spacing:-8.316000px;}
.ws27{word-spacing:-8.283600px;}
.ws9c{word-spacing:-8.262000px;}
.ws60{word-spacing:-8.248500px;}
.ws61{word-spacing:-8.213400px;}
.ws28{word-spacing:-8.208000px;}
.ws23{word-spacing:-8.178300px;}
.wsab{word-spacing:-8.154000px;}
.ws7c{word-spacing:-8.143200px;}
.ws24{word-spacing:-8.108100px;}
.ws8b{word-spacing:-8.100000px;}
.ws5e{word-spacing:-8.073000px;}
.ws7{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws2f{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws7e{word-spacing:-7.932600px;}
.ws30{word-spacing:-7.897500px;}
.ws62{word-spacing:-7.862400px;}
.wsa3{word-spacing:-6.120000px;}
.ws6a{word-spacing:-5.508000px;}
.ws6c{word-spacing:-5.400000px;}
.wse4{word-spacing:-4.620000px;}
.wsc{word-spacing:-3.840000px;}
.wsb{word-spacing:-3.276000px;}
.ws9f{word-spacing:-3.060000px;}
.wsa1{word-spacing:-1.944000px;}
.ws93{word-spacing:-1.890000px;}
.ws4c{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.836000px;}
.wsf{word-spacing:-1.782000px;}
.ws97{word-spacing:-1.728000px;}
.ws82{word-spacing:-1.674000px;}
.ws43{word-spacing:-1.620000px;}
.ws6b{word-spacing:-1.566000px;}
.wsc5{word-spacing:-1.530000px;}
.ws40{word-spacing:-1.512000px;}
.wsd1{word-spacing:-1.485000px;}
.ws4d{word-spacing:-1.458000px;}
.ws9e{word-spacing:-1.404000px;}
.ws3e{word-spacing:-1.386000px;}
.ws85{word-spacing:-1.350000px;}
.wsd7{word-spacing:-1.305000px;}
.ws47{word-spacing:-1.296000px;}
.wsb5{word-spacing:-1.275000px;}
.ws3b{word-spacing:-1.242000px;}
.wscb{word-spacing:-1.215000px;}
.ws84{word-spacing:-1.188000px;}
.wsce{word-spacing:-1.170000px;}
.wsd{word-spacing:-1.134000px;}
.ws83{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.035000px;}
.wsa6{word-spacing:-1.026000px;}
.ws1b{word-spacing:-1.020000px;}
.wsd0{word-spacing:-0.990000px;}
.ws5c{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.960000px;}
.wsc0{word-spacing:-0.945000px;}
.ws1c{word-spacing:-0.918000px;}
.wsbd{word-spacing:-0.900000px;}
.ws1e{word-spacing:-0.867000px;}
.ws92{word-spacing:-0.864000px;}
.ws4b{word-spacing:-0.810000px;}
.ws3f{word-spacing:-0.780000px;}
.wsca{word-spacing:-0.765000px;}
.ws4e{word-spacing:-0.756000px;}
.ws4f{word-spacing:-0.720000px;}
.ws39{word-spacing:-0.702000px;}
.wscd{word-spacing:-0.675000px;}
.ws71{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.648000px;}
.wsd3{word-spacing:-0.630000px;}
.ws20{word-spacing:-0.612000px;}
.ws5a{word-spacing:-0.600000px;}
.ws11{word-spacing:-0.594000px;}
.wsda{word-spacing:-0.585000px;}
.ws15{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.510000px;}
.wsba{word-spacing:-0.495000px;}
.ws19{word-spacing:-0.486000px;}
.wsb7{word-spacing:-0.450000px;}
.ws36{word-spacing:-0.432000px;}
.wsbe{word-spacing:-0.405000px;}
.ws41{word-spacing:-0.378000px;}
.wscf{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.324000px;}
.wsa7{word-spacing:-0.315900px;}
.wsc8{word-spacing:-0.315000px;}
.ws46{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.210600px;}
.ws1f{word-spacing:-0.204000px;}
.ws6d{word-spacing:-0.180000px;}
.ws3a{word-spacing:-0.162000px;}
.wsd2{word-spacing:-0.135000px;}
.ws5b{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.108000px;}
.wse5{word-spacing:-0.090000px;}
.ws70{word-spacing:-0.060000px;}
.ws31{word-spacing:-0.054000px;}
.wsdd{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.wsb8{word-spacing:0.045000px;}
.ws17{word-spacing:0.054000px;}
.wsa4{word-spacing:0.070200px;}
.wsbf{word-spacing:0.090000px;}
.wsa5{word-spacing:0.105300px;}
.ws12{word-spacing:0.108000px;}
.ws6e{word-spacing:0.120000px;}
.wsbb{word-spacing:0.135000px;}
.ws58{word-spacing:0.162000px;}
.ws57{word-spacing:0.216000px;}
.wse7{word-spacing:0.225000px;}
.ws44{word-spacing:0.270000px;}
.wsa0{word-spacing:0.300000px;}
.wsd6{word-spacing:0.315000px;}
.ws38{word-spacing:0.324000px;}
.wse0{word-spacing:0.360000px;}
.ws35{word-spacing:0.378000px;}
.wsc3{word-spacing:0.405000px;}
.ws3d{word-spacing:0.432000px;}
.wse9{word-spacing:0.450000px;}
.ws42{word-spacing:0.480000px;}
.wse{word-spacing:0.486000px;}
.wscc{word-spacing:0.495000px;}
.ws50{word-spacing:0.540000px;}
.wsdb{word-spacing:0.585000px;}
.ws81{word-spacing:0.594000px;}
.ws18{word-spacing:0.648000px;}
.ws34{word-spacing:0.702000px;}
.ws33{word-spacing:0.756000px;}
.wsbc{word-spacing:0.765000px;}
.ws55{word-spacing:0.780000px;}
.ws56{word-spacing:0.810000px;}
.wsdf{word-spacing:0.855000px;}
.ws3c{word-spacing:0.864000px;}
.wsb9{word-spacing:0.900000px;}
.ws32{word-spacing:0.918000px;}
.wsc2{word-spacing:0.945000px;}
.ws6f{word-spacing:0.972000px;}
.wsdc{word-spacing:1.035000px;}
.ws94{word-spacing:1.080000px;}
.ws59{word-spacing:1.134000px;}
.ws1d{word-spacing:1.173000px;}
.wsea{word-spacing:1.188000px;}
.ws54{word-spacing:1.242000px;}
.wsc6{word-spacing:1.485000px;}
.wse8{word-spacing:1.755000px;}
.wsd8{word-spacing:1.800000px;}
.ws51{word-spacing:1.944000px;}
.wsc7{word-spacing:2.025000px;}
.wsc9{word-spacing:2.385000px;}
.ws52{word-spacing:2.430000px;}
.wsd9{word-spacing:2.610000px;}
.wsd5{word-spacing:2.655000px;}
.wsb4{word-spacing:3.510000px;}
.ws72{word-spacing:5.184000px;}
.ws95{word-spacing:14.742000px;}
._18{margin-left:-13.455000px;}
._17{margin-left:-12.195000px;}
._19{margin-left:-10.890000px;}
._14{margin-left:-9.540000px;}
._7{margin-left:-7.815628px;}
._4{margin-left:-6.016174px;}
._b{margin-left:-4.985955px;}
._3{margin-left:-3.853118px;}
._5{margin-left:-2.781569px;}
._0{margin-left:-1.776017px;}
._6{width:1.057817px;}
._1{width:2.519992px;}
._d{width:3.539329px;}
._8{width:4.542037px;}
._12{width:6.504017px;}
._13{width:7.560000px;}
._f{width:9.072000px;}
._10{width:10.122001px;}
._16{width:11.136018px;}
._11{width:12.960000px;}
._e{width:15.281992px;}
._15{width:17.460001px;}
._2{width:43.046954px;}
._a{width:47.596014px;}
._9{width:48.885007px;}
._c{width:50.384831px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{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;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y32{bottom:68.307899px;}
.y74{bottom:68.551502px;}
.ye9{bottom:68.555999px;}
.yaf{bottom:68.562002px;}
.y236{bottom:68.816260px;}
.y142{bottom:69.385970px;}
.y1c1{bottom:69.549152px;}
.y15d{bottom:76.863160px;}
.y235{bottom:81.562510px;}
.y101{bottom:83.191499px;}
.y191{bottom:83.552997px;}
.ye8{bottom:83.554498px;}
.y73{bottom:83.559000px;}
.yae{bottom:83.560501px;}
.y141{bottom:84.384469px;}
.y1e8{bottom:84.546298px;}
.y1c0{bottom:84.549146px;}
.y279{bottom:84.556804px;}
.y31{bottom:87.636898px;}
.y15c{bottom:91.861659px;}
.y234{bottom:94.308761px;}
.y100{bottom:98.191499px;}
.y30{bottom:98.307899px;}
.y190{bottom:98.551496px;}
.ye7{bottom:98.552997px;}
.y72{bottom:98.557499px;}
.yad{bottom:98.559000px;}
.y140{bottom:99.382968px;}
.y1e7{bottom:99.544798px;}
.y1bf{bottom:99.550647px;}
.y278{bottom:99.555303px;}
.y127{bottom:105.589691px;}
.y15b{bottom:106.860159px;}
.y233{bottom:107.055011px;}
.yff{bottom:113.218503px;}
.y2f{bottom:113.307899px;}
.ye6{bottom:113.551496px;}
.y71{bottom:113.555999px;}
.yac{bottom:113.557499px;}
.y18f{bottom:113.566504px;}
.y13f{bottom:114.381468px;}
.y1e6{bottom:114.543297px;}
.y1be{bottom:114.549146px;}
.y277{bottom:114.553802px;}
.y232{bottom:119.801261px;}
.y126{bottom:120.588190px;}
.y15a{bottom:121.858658px;}
.yfe{bottom:128.217002px;}
.y2e{bottom:128.307899px;}
.y70{bottom:128.554498px;}
.yab{bottom:128.555999px;}
.ye5{bottom:128.557499px;}
.y18e{bottom:128.565004px;}
.y13e{bottom:129.379967px;}
.y276{bottom:129.552302px;}
.y1bd{bottom:129.556650px;}
.y231{bottom:132.547511px;}
.y125{bottom:135.586690px;}
.y159{bottom:136.857157px;}
.yfd{bottom:143.215501px;}
.y2d{bottom:143.307899px;}
.y6f{bottom:143.552997px;}
.yaa{bottom:143.554498px;}
.ye4{bottom:143.555999px;}
.y18d{bottom:143.563503px;}
.y13d{bottom:144.378466px;}
.y275{bottom:144.550801px;}
.y1bc{bottom:144.555150px;}
.y230{bottom:145.293761px;}
.y1e5{bottom:147.562807px;}
.y124{bottom:150.585189px;}
.y158{bottom:151.855656px;}
.y22f{bottom:158.040011px;}
.yfc{bottom:158.214000px;}
.y6e{bottom:158.551496px;}
.ya9{bottom:158.552997px;}
.ye3{bottom:158.554498px;}
.y18c{bottom:158.562002px;}
.y13c{bottom:159.376965px;}
.y274{bottom:159.549300px;}
.y1bb{bottom:159.553649px;}
.y1e4{bottom:162.561307px;}
.y2c{bottom:162.636898px;}
.y123{bottom:165.583688px;}
.y157{bottom:166.854155px;}
.y22e{bottom:170.786261px;}
.yfb{bottom:173.212499px;}
.y6d{bottom:173.549995px;}
.ya8{bottom:173.551496px;}
.ye2{bottom:173.552997px;}
.y18b{bottom:173.560501px;}
.y13b{bottom:174.375464px;}
.y273{bottom:174.547799px;}
.y1ba{bottom:174.552148px;}
.y1e3{bottom:177.559806px;}
.y122{bottom:180.582187px;}
.y156{bottom:181.852655px;}
.y22d{bottom:183.532511px;}
.yfa{bottom:188.210999px;}
.ya7{bottom:188.549995px;}
.ye1{bottom:188.551496px;}
.y18a{bottom:188.559000px;}
.y13a{bottom:189.373963px;}
.y272{bottom:189.546298px;}
.y1b9{bottom:189.550647px;}
.y1e2{bottom:192.558305px;}
.y121{bottom:195.580686px;}
.y22c{bottom:196.278761px;}
.y155{bottom:196.851154px;}
.y6c{bottom:201.096595px;}
.yf9{bottom:203.209498px;}
.y189{bottom:203.557499px;}
.ye0{bottom:203.560501px;}
.y139{bottom:204.372463px;}
.y271{bottom:204.544798px;}
.y1b8{bottom:204.549146px;}
.y2b{bottom:204.685812px;}
.y1e1{bottom:207.556804px;}
.y22b{bottom:209.025012px;}
.y120{bottom:210.579185px;}
.y154{bottom:211.849653px;}
.y6b{bottom:216.095094px;}
.ya6{bottom:216.913356px;}
.yf8{bottom:218.207997px;}
.y188{bottom:218.555999px;}
.ydf{bottom:218.559000px;}
.y138{bottom:219.370962px;}
.y270{bottom:219.543297px;}
.y1b7{bottom:219.550647px;}
.y2a{bottom:219.685812px;}
.y22a{bottom:221.771262px;}
.y1e0{bottom:222.555303px;}
.y11f{bottom:225.577685px;}
.y153{bottom:226.848152px;}
.y6a{bottom:231.093593px;}
.ya5{bottom:231.911855px;}
.yf7{bottom:233.206496px;}
.y187{bottom:233.554498px;}
.yde{bottom:233.557499px;}
.y137{bottom:234.369461px;}
.y229{bottom:234.517512px;}
.y1b6{bottom:234.549146px;}
.y29{bottom:234.685812px;}
.y1df{bottom:237.553802px;}
.y11e{bottom:240.576184px;}
.y26f{bottom:241.299300px;}
.y152{bottom:241.846651px;}
.y69{bottom:246.092092px;}
.ya4{bottom:246.910355px;}
.y228{bottom:247.263762px;}
.yf6{bottom:248.204995px;}
.y186{bottom:248.552997px;}
.ydd{bottom:248.555999px;}
.y136{bottom:249.367960px;}
.y1b5{bottom:249.555150px;}
.y28{bottom:249.687313px;}
.y1de{bottom:252.552302px;}
.y11d{bottom:255.574683px;}
.y26e{bottom:256.297799px;}
.y151{bottom:256.845151px;}
.y227{bottom:260.010012px;}
.y68{bottom:261.090591px;}
.yf5{bottom:263.203494px;}
.y185{bottom:263.551496px;}
.ydc{bottom:263.554498px;}
.y135{bottom:264.366459px;}
.y1b4{bottom:264.553649px;}
.y27{bottom:264.685812px;}
.y1dd{bottom:267.550801px;}
.y11c{bottom:270.573182px;}
.y150{bottom:271.843650px;}
.y226{bottom:272.756262px;}
.ya3{bottom:275.272192px;}
.y26d{bottom:278.046298px;}
.yf4{bottom:278.201994px;}
.y184{bottom:278.549995px;}
.ydb{bottom:278.552997px;}
.y134{bottom:279.364959px;}
.y1b3{bottom:279.552148px;}
.y26{bottom:279.685812px;}
.y1dc{bottom:282.549300px;}
.y225{bottom:285.502512px;}
.y11b{bottom:285.571681px;}
.y14f{bottom:286.842149px;}
.y67{bottom:288.634052px;}
.ya2{bottom:290.270691px;}
.yf3{bottom:293.200493px;}
.y183{bottom:293.549995px;}
.yda{bottom:293.551496px;}
.y133{bottom:294.363458px;}
.y1b2{bottom:294.550647px;}
.y25{bottom:294.685812px;}
.y1db{bottom:297.547799px;}
.y224{bottom:298.248762px;}
.y26c{bottom:299.794798px;}
.y11a{bottom:300.570181px;}
.y14e{bottom:301.840648px;}
.y66{bottom:303.632551px;}
.yf2{bottom:308.198992px;}
.yd9{bottom:308.549995px;}
.y132{bottom:309.361957px;}
.y1b1{bottom:309.549146px;}
.y24{bottom:309.730815px;}
.y223{bottom:310.995012px;}
.y1da{bottom:312.546298px;}
.y119{bottom:315.568680px;}
.y14d{bottom:316.839147px;}
.y65{bottom:318.631050px;}
.ya1{bottom:318.640032px;}
.y182{bottom:321.063155px;}
.y26b{bottom:321.543297px;}
.yf1{bottom:323.197491px;}
.y222{bottom:323.741263px;}
.y131{bottom:324.360456px;}
.y1b0{bottom:324.549146px;}
.y23{bottom:324.729314px;}
.y1d9{bottom:327.544798px;}
.y118{bottom:330.567179px;}
.y14c{bottom:331.837646px;}
.ya0{bottom:333.638531px;}
.y181{bottom:336.061654px;}
.y221{bottom:336.487513px;}
.y26a{bottom:336.543297px;}
.yf0{bottom:338.195990px;}
.yd8{bottom:338.631775px;}
.y130{bottom:339.358955px;}
.y1af{bottom:339.555172px;}
.y22{bottom:339.727813px;}
.y1d8{bottom:342.543297px;}
.y117{bottom:345.565678px;}
.y64{bottom:346.176149px;}
.y9f{bottom:348.637030px;}
.y220{bottom:349.233763px;}
.y180{bottom:351.060153px;}
.yef{bottom:353.194490px;}
.yd7{bottom:353.630274px;}
.y1ae{bottom:354.553672px;}
.y21{bottom:354.726313px;}
.y1d7{bottom:357.543297px;}
.y116{bottom:360.564177px;}
.y63{bottom:361.174648px;}
.y21f{bottom:361.980013px;}
.y9e{bottom:363.635530px;}
.y17f{bottom:366.058653px;}
.yee{bottom:368.192989px;}
.yd6{bottom:368.628773px;}
.y1ad{bottom:369.552171px;}
.y20{bottom:369.724812px;}
.y269{bottom:370.293297px;}
.y21e{bottom:374.726263px;}
.y115{bottom:375.562677px;}
.y62{bottom:376.173147px;}
.y9d{bottom:378.634029px;}
.y17e{bottom:381.057152px;}
.y16b{bottom:381.858454px;}
.yed{bottom:383.191488px;}
.yd5{bottom:383.627272px;}
.y1ac{bottom:384.550670px;}
.y1f{bottom:384.723311px;}
.y268{bottom:385.293320px;}
.y21d{bottom:387.472513px;}
.y1d6{bottom:390.546321px;}
.y114{bottom:390.561176px;}
.y61{bottom:391.176149px;}
.y14b{bottom:391.870939px;}
.y9c{bottom:393.632528px;}
.y17d{bottom:396.055651px;}
.y16a{bottom:396.856953px;}
.yec{bottom:398.189987px;}
.yd4{bottom:398.625772px;}
.y1ab{bottom:399.549169px;}
.y21c{bottom:400.218763px;}
.y1d5{bottom:405.544821px;}
.y113{bottom:405.559675px;}
.y60{bottom:406.174648px;}
.y14a{bottom:406.869438px;}
.y9b{bottom:408.631027px;}
.y17c{bottom:411.054150px;}
.y169{bottom:411.855452px;}
.y267{bottom:412.299323px;}
.y21b{bottom:412.965013px;}
.yd3{bottom:413.624271px;}
.y1aa{bottom:414.556673px;}
.y1d4{bottom:420.546321px;}
.y112{bottom:420.558174px;}
.y5f{bottom:421.173147px;}
.y149{bottom:421.867937px;}
.y21a{bottom:425.711263px;}
.y17b{bottom:426.052649px;}
.y168{bottom:426.853952px;}
.y266{bottom:427.297822px;}
.yeb{bottom:428.434789px;}
.yd2{bottom:428.622770px;}
.y1a9{bottom:429.555172px;}
.y1e{bottom:431.973311px;}
.y1d3{bottom:435.544821px;}
.y111{bottom:435.556673px;}
.y5e{bottom:436.171646px;}
.y148{bottom:436.866437px;}
.y9a{bottom:436.997413px;}
.y219{bottom:438.457514px;}
.y17a{bottom:441.051149px;}
.y167{bottom:441.852451px;}
.y265{bottom:442.296321px;}
.yea{bottom:443.433289px;}
.yd1{bottom:443.621269px;}
.y1a8{bottom:444.553672px;}
.y1d{bottom:448.470311px;}
.y1d2{bottom:450.547822px;}
.y110{bottom:450.555172px;}
.y218{bottom:451.203764px;}
.y147{bottom:451.864936px;}
.y99{bottom:451.995912px;}
.y179{bottom:456.049648px;}
.y166{bottom:456.850950px;}
.y264{bottom:457.294821px;}
.yd0{bottom:458.619768px;}
.y1a7{bottom:459.552171px;}
.y5d{bottom:463.713583px;}
.y217{bottom:463.950014px;}
.y1c{bottom:464.967311px;}
.y1d1{bottom:465.546321px;}
.y10f{bottom:465.553672px;}
.y146{bottom:466.863435px;}
.y98{bottom:466.994411px;}
.y178{bottom:471.048147px;}
.y165{bottom:471.849449px;}
.y263{bottom:472.293320px;}
.ycf{bottom:473.618268px;}
.y1a6{bottom:474.550670px;}
.y216{bottom:476.696264px;}
.y5c{bottom:478.718085px;}
.y1d0{bottom:480.544821px;}
.y10e{bottom:480.552171px;}
.y1b{bottom:481.464311px;}
.y145{bottom:481.861934px;}
.y97{bottom:481.992910px;}
.y177{bottom:486.046646px;}
.y164{bottom:486.847948px;}
.y262{bottom:487.293320px;}
.yce{bottom:488.616767px;}
.y215{bottom:489.442514px;}
.y1a5{bottom:489.549169px;}
.y5b{bottom:493.716584px;}
.y1cf{bottom:495.544821px;}
.y10d{bottom:495.550670px;}
.y144{bottom:496.860433px;}
.y96{bottom:496.991409px;}
.y1a{bottom:497.961311px;}
.y176{bottom:501.046646px;}
.y163{bottom:501.846448px;}
.y214{bottom:502.188764px;}
.ycd{bottom:503.615266px;}
.y10a{bottom:503.830961px;}
.y1a4{bottom:504.549169px;}
.y5a{bottom:508.715084px;}
.y10c{bottom:510.549169px;}
.y1ce{bottom:510.550824px;}
.y143{bottom:511.858932px;}
.y261{bottom:514.309829px;}
.y19{bottom:514.458311px;}
.y213{bottom:514.935014px;}
.y162{bottom:516.844947px;}
.ycc{bottom:518.613765px;}
.y109{bottom:518.829460px;}
.y1a3{bottom:519.550670px;}
.y59{bottom:523.713583px;}
.y95{bottom:525.365253px;}
.y10b{bottom:525.547668px;}
.y1cd{bottom:525.549323px;}
.y212{bottom:527.681264px;}
.y175{bottom:528.549323px;}
.y260{bottom:529.308328px;}
.y18{bottom:530.955311px;}
.y161{bottom:531.843446px;}
.ycb{bottom:533.612264px;}
.y108{bottom:533.827959px;}
.y1a2{bottom:534.549169px;}
.y58{bottom:538.712082px;}
.y94{bottom:540.363752px;}
.y211{bottom:540.427514px;}
.y1cc{bottom:540.547822px;}
.y174{bottom:543.547822px;}
.y25f{bottom:544.306827px;}
.y160{bottom:546.841945px;}
.y17{bottom:547.452311px;}
.yca{bottom:548.610764px;}
.y107{bottom:548.826459px;}
.y1a1{bottom:549.556673px;}
.y210{bottom:553.173765px;}
.y93{bottom:555.362251px;}
.y1cb{bottom:555.546321px;}
.y173{bottom:558.546321px;}
.y25e{bottom:559.305326px;}
.y15f{bottom:561.840444px;}
.yc9{bottom:563.610764px;}
.y106{bottom:563.824958px;}
.y16{bottom:563.949311px;}
.y1a0{bottom:564.555172px;}
.y20f{bottom:565.920015px;}
.y57{bottom:566.254202px;}
.y92{bottom:570.360750px;}
.y1ca{bottom:570.544821px;}
.y172{bottom:573.544821px;}
.y25d{bottom:574.303825px;}
.y12f{bottom:574.629478px;}
.y15e{bottom:576.838943px;}
.yc8{bottom:578.610764px;}
.y20e{bottom:578.666265px;}
.y105{bottom:578.823457px;}
.y19f{bottom:579.553672px;}
.y15{bottom:580.446311px;}
.y56{bottom:581.264707px;}
.y91{bottom:585.359250px;}
.y1c9{bottom:585.544821px;}
.y171{bottom:588.550824px;}
.y25c{bottom:589.302325px;}
.y12e{bottom:589.627978px;}
.y20d{bottom:591.412515px;}
.y104{bottom:593.821956px;}
.y19e{bottom:594.552171px;}
.y55{bottom:596.263206px;}
.y14{bottom:596.943311px;}
.y90{bottom:600.357749px;}
.y1c8{bottom:600.543320px;}
.y170{bottom:603.549323px;}
.y20c{bottom:604.158765px;}
.y25b{bottom:604.300824px;}
.y12d{bottom:604.626477px;}
.yc7{bottom:608.680651px;}
.y103{bottom:608.820455px;}
.y19d{bottom:609.550670px;}
.y54{bottom:611.261706px;}
.y13{bottom:613.440311px;}
.y8f{bottom:615.356248px;}
.y20b{bottom:616.905015px;}
.y16f{bottom:618.547822px;}
.y25a{bottom:619.299323px;}
.y12c{bottom:619.624976px;}
.yc6{bottom:623.679150px;}
.y102{bottom:623.818954px;}
.y19c{bottom:624.549169px;}
.y53{bottom:626.260205px;}
.y20a{bottom:629.651265px;}
.y12{bottom:629.937311px;}
.y8e{bottom:630.354747px;}
.y16e{bottom:633.546321px;}
.y259{bottom:634.297822px;}
.y12b{bottom:634.623475px;}
.yc5{bottom:638.677649px;}
.y19b{bottom:639.547668px;}
.y52{bottom:641.258704px;}
.y209{bottom:642.397515px;}
.y8d{bottom:645.353246px;}
.y11{bottom:646.434311px;}
.y16d{bottom:648.544821px;}
.y258{bottom:649.296321px;}
.y12a{bottom:649.621974px;}
.yc4{bottom:653.676149px;}
.y208{bottom:655.143765px;}
.y51{bottom:656.257203px;}
.y8c{bottom:660.351746px;}
.y1ea{bottom:663.180441px;}
.y16c{bottom:663.543320px;}
.y257{bottom:664.294821px;}
.y129{bottom:664.620474px;}
.y207{bottom:667.890016px;}
.yc3{bottom:668.674648px;}
.y50{bottom:671.255702px;}
.yf{bottom:676.434310px;}
.y1e9{bottom:678.178940px;}
.y256{bottom:679.293320px;}
.y128{bottom:679.618973px;}
.y206{bottom:680.636266px;}
.y10{bottom:681.534302px;}
.yc2{bottom:683.673147px;}
.y4f{bottom:686.254202px;}
.y8b{bottom:688.715084px;}
.y205{bottom:693.382516px;}
.y255{bottom:694.293320px;}
.yd{bottom:694.434310px;}
.y1c7{bottom:698.406460px;}
.yc1{bottom:698.671646px;}
.ye{bottom:699.534302px;}
.y4e{bottom:701.252701px;}
.y8a{bottom:703.713583px;}
.y204{bottom:706.128766px;}
.yb{bottom:712.434310px;}
.y1c6{bottom:713.404960px;}
.y4d{bottom:716.252701px;}
.yc{bottom:717.534302px;}
.y89{bottom:718.712082px;}
.y203{bottom:718.875016px;}
.y19a{bottom:719.460470px;}
.y254{bottom:721.402021px;}
.y1c5{bottom:728.403459px;}
.yc0{bottom:728.735393px;}
.ya{bottom:730.434310px;}
.y202{bottom:731.621266px;}
.y253{bottom:734.148271px;}
.y199{bottom:734.469429px;}
.y1c4{bottom:743.401958px;}
.ybf{bottom:743.733892px;}
.y4c{bottom:743.803780px;}
.y201{bottom:744.367516px;}
.y252{bottom:746.894521px;}
.y88{bottom:747.078421px;}
.y8{bottom:748.434311px;}
.y198{bottom:749.467928px;}
.y9{bottom:753.534302px;}
.y200{bottom:757.113766px;}
.y1c3{bottom:758.400457px;}
.ybe{bottom:758.734075px;}
.y4b{bottom:758.802279px;}
.y251{bottom:759.640771px;}
.y87{bottom:762.076921px;}
.y197{bottom:764.466427px;}
.y1ff{bottom:769.860017px;}
.y250{bottom:772.387021px;}
.y1c2{bottom:773.398956px;}
.ybd{bottom:773.740078px;}
.y4a{bottom:773.800778px;}
.y86{bottom:777.075420px;}
.y196{bottom:779.464927px;}
.y7{bottom:781.416260px;}
.y1fe{bottom:782.606267px;}
.y24f{bottom:785.133271px;}
.ybc{bottom:788.738578px;}
.y49{bottom:788.799277px;}
.y85{bottom:792.073919px;}
.y195{bottom:794.463426px;}
.y1fd{bottom:795.352517px;}
.y24e{bottom:797.879521px;}
.ybb{bottom:803.737077px;}
.y48{bottom:803.797776px;}
.y84{bottom:807.072418px;}
.y1fc{bottom:808.098767px;}
.y194{bottom:809.461925px;}
.y24d{bottom:810.625771px;}
.yba{bottom:818.735576px;}
.y47{bottom:818.796276px;}
.y1fb{bottom:820.845017px;}
.y24c{bottom:823.372022px;}
.y193{bottom:824.460424px;}
.y6{bottom:826.422262px;}
.y1fa{bottom:833.591267px;}
.yb9{bottom:833.734075px;}
.y46{bottom:833.794775px;}
.y83{bottom:835.441988px;}
.y24b{bottom:836.118272px;}
.y192{bottom:839.458923px;}
.y1f9{bottom:846.337517px;}
.yb8{bottom:848.738578px;}
.y45{bottom:848.794775px;}
.y24a{bottom:848.864522px;}
.y82{bottom:850.440487px;}
.y1f8{bottom:859.083767px;}
.y249{bottom:861.610772px;}
.yb7{bottom:863.737077px;}
.y44{bottom:863.794775px;}
.y81{bottom:865.438987px;}
.y5{bottom:871.428264px;}
.y1f7{bottom:871.830017px;}
.y248{bottom:874.357022px;}
.yb6{bottom:878.735576px;}
.y43{bottom:878.799277px;}
.y80{bottom:880.437486px;}
.y1f6{bottom:884.576268px;}
.y247{bottom:887.103272px;}
.yb5{bottom:893.734075px;}
.y42{bottom:893.797776px;}
.y7f{bottom:895.435985px;}
.y1f5{bottom:897.322518px;}
.y246{bottom:899.849522px;}
.yb4{bottom:908.732574px;}
.y41{bottom:908.796276px;}
.y1f4{bottom:910.068768px;}
.y7e{bottom:910.434484px;}
.y245{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y1f3{bottom:922.815018px;}
.y40{bottom:923.794775px;}
.y244{bottom:925.342022px;}
.y7d{bottom:925.435985px;}
.y33{bottom:926.409576px;}
.y1f2{bottom:935.561268px;}
.y243{bottom:938.088273px;}
.y3f{bottom:938.794775px;}
.yb3{bottom:938.796276px;}
.y7c{bottom:940.434484px;}
.y1f1{bottom:948.307518px;}
.y242{bottom:950.834523px;}
.y3e{bottom:953.794775px;}
.y7b{bottom:955.432983px;}
.y1f0{bottom:961.053768px;}
.y241{bottom:963.580773px;}
.yb2{bottom:968.794775px;}
.y3d{bottom:968.796276px;}
.y1ef{bottom:973.800018px;}
.y240{bottom:976.327023px;}
.y3c{bottom:983.794775px;}
.yb1{bottom:983.796276px;}
.y7a{bottom:983.803780px;}
.y1ee{bottom:986.550018px;}
.y23f{bottom:989.073273px;}
.yb0{bottom:998.794775px;}
.y3b{bottom:998.797776px;}
.y79{bottom:998.802279px;}
.y23e{bottom:1001.819523px;}
.y3a{bottom:1013.796276px;}
.y78{bottom:1013.800778px;}
.y23d{bottom:1014.565773px;}
.y1ed{bottom:1016.049274px;}
.y23c{bottom:1027.312023px;}
.y39{bottom:1028.794775px;}
.y77{bottom:1028.799277px;}
.y1ec{bottom:1031.043274px;}
.y23b{bottom:1040.058273px;}
.y38{bottom:1043.794775px;}
.y76{bottom:1043.797776px;}
.y23a{bottom:1052.804524px;}
.y37{bottom:1058.794775px;}
.y75{bottom:1058.796276px;}
.y239{bottom:1065.550774px;}
.y1eb{bottom:1073.793274px;}
.y36{bottom:1073.794775px;}
.y238{bottom:1078.297024px;}
.y35{bottom:1088.793274px;}
.y237{bottom:1091.043274px;}
.y34{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h6{height:28.050293px;}
.h1a{height:35.394000px;}
.hd{height:36.681152px;}
.h8{height:38.838867px;}
.hc{height:41.158746px;}
.h2{height:43.140000px;}
.h12{height:43.154297px;}
.h4{height:44.218500px;}
.h1d{height:44.505000px;}
.h1c{height:45.090000px;}
.h3{height:45.744000px;}
.h1b{height:46.080000px;}
.h11{height:47.454000px;}
.h15{height:47.469727px;}
.h7{height:48.450259px;}
.h9{height:53.406000px;}
.h16{height:54.071981px;}
.h17{height:54.077892px;}
.h10{height:54.083987px;}
.h18{height:54.095994px;}
.ha{height:54.101997px;}
.h19{height:54.102020px;}
.hf{height:54.108000px;}
.h14{height:55.296000px;}
.h13{height:57.839414px;}
.he{height:77.652000px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.xb{left:140.952747px;}
.x4{left:233.456406px;}
.xc{left:251.456832px;}
.x10{left:300.594910px;}
.x9{left:341.035057px;}
.x7{left:370.176590px;}
.x5{left:418.033035px;}
.xa{left:452.032654px;}
.x6{left:570.110229px;}
.x3{left:584.586594px;}
.x8{left:611.042862px;}
.xe{left:816.003571px;}
.xf{left:817.278168px;}
.xd{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.615944pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.154639pt;}
.v2{vertical-align:18.133301pt;}
.ls6b{letter-spacing:-4.608000pt;}
.ls7f{letter-spacing:-3.792000pt;}
.ls95{letter-spacing:-3.744000pt;}
.ls43{letter-spacing:-3.696000pt;}
.ls87{letter-spacing:-3.648000pt;}
.ls73{letter-spacing:-3.600000pt;}
.ls6f{letter-spacing:-3.456000pt;}
.ls46{letter-spacing:-3.360000pt;}
.ls7b{letter-spacing:-3.264000pt;}
.ls88{letter-spacing:-3.216000pt;}
.ls86{letter-spacing:-3.168000pt;}
.ls7c{letter-spacing:-3.072000pt;}
.ls94{letter-spacing:-2.688000pt;}
.lsb0{letter-spacing:-2.680000pt;}
.ls45{letter-spacing:-2.640000pt;}
.ls77{letter-spacing:-2.592000pt;}
.lsbe{letter-spacing:-2.480000pt;}
.ls79{letter-spacing:-2.064000pt;}
.ls1b{letter-spacing:-1.632000pt;}
.lsaf{letter-spacing:-1.560000pt;}
.ls72{letter-spacing:-1.392000pt;}
.ls93{letter-spacing:-1.344000pt;}
.ls85{letter-spacing:-1.296000pt;}
.ls81{letter-spacing:-1.248000pt;}
.lsbf{letter-spacing:-1.160000pt;}
.ls7d{letter-spacing:-1.152000pt;}
.ls8c{letter-spacing:-1.104000pt;}
.ls7e{letter-spacing:-1.056000pt;}
.ls7a{letter-spacing:-1.008000pt;}
.lsa6{letter-spacing:-0.920000pt;}
.ls82{letter-spacing:-0.864000pt;}
.ls71{letter-spacing:-0.816000pt;}
.lsab{letter-spacing:-0.760000pt;}
.ls8b{letter-spacing:-0.720000pt;}
.lsa4{letter-spacing:-0.680000pt;}
.ls8d{letter-spacing:-0.672000pt;}
.lsb1{letter-spacing:-0.640000pt;}
.ls6e{letter-spacing:-0.624000pt;}
.ls67{letter-spacing:-0.576000pt;}
.lsa3{letter-spacing:-0.560000pt;}
.ls59{letter-spacing:-0.528000pt;}
.lsaa{letter-spacing:-0.520000pt;}
.ls76{letter-spacing:-0.480000pt;}
.ls9f{letter-spacing:-0.440000pt;}
.ls44{letter-spacing:-0.432000pt;}
.lsa1{letter-spacing:-0.400000pt;}
.ls80{letter-spacing:-0.384000pt;}
.lsbd{letter-spacing:-0.360000pt;}
.ls3f{letter-spacing:-0.336000pt;}
.lsa5{letter-spacing:-0.320000pt;}
.ls74{letter-spacing:-0.288000pt;}
.ls9c{letter-spacing:-0.280000pt;}
.ls84{letter-spacing:-0.266667pt;}
.ls70{letter-spacing:-0.240000pt;}
.ls9e{letter-spacing:-0.200000pt;}
.ls4e{letter-spacing:-0.192000pt;}
.ls58{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.144000pt;}
.lsa2{letter-spacing:-0.120000pt;}
.ls6a{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls68{letter-spacing:-0.093600pt;}
.lsa9{letter-spacing:-0.080000pt;}
.ls4b{letter-spacing:-0.062400pt;}
.ls20{letter-spacing:-0.048000pt;}
.lsa8{letter-spacing:-0.040000pt;}
.ls78{letter-spacing:-0.031200pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.005483pt;}
.ls3{letter-spacing:0.011591pt;}
.ls7{letter-spacing:0.011673pt;}
.ls2{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.ls6{letter-spacing:0.012324pt;}
.ls5{letter-spacing:0.012405pt;}
.ls63{letter-spacing:0.020219pt;}
.ls64{letter-spacing:0.020707pt;}
.ls4f{letter-spacing:0.025058pt;}
.ls49{letter-spacing:0.031200pt;}
.ls97{letter-spacing:0.040000pt;}
.lsb{letter-spacing:0.043532pt;}
.ls2b{letter-spacing:0.047999pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls56{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.062400pt;}
.lsa7{letter-spacing:0.080000pt;}
.ls66{letter-spacing:0.093600pt;}
.ls5f{letter-spacing:0.095999pt;}
.lse{letter-spacing:0.096000pt;}
.lsb8{letter-spacing:0.096004pt;}
.ls57{letter-spacing:0.106667pt;}
.lsb7{letter-spacing:0.116052pt;}
.ls16{letter-spacing:0.118300pt;}
.ls98{letter-spacing:0.120000pt;}
.ls40{letter-spacing:0.124800pt;}
.ls52{letter-spacing:0.144000pt;}
.ls3b{letter-spacing:0.154209pt;}
.ls39{letter-spacing:0.154697pt;}
.ls75{letter-spacing:0.156000pt;}
.ls29{letter-spacing:0.156001pt;}
.ls62{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.168000pt;}
.ls65{letter-spacing:0.168539pt;}
.ls15{letter-spacing:0.181333pt;}
.ls3e{letter-spacing:0.187200pt;}
.ls33{letter-spacing:0.192000pt;}
.ls90{letter-spacing:0.198894pt;}
.ls9d{letter-spacing:0.200000pt;}
.ls27{letter-spacing:0.212754pt;}
.ls4d{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.218399pt;}
.ls9{letter-spacing:0.218400pt;}
.ls9a{letter-spacing:0.231957pt;}
.ls3a{letter-spacing:0.237913pt;}
.ls21{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.243239pt;}
.lsc{letter-spacing:0.249600pt;}
.lsbb{letter-spacing:0.260000pt;}
.lsd{letter-spacing:0.262837pt;}
.lsa{letter-spacing:0.263991pt;}
.ls89{letter-spacing:0.265200pt;}
.lsad{letter-spacing:0.280000pt;}
.ls10{letter-spacing:0.280410pt;}
.ls41{letter-spacing:0.280800pt;}
.ls50{letter-spacing:0.287999pt;}
.ls24{letter-spacing:0.288000pt;}
.ls8f{letter-spacing:0.290695pt;}
.lsb9{letter-spacing:0.300000pt;}
.ls61{letter-spacing:0.311998pt;}
.ls23{letter-spacing:0.312000pt;}
.ls36{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.351423pt;}
.ls19{letter-spacing:0.355605pt;}
.ls18{letter-spacing:0.356744pt;}
.lsb6{letter-spacing:0.360000pt;}
.ls5d{letter-spacing:0.369592pt;}
.ls35{letter-spacing:0.373329pt;}
.ls8e{letter-spacing:0.374389pt;}
.ls31{letter-spacing:0.374401pt;}
.ls60{letter-spacing:0.383994pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.396771pt;}
.ls47{letter-spacing:0.405600pt;}
.ls5e{letter-spacing:0.408018pt;}
.ls69{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.432000pt;}
.ls2e{letter-spacing:0.436800pt;}
.ls11{letter-spacing:0.453333pt;}
.ls91{letter-spacing:0.459717pt;}
.ls92{letter-spacing:0.459799pt;}
.ls3d{letter-spacing:0.468000pt;}
.ls38{letter-spacing:0.470422pt;}
.lsf{letter-spacing:0.470887pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.490533pt;}
.ls37{letter-spacing:0.494329pt;}
.ls12{letter-spacing:0.507623pt;}
.ls99{letter-spacing:0.520000pt;}
.ls5c{letter-spacing:0.527999pt;}
.ls30{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.544000pt;}
.lsb5{letter-spacing:0.560000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.624000pt;}
.ls4c{letter-spacing:0.640000pt;}
.ls6d{letter-spacing:0.672000pt;}
.lsa0{letter-spacing:0.680000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls2c{letter-spacing:0.720000pt;}
.ls5b{letter-spacing:0.746667pt;}
.ls3c{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.770667pt;}
.ls25{letter-spacing:0.816000pt;}
.ls55{letter-spacing:0.853333pt;}
.ls54{letter-spacing:0.864000pt;}
.lsac{letter-spacing:0.920000pt;}
.lsba{letter-spacing:0.940000pt;}
.lsb2{letter-spacing:1.040000pt;}
.ls9b{letter-spacing:1.080000pt;}
.ls5a{letter-spacing:1.104000pt;}
.lsb4{letter-spacing:1.200000pt;}
.lsae{letter-spacing:1.240000pt;}
.ls53{letter-spacing:1.296000pt;}
.lsb3{letter-spacing:1.320000pt;}
.ls96{letter-spacing:1.680000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls83{letter-spacing:2.720000pt;}
.lsbc{letter-spacing:4.106667pt;}
.ls8a{letter-spacing:5.440000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.393333pt;}
.ws21{word-spacing:-13.066667pt;}
.ws48{word-spacing:-12.288000pt;}
.ws64{word-spacing:-12.085333pt;}
.ws63{word-spacing:-12.000000pt;}
.ws90{word-spacing:-11.712000pt;}
.ws8f{word-spacing:-11.664000pt;}
.ws8d{word-spacing:-11.616000pt;}
.ws25{word-spacing:-11.568000pt;}
.ws67{word-spacing:-11.520000pt;}
.ws49{word-spacing:-11.472000pt;}
.ws77{word-spacing:-11.424000pt;}
.ws75{word-spacing:-11.376000pt;}
.ws98{word-spacing:-11.328000pt;}
.ws74{word-spacing:-11.232000pt;}
.ws91{word-spacing:-11.184000pt;}
.ws69{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws86{word-spacing:-11.088000pt;}
.ws7b{word-spacing:-11.064000pt;}
.ws4a{word-spacing:-11.040000pt;}
.ws65{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws5d{word-spacing:-10.944000pt;}
.ws2d{word-spacing:-10.896000pt;}
.ws68{word-spacing:-10.848000pt;}
.ws66{word-spacing:-10.800000pt;}
.ws2e{word-spacing:-10.752000pt;}
.ws5f{word-spacing:-10.704000pt;}
.ws9b{word-spacing:-10.608000pt;}
.ws29{word-spacing:-10.560000pt;}
.ws96{word-spacing:-10.512000pt;}
.wsa9{word-spacing:-10.464000pt;}
.wse3{word-spacing:-10.416000pt;}
.ws73{word-spacing:-10.368000pt;}
.wsa2{word-spacing:-10.272000pt;}
.ws78{word-spacing:-10.176000pt;}
.ws8e{word-spacing:-10.128000pt;}
.ws80{word-spacing:-9.984000pt;}
.ws8a{word-spacing:-9.936000pt;}
.ws89{word-spacing:-9.840000pt;}
.ws8c{word-spacing:-9.744000pt;}
.ws99{word-spacing:-9.696000pt;}
.wsa8{word-spacing:-9.648000pt;}
.ws79{word-spacing:-9.600000pt;}
.wsad{word-spacing:-9.320000pt;}
.wsae{word-spacing:-9.160000pt;}
.wsc1{word-spacing:-9.120000pt;}
.wsde{word-spacing:-9.080000pt;}
.wse2{word-spacing:-8.940000pt;}
.ws7f{word-spacing:-8.928000pt;}
.wse6{word-spacing:-8.920000pt;}
.wsac{word-spacing:-8.880000pt;}
.wsb0{word-spacing:-8.760000pt;}
.wsd4{word-spacing:-8.720000pt;}
.wsb2{word-spacing:-8.680000pt;}
.wsaf{word-spacing:-8.600000pt;}
.wsc4{word-spacing:-8.560000pt;}
.wsb3{word-spacing:-8.520000pt;}
.ws7d{word-spacing:-8.400000pt;}
.ws2a{word-spacing:-8.352000pt;}
.wsaa{word-spacing:-8.304000pt;}
.ws4{word-spacing:-8.256000pt;}
.wsb1{word-spacing:-8.240000pt;}
.wse1{word-spacing:-8.000000pt;}
.ws88{word-spacing:-7.920000pt;}
.ws9a{word-spacing:-7.824000pt;}
.ws9d{word-spacing:-7.776000pt;}
.ws87{word-spacing:-7.728000pt;}
.ws2b{word-spacing:-7.632000pt;}
.ws22{word-spacing:-7.550400pt;}
.ws76{word-spacing:-7.536000pt;}
.ws2c{word-spacing:-7.488000pt;}
.ws26{word-spacing:-7.456800pt;}
.ws8{word-spacing:-7.394400pt;}
.ws7a{word-spacing:-7.392000pt;}
.ws27{word-spacing:-7.363200pt;}
.ws9c{word-spacing:-7.344000pt;}
.ws60{word-spacing:-7.332000pt;}
.ws61{word-spacing:-7.300800pt;}
.ws28{word-spacing:-7.296000pt;}
.ws23{word-spacing:-7.269600pt;}
.wsab{word-spacing:-7.248000pt;}
.ws7c{word-spacing:-7.238400pt;}
.ws24{word-spacing:-7.207200pt;}
.ws8b{word-spacing:-7.200000pt;}
.ws5e{word-spacing:-7.176000pt;}
.ws7{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws2f{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws7e{word-spacing:-7.051200pt;}
.ws30{word-spacing:-7.020000pt;}
.ws62{word-spacing:-6.988800pt;}
.wsa3{word-spacing:-5.440000pt;}
.ws6a{word-spacing:-4.896000pt;}
.ws6c{word-spacing:-4.800000pt;}
.wse4{word-spacing:-4.106667pt;}
.wsc{word-spacing:-3.413333pt;}
.wsb{word-spacing:-2.912000pt;}
.ws9f{word-spacing:-2.720000pt;}
.wsa1{word-spacing:-1.728000pt;}
.ws93{word-spacing:-1.680000pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.632000pt;}
.wsf{word-spacing:-1.584000pt;}
.ws97{word-spacing:-1.536000pt;}
.ws82{word-spacing:-1.488000pt;}
.ws43{word-spacing:-1.440000pt;}
.ws6b{word-spacing:-1.392000pt;}
.wsc5{word-spacing:-1.360000pt;}
.ws40{word-spacing:-1.344000pt;}
.wsd1{word-spacing:-1.320000pt;}
.ws4d{word-spacing:-1.296000pt;}
.ws9e{word-spacing:-1.248000pt;}
.ws3e{word-spacing:-1.232000pt;}
.ws85{word-spacing:-1.200000pt;}
.wsd7{word-spacing:-1.160000pt;}
.ws47{word-spacing:-1.152000pt;}
.wsb5{word-spacing:-1.133333pt;}
.ws3b{word-spacing:-1.104000pt;}
.wscb{word-spacing:-1.080000pt;}
.ws84{word-spacing:-1.056000pt;}
.wsce{word-spacing:-1.040000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws83{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.920000pt;}
.wsa6{word-spacing:-0.912000pt;}
.ws1b{word-spacing:-0.906667pt;}
.wsd0{word-spacing:-0.880000pt;}
.ws5c{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.853333pt;}
.wsc0{word-spacing:-0.840000pt;}
.ws1c{word-spacing:-0.816000pt;}
.wsbd{word-spacing:-0.800000pt;}
.ws1e{word-spacing:-0.770667pt;}
.ws92{word-spacing:-0.768000pt;}
.ws4b{word-spacing:-0.720000pt;}
.ws3f{word-spacing:-0.693333pt;}
.wsca{word-spacing:-0.680000pt;}
.ws4e{word-spacing:-0.672000pt;}
.ws4f{word-spacing:-0.640000pt;}
.ws39{word-spacing:-0.624000pt;}
.wscd{word-spacing:-0.600000pt;}
.ws71{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.576000pt;}
.wsd3{word-spacing:-0.560000pt;}
.ws20{word-spacing:-0.544000pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws11{word-spacing:-0.528000pt;}
.wsda{word-spacing:-0.520000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.453333pt;}
.wsba{word-spacing:-0.440000pt;}
.ws19{word-spacing:-0.432000pt;}
.wsb7{word-spacing:-0.400000pt;}
.ws36{word-spacing:-0.384000pt;}
.wsbe{word-spacing:-0.360000pt;}
.ws41{word-spacing:-0.336000pt;}
.wscf{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.288000pt;}
.wsa7{word-spacing:-0.280800pt;}
.wsc8{word-spacing:-0.280000pt;}
.ws46{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.187200pt;}
.ws1f{word-spacing:-0.181333pt;}
.ws6d{word-spacing:-0.160000pt;}
.ws3a{word-spacing:-0.144000pt;}
.wsd2{word-spacing:-0.120000pt;}
.ws5b{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.096000pt;}
.wse5{word-spacing:-0.080000pt;}
.ws70{word-spacing:-0.053333pt;}
.ws31{word-spacing:-0.048000pt;}
.wsdd{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.040000pt;}
.ws17{word-spacing:0.048000pt;}
.wsa4{word-spacing:0.062400pt;}
.wsbf{word-spacing:0.080000pt;}
.wsa5{word-spacing:0.093600pt;}
.ws12{word-spacing:0.096000pt;}
.ws6e{word-spacing:0.106667pt;}
.wsbb{word-spacing:0.120000pt;}
.ws58{word-spacing:0.144000pt;}
.ws57{word-spacing:0.192000pt;}
.wse7{word-spacing:0.200000pt;}
.ws44{word-spacing:0.240000pt;}
.wsa0{word-spacing:0.266667pt;}
.wsd6{word-spacing:0.280000pt;}
.ws38{word-spacing:0.288000pt;}
.wse0{word-spacing:0.320000pt;}
.ws35{word-spacing:0.336000pt;}
.wsc3{word-spacing:0.360000pt;}
.ws3d{word-spacing:0.384000pt;}
.wse9{word-spacing:0.400000pt;}
.ws42{word-spacing:0.426667pt;}
.wse{word-spacing:0.432000pt;}
.wscc{word-spacing:0.440000pt;}
.ws50{word-spacing:0.480000pt;}
.wsdb{word-spacing:0.520000pt;}
.ws81{word-spacing:0.528000pt;}
.ws18{word-spacing:0.576000pt;}
.ws34{word-spacing:0.624000pt;}
.ws33{word-spacing:0.672000pt;}
.wsbc{word-spacing:0.680000pt;}
.ws55{word-spacing:0.693333pt;}
.ws56{word-spacing:0.720000pt;}
.wsdf{word-spacing:0.760000pt;}
.ws3c{word-spacing:0.768000pt;}
.wsb9{word-spacing:0.800000pt;}
.ws32{word-spacing:0.816000pt;}
.wsc2{word-spacing:0.840000pt;}
.ws6f{word-spacing:0.864000pt;}
.wsdc{word-spacing:0.920000pt;}
.ws94{word-spacing:0.960000pt;}
.ws59{word-spacing:1.008000pt;}
.ws1d{word-spacing:1.042667pt;}
.wsea{word-spacing:1.056000pt;}
.ws54{word-spacing:1.104000pt;}
.wsc6{word-spacing:1.320000pt;}
.wse8{word-spacing:1.560000pt;}
.wsd8{word-spacing:1.600000pt;}
.ws51{word-spacing:1.728000pt;}
.wsc7{word-spacing:1.800000pt;}
.wsc9{word-spacing:2.120000pt;}
.ws52{word-spacing:2.160000pt;}
.wsd9{word-spacing:2.320000pt;}
.wsd5{word-spacing:2.360000pt;}
.wsb4{word-spacing:3.120000pt;}
.ws72{word-spacing:4.608000pt;}
.ws95{word-spacing:13.104000pt;}
._18{margin-left:-11.960000pt;}
._17{margin-left:-10.840000pt;}
._19{margin-left:-9.680000pt;}
._14{margin-left:-8.480000pt;}
._7{margin-left:-6.947225pt;}
._4{margin-left:-5.347710pt;}
._b{margin-left:-4.431960pt;}
._3{margin-left:-3.424993pt;}
._5{margin-left:-2.472506pt;}
._0{margin-left:-1.578682pt;}
._6{width:0.940282pt;}
._1{width:2.239993pt;}
._d{width:3.146070pt;}
._8{width:4.037366pt;}
._12{width:5.781349pt;}
._13{width:6.720000pt;}
._f{width:8.064000pt;}
._10{width:8.997334pt;}
._16{width:9.898683pt;}
._11{width:11.520000pt;}
._e{width:13.583993pt;}
._15{width:15.520001pt;}
._2{width:38.263959pt;}
._a{width:42.307568pt;}
._9{width:43.453339pt;}
._c{width:44.786517pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{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;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y32{bottom:60.718132pt;}
.y74{bottom:60.934668pt;}
.ye9{bottom:60.938665pt;}
.yaf{bottom:60.944002pt;}
.y236{bottom:61.170009pt;}
.y142{bottom:61.676418pt;}
.y1c1{bottom:61.821469pt;}
.y15d{bottom:68.322809pt;}
.y235{bottom:72.500009pt;}
.y101{bottom:73.947999pt;}
.y191{bottom:74.269331pt;}
.ye8{bottom:74.270665pt;}
.y73{bottom:74.274667pt;}
.yae{bottom:74.276001pt;}
.y141{bottom:75.008417pt;}
.y1e8{bottom:75.152265pt;}
.y1c0{bottom:75.154797pt;}
.y279{bottom:75.161604pt;}
.y31{bottom:77.899465pt;}
.y15c{bottom:81.654808pt;}
.y234{bottom:83.830009pt;}
.y100{bottom:87.281333pt;}
.y30{bottom:87.384799pt;}
.y190{bottom:87.601330pt;}
.ye7{bottom:87.602664pt;}
.y72{bottom:87.606666pt;}
.yad{bottom:87.608000pt;}
.y140{bottom:88.340416pt;}
.y1e7{bottom:88.484265pt;}
.y1bf{bottom:88.489464pt;}
.y278{bottom:88.493603pt;}
.y127{bottom:93.857503pt;}
.y15b{bottom:94.986808pt;}
.y233{bottom:95.160009pt;}
.yff{bottom:100.638669pt;}
.y2f{bottom:100.718132pt;}
.ye6{bottom:100.934663pt;}
.y71{bottom:100.938665pt;}
.yac{bottom:100.940000pt;}
.y18f{bottom:100.948004pt;}
.y13f{bottom:101.672416pt;}
.y1e6{bottom:101.816264pt;}
.y1be{bottom:101.821463pt;}
.y277{bottom:101.825602pt;}
.y232{bottom:106.490010pt;}
.y126{bottom:107.189503pt;}
.y15a{bottom:108.318807pt;}
.yfe{bottom:113.970668pt;}
.y2e{bottom:114.051466pt;}
.y70{bottom:114.270665pt;}
.yab{bottom:114.271999pt;}
.ye5{bottom:114.273333pt;}
.y18e{bottom:114.280003pt;}
.y13e{bottom:115.004415pt;}
.y276{bottom:115.157601pt;}
.y1bd{bottom:115.161467pt;}
.y231{bottom:117.820010pt;}
.y125{bottom:120.521502pt;}
.y159{bottom:121.650806pt;}
.yfd{bottom:127.302668pt;}
.y2d{bottom:127.384799pt;}
.y6f{bottom:127.602664pt;}
.yaa{bottom:127.603998pt;}
.ye4{bottom:127.605332pt;}
.y18d{bottom:127.612002pt;}
.y13d{bottom:128.336414pt;}
.y275{bottom:128.489601pt;}
.y1bc{bottom:128.493466pt;}
.y230{bottom:129.150010pt;}
.y1e5{bottom:131.166940pt;}
.y124{bottom:133.853501pt;}
.y158{bottom:134.982806pt;}
.y22f{bottom:140.480010pt;}
.yfc{bottom:140.634667pt;}
.y6e{bottom:140.934663pt;}
.ya9{bottom:140.935997pt;}
.ye3{bottom:140.937331pt;}
.y18c{bottom:140.944002pt;}
.y13c{bottom:141.668413pt;}
.y274{bottom:141.821600pt;}
.y1bb{bottom:141.825466pt;}
.y1e4{bottom:144.498939pt;}
.y2c{bottom:144.566132pt;}
.y123{bottom:147.185500pt;}
.y157{bottom:148.314805pt;}
.y22e{bottom:151.810010pt;}
.yfb{bottom:153.966666pt;}
.y6d{bottom:154.266663pt;}
.ya8{bottom:154.267997pt;}
.ye2{bottom:154.269331pt;}
.y18b{bottom:154.276001pt;}
.y13b{bottom:155.000413pt;}
.y273{bottom:155.153599pt;}
.y1ba{bottom:155.157465pt;}
.y1e3{bottom:157.830938pt;}
.y122{bottom:160.517500pt;}
.y156{bottom:161.646804pt;}
.y22d{bottom:163.140010pt;}
.yfa{bottom:167.298665pt;}
.ya7{bottom:167.599996pt;}
.ye1{bottom:167.601330pt;}
.y18a{bottom:167.608000pt;}
.y13a{bottom:168.332412pt;}
.y272{bottom:168.485599pt;}
.y1b9{bottom:168.489464pt;}
.y1e2{bottom:171.162938pt;}
.y121{bottom:173.849499pt;}
.y22c{bottom:174.470010pt;}
.y155{bottom:174.978803pt;}
.y6c{bottom:178.752529pt;}
.yf9{bottom:180.630665pt;}
.y189{bottom:180.940000pt;}
.ye0{bottom:180.942668pt;}
.y139{bottom:181.664411pt;}
.y271{bottom:181.817598pt;}
.y1b8{bottom:181.821463pt;}
.y2b{bottom:181.942944pt;}
.y1e1{bottom:184.494937pt;}
.y22b{bottom:185.800010pt;}
.y120{bottom:187.181498pt;}
.y154{bottom:188.310803pt;}
.y6b{bottom:192.084528pt;}
.ya6{bottom:192.811872pt;}
.yf8{bottom:193.962664pt;}
.y188{bottom:194.271999pt;}
.ydf{bottom:194.274667pt;}
.y138{bottom:194.996411pt;}
.y270{bottom:195.149597pt;}
.y1b7{bottom:195.156131pt;}
.y2a{bottom:195.276277pt;}
.y22a{bottom:197.130010pt;}
.y1e0{bottom:197.826936pt;}
.y11f{bottom:200.513497pt;}
.y153{bottom:201.642802pt;}
.y6a{bottom:205.416527pt;}
.ya5{bottom:206.143871pt;}
.yf7{bottom:207.294663pt;}
.y187{bottom:207.603998pt;}
.yde{bottom:207.606666pt;}
.y137{bottom:208.328410pt;}
.y229{bottom:208.460010pt;}
.y1b6{bottom:208.488130pt;}
.y29{bottom:208.609610pt;}
.y1df{bottom:211.158936pt;}
.y11e{bottom:213.845497pt;}
.y26f{bottom:214.488267pt;}
.y152{bottom:214.974801pt;}
.y69{bottom:218.748526pt;}
.ya4{bottom:219.475871pt;}
.y228{bottom:219.790011pt;}
.yf6{bottom:220.626662pt;}
.y186{bottom:220.935997pt;}
.ydd{bottom:220.938665pt;}
.y136{bottom:221.660409pt;}
.y1b5{bottom:221.826800pt;}
.y28{bottom:221.944278pt;}
.y1de{bottom:224.490935pt;}
.y11d{bottom:227.177496pt;}
.y26e{bottom:227.820266pt;}
.y151{bottom:228.306800pt;}
.y227{bottom:231.120011pt;}
.y68{bottom:232.080526pt;}
.yf5{bottom:233.958662pt;}
.y185{bottom:234.267997pt;}
.ydc{bottom:234.270665pt;}
.y135{bottom:234.992408pt;}
.y1b4{bottom:235.158799pt;}
.y27{bottom:235.276277pt;}
.y1dd{bottom:237.822934pt;}
.y11c{bottom:240.509495pt;}
.y150{bottom:241.638800pt;}
.y226{bottom:242.450011pt;}
.ya3{bottom:244.686393pt;}
.y26d{bottom:247.152265pt;}
.yf4{bottom:247.290661pt;}
.y184{bottom:247.599996pt;}
.ydb{bottom:247.602664pt;}
.y134{bottom:248.324408pt;}
.y1b3{bottom:248.490798pt;}
.y26{bottom:248.609610pt;}
.y1dc{bottom:251.154933pt;}
.y225{bottom:253.780011pt;}
.y11b{bottom:253.841495pt;}
.y14f{bottom:254.970799pt;}
.y67{bottom:256.563602pt;}
.ya2{bottom:258.018392pt;}
.yf3{bottom:260.622660pt;}
.y183{bottom:260.933329pt;}
.yda{bottom:260.934663pt;}
.y133{bottom:261.656407pt;}
.y1b2{bottom:261.822797pt;}
.y25{bottom:261.942944pt;}
.y1db{bottom:264.486933pt;}
.y224{bottom:265.110011pt;}
.y26c{bottom:266.484265pt;}
.y11a{bottom:267.173494pt;}
.y14e{bottom:268.302798pt;}
.y66{bottom:269.895601pt;}
.yf2{bottom:273.954660pt;}
.yd9{bottom:274.266663pt;}
.y132{bottom:274.988406pt;}
.y1b1{bottom:275.154797pt;}
.y24{bottom:275.316280pt;}
.y223{bottom:276.440011pt;}
.y1da{bottom:277.818932pt;}
.y119{bottom:280.505493pt;}
.y14d{bottom:281.634798pt;}
.y65{bottom:283.227600pt;}
.ya1{bottom:283.235584pt;}
.y182{bottom:285.389471pt;}
.y26b{bottom:285.816264pt;}
.yf1{bottom:287.286659pt;}
.y222{bottom:287.770011pt;}
.y131{bottom:288.320405pt;}
.y1b0{bottom:288.488130pt;}
.y23{bottom:288.648279pt;}
.y1d9{bottom:291.150931pt;}
.y118{bottom:293.837492pt;}
.y14c{bottom:294.966797pt;}
.ya0{bottom:296.567583pt;}
.y181{bottom:298.721470pt;}
.y221{bottom:299.100011pt;}
.y26a{bottom:299.149597pt;}
.yf0{bottom:300.618658pt;}
.yd8{bottom:301.006022pt;}
.y130{bottom:301.652405pt;}
.y1af{bottom:301.826820pt;}
.y22{bottom:301.980279pt;}
.y1d8{bottom:304.482930pt;}
.y117{bottom:307.169492pt;}
.y64{bottom:307.712132pt;}
.y9f{bottom:309.899583pt;}
.y220{bottom:310.430011pt;}
.y180{bottom:312.053470pt;}
.yef{bottom:313.950657pt;}
.yd7{bottom:314.338021pt;}
.y1ae{bottom:315.158819pt;}
.y21{bottom:315.312278pt;}
.y1d7{bottom:317.816264pt;}
.y116{bottom:320.501491pt;}
.y63{bottom:321.044131pt;}
.y21f{bottom:321.760011pt;}
.y9e{bottom:323.231582pt;}
.y17f{bottom:325.385469pt;}
.yee{bottom:327.282657pt;}
.yd6{bottom:327.670021pt;}
.y1ad{bottom:328.490819pt;}
.y20{bottom:328.644277pt;}
.y269{bottom:329.149597pt;}
.y21e{bottom:333.090012pt;}
.y115{bottom:333.833490pt;}
.y62{bottom:334.376131pt;}
.y9d{bottom:336.563581pt;}
.y17e{bottom:338.717468pt;}
.y16b{bottom:339.429737pt;}
.yed{bottom:340.614656pt;}
.yd5{bottom:341.002020pt;}
.y1ac{bottom:341.822818pt;}
.y1f{bottom:341.976276pt;}
.y268{bottom:342.482951pt;}
.y21d{bottom:344.420012pt;}
.y1d6{bottom:347.152286pt;}
.y114{bottom:347.165490pt;}
.y61{bottom:347.712132pt;}
.y14b{bottom:348.329724pt;}
.y9c{bottom:349.895580pt;}
.y17d{bottom:352.049468pt;}
.y16a{bottom:352.761736pt;}
.yec{bottom:353.946655pt;}
.yd4{bottom:354.334019pt;}
.y1ab{bottom:355.154817pt;}
.y21c{bottom:355.750012pt;}
.y1d5{bottom:360.484285pt;}
.y113{bottom:360.497489pt;}
.y60{bottom:361.044131pt;}
.y14a{bottom:361.661723pt;}
.y9b{bottom:363.227580pt;}
.y17c{bottom:365.381467pt;}
.y169{bottom:366.093735pt;}
.y267{bottom:366.488287pt;}
.y21b{bottom:367.080012pt;}
.yd3{bottom:367.666019pt;}
.y1aa{bottom:368.494821pt;}
.y1d4{bottom:373.818952pt;}
.y112{bottom:373.829488pt;}
.y5f{bottom:374.376131pt;}
.y149{bottom:374.993722pt;}
.y21a{bottom:378.410012pt;}
.y17b{bottom:378.713466pt;}
.y168{bottom:379.425735pt;}
.y266{bottom:379.820286pt;}
.yeb{bottom:380.830924pt;}
.yd2{bottom:380.998018pt;}
.y1a9{bottom:381.826820pt;}
.y1e{bottom:383.976276pt;}
.y1d3{bottom:387.150952pt;}
.y111{bottom:387.161487pt;}
.y5e{bottom:387.708130pt;}
.y148{bottom:388.325721pt;}
.y9a{bottom:388.442144pt;}
.y219{bottom:389.740012pt;}
.y17a{bottom:392.045465pt;}
.y167{bottom:392.757734pt;}
.y265{bottom:393.152286pt;}
.yea{bottom:394.162923pt;}
.yd1{bottom:394.330017pt;}
.y1a8{bottom:395.158819pt;}
.y1d{bottom:398.640276pt;}
.y1d2{bottom:400.486953pt;}
.y110{bottom:400.493487pt;}
.y218{bottom:401.070012pt;}
.y147{bottom:401.657721pt;}
.y99{bottom:401.774144pt;}
.y179{bottom:405.377465pt;}
.y166{bottom:406.089733pt;}
.y264{bottom:406.484285pt;}
.yd0{bottom:407.662016pt;}
.y1a7{bottom:408.490819pt;}
.y5d{bottom:412.189851pt;}
.y217{bottom:412.400012pt;}
.y1c{bottom:413.304276pt;}
.y1d1{bottom:413.818952pt;}
.y10f{bottom:413.825486pt;}
.y146{bottom:414.989720pt;}
.y98{bottom:415.106143pt;}
.y178{bottom:418.709464pt;}
.y165{bottom:419.421733pt;}
.y263{bottom:419.816284pt;}
.ycf{bottom:420.994016pt;}
.y1a6{bottom:421.822818pt;}
.y216{bottom:423.730012pt;}
.y5c{bottom:425.527187pt;}
.y1d0{bottom:427.150952pt;}
.y10e{bottom:427.157485pt;}
.y1b{bottom:427.968276pt;}
.y145{bottom:428.321719pt;}
.y97{bottom:428.438142pt;}
.y177{bottom:432.041463pt;}
.y164{bottom:432.753732pt;}
.y262{bottom:433.149618pt;}
.yce{bottom:434.326015pt;}
.y215{bottom:435.060012pt;}
.y1a5{bottom:435.154817pt;}
.y5b{bottom:438.859186pt;}
.y1cf{bottom:440.484285pt;}
.y10d{bottom:440.489485pt;}
.y144{bottom:441.653718pt;}
.y96{bottom:441.770142pt;}
.y1a{bottom:442.632276pt;}
.y176{bottom:445.374797pt;}
.y163{bottom:446.085731pt;}
.y214{bottom:446.390013pt;}
.ycd{bottom:447.658014pt;}
.y10a{bottom:447.849743pt;}
.y1a4{bottom:448.488150pt;}
.y5a{bottom:452.191185pt;}
.y10c{bottom:453.821484pt;}
.y1ce{bottom:453.822954pt;}
.y143{bottom:454.985718pt;}
.y261{bottom:457.164292pt;}
.y19{bottom:457.296276pt;}
.y213{bottom:457.720013pt;}
.y162{bottom:459.417730pt;}
.ycc{bottom:460.990013pt;}
.y109{bottom:461.181742pt;}
.y1a3{bottom:461.822818pt;}
.y59{bottom:465.523185pt;}
.y95{bottom:466.991336pt;}
.y10b{bottom:467.153483pt;}
.y1cd{bottom:467.154954pt;}
.y212{bottom:469.050013pt;}
.y175{bottom:469.821620pt;}
.y260{bottom:470.496291pt;}
.y18{bottom:471.960276pt;}
.y161{bottom:472.749730pt;}
.ycb{bottom:474.322013pt;}
.y108{bottom:474.513742pt;}
.y1a2{bottom:475.154817pt;}
.y58{bottom:478.855184pt;}
.y94{bottom:480.323335pt;}
.y211{bottom:480.380013pt;}
.y1cc{bottom:480.486953pt;}
.y174{bottom:483.153620pt;}
.y25f{bottom:483.828291pt;}
.y160{bottom:486.081729pt;}
.y17{bottom:486.624276pt;}
.yca{bottom:487.654012pt;}
.y107{bottom:487.845741pt;}
.y1a1{bottom:488.494821pt;}
.y210{bottom:491.710013pt;}
.y93{bottom:493.655334pt;}
.y1cb{bottom:493.818952pt;}
.y173{bottom:496.485619pt;}
.y25e{bottom:497.160290pt;}
.y15f{bottom:499.413728pt;}
.yc9{bottom:500.987345pt;}
.y106{bottom:501.177740pt;}
.y16{bottom:501.288276pt;}
.y1a0{bottom:501.826820pt;}
.y20f{bottom:503.040013pt;}
.y57{bottom:503.337068pt;}
.y92{bottom:506.987334pt;}
.y1ca{bottom:507.150952pt;}
.y172{bottom:509.817618pt;}
.y25d{bottom:510.492289pt;}
.y12f{bottom:510.781759pt;}
.y15e{bottom:512.745728pt;}
.yc8{bottom:514.320679pt;}
.y20e{bottom:514.370013pt;}
.y105{bottom:514.509739pt;}
.y19f{bottom:515.158819pt;}
.y15{bottom:515.952276pt;}
.y56{bottom:516.679740pt;}
.y91{bottom:520.319333pt;}
.y1c9{bottom:520.484285pt;}
.y171{bottom:523.156288pt;}
.y25c{bottom:523.824288pt;}
.y12e{bottom:524.113758pt;}
.y20d{bottom:525.700013pt;}
.y104{bottom:527.841739pt;}
.y19e{bottom:528.490819pt;}
.y55{bottom:530.011739pt;}
.y14{bottom:530.616276pt;}
.y90{bottom:533.651332pt;}
.y1c8{bottom:533.816284pt;}
.y170{bottom:536.488287pt;}
.y20c{bottom:537.030013pt;}
.y25b{bottom:537.156288pt;}
.y12d{bottom:537.445757pt;}
.yc7{bottom:541.049468pt;}
.y103{bottom:541.173738pt;}
.y19d{bottom:541.822818pt;}
.y54{bottom:543.343738pt;}
.y13{bottom:545.280276pt;}
.y8f{bottom:546.983332pt;}
.y20b{bottom:548.360013pt;}
.y16f{bottom:549.820286pt;}
.y25a{bottom:550.488287pt;}
.y12c{bottom:550.777756pt;}
.yc6{bottom:554.381467pt;}
.y102{bottom:554.505737pt;}
.y19c{bottom:555.154817pt;}
.y53{bottom:556.675738pt;}
.y20a{bottom:559.690014pt;}
.y12{bottom:559.944276pt;}
.y8e{bottom:560.315331pt;}
.y16e{bottom:563.152286pt;}
.y259{bottom:563.820286pt;}
.y12b{bottom:564.109756pt;}
.yc5{bottom:567.713466pt;}
.y19b{bottom:568.486816pt;}
.y52{bottom:570.007737pt;}
.y209{bottom:571.020014pt;}
.y8d{bottom:573.647330pt;}
.y11{bottom:574.608276pt;}
.y16d{bottom:576.484285pt;}
.y258{bottom:577.152286pt;}
.y12a{bottom:577.441755pt;}
.yc4{bottom:581.045465pt;}
.y208{bottom:582.350014pt;}
.y51{bottom:583.339736pt;}
.y8c{bottom:586.979329pt;}
.y1ea{bottom:589.493725pt;}
.y16c{bottom:589.816284pt;}
.y257{bottom:590.484285pt;}
.y129{bottom:590.773754pt;}
.y207{bottom:593.680014pt;}
.yc3{bottom:594.377465pt;}
.y50{bottom:596.671735pt;}
.yf{bottom:601.274942pt;}
.y1e9{bottom:602.825724pt;}
.y256{bottom:603.816284pt;}
.y128{bottom:604.105754pt;}
.y206{bottom:605.010014pt;}
.y10{bottom:605.808268pt;}
.yc2{bottom:607.709464pt;}
.y4f{bottom:610.003735pt;}
.y8b{bottom:612.191185pt;}
.y205{bottom:616.340014pt;}
.y255{bottom:617.149618pt;}
.yd{bottom:617.274942pt;}
.y1c7{bottom:620.805743pt;}
.yc1{bottom:621.041463pt;}
.ye{bottom:621.808268pt;}
.y4e{bottom:623.335734pt;}
.y8a{bottom:625.523185pt;}
.y204{bottom:627.670014pt;}
.yb{bottom:633.274942pt;}
.y1c6{bottom:634.137742pt;}
.y4d{bottom:636.669067pt;}
.yc{bottom:637.808268pt;}
.y89{bottom:638.855184pt;}
.y203{bottom:639.000014pt;}
.y19a{bottom:639.520418pt;}
.y254{bottom:641.246241pt;}
.y1c5{bottom:647.469741pt;}
.yc0{bottom:647.764794pt;}
.ya{bottom:649.274942pt;}
.y202{bottom:650.330014pt;}
.y253{bottom:652.576241pt;}
.y199{bottom:652.861715pt;}
.y1c4{bottom:660.801740pt;}
.ybf{bottom:661.096793pt;}
.y4c{bottom:661.158915pt;}
.y201{bottom:661.660014pt;}
.y252{bottom:663.906241pt;}
.y88{bottom:664.069708pt;}
.y8{bottom:665.274943pt;}
.y198{bottom:666.193714pt;}
.y9{bottom:669.808268pt;}
.y200{bottom:672.990015pt;}
.y1c3{bottom:674.133740pt;}
.ybe{bottom:674.430289pt;}
.y4b{bottom:674.490914pt;}
.y251{bottom:675.236241pt;}
.y87{bottom:677.401707pt;}
.y197{bottom:679.525713pt;}
.y1ff{bottom:684.320015pt;}
.y250{bottom:686.566241pt;}
.y1c2{bottom:687.465739pt;}
.ybd{bottom:687.768959pt;}
.y4a{bottom:687.822914pt;}
.y86{bottom:690.733707pt;}
.y196{bottom:692.857713pt;}
.y7{bottom:694.592232pt;}
.y1fe{bottom:695.650015pt;}
.y24f{bottom:697.896241pt;}
.ybc{bottom:701.100958pt;}
.y49{bottom:701.154913pt;}
.y85{bottom:704.065706pt;}
.y195{bottom:706.189712pt;}
.y1fd{bottom:706.980015pt;}
.y24e{bottom:709.226241pt;}
.ybb{bottom:714.432957pt;}
.y48{bottom:714.486912pt;}
.y84{bottom:717.397705pt;}
.y1fc{bottom:718.310015pt;}
.y194{bottom:719.521711pt;}
.y24d{bottom:720.556241pt;}
.yba{bottom:727.764957pt;}
.y47{bottom:727.818912pt;}
.y1fb{bottom:729.640015pt;}
.y24c{bottom:731.886241pt;}
.y193{bottom:732.853710pt;}
.y6{bottom:734.597566pt;}
.y1fa{bottom:740.970015pt;}
.yb9{bottom:741.096956pt;}
.y46{bottom:741.150911pt;}
.y83{bottom:742.615101pt;}
.y24b{bottom:743.216241pt;}
.y192{bottom:746.185710pt;}
.y1f9{bottom:752.300015pt;}
.yb8{bottom:754.434291pt;}
.y45{bottom:754.484244pt;}
.y24a{bottom:754.546242pt;}
.y82{bottom:755.947100pt;}
.y1f8{bottom:763.630015pt;}
.y249{bottom:765.876242pt;}
.yb7{bottom:767.766291pt;}
.y44{bottom:767.817578pt;}
.y81{bottom:769.279099pt;}
.y5{bottom:774.602901pt;}
.y1f7{bottom:774.960015pt;}
.y248{bottom:777.206242pt;}
.yb6{bottom:781.098290pt;}
.y43{bottom:781.154913pt;}
.y80{bottom:782.611099pt;}
.y1f6{bottom:786.290016pt;}
.y247{bottom:788.536242pt;}
.yb5{bottom:794.430289pt;}
.y42{bottom:794.486912pt;}
.y7f{bottom:795.943098pt;}
.y1f5{bottom:797.620016pt;}
.y246{bottom:799.866242pt;}
.yb4{bottom:807.762288pt;}
.y41{bottom:807.818912pt;}
.y1f4{bottom:808.950016pt;}
.y7e{bottom:809.275097pt;}
.y245{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y1f3{bottom:820.280016pt;}
.y40{bottom:821.150911pt;}
.y244{bottom:822.526242pt;}
.y7d{bottom:822.609764pt;}
.y33{bottom:823.475179pt;}
.y1f2{bottom:831.610016pt;}
.y243{bottom:833.856242pt;}
.y3f{bottom:834.484244pt;}
.yb3{bottom:834.485578pt;}
.y7c{bottom:835.941764pt;}
.y1f1{bottom:842.940016pt;}
.y242{bottom:845.186242pt;}
.y3e{bottom:847.817578pt;}
.y7b{bottom:849.273763pt;}
.y1f0{bottom:854.270016pt;}
.y241{bottom:856.516242pt;}
.yb2{bottom:861.150911pt;}
.y3d{bottom:861.152245pt;}
.y1ef{bottom:865.600016pt;}
.y240{bottom:867.846243pt;}
.y3c{bottom:874.484244pt;}
.yb1{bottom:874.485578pt;}
.y7a{bottom:874.492249pt;}
.y1ee{bottom:876.933350pt;}
.y23f{bottom:879.176243pt;}
.yb0{bottom:887.817578pt;}
.y3b{bottom:887.820246pt;}
.y79{bottom:887.824248pt;}
.y23e{bottom:890.506243pt;}
.y3a{bottom:901.152245pt;}
.y78{bottom:901.156247pt;}
.y23d{bottom:901.836243pt;}
.y1ed{bottom:903.154910pt;}
.y23c{bottom:913.166243pt;}
.y39{bottom:914.484244pt;}
.y77{bottom:914.488246pt;}
.y1ec{bottom:916.482910pt;}
.y23b{bottom:924.496243pt;}
.y38{bottom:927.817578pt;}
.y76{bottom:927.820246pt;}
.y23a{bottom:935.826243pt;}
.y37{bottom:941.150911pt;}
.y75{bottom:941.152245pt;}
.y239{bottom:947.156243pt;}
.y1eb{bottom:954.482910pt;}
.y36{bottom:954.484244pt;}
.y238{bottom:958.486243pt;}
.y35{bottom:967.816243pt;}
.y237{bottom:969.816243pt;}
.y34{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h6{height:24.933594pt;}
.h1a{height:31.461333pt;}
.hd{height:32.605469pt;}
.h8{height:34.523438pt;}
.hc{height:36.585552pt;}
.h2{height:38.346667pt;}
.h12{height:38.359375pt;}
.h4{height:39.305333pt;}
.h1d{height:39.560000pt;}
.h1c{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1b{height:40.960000pt;}
.h11{height:42.181333pt;}
.h15{height:42.195312pt;}
.h7{height:43.066897pt;}
.h9{height:47.472000pt;}
.h16{height:48.063983pt;}
.h17{height:48.069238pt;}
.h10{height:48.074655pt;}
.h18{height:48.085328pt;}
.ha{height:48.090664pt;}
.h19{height:48.090684pt;}
.hf{height:48.096000pt;}
.h14{height:49.152000pt;}
.h13{height:51.412813pt;}
.he{height:69.024000pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.xb{left:125.291331pt;}
.x4{left:207.516805pt;}
.xc{left:223.517184pt;}
.x10{left:267.195475pt;}
.x9{left:303.142273pt;}
.x7{left:329.045858pt;}
.x5{left:371.584920pt;}
.xa{left:401.806803pt;}
.x6{left:506.764648pt;}
.x3{left:519.632528pt;}
.x8{left:543.149211pt;}
.xe{left:725.336507pt;}
.xf{left:726.469482pt;}
.xd{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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