
    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_a889a0f0f245fd4bcd61e7a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_3da51f1163c9a8bbaf4fd3e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_68ba2710e107e51209bb8353.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810000;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_8d8afeb651ca982d4dfe1ad0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_fafa4251cd81fafc13d01394.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_80596439f6e860b1ec246022.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_ccca5fb9bad0fc5a4aeb18a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.108000;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_87ed11c8586e4a990bd7ec59.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_b18e78c1a4afec772b8ac525.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908450;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_2444745284ea35d9e8d15060.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898200;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_9268b491a219e6dc032247e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_601854dc86c464e11500131a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_303d87865fd225a48b03196f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.025000;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_360113a75ca1fcb11ed3e6c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4c17a705f6b54d0a684ab132.woff2')format("woff");}.fff{font-family:fff;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2d5015798ca7204bbdf96f37.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_04c73e5b6c833269fd68d4f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e0f5b011a1d09920e9aba4dd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e591c7f3f86a87cf4d4fb273.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1b1474f1346862ebc0904d49.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.774069;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-62.766000px;}
.v10{vertical-align:-53.802000px;}
.vf{vertical-align:-44.832000px;}
.v7{vertical-align:-16.878000px;}
.v9{vertical-align:-15.306000px;}
.vd{vertical-align:-12.246000px;}
.v3{vertical-align:-9.635940px;}
.v5{vertical-align:-8.011860px;}
.v4{vertical-align:-5.652120px;}
.v2{vertical-align:-4.003920px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.650000px;}
.vc{vertical-align:8.796000px;}
.vb{vertical-align:12.060000px;}
.va{vertical-align:16.932000px;}
.v6{vertical-align:21.696000px;}
.v8{vertical-align:40.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000199px;}
.ls27{letter-spacing:0.000305px;}
.ls3b{letter-spacing:0.001319px;}
.ls4{letter-spacing:0.001625px;}
.ls18{letter-spacing:0.001698px;}
.ls5f{letter-spacing:0.002100px;}
.ls1f{letter-spacing:0.002207px;}
.ls24{letter-spacing:0.002222px;}
.ls32{letter-spacing:0.002245px;}
.ls53{letter-spacing:0.002446px;}
.ls4e{letter-spacing:0.002525px;}
.ls2b{letter-spacing:0.002823px;}
.ls42{letter-spacing:0.002877px;}
.ls19{letter-spacing:0.003269px;}
.ls6{letter-spacing:0.003275px;}
.ls3f{letter-spacing:0.004188px;}
.ls38{letter-spacing:0.004200px;}
.ls56{letter-spacing:0.004738px;}
.ls1a{letter-spacing:0.958188px;}
.ls3d{letter-spacing:1.069465px;}
.ls5d{letter-spacing:1.380538px;}
.ls3c{letter-spacing:1.763996px;}
.ls5{letter-spacing:2.002084px;}
.ls51{letter-spacing:2.984525px;}
.ls47{letter-spacing:2.986362px;}
.ls3a{letter-spacing:2.986363px;}
.ls29{letter-spacing:2.988185px;}
.ls4d{letter-spacing:2.988600px;}
.ls9{letter-spacing:2.989200px;}
.ls54{letter-spacing:2.990525px;}
.ls16{letter-spacing:4.236538px;}
.ls15{letter-spacing:4.240200px;}
.ls30{letter-spacing:4.491008px;}
.ls2e{letter-spacing:5.982185px;}
.ls22{letter-spacing:7.940177px;}
.ls1d{letter-spacing:9.956338px;}
.lsa{letter-spacing:9.962338px;}
.ls48{letter-spacing:9.964200px;}
.ls59{letter-spacing:11.947555px;}
.ls26{letter-spacing:12.500245px;}
.ls17{letter-spacing:12.502200px;}
.ls65{letter-spacing:12.791978px;}
.ls41{letter-spacing:12.949140px;}
.ls1b{letter-spacing:13.270183px;}
.ls36{letter-spacing:13.278538px;}
.ls33{letter-spacing:13.280245px;}
.lse{letter-spacing:13.280338px;}
.lsd{letter-spacing:13.282200px;}
.ls1e{letter-spacing:13.284538px;}
.ls34{letter-spacing:13.286338px;}
.lsf{letter-spacing:13.288200px;}
.ls6f{letter-spacing:13.449600px;}
.ls31{letter-spacing:14.451008px;}
.ls8{letter-spacing:14.694600px;}
.ls61{letter-spacing:14.892538px;}
.ls52{letter-spacing:14.942100px;}
.ls39{letter-spacing:14.944188px;}
.ls4f{letter-spacing:14.948100px;}
.ls66{letter-spacing:15.183002px;}
.ls43{letter-spacing:15.368908px;}
.ls12{letter-spacing:15.406200px;}
.ls13{letter-spacing:15.408538px;}
.ls64{letter-spacing:16.079636px;}
.ls2{letter-spacing:16.084001px;}
.ls1{letter-spacing:16.084300px;}
.ls35{letter-spacing:16.270362px;}
.ls46{letter-spacing:16.602538px;}
.ls45{letter-spacing:16.605299px;}
.ls58{letter-spacing:17.215555px;}
.lsc{letter-spacing:17.720338px;}
.lsb{letter-spacing:17.722200px;}
.ls23{letter-spacing:17.775269px;}
.ls4b{letter-spacing:17.784993px;}
.ls14{letter-spacing:17.806200px;}
.ls4c{letter-spacing:17.934532px;}
.ls25{letter-spacing:18.416177px;}
.ls2a{letter-spacing:18.444607px;}
.ls5e{letter-spacing:18.649987px;}
.ls7{letter-spacing:19.068416px;}
.ls62{letter-spacing:19.128192px;}
.ls20{letter-spacing:19.190056px;}
.ls11{letter-spacing:19.506538px;}
.ls10{letter-spacing:19.510200px;}
.ls2c{letter-spacing:19.840362px;}
.ls28{letter-spacing:20.912826px;}
.ls2d{letter-spacing:21.339008px;}
.ls21{letter-spacing:21.848245px;}
.ls2f{letter-spacing:22.286245px;}
.ls60{letter-spacing:22.894055px;}
.ls63{letter-spacing:24.627547px;}
.ls4a{letter-spacing:29.028532px;}
.ls5c{letter-spacing:34.251419px;}
.ls6a{letter-spacing:71.731422px;}
.ls5b{letter-spacing:86.342525px;}
.ls49{letter-spacing:96.382200px;}
.ls5a{letter-spacing:105.182525px;}
.ls6d{letter-spacing:132.403422px;}
.ls37{letter-spacing:133.954200px;}
.ls40{letter-spacing:135.564538px;}
.ls6e{letter-spacing:140.054132px;}
.ls6c{letter-spacing:142.387422px;}
.ls67{letter-spacing:146.774132px;}
.ls57{letter-spacing:155.288525px;}
.ls68{letter-spacing:178.915422px;}
.ls55{letter-spacing:220.118525px;}
.ls44{letter-spacing:222.489269px;}
.ls69{letter-spacing:260.918525px;}
.ls50{letter-spacing:291.500525px;}
.ls6b{letter-spacing:302.816525px;}
.ls1c{letter-spacing:524.590200px;}
.ls3e{letter-spacing:565.800607px;}
.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;}
}
.wsb5{word-spacing:-59.775600px;}
.wsad{word-spacing:-43.157983px;}
.ws95{word-spacing:-38.937826px;}
.wsa3{word-spacing:-37.957506px;}
.wsa1{word-spacing:-31.633157px;}
.ws96{word-spacing:-29.875845px;}
.wsb6{word-spacing:-29.015076px;}
.wsb0{word-spacing:-28.955301px;}
.wsb3{word-spacing:-27.813587px;}
.wsac{word-spacing:-22.354968px;}
.ws34{word-spacing:-19.690143px;}
.wsa4{word-spacing:-19.032551px;}
.ws7d{word-spacing:-16.605662px;}
.ws16{word-spacing:-14.943900px;}
.wsc2{word-spacing:-13.531962px;}
.ws126{word-spacing:-13.449600px;}
.wsb4{word-spacing:-12.043540px;}
.ws6e{word-spacing:-11.955150px;}
.ws2f{word-spacing:-10.012169px;}
.wsa8{word-spacing:-3.586536px;}
.wsa7{word-spacing:-3.573606px;}
.ws8d{word-spacing:-3.466985px;}
.wsed{word-spacing:-3.287658px;}
.ws15{word-spacing:-3.227882px;}
.ws82{word-spacing:-3.108331px;}
.ws93{word-spacing:-2.929004px;}
.ws6d{word-spacing:-2.809453px;}
.ws86{word-spacing:-2.749678px;}
.ws6a{word-spacing:-2.630126px;}
.ws18{word-spacing:-2.570351px;}
.ws13c{word-spacing:-2.528525px;}
.wsbd{word-spacing:-2.510575px;}
.ws92{word-spacing:-2.450800px;}
.ws5{word-spacing:-2.391024px;}
.wsa5{word-spacing:-2.331248px;}
.ws5d{word-spacing:-2.271473px;}
.ws60{word-spacing:-2.211697px;}
.ws57{word-spacing:-2.151922px;}
.ws6f{word-spacing:-2.092146px;}
.ws8e{word-spacing:-2.032370px;}
.ws11d{word-spacing:-1.990541px;}
.ws124{word-spacing:-1.882944px;}
.ws13f{word-spacing:-1.829146px;}
.ws11c{word-spacing:-1.775347px;}
.ws7e{word-spacing:-1.768923px;}
.wsa0{word-spacing:-1.733492px;}
.wsdd{word-spacing:-1.713062px;}
.ws45{word-spacing:-1.673717px;}
.ws97{word-spacing:-1.659123px;}
.ws98{word-spacing:-1.554166px;}
.wscc{word-spacing:-1.506355px;}
.ws4d{word-spacing:-1.434614px;}
.ws11e{word-spacing:-1.398758px;}
.ws56{word-spacing:-1.374839px;}
.ws132{word-spacing:-1.344960px;}
.ws22{word-spacing:-1.315063px;}
.ws106{word-spacing:-1.237363px;}
.ws4{word-spacing:-1.195512px;}
.ws119{word-spacing:-1.183565px;}
.ws123{word-spacing:-1.075968px;}
.ws61{word-spacing:-1.075961px;}
.ws113{word-spacing:-1.022170px;}
.ws19{word-spacing:-1.016185px;}
.ws127{word-spacing:-0.968371px;}
.wsf{word-spacing:-0.956410px;}
.ws131{word-spacing:-0.806976px;}
.ws14{word-spacing:-0.777083px;}
.ws1f{word-spacing:-0.717307px;}
.wse2{word-spacing:-0.657532px;}
.wsbe{word-spacing:-0.597756px;}
.ws11a{word-spacing:-0.489667px;}
.ws11b{word-spacing:-0.484186px;}
.ws129{word-spacing:-0.376589px;}
.ws83{word-spacing:-0.358654px;}
.ws73{word-spacing:-0.298878px;}
.ws12a{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.179327px;}
.ws53{word-spacing:-0.119551px;}
.ws39{word-spacing:-0.107597px;}
.ws1{word-spacing:-0.086077px;}
.ws10c{word-spacing:-0.071731px;}
.wse1{word-spacing:-0.065753px;}
.ws5f{word-spacing:-0.059776px;}
.ws30{word-spacing:-0.032040px;}
.wsb2{word-spacing:-0.029888px;}
.wsb1{word-spacing:-0.015471px;}
.wsfe{word-spacing:-0.002992px;}
.wsfa{word-spacing:-0.002413px;}
.wsfc{word-spacing:-0.002100px;}
.wsfd{word-spacing:-0.001751px;}
.wsf6{word-spacing:-0.001729px;}
.ws100{word-spacing:-0.001517px;}
.ws103{word-spacing:-0.000950px;}
.ws2{word-spacing:0.000000px;}
.wsd0{word-spacing:0.001787px;}
.wsf8{word-spacing:0.003350px;}
.wsf9{word-spacing:0.004259px;}
.ws102{word-spacing:0.005050px;}
.ws94{word-spacing:0.011955px;}
.ws41{word-spacing:0.059776px;}
.ws111{word-spacing:0.107597px;}
.ws5a{word-spacing:0.179327px;}
.ws87{word-spacing:0.239102px;}
.wsf2{word-spacing:0.298878px;}
.ws3c{word-spacing:0.478205px;}
.ws80{word-spacing:0.537980px;}
.ws12{word-spacing:0.597756px;}
.ws7b{word-spacing:0.657532px;}
.ws105{word-spacing:0.699379px;}
.ws46{word-spacing:0.717307px;}
.ws63{word-spacing:0.777083px;}
.ws81{word-spacing:0.836858px;}
.ws75{word-spacing:0.896634px;}
.ws43{word-spacing:0.956410px;}
.ws6c{word-spacing:1.016185px;}
.wsf4{word-spacing:1.022170px;}
.wsba{word-spacing:1.075961px;}
.ws109{word-spacing:1.135736px;}
.ws12f{word-spacing:1.183565px;}
.ws29{word-spacing:1.195512px;}
.ws7c{word-spacing:1.255288px;}
.ws3e{word-spacing:1.315063px;}
.ws85{word-spacing:1.434614px;}
.wsc{word-spacing:1.494390px;}
.wsbf{word-spacing:1.530259px;}
.ws3b{word-spacing:1.554166px;}
.ws5b{word-spacing:1.613941px;}
.ws36{word-spacing:1.613952px;}
.wsa{word-spacing:1.673717px;}
.ws64{word-spacing:1.733492px;}
.ws38{word-spacing:1.775347px;}
.ws9f{word-spacing:1.793268px;}
.ws6{word-spacing:1.853044px;}
.wsa9{word-spacing:1.905042px;}
.wsaa{word-spacing:1.912819px;}
.ws115{word-spacing:1.990541px;}
.ws65{word-spacing:2.092146px;}
.wsca{word-spacing:2.098138px;}
.ws3{word-spacing:2.151922px;}
.wsf0{word-spacing:2.211697px;}
.ws42{word-spacing:2.271473px;}
.wsef{word-spacing:2.331248px;}
.ws8a{word-spacing:2.391024px;}
.ws58{word-spacing:2.450800px;}
.ws8c{word-spacing:2.510575px;}
.wsb{word-spacing:2.570351px;}
.wsc0{word-spacing:2.582323px;}
.ws69{word-spacing:2.630126px;}
.ws12d{word-spacing:2.636122px;}
.ws1a{word-spacing:2.689902px;}
.ws10{word-spacing:2.749678px;}
.ws76{word-spacing:2.809453px;}
.ws79{word-spacing:2.869229px;}
.ws1d{word-spacing:2.929004px;}
.wse{word-spacing:2.988780px;}
.ws84{word-spacing:3.048556px;}
.ws44{word-spacing:3.108331px;}
.wsa6{word-spacing:3.227882px;}
.wsa2{word-spacing:3.287658px;}
.ws9e{word-spacing:3.347434px;}
.ws118{word-spacing:3.393043px;}
.wsec{word-spacing:3.407209px;}
.ws114{word-spacing:3.443098px;}
.ws9a{word-spacing:3.466985px;}
.ws49{word-spacing:3.526760px;}
.ws2a{word-spacing:3.586536px;}
.ws24{word-spacing:3.646312px;}
.ws67{word-spacing:3.706087px;}
.wsee{word-spacing:3.765863px;}
.wscb{word-spacing:3.765888px;}
.wsd3{word-spacing:3.825638px;}
.wsea{word-spacing:3.945190px;}
.ws122{word-spacing:4.034880px;}
.ws55{word-spacing:4.124516px;}
.ws3f{word-spacing:4.184292px;}
.ws1e{word-spacing:4.244068px;}
.ws8f{word-spacing:4.303843px;}
.ws89{word-spacing:4.321495px;}
.wseb{word-spacing:4.363619px;}
.ws108{word-spacing:4.423394px;}
.ws11{word-spacing:4.483170px;}
.ws133{word-spacing:4.519066px;}
.ws62{word-spacing:4.542946px;}
.ws37{word-spacing:4.572864px;}
.ws48{word-spacing:4.602721px;}
.ws74{word-spacing:4.662497px;}
.ws25{word-spacing:4.722272px;}
.ws26{word-spacing:4.782048px;}
.ws135{word-spacing:4.788058px;}
.ws4c{word-spacing:4.841824px;}
.ws116{word-spacing:4.841856px;}
.ws72{word-spacing:4.901599px;}
.ws23{word-spacing:5.021150px;}
.ws78{word-spacing:5.080926px;}
.ws125{word-spacing:5.164646px;}
.ws10b{word-spacing:5.200477px;}
.ws128{word-spacing:5.218445px;}
.ws3a{word-spacing:5.260253px;}
.wsdc{word-spacing:5.320028px;}
.wsd{word-spacing:5.379804px;}
.ws50{word-spacing:5.618906px;}
.ws13{word-spacing:5.678682px;}
.ws13e{word-spacing:5.756429px;}
.wse3{word-spacing:5.798233px;}
.ws13d{word-spacing:5.810227px;}
.ws59{word-spacing:5.858009px;}
.ws112{word-spacing:5.912822px;}
.wsbb{word-spacing:5.917784px;}
.ws130{word-spacing:5.917824px;}
.ws120{word-spacing:5.971622px;}
.ws88{word-spacing:5.977560px;}
.ws4e{word-spacing:6.037336px;}
.ws11f{word-spacing:6.079219px;}
.wse8{word-spacing:6.156887px;}
.ws4a{word-spacing:6.216662px;}
.ws1b{word-spacing:6.276438px;}
.ws40{word-spacing:6.395989px;}
.ws70{word-spacing:6.575316px;}
.wsf3{word-spacing:6.635092px;}
.ws77{word-spacing:6.754643px;}
.ws12c{word-spacing:6.778598px;}
.wsdf{word-spacing:6.814418px;}
.wsb8{word-spacing:6.874194px;}
.ws66{word-spacing:6.933970px;}
.wsf1{word-spacing:6.993745px;}
.wsbc{word-spacing:7.053521px;}
.ws13a{word-spacing:7.101389px;}
.wsda{word-spacing:7.113296px;}
.ws3d{word-spacing:7.173072px;}
.wsab{word-spacing:7.329784px;}
.ws2c{word-spacing:7.352399px;}
.ws121{word-spacing:7.424179px;}
.wsde{word-spacing:7.471950px;}
.wsd5{word-spacing:7.591501px;}
.ws7a{word-spacing:7.651277px;}
.ws54{word-spacing:7.711052px;}
.ws10f{word-spacing:7.746970px;}
.ws110{word-spacing:7.800768px;}
.ws8{word-spacing:7.950155px;}
.ws5e{word-spacing:8.009930px;}
.ws1c{word-spacing:8.129482px;}
.ws71{word-spacing:8.249033px;}
.ws7{word-spacing:8.308808px;}
.ws91{word-spacing:8.368584px;}
.wsd1{word-spacing:8.428360px;}
.ws9{word-spacing:8.488135px;}
.wsb9{word-spacing:8.607686px;}
.ws4b{word-spacing:8.667462px;}
.wse9{word-spacing:8.727238px;}
.ws10a{word-spacing:8.787013px;}
.ws32{word-spacing:8.872934px;}
.ws35{word-spacing:8.873939px;}
.ws31{word-spacing:8.875025px;}
.ws33{word-spacing:8.875476px;}
.wse7{word-spacing:8.966340px;}
.ws4f{word-spacing:9.145667px;}
.ws10d{word-spacing:9.145728px;}
.ws12b{word-spacing:9.414720px;}
.ws107{word-spacing:9.564096px;}
.ws99{word-spacing:9.623872px;}
.ws12e{word-spacing:9.738912px;}
.ws52{word-spacing:9.743423px;}
.wsd7{word-spacing:9.862974px;}
.ws7f{word-spacing:10.341179px;}
.ws134{word-spacing:10.383091px;}
.wsd8{word-spacing:10.460730px;}
.wsaf{word-spacing:10.520506px;}
.ws27{word-spacing:10.640057px;}
.wse5{word-spacing:10.938935px;}
.wse6{word-spacing:10.998710px;}
.wsb7{word-spacing:11.058486px;}
.wsdb{word-spacing:11.178037px;}
.ws10e{word-spacing:11.459059px;}
.wse4{word-spacing:11.536691px;}
.wsd9{word-spacing:11.541089px;}
.wsd2{word-spacing:11.596466px;}
.wsd6{word-spacing:11.656242px;}
.ws8b{word-spacing:11.835569px;}
.wsce{word-spacing:11.893824px;}
.wscd{word-spacing:11.898202px;}
.ws9b{word-spacing:12.014896px;}
.ws47{word-spacing:12.612652px;}
.ws6b{word-spacing:13.927715px;}
.ws5c{word-spacing:14.405920px;}
.ws68{word-spacing:14.704798px;}
.ws9c{word-spacing:14.884124px;}
.ws51{word-spacing:14.943900px;}
.ws2b{word-spacing:16.372597px;}
.ws9d{word-spacing:16.378514px;}
.ws90{word-spacing:16.557841px;}
.ws117{word-spacing:16.569907px;}
.ws17{word-spacing:17.861069px;}
.ws21{word-spacing:18.829440px;}
.wsd4{word-spacing:19.247743px;}
.ws0{word-spacing:21.433223px;}
.ws139{word-spacing:23.940288px;}
.ws104{word-spacing:25.070054px;}
.ws13b{word-spacing:29.373926px;}
.ws138{word-spacing:32.817024px;}
.ws137{word-spacing:37.174694px;}
.wse0{word-spacing:38.005465px;}
.ws20{word-spacing:38.465856px;}
.ws136{word-spacing:47.396390px;}
.wsc1{word-spacing:59.864171px;}
.wscf{word-spacing:71.670266px;}
.wsc9{word-spacing:76.125089px;}
.wsc8{word-spacing:85.011089px;}
.wsff{word-spacing:91.521089px;}
.ws101{word-spacing:103.053089px;}
.wsae{word-spacing:116.079807px;}
.ws2e{word-spacing:178.780460px;}
.wsc7{word-spacing:182.757089px;}
.wsc6{word-spacing:194.673089px;}
.wsc5{word-spacing:263.025089px;}
.wsc4{word-spacing:266.055089px;}
.wsc3{word-spacing:277.965089px;}
.wsf5{word-spacing:283.935258px;}
.wsf7{word-spacing:390.615089px;}
.wsfb{word-spacing:435.363089px;}
.ws2d{word-spacing:1057.746264px;}
._1d{margin-left:-13.301779px;}
._0{margin-left:-6.369713px;}
._e{margin-left:-4.466420px;}
._2{margin-left:-3.184856px;}
._1{margin-left:-2.151930px;}
._7{margin-left:-1.016185px;}
._23{width:1.129756px;}
._20{width:2.158509px;}
._22{width:3.398826px;}
._24{width:4.537268px;}
._3{width:5.986253px;}
._1f{width:9.538822px;}
._15{width:11.872906px;}
._6{width:13.808164px;}
._5{width:14.960650px;}
._17{width:16.617721px;}
._4{width:18.112007px;}
._13{width:19.606397px;}
._b{width:21.433164px;}
._f{width:22.509125px;}
._18{width:23.790689px;}
._8{width:24.959924px;}
._1a{width:26.258246px;}
._19{width:27.676111px;}
._12{width:29.529146px;}
._16{width:30.898336px;}
._d{width:32.039722px;}
._1b{width:33.175458px;}
._c{width:34.806149px;}
._10{width:36.522892px;}
._40{width:40.442344px;}
._a{width:42.380900px;}
._11{width:43.440112px;}
._9{width:44.831708px;}
._1e{width:46.744528px;}
._1c{width:48.956216px;}
._14{width:50.211512px;}
._41{width:53.080733px;}
._49{width:54.551578px;}
._3f{width:56.368391px;}
._47{width:61.865290px;}
._4b{width:65.311252px;}
._31{width:70.889534px;}
._2d{width:72.152700px;}
._3e{width:76.051313px;}
._2c{width:86.884500px;}
._48{width:90.219917px;}
._2b{width:101.609491px;}
._26{width:114.082525px;}
._2f{width:117.169014px;}
._32{width:119.777922px;}
._4a{width:124.435699px;}
._44{width:126.268292px;}
._21{width:129.533725px;}
._27{width:131.505900px;}
._29{width:132.532233px;}
._46{width:141.105085px;}
._36{width:142.193922px;}
._2a{width:146.446845px;}
._2e{width:147.474351px;}
._3a{width:152.994557px;}
._28{width:161.814300px;}
._45{width:178.831833px;}
._35{width:203.770500px;}
._33{width:207.844500px;}
._39{width:226.186200px;}
._3d{width:231.176725px;}
._37{width:252.676200px;}
._34{width:257.662500px;}
._25{width:259.367692px;}
._3b{width:262.658725px;}
._38{width:302.494200px;}
._3c{width:312.476725px;}
._43{width:345.531342px;}
._30{width:676.130695px;}
._42{width:957.548695px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:20.024826px;}
.fsa{font-size:24.029952px;}
.fsf{font-size:29.887800px;}
.fs7{font-size:32.039802px;}
.fsd{font-size:35.865600px;}
.fs8{font-size:36.044050px;}
.fs6{font-size:40.048676px;}
.fs9{font-size:40.049652px;}
.fsc{font-size:41.842800px;}
.fse{font-size:47.820600px;}
.fs5{font-size:48.059904px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.753400px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y29{bottom:121.500000px;}
.yb6{bottom:125.719500px;}
.y1f5{bottom:137.938500px;}
.y3d{bottom:139.432500px;}
.y141{bottom:139.915500px;}
.y28{bottom:140.950500px;}
.yb5{bottom:154.182000px;}
.y1f4{bottom:154.377000px;}
.y72{bottom:157.365000px;}
.y27{bottom:158.883000px;}
.y140{bottom:162.052500px;}
.y112{bottom:162.838500px;}
.y189{bottom:166.722000px;}
.y3c{bottom:167.157000px;}
.y1f3{bottom:170.815500px;}
.y84{bottom:171.934500px;}
.yb4{bottom:172.114500px;}
.y111{bottom:173.089500px;}
.ye6{bottom:175.297500px;}
.y26{bottom:176.815500px;}
.y13f{bottom:179.985000px;}
.y71{bottom:187.641000px;}
.y15a{bottom:187.885500px;}
.y1f2{bottom:189.109500px;}
.y83{bottom:189.867000px;}
.yb3{bottom:190.047000px;}
.ye5{bottom:193.230000px;}
.y1ba{bottom:193.231500px;}
.y25{bottom:194.748000px;}
.y188{bottom:197.781000px;}
.y13e{bottom:197.917500px;}
.y3b{bottom:199.521000px;}
.y1f1{bottom:205.548000px;}
.y159{bottom:205.818000px;}
.yb2{bottom:207.979500px;}
.y1ab{bottom:211.162500px;}
.ye4{bottom:211.164000px;}
.y110{bottom:211.897500px;}
.y24{bottom:212.682000px;}
.y187{bottom:215.713500px;}
.y13d{bottom:215.850000px;}
.y3a{bottom:217.455000px;}
.y70{bottom:218.046000px;}
.y82{bottom:222.367500px;}
.y158{bottom:223.752000px;}
.y1f0{bottom:223.843500px;}
.yb1{bottom:227.328000px;}
.ye3{bottom:229.096500px;}
.y1b9{bottom:229.162500px;}
.y10f{bottom:229.830000px;}
.y23{bottom:230.614500px;}
.y186{bottom:233.646000px;}
.y13c{bottom:233.782500px;}
.y39{bottom:235.387500px;}
.y1ef{bottom:240.282000px;}
.y81{bottom:240.300000px;}
.y157{bottom:242.281500px;}
.yb0{bottom:245.262000px;}
.ye2{bottom:247.029000px;}
.y1b8{bottom:247.095000px;}
.y10e{bottom:247.762500px;}
.y6f{bottom:248.452500px;}
.y22{bottom:248.547000px;}
.y185{bottom:251.580000px;}
.y13b{bottom:251.715000px;}
.y38{bottom:253.320000px;}
.y1ee{bottom:256.720500px;}
.y156{bottom:259.240500px;}
.y1cb{bottom:261.460500px;}
.yaf{bottom:263.194500px;}
.ye1{bottom:264.961500px;}
.y1b7{bottom:265.029000px;}
.y10d{bottom:265.695000px;}
.y6e{bottom:266.385000px;}
.y21{bottom:266.479500px;}
.y184{bottom:269.512500px;}
.y37{bottom:271.252500px;}
.y80{bottom:272.802000px;}
.y1ed{bottom:275.016000px;}
.y155{bottom:275.679000px;}
.y13a{bottom:280.110000px;}
.yae{bottom:281.127000px;}
.y1aa{bottom:282.894000px;}
.y1b6{bottom:282.961500px;}
.y10c{bottom:283.629000px;}
.ye0{bottom:284.046000px;}
.y20{bottom:284.412000px;}
.y183{bottom:287.445000px;}
.y36{bottom:289.185000px;}
.y7f{bottom:290.734500px;}
.y1ec{bottom:291.454500px;}
.y154{bottom:292.117500px;}
.y6d{bottom:296.790000px;}
.yad{bottom:299.059500px;}
.y1b5{bottom:300.894000px;}
.y1a9{bottom:301.249500px;}
.y10b{bottom:301.561500px;}
.ydf{bottom:301.978500px;}
.y1f{bottom:302.346000px;}
.y1c0{bottom:302.521500px;}
.y182{bottom:305.377500px;}
.y35{bottom:307.117500px;}
.y1eb{bottom:307.891500px;}
.y7e{bottom:308.667000px;}
.y6c{bottom:314.722500px;}
.y139{bottom:315.310500px;}
.yac{bottom:316.992000px;}
.y1ca{bottom:317.146500px;}
.y1a8{bottom:319.182000px;}
.y10a{bottom:319.494000px;}
.yde{bottom:319.912500px;}
.y1e{bottom:320.278500px;}
.y1bf{bottom:320.454000px;}
.y181{bottom:323.701500px;}
.y1ea{bottom:324.330000px;}
.y34{bottom:325.051500px;}
.y1b4{bottom:327.859500px;}
.y138{bottom:333.244500px;}
.y1c9{bottom:333.585000px;}
.y7d{bottom:333.885000px;}
.yab{bottom:334.924500px;}
.y1a7{bottom:337.116000px;}
.ydd{bottom:337.845000px;}
.y1be{bottom:338.386500px;}
.y1e9{bottom:340.768500px;}
.y180{bottom:341.634000px;}
.y33{bottom:342.984000px;}
.y6b{bottom:345.127500px;}
.y109{bottom:347.514000px;}
.y1c8{bottom:350.023500px;}
.y1d{bottom:350.190000px;}
.y137{bottom:351.177000px;}
.y7c{bottom:351.817500px;}
.yaa{bottom:352.858500px;}
.y1a6{bottom:355.048500px;}
.ydc{bottom:355.777500px;}
.y1bd{bottom:356.319000px;}
.y1b3{bottom:357.946500px;}
.y1e8{bottom:359.064000px;}
.y17f{bottom:359.566500px;}
.y32{bottom:361.741500px;}
.y1c7{bottom:366.462000px;}
.y153{bottom:367.342500px;}
.y136{bottom:369.109500px;}
.ya9{bottom:372.207000px;}
.y1a5{bottom:372.981000px;}
.ydb{bottom:373.710000px;}
.y1bc{bottom:374.251500px;}
.y6a{bottom:375.403500px;}
.y1e7{bottom:375.502500px;}
.y1b2{bottom:375.879000px;}
.y7b{bottom:377.034000px;}
.y17e{bottom:377.499000px;}
.y31{bottom:379.674000px;}
.y108{bottom:386.721000px;}
.y135{bottom:387.042000px;}
.ya8{bottom:390.139500px;}
.y1a4{bottom:390.913500px;}
.yda{bottom:391.642500px;}
.y1e6{bottom:391.941000px;}
.y1bb{bottom:392.184000px;}
.y69{bottom:393.465000px;}
.y1b1{bottom:393.879000px;}
.y7a{bottom:394.966500px;}
.y17d{bottom:395.431500px;}
.y30{bottom:397.608000px;}
.y107{bottom:404.655000px;}
.y134{bottom:404.974500px;}
.ya7{bottom:408.072000px;}
.y1e5{bottom:408.379500px;}
.y1c{bottom:408.541500px;}
.y1a3{bottom:408.846000px;}
.yd9{bottom:409.576500px;}
.y68{bottom:411.399000px;}
.y1b0{bottom:411.811500px;}
.y17c{bottom:413.364000px;}
.y152{bottom:413.668500px;}
.y2f{bottom:415.540500px;}
.y106{bottom:422.587500px;}
.y133{bottom:422.908500px;}
.y1e4{bottom:424.818000px;}
.y1b{bottom:426.475500px;}
.y1a2{bottom:426.778500px;}
.y79{bottom:427.468500px;}
.yd8{bottom:427.509000px;}
.y67{bottom:429.331500px;}
.y1af{bottom:429.744000px;}
.y17b{bottom:431.298000px;}
.y2e{bottom:433.473000px;}
.ya6{bottom:437.881500px;}
.y105{bottom:440.520000px;}
.y132{bottom:440.841000px;}
.y1e3{bottom:441.256500px;}
.y1a{bottom:444.408000px;}
.y1a1{bottom:444.712500px;}
.yd7{bottom:445.441500px;}
.y66{bottom:447.264000px;}
.y1ae{bottom:447.676500px;}
.y17a{bottom:449.620500px;}
.y104{bottom:458.452500px;}
.y131{bottom:458.773500px;}
.y1e2{bottom:459.550500px;}
.y78{bottom:459.970500px;}
.y151{bottom:459.994500px;}
.y19{bottom:462.340500px;}
.yd6{bottom:463.374000px;}
.y65{bottom:465.196500px;}
.y179{bottom:467.553000px;}
.y1a0{bottom:472.033500px;}
.y1e1{bottom:475.989000px;}
.y103{bottom:476.385000px;}
.y130{bottom:476.706000px;}
.y77{bottom:477.903000px;}
.ya5{bottom:477.994500px;}
.y18{bottom:480.273000px;}
.yd5{bottom:481.306500px;}
.y2d{bottom:482.868000px;}
.y64{bottom:483.129000px;}
.y178{bottom:485.485500px;}
.y1e0{bottom:492.427500px;}
.y102{bottom:494.319000px;}
.y12f{bottom:494.638500px;}
.y1ad{bottom:495.420000px;}
.y76{bottom:495.835500px;}
.ya4{bottom:495.927000px;}
.y17{bottom:498.205500px;}
.yd4{bottom:499.239000px;}
.y63{bottom:501.063000px;}
.y19f{bottom:503.191500px;}
.y177{bottom:503.419500px;}
.y150{bottom:506.322000px;}
.y1df{bottom:508.866000px;}
.y101{bottom:512.251500px;}
.y12e{bottom:512.571000px;}
.ya3{bottom:513.859500px;}
.y16{bottom:516.138000px;}
.yd3{bottom:517.173000px;}
.y62{bottom:518.995500px;}
.y19e{bottom:521.124000px;}
.y176{bottom:521.352000px;}
.y100{bottom:525.951000px;}
.y1de{bottom:527.161500px;}
.yff{bottom:530.184000px;}
.y12d{bottom:530.505000px;}
.y75{bottom:531.325500px;}
.ya2{bottom:531.792000px;}
.y15{bottom:534.072000px;}
.yd2{bottom:535.105500px;}
.y61{bottom:536.928000px;}
.y19d{bottom:539.056500px;}
.y175{bottom:539.284500px;}
.y1dd{bottom:543.600000px;}
.yfe{bottom:548.116500px;}
.y12c{bottom:548.437500px;}
.ya1{bottom:549.724500px;}
.y14{bottom:552.004500px;}
.y14f{bottom:552.648000px;}
.yd1{bottom:553.038000px;}
.y60{bottom:554.860500px;}
.y19c{bottom:556.989000px;}
.y174{bottom:557.217000px;}
.y74{bottom:558.877500px;}
.y1dc{bottom:560.038500px;}
.yfd{bottom:566.049000px;}
.y12b{bottom:566.370000px;}
.ya0{bottom:567.658500px;}
.y13{bottom:569.937000px;}
.yd0{bottom:570.970500px;}
.y5f{bottom:572.793000px;}
.y19b{bottom:574.921500px;}
.y173{bottom:575.149500px;}
.y1db{bottom:576.475500px;}
.yfc{bottom:583.981500px;}
.y9f{bottom:585.591000px;}
.y12{bottom:587.869500px;}
.ycf{bottom:588.903000px;}
.y5e{bottom:590.725500px;}
.y19a{bottom:592.854000px;}
.y1da{bottom:592.914000px;}
.y172{bottom:593.082000px;}
.y12a{bottom:593.269500px;}
.y14e{bottom:598.974000px;}
.yfb{bottom:601.915500px;}
.y9e{bottom:603.523500px;}
.y11{bottom:605.802000px;}
.yce{bottom:607.987500px;}
.y73{bottom:608.658000px;}
.y5d{bottom:608.659500px;}
.y199{bottom:610.788000px;}
.y171{bottom:611.016000px;}
.y1d9{bottom:611.209500px;}
.yfa{bottom:619.848000px;}
.y9d{bottom:621.456000px;}
.y129{bottom:622.494000px;}
.y10{bottom:623.734500px;}
.ycd{bottom:625.921500px;}
.y5c{bottom:626.592000px;}
.y1d8{bottom:627.648000px;}
.y170{bottom:628.948500px;}
.y198{bottom:629.143500px;}
.yf9{bottom:637.780500px;}
.y9c{bottom:639.388500px;}
.y128{bottom:640.426500px;}
.yf{bottom:641.668500px;}
.ycc{bottom:643.854000px;}
.y1d7{bottom:644.086500px;}
.y5b{bottom:644.524500px;}
.y14d{bottom:645.300000px;}
.y20e{bottom:646.624500px;}
.y16f{bottom:646.881000px;}
.y197{bottom:647.076000px;}
.yf8{bottom:655.713000px;}
.y9b{bottom:657.321000px;}
.y127{bottom:658.359000px;}
.ye{bottom:659.601000px;}
.y1d6{bottom:660.525000px;}
.ycb{bottom:661.786500px;}
.y5a{bottom:662.457000px;}
.y20d{bottom:663.063000px;}
.y196{bottom:665.008500px;}
.y16e{bottom:674.170500px;}
.y9a{bottom:675.255000px;}
.y126{bottom:676.291500px;}
.yd{bottom:677.533500px;}
.y1d5{bottom:678.820500px;}
.y20c{bottom:679.501500px;}
.yca{bottom:679.719000px;}
.y195{bottom:682.941000px;}
.yf7{bottom:683.733000px;}
.y14c{bottom:691.626000px;}
.y125{bottom:694.224000px;}
.y99{bottom:694.603500px;}
.y1d4{bottom:695.257500px;}
.yc{bottom:695.466000px;}
.y20b{bottom:695.940000px;}
.yc9{bottom:697.651500px;}
.y2c{bottom:699.334500px;}
.y194{bottom:700.873500px;}
.y16d{bottom:705.229500px;}
.y59{bottom:710.200500px;}
.y1d3{bottom:711.696000px;}
.y124{bottom:712.156500px;}
.y98{bottom:712.536000px;}
.yb{bottom:713.398500px;}
.y20a{bottom:713.872500px;}
.yc8{bottom:715.584000px;}
.y2b{bottom:715.773000px;}
.y193{bottom:719.230500px;}
.yf6{bottom:722.941500px;}
.y16c{bottom:723.162000px;}
.y58{bottom:726.639000px;}
.y1d2{bottom:728.134500px;}
.y123{bottom:730.090500px;}
.y209{bottom:730.311000px;}
.y97{bottom:730.468500px;}
.ya{bottom:731.331000px;}
.y2a{bottom:732.211500px;}
.yc7{bottom:733.518000px;}
.y192{bottom:737.163000px;}
.y14b{bottom:737.953500px;}
.yf5{bottom:740.874000px;}
.y16b{bottom:741.094500px;}
.y57{bottom:743.077500px;}
.y208{bottom:746.749500px;}
.y122{bottom:748.023000px;}
.y96{bottom:748.401000px;}
.y9{bottom:749.265000px;}
.y191{bottom:755.095500px;}
.y1d1{bottom:755.397000px;}
.yf4{bottom:758.806500px;}
.y16a{bottom:759.028500px;}
.y56{bottom:759.516000px;}
.yc6{bottom:761.568000px;}
.y207{bottom:763.188000px;}
.y121{bottom:765.955500px;}
.y95{bottom:766.333500px;}
.y8{bottom:767.197500px;}
.y55{bottom:775.954500px;}
.yf3{bottom:776.739000px;}
.y169{bottom:776.961000px;}
.y206{bottom:779.626500px;}
.y190{bottom:782.418000px;}
.y120{bottom:783.888000px;}
.y14a{bottom:784.279500px;}
.y94{bottom:785.682000px;}
.y1d0{bottom:792.349500px;}
.y168{bottom:794.893500px;}
.yc5{bottom:794.913000px;}
.y205{bottom:796.065000px;}
.y1ac{bottom:798.132000px;}
.y18f{bottom:800.350500px;}
.y11f{bottom:801.820500px;}
.y93{bottom:803.614500px;}
.yf2{bottom:803.638500px;}
.y7{bottom:804.580500px;}
.y1cf{bottom:810.282000px;}
.y204{bottom:812.503500px;}
.y167{bottom:812.826000px;}
.yc4{bottom:812.845500px;}
.y11e{bottom:819.753000px;}
.y92{bottom:821.548500px;}
.y1ce{bottom:828.214500px;}
.y203{bottom:830.436000px;}
.y149{bottom:830.605500px;}
.yc3{bottom:830.778000px;}
.y166{bottom:831.150000px;}
.y18e{bottom:831.507000px;}
.yf1{bottom:832.237500px;}
.y3e{bottom:836.772000px;}
.y91{bottom:839.481000px;}
.y42{bottom:840.274500px;}
.y4d{bottom:845.865000px;}
.y1cd{bottom:846.147000px;}
.y202{bottom:846.874500px;}
.y11d{bottom:847.773000px;}
.yc2{bottom:848.710500px;}
.y165{bottom:849.082500px;}
.y18d{bottom:849.439500px;}
.yf0{bottom:850.170000px;}
.y90{bottom:857.413500px;}
.y45{bottom:862.333500px;}
.y201{bottom:863.313000px;}
.y1cc{bottom:864.079500px;}
.y6{bottom:866.149500px;}
.yc1{bottom:866.643000px;}
.y164{bottom:867.015000px;}
.y18c{bottom:867.372000px;}
.yef{bottom:868.102500px;}
.y51{bottom:874.204500px;}
.y8f{bottom:875.346000px;}
.y148{bottom:876.931500px;}
.y200{bottom:881.245500px;}
.y53{bottom:882.526500px;}
.y163{bottom:884.947500px;}
.y18b{bottom:885.304500px;}
.yc0{bottom:885.729000px;}
.y4e{bottom:885.877500px;}
.yee{bottom:886.035000px;}
.y5{bottom:887.071500px;}
.y11c{bottom:887.263500px;}
.y8e{bottom:893.278500px;}
.y52{bottom:897.537000px;}
.y50{bottom:897.541500px;}
.y1ff{bottom:897.684000px;}
.y46{bottom:898.995000px;}
.y4f{bottom:900.858000px;}
.y40{bottom:901.302000px;}
.y162{bottom:902.880000px;}
.ybf{bottom:903.661500px;}
.yed{bottom:903.967500px;}
.y11b{bottom:905.196000px;}
.y4{bottom:907.993500px;}
.y8d{bottom:911.212500px;}
.y1fe{bottom:914.122500px;}
.y161{bottom:920.812500px;}
.ybe{bottom:921.594000px;}
.yec{bottom:921.900000px;}
.y11a{bottom:923.128500px;}
.y147{bottom:923.259000px;}
.y3{bottom:928.914000px;}
.y8c{bottom:929.145000px;}
.y1c6{bottom:929.236500px;}
.y1fd{bottom:930.561000px;}
.y160{bottom:939.136500px;}
.ybd{bottom:939.526500px;}
.yeb{bottom:939.834000px;}
.y1fc{bottom:946.998000px;}
.y8b{bottom:947.077500px;}
.y1c5{bottom:947.169000px;}
.y4b{bottom:949.360980px;}
.y119{bottom:954.346500px;}
.y15f{bottom:957.069000px;}
.ybc{bottom:957.459000px;}
.yea{bottom:957.766500px;}
.y41{bottom:961.990541px;}
.y1fb{bottom:964.932000px;}
.y8a{bottom:965.010000px;}
.y1c4{bottom:965.101500px;}
.y54{bottom:965.744062px;}
.y49{bottom:968.898336px;}
.y146{bottom:969.585000px;}
.y15e{bottom:975.001500px;}
.ybb{bottom:975.391500px;}
.ye9{bottom:975.699000px;}
.y4c{bottom:980.716500px;}
.y1fa{bottom:981.370500px;}
.y47{bottom:981.922239px;}
.y89{bottom:982.942500px;}
.y1c3{bottom:983.034000px;}
.y2{bottom:985.701000px;}
.y117{bottom:989.644500px;}
.y118{bottom:990.603000px;}
.y43{bottom:992.197826px;}
.y3f{bottom:992.488500px;}
.y4a{bottom:992.562000px;}
.y15d{bottom:992.934000px;}
.y18a{bottom:993.324000px;}
.yba{bottom:993.325500px;}
.y1f9{bottom:997.807500px;}
.ye8{bottom:999.105000px;}
.y48{bottom:1000.459500px;}
.y88{bottom:1000.875000px;}
.y1c2{bottom:1000.966500px;}
.y44{bottom:1005.723000px;}
.ye7{bottom:1009.356000px;}
.y15c{bottom:1010.868000px;}
.yb9{bottom:1011.258000px;}
.y1{bottom:1012.600500px;}
.y1f8{bottom:1015.741500px;}
.y145{bottom:1015.911000px;}
.y87{bottom:1018.809000px;}
.y1c1{bottom:1018.899000px;}
.y113{bottom:1020.742500px;}
.y116{bottom:1023.804000px;}
.y115{bottom:1026.793500px;}
.y15b{bottom:1028.800500px;}
.yb8{bottom:1029.190500px;}
.y1f7{bottom:1032.180000px;}
.y86{bottom:1036.741500px;}
.y144{bottom:1037.430000px;}
.y114{bottom:1040.937000px;}
.yb7{bottom:1047.123000px;}
.y1f6{bottom:1048.617000px;}
.y143{bottom:1054.389000px;}
.y85{bottom:1065.055500px;}
.y142{bottom:1070.827500px;}
.h20{height:0.000000px;}
.hc{height:23.741493px;}
.hd{height:24.005337px;}
.h11{height:24.675533px;}
.he{height:24.798306px;}
.hb{height:27.553489px;}
.hf{height:27.554161px;}
.h1e{height:28.731163px;}
.h1f{height:28.879613px;}
.h22{height:32.900573px;}
.h3{height:33.570202px;}
.h27{height:36.744307px;}
.h8{height:37.013299px;}
.h23{height:37.228493px;}
.h26{height:37.283299px;}
.h1d{height:37.355700px;}
.ha{height:40.262389px;}
.h6{height:40.826735px;}
.h7{height:41.125613px;}
.h16{height:41.364715px;}
.h24{height:41.425613px;}
.h1c{height:41.484266px;}
.h17{height:42.141798px;}
.h25{height:42.145920px;}
.h12{height:44.831700px;}
.h9{height:45.501353px;}
.h13{height:46.326090px;}
.h2{height:49.351066px;}
.h5{height:49.637990px;}
.h4{height:49.711066px;}
.h21{height:50.477846px;}
.h10{height:50.483846px;}
.h18{height:51.523916px;}
.h1{height:59.565422px;}
.h19{height:61.763700px;}
.h15{height:82.129613px;}
.h14{height:85.271700px;}
.h1a{height:86.766090px;}
.h1b{height:87.330090px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:75.168000px;}
.x1{left:78.646500px;}
.x35{left:86.376000px;}
.x3a{left:91.456500px;}
.xd{left:93.100500px;}
.x12{left:95.988000px;}
.x36{left:105.055500px;}
.x11{left:110.559000px;}
.x3d{left:125.764500px;}
.x13{left:145.369500px;}
.x4b{left:150.999000px;}
.x15{left:156.961500px;}
.x4c{left:159.934500px;}
.x6{left:170.944500px;}
.x49{left:173.164500px;}
.x4d{left:174.457500px;}
.x4a{left:176.142000px;}
.x14{left:179.556000px;}
.x3b{left:186.909000px;}
.x48{left:191.008500px;}
.x19{left:194.430000px;}
.x16{left:213.813000px;}
.x18{left:215.744739px;}
.x3e{left:217.323000px;}
.xc{left:218.992500px;}
.x3c{left:220.660500px;}
.x17{left:222.288000px;}
.x5{left:234.507000px;}
.x4{left:237.511500px;}
.x3{left:244.344000px;}
.x4f{left:246.571500px;}
.x1c{left:259.126836px;}
.x1a{left:265.092000px;}
.x1b{left:273.565500px;}
.x20{left:277.936500px;}
.x1f{left:304.257480px;}
.x1d{left:322.068000px;}
.x47{left:325.543500px;}
.x54{left:328.990500px;}
.x1e{left:330.541500px;}
.x55{left:339.441000px;}
.x46{left:350.656500px;}
.x21{left:379.018500px;}
.x2{left:404.176500px;}
.x22{left:455.554500px;}
.xf{left:463.293000px;}
.x51{left:470.017500px;}
.xb{left:471.729000px;}
.x23{left:474.952500px;}
.x45{left:479.581500px;}
.x10{left:481.225500px;}
.x44{left:487.387500px;}
.x37{left:493.180500px;}
.x24{left:495.556500px;}
.x4e{left:500.278500px;}
.x38{left:501.997500px;}
.x26{left:520.084500px;}
.x39{left:526.057500px;}
.xa{left:535.291500px;}
.x9{left:538.296000px;}
.x7{left:546.742500px;}
.x3f{left:550.000500px;}
.x42{left:560.296500px;}
.x25{left:572.763000px;}
.x27{left:581.236500px;}
.x53{left:592.824000px;}
.x2a{left:593.911500px;}
.x8{left:597.061500px;}
.x50{left:606.093000px;}
.x29{left:615.226836px;}
.x43{left:620.194500px;}
.x40{left:627.153000px;}
.x28{left:629.739000px;}
.x2b{left:638.212500px;}
.x41{left:642.382500px;}
.x2e{left:653.086500px;}
.x2d{left:674.402739px;}
.x2c{left:681.016500px;}
.x2f{left:689.491500px;}
.x31{left:701.083500px;}
.x52{left:710.296500px;}
.x30{left:723.748500px;}
.x33{left:727.256062px;}
.x32{left:757.863000px;}
.x34{left:771.154500px;}
@media print{
.ve{vertical-align:-55.792000pt;}
.v10{vertical-align:-47.824000pt;}
.vf{vertical-align:-39.850667pt;}
.v7{vertical-align:-15.002667pt;}
.v9{vertical-align:-13.605333pt;}
.vd{vertical-align:-10.885333pt;}
.v3{vertical-align:-8.565280pt;}
.v5{vertical-align:-7.121653pt;}
.v4{vertical-align:-5.024107pt;}
.v2{vertical-align:-3.559040pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.133333pt;}
.vc{vertical-align:7.818667pt;}
.vb{vertical-align:10.720000pt;}
.va{vertical-align:15.050667pt;}
.v6{vertical-align:19.285333pt;}
.v8{vertical-align:35.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000177pt;}
.ls27{letter-spacing:0.000271pt;}
.ls3b{letter-spacing:0.001173pt;}
.ls4{letter-spacing:0.001444pt;}
.ls18{letter-spacing:0.001509pt;}
.ls5f{letter-spacing:0.001867pt;}
.ls1f{letter-spacing:0.001962pt;}
.ls24{letter-spacing:0.001975pt;}
.ls32{letter-spacing:0.001995pt;}
.ls53{letter-spacing:0.002174pt;}
.ls4e{letter-spacing:0.002245pt;}
.ls2b{letter-spacing:0.002509pt;}
.ls42{letter-spacing:0.002557pt;}
.ls19{letter-spacing:0.002906pt;}
.ls6{letter-spacing:0.002911pt;}
.ls3f{letter-spacing:0.003723pt;}
.ls38{letter-spacing:0.003733pt;}
.ls56{letter-spacing:0.004212pt;}
.ls1a{letter-spacing:0.851723pt;}
.ls3d{letter-spacing:0.950636pt;}
.ls5d{letter-spacing:1.227145pt;}
.ls3c{letter-spacing:1.567996pt;}
.ls5{letter-spacing:1.779630pt;}
.ls51{letter-spacing:2.652911pt;}
.ls47{letter-spacing:2.654544pt;}
.ls3a{letter-spacing:2.654545pt;}
.ls29{letter-spacing:2.656165pt;}
.ls4d{letter-spacing:2.656533pt;}
.ls9{letter-spacing:2.657067pt;}
.ls54{letter-spacing:2.658245pt;}
.ls16{letter-spacing:3.765812pt;}
.ls15{letter-spacing:3.769067pt;}
.ls30{letter-spacing:3.992007pt;}
.ls2e{letter-spacing:5.317498pt;}
.ls22{letter-spacing:7.057935pt;}
.ls1d{letter-spacing:8.850079pt;}
.lsa{letter-spacing:8.855412pt;}
.ls48{letter-spacing:8.857067pt;}
.ls59{letter-spacing:10.620049pt;}
.ls26{letter-spacing:11.111329pt;}
.ls17{letter-spacing:11.113067pt;}
.ls65{letter-spacing:11.370647pt;}
.ls41{letter-spacing:11.510347pt;}
.ls1b{letter-spacing:11.795718pt;}
.ls36{letter-spacing:11.803145pt;}
.ls33{letter-spacing:11.804662pt;}
.lse{letter-spacing:11.804745pt;}
.lsd{letter-spacing:11.806400pt;}
.ls1e{letter-spacing:11.808479pt;}
.ls34{letter-spacing:11.810079pt;}
.lsf{letter-spacing:11.811733pt;}
.ls6f{letter-spacing:11.955200pt;}
.ls31{letter-spacing:12.845340pt;}
.ls8{letter-spacing:13.061867pt;}
.ls61{letter-spacing:13.237812pt;}
.ls52{letter-spacing:13.281867pt;}
.ls39{letter-spacing:13.283723pt;}
.ls4f{letter-spacing:13.287200pt;}
.ls66{letter-spacing:13.496002pt;}
.ls43{letter-spacing:13.661252pt;}
.ls12{letter-spacing:13.694400pt;}
.ls13{letter-spacing:13.696479pt;}
.ls64{letter-spacing:14.293010pt;}
.ls2{letter-spacing:14.296890pt;}
.ls1{letter-spacing:14.297155pt;}
.ls35{letter-spacing:14.462544pt;}
.ls46{letter-spacing:14.757812pt;}
.ls45{letter-spacing:14.760266pt;}
.ls58{letter-spacing:15.302716pt;}
.lsc{letter-spacing:15.751412pt;}
.lsb{letter-spacing:15.753067pt;}
.ls23{letter-spacing:15.800239pt;}
.ls4b{letter-spacing:15.808882pt;}
.ls14{letter-spacing:15.827733pt;}
.ls4c{letter-spacing:15.941806pt;}
.ls25{letter-spacing:16.369935pt;}
.ls2a{letter-spacing:16.395207pt;}
.ls5e{letter-spacing:16.577766pt;}
.ls7{letter-spacing:16.949703pt;}
.ls62{letter-spacing:17.002837pt;}
.ls20{letter-spacing:17.057828pt;}
.ls11{letter-spacing:17.339145pt;}
.ls10{letter-spacing:17.342400pt;}
.ls2c{letter-spacing:17.635878pt;}
.ls28{letter-spacing:18.589178pt;}
.ls2d{letter-spacing:18.968007pt;}
.ls21{letter-spacing:19.420662pt;}
.ls2f{letter-spacing:19.809995pt;}
.ls60{letter-spacing:20.350271pt;}
.ls63{letter-spacing:21.891153pt;}
.ls4a{letter-spacing:25.803140pt;}
.ls5c{letter-spacing:30.445706pt;}
.ls6a{letter-spacing:63.761264pt;}
.ls5b{letter-spacing:76.748911pt;}
.ls49{letter-spacing:85.673067pt;}
.ls5a{letter-spacing:93.495578pt;}
.ls6d{letter-spacing:117.691931pt;}
.ls37{letter-spacing:119.070400pt;}
.ls40{letter-spacing:120.501812pt;}
.ls6e{letter-spacing:124.492562pt;}
.ls6c{letter-spacing:126.566597pt;}
.ls67{letter-spacing:130.465895pt;}
.ls57{letter-spacing:138.034245pt;}
.ls68{letter-spacing:159.035931pt;}
.ls55{letter-spacing:195.660911pt;}
.ls44{letter-spacing:197.768239pt;}
.ls69{letter-spacing:231.927578pt;}
.ls50{letter-spacing:259.111578pt;}
.ls6b{letter-spacing:269.170245pt;}
.ls1c{letter-spacing:466.302400pt;}
.ls3e{letter-spacing:502.933873pt;}
.wsb5{word-spacing:-53.133867pt;}
.wsad{word-spacing:-38.362652pt;}
.ws95{word-spacing:-34.611401pt;}
.wsa3{word-spacing:-33.740005pt;}
.wsa1{word-spacing:-28.118362pt;}
.ws96{word-spacing:-26.556307pt;}
.wsb6{word-spacing:-25.791179pt;}
.wsb0{word-spacing:-25.738045pt;}
.wsb3{word-spacing:-24.723188pt;}
.wsac{word-spacing:-19.871083pt;}
.ws34{word-spacing:-17.502349pt;}
.wsa4{word-spacing:-16.917823pt;}
.ws7d{word-spacing:-14.760588pt;}
.ws16{word-spacing:-13.283467pt;}
.wsc2{word-spacing:-12.028410pt;}
.ws126{word-spacing:-11.955200pt;}
.wsb4{word-spacing:-10.705369pt;}
.ws6e{word-spacing:-10.626800pt;}
.ws2f{word-spacing:-8.899706pt;}
.wsa8{word-spacing:-3.188032pt;}
.wsa7{word-spacing:-3.176539pt;}
.ws8d{word-spacing:-3.081764pt;}
.wsed{word-spacing:-2.922363pt;}
.ws15{word-spacing:-2.869229pt;}
.ws82{word-spacing:-2.762961pt;}
.ws93{word-spacing:-2.603559pt;}
.ws6d{word-spacing:-2.497292pt;}
.ws86{word-spacing:-2.444158pt;}
.ws6a{word-spacing:-2.337890pt;}
.ws18{word-spacing:-2.284756pt;}
.ws13c{word-spacing:-2.247578pt;}
.wsbd{word-spacing:-2.231622pt;}
.ws92{word-spacing:-2.178489pt;}
.ws5{word-spacing:-2.125355pt;}
.wsa5{word-spacing:-2.072221pt;}
.ws5d{word-spacing:-2.019087pt;}
.ws60{word-spacing:-1.965953pt;}
.ws57{word-spacing:-1.912819pt;}
.ws6f{word-spacing:-1.859685pt;}
.ws8e{word-spacing:-1.806551pt;}
.ws11d{word-spacing:-1.769370pt;}
.ws124{word-spacing:-1.673728pt;}
.ws13f{word-spacing:-1.625907pt;}
.ws11c{word-spacing:-1.578086pt;}
.ws7e{word-spacing:-1.572376pt;}
.wsa0{word-spacing:-1.540882pt;}
.wsdd{word-spacing:-1.522721pt;}
.ws45{word-spacing:-1.487748pt;}
.ws97{word-spacing:-1.474776pt;}
.ws98{word-spacing:-1.381481pt;}
.wscc{word-spacing:-1.338982pt;}
.ws4d{word-spacing:-1.275213pt;}
.ws11e{word-spacing:-1.243341pt;}
.ws56{word-spacing:-1.222079pt;}
.ws132{word-spacing:-1.195520pt;}
.ws22{word-spacing:-1.168945pt;}
.ws106{word-spacing:-1.099878pt;}
.ws4{word-spacing:-1.062677pt;}
.ws119{word-spacing:-1.052058pt;}
.ws123{word-spacing:-0.956416pt;}
.ws61{word-spacing:-0.956410pt;}
.ws113{word-spacing:-0.908595pt;}
.ws19{word-spacing:-0.903276pt;}
.ws127{word-spacing:-0.860774pt;}
.wsf{word-spacing:-0.850142pt;}
.ws131{word-spacing:-0.717312pt;}
.ws14{word-spacing:-0.690740pt;}
.ws1f{word-spacing:-0.637606pt;}
.wse2{word-spacing:-0.584473pt;}
.wsbe{word-spacing:-0.531339pt;}
.ws11a{word-spacing:-0.435260pt;}
.ws11b{word-spacing:-0.430387pt;}
.ws129{word-spacing:-0.334746pt;}
.ws83{word-spacing:-0.318803pt;}
.ws73{word-spacing:-0.265669pt;}
.ws12a{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.159402pt;}
.ws53{word-spacing:-0.106268pt;}
.ws39{word-spacing:-0.095642pt;}
.ws1{word-spacing:-0.076513pt;}
.ws10c{word-spacing:-0.063761pt;}
.wse1{word-spacing:-0.058447pt;}
.ws5f{word-spacing:-0.053134pt;}
.ws30{word-spacing:-0.028480pt;}
.wsb2{word-spacing:-0.026567pt;}
.wsb1{word-spacing:-0.013752pt;}
.wsfe{word-spacing:-0.002659pt;}
.wsfa{word-spacing:-0.002145pt;}
.wsfc{word-spacing:-0.001867pt;}
.wsfd{word-spacing:-0.001556pt;}
.wsf6{word-spacing:-0.001537pt;}
.ws100{word-spacing:-0.001348pt;}
.ws103{word-spacing:-0.000845pt;}
.ws2{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.001588pt;}
.wsf8{word-spacing:0.002978pt;}
.wsf9{word-spacing:0.003786pt;}
.ws102{word-spacing:0.004489pt;}
.ws94{word-spacing:0.010627pt;}
.ws41{word-spacing:0.053134pt;}
.ws111{word-spacing:0.095642pt;}
.ws5a{word-spacing:0.159402pt;}
.ws87{word-spacing:0.212535pt;}
.wsf2{word-spacing:0.265669pt;}
.ws3c{word-spacing:0.425071pt;}
.ws80{word-spacing:0.478205pt;}
.ws12{word-spacing:0.531339pt;}
.ws7b{word-spacing:0.584473pt;}
.ws105{word-spacing:0.621670pt;}
.ws46{word-spacing:0.637606pt;}
.ws63{word-spacing:0.690740pt;}
.ws81{word-spacing:0.743874pt;}
.ws75{word-spacing:0.797008pt;}
.ws43{word-spacing:0.850142pt;}
.ws6c{word-spacing:0.903276pt;}
.wsf4{word-spacing:0.908595pt;}
.wsba{word-spacing:0.956410pt;}
.ws109{word-spacing:1.009543pt;}
.ws12f{word-spacing:1.052058pt;}
.ws29{word-spacing:1.062677pt;}
.ws7c{word-spacing:1.115811pt;}
.ws3e{word-spacing:1.168945pt;}
.ws85{word-spacing:1.275213pt;}
.wsc{word-spacing:1.328347pt;}
.wsbf{word-spacing:1.360230pt;}
.ws3b{word-spacing:1.381481pt;}
.ws5b{word-spacing:1.434614pt;}
.ws36{word-spacing:1.434624pt;}
.wsa{word-spacing:1.487748pt;}
.ws64{word-spacing:1.540882pt;}
.ws38{word-spacing:1.578086pt;}
.ws9f{word-spacing:1.594016pt;}
.ws6{word-spacing:1.647150pt;}
.wsa9{word-spacing:1.693371pt;}
.wsaa{word-spacing:1.700284pt;}
.ws115{word-spacing:1.769370pt;}
.ws65{word-spacing:1.859685pt;}
.wsca{word-spacing:1.865011pt;}
.ws3{word-spacing:1.912819pt;}
.wsf0{word-spacing:1.965953pt;}
.ws42{word-spacing:2.019087pt;}
.wsef{word-spacing:2.072221pt;}
.ws8a{word-spacing:2.125355pt;}
.ws58{word-spacing:2.178489pt;}
.ws8c{word-spacing:2.231622pt;}
.wsb{word-spacing:2.284756pt;}
.wsc0{word-spacing:2.295398pt;}
.ws69{word-spacing:2.337890pt;}
.ws12d{word-spacing:2.343219pt;}
.ws1a{word-spacing:2.391024pt;}
.ws10{word-spacing:2.444158pt;}
.ws76{word-spacing:2.497292pt;}
.ws79{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.603559pt;}
.wse{word-spacing:2.656693pt;}
.ws84{word-spacing:2.709827pt;}
.ws44{word-spacing:2.762961pt;}
.wsa6{word-spacing:2.869229pt;}
.wsa2{word-spacing:2.922363pt;}
.ws9e{word-spacing:2.975497pt;}
.ws118{word-spacing:3.016038pt;}
.wsec{word-spacing:3.028630pt;}
.ws114{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.081764pt;}
.ws49{word-spacing:3.134898pt;}
.ws2a{word-spacing:3.188032pt;}
.ws24{word-spacing:3.241166pt;}
.ws67{word-spacing:3.294300pt;}
.wsee{word-spacing:3.347434pt;}
.wscb{word-spacing:3.347456pt;}
.wsd3{word-spacing:3.400567pt;}
.wsea{word-spacing:3.506835pt;}
.ws122{word-spacing:3.586560pt;}
.ws55{word-spacing:3.666237pt;}
.ws3f{word-spacing:3.719371pt;}
.ws1e{word-spacing:3.772505pt;}
.ws8f{word-spacing:3.825638pt;}
.ws89{word-spacing:3.841329pt;}
.wseb{word-spacing:3.878772pt;}
.ws108{word-spacing:3.931906pt;}
.ws11{word-spacing:3.985040pt;}
.ws133{word-spacing:4.016947pt;}
.ws62{word-spacing:4.038174pt;}
.ws37{word-spacing:4.064768pt;}
.ws48{word-spacing:4.091308pt;}
.ws74{word-spacing:4.144442pt;}
.ws25{word-spacing:4.197575pt;}
.ws26{word-spacing:4.250709pt;}
.ws135{word-spacing:4.256051pt;}
.ws4c{word-spacing:4.303843pt;}
.ws116{word-spacing:4.303872pt;}
.ws72{word-spacing:4.356977pt;}
.ws23{word-spacing:4.463245pt;}
.ws78{word-spacing:4.516379pt;}
.ws125{word-spacing:4.590797pt;}
.ws10b{word-spacing:4.622646pt;}
.ws128{word-spacing:4.638618pt;}
.ws3a{word-spacing:4.675780pt;}
.wsdc{word-spacing:4.728914pt;}
.wsd{word-spacing:4.782048pt;}
.ws50{word-spacing:4.994583pt;}
.ws13{word-spacing:5.047717pt;}
.ws13e{word-spacing:5.116826pt;}
.wse3{word-spacing:5.153985pt;}
.ws13d{word-spacing:5.164646pt;}
.ws59{word-spacing:5.207119pt;}
.ws112{word-spacing:5.255842pt;}
.wsbb{word-spacing:5.260253pt;}
.ws130{word-spacing:5.260288pt;}
.ws120{word-spacing:5.308109pt;}
.ws88{word-spacing:5.313387pt;}
.ws4e{word-spacing:5.366521pt;}
.ws11f{word-spacing:5.403750pt;}
.wse8{word-spacing:5.472788pt;}
.ws4a{word-spacing:5.525922pt;}
.ws1b{word-spacing:5.579056pt;}
.ws40{word-spacing:5.685324pt;}
.ws70{word-spacing:5.844725pt;}
.wsf3{word-spacing:5.897859pt;}
.ws77{word-spacing:6.004127pt;}
.ws12c{word-spacing:6.025421pt;}
.wsdf{word-spacing:6.057261pt;}
.wsb8{word-spacing:6.110395pt;}
.ws66{word-spacing:6.163529pt;}
.wsf1{word-spacing:6.216662pt;}
.wsbc{word-spacing:6.269796pt;}
.ws13a{word-spacing:6.312346pt;}
.wsda{word-spacing:6.322930pt;}
.ws3d{word-spacing:6.376064pt;}
.wsab{word-spacing:6.515363pt;}
.ws2c{word-spacing:6.535466pt;}
.ws121{word-spacing:6.599270pt;}
.wsde{word-spacing:6.641733pt;}
.wsd5{word-spacing:6.748001pt;}
.ws7a{word-spacing:6.801135pt;}
.ws54{word-spacing:6.854269pt;}
.ws10f{word-spacing:6.886195pt;}
.ws110{word-spacing:6.934016pt;}
.ws8{word-spacing:7.066804pt;}
.ws5e{word-spacing:7.119938pt;}
.ws1c{word-spacing:7.226206pt;}
.ws71{word-spacing:7.332474pt;}
.ws7{word-spacing:7.385607pt;}
.ws91{word-spacing:7.438741pt;}
.wsd1{word-spacing:7.491875pt;}
.ws9{word-spacing:7.545009pt;}
.wsb9{word-spacing:7.651277pt;}
.ws4b{word-spacing:7.704411pt;}
.wse9{word-spacing:7.757545pt;}
.ws10a{word-spacing:7.810678pt;}
.ws32{word-spacing:7.887053pt;}
.ws35{word-spacing:7.887946pt;}
.ws31{word-spacing:7.888911pt;}
.ws33{word-spacing:7.889312pt;}
.wse7{word-spacing:7.970080pt;}
.ws4f{word-spacing:8.129482pt;}
.ws10d{word-spacing:8.129536pt;}
.ws12b{word-spacing:8.368640pt;}
.ws107{word-spacing:8.501419pt;}
.ws99{word-spacing:8.554553pt;}
.ws12e{word-spacing:8.656811pt;}
.ws52{word-spacing:8.660820pt;}
.wsd7{word-spacing:8.767088pt;}
.ws7f{word-spacing:9.192159pt;}
.ws134{word-spacing:9.229414pt;}
.wsd8{word-spacing:9.298427pt;}
.wsaf{word-spacing:9.351561pt;}
.ws27{word-spacing:9.457828pt;}
.wse5{word-spacing:9.723498pt;}
.wse6{word-spacing:9.776631pt;}
.wsb7{word-spacing:9.829765pt;}
.wsdb{word-spacing:9.936033pt;}
.ws10e{word-spacing:10.185830pt;}
.wse4{word-spacing:10.254836pt;}
.wsd9{word-spacing:10.258746pt;}
.wsd2{word-spacing:10.307970pt;}
.wsd6{word-spacing:10.361104pt;}
.ws8b{word-spacing:10.520506pt;}
.wsce{word-spacing:10.572288pt;}
.wscd{word-spacing:10.576179pt;}
.ws9b{word-spacing:10.679907pt;}
.ws47{word-spacing:11.211246pt;}
.ws6b{word-spacing:12.380191pt;}
.ws5c{word-spacing:12.805262pt;}
.ws68{word-spacing:13.070931pt;}
.ws9c{word-spacing:13.230333pt;}
.ws51{word-spacing:13.283467pt;}
.ws2b{word-spacing:14.553419pt;}
.ws9d{word-spacing:14.558679pt;}
.ws90{word-spacing:14.718081pt;}
.ws117{word-spacing:14.728806pt;}
.ws17{word-spacing:15.876506pt;}
.ws21{word-spacing:16.737280pt;}
.wsd4{word-spacing:17.109105pt;}
.ws0{word-spacing:19.051754pt;}
.ws139{word-spacing:21.280256pt;}
.ws104{word-spacing:22.284493pt;}
.ws13b{word-spacing:26.110157pt;}
.ws138{word-spacing:29.170688pt;}
.ws137{word-spacing:33.044173pt;}
.wse0{word-spacing:33.782636pt;}
.ws20{word-spacing:34.191872pt;}
.ws136{word-spacing:42.130125pt;}
.wsc1{word-spacing:53.212596pt;}
.wscf{word-spacing:63.706903pt;}
.wsc9{word-spacing:67.666746pt;}
.wsc8{word-spacing:75.565413pt;}
.wsff{word-spacing:81.352079pt;}
.ws101{word-spacing:91.602746pt;}
.wsae{word-spacing:103.182051pt;}
.ws2e{word-spacing:158.915965pt;}
.wsc7{word-spacing:162.450746pt;}
.wsc6{word-spacing:173.042746pt;}
.wsc5{word-spacing:233.800079pt;}
.wsc4{word-spacing:236.493413pt;}
.wsc3{word-spacing:247.080079pt;}
.wsf5{word-spacing:252.386896pt;}
.wsf7{word-spacing:347.213413pt;}
.wsfb{word-spacing:386.989413pt;}
.ws2d{word-spacing:940.218902pt;}
._1d{margin-left:-11.823804pt;}
._0{margin-left:-5.661967pt;}
._e{margin-left:-3.970151pt;}
._2{margin-left:-2.830983pt;}
._1{margin-left:-1.912827pt;}
._7{margin-left:-0.903276pt;}
._23{width:1.004227pt;}
._20{width:1.918675pt;}
._22{width:3.021179pt;}
._24{width:4.033127pt;}
._3{width:5.321114pt;}
._1f{width:8.478953pt;}
._15{width:10.553694pt;}
._6{width:12.273923pt;}
._5{width:13.298355pt;}
._17{width:14.771308pt;}
._4{width:16.099562pt;}
._13{width:17.427908pt;}
._b{width:19.051701pt;}
._f{width:20.008111pt;}
._18{width:21.147279pt;}
._8{width:22.186599pt;}
._1a{width:23.340663pt;}
._19{width:24.600988pt;}
._12{width:26.248130pt;}
._16{width:27.465187pt;}
._d{width:28.479753pt;}
._1b{width:29.489296pt;}
._c{width:30.938799pt;}
._10{width:32.464793pt;}
._40{width:35.948750pt;}
._a{width:37.671911pt;}
._11{width:38.613433pt;}
._9{width:39.850407pt;}
._1e{width:41.550691pt;}
._1c{width:43.516637pt;}
._14{width:44.632455pt;}
._41{width:47.182874pt;}
._49{width:48.490291pt;}
._3f{width:50.105236pt;}
._47{width:54.991369pt;}
._4b{width:58.054446pt;}
._31{width:63.012919pt;}
._2d{width:64.135733pt;}
._3e{width:67.601167pt;}
._2c{width:77.230667pt;}
._48{width:80.195482pt;}
._2b{width:90.319548pt;}
._26{width:101.406689pt;}
._2f{width:104.150235pt;}
._32{width:106.469264pt;}
._4a{width:110.609510pt;}
._44{width:112.238482pt;}
._21{width:115.141089pt;}
._27{width:116.894133pt;}
._29{width:117.806429pt;}
._46{width:125.426743pt;}
._36{width:126.394598pt;}
._2a{width:130.174974pt;}
._2e{width:131.088312pt;}
._3a{width:135.995161pt;}
._28{width:143.834933pt;}
._45{width:158.961630pt;}
._35{width:181.129333pt;}
._33{width:184.750667pt;}
._39{width:201.054400pt;}
._3d{width:205.490422pt;}
._37{width:224.601067pt;}
._34{width:229.033333pt;}
._25{width:230.549059pt;}
._3b{width:233.474422pt;}
._38{width:268.883733pt;}
._3c{width:277.757089pt;}
._43{width:307.138971pt;}
._30{width:601.005062pt;}
._42{width:851.154396pt;}
.fsb{font-size:17.799845pt;}
.fsa{font-size:21.359957pt;}
.fsf{font-size:26.566933pt;}
.fs7{font-size:28.479824pt;}
.fsd{font-size:31.880533pt;}
.fs8{font-size:32.039155pt;}
.fs6{font-size:35.598823pt;}
.fs9{font-size:35.599691pt;}
.fsc{font-size:37.193600pt;}
.fse{font-size:42.507200pt;}
.fs5{font-size:42.719915pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.447467pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:108.000000pt;}
.yb6{bottom:111.750667pt;}
.y1f5{bottom:122.612000pt;}
.y3d{bottom:123.940000pt;}
.y141{bottom:124.369333pt;}
.y28{bottom:125.289333pt;}
.yb5{bottom:137.050667pt;}
.y1f4{bottom:137.224000pt;}
.y72{bottom:139.880000pt;}
.y27{bottom:141.229333pt;}
.y140{bottom:144.046667pt;}
.y112{bottom:144.745333pt;}
.y189{bottom:148.197333pt;}
.y3c{bottom:148.584000pt;}
.y1f3{bottom:151.836000pt;}
.y84{bottom:152.830667pt;}
.yb4{bottom:152.990667pt;}
.y111{bottom:153.857333pt;}
.ye6{bottom:155.820000pt;}
.y26{bottom:157.169333pt;}
.y13f{bottom:159.986667pt;}
.y71{bottom:166.792000pt;}
.y15a{bottom:167.009333pt;}
.y1f2{bottom:168.097333pt;}
.y83{bottom:168.770667pt;}
.yb3{bottom:168.930667pt;}
.ye5{bottom:171.760000pt;}
.y1ba{bottom:171.761333pt;}
.y25{bottom:173.109333pt;}
.y188{bottom:175.805333pt;}
.y13e{bottom:175.926667pt;}
.y3b{bottom:177.352000pt;}
.y1f1{bottom:182.709333pt;}
.y159{bottom:182.949333pt;}
.yb2{bottom:184.870667pt;}
.y1ab{bottom:187.700000pt;}
.ye4{bottom:187.701333pt;}
.y110{bottom:188.353333pt;}
.y24{bottom:189.050667pt;}
.y187{bottom:191.745333pt;}
.y13d{bottom:191.866667pt;}
.y3a{bottom:193.293333pt;}
.y70{bottom:193.818667pt;}
.y82{bottom:197.660000pt;}
.y158{bottom:198.890667pt;}
.y1f0{bottom:198.972000pt;}
.yb1{bottom:202.069333pt;}
.ye3{bottom:203.641333pt;}
.y1b9{bottom:203.700000pt;}
.y10f{bottom:204.293333pt;}
.y23{bottom:204.990667pt;}
.y186{bottom:207.685333pt;}
.y13c{bottom:207.806667pt;}
.y39{bottom:209.233333pt;}
.y1ef{bottom:213.584000pt;}
.y81{bottom:213.600000pt;}
.y157{bottom:215.361333pt;}
.yb0{bottom:218.010667pt;}
.ye2{bottom:219.581333pt;}
.y1b8{bottom:219.640000pt;}
.y10e{bottom:220.233333pt;}
.y6f{bottom:220.846667pt;}
.y22{bottom:220.930667pt;}
.y185{bottom:223.626667pt;}
.y13b{bottom:223.746667pt;}
.y38{bottom:225.173333pt;}
.y1ee{bottom:228.196000pt;}
.y156{bottom:230.436000pt;}
.y1cb{bottom:232.409333pt;}
.yaf{bottom:233.950667pt;}
.ye1{bottom:235.521333pt;}
.y1b7{bottom:235.581333pt;}
.y10d{bottom:236.173333pt;}
.y6e{bottom:236.786667pt;}
.y21{bottom:236.870667pt;}
.y184{bottom:239.566667pt;}
.y37{bottom:241.113333pt;}
.y80{bottom:242.490667pt;}
.y1ed{bottom:244.458667pt;}
.y155{bottom:245.048000pt;}
.y13a{bottom:248.986667pt;}
.yae{bottom:249.890667pt;}
.y1aa{bottom:251.461333pt;}
.y1b6{bottom:251.521333pt;}
.y10c{bottom:252.114667pt;}
.ye0{bottom:252.485333pt;}
.y20{bottom:252.810667pt;}
.y183{bottom:255.506667pt;}
.y36{bottom:257.053333pt;}
.y7f{bottom:258.430667pt;}
.y1ec{bottom:259.070667pt;}
.y154{bottom:259.660000pt;}
.y6d{bottom:263.813333pt;}
.yad{bottom:265.830667pt;}
.y1b5{bottom:267.461333pt;}
.y1a9{bottom:267.777333pt;}
.y10b{bottom:268.054667pt;}
.ydf{bottom:268.425333pt;}
.y1f{bottom:268.752000pt;}
.y1c0{bottom:268.908000pt;}
.y182{bottom:271.446667pt;}
.y35{bottom:272.993333pt;}
.y1eb{bottom:273.681333pt;}
.y7e{bottom:274.370667pt;}
.y6c{bottom:279.753333pt;}
.y139{bottom:280.276000pt;}
.yac{bottom:281.770667pt;}
.y1ca{bottom:281.908000pt;}
.y1a8{bottom:283.717333pt;}
.y10a{bottom:283.994667pt;}
.yde{bottom:284.366667pt;}
.y1e{bottom:284.692000pt;}
.y1bf{bottom:284.848000pt;}
.y181{bottom:287.734667pt;}
.y1ea{bottom:288.293333pt;}
.y34{bottom:288.934667pt;}
.y1b4{bottom:291.430667pt;}
.y138{bottom:296.217333pt;}
.y1c9{bottom:296.520000pt;}
.y7d{bottom:296.786667pt;}
.yab{bottom:297.710667pt;}
.y1a7{bottom:299.658667pt;}
.ydd{bottom:300.306667pt;}
.y1be{bottom:300.788000pt;}
.y1e9{bottom:302.905333pt;}
.y180{bottom:303.674667pt;}
.y33{bottom:304.874667pt;}
.y6b{bottom:306.780000pt;}
.y109{bottom:308.901333pt;}
.y1c8{bottom:311.132000pt;}
.y1d{bottom:311.280000pt;}
.y137{bottom:312.157333pt;}
.y7c{bottom:312.726667pt;}
.yaa{bottom:313.652000pt;}
.y1a6{bottom:315.598667pt;}
.ydc{bottom:316.246667pt;}
.y1bd{bottom:316.728000pt;}
.y1b3{bottom:318.174667pt;}
.y1e8{bottom:319.168000pt;}
.y17f{bottom:319.614667pt;}
.y32{bottom:321.548000pt;}
.y1c7{bottom:325.744000pt;}
.y153{bottom:326.526667pt;}
.y136{bottom:328.097333pt;}
.ya9{bottom:330.850667pt;}
.y1a5{bottom:331.538667pt;}
.ydb{bottom:332.186667pt;}
.y1bc{bottom:332.668000pt;}
.y6a{bottom:333.692000pt;}
.y1e7{bottom:333.780000pt;}
.y1b2{bottom:334.114667pt;}
.y7b{bottom:335.141333pt;}
.y17e{bottom:335.554667pt;}
.y31{bottom:337.488000pt;}
.y108{bottom:343.752000pt;}
.y135{bottom:344.037333pt;}
.ya8{bottom:346.790667pt;}
.y1a4{bottom:347.478667pt;}
.yda{bottom:348.126667pt;}
.y1e6{bottom:348.392000pt;}
.y1bb{bottom:348.608000pt;}
.y69{bottom:349.746667pt;}
.y1b1{bottom:350.114667pt;}
.y7a{bottom:351.081333pt;}
.y17d{bottom:351.494667pt;}
.y30{bottom:353.429333pt;}
.y107{bottom:359.693333pt;}
.y134{bottom:359.977333pt;}
.ya7{bottom:362.730667pt;}
.y1e5{bottom:363.004000pt;}
.y1c{bottom:363.148000pt;}
.y1a3{bottom:363.418667pt;}
.yd9{bottom:364.068000pt;}
.y68{bottom:365.688000pt;}
.y1b0{bottom:366.054667pt;}
.y17c{bottom:367.434667pt;}
.y152{bottom:367.705333pt;}
.y2f{bottom:369.369333pt;}
.y106{bottom:375.633333pt;}
.y133{bottom:375.918667pt;}
.y1e4{bottom:377.616000pt;}
.y1b{bottom:379.089333pt;}
.y1a2{bottom:379.358667pt;}
.y79{bottom:379.972000pt;}
.yd8{bottom:380.008000pt;}
.y67{bottom:381.628000pt;}
.y1af{bottom:381.994667pt;}
.y17b{bottom:383.376000pt;}
.y2e{bottom:385.309333pt;}
.ya6{bottom:389.228000pt;}
.y105{bottom:391.573333pt;}
.y132{bottom:391.858667pt;}
.y1e3{bottom:392.228000pt;}
.y1a{bottom:395.029333pt;}
.y1a1{bottom:395.300000pt;}
.yd7{bottom:395.948000pt;}
.y66{bottom:397.568000pt;}
.y1ae{bottom:397.934667pt;}
.y17a{bottom:399.662667pt;}
.y104{bottom:407.513333pt;}
.y131{bottom:407.798667pt;}
.y1e2{bottom:408.489333pt;}
.y78{bottom:408.862667pt;}
.y151{bottom:408.884000pt;}
.y19{bottom:410.969333pt;}
.yd6{bottom:411.888000pt;}
.y65{bottom:413.508000pt;}
.y179{bottom:415.602667pt;}
.y1a0{bottom:419.585333pt;}
.y1e1{bottom:423.101333pt;}
.y103{bottom:423.453333pt;}
.y130{bottom:423.738667pt;}
.y77{bottom:424.802667pt;}
.ya5{bottom:424.884000pt;}
.y18{bottom:426.909333pt;}
.yd5{bottom:427.828000pt;}
.y2d{bottom:429.216000pt;}
.y64{bottom:429.448000pt;}
.y178{bottom:431.542667pt;}
.y1e0{bottom:437.713333pt;}
.y102{bottom:439.394667pt;}
.y12f{bottom:439.678667pt;}
.y1ad{bottom:440.373333pt;}
.y76{bottom:440.742667pt;}
.ya4{bottom:440.824000pt;}
.y17{bottom:442.849333pt;}
.yd4{bottom:443.768000pt;}
.y63{bottom:445.389333pt;}
.y19f{bottom:447.281333pt;}
.y177{bottom:447.484000pt;}
.y150{bottom:450.064000pt;}
.y1df{bottom:452.325333pt;}
.y101{bottom:455.334667pt;}
.y12e{bottom:455.618667pt;}
.ya3{bottom:456.764000pt;}
.y16{bottom:458.789333pt;}
.yd3{bottom:459.709333pt;}
.y62{bottom:461.329333pt;}
.y19e{bottom:463.221333pt;}
.y176{bottom:463.424000pt;}
.y100{bottom:467.512000pt;}
.y1de{bottom:468.588000pt;}
.yff{bottom:471.274667pt;}
.y12d{bottom:471.560000pt;}
.y75{bottom:472.289333pt;}
.ya2{bottom:472.704000pt;}
.y15{bottom:474.730667pt;}
.yd2{bottom:475.649333pt;}
.y61{bottom:477.269333pt;}
.y19d{bottom:479.161333pt;}
.y175{bottom:479.364000pt;}
.y1dd{bottom:483.200000pt;}
.yfe{bottom:487.214667pt;}
.y12c{bottom:487.500000pt;}
.ya1{bottom:488.644000pt;}
.y14{bottom:490.670667pt;}
.y14f{bottom:491.242667pt;}
.yd1{bottom:491.589333pt;}
.y60{bottom:493.209333pt;}
.y19c{bottom:495.101333pt;}
.y174{bottom:495.304000pt;}
.y74{bottom:496.780000pt;}
.y1dc{bottom:497.812000pt;}
.yfd{bottom:503.154667pt;}
.y12b{bottom:503.440000pt;}
.ya0{bottom:504.585333pt;}
.y13{bottom:506.610667pt;}
.yd0{bottom:507.529333pt;}
.y5f{bottom:509.149333pt;}
.y19b{bottom:511.041333pt;}
.y173{bottom:511.244000pt;}
.y1db{bottom:512.422667pt;}
.yfc{bottom:519.094667pt;}
.y9f{bottom:520.525333pt;}
.y12{bottom:522.550667pt;}
.ycf{bottom:523.469333pt;}
.y5e{bottom:525.089333pt;}
.y19a{bottom:526.981333pt;}
.y1da{bottom:527.034667pt;}
.y172{bottom:527.184000pt;}
.y12a{bottom:527.350667pt;}
.y14e{bottom:532.421333pt;}
.yfb{bottom:535.036000pt;}
.y9e{bottom:536.465333pt;}
.y11{bottom:538.490667pt;}
.yce{bottom:540.433333pt;}
.y73{bottom:541.029333pt;}
.y5d{bottom:541.030667pt;}
.y199{bottom:542.922667pt;}
.y171{bottom:543.125333pt;}
.y1d9{bottom:543.297333pt;}
.yfa{bottom:550.976000pt;}
.y9d{bottom:552.405333pt;}
.y129{bottom:553.328000pt;}
.y10{bottom:554.430667pt;}
.ycd{bottom:556.374667pt;}
.y5c{bottom:556.970667pt;}
.y1d8{bottom:557.909333pt;}
.y170{bottom:559.065333pt;}
.y198{bottom:559.238667pt;}
.yf9{bottom:566.916000pt;}
.y9c{bottom:568.345333pt;}
.y128{bottom:569.268000pt;}
.yf{bottom:570.372000pt;}
.ycc{bottom:572.314667pt;}
.y1d7{bottom:572.521333pt;}
.y5b{bottom:572.910667pt;}
.y14d{bottom:573.600000pt;}
.y20e{bottom:574.777333pt;}
.y16f{bottom:575.005333pt;}
.y197{bottom:575.178667pt;}
.yf8{bottom:582.856000pt;}
.y9b{bottom:584.285333pt;}
.y127{bottom:585.208000pt;}
.ye{bottom:586.312000pt;}
.y1d6{bottom:587.133333pt;}
.ycb{bottom:588.254667pt;}
.y5a{bottom:588.850667pt;}
.y20d{bottom:589.389333pt;}
.y196{bottom:591.118667pt;}
.y16e{bottom:599.262667pt;}
.y9a{bottom:600.226667pt;}
.y126{bottom:601.148000pt;}
.yd{bottom:602.252000pt;}
.y1d5{bottom:603.396000pt;}
.y20c{bottom:604.001333pt;}
.yca{bottom:604.194667pt;}
.y195{bottom:607.058667pt;}
.yf7{bottom:607.762667pt;}
.y14c{bottom:614.778667pt;}
.y125{bottom:617.088000pt;}
.y99{bottom:617.425333pt;}
.y1d4{bottom:618.006667pt;}
.yc{bottom:618.192000pt;}
.y20b{bottom:618.613333pt;}
.yc9{bottom:620.134667pt;}
.y2c{bottom:621.630667pt;}
.y194{bottom:622.998667pt;}
.y16d{bottom:626.870667pt;}
.y59{bottom:631.289333pt;}
.y1d3{bottom:632.618667pt;}
.y124{bottom:633.028000pt;}
.y98{bottom:633.365333pt;}
.yb{bottom:634.132000pt;}
.y20a{bottom:634.553333pt;}
.yc8{bottom:636.074667pt;}
.y2b{bottom:636.242667pt;}
.y193{bottom:639.316000pt;}
.yf6{bottom:642.614667pt;}
.y16c{bottom:642.810667pt;}
.y58{bottom:645.901333pt;}
.y1d2{bottom:647.230667pt;}
.y123{bottom:648.969333pt;}
.y209{bottom:649.165333pt;}
.y97{bottom:649.305333pt;}
.ya{bottom:650.072000pt;}
.y2a{bottom:650.854667pt;}
.yc7{bottom:652.016000pt;}
.y192{bottom:655.256000pt;}
.y14b{bottom:655.958667pt;}
.yf5{bottom:658.554667pt;}
.y16b{bottom:658.750667pt;}
.y57{bottom:660.513333pt;}
.y208{bottom:663.777333pt;}
.y122{bottom:664.909333pt;}
.y96{bottom:665.245333pt;}
.y9{bottom:666.013333pt;}
.y191{bottom:671.196000pt;}
.y1d1{bottom:671.464000pt;}
.yf4{bottom:674.494667pt;}
.y16a{bottom:674.692000pt;}
.y56{bottom:675.125333pt;}
.yc6{bottom:676.949333pt;}
.y207{bottom:678.389333pt;}
.y121{bottom:680.849333pt;}
.y95{bottom:681.185333pt;}
.y8{bottom:681.953333pt;}
.y55{bottom:689.737333pt;}
.yf3{bottom:690.434667pt;}
.y169{bottom:690.632000pt;}
.y206{bottom:693.001333pt;}
.y190{bottom:695.482667pt;}
.y120{bottom:696.789333pt;}
.y14a{bottom:697.137333pt;}
.y94{bottom:698.384000pt;}
.y1d0{bottom:704.310667pt;}
.y168{bottom:706.572000pt;}
.yc5{bottom:706.589333pt;}
.y205{bottom:707.613333pt;}
.y1ac{bottom:709.450667pt;}
.y18f{bottom:711.422667pt;}
.y11f{bottom:712.729333pt;}
.y93{bottom:714.324000pt;}
.yf2{bottom:714.345333pt;}
.y7{bottom:715.182667pt;}
.y1cf{bottom:720.250667pt;}
.y204{bottom:722.225333pt;}
.y167{bottom:722.512000pt;}
.yc4{bottom:722.529333pt;}
.y11e{bottom:728.669333pt;}
.y92{bottom:730.265333pt;}
.y1ce{bottom:736.190667pt;}
.y203{bottom:738.165333pt;}
.y149{bottom:738.316000pt;}
.yc3{bottom:738.469333pt;}
.y166{bottom:738.800000pt;}
.y18e{bottom:739.117333pt;}
.yf1{bottom:739.766667pt;}
.y3e{bottom:743.797333pt;}
.y91{bottom:746.205333pt;}
.y42{bottom:746.910667pt;}
.y4d{bottom:751.880000pt;}
.y1cd{bottom:752.130667pt;}
.y202{bottom:752.777333pt;}
.y11d{bottom:753.576000pt;}
.yc2{bottom:754.409333pt;}
.y165{bottom:754.740000pt;}
.y18d{bottom:755.057333pt;}
.yf0{bottom:755.706667pt;}
.y90{bottom:762.145333pt;}
.y45{bottom:766.518667pt;}
.y201{bottom:767.389333pt;}
.y1cc{bottom:768.070667pt;}
.y6{bottom:769.910667pt;}
.yc1{bottom:770.349333pt;}
.y164{bottom:770.680000pt;}
.y18c{bottom:770.997333pt;}
.yef{bottom:771.646667pt;}
.y51{bottom:777.070667pt;}
.y8f{bottom:778.085333pt;}
.y148{bottom:779.494667pt;}
.y200{bottom:783.329333pt;}
.y53{bottom:784.468000pt;}
.y163{bottom:786.620000pt;}
.y18b{bottom:786.937333pt;}
.yc0{bottom:787.314667pt;}
.y4e{bottom:787.446667pt;}
.yee{bottom:787.586667pt;}
.y5{bottom:788.508000pt;}
.y11c{bottom:788.678667pt;}
.y8e{bottom:794.025333pt;}
.y52{bottom:797.810667pt;}
.y50{bottom:797.814667pt;}
.y1ff{bottom:797.941333pt;}
.y46{bottom:799.106667pt;}
.y4f{bottom:800.762667pt;}
.y40{bottom:801.157333pt;}
.y162{bottom:802.560000pt;}
.ybf{bottom:803.254667pt;}
.yed{bottom:803.526667pt;}
.y11b{bottom:804.618667pt;}
.y4{bottom:807.105333pt;}
.y8d{bottom:809.966667pt;}
.y1fe{bottom:812.553333pt;}
.y161{bottom:818.500000pt;}
.ybe{bottom:819.194667pt;}
.yec{bottom:819.466667pt;}
.y11a{bottom:820.558667pt;}
.y147{bottom:820.674667pt;}
.y3{bottom:825.701333pt;}
.y8c{bottom:825.906667pt;}
.y1c6{bottom:825.988000pt;}
.y1fd{bottom:827.165333pt;}
.y160{bottom:834.788000pt;}
.ybd{bottom:835.134667pt;}
.yeb{bottom:835.408000pt;}
.y1fc{bottom:841.776000pt;}
.y8b{bottom:841.846667pt;}
.y1c5{bottom:841.928000pt;}
.y4b{bottom:843.876427pt;}
.y119{bottom:848.308000pt;}
.y15f{bottom:850.728000pt;}
.ybc{bottom:851.074667pt;}
.yea{bottom:851.348000pt;}
.y41{bottom:855.102703pt;}
.y1fb{bottom:857.717333pt;}
.y8a{bottom:857.786667pt;}
.y1c4{bottom:857.868000pt;}
.y54{bottom:858.439167pt;}
.y49{bottom:861.242965pt;}
.y146{bottom:861.853333pt;}
.y15e{bottom:866.668000pt;}
.ybb{bottom:867.014667pt;}
.ye9{bottom:867.288000pt;}
.y4c{bottom:871.748000pt;}
.y1fa{bottom:872.329333pt;}
.y47{bottom:872.819768pt;}
.y89{bottom:873.726667pt;}
.y1c3{bottom:873.808000pt;}
.y2{bottom:876.178667pt;}
.y117{bottom:879.684000pt;}
.y118{bottom:880.536000pt;}
.y43{bottom:881.953623pt;}
.y3f{bottom:882.212000pt;}
.y4a{bottom:882.277333pt;}
.y15d{bottom:882.608000pt;}
.y18a{bottom:882.954667pt;}
.yba{bottom:882.956000pt;}
.y1f9{bottom:886.940000pt;}
.ye8{bottom:888.093333pt;}
.y48{bottom:889.297333pt;}
.y88{bottom:889.666667pt;}
.y1c2{bottom:889.748000pt;}
.y44{bottom:893.976000pt;}
.ye7{bottom:897.205333pt;}
.y15c{bottom:898.549333pt;}
.yb9{bottom:898.896000pt;}
.y1{bottom:900.089333pt;}
.y1f8{bottom:902.881333pt;}
.y145{bottom:903.032000pt;}
.y87{bottom:905.608000pt;}
.y1c1{bottom:905.688000pt;}
.y113{bottom:907.326667pt;}
.y116{bottom:910.048000pt;}
.y115{bottom:912.705333pt;}
.y15b{bottom:914.489333pt;}
.yb8{bottom:914.836000pt;}
.y1f7{bottom:917.493333pt;}
.y86{bottom:921.548000pt;}
.y144{bottom:922.160000pt;}
.y114{bottom:925.277333pt;}
.yb7{bottom:930.776000pt;}
.y1f6{bottom:932.104000pt;}
.y143{bottom:937.234667pt;}
.y85{bottom:946.716000pt;}
.y142{bottom:951.846667pt;}
.h20{height:0.000000pt;}
.hc{height:21.103550pt;}
.hd{height:21.338077pt;}
.h11{height:21.933807pt;}
.he{height:22.042939pt;}
.hb{height:24.491990pt;}
.hf{height:24.492587pt;}
.h1e{height:25.538811pt;}
.h1f{height:25.670767pt;}
.h22{height:29.244954pt;}
.h3{height:29.840179pt;}
.h27{height:32.661606pt;}
.h8{height:32.900710pt;}
.h23{height:33.091994pt;}
.h26{height:33.140710pt;}
.h1d{height:33.205067pt;}
.ha{height:35.788790pt;}
.h6{height:36.290431pt;}
.h7{height:36.556100pt;}
.h16{height:36.768636pt;}
.h24{height:36.822767pt;}
.h1c{height:36.874903pt;}
.h17{height:37.459376pt;}
.h25{height:37.463040pt;}
.h12{height:39.850400pt;}
.h9{height:40.445647pt;}
.h13{height:41.178747pt;}
.h2{height:43.867614pt;}
.h5{height:44.122658pt;}
.h4{height:44.187614pt;}
.h21{height:44.869197pt;}
.h10{height:44.874530pt;}
.h18{height:45.799037pt;}
.h1{height:52.947042pt;}
.h19{height:54.901067pt;}
.h15{height:73.004100pt;}
.h14{height:75.797067pt;}
.h1a{height:77.125413pt;}
.h1b{height:77.626747pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:66.816000pt;}
.x1{left:69.908000pt;}
.x35{left:76.778667pt;}
.x3a{left:81.294667pt;}
.xd{left:82.756000pt;}
.x12{left:85.322667pt;}
.x36{left:93.382667pt;}
.x11{left:98.274667pt;}
.x3d{left:111.790667pt;}
.x13{left:129.217333pt;}
.x4b{left:134.221333pt;}
.x15{left:139.521333pt;}
.x4c{left:142.164000pt;}
.x6{left:151.950667pt;}
.x49{left:153.924000pt;}
.x4d{left:155.073333pt;}
.x4a{left:156.570667pt;}
.x14{left:159.605333pt;}
.x3b{left:166.141333pt;}
.x48{left:169.785333pt;}
.x19{left:172.826667pt;}
.x16{left:190.056000pt;}
.x18{left:191.773102pt;}
.x3e{left:193.176000pt;}
.xc{left:194.660000pt;}
.x3c{left:196.142667pt;}
.x17{left:197.589333pt;}
.x5{left:208.450667pt;}
.x4{left:211.121333pt;}
.x3{left:217.194667pt;}
.x4f{left:219.174667pt;}
.x1c{left:230.334965pt;}
.x1a{left:235.637333pt;}
.x1b{left:243.169333pt;}
.x20{left:247.054667pt;}
.x1f{left:270.451093pt;}
.x1d{left:286.282667pt;}
.x47{left:289.372000pt;}
.x54{left:292.436000pt;}
.x1e{left:293.814667pt;}
.x55{left:301.725333pt;}
.x46{left:311.694667pt;}
.x21{left:336.905333pt;}
.x2{left:359.268000pt;}
.x22{left:404.937333pt;}
.xf{left:411.816000pt;}
.x51{left:417.793333pt;}
.xb{left:419.314667pt;}
.x23{left:422.180000pt;}
.x45{left:426.294667pt;}
.x10{left:427.756000pt;}
.x44{left:433.233333pt;}
.x37{left:438.382667pt;}
.x24{left:440.494667pt;}
.x4e{left:444.692000pt;}
.x38{left:446.220000pt;}
.x26{left:462.297333pt;}
.x39{left:467.606667pt;}
.xa{left:475.814667pt;}
.x9{left:478.485333pt;}
.x7{left:485.993333pt;}
.x3f{left:488.889333pt;}
.x42{left:498.041333pt;}
.x25{left:509.122667pt;}
.x27{left:516.654667pt;}
.x53{left:526.954667pt;}
.x2a{left:527.921333pt;}
.x8{left:530.721333pt;}
.x50{left:538.749333pt;}
.x29{left:546.868298pt;}
.x43{left:551.284000pt;}
.x40{left:557.469333pt;}
.x28{left:559.768000pt;}
.x2b{left:567.300000pt;}
.x41{left:571.006667pt;}
.x2e{left:580.521333pt;}
.x2d{left:599.469102pt;}
.x2c{left:605.348000pt;}
.x2f{left:612.881333pt;}
.x31{left:623.185333pt;}
.x52{left:631.374667pt;}
.x30{left:643.332000pt;}
.x33{left:646.449833pt;}
.x32{left:673.656000pt;}
.x34{left:685.470667pt;}
}




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