
    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_20351ec65726addf5323d493.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_541fe304e08c9c00430612a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3a7a4b17860fa308474fc429.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_0f0acacaa6cb138299520c87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c642ef06f71d525061c442e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_7076603c3c6f376ed5c4d1fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.510000;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_869268eb56635ed0ffaacc84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_324e00536eca16af387a9053.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.131000;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_5f2aeb727b5b8bc6deb7e4a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_29d902dbeb57304ad65269ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.457000;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_94db2ebd1da77565d2713cf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689000;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_28a39f84c055f6591e5f1848.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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_91aea35a9e3d01293c8e4e9b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.264000;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_634cbb9350914ed46727d52e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.287707px;}
.ls5a{letter-spacing:-1.238385px;}
.ls5f{letter-spacing:-1.233585px;}
.ls10{letter-spacing:-1.205388px;}
.ls4a{letter-spacing:-1.204785px;}
.ls17{letter-spacing:-1.181868px;}
.ls60{letter-spacing:-1.175985px;}
.ls63{letter-spacing:-1.171185px;}
.ls59{letter-spacing:-1.166385px;}
.ls5b{letter-spacing:-1.161585px;}
.ls61{letter-spacing:-1.151986px;}
.ls80{letter-spacing:-1.146588px;}
.ls65{letter-spacing:-1.142386px;}
.ls19{letter-spacing:-1.140708px;}
.ls5d{letter-spacing:-1.137586px;}
.ls64{letter-spacing:-1.132786px;}
.ls85{letter-spacing:-1.123069px;}
.ls37{letter-spacing:-1.117189px;}
.ls5c{letter-spacing:-1.108786px;}
.ls34{letter-spacing:-1.105429px;}
.ls81{letter-spacing:-1.099549px;}
.lse{letter-spacing:-1.093663px;}
.ls7d{letter-spacing:-1.087789px;}
.lsb{letter-spacing:-1.081909px;}
.ls7f{letter-spacing:-1.076029px;}
.ls5e{letter-spacing:-1.070387px;}
.lsd{letter-spacing:-1.070149px;}
.ls30{letter-spacing:-1.064269px;}
.ls12{letter-spacing:-1.058389px;}
.ls86{letter-spacing:-1.052509px;}
.ls82{letter-spacing:-1.046629px;}
.ls62{letter-spacing:-1.046387px;}
.ls15{letter-spacing:-1.040749px;}
.ls33{letter-spacing:-1.034869px;}
.ls2{letter-spacing:-1.028990px;}
.ls83{letter-spacing:-1.023110px;}
.ls11{letter-spacing:-1.017230px;}
.ls13{letter-spacing:-1.011350px;}
.ls35{letter-spacing:-1.005470px;}
.ls18{letter-spacing:-0.999590px;}
.ls84{letter-spacing:-0.981950px;}
.ls7c{letter-spacing:-0.976070px;}
.ls7e{letter-spacing:-0.958424px;}
.ls8b{letter-spacing:-0.893751px;}
.ls78{letter-spacing:-0.887871px;}
.ls2b{letter-spacing:-0.881991px;}
.ls1b{letter-spacing:-0.829072px;}
.ls2e{letter-spacing:-0.799672px;}
.ls2f{letter-spacing:-0.746752px;}
.ls46{letter-spacing:-0.734993px;}
.ls2d{letter-spacing:-0.729113px;}
.ls2a{letter-spacing:-0.682067px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000038px;}
.ls8d{letter-spacing:0.044968px;}
.ls95{letter-spacing:0.045032px;}
.ls6b{letter-spacing:0.058752px;}
.ls7{letter-spacing:0.058812px;}
.ls7b{letter-spacing:0.095983px;}
.ls87{letter-spacing:0.117553px;}
.ls28{letter-spacing:0.117613px;}
.lsa{letter-spacing:0.143987px;}
.ls77{letter-spacing:0.144000px;}
.ls7a{letter-spacing:0.144047px;}
.ls27{letter-spacing:0.176400px;}
.ls8{letter-spacing:0.192040px;}
.ls22{letter-spacing:0.352778px;}
.ls56{letter-spacing:0.352798px;}
.ls94{letter-spacing:0.404969px;}
.ls91{letter-spacing:0.486000px;}
.ls92{letter-spacing:0.557993px;}
.ls97{letter-spacing:0.611992px;}
.ls90{letter-spacing:0.616492px;}
.ls93{letter-spacing:0.620992px;}
.ls8f{letter-spacing:0.629992px;}
.ls96{letter-spacing:0.643491px;}
.ls8e{letter-spacing:0.810001px;}
.ls38{letter-spacing:5.680022px;}
.ls4b{letter-spacing:6.938351px;}
.ls42{letter-spacing:10.642691px;}
.ls3b{letter-spacing:11.642291px;}
.ls88{letter-spacing:11.924860px;}
.ls3a{letter-spacing:11.995091px;}
.ls44{letter-spacing:12.431800px;}
.ls45{letter-spacing:12.431860px;}
.ls54{letter-spacing:13.347431px;}
.ls89{letter-spacing:13.499777px;}
.ls55{letter-spacing:13.700231px;}
.ls53{letter-spacing:13.700291px;}
.ls14{letter-spacing:14.053057px;}
.ls4{letter-spacing:14.288278px;}
.ls31{letter-spacing:14.447820px;}
.ls9{letter-spacing:14.495800px;}
.ls6d{letter-spacing:14.495860px;}
.ls32{letter-spacing:14.543810px;}
.ls1a{letter-spacing:14.735130px;}
.ls36{letter-spacing:14.929168px;}
.ls6{letter-spacing:14.935018px;}
.ls5{letter-spacing:14.935078px;}
.ls3{letter-spacing:15.640618px;}
.ls4c{letter-spacing:15.640678px;}
.lsf{letter-spacing:15.752359px;}
.ls43{letter-spacing:16.640218px;}
.ls70{letter-spacing:16.757831px;}
.ls0{letter-spacing:17.051798px;}
.ls6a{letter-spacing:17.698618px;}
.ls1d{letter-spacing:17.816231px;}
.ls39{letter-spacing:17.992618px;}
.ls72{letter-spacing:18.345358px;}
.ls75{letter-spacing:18.463031px;}
.ls8c{letter-spacing:18.515280px;}
.ls1e{letter-spacing:18.815831px;}
.ls49{letter-spacing:19.156845px;}
.ls4d{letter-spacing:19.344958px;}
.ls57{letter-spacing:19.697818px;}
.ls2c{letter-spacing:20.515111px;}
.ls1c{letter-spacing:20.520971px;}
.ls4e{letter-spacing:21.050218px;}
.ls26{letter-spacing:21.167771px;}
.ls58{letter-spacing:21.879257px;}
.ls29{letter-spacing:21.990960px;}
.ls16{letter-spacing:22.555450px;}
.ls67{letter-spacing:22.578971px;}
.ls6e{letter-spacing:22.755358px;}
.ls73{letter-spacing:23.578511px;}
.ls74{letter-spacing:23.578571px;}
.ls3d{letter-spacing:23.813758px;}
.ls3f{letter-spacing:24.578171px;}
.ls3e{letter-spacing:24.930911px;}
.ls51{letter-spacing:25.518958px;}
.ls6f{letter-spacing:25.812898px;}
.ls50{letter-spacing:25.812958px;}
.ls69{letter-spacing:26.165758px;}
.ls76{letter-spacing:26.871298px;}
.ls79{letter-spacing:26.977165px;}
.ls52{letter-spacing:27.165358px;}
.ls3c{letter-spacing:27.518158px;}
.ls41{letter-spacing:27.870958px;}
.ls6c{letter-spacing:28.576498px;}
.ls48{letter-spacing:28.682347px;}
.ls25{letter-spacing:28.988078px;}
.ls24{letter-spacing:29.046911px;}
.ls66{letter-spacing:30.399311px;}
.ls40{letter-spacing:30.928498px;}
.ls71{letter-spacing:32.280898px;}
.ls47{letter-spacing:33.445099px;}
.ls68{letter-spacing:35.338438px;}
.ls4f{letter-spacing:38.396038px;}
.ls8a{letter-spacing:41.312458px;}
.ls23{letter-spacing:50.449871px;}
.ls20{letter-spacing:50.449931px;}
.ls21{letter-spacing:50.567471px;}
.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;}
}
.ws1af{word-spacing:-41.371258px;}
.ws115{word-spacing:-33.503898px;}
.ws118{word-spacing:-28.741147px;}
.ws17e{word-spacing:-27.035964px;}
.ws56{word-spacing:-22.614249px;}
.ws138{word-spacing:-21.938056px;}
.ws83{word-spacing:-20.573910px;}
.ws11a{word-spacing:-19.215644px;}
.ws1dc{word-spacing:-18.577080px;}
.ws4f{word-spacing:-15.811159px;}
.wsf6{word-spacing:-14.987967px;}
.ws5d{word-spacing:-14.793929px;}
.ws54{word-spacing:-14.111856px;}
.ws11{word-spacing:-0.061800px;}
.ws17{word-spacing:-0.058799px;}
.ws49{word-spacing:-0.047999px;}
.ws3a{word-spacing:-0.044999px;}
.ws43{word-spacing:-0.041999px;}
.ws4a{word-spacing:0.000000px;}
.ws114{word-spacing:0.676193px;}
.ws5e{word-spacing:0.770272px;}
.ws82{word-spacing:0.823192px;}
.ws52{word-spacing:0.999590px;}
.ws4d{word-spacing:1.011350px;}
.ws58{word-spacing:1.023110px;}
.ws50{word-spacing:1.146588px;}
.ws163{word-spacing:9.525506px;}
.ws1d6{word-spacing:11.159851px;}
.ws1d5{word-spacing:11.204851px;}
.ws1d2{word-spacing:11.294849px;}
.ws1d7{word-spacing:11.384848px;}
.ws11f{word-spacing:11.519856px;}
.ws11b{word-spacing:11.567855px;}
.ws1d4{word-spacing:11.744843px;}
.ws1d3{word-spacing:11.789843px;}
.ws11c{word-spacing:11.807852px;}
.ws11e{word-spacing:11.855852px;}
.ws39{word-spacing:11.879842px;}
.ws44{word-spacing:12.305824px;}
.ws11d{word-spacing:12.335846px;}
.ws3f{word-spacing:12.431822px;}
.ws45{word-spacing:12.515821px;}
.ws46{word-spacing:12.599820px;}
.ws42{word-spacing:12.683819px;}
.ws41{word-spacing:12.809817px;}
.ws40{word-spacing:12.893816px;}
.ws1e4{word-spacing:13.229824px;}
.ws1dd{word-spacing:13.229827px;}
.ws1cb{word-spacing:13.274823px;}
.ws3e{word-spacing:13.319822px;}
.ws3d{word-spacing:13.364822px;}
.ws1d1{word-spacing:13.409821px;}
.ws1ca{word-spacing:13.454821px;}
.ws1cf{word-spacing:13.499820px;}
.ws1ce{word-spacing:13.544819px;}
.ws3b{word-spacing:13.589819px;}
.ws1cc{word-spacing:13.634818px;}
.ws1d9{word-spacing:13.679818px;}
.ws1cd{word-spacing:13.724817px;}
.ws1d0{word-spacing:13.769816px;}
.ws106{word-spacing:13.775828px;}
.ws14a{word-spacing:13.790228px;}
.ws14f{word-spacing:13.814227px;}
.ws1d8{word-spacing:13.814816px;}
.ws7c{word-spacing:13.823827px;}
.ws1db{word-spacing:13.859815px;}
.ws78{word-spacing:13.871827px;}
.ws147{word-spacing:13.876627px;}
.ws151{word-spacing:13.900626px;}
.ws1da{word-spacing:13.904815px;}
.ws105{word-spacing:13.919826px;}
.ws3c{word-spacing:13.949814px;}
.ws103{word-spacing:13.967825px;}
.ws146{word-spacing:13.977425px;}
.ws144{word-spacing:13.982225px;}
.ws150{word-spacing:13.987025px;}
.ws14d{word-spacing:13.991825px;}
.ws148{word-spacing:14.001425px;}
.ws152{word-spacing:14.006225px;}
.ws104{word-spacing:14.015825px;}
.ws108{word-spacing:14.063798px;}
.ws79{word-spacing:14.063824px;}
.ws47{word-spacing:14.063858px;}
.ws14b{word-spacing:14.073424px;}
.ws14e{word-spacing:14.078224px;}
.ws14c{word-spacing:14.097424px;}
.ws162{word-spacing:14.111824px;}
.ws7a{word-spacing:14.159823px;}
.ws149{word-spacing:14.164623px;}
.ws8b{word-spacing:14.170655px;}
.ws145{word-spacing:14.198223px;}
.ws48{word-spacing:14.207822px;}
.ws7b{word-spacing:14.255822px;}
.ws107{word-spacing:14.351821px;}
.ws1ac{word-spacing:14.399820px;}
.ws197{word-spacing:14.447819px;}
.ws2d{word-spacing:14.817449px;}
.ws186{word-spacing:14.876248px;}
.ws121{word-spacing:14.935048px;}
.ws120{word-spacing:14.993847px;}
.ws29{word-spacing:15.052646px;}
.ws7d{word-spacing:15.170245px;}
.wsaf{word-spacing:15.229045px;}
.wsa6{word-spacing:15.287844px;}
.ws122{word-spacing:15.346629px;}
.ws123{word-spacing:15.405398px;}
.ws1a{word-spacing:15.405443px;}
.ws61{word-spacing:15.523042px;}
.ws19{word-spacing:15.581841px;}
.ws17a{word-spacing:15.640640px;}
.ws35{word-spacing:15.817039px;}
.ws97{word-spacing:15.875838px;}
.ws53{word-spacing:15.946397px;}
.wsab{word-spacing:15.993395px;}
.wsa8{word-spacing:15.993437px;}
.ws10d{word-spacing:16.052236px;}
.ws90{word-spacing:16.169835px;}
.ws8f{word-spacing:16.228634px;}
.ws10e{word-spacing:16.346229px;}
.ws98{word-spacing:16.346291px;}
.ws99{word-spacing:16.463832px;}
.ws5c{word-spacing:16.463854px;}
.ws87{word-spacing:16.522631px;}
.ws51{word-spacing:16.540271px;}
.ws1b5{word-spacing:16.575551px;}
.ws17b{word-spacing:16.581431px;}
.ws22{word-spacing:16.757829px;}
.ws20{word-spacing:16.875428px;}
.ws10b{word-spacing:16.934227px;}
.ws18b{word-spacing:16.963627px;}
.ws1a4{word-spacing:16.969501px;}
.wsfa{word-spacing:16.993027px;}
.wse5{word-spacing:17.110625px;}
.ws21{word-spacing:17.169425px;}
.ws59{word-spacing:17.181185px;}
.ws183{word-spacing:17.228224px;}
.ws92{word-spacing:17.287024px;}
.ws1e2{word-spacing:17.297769px;}
.ws1df{word-spacing:17.324769px;}
.ws77{word-spacing:17.345823px;}
.ws5a{word-spacing:17.351703px;}
.ws1e3{word-spacing:17.378768px;}
.ws1e0{word-spacing:17.383268px;}
.ws1a0{word-spacing:17.392863px;}
.ws1e1{word-spacing:17.396768px;}
.ws142{word-spacing:17.404622px;}
.ws172{word-spacing:17.463422px;}
.ws19c{word-spacing:17.475182px;}
.wse3{word-spacing:17.522221px;}
.ws130{word-spacing:17.522258px;}
.ws1c8{word-spacing:17.580989px;}
.ws9e{word-spacing:17.581021px;}
.ws4e{word-spacing:17.616245px;}
.ws171{word-spacing:17.639792px;}
.wsf9{word-spacing:17.639820px;}
.ws69{word-spacing:17.698619px;}
.ws1c7{word-spacing:17.698630px;}
.wsa9{word-spacing:17.745657px;}
.ws37{word-spacing:17.757419px;}
.wsd3{word-spacing:17.816197px;}
.ws134{word-spacing:17.816218px;}
.wsa{word-spacing:17.820178px;}
.ws75{word-spacing:17.875018px;}
.wsd{word-spacing:17.880179px;}
.ws188{word-spacing:17.910297px;}
.ws15b{word-spacing:17.933792px;}
.ws2e{word-spacing:17.933817px;}
.ws18c{word-spacing:17.951451px;}
.ws5f{word-spacing:17.992616px;}
.ws15e{word-spacing:17.992620px;}
.ws9{word-spacing:18.000180px;}
.ws18a{word-spacing:18.010256px;}
.wsfd{word-spacing:18.051416px;}
.ws15f{word-spacing:18.110215px;}
.ws8{word-spacing:18.120181px;}
.ws1b7{word-spacing:18.169015px;}
.wsf{word-spacing:18.180182px;}
.ws9a{word-spacing:18.227814px;}
.ws65{word-spacing:18.286613px;}
.wsb{word-spacing:18.300183px;}
.wsc{word-spacing:18.300187px;}
.ws1de{word-spacing:18.314756px;}
.ws96{word-spacing:18.345413px;}
.ws66{word-spacing:18.404212px;}
.ws17d{word-spacing:18.404273px;}
.wse{word-spacing:18.420179px;}
.ws10{word-spacing:18.420207px;}
.ws74{word-spacing:18.463012px;}
.ws1c9{word-spacing:18.478200px;}
.ws109{word-spacing:18.580610px;}
.ws7{word-spacing:18.600220px;}
.ws1c6{word-spacing:18.601800px;}
.ws1a9{word-spacing:18.633530px;}
.ws1a6{word-spacing:18.657050px;}
.wsb9{word-spacing:18.698158px;}
.wsd4{word-spacing:18.787200px;}
.ws5b{word-spacing:18.839328px;}
.ws18f{word-spacing:18.856968px;}
.ws1d{word-spacing:18.874607px;}
.ws1c{word-spacing:18.933407px;}
.wsba{word-spacing:18.933411px;}
.ws9f{word-spacing:18.945191px;}
.ws12e{word-spacing:18.992206px;}
.ws18e{word-spacing:19.009846px;}
.ws30{word-spacing:19.051006px;}
.ws9d{word-spacing:19.109805px;}
.wsae{word-spacing:19.109806px;}
.wsbb{word-spacing:19.168604px;}
.ws33{word-spacing:19.227404px;}
.ws125{word-spacing:19.345003px;}
.ws1a7{word-spacing:19.350883px;}
.ws93{word-spacing:19.462601px;}
.wsf4{word-spacing:19.539041px;}
.ws60{word-spacing:19.580200px;}
.ws6{word-spacing:19.602178px;}
.ws1a8{word-spacing:19.627240px;}
.ws62{word-spacing:19.639000px;}
.ws5{word-spacing:19.668179px;}
.wsc0{word-spacing:19.697799px;}
.ws4{word-spacing:19.800180px;}
.ws13{word-spacing:19.815398px;}
.ws3{word-spacing:19.866181px;}
.wsd2{word-spacing:19.874197px;}
.wsfb{word-spacing:19.932997px;}
.ws86{word-spacing:19.991786px;}
.wsf1{word-spacing:20.038836px;}
.ws85{word-spacing:20.050595px;}
.ws18{word-spacing:20.109395px;}
.ws10c{word-spacing:20.168194px;}
.wsf2{word-spacing:20.191714px;}
.ws84{word-spacing:20.226992px;}
.wse6{word-spacing:20.226994px;}
.wsd0{word-spacing:20.285793px;}
.ws16b{word-spacing:20.403392px;}
.ws180{word-spacing:20.462190px;}
.ws8d{word-spacing:20.462191px;}
.wsaa{word-spacing:20.520991px;}
.ws179{word-spacing:20.579790px;}
.wsef{word-spacing:20.615070px;}
.ws124{word-spacing:20.638589px;}
.ws19e{word-spacing:20.703269px;}
.ws16{word-spacing:20.756188px;}
.ws1c0{word-spacing:20.814988px;}
.wsad{word-spacing:20.838480px;}
.ws81{word-spacing:20.873775px;}
.ws6b{word-spacing:20.873787px;}
.ws31{word-spacing:20.932586px;}
.ws128{word-spacing:20.991374px;}
.ws129{word-spacing:20.991386px;}
.wsf7{word-spacing:21.050185px;}
.ws36{word-spacing:21.108985px;}
.ws71{word-spacing:21.167784px;}
.wsd1{word-spacing:21.226583px;}
.wsac{word-spacing:21.285383px;}
.ws4b{word-spacing:21.367702px;}
.wsc8{word-spacing:21.461781px;}
.wscf{word-spacing:21.520580px;}
.ws198{word-spacing:21.544100px;}
.ws4c{word-spacing:21.749898px;}
.ws80{word-spacing:21.814577px;}
.wsd7{word-spacing:21.873377px;}
.ws139{word-spacing:21.932176px;}
.ws73{word-spacing:21.990976px;}
.wsd6{word-spacing:22.049775px;}
.ws38{word-spacing:22.108574px;}
.wsb5{word-spacing:22.226173px;}
.ws1c4{word-spacing:22.284973px;}
.ws72{word-spacing:22.343772px;}
.ws193{word-spacing:22.373172px;}
.ws137{word-spacing:22.402596px;}
.ws1a5{word-spacing:22.408451px;}
.wse8{word-spacing:22.461371px;}
.wsce{word-spacing:22.520170px;}
.ws165{word-spacing:22.578970px;}
.ws2f{word-spacing:22.637769px;}
.ws7e{word-spacing:22.696568px;}
.ws194{word-spacing:22.737728px;}
.ws6a{word-spacing:22.755368px;}
.ws10f{word-spacing:22.814167px;}
.ws19d{word-spacing:22.837687px;}
.ws153{word-spacing:22.872967px;}
.ws64{word-spacing:22.931766px;}
.ws7f{word-spacing:22.967040px;}
.ws158{word-spacing:22.990565px;}
.ws63{word-spacing:23.049365px;}
.wsa0{word-spacing:23.108164px;}
.ws17c{word-spacing:23.166964px;}
.ws13a{word-spacing:23.225763px;}
.wsb7{word-spacing:23.343362px;}
.ws13c{word-spacing:23.402160px;}
.ws70{word-spacing:23.460961px;}
.ws26{word-spacing:23.578559px;}
.ws0{word-spacing:23.634000px;}
.ws176{word-spacing:23.637359px;}
.ws189{word-spacing:23.672638px;}
.wsea{word-spacing:23.872556px;}
.ws14{word-spacing:23.990155px;}
.ws192{word-spacing:24.025429px;}
.wsdf{word-spacing:24.048955px;}
.wsa1{word-spacing:24.166553px;}
.wsf5{word-spacing:24.231233px;}
.wscb{word-spacing:24.284152px;}
.ws191{word-spacing:24.295912px;}
.ws190{word-spacing:24.319426px;}
.ws57{word-spacing:24.354711px;}
.ws12f{word-spacing:24.401751px;}
.ws1b4{word-spacing:24.478190px;}
.ws55{word-spacing:24.501710px;}
.ws181{word-spacing:24.578149px;}
.ws1b8{word-spacing:24.636949px;}
.ws132{word-spacing:24.813347px;}
.ws1b9{word-spacing:24.872146px;}
.ws133{word-spacing:24.930946px;}
.ws187{word-spacing:24.954465px;}
.ws1f{word-spacing:25.048544px;}
.ws167{word-spacing:25.166143px;}
.wsc7{word-spacing:25.224943px;}
.ws10a{word-spacing:25.283742px;}
.ws184{word-spacing:25.401341px;}
.wsd5{word-spacing:25.460140px;}
.wsa5{word-spacing:25.518940px;}
.wsa7{word-spacing:25.577739px;}
.ws16c{word-spacing:25.636538px;}
.ws131{word-spacing:25.695338px;}
.ws112{word-spacing:25.754137px;}
.wse9{word-spacing:25.795297px;}
.ws119{word-spacing:25.871736px;}
.ws1c2{word-spacing:25.930535px;}
.wsde{word-spacing:25.989335px;}
.ws170{word-spacing:26.048134px;}
.ws19b{word-spacing:26.089294px;}
.wse0{word-spacing:26.106934px;}
.ws2b{word-spacing:26.165733px;}
.wsdd{word-spacing:26.224532px;}
.ws166{word-spacing:26.400972px;}
.wsc6{word-spacing:26.459730px;}
.ws195{word-spacing:26.483250px;}
.wsc5{word-spacing:26.518529px;}
.ws17f{word-spacing:26.564378px;}
.wsb4{word-spacing:26.636128px;}
.wsdc{word-spacing:26.694912px;}
.wsbe{word-spacing:26.694928px;}
.ws1bb{word-spacing:26.753727px;}
.wsbf{word-spacing:26.812526px;}
.ws117{word-spacing:26.812535px;}
.ws95{word-spacing:26.871326px;}
.wse1{word-spacing:26.930104px;}
.ws12{word-spacing:26.988925px;}
.ws110{word-spacing:26.988944px;}
.wsb6{word-spacing:27.106523px;}
.ws111{word-spacing:27.165323px;}
.ws140{word-spacing:27.258393px;}
.ws141{word-spacing:27.282922px;}
.wse2{word-spacing:27.341721px;}
.ws91{word-spacing:27.400520px;}
.wsb2{word-spacing:27.459307px;}
.ws1bf{word-spacing:27.459320px;}
.wsb3{word-spacing:27.518119px;}
.wsf3{word-spacing:27.553399px;}
.ws1b6{word-spacing:27.576919px;}
.ws94{word-spacing:27.753317px;}
.ws1a3{word-spacing:27.788596px;}
.ws9b{word-spacing:27.812116px;}
.wsb1{word-spacing:27.870868px;}
.ws1ab{word-spacing:27.870916px;}
.ws1b0{word-spacing:27.917955px;}
.ws68{word-spacing:28.047314px;}
.ws67{word-spacing:28.106113px;}
.ws8c{word-spacing:28.223712px;}
.wse7{word-spacing:28.341311px;}
.ws136{word-spacing:28.400110px;}
.ws1b{word-spacing:28.458910px;}
.ws8e{word-spacing:28.517709px;}
.ws9c{word-spacing:28.576503px;}
.wse4{word-spacing:28.635308px;}
.ws76{word-spacing:28.694107px;}
.ws1bd{word-spacing:28.752907px;}
.wsc2{word-spacing:28.870505px;}
.ws1b3{word-spacing:28.876385px;}
.wsc3{word-spacing:28.929298px;}
.ws19f{word-spacing:28.952825px;}
.wsfe{word-spacing:28.988104px;}
.wsc4{word-spacing:29.164502px;}
.wsd8{word-spacing:29.223302px;}
.ws169{word-spacing:29.282101px;}
.wsb8{word-spacing:29.340901px;}
.ws1aa{word-spacing:29.493779px;}
.ws143{word-spacing:29.576098px;}
.wsed{word-spacing:29.634898px;}
.wsd9{word-spacing:29.752496px;}
.ws1c5{word-spacing:29.870095px;}
.ws1bc{word-spacing:29.987694px;}
.ws23{word-spacing:30.105293px;}
.ws12b{word-spacing:30.281691px;}
.ws12a{word-spacing:30.575688px;}
.ws173{word-spacing:30.752086px;}
.ws174{word-spacing:30.752119px;}
.ws6e{word-spacing:30.810886px;}
.ws175{word-spacing:30.869685px;}
.wscd{word-spacing:30.928484px;}
.ws156{word-spacing:30.987284px;}
.ws157{word-spacing:31.046105px;}
.wseb{word-spacing:31.163682px;}
.ws6d{word-spacing:31.340080px;}
.wsf0{word-spacing:31.357720px;}
.ws6f{word-spacing:31.516478px;}
.ws18d{word-spacing:31.651717px;}
.ws13e{word-spacing:31.751676px;}
.ws13d{word-spacing:31.810475px;}
.ws8a{word-spacing:31.869275px;}
.ws32{word-spacing:31.928074px;}
.ws196{word-spacing:32.057433px;}
.ws182{word-spacing:32.163272px;}
.ws16a{word-spacing:32.280871px;}
.ws6c{word-spacing:32.516068px;}
.ws1ba{word-spacing:32.574868px;}
.ws89{word-spacing:32.598387px;}
.ws116{word-spacing:32.751266px;}
.ws24{word-spacing:32.868865px;}
.ws13b{word-spacing:32.927664px;}
.ws102{word-spacing:33.280460px;}
.ws88{word-spacing:33.339260px;}
.ws19a{word-spacing:33.362780px;}
.ws1be{word-spacing:34.221251px;}
.ws113{word-spacing:34.338850px;}
.ws168{word-spacing:34.515248px;}
.ws1c3{word-spacing:34.574047px;}
.ws1a1{word-spacing:34.644606px;}
.wsa2{word-spacing:34.926844px;}
.ws25{word-spacing:35.191441px;}
.ws126{word-spacing:35.279640px;}
.ws127{word-spacing:35.456038px;}
.wscc{word-spacing:35.926433px;}
.ws159{word-spacing:36.102832px;}
.ws1ad{word-spacing:36.161631px;}
.ws101{word-spacing:36.220430px;}
.ws178{word-spacing:36.926023px;}
.ws2a{word-spacing:37.102421px;}
.ws28{word-spacing:37.278820px;}
.ws154{word-spacing:37.337619px;}
.wsa3{word-spacing:37.396372px;}
.ws160{word-spacing:37.396418px;}
.ws161{word-spacing:37.572817px;}
.wsee{word-spacing:37.866814px;}
.wsa4{word-spacing:37.866826px;}
.ws177{word-spacing:37.931493px;}
.ws16e{word-spacing:38.043212px;}
.ws15c{word-spacing:38.102011px;}
.ws12d{word-spacing:38.160811px;}
.wsbd{word-spacing:38.337209px;}
.ws155{word-spacing:38.513607px;}
.ws1c1{word-spacing:38.572406px;}
.ws12c{word-spacing:38.572414px;}
.ws16d{word-spacing:38.748831px;}
.wsdb{word-spacing:39.277999px;}
.wsda{word-spacing:39.395598px;}
.wsc9{word-spacing:39.983592px;}
.ws1a2{word-spacing:39.995352px;}
.wsec{word-spacing:40.689185px;}
.wsf8{word-spacing:40.747984px;}
.wsfc{word-spacing:41.041981px;}
.ws100{word-spacing:41.159580px;}
.ws1ae{word-spacing:41.277179px;}
.ws2c{word-spacing:41.865173px;}
.ws27{word-spacing:42.335568px;}
.wsbc{word-spacing:42.394367px;}
.ws2{word-spacing:42.912179px;}
.ws135{word-spacing:43.276358px;}
.ws1{word-spacing:43.488181px;}
.ws15{word-spacing:44.217149px;}
.wsca{word-spacing:44.746343px;}
.wsff{word-spacing:46.098730px;}
.ws1b1{word-spacing:46.404486px;}
.ws1b2{word-spacing:46.863122px;}
.ws16f{word-spacing:47.392316px;}
.ws13f{word-spacing:48.509505px;}
.wsc1{word-spacing:50.743882px;}
.ws15d{word-spacing:51.331876px;}
.wsb0{word-spacing:52.331466px;}
.ws34{word-spacing:52.449065px;}
.ws164{word-spacing:53.507454px;}
.ws185{word-spacing:54.801041px;}
.ws199{word-spacing:55.142077px;}
.ws15a{word-spacing:60.857379px;}
.ws1e{word-spacing:64.385343px;}
._32{margin-left:-42.518820px;}
._2b{margin-left:-33.569764px;}
._2c{margin-left:-30.340486px;}
._2d{margin-left:-28.694107px;}
._2f{margin-left:-27.244574px;}
._16{margin-left:-23.696158px;}
._15{margin-left:-22.667179px;}
._1f{margin-left:-21.402982px;}
._1e{margin-left:-19.600618px;}
._11{margin-left:-17.330911px;}
._17{margin-left:-16.072089px;}
._13{margin-left:-15.000686px;}
._29{margin-left:-12.347897px;}
._2a{margin-left:-11.054297px;}
._14{margin-left:-8.564188px;}
._c{margin-left:-6.938299px;}
._b{margin-left:-5.226296px;}
._d{margin-left:-4.115942px;}
._f{margin-left:-2.234377px;}
._9{margin-left:-1.117189px;}
._5{width:1.020010px;}
._12{width:2.032891px;}
._26{width:3.037148px;}
._0{width:8.892000px;}
._1{width:9.906000px;}
._2e{width:11.362740px;}
._33{width:12.464834px;}
._10{width:13.511813px;}
._a{width:14.523452px;}
._1d{width:16.235485px;}
._6{width:17.280173px;}
._4{width:19.320193px;}
._21{width:21.292234px;}
._e{width:22.461371px;}
._18{width:24.284152px;}
._7{width:25.812937px;}
._20{width:26.871326px;}
._8{width:28.811706px;}
._1b{width:30.084872px;}
._1a{width:31.966453px;}
._19{width:33.633257px;}
._28{width:35.082821px;}
._22{width:36.396829px;}
._23{width:38.513792px;}
._25{width:39.748394px;}
._27{width:42.041571px;}
._3{width:44.064184px;}
._30{width:45.075522px;}
._24{width:53.977849px;}
._35{width:64.754137px;}
._34{width:65.879122px;}
._31{width:1230.992645px;}
._1c{width:1255.472225px;}
._2{width:1955.381940px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fs9{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y4a{bottom:65.394090px;}
.y49{bottom:77.384925px;}
.y23a{bottom:89.290245px;}
.y1a4{bottom:89.306145px;}
.y1f9{bottom:89.306160px;}
.y15d{bottom:89.312490px;}
.y10a{bottom:89.313600px;}
.y14d{bottom:89.319945px;}
.y1ab{bottom:89.320860px;}
.y59{bottom:89.321055px;}
.y19a{bottom:89.326290px;}
.y165{bottom:89.327205px;}
.ye9{bottom:89.329635px;}
.yd8{bottom:89.334855px;}
.y114{bottom:89.343015px;}
.y183{bottom:89.349735px;}
.y66{bottom:89.350470px;}
.y134{bottom:89.350875px;}
.yfb{bottom:89.359035px;}
.y48{bottom:89.375745px;}
.ya3{bottom:89.418900px;}
.y47{bottom:101.366580px;}
.y237{bottom:102.811395px;}
.y239{bottom:102.812565px;}
.y1a3{bottom:107.328165px;}
.y1f8{bottom:107.328180px;}
.y15c{bottom:107.334510px;}
.y109{bottom:107.335620px;}
.y14c{bottom:107.341965px;}
.y1aa{bottom:107.342865px;}
.y58{bottom:107.343075px;}
.y199{bottom:107.348310px;}
.y164{bottom:107.349210px;}
.ye8{bottom:107.351655px;}
.yd7{bottom:107.356860px;}
.y113{bottom:107.365020px;}
.y182{bottom:107.371755px;}
.y65{bottom:107.372490px;}
.y133{bottom:107.372880px;}
.yfa{bottom:107.381055px;}
.ya2{bottom:107.440905px;}
.y238{bottom:107.829915px;}
.y46{bottom:113.357400px;}
.y236{bottom:116.333715px;}
.y234{bottom:116.337795px;}
.y235{bottom:121.266165px;}
.y1f7{bottom:125.276700px;}
.y1b8{bottom:125.283030px;}
.yd6{bottom:125.305380px;}
.y1a2{bottom:125.350185px;}
.y15b{bottom:125.356530px;}
.y108{bottom:125.357640px;}
.y14b{bottom:125.363970px;}
.y1a9{bottom:125.364885px;}
.y57{bottom:125.365080px;}
.y198{bottom:125.370315px;}
.y163{bottom:125.371230px;}
.ye7{bottom:125.373675px;}
.y112{bottom:125.387040px;}
.y181{bottom:125.393760px;}
.y64{bottom:125.394495px;}
.y132{bottom:125.394900px;}
.yf9{bottom:125.403075px;}
.ya1{bottom:125.462925px;}
.y231{bottom:129.769095px;}
.y233{bottom:129.770115px;}
.y232{bottom:134.787315px;}
.y45{bottom:138.782169px;}
.y3d{bottom:138.820359px;}
.y22e{bottom:143.290245px;}
.y230{bottom:143.291415px;}
.y1a1{bottom:143.298690px;}
.y1f6{bottom:143.298705px;}
.y15a{bottom:143.305035px;}
.y107{bottom:143.306145px;}
.y14a{bottom:143.312490px;}
.y1a8{bottom:143.313405px;}
.y56{bottom:143.313600px;}
.y197{bottom:143.318835px;}
.y162{bottom:143.319750px;}
.ye6{bottom:143.322195px;}
.yd5{bottom:143.327400px;}
.y111{bottom:143.335560px;}
.y180{bottom:143.342280px;}
.y63{bottom:143.343015px;}
.y131{bottom:143.343420px;}
.yf8{bottom:143.351595px;}
.ya0{bottom:143.411445px;}
.y22f{bottom:148.308615px;}
.y44{bottom:152.304489px;}
.y22d{bottom:156.812565px;}
.y3c{bottom:156.842379px;}
.y1a0{bottom:161.320710px;}
.y1f5{bottom:161.320725px;}
.y159{bottom:161.327055px;}
.y106{bottom:161.328165px;}
.y149{bottom:161.334510px;}
.y1a7{bottom:161.335425px;}
.y55{bottom:161.335620px;}
.y196{bottom:161.340855px;}
.y161{bottom:161.341755px;}
.ye5{bottom:161.344200px;}
.yd4{bottom:161.349420px;}
.y110{bottom:161.357565px;}
.y17f{bottom:161.364300px;}
.y62{bottom:161.365035px;}
.y130{bottom:161.365425px;}
.yf7{bottom:161.373600px;}
.y9f{bottom:161.433450px;}
.y22c{bottom:161.829915px;}
.y43{bottom:165.826809px;}
.y22b{bottom:170.335605px;}
.y42{bottom:170.844159px;}
.y3b{bottom:174.864384px;}
.y1f4{bottom:179.269245px;}
.y1b7{bottom:179.275575px;}
.yd3{bottom:179.297925px;}
.y19f{bottom:179.342730px;}
.y158{bottom:179.349075px;}
.y105{bottom:179.350185px;}
.y41{bottom:179.351889px;}
.y148{bottom:179.356530px;}
.y1a6{bottom:179.357430px;}
.y54{bottom:179.357640px;}
.y195{bottom:179.362860px;}
.y160{bottom:179.363775px;}
.ye4{bottom:179.366220px;}
.y10f{bottom:179.379585px;}
.y17e{bottom:179.386320px;}
.y61{bottom:179.387040px;}
.y12f{bottom:179.387445px;}
.yf6{bottom:179.395620px;}
.y9e{bottom:179.455470px;}
.y40{bottom:192.784209px;}
.y278{bottom:192.794145px;}
.y3a{bottom:192.812904px;}
.y22a{bottom:197.290245px;}
.y19e{bottom:197.291250px;}
.y1f3{bottom:197.291265px;}
.y157{bottom:197.297580px;}
.y104{bottom:197.298690px;}
.y147{bottom:197.305035px;}
.y1a5{bottom:197.305950px;}
.y53{bottom:197.306145px;}
.y194{bottom:197.311380px;}
.y15f{bottom:197.312295px;}
.ye3{bottom:197.314740px;}
.yd2{bottom:197.319945px;}
.y10e{bottom:197.328105px;}
.y17d{bottom:197.334825px;}
.y60{bottom:197.335560px;}
.y12e{bottom:197.335965px;}
.yf5{bottom:197.344140px;}
.y9d{bottom:197.403990px;}
.y3f{bottom:197.801574px;}
.y3e{bottom:206.305509px;}
.y277{bottom:206.316465px;}
.y229{bottom:210.812565px;}
.y39{bottom:210.834924px;}
.y156{bottom:215.319600px;}
.y1f2{bottom:215.319615px;}
.y103{bottom:215.320710px;}
.y146{bottom:215.327055px;}
.y52{bottom:215.328165px;}
.y193{bottom:215.333400px;}
.y15e{bottom:215.334300px;}
.ye2{bottom:215.336745px;}
.yd1{bottom:215.341965px;}
.y10d{bottom:215.350125px;}
.y17c{bottom:215.356845px;}
.y5f{bottom:215.357580px;}
.y12d{bottom:215.357970px;}
.yf4{bottom:215.366145px;}
.y9c{bottom:215.426010px;}
.y276{bottom:219.838785px;}
.y228{bottom:224.333850px;}
.y38{bottom:228.856944px;}
.y1b6{bottom:233.262915px;}
.y275{bottom:233.271105px;}
.yd0{bottom:233.290485px;}
.y102{bottom:233.342730px;}
.y145{bottom:233.349075px;}
.y51{bottom:233.350185px;}
.y192{bottom:233.355420px;}
.ye1{bottom:233.358765px;}
.y10c{bottom:233.372130px;}
.y17b{bottom:233.378865px;}
.y5e{bottom:233.379600px;}
.y12c{bottom:233.379990px;}
.yf3{bottom:233.388165px;}
.y9b{bottom:233.448015px;}
.y274{bottom:246.793425px;}
.y37{bottom:246.805449px;}
.y26{bottom:248.018199px;}
.y101{bottom:251.291250px;}
.y50{bottom:251.298690px;}
.y191{bottom:251.303925px;}
.ye0{bottom:251.307285px;}
.ycf{bottom:251.312490px;}
.y10b{bottom:251.320650px;}
.y17a{bottom:251.327370px;}
.y5d{bottom:251.328105px;}
.y12b{bottom:251.328510px;}
.yf2{bottom:251.336685px;}
.y144{bottom:251.357925px;}
.y9a{bottom:251.396535px;}
.y1f1{bottom:251.396550px;}
.y1b1{bottom:252.328380px;}
.y16b{bottom:254.795595px;}
.y273{bottom:260.315745px;}
.y227{bottom:263.646090px;}
.y36{bottom:264.827469px;}
.y25{bottom:266.040219px;}
.y1b0{bottom:267.292200px;}
.y4f{bottom:269.320710px;}
.y190{bottom:269.325945px;}
.ydf{bottom:269.329305px;}
.yce{bottom:269.334510px;}
.y179{bottom:269.349390px;}
.y5c{bottom:269.350125px;}
.y12a{bottom:269.350530px;}
.y1b5{bottom:269.355345px;}
.yf1{bottom:269.358705px;}
.y143{bottom:269.379945px;}
.y99{bottom:269.418555px;}
.y1f0{bottom:269.418570px;}
.y16a{bottom:269.843400px;}
.y272{bottom:273.838065px;}
.y226{bottom:277.078410px;}
.y1af{bottom:282.256005px;}
.y35{bottom:282.849489px;}
.y24{bottom:284.062239px;}
.y169{bottom:284.807220px;}
.y271{bottom:287.270385px;}
.ycd{bottom:287.283030px;}
.y4e{bottom:287.342730px;}
.y1b3{bottom:287.347965px;}
.yde{bottom:287.351310px;}
.y178{bottom:287.371410px;}
.y5b{bottom:287.372145px;}
.y129{bottom:287.372535px;}
.y1b4{bottom:287.377365px;}
.yf0{bottom:287.380710px;}
.y18f{bottom:287.430225px;}
.y142{bottom:287.431365px;}
.y98{bottom:287.440560px;}
.y1ef{bottom:287.440575px;}
.y1ae{bottom:297.303825px;}
.y168{bottom:299.771025px;}
.y270{bottom:300.792705px;}
.y34{bottom:300.797994px;}
.y23{bottom:302.010744px;}
.y4d{bottom:305.291250px;}
.ydd{bottom:305.299830px;}
.ycc{bottom:305.305035px;}
.y177{bottom:305.319930px;}
.y5a{bottom:305.320650px;}
.y128{bottom:305.321055px;}
.yef{bottom:305.329230px;}
.y18e{bottom:305.378745px;}
.y141{bottom:305.379885px;}
.y97{bottom:305.389080px;}
.y1ee{bottom:305.389095px;}
.y11a{bottom:305.478930px;}
.y225{bottom:307.351755px;}
.y1ad{bottom:312.267630px;}
.y26f{bottom:314.315025px;}
.y167{bottom:314.818845px;}
.y33{bottom:318.820014px;}
.y22{bottom:320.032764px;}
.y119{bottom:320.442750px;}
.y224{bottom:320.874075px;}
.ydc{bottom:323.321850px;}
.ycb{bottom:323.327055px;}
.y176{bottom:323.341935px;}
.y127{bottom:323.343075px;}
.yee{bottom:323.351250px;}
.y18d{bottom:323.400750px;}
.y140{bottom:323.401890px;}
.y96{bottom:323.411100px;}
.y1ed{bottom:323.411115px;}
.y1c3{bottom:326.246175px;}
.y1ac{bottom:327.231450px;}
.y26e{bottom:327.837345px;}
.y166{bottom:329.782650px;}
.y118{bottom:335.490555px;}
.y32{bottom:336.842034px;}
.y21{bottom:338.054784px;}
.y1c2{bottom:341.209980px;}
.y26d{bottom:341.269665px;}
.ydb{bottom:341.270355px;}
.yca{bottom:341.275575px;}
.y175{bottom:341.290455px;}
.y126{bottom:341.291595px;}
.yed{bottom:341.299755px;}
.y18c{bottom:341.349270px;}
.y13f{bottom:341.350410px;}
.y95{bottom:341.359620px;}
.y1ec{bottom:341.359635px;}
.y6c{bottom:345.872580px;}
.y117{bottom:350.454375px;}
.y223{bottom:351.147420px;}
.y31{bottom:354.790554px;}
.y26c{bottom:354.791985px;}
.y20{bottom:356.003304px;}
.y1c1{bottom:356.173800px;}
.yda{bottom:359.292375px;}
.yc9{bottom:359.297580px;}
.y174{bottom:359.312475px;}
.y125{bottom:359.313600px;}
.yec{bottom:359.321775px;}
.y18b{bottom:359.371290px;}
.y13e{bottom:359.372430px;}
.y94{bottom:359.381625px;}
.y1eb{bottom:359.381640px;}
.y6b{bottom:360.836385px;}
.y222{bottom:364.669740px;}
.y116{bottom:365.418180px;}
.y26b{bottom:368.314305px;}
.y1c0{bottom:371.221605px;}
.y30{bottom:372.812559px;}
.y1f{bottom:374.025309px;}
.y6a{bottom:375.884205px;}
.yd9{bottom:377.314395px;}
.yc8{bottom:377.319600px;}
.y173{bottom:377.334480px;}
.y124{bottom:377.335620px;}
.yeb{bottom:377.343795px;}
.y18a{bottom:377.393295px;}
.y13d{bottom:377.394450px;}
.y93{bottom:377.403645px;}
.y1ea{bottom:377.403660px;}
.y115{bottom:380.466000px;}
.y26a{bottom:381.836625px;}
.y1bf{bottom:386.185425px;}
.y2f{bottom:390.840744px;}
.y69{bottom:390.848010px;}
.y1e{bottom:392.047329px;}
.y221{bottom:394.943085px;}
.yc7{bottom:395.262915px;}
.y269{bottom:395.268945px;}
.y172{bottom:395.283000px;}
.y123{bottom:395.284140px;}
.yea{bottom:395.292315px;}
.y189{bottom:395.341815px;}
.y13c{bottom:395.342955px;}
.y92{bottom:395.352165px;}
.y1e9{bottom:395.352180px;}
.y1be{bottom:401.233230px;}
.y68{bottom:405.811830px;}
.y220{bottom:408.465405px;}
.y268{bottom:408.791265px;}
.y1d{bottom:409.995849px;}
.y171{bottom:413.305020px;}
.y122{bottom:413.306145px;}
.y188{bottom:413.363835px;}
.y13b{bottom:413.364975px;}
.y91{bottom:413.374170px;}
.y1e8{bottom:413.374185px;}
.y1bd{bottom:416.197050px;}
.y67{bottom:420.859635px;}
.y21f{bottom:421.897725px;}
.y267{bottom:422.313585px;}
.y1c{bottom:428.017854px;}
.y2e{bottom:428.061969px;}
.y1bc{bottom:431.160855px;}
.y170{bottom:431.327040px;}
.y121{bottom:431.328165px;}
.yc6{bottom:431.358930px;}
.y187{bottom:431.385855px;}
.y13a{bottom:431.386995px;}
.y90{bottom:431.396190px;}
.y1e7{bottom:431.396205px;}
.y21e{bottom:435.420045px;}
.y266{bottom:435.835905px;}
.y1b{bottom:446.039874px;}
.y2d{bottom:446.083989px;}
.y1bb{bottom:446.208675px;}
.y21d{bottom:448.942365px;}
.y265{bottom:449.268225px;}
.y16f{bottom:449.275545px;}
.y120{bottom:449.276685px;}
.yc5{bottom:449.307450px;}
.y186{bottom:449.334360px;}
.y139{bottom:449.335500px;}
.y8f{bottom:449.344710px;}
.y1e6{bottom:449.344725px;}
.y1ba{bottom:461.172480px;}
.y21c{bottom:462.464685px;}
.y264{bottom:462.790545px;}
.y1a{bottom:463.988394px;}
.y2c{bottom:464.032494px;}
.yff{bottom:464.156235px;}
.y16e{bottom:467.297565px;}
.y11f{bottom:467.298690px;}
.yc4{bottom:467.329455px;}
.y185{bottom:467.356380px;}
.y138{bottom:467.357520px;}
.y8e{bottom:467.366730px;}
.y1e5{bottom:467.366745px;}
.y21b{bottom:475.897005px;}
.y1b9{bottom:476.220285px;}
.y263{bottom:476.312865px;}
.yfe{bottom:479.204040px;}
.y19{bottom:482.010414px;}
.y2b{bottom:482.054514px;}
.y16d{bottom:485.319585px;}
.y11e{bottom:485.320710px;}
.yc3{bottom:485.351475px;}
.y184{bottom:485.378400px;}
.y137{bottom:485.379540px;}
.y8d{bottom:485.388735px;}
.y1e4{bottom:485.388750px;}
.y21a{bottom:489.419325px;}
.y262{bottom:489.835185px;}
.yfd{bottom:494.167860px;}
.y18{bottom:500.032419px;}
.y2a{bottom:500.076534px;}
.y219{bottom:502.941645px;}
.y261{bottom:503.267505px;}
.y11d{bottom:503.269230px;}
.yc2{bottom:503.299995px;}
.y136{bottom:503.328060px;}
.y8c{bottom:503.337255px;}
.y1e3{bottom:503.337270px;}
.yfc{bottom:509.215665px;}
.y218{bottom:516.463965px;}
.y260{bottom:516.789825px;}
.y17{bottom:517.980939px;}
.y29{bottom:518.025039px;}
.y11c{bottom:521.291250px;}
.yc1{bottom:521.322000px;}
.y135{bottom:521.350065px;}
.y8b{bottom:521.359275px;}
.y1e2{bottom:521.359290px;}
.y217{bottom:529.896285px;}
.y25f{bottom:530.312145px;}
.y19c{bottom:530.588580px;}
.y16{bottom:536.002959px;}
.y28{bottom:536.047059px;}
.yc0{bottom:539.344020px;}
.y8a{bottom:539.381280px;}
.y1e1{bottom:539.381295px;}
.y216{bottom:543.418605px;}
.y25e{bottom:543.834465px;}
.y19b{bottom:545.552385px;}
.y15{bottom:554.031294px;}
.y27{bottom:554.069079px;}
.y215{bottom:556.940925px;}
.y25d{bottom:557.266785px;}
.ybf{bottom:557.292540px;}
.y89{bottom:557.329800px;}
.y1e0{bottom:557.329815px;}
.y154{bottom:560.516205px;}
.y214{bottom:570.463245px;}
.y25c{bottom:570.789105px;}
.ybe{bottom:575.314560px;}
.y88{bottom:575.351820px;}
.y1df{bottom:575.351835px;}
.y153{bottom:575.564010px;}
.y213{bottom:583.895565px;}
.y25b{bottom:584.311425px;}
.y152{bottom:590.527830px;}
.ybd{bottom:593.336565px;}
.y87{bottom:593.373840px;}
.y1de{bottom:593.373855px;}
.y25a{bottom:597.833745px;}
.y14{bottom:599.696409px;}
.y151{bottom:605.491635px;}
.y259{bottom:611.266065px;}
.ybc{bottom:611.285085px;}
.y86{bottom:611.322345px;}
.y1dd{bottom:611.322360px;}
.y212{bottom:614.258910px;}
.y150{bottom:620.539455px;}
.y258{bottom:624.788385px;}
.y13{bottom:625.211664px;}
.y211{bottom:627.691230px;}
.ybb{bottom:629.307105px;}
.y85{bottom:629.344365px;}
.y1dc{bottom:629.344380px;}
.y14f{bottom:635.503260px;}
.y257{bottom:638.310705px;}
.y12{bottom:643.151844px;}
.yba{bottom:647.329110px;}
.y84{bottom:647.366385px;}
.y1db{bottom:647.366400px;}
.y14e{bottom:650.551065px;}
.y256{bottom:651.833025px;}
.y210{bottom:657.964575px;}
.y255{bottom:665.265345px;}
.yb9{bottom:665.277630px;}
.y83{bottom:665.314890px;}
.y1da{bottom:665.314905px;}
.y11{bottom:665.682069px;}
.y20f{bottom:671.486895px;}
.y254{bottom:678.787665px;}
.yb8{bottom:683.299650px;}
.y82{bottom:683.336910px;}
.y1d9{bottom:683.336925px;}
.y10{bottom:683.712249px;}
.y20e{bottom:685.009215px;}
.y253{bottom:692.309985px;}
.yb7{bottom:701.321655px;}
.y81{bottom:701.358930px;}
.y1d8{bottom:701.358945px;}
.y252{bottom:705.832305px;}
.yf{bottom:706.167474px;}
.y20d{bottom:715.282560px;}
.y251{bottom:719.264625px;}
.yb6{bottom:719.270175px;}
.y80{bottom:719.307450px;}
.y1d7{bottom:719.307465px;}
.ye{bottom:724.197654px;}
.y20c{bottom:728.804880px;}
.y250{bottom:732.786945px;}
.yb5{bottom:737.292195px;}
.y7f{bottom:737.329455px;}
.y1d6{bottom:737.329470px;}
.yd{bottom:742.137834px;}
.y20b{bottom:742.237200px;}
.y24f{bottom:746.309265px;}
.y7e{bottom:755.351475px;}
.y1d5{bottom:755.351490px;}
.yb4{bottom:755.439765px;}
.y20a{bottom:755.759520px;}
.y24e{bottom:759.831585px;}
.yc{bottom:760.168014px;}
.y24d{bottom:773.263905px;}
.y7d{bottom:773.299995px;}
.y1d4{bottom:773.300010px;}
.yb3{bottom:773.417685px;}
.yb{bottom:778.198194px;}
.y24c{bottom:786.786225px;}
.y7c{bottom:791.322000px;}
.y1d3{bottom:791.322015px;}
.yb2{bottom:791.439705px;}
.y209{bottom:793.941510px;}
.ya{bottom:796.138374px;}
.y24b{bottom:800.308545px;}
.y208{bottom:807.463830px;}
.y7b{bottom:809.344020px;}
.y1d2{bottom:809.344035px;}
.yb1{bottom:809.461710px;}
.y24a{bottom:813.830865px;}
.y9{bottom:823.180764px;}
.y207{bottom:825.407340px;}
.y249{bottom:827.263185px;}
.y7a{bottom:827.292540px;}
.y1d1{bottom:827.292555px;}
.yb0{bottom:827.410230px;}
.y206{bottom:838.929660px;}
.y248{bottom:840.785505px;}
.y79{bottom:845.314560px;}
.y1d0{bottom:845.314575px;}
.yaf{bottom:845.432250px;}
.y205{bottom:852.451980px;}
.y247{bottom:854.307825px;}
.y78{bottom:863.336565px;}
.y1cf{bottom:863.336580px;}
.yae{bottom:863.454255px;}
.y204{bottom:865.974300px;}
.y246{bottom:867.830145px;}
.y203{bottom:879.406620px;}
.y8{bottom:880.922529px;}
.y6{bottom:880.922679px;}
.y245{bottom:881.262465px;}
.y77{bottom:881.285085px;}
.y1ce{bottom:881.285100px;}
.yad{bottom:881.402775px;}
.y7{bottom:888.235944px;}
.y202{bottom:892.928940px;}
.y244{bottom:894.784785px;}
.y76{bottom:899.307105px;}
.y1cd{bottom:899.307120px;}
.yac{bottom:899.424795px;}
.y4{bottom:901.927374px;}
.y243{bottom:908.307105px;}
.y5{bottom:909.240789px;}
.y201{bottom:910.951200px;}
.y75{bottom:917.329110px;}
.y1cc{bottom:917.329125px;}
.yab{bottom:917.446815px;}
.y242{bottom:921.829410px;}
.y200{bottom:924.383520px;}
.y241{bottom:935.261745px;}
.y74{bottom:935.277630px;}
.y1cb{bottom:935.277645px;}
.yaa{bottom:935.395320px;}
.y1ff{bottom:937.905840px;}
.y3{bottom:937.907889px;}
.y240{bottom:948.784065px;}
.y1fe{bottom:951.428160px;}
.y73{bottom:953.299650px;}
.y1ca{bottom:953.299665px;}
.ya9{bottom:953.417340px;}
.y23f{bottom:962.305395px;}
.y1fd{bottom:964.950480px;}
.y72{bottom:971.321655px;}
.y1c9{bottom:971.321670px;}
.ya8{bottom:971.439360px;}
.y2{bottom:976.932039px;}
.y1fc{bottom:978.382800px;}
.y71{bottom:989.270175px;}
.y1c8{bottom:989.270190px;}
.ya7{bottom:989.387865px;}
.y1fb{bottom:996.405060px;}
.y23e{bottom:1002.785760px;}
.y70{bottom:1007.292195px;}
.y1c7{bottom:1007.292210px;}
.ya6{bottom:1007.409885px;}
.y1fa{bottom:1009.927380px;}
.y6f{bottom:1025.314215px;}
.y1c6{bottom:1025.314230px;}
.ya5{bottom:1025.431905px;}
.y23d{bottom:1029.830400px;}
.y1{bottom:1033.908345px;}
.y6e{bottom:1043.262720px;}
.y1c5{bottom:1043.262735px;}
.ya4{bottom:1043.380425px;}
.y23c{bottom:1048.280085px;}
.y4c{bottom:1112.827995px;}
.y279{bottom:1127.791811px;}
.y4b{bottom:1127.791815px;}
.y23b{bottom:1127.791830px;}
.y100{bottom:1127.795940px;}
.y1b2{bottom:1127.801430px;}
.y11b{bottom:1127.804640px;}
.y6d{bottom:1127.806815px;}
.y16c{bottom:1127.808660px;}
.y155{bottom:1127.809125px;}
.y19d{bottom:1127.821110px;}
.y1c4{bottom:1127.824185px;}
.ha{height:21.626539px;}
.hb{height:30.281567px;}
.h5{height:31.721260px;}
.h9{height:32.444567px;}
.hd{height:34.607567px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039395px;}
.x12{left:89.036295px;}
.x1{left:91.077180px;}
.x10{left:94.818945px;}
.x14{left:97.029900px;}
.x22{left:107.578980px;}
.x20{left:123.222000px;}
.x21{left:127.303950px;}
.xd{left:179.518095px;}
.xe{left:189.892845px;}
.x3{left:207.751230px;}
.x4{left:221.017245px;}
.x13{left:270.510150px;}
.xf{left:293.300745px;}
.x5{left:319.577895px;}
.x6{left:332.758980px;}
.x11{left:457.077900px;}
.x17{left:461.083335px;}
.x16{left:464.995200px;}
.x15{left:469.024305px;}
.x7{left:485.149560px;}
.x8{left:505.984260px;}
.x18{left:540.084915px;}
.x19{left:544.081785px;}
.x9{left:592.554195px;}
.xa{left:605.820330px;}
.x1a{left:639.495900px;}
.x1b{left:643.492815px;}
.x1c{left:664.157265px;}
.x1d{left:668.239200px;}
.xb{left:692.475495px;}
.xc{left:705.656610px;}
.x1e{left:737.716365px;}
.x1f{left:741.713235px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.144628pt;}
.ls5a{letter-spacing:-1.100786pt;}
.ls5f{letter-spacing:-1.096520pt;}
.ls10{letter-spacing:-1.071456pt;}
.ls4a{letter-spacing:-1.070920pt;}
.ls17{letter-spacing:-1.050549pt;}
.ls60{letter-spacing:-1.045320pt;}
.ls63{letter-spacing:-1.041054pt;}
.ls59{letter-spacing:-1.036787pt;}
.ls5b{letter-spacing:-1.032520pt;}
.ls61{letter-spacing:-1.023987pt;}
.ls80{letter-spacing:-1.019190pt;}
.ls65{letter-spacing:-1.015454pt;}
.ls19{letter-spacing:-1.013963pt;}
.ls5d{letter-spacing:-1.011187pt;}
.ls64{letter-spacing:-1.006921pt;}
.ls85{letter-spacing:-0.998283pt;}
.ls37{letter-spacing:-0.993057pt;}
.ls5c{letter-spacing:-0.985588pt;}
.ls34{letter-spacing:-0.982603pt;}
.ls81{letter-spacing:-0.977377pt;}
.lse{letter-spacing:-0.972145pt;}
.ls7d{letter-spacing:-0.966923pt;}
.lsb{letter-spacing:-0.961697pt;}
.ls7f{letter-spacing:-0.956470pt;}
.ls5e{letter-spacing:-0.951455pt;}
.lsd{letter-spacing:-0.951244pt;}
.ls30{letter-spacing:-0.946017pt;}
.ls12{letter-spacing:-0.940790pt;}
.ls86{letter-spacing:-0.935564pt;}
.ls82{letter-spacing:-0.930337pt;}
.ls62{letter-spacing:-0.930122pt;}
.ls15{letter-spacing:-0.925111pt;}
.ls33{letter-spacing:-0.919884pt;}
.ls2{letter-spacing:-0.914657pt;}
.ls83{letter-spacing:-0.909431pt;}
.ls11{letter-spacing:-0.904204pt;}
.ls13{letter-spacing:-0.898977pt;}
.ls35{letter-spacing:-0.893751pt;}
.ls18{letter-spacing:-0.888524pt;}
.ls84{letter-spacing:-0.872844pt;}
.ls7c{letter-spacing:-0.867618pt;}
.ls7e{letter-spacing:-0.851933pt;}
.ls8b{letter-spacing:-0.794445pt;}
.ls78{letter-spacing:-0.789219pt;}
.ls2b{letter-spacing:-0.783992pt;}
.ls1b{letter-spacing:-0.736952pt;}
.ls2e{letter-spacing:-0.710819pt;}
.ls2f{letter-spacing:-0.663780pt;}
.ls46{letter-spacing:-0.653327pt;}
.ls2d{letter-spacing:-0.648100pt;}
.ls2a{letter-spacing:-0.606282pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000034pt;}
.ls8d{letter-spacing:0.039972pt;}
.ls95{letter-spacing:0.040028pt;}
.ls6b{letter-spacing:0.052224pt;}
.ls7{letter-spacing:0.052277pt;}
.ls7b{letter-spacing:0.085318pt;}
.ls87{letter-spacing:0.104492pt;}
.ls28{letter-spacing:0.104545pt;}
.lsa{letter-spacing:0.127989pt;}
.ls77{letter-spacing:0.128000pt;}
.ls7a{letter-spacing:0.128042pt;}
.ls27{letter-spacing:0.156800pt;}
.ls8{letter-spacing:0.170702pt;}
.ls22{letter-spacing:0.313581pt;}
.ls56{letter-spacing:0.313598pt;}
.ls94{letter-spacing:0.359972pt;}
.ls91{letter-spacing:0.432000pt;}
.ls92{letter-spacing:0.495993pt;}
.ls97{letter-spacing:0.543993pt;}
.ls90{letter-spacing:0.547993pt;}
.ls93{letter-spacing:0.551993pt;}
.ls8f{letter-spacing:0.559993pt;}
.ls96{letter-spacing:0.571992pt;}
.ls8e{letter-spacing:0.720001pt;}
.ls38{letter-spacing:5.048908pt;}
.ls4b{letter-spacing:6.167423pt;}
.ls42{letter-spacing:9.460170pt;}
.ls3b{letter-spacing:10.348703pt;}
.ls88{letter-spacing:10.599875pt;}
.ls3a{letter-spacing:10.662303pt;}
.ls44{letter-spacing:11.050489pt;}
.ls45{letter-spacing:11.050542pt;}
.ls54{letter-spacing:11.864383pt;}
.ls89{letter-spacing:11.999802pt;}
.ls55{letter-spacing:12.177983pt;}
.ls53{letter-spacing:12.178036pt;}
.ls14{letter-spacing:12.491606pt;}
.ls4{letter-spacing:12.700692pt;}
.ls31{letter-spacing:12.842507pt;}
.ls9{letter-spacing:12.885155pt;}
.ls6d{letter-spacing:12.885209pt;}
.ls32{letter-spacing:12.927831pt;}
.ls1a{letter-spacing:13.097893pt;}
.ls36{letter-spacing:13.270371pt;}
.ls6{letter-spacing:13.275572pt;}
.ls5{letter-spacing:13.275625pt;}
.ls3{letter-spacing:13.902772pt;}
.ls4c{letter-spacing:13.902825pt;}
.lsf{letter-spacing:14.002097pt;}
.ls43{letter-spacing:14.791305pt;}
.ls70{letter-spacing:14.895850pt;}
.ls0{letter-spacing:15.157154pt;}
.ls6a{letter-spacing:15.732105pt;}
.ls1d{letter-spacing:15.836650pt;}
.ls39{letter-spacing:15.993438pt;}
.ls72{letter-spacing:16.306985pt;}
.ls75{letter-spacing:16.411583pt;}
.ls8c{letter-spacing:16.458027pt;}
.ls1e{letter-spacing:16.725183pt;}
.ls49{letter-spacing:17.028306pt;}
.ls4d{letter-spacing:17.195518pt;}
.ls57{letter-spacing:17.509172pt;}
.ls2c{letter-spacing:18.235654pt;}
.ls1c{letter-spacing:18.240863pt;}
.ls4e{letter-spacing:18.711305pt;}
.ls26{letter-spacing:18.815796pt;}
.ls58{letter-spacing:19.448228pt;}
.ls29{letter-spacing:19.547520pt;}
.ls16{letter-spacing:20.049289pt;}
.ls67{letter-spacing:20.070196pt;}
.ls6e{letter-spacing:20.226985pt;}
.ls73{letter-spacing:20.958676pt;}
.ls74{letter-spacing:20.958730pt;}
.ls3d{letter-spacing:21.167785pt;}
.ls3f{letter-spacing:21.847263pt;}
.ls3e{letter-spacing:22.160810pt;}
.ls51{letter-spacing:22.683518pt;}
.ls6f{letter-spacing:22.944798pt;}
.ls50{letter-spacing:22.944852pt;}
.ls69{letter-spacing:23.258452pt;}
.ls76{letter-spacing:23.885598pt;}
.ls79{letter-spacing:23.979702pt;}
.ls52{letter-spacing:24.146985pt;}
.ls3c{letter-spacing:24.460585pt;}
.ls41{letter-spacing:24.774185pt;}
.ls6c{letter-spacing:25.401332pt;}
.ls48{letter-spacing:25.495420pt;}
.ls25{letter-spacing:25.767181pt;}
.ls24{letter-spacing:25.819476pt;}
.ls66{letter-spacing:27.021610pt;}
.ls40{letter-spacing:27.491998pt;}
.ls71{letter-spacing:28.694132pt;}
.ls47{letter-spacing:29.728977pt;}
.ls68{letter-spacing:31.411945pt;}
.ls4f{letter-spacing:34.129812pt;}
.ls8a{letter-spacing:36.722185pt;}
.ls23{letter-spacing:44.844330pt;}
.ls20{letter-spacing:44.844383pt;}
.ls21{letter-spacing:44.948863pt;}
.ws1af{word-spacing:-36.774451pt;}
.ws115{word-spacing:-29.781243pt;}
.ws118{word-spacing:-25.547686pt;}
.ws17e{word-spacing:-24.031968pt;}
.ws56{word-spacing:-20.101555pt;}
.ws138{word-spacing:-19.500494pt;}
.ws83{word-spacing:-18.287920pt;}
.ws11a{word-spacing:-17.080572pt;}
.ws1dc{word-spacing:-16.512960pt;}
.ws4f{word-spacing:-14.054363pt;}
.wsf6{word-spacing:-13.322637pt;}
.ws5d{word-spacing:-13.150159pt;}
.ws54{word-spacing:-12.543872pt;}
.ws11{word-spacing:-0.054933pt;}
.ws17{word-spacing:-0.052266pt;}
.ws49{word-spacing:-0.042666pt;}
.ws3a{word-spacing:-0.039999pt;}
.ws43{word-spacing:-0.037333pt;}
.ws4a{word-spacing:0.000000pt;}
.ws114{word-spacing:0.601061pt;}
.ws5e{word-spacing:0.684686pt;}
.ws82{word-spacing:0.731726pt;}
.ws52{word-spacing:0.888524pt;}
.ws4d{word-spacing:0.898977pt;}
.ws58{word-spacing:0.909431pt;}
.ws50{word-spacing:1.019190pt;}
.ws163{word-spacing:8.467117pt;}
.ws1d6{word-spacing:9.919868pt;}
.ws1d5{word-spacing:9.959867pt;}
.ws1d2{word-spacing:10.039866pt;}
.ws1d7{word-spacing:10.119865pt;}
.ws11f{word-spacing:10.239872pt;}
.ws11b{word-spacing:10.282538pt;}
.ws1d4{word-spacing:10.439861pt;}
.ws1d3{word-spacing:10.479860pt;}
.ws11c{word-spacing:10.495869pt;}
.ws11e{word-spacing:10.538535pt;}
.ws39{word-spacing:10.559859pt;}
.ws44{word-spacing:10.938510pt;}
.ws11d{word-spacing:10.965196pt;}
.ws3f{word-spacing:11.050509pt;}
.ws45{word-spacing:11.125174pt;}
.ws46{word-spacing:11.199840pt;}
.ws42{word-spacing:11.274506pt;}
.ws41{word-spacing:11.386504pt;}
.ws40{word-spacing:11.461170pt;}
.ws1e4{word-spacing:11.759843pt;}
.ws1dd{word-spacing:11.759846pt;}
.ws1cb{word-spacing:11.799843pt;}
.ws3e{word-spacing:11.839842pt;}
.ws3d{word-spacing:11.879842pt;}
.ws1d1{word-spacing:11.919841pt;}
.ws1ca{word-spacing:11.959841pt;}
.ws1cf{word-spacing:11.999840pt;}
.ws1ce{word-spacing:12.039839pt;}
.ws3b{word-spacing:12.079839pt;}
.ws1cc{word-spacing:12.119838pt;}
.ws1d9{word-spacing:12.159838pt;}
.ws1cd{word-spacing:12.199837pt;}
.ws1d0{word-spacing:12.239837pt;}
.ws106{word-spacing:12.245180pt;}
.ws14a{word-spacing:12.257980pt;}
.ws14f{word-spacing:12.279313pt;}
.ws1d8{word-spacing:12.279836pt;}
.ws7c{word-spacing:12.287846pt;}
.ws1db{word-spacing:12.319836pt;}
.ws78{word-spacing:12.330513pt;}
.ws147{word-spacing:12.334779pt;}
.ws151{word-spacing:12.356112pt;}
.ws1da{word-spacing:12.359835pt;}
.ws105{word-spacing:12.373179pt;}
.ws3c{word-spacing:12.399835pt;}
.ws103{word-spacing:12.415845pt;}
.ws146{word-spacing:12.424378pt;}
.ws144{word-spacing:12.428645pt;}
.ws150{word-spacing:12.432911pt;}
.ws14d{word-spacing:12.437178pt;}
.ws148{word-spacing:12.445711pt;}
.ws152{word-spacing:12.449978pt;}
.ws104{word-spacing:12.458511pt;}
.ws108{word-spacing:12.501154pt;}
.ws79{word-spacing:12.501177pt;}
.ws47{word-spacing:12.501207pt;}
.ws14b{word-spacing:12.509710pt;}
.ws14e{word-spacing:12.513977pt;}
.ws14c{word-spacing:12.531043pt;}
.ws162{word-spacing:12.543843pt;}
.ws7a{word-spacing:12.586509pt;}
.ws149{word-spacing:12.590776pt;}
.ws8b{word-spacing:12.596138pt;}
.ws145{word-spacing:12.620642pt;}
.ws48{word-spacing:12.629175pt;}
.ws7b{word-spacing:12.671842pt;}
.ws107{word-spacing:12.757174pt;}
.ws1ac{word-spacing:12.799840pt;}
.ws197{word-spacing:12.842506pt;}
.ws2d{word-spacing:13.171066pt;}
.ws186{word-spacing:13.223332pt;}
.ws121{word-spacing:13.275598pt;}
.ws120{word-spacing:13.327864pt;}
.ws29{word-spacing:13.380130pt;}
.ws7d{word-spacing:13.484662pt;}
.wsaf{word-spacing:13.536929pt;}
.wsa6{word-spacing:13.589195pt;}
.ws122{word-spacing:13.641448pt;}
.ws123{word-spacing:13.693687pt;}
.ws1a{word-spacing:13.693727pt;}
.ws61{word-spacing:13.798259pt;}
.ws19{word-spacing:13.850525pt;}
.ws17a{word-spacing:13.902791pt;}
.ws35{word-spacing:14.059590pt;}
.ws97{word-spacing:14.111856pt;}
.ws53{word-spacing:14.174575pt;}
.wsab{word-spacing:14.216351pt;}
.wsa8{word-spacing:14.216388pt;}
.ws10d{word-spacing:14.268654pt;}
.ws90{word-spacing:14.373187pt;}
.ws8f{word-spacing:14.425453pt;}
.ws10e{word-spacing:14.529981pt;}
.ws98{word-spacing:14.530037pt;}
.ws99{word-spacing:14.634517pt;}
.ws5c{word-spacing:14.634537pt;}
.ws87{word-spacing:14.686783pt;}
.ws51{word-spacing:14.702463pt;}
.ws1b5{word-spacing:14.733823pt;}
.ws17b{word-spacing:14.739050pt;}
.ws22{word-spacing:14.895848pt;}
.ws20{word-spacing:15.000380pt;}
.ws10b{word-spacing:15.052646pt;}
.ws18b{word-spacing:15.078779pt;}
.ws1a4{word-spacing:15.084001pt;}
.wsfa{word-spacing:15.104913pt;}
.wse5{word-spacing:15.209445pt;}
.ws21{word-spacing:15.261711pt;}
.ws59{word-spacing:15.272164pt;}
.ws183{word-spacing:15.313977pt;}
.ws92{word-spacing:15.366243pt;}
.ws1e2{word-spacing:15.375795pt;}
.ws1df{word-spacing:15.399795pt;}
.ws77{word-spacing:15.418509pt;}
.ws5a{word-spacing:15.423736pt;}
.ws1e3{word-spacing:15.447794pt;}
.ws1e0{word-spacing:15.451794pt;}
.ws1a0{word-spacing:15.460322pt;}
.ws1e1{word-spacing:15.463794pt;}
.ws142{word-spacing:15.470775pt;}
.ws172{word-spacing:15.523042pt;}
.ws19c{word-spacing:15.533495pt;}
.wse3{word-spacing:15.575308pt;}
.ws130{word-spacing:15.575340pt;}
.ws1c8{word-spacing:15.627546pt;}
.ws9e{word-spacing:15.627574pt;}
.ws4e{word-spacing:15.658885pt;}
.ws171{word-spacing:15.679815pt;}
.wsf9{word-spacing:15.679840pt;}
.ws69{word-spacing:15.732106pt;}
.ws1c7{word-spacing:15.732116pt;}
.wsa9{word-spacing:15.773917pt;}
.ws37{word-spacing:15.784372pt;}
.wsd3{word-spacing:15.836620pt;}
.ws134{word-spacing:15.836638pt;}
.wsa{word-spacing:15.840158pt;}
.ws75{word-spacing:15.888905pt;}
.wsd{word-spacing:15.893492pt;}
.ws188{word-spacing:15.920264pt;}
.ws15b{word-spacing:15.941149pt;}
.ws2e{word-spacing:15.941171pt;}
.ws18c{word-spacing:15.956845pt;}
.ws5f{word-spacing:15.993437pt;}
.ws15e{word-spacing:15.993440pt;}
.ws9{word-spacing:16.000160pt;}
.ws18a{word-spacing:16.009117pt;}
.wsfd{word-spacing:16.045703pt;}
.ws15f{word-spacing:16.097969pt;}
.ws8{word-spacing:16.106828pt;}
.ws1b7{word-spacing:16.150235pt;}
.wsf{word-spacing:16.160162pt;}
.ws9a{word-spacing:16.202501pt;}
.ws65{word-spacing:16.254767pt;}
.wsb{word-spacing:16.266829pt;}
.wsc{word-spacing:16.266833pt;}
.ws1de{word-spacing:16.279783pt;}
.ws96{word-spacing:16.307034pt;}
.ws66{word-spacing:16.359300pt;}
.ws17d{word-spacing:16.359354pt;}
.wse{word-spacing:16.373492pt;}
.ws10{word-spacing:16.373517pt;}
.ws74{word-spacing:16.411566pt;}
.ws1c9{word-spacing:16.425067pt;}
.ws109{word-spacing:16.516098pt;}
.ws7{word-spacing:16.533529pt;}
.ws1c6{word-spacing:16.534933pt;}
.ws1a9{word-spacing:16.563138pt;}
.ws1a6{word-spacing:16.584044pt;}
.wsb9{word-spacing:16.620585pt;}
.wsd4{word-spacing:16.699733pt;}
.ws5b{word-spacing:16.746069pt;}
.ws18f{word-spacing:16.761749pt;}
.ws1d{word-spacing:16.777429pt;}
.ws1c{word-spacing:16.829695pt;}
.wsba{word-spacing:16.829699pt;}
.ws9f{word-spacing:16.840170pt;}
.ws12e{word-spacing:16.881961pt;}
.ws18e{word-spacing:16.897641pt;}
.ws30{word-spacing:16.934227pt;}
.ws9d{word-spacing:16.986493pt;}
.wsae{word-spacing:16.986494pt;}
.wsbb{word-spacing:17.038759pt;}
.ws33{word-spacing:17.091026pt;}
.ws125{word-spacing:17.195558pt;}
.ws1a7{word-spacing:17.200784pt;}
.ws93{word-spacing:17.300090pt;}
.wsf4{word-spacing:17.368036pt;}
.ws60{word-spacing:17.404622pt;}
.ws6{word-spacing:17.424158pt;}
.ws1a8{word-spacing:17.446435pt;}
.ws62{word-spacing:17.456889pt;}
.ws5{word-spacing:17.482826pt;}
.wsc0{word-spacing:17.509155pt;}
.ws4{word-spacing:17.600160pt;}
.ws13{word-spacing:17.613687pt;}
.ws3{word-spacing:17.658827pt;}
.wsd2{word-spacing:17.665953pt;}
.wsfb{word-spacing:17.718219pt;}
.ws86{word-spacing:17.770476pt;}
.wsf1{word-spacing:17.812298pt;}
.ws85{word-spacing:17.822751pt;}
.ws18{word-spacing:17.875018pt;}
.ws10c{word-spacing:17.927284pt;}
.wsf2{word-spacing:17.948190pt;}
.ws84{word-spacing:17.979549pt;}
.wse6{word-spacing:17.979550pt;}
.wsd0{word-spacing:18.031816pt;}
.ws16b{word-spacing:18.136348pt;}
.ws180{word-spacing:18.188613pt;}
.ws8d{word-spacing:18.188614pt;}
.wsaa{word-spacing:18.240881pt;}
.ws179{word-spacing:18.293147pt;}
.wsef{word-spacing:18.324506pt;}
.ws124{word-spacing:18.345413pt;}
.ws19e{word-spacing:18.402906pt;}
.ws16{word-spacing:18.449945pt;}
.ws1c0{word-spacing:18.502211pt;}
.wsad{word-spacing:18.523094pt;}
.ws81{word-spacing:18.554467pt;}
.ws6b{word-spacing:18.554477pt;}
.ws31{word-spacing:18.606743pt;}
.ws128{word-spacing:18.658999pt;}
.ws129{word-spacing:18.659010pt;}
.wsf7{word-spacing:18.711276pt;}
.ws36{word-spacing:18.763542pt;}
.ws71{word-spacing:18.815808pt;}
.wsd1{word-spacing:18.868074pt;}
.wsac{word-spacing:18.920340pt;}
.ws4b{word-spacing:18.993513pt;}
.wsc8{word-spacing:19.077139pt;}
.wscf{word-spacing:19.129405pt;}
.ws198{word-spacing:19.150311pt;}
.ws4c{word-spacing:19.333243pt;}
.ws80{word-spacing:19.390735pt;}
.wsd7{word-spacing:19.443002pt;}
.ws139{word-spacing:19.495268pt;}
.ws73{word-spacing:19.547534pt;}
.wsd6{word-spacing:19.599800pt;}
.ws38{word-spacing:19.652066pt;}
.wsb5{word-spacing:19.756598pt;}
.ws1c4{word-spacing:19.808865pt;}
.ws72{word-spacing:19.861131pt;}
.ws193{word-spacing:19.887264pt;}
.ws137{word-spacing:19.913419pt;}
.ws1a5{word-spacing:19.918623pt;}
.wse8{word-spacing:19.965663pt;}
.wsce{word-spacing:20.017929pt;}
.ws165{word-spacing:20.070195pt;}
.ws2f{word-spacing:20.122461pt;}
.ws7e{word-spacing:20.174727pt;}
.ws194{word-spacing:20.211314pt;}
.ws6a{word-spacing:20.226994pt;}
.ws10f{word-spacing:20.279260pt;}
.ws19d{word-spacing:20.300166pt;}
.ws153{word-spacing:20.331526pt;}
.ws64{word-spacing:20.383792pt;}
.ws7f{word-spacing:20.415146pt;}
.ws158{word-spacing:20.436058pt;}
.ws63{word-spacing:20.488324pt;}
.wsa0{word-spacing:20.540590pt;}
.ws17c{word-spacing:20.592857pt;}
.ws13a{word-spacing:20.645123pt;}
.wsb7{word-spacing:20.749655pt;}
.ws13c{word-spacing:20.801920pt;}
.ws70{word-spacing:20.854187pt;}
.ws26{word-spacing:20.958719pt;}
.ws0{word-spacing:21.008000pt;}
.ws176{word-spacing:21.010986pt;}
.ws189{word-spacing:21.042345pt;}
.wsea{word-spacing:21.220050pt;}
.ws14{word-spacing:21.324582pt;}
.ws192{word-spacing:21.355937pt;}
.wsdf{word-spacing:21.376849pt;}
.wsa1{word-spacing:21.481381pt;}
.wsf5{word-spacing:21.538874pt;}
.wscb{word-spacing:21.585913pt;}
.ws191{word-spacing:21.596366pt;}
.ws190{word-spacing:21.617268pt;}
.ws57{word-spacing:21.648632pt;}
.ws12f{word-spacing:21.690445pt;}
.ws1b4{word-spacing:21.758391pt;}
.ws55{word-spacing:21.779298pt;}
.ws181{word-spacing:21.847244pt;}
.ws1b8{word-spacing:21.899510pt;}
.ws132{word-spacing:22.056308pt;}
.ws1b9{word-spacing:22.108574pt;}
.ws133{word-spacing:22.160841pt;}
.ws187{word-spacing:22.181747pt;}
.ws1f{word-spacing:22.265373pt;}
.ws167{word-spacing:22.369905pt;}
.wsc7{word-spacing:22.422171pt;}
.ws10a{word-spacing:22.474437pt;}
.ws184{word-spacing:22.578970pt;}
.wsd5{word-spacing:22.631236pt;}
.wsa5{word-spacing:22.683502pt;}
.wsa7{word-spacing:22.735768pt;}
.ws16c{word-spacing:22.788034pt;}
.ws131{word-spacing:22.840300pt;}
.ws112{word-spacing:22.892566pt;}
.wse9{word-spacing:22.929153pt;}
.ws119{word-spacing:22.997099pt;}
.ws1c2{word-spacing:23.049365pt;}
.wsde{word-spacing:23.101631pt;}
.ws170{word-spacing:23.153897pt;}
.ws19b{word-spacing:23.190483pt;}
.wse0{word-spacing:23.206163pt;}
.ws2b{word-spacing:23.258429pt;}
.wsdd{word-spacing:23.310695pt;}
.ws166{word-spacing:23.467531pt;}
.wsc6{word-spacing:23.519760pt;}
.ws195{word-spacing:23.540666pt;}
.wsc5{word-spacing:23.572026pt;}
.ws17f{word-spacing:23.612781pt;}
.wsb4{word-spacing:23.676558pt;}
.wsdc{word-spacing:23.728811pt;}
.wsbe{word-spacing:23.728825pt;}
.ws1bb{word-spacing:23.781091pt;}
.wsbf{word-spacing:23.833357pt;}
.ws117{word-spacing:23.833365pt;}
.ws95{word-spacing:23.885623pt;}
.wse1{word-spacing:23.937870pt;}
.ws12{word-spacing:23.990155pt;}
.ws110{word-spacing:23.990173pt;}
.wsb6{word-spacing:24.094687pt;}
.ws111{word-spacing:24.146954pt;}
.ws140{word-spacing:24.229683pt;}
.ws141{word-spacing:24.251486pt;}
.wse2{word-spacing:24.303752pt;}
.ws91{word-spacing:24.356018pt;}
.wsb2{word-spacing:24.408273pt;}
.ws1bf{word-spacing:24.408284pt;}
.wsb3{word-spacing:24.460550pt;}
.wsf3{word-spacing:24.491910pt;}
.ws1b6{word-spacing:24.512817pt;}
.ws94{word-spacing:24.669615pt;}
.ws1a3{word-spacing:24.700975pt;}
.ws9b{word-spacing:24.721881pt;}
.wsb1{word-spacing:24.774105pt;}
.ws1ab{word-spacing:24.774147pt;}
.ws1b0{word-spacing:24.815960pt;}
.ws68{word-spacing:24.930946pt;}
.ws67{word-spacing:24.983212pt;}
.ws8c{word-spacing:25.087744pt;}
.wse7{word-spacing:25.192276pt;}
.ws136{word-spacing:25.244542pt;}
.ws1b{word-spacing:25.296809pt;}
.ws8e{word-spacing:25.349075pt;}
.ws9c{word-spacing:25.401336pt;}
.wse4{word-spacing:25.453607pt;}
.ws76{word-spacing:25.505873pt;}
.ws1bd{word-spacing:25.558139pt;}
.wsc2{word-spacing:25.662671pt;}
.ws1b3{word-spacing:25.667898pt;}
.wsc3{word-spacing:25.714931pt;}
.ws19f{word-spacing:25.735844pt;}
.wsfe{word-spacing:25.767204pt;}
.wsc4{word-spacing:25.924002pt;}
.wsd8{word-spacing:25.976268pt;}
.ws169{word-spacing:26.028534pt;}
.wsb8{word-spacing:26.080801pt;}
.ws1aa{word-spacing:26.216692pt;}
.ws143{word-spacing:26.289865pt;}
.wsed{word-spacing:26.342131pt;}
.wsd9{word-spacing:26.446663pt;}
.ws1c5{word-spacing:26.551196pt;}
.ws1bc{word-spacing:26.655728pt;}
.ws23{word-spacing:26.760260pt;}
.ws12b{word-spacing:26.917059pt;}
.ws12a{word-spacing:27.178389pt;}
.ws173{word-spacing:27.335188pt;}
.ws174{word-spacing:27.335217pt;}
.ws6e{word-spacing:27.387454pt;}
.ws175{word-spacing:27.439720pt;}
.wscd{word-spacing:27.491986pt;}
.ws156{word-spacing:27.544252pt;}
.ws157{word-spacing:27.596538pt;}
.wseb{word-spacing:27.701051pt;}
.ws6d{word-spacing:27.857849pt;}
.wsf0{word-spacing:27.873529pt;}
.ws6f{word-spacing:28.014647pt;}
.ws18d{word-spacing:28.134860pt;}
.ws13e{word-spacing:28.223712pt;}
.ws13d{word-spacing:28.275978pt;}
.ws8a{word-spacing:28.328244pt;}
.ws32{word-spacing:28.380510pt;}
.ws196{word-spacing:28.495496pt;}
.ws182{word-spacing:28.589575pt;}
.ws16a{word-spacing:28.694107pt;}
.ws6c{word-spacing:28.903172pt;}
.ws1ba{word-spacing:28.955438pt;}
.ws89{word-spacing:28.976344pt;}
.ws116{word-spacing:29.112236pt;}
.ws24{word-spacing:29.216769pt;}
.ws13b{word-spacing:29.269035pt;}
.ws102{word-spacing:29.582631pt;}
.ws88{word-spacing:29.634898pt;}
.ws19a{word-spacing:29.655804pt;}
.ws1be{word-spacing:30.418890pt;}
.ws113{word-spacing:30.523422pt;}
.ws168{word-spacing:30.680220pt;}
.ws1c3{word-spacing:30.732486pt;}
.ws1a1{word-spacing:30.795206pt;}
.wsa2{word-spacing:31.046083pt;}
.ws25{word-spacing:31.281281pt;}
.ws126{word-spacing:31.359680pt;}
.ws127{word-spacing:31.516478pt;}
.wscc{word-spacing:31.934607pt;}
.ws159{word-spacing:32.091406pt;}
.ws1ad{word-spacing:32.143672pt;}
.ws101{word-spacing:32.195938pt;}
.ws178{word-spacing:32.823132pt;}
.ws2a{word-spacing:32.979930pt;}
.ws28{word-spacing:33.136729pt;}
.ws154{word-spacing:33.188995pt;}
.wsa3{word-spacing:33.241220pt;}
.ws160{word-spacing:33.241261pt;}
.ws161{word-spacing:33.398059pt;}
.wsee{word-spacing:33.659390pt;}
.wsa4{word-spacing:33.659401pt;}
.ws177{word-spacing:33.716883pt;}
.ws16e{word-spacing:33.816188pt;}
.ws15c{word-spacing:33.868454pt;}
.ws12d{word-spacing:33.920721pt;}
.wsbd{word-spacing:34.077519pt;}
.ws155{word-spacing:34.234317pt;}
.ws1c1{word-spacing:34.286583pt;}
.ws12c{word-spacing:34.286590pt;}
.ws16d{word-spacing:34.443405pt;}
.wsdb{word-spacing:34.913777pt;}
.wsda{word-spacing:35.018309pt;}
.wsc9{word-spacing:35.540971pt;}
.ws1a2{word-spacing:35.551424pt;}
.wsec{word-spacing:36.168164pt;}
.wsf8{word-spacing:36.220430pt;}
.wsfc{word-spacing:36.481761pt;}
.ws100{word-spacing:36.586293pt;}
.ws1ae{word-spacing:36.690826pt;}
.ws2c{word-spacing:37.213487pt;}
.ws27{word-spacing:37.631616pt;}
.wsbc{word-spacing:37.683882pt;}
.ws2{word-spacing:38.144159pt;}
.ws135{word-spacing:38.467874pt;}
.ws1{word-spacing:38.656161pt;}
.ws15{word-spacing:39.304132pt;}
.wsca{word-spacing:39.774527pt;}
.wsff{word-spacing:40.976649pt;}
.ws1b1{word-spacing:41.248432pt;}
.ws1b2{word-spacing:41.656108pt;}
.ws16f{word-spacing:42.126503pt;}
.ws13f{word-spacing:43.119560pt;}
.wsc1{word-spacing:45.105673pt;}
.ws15d{word-spacing:45.628334pt;}
.wsb0{word-spacing:46.516859pt;}
.ws34{word-spacing:46.621391pt;}
.ws164{word-spacing:47.562181pt;}
.ws185{word-spacing:48.712036pt;}
.ws199{word-spacing:49.015180pt;}
.ws15a{word-spacing:54.095448pt;}
.ws1e{word-spacing:57.231416pt;}
._32{margin-left:-37.794507pt;}
._2b{margin-left:-29.839791pt;}
._2c{margin-left:-26.969321pt;}
._2d{margin-left:-25.505873pt;}
._2f{margin-left:-24.217399pt;}
._16{margin-left:-21.063252pt;}
._15{margin-left:-20.148604pt;}
._1f{margin-left:-19.024873pt;}
._1e{margin-left:-17.422771pt;}
._11{margin-left:-15.405254pt;}
._17{margin-left:-14.286301pt;}
._13{margin-left:-13.333943pt;}
._29{margin-left:-10.975908pt;}
._2a{margin-left:-9.826042pt;}
._14{margin-left:-7.612611pt;}
._c{margin-left:-6.167377pt;}
._b{margin-left:-4.645596pt;}
._d{margin-left:-3.658615pt;}
._f{margin-left:-1.986113pt;}
._9{margin-left:-0.993057pt;}
._5{width:0.906676pt;}
._12{width:1.807015pt;}
._26{width:2.699687pt;}
._0{width:7.904000pt;}
._1{width:8.805333pt;}
._2e{width:10.100213pt;}
._33{width:11.079852pt;}
._10{width:12.010500pt;}
._a{width:12.909735pt;}
._1d{width:14.431542pt;}
._6{width:15.360154pt;}
._4{width:17.173505pt;}
._21{width:18.926430pt;}
._e{width:19.965663pt;}
._18{width:21.585913pt;}
._7{width:22.944833pt;}
._20{width:23.885623pt;}
._8{width:25.610405pt;}
._1b{width:26.742109pt;}
._1a{width:28.414625pt;}
._19{width:29.896228pt;}
._28{width:31.184730pt;}
._22{width:32.352737pt;}
._23{width:34.234482pt;}
._25{width:35.331906pt;}
._27{width:37.370285pt;}
._3{width:39.168163pt;}
._30{width:40.067131pt;}
._24{width:47.980310pt;}
._35{width:57.559233pt;}
._34{width:58.559219pt;}
._31{width:1094.215685pt;}
._1c{width:1115.975311pt;}
._2{width:1738.117280pt;}
.fs8{font-size:26.662400pt;}
.fs9{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:58.128080pt;}
.y49{bottom:68.786600pt;}
.y23a{bottom:79.369107pt;}
.y1a4{bottom:79.383240pt;}
.y1f9{bottom:79.383253pt;}
.y15d{bottom:79.388880pt;}
.y10a{bottom:79.389867pt;}
.y14d{bottom:79.395507pt;}
.y1ab{bottom:79.396320pt;}
.y59{bottom:79.396493pt;}
.y19a{bottom:79.401147pt;}
.y165{bottom:79.401960pt;}
.ye9{bottom:79.404120pt;}
.yd8{bottom:79.408760pt;}
.y114{bottom:79.416013pt;}
.y183{bottom:79.421987pt;}
.y66{bottom:79.422640pt;}
.y134{bottom:79.423000pt;}
.yfb{bottom:79.430253pt;}
.y48{bottom:79.445107pt;}
.ya3{bottom:79.483467pt;}
.y47{bottom:90.103627pt;}
.y237{bottom:91.387907pt;}
.y239{bottom:91.388947pt;}
.y1a3{bottom:95.402813pt;}
.y1f8{bottom:95.402827pt;}
.y15c{bottom:95.408453pt;}
.y109{bottom:95.409440pt;}
.y14c{bottom:95.415080pt;}
.y1aa{bottom:95.415880pt;}
.y58{bottom:95.416067pt;}
.y199{bottom:95.420720pt;}
.y164{bottom:95.421520pt;}
.ye8{bottom:95.423693pt;}
.yd7{bottom:95.428320pt;}
.y113{bottom:95.435573pt;}
.y182{bottom:95.441560pt;}
.y65{bottom:95.442213pt;}
.y133{bottom:95.442560pt;}
.yfa{bottom:95.449827pt;}
.ya2{bottom:95.503027pt;}
.y238{bottom:95.848813pt;}
.y46{bottom:100.762133pt;}
.y236{bottom:103.407747pt;}
.y234{bottom:103.411373pt;}
.y235{bottom:107.792147pt;}
.y1f7{bottom:111.357067pt;}
.y1b8{bottom:111.362693pt;}
.yd6{bottom:111.382560pt;}
.y1a2{bottom:111.422387pt;}
.y15b{bottom:111.428027pt;}
.y108{bottom:111.429013pt;}
.y14b{bottom:111.434640pt;}
.y1a9{bottom:111.435453pt;}
.y57{bottom:111.435627pt;}
.y198{bottom:111.440280pt;}
.y163{bottom:111.441093pt;}
.ye7{bottom:111.443267pt;}
.y112{bottom:111.455147pt;}
.y181{bottom:111.461120pt;}
.y64{bottom:111.461773pt;}
.y132{bottom:111.462133pt;}
.yf9{bottom:111.469400pt;}
.ya1{bottom:111.522600pt;}
.y231{bottom:115.350307pt;}
.y233{bottom:115.351213pt;}
.y232{bottom:119.810947pt;}
.y45{bottom:123.361928pt;}
.y3d{bottom:123.395874pt;}
.y22e{bottom:127.369107pt;}
.y230{bottom:127.370147pt;}
.y1a1{bottom:127.376613pt;}
.y1f6{bottom:127.376627pt;}
.y15a{bottom:127.382253pt;}
.y107{bottom:127.383240pt;}
.y14a{bottom:127.388880pt;}
.y1a8{bottom:127.389693pt;}
.y56{bottom:127.389867pt;}
.y197{bottom:127.394520pt;}
.y162{bottom:127.395333pt;}
.ye6{bottom:127.397507pt;}
.yd5{bottom:127.402133pt;}
.y111{bottom:127.409387pt;}
.y180{bottom:127.415360pt;}
.y63{bottom:127.416013pt;}
.y131{bottom:127.416373pt;}
.yf8{bottom:127.423640pt;}
.ya0{bottom:127.476840pt;}
.y22f{bottom:131.829880pt;}
.y44{bottom:135.381768pt;}
.y22d{bottom:139.388947pt;}
.y3c{bottom:139.415448pt;}
.y1a0{bottom:143.396187pt;}
.y1f5{bottom:143.396200pt;}
.y159{bottom:143.401827pt;}
.y106{bottom:143.402813pt;}
.y149{bottom:143.408453pt;}
.y1a7{bottom:143.409267pt;}
.y55{bottom:143.409440pt;}
.y196{bottom:143.414093pt;}
.y161{bottom:143.414893pt;}
.ye5{bottom:143.417067pt;}
.yd4{bottom:143.421707pt;}
.y110{bottom:143.428947pt;}
.y17f{bottom:143.434933pt;}
.y62{bottom:143.435587pt;}
.y130{bottom:143.435933pt;}
.yf7{bottom:143.443200pt;}
.y9f{bottom:143.496400pt;}
.y22c{bottom:143.848813pt;}
.y43{bottom:147.401608pt;}
.y22b{bottom:151.409427pt;}
.y42{bottom:151.861474pt;}
.y3b{bottom:155.435008pt;}
.y1f4{bottom:159.350440pt;}
.y1b7{bottom:159.356067pt;}
.yd3{bottom:159.375933pt;}
.y19f{bottom:159.415760pt;}
.y158{bottom:159.421400pt;}
.y105{bottom:159.422387pt;}
.y41{bottom:159.423901pt;}
.y148{bottom:159.428027pt;}
.y1a6{bottom:159.428827pt;}
.y54{bottom:159.429013pt;}
.y195{bottom:159.433653pt;}
.y160{bottom:159.434467pt;}
.ye4{bottom:159.436640pt;}
.y10f{bottom:159.448520pt;}
.y17e{bottom:159.454507pt;}
.y61{bottom:159.455147pt;}
.y12f{bottom:159.455507pt;}
.yf6{bottom:159.462773pt;}
.y9e{bottom:159.515973pt;}
.y40{bottom:171.363741pt;}
.y278{bottom:171.372573pt;}
.y3a{bottom:171.389248pt;}
.y22a{bottom:175.369107pt;}
.y19e{bottom:175.370000pt;}
.y1f3{bottom:175.370013pt;}
.y157{bottom:175.375627pt;}
.y104{bottom:175.376613pt;}
.y147{bottom:175.382253pt;}
.y1a5{bottom:175.383067pt;}
.y53{bottom:175.383240pt;}
.y194{bottom:175.387893pt;}
.y15f{bottom:175.388707pt;}
.ye3{bottom:175.390880pt;}
.yd2{bottom:175.395507pt;}
.y10e{bottom:175.402760pt;}
.y17d{bottom:175.408733pt;}
.y60{bottom:175.409387pt;}
.y12e{bottom:175.409747pt;}
.yf5{bottom:175.417013pt;}
.y9d{bottom:175.470213pt;}
.y3f{bottom:175.823621pt;}
.y3e{bottom:183.382674pt;}
.y277{bottom:183.392413pt;}
.y229{bottom:187.388947pt;}
.y39{bottom:187.408821pt;}
.y156{bottom:191.395200pt;}
.y1f2{bottom:191.395213pt;}
.y103{bottom:191.396187pt;}
.y146{bottom:191.401827pt;}
.y52{bottom:191.402813pt;}
.y193{bottom:191.407467pt;}
.y15e{bottom:191.408267pt;}
.ye2{bottom:191.410440pt;}
.yd1{bottom:191.415080pt;}
.y10d{bottom:191.422333pt;}
.y17c{bottom:191.428307pt;}
.y5f{bottom:191.428960pt;}
.y12d{bottom:191.429307pt;}
.yf4{bottom:191.436573pt;}
.y9c{bottom:191.489787pt;}
.y276{bottom:195.412253pt;}
.y228{bottom:199.407867pt;}
.y38{bottom:203.428394pt;}
.y1b6{bottom:207.344813pt;}
.y275{bottom:207.352093pt;}
.yd0{bottom:207.369320pt;}
.y102{bottom:207.415760pt;}
.y145{bottom:207.421400pt;}
.y51{bottom:207.422387pt;}
.y192{bottom:207.427040pt;}
.ye1{bottom:207.430013pt;}
.y10c{bottom:207.441893pt;}
.y17b{bottom:207.447880pt;}
.y5e{bottom:207.448533pt;}
.y12c{bottom:207.448880pt;}
.yf3{bottom:207.456147pt;}
.y9b{bottom:207.509347pt;}
.y274{bottom:219.371933pt;}
.y37{bottom:219.382621pt;}
.y26{bottom:220.460621pt;}
.y101{bottom:223.370000pt;}
.y50{bottom:223.376613pt;}
.y191{bottom:223.381267pt;}
.ye0{bottom:223.384253pt;}
.ycf{bottom:223.388880pt;}
.y10b{bottom:223.396133pt;}
.y17a{bottom:223.402107pt;}
.y5d{bottom:223.402760pt;}
.y12b{bottom:223.403120pt;}
.yf2{bottom:223.410387pt;}
.y144{bottom:223.429267pt;}
.y9a{bottom:223.463587pt;}
.y1f1{bottom:223.463600pt;}
.y1b1{bottom:224.291893pt;}
.y16b{bottom:226.484973pt;}
.y273{bottom:231.391773pt;}
.y227{bottom:234.352080pt;}
.y36{bottom:235.402194pt;}
.y25{bottom:236.480194pt;}
.y1b0{bottom:237.593067pt;}
.y4f{bottom:239.396187pt;}
.y190{bottom:239.400840pt;}
.ydf{bottom:239.403827pt;}
.yce{bottom:239.408453pt;}
.y179{bottom:239.421680pt;}
.y5c{bottom:239.422333pt;}
.y12a{bottom:239.422693pt;}
.y1b5{bottom:239.426973pt;}
.yf1{bottom:239.429960pt;}
.y143{bottom:239.448840pt;}
.y99{bottom:239.483160pt;}
.y1f0{bottom:239.483173pt;}
.y16a{bottom:239.860800pt;}
.y272{bottom:243.411613pt;}
.y226{bottom:246.291920pt;}
.y1af{bottom:250.894227pt;}
.y35{bottom:251.421768pt;}
.y24{bottom:252.499768pt;}
.y169{bottom:253.161973pt;}
.y271{bottom:255.351453pt;}
.ycd{bottom:255.362693pt;}
.y4e{bottom:255.415760pt;}
.y1b3{bottom:255.420413pt;}
.yde{bottom:255.423387pt;}
.y178{bottom:255.441253pt;}
.y5b{bottom:255.441907pt;}
.y129{bottom:255.442253pt;}
.y1b4{bottom:255.446547pt;}
.yf0{bottom:255.449520pt;}
.y18f{bottom:255.493533pt;}
.y142{bottom:255.494547pt;}
.y98{bottom:255.502720pt;}
.y1ef{bottom:255.502733pt;}
.y1ae{bottom:264.270067pt;}
.y168{bottom:266.463133pt;}
.y270{bottom:267.371293pt;}
.y34{bottom:267.375994pt;}
.y23{bottom:268.453994pt;}
.y4d{bottom:271.370000pt;}
.ydd{bottom:271.377627pt;}
.ycc{bottom:271.382253pt;}
.y177{bottom:271.395493pt;}
.y5a{bottom:271.396133pt;}
.y128{bottom:271.396493pt;}
.yef{bottom:271.403760pt;}
.y18e{bottom:271.447773pt;}
.y141{bottom:271.448787pt;}
.y97{bottom:271.456960pt;}
.y1ee{bottom:271.456973pt;}
.y11a{bottom:271.536827pt;}
.y225{bottom:273.201560pt;}
.y1ad{bottom:277.571227pt;}
.y26f{bottom:279.391133pt;}
.y167{bottom:279.838973pt;}
.y33{bottom:283.395568pt;}
.y22{bottom:284.473568pt;}
.y119{bottom:284.838000pt;}
.y224{bottom:285.221400pt;}
.ydc{bottom:287.397200pt;}
.ycb{bottom:287.401827pt;}
.y176{bottom:287.415053pt;}
.y127{bottom:287.416067pt;}
.yee{bottom:287.423333pt;}
.y18d{bottom:287.467333pt;}
.y140{bottom:287.468347pt;}
.y96{bottom:287.476533pt;}
.y1ed{bottom:287.476547pt;}
.y1c3{bottom:289.996600pt;}
.y1ac{bottom:290.872400pt;}
.y26e{bottom:291.410973pt;}
.y166{bottom:293.140133pt;}
.y118{bottom:298.213827pt;}
.y32{bottom:299.415141pt;}
.y21{bottom:300.493141pt;}
.y1c2{bottom:303.297760pt;}
.y26d{bottom:303.350813pt;}
.ydb{bottom:303.351427pt;}
.yca{bottom:303.356067pt;}
.y175{bottom:303.369293pt;}
.y126{bottom:303.370307pt;}
.yed{bottom:303.377560pt;}
.y18c{bottom:303.421573pt;}
.y13f{bottom:303.422587pt;}
.y95{bottom:303.430773pt;}
.y1ec{bottom:303.430787pt;}
.y6c{bottom:307.442293pt;}
.y117{bottom:311.515000pt;}
.y223{bottom:312.131040pt;}
.y31{bottom:315.369381pt;}
.y26c{bottom:315.370653pt;}
.y20{bottom:316.447381pt;}
.y1c1{bottom:316.598933pt;}
.yda{bottom:319.371000pt;}
.yc9{bottom:319.375627pt;}
.y174{bottom:319.388867pt;}
.y125{bottom:319.389867pt;}
.yec{bottom:319.397133pt;}
.y18b{bottom:319.441147pt;}
.y13e{bottom:319.442160pt;}
.y94{bottom:319.450333pt;}
.y1eb{bottom:319.450347pt;}
.y6b{bottom:320.743453pt;}
.y222{bottom:324.150880pt;}
.y116{bottom:324.816160pt;}
.y26b{bottom:327.390493pt;}
.y1c0{bottom:329.974760pt;}
.y30{bottom:331.388941pt;}
.y1f{bottom:332.466941pt;}
.y6a{bottom:334.119293pt;}
.yd9{bottom:335.390573pt;}
.yc8{bottom:335.395200pt;}
.y173{bottom:335.408427pt;}
.y124{bottom:335.409440pt;}
.yeb{bottom:335.416707pt;}
.y18a{bottom:335.460707pt;}
.y13d{bottom:335.461733pt;}
.y93{bottom:335.469907pt;}
.y1ea{bottom:335.469920pt;}
.y115{bottom:338.192000pt;}
.y26a{bottom:339.410333pt;}
.y1bf{bottom:343.275933pt;}
.y2f{bottom:347.413994pt;}
.y69{bottom:347.420453pt;}
.y1e{bottom:348.486514pt;}
.y221{bottom:351.060520pt;}
.yc7{bottom:351.344813pt;}
.y269{bottom:351.350173pt;}
.y172{bottom:351.362667pt;}
.y123{bottom:351.363680pt;}
.yea{bottom:351.370947pt;}
.y189{bottom:351.414947pt;}
.y13c{bottom:351.415960pt;}
.y92{bottom:351.424147pt;}
.y1e9{bottom:351.424160pt;}
.y1be{bottom:356.651760pt;}
.y68{bottom:360.721627pt;}
.y220{bottom:363.080360pt;}
.y268{bottom:363.370013pt;}
.y1d{bottom:364.440754pt;}
.y171{bottom:367.382240pt;}
.y122{bottom:367.383240pt;}
.y188{bottom:367.434520pt;}
.y13b{bottom:367.435533pt;}
.y91{bottom:367.443707pt;}
.y1e8{bottom:367.443720pt;}
.y1bd{bottom:369.952933pt;}
.y67{bottom:374.097453pt;}
.y21f{bottom:375.020200pt;}
.y267{bottom:375.389853pt;}
.y1c{bottom:380.460314pt;}
.y2e{bottom:380.499528pt;}
.y1bc{bottom:383.254093pt;}
.y170{bottom:383.401813pt;}
.y121{bottom:383.402813pt;}
.yc6{bottom:383.430160pt;}
.y187{bottom:383.454093pt;}
.y13a{bottom:383.455107pt;}
.y90{bottom:383.463280pt;}
.y1e7{bottom:383.463293pt;}
.y21e{bottom:387.040040pt;}
.y266{bottom:387.409693pt;}
.y1b{bottom:396.479888pt;}
.y2d{bottom:396.519101pt;}
.y1bb{bottom:396.629933pt;}
.y21d{bottom:399.059880pt;}
.y265{bottom:399.349533pt;}
.y16f{bottom:399.356040pt;}
.y120{bottom:399.357053pt;}
.yc5{bottom:399.384400pt;}
.y186{bottom:399.408320pt;}
.y139{bottom:399.409333pt;}
.y8f{bottom:399.417520pt;}
.y1e6{bottom:399.417533pt;}
.y1ba{bottom:409.931093pt;}
.y21c{bottom:411.079720pt;}
.y264{bottom:411.369373pt;}
.y1a{bottom:412.434128pt;}
.y2c{bottom:412.473328pt;}
.yff{bottom:412.583320pt;}
.y16e{bottom:415.375613pt;}
.y11f{bottom:415.376613pt;}
.yc4{bottom:415.403960pt;}
.y185{bottom:415.427893pt;}
.y138{bottom:415.428907pt;}
.y8e{bottom:415.437093pt;}
.y1e5{bottom:415.437107pt;}
.y21b{bottom:423.019560pt;}
.y1b9{bottom:423.306920pt;}
.y263{bottom:423.389213pt;}
.yfe{bottom:425.959147pt;}
.y19{bottom:428.453701pt;}
.y2b{bottom:428.492901pt;}
.y16d{bottom:431.395187pt;}
.y11e{bottom:431.396187pt;}
.yc3{bottom:431.423533pt;}
.y184{bottom:431.447467pt;}
.y137{bottom:431.448480pt;}
.y8d{bottom:431.456653pt;}
.y1e4{bottom:431.456667pt;}
.y21a{bottom:435.039400pt;}
.y262{bottom:435.409053pt;}
.yfd{bottom:439.260320pt;}
.y18{bottom:444.473261pt;}
.y2a{bottom:444.512474pt;}
.y219{bottom:447.059240pt;}
.y261{bottom:447.348893pt;}
.y11d{bottom:447.350427pt;}
.yc2{bottom:447.377773pt;}
.y136{bottom:447.402720pt;}
.y8c{bottom:447.410893pt;}
.y1e3{bottom:447.410907pt;}
.yfc{bottom:452.636147pt;}
.y218{bottom:459.079080pt;}
.y260{bottom:459.368733pt;}
.y17{bottom:460.427501pt;}
.y29{bottom:460.466701pt;}
.y11c{bottom:463.370000pt;}
.yc1{bottom:463.397333pt;}
.y135{bottom:463.422280pt;}
.y8b{bottom:463.430467pt;}
.y1e2{bottom:463.430480pt;}
.y217{bottom:471.018920pt;}
.y25f{bottom:471.388573pt;}
.y19c{bottom:471.634293pt;}
.y16{bottom:476.447074pt;}
.y28{bottom:476.486274pt;}
.yc0{bottom:479.416907pt;}
.y8a{bottom:479.450027pt;}
.y1e1{bottom:479.450040pt;}
.y216{bottom:483.038760pt;}
.y25e{bottom:483.408413pt;}
.y19b{bottom:484.935453pt;}
.y15{bottom:492.472261pt;}
.y27{bottom:492.505848pt;}
.y215{bottom:495.058600pt;}
.y25d{bottom:495.348253pt;}
.ybf{bottom:495.371147pt;}
.y89{bottom:495.404267pt;}
.y1e0{bottom:495.404280pt;}
.y154{bottom:498.236627pt;}
.y214{bottom:507.078440pt;}
.y25c{bottom:507.368093pt;}
.ybe{bottom:511.390720pt;}
.y88{bottom:511.423840pt;}
.y1df{bottom:511.423853pt;}
.y153{bottom:511.612453pt;}
.y213{bottom:519.018280pt;}
.y25b{bottom:519.387933pt;}
.y152{bottom:524.913627pt;}
.ybd{bottom:527.410280pt;}
.y87{bottom:527.443413pt;}
.y1de{bottom:527.443427pt;}
.y25a{bottom:531.407773pt;}
.y14{bottom:533.063474pt;}
.y151{bottom:538.214787pt;}
.y259{bottom:543.347613pt;}
.ybc{bottom:543.364520pt;}
.y86{bottom:543.397640pt;}
.y1dd{bottom:543.397653pt;}
.y212{bottom:546.007920pt;}
.y150{bottom:551.590627pt;}
.y258{bottom:555.367453pt;}
.y13{bottom:555.743701pt;}
.y211{bottom:557.947760pt;}
.ybb{bottom:559.384093pt;}
.y85{bottom:559.417213pt;}
.y1dc{bottom:559.417227pt;}
.y14f{bottom:564.891787pt;}
.y257{bottom:567.387293pt;}
.y12{bottom:571.690528pt;}
.yba{bottom:575.403653pt;}
.y84{bottom:575.436787pt;}
.y1db{bottom:575.436800pt;}
.y14e{bottom:578.267613pt;}
.y256{bottom:579.407133pt;}
.y210{bottom:584.857400pt;}
.y255{bottom:591.346973pt;}
.yb9{bottom:591.357893pt;}
.y83{bottom:591.391013pt;}
.y1da{bottom:591.391027pt;}
.y11{bottom:591.717394pt;}
.y20f{bottom:596.877240pt;}
.y254{bottom:603.366813pt;}
.yb8{bottom:607.377467pt;}
.y82{bottom:607.410587pt;}
.y1d9{bottom:607.410600pt;}
.y10{bottom:607.744221pt;}
.y20e{bottom:608.897080pt;}
.y253{bottom:615.386653pt;}
.yb7{bottom:623.397027pt;}
.y81{bottom:623.430160pt;}
.y1d8{bottom:623.430173pt;}
.y252{bottom:627.406493pt;}
.yf{bottom:627.704421pt;}
.y20d{bottom:635.806720pt;}
.y251{bottom:639.346333pt;}
.yb6{bottom:639.351267pt;}
.y80{bottom:639.384400pt;}
.y1d7{bottom:639.384413pt;}
.ye{bottom:643.731248pt;}
.y20c{bottom:647.826560pt;}
.y250{bottom:651.366173pt;}
.yb5{bottom:655.370840pt;}
.y7f{bottom:655.403960pt;}
.y1d6{bottom:655.403973pt;}
.yd{bottom:659.678074pt;}
.y20b{bottom:659.766400pt;}
.y24f{bottom:663.386013pt;}
.y7e{bottom:671.423533pt;}
.y1d5{bottom:671.423547pt;}
.yb4{bottom:671.502013pt;}
.y20a{bottom:671.786240pt;}
.y24e{bottom:675.405853pt;}
.yc{bottom:675.704901pt;}
.y24d{bottom:687.345693pt;}
.y7d{bottom:687.377773pt;}
.y1d4{bottom:687.377787pt;}
.yb3{bottom:687.482387pt;}
.yb{bottom:691.731728pt;}
.y24c{bottom:699.365533pt;}
.y7c{bottom:703.397333pt;}
.y1d3{bottom:703.397347pt;}
.yb2{bottom:703.501960pt;}
.y209{bottom:705.725787pt;}
.ya{bottom:707.678554pt;}
.y24b{bottom:711.385373pt;}
.y208{bottom:717.745627pt;}
.y7b{bottom:719.416907pt;}
.y1d2{bottom:719.416920pt;}
.yb1{bottom:719.521520pt;}
.y24a{bottom:723.405213pt;}
.y9{bottom:731.716234pt;}
.y207{bottom:733.695413pt;}
.y249{bottom:735.345053pt;}
.y7a{bottom:735.371147pt;}
.y1d1{bottom:735.371160pt;}
.yb0{bottom:735.475760pt;}
.y206{bottom:745.715253pt;}
.y248{bottom:747.364893pt;}
.y79{bottom:751.390720pt;}
.y1d0{bottom:751.390733pt;}
.yaf{bottom:751.495333pt;}
.y205{bottom:757.735093pt;}
.y247{bottom:759.384733pt;}
.y78{bottom:767.410280pt;}
.y1cf{bottom:767.410293pt;}
.yae{bottom:767.514893pt;}
.y204{bottom:769.754933pt;}
.y246{bottom:771.404573pt;}
.y203{bottom:781.694773pt;}
.y8{bottom:783.042248pt;}
.y6{bottom:783.042381pt;}
.y245{bottom:783.344413pt;}
.y77{bottom:783.364520pt;}
.y1ce{bottom:783.364533pt;}
.yad{bottom:783.469133pt;}
.y7{bottom:789.543061pt;}
.y202{bottom:793.714613pt;}
.y244{bottom:795.364253pt;}
.y76{bottom:799.384093pt;}
.y1cd{bottom:799.384107pt;}
.yac{bottom:799.488707pt;}
.y4{bottom:801.713221pt;}
.y243{bottom:807.384093pt;}
.y5{bottom:808.214034pt;}
.y201{bottom:809.734400pt;}
.y75{bottom:815.403653pt;}
.y1cc{bottom:815.403667pt;}
.yab{bottom:815.508280pt;}
.y242{bottom:819.403920pt;}
.y200{bottom:821.674240pt;}
.y241{bottom:831.343773pt;}
.y74{bottom:831.357893pt;}
.y1cb{bottom:831.357907pt;}
.yaa{bottom:831.462507pt;}
.y1ff{bottom:833.694080pt;}
.y3{bottom:833.695901pt;}
.y240{bottom:843.363613pt;}
.y1fe{bottom:845.713920pt;}
.y73{bottom:847.377467pt;}
.y1ca{bottom:847.377480pt;}
.ya9{bottom:847.482080pt;}
.y23f{bottom:855.382573pt;}
.y1fd{bottom:857.733760pt;}
.y72{bottom:863.397027pt;}
.y1c9{bottom:863.397040pt;}
.ya8{bottom:863.501653pt;}
.y2{bottom:868.384034pt;}
.y1fc{bottom:869.673600pt;}
.y71{bottom:879.351267pt;}
.y1c8{bottom:879.351280pt;}
.ya7{bottom:879.455880pt;}
.y1fb{bottom:885.693387pt;}
.y23e{bottom:891.365120pt;}
.y70{bottom:895.370840pt;}
.y1c7{bottom:895.370853pt;}
.ya6{bottom:895.475453pt;}
.y1fa{bottom:897.713227pt;}
.y6f{bottom:911.390413pt;}
.y1c6{bottom:911.390427pt;}
.ya5{bottom:911.495027pt;}
.y23d{bottom:915.404800pt;}
.y1{bottom:919.029640pt;}
.y6e{bottom:927.344640pt;}
.y1c5{bottom:927.344653pt;}
.ya4{bottom:927.449267pt;}
.y23c{bottom:931.804520pt;}
.y4c{bottom:989.180440pt;}
.y279{bottom:1002.481610pt;}
.y4b{bottom:1002.481613pt;}
.y23b{bottom:1002.481627pt;}
.y100{bottom:1002.485280pt;}
.y1b2{bottom:1002.490160pt;}
.y11b{bottom:1002.493013pt;}
.y6d{bottom:1002.494947pt;}
.y16c{bottom:1002.496587pt;}
.y155{bottom:1002.497000pt;}
.y19d{bottom:1002.507653pt;}
.y1c4{bottom:1002.510387pt;}
.ha{height:19.223590pt;}
.hb{height:26.916949pt;}
.h5{height:28.196676pt;}
.h9{height:28.839615pt;}
.hd{height:30.762282pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590573pt;}
.x12{left:79.143373pt;}
.x1{left:80.957493pt;}
.x10{left:84.283507pt;}
.x14{left:86.248800pt;}
.x22{left:95.625760pt;}
.x20{left:109.530667pt;}
.x21{left:113.159067pt;}
.xd{left:159.571640pt;}
.xe{left:168.793640pt;}
.x3{left:184.667760pt;}
.x4{left:196.459773pt;}
.x13{left:240.453467pt;}
.xf{left:260.711773pt;}
.x5{left:284.069240pt;}
.x6{left:295.785760pt;}
.x11{left:406.291467pt;}
.x17{left:409.851853pt;}
.x16{left:413.329067pt;}
.x15{left:416.910493pt;}
.x7{left:431.244053pt;}
.x8{left:449.763787pt;}
.x18{left:480.075480pt;}
.x19{left:483.628253pt;}
.x9{left:526.714840pt;}
.xa{left:538.506960pt;}
.x1a{left:568.440800pt;}
.x1b{left:571.993613pt;}
.x1c{left:590.362013pt;}
.x1d{left:593.990400pt;}
.xb{left:615.533773pt;}
.xc{left:627.250320pt;}
.x1e{left:655.747880pt;}
.x1f{left:659.300653pt;}
}




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