
    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_d84d7e7c42b6c7ad14bf925c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3815c8a04e886fe9567cc8e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.867000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5b916a2a99930415f85afe50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e99f87486e9365c76c30a996.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1ab6d0301d02b29b14aa027b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f2367fda13cb3eb4930fb5cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.268000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e6f674c67d76bdf5733e8814.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.653000;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_91f3f20f4325199a98b1c9ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_284dd4b9f345fd599eacd192.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_16d90288d12136fb00a1cef0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9c58097766261ab9e14b6fec.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_195c2580976a366c81e17c29.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.558000;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_131a491729722a696512cee6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.359985px;}
.v3{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.167979px;}
.v1{vertical-align:20.399963px;}
.ls5c{letter-spacing:-3.066000px;}
.lsb7{letter-spacing:-2.790000px;}
.lsbb{letter-spacing:-1.395000px;}
.lsb9{letter-spacing:-1.350000px;}
.lsae{letter-spacing:-1.305000px;}
.ls9a{letter-spacing:-1.170000px;}
.lsa6{letter-spacing:-1.125000px;}
.lsa0{letter-spacing:-0.855000px;}
.lsb8{letter-spacing:-0.720000px;}
.ls5b{letter-spacing:-0.714000px;}
.ls3d{letter-spacing:-0.702000px;}
.lsa1{letter-spacing:-0.675000px;}
.ls7d{letter-spacing:-0.648000px;}
.lsa8{letter-spacing:-0.630000px;}
.ls8a{letter-spacing:-0.594000px;}
.lsad{letter-spacing:-0.585000px;}
.ls89{letter-spacing:-0.540000px;}
.ls9c{letter-spacing:-0.495000px;}
.ls59{letter-spacing:-0.486000px;}
.ls9d{letter-spacing:-0.450000px;}
.ls7e{letter-spacing:-0.432000px;}
.lsba{letter-spacing:-0.405000px;}
.ls99{letter-spacing:-0.360000px;}
.ls5a{letter-spacing:-0.336000px;}
.ls34{letter-spacing:-0.324000px;}
.ls9b{letter-spacing:-0.315000px;}
.ls7a{letter-spacing:-0.270000px;}
.lsa2{letter-spacing:-0.225000px;}
.ls37{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.180000px;}
.ls7b{letter-spacing:-0.175500px;}
.ls19{letter-spacing:-0.162000px;}
.ls38{letter-spacing:-0.140400px;}
.lsa7{letter-spacing:-0.135000px;}
.ls35{letter-spacing:-0.108000px;}
.ls88{letter-spacing:-0.105300px;}
.lsab{letter-spacing:-0.090000px;}
.ls36{letter-spacing:-0.070200px;}
.ls3e{letter-spacing:-0.054000px;}
.lsa5{letter-spacing:-0.045000px;}
.ls86{letter-spacing:-0.035100px;}
.ls16{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.008323px;}
.ls49{letter-spacing:0.010775px;}
.ls4{letter-spacing:0.013132px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013956px;}
.ls77{letter-spacing:0.021624px;}
.ls91{letter-spacing:0.045000px;}
.ls53{letter-spacing:0.053999px;}
.ls39{letter-spacing:0.054000px;}
.ls52{letter-spacing:0.054001px;}
.ls8f{letter-spacing:0.067500px;}
.ls46{letter-spacing:0.070200px;}
.ls9e{letter-spacing:0.090000px;}
.ls6f{letter-spacing:0.102590px;}
.ls2b{letter-spacing:0.105299px;}
.ls3c{letter-spacing:0.105300px;}
.ls18{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.113975px;}
.ls29{letter-spacing:0.114159px;}
.ls69{letter-spacing:0.118793px;}
.ls96{letter-spacing:0.135000px;}
.ls75{letter-spacing:0.136680px;}
.ls43{letter-spacing:0.140400px;}
.ls81{letter-spacing:0.140401px;}
.ls70{letter-spacing:0.156607px;}
.ls17{letter-spacing:0.162000px;}
.ls25{letter-spacing:0.167402px;}
.lsa{letter-spacing:0.175019px;}
.ls41{letter-spacing:0.175500px;}
.ls9f{letter-spacing:0.180000px;}
.ls6d{letter-spacing:0.187218px;}
.ls1a{letter-spacing:0.198900px;}
.ls85{letter-spacing:0.199802px;}
.ls8b{letter-spacing:0.210600px;}
.ls2d{letter-spacing:0.213585px;}
.ls26{letter-spacing:0.216000px;}
.ls74{letter-spacing:0.221400px;}
.ls94{letter-spacing:0.225000px;}
.ls84{letter-spacing:0.232196px;}
.ls28{letter-spacing:0.237607px;}
.ls4b{letter-spacing:0.240000px;}
.ls3a{letter-spacing:0.245700px;}
.ls4d{letter-spacing:0.259212px;}
.ls12{letter-spacing:0.265656px;}
.ls11{letter-spacing:0.266297px;}
.ls2e{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.270001px;}
.ls90{letter-spacing:0.270055px;}
.ls3b{letter-spacing:0.280800px;}
.ls83{letter-spacing:0.291598px;}
.ls30{letter-spacing:0.297000px;}
.ls2f{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.306000px;}
.lsaf{letter-spacing:0.315000px;}
.ls1d{letter-spacing:0.315900px;}
.ls82{letter-spacing:0.318582px;}
.ls68{letter-spacing:0.323998px;}
.ls2c{letter-spacing:0.324000px;}
.ls64{letter-spacing:0.324041px;}
.ls6c{letter-spacing:0.334772px;}
.ls23{letter-spacing:0.341989px;}
.ls4f{letter-spacing:0.345596px;}
.lsb1{letter-spacing:0.346487px;}
.ls1e{letter-spacing:0.349821px;}
.ls87{letter-spacing:0.351000px;}
.ls9{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.357575px;}
.lsa4{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.377998px;}
.ls2a{letter-spacing:0.378000px;}
.ls4a{letter-spacing:0.378001px;}
.ls22{letter-spacing:0.386100px;}
.lsb3{letter-spacing:0.405000px;}
.ls10{letter-spacing:0.408000px;}
.ls51{letter-spacing:0.420000px;}
.ls7c{letter-spacing:0.421200px;}
.ls21{letter-spacing:0.432000px;}
.lsb2{letter-spacing:0.450000px;}
.ls65{letter-spacing:0.453602px;}
.ls14{letter-spacing:0.459000px;}
.ls57{letter-spacing:0.464404px;}
.ls58{letter-spacing:0.475184px;}
.ls4c{letter-spacing:0.480000px;}
.ls80{letter-spacing:0.480612px;}
.ls8c{letter-spacing:0.480649px;}
.ls1f{letter-spacing:0.486000px;}
.ls7f{letter-spacing:0.491400px;}
.lsa9{letter-spacing:0.495000px;}
.ls8d{letter-spacing:0.512996px;}
.ls66{letter-spacing:0.518390px;}
.lsb0{letter-spacing:0.535512px;}
.ls31{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.540006px;}
.ls76{letter-spacing:0.550774px;}
.ls5f{letter-spacing:0.550803px;}
.ls5{letter-spacing:0.558442px;}
.lse{letter-spacing:0.561000px;}
.ls5e{letter-spacing:0.561598px;}
.ls60{letter-spacing:0.567001px;}
.ls8e{letter-spacing:0.585000px;}
.ls32{letter-spacing:0.594000px;}
.ls5d{letter-spacing:0.610197px;}
.lsac{letter-spacing:0.630000px;}
.ls61{letter-spacing:0.642603px;}
.ls20{letter-spacing:0.648000px;}
.ls98{letter-spacing:0.675000px;}
.ls67{letter-spacing:0.680376px;}
.ls1b{letter-spacing:0.696150px;}
.ls55{letter-spacing:0.696595px;}
.ls42{letter-spacing:0.702000px;}
.lsaa{letter-spacing:0.720000px;}
.ls54{letter-spacing:0.756000px;}
.ls63{letter-spacing:0.810000px;}
.ls8{letter-spacing:0.815705px;}
.ls56{letter-spacing:0.826235px;}
.ls62{letter-spacing:0.840000px;}
.lsd{letter-spacing:0.845185px;}
.lsc{letter-spacing:0.854890px;}
.ls44{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.867000px;}
.ls48{letter-spacing:0.896382px;}
.ls72{letter-spacing:0.918001px;}
.ls6e{letter-spacing:0.971952px;}
.ls33{letter-spacing:0.972000px;}
.ls6a{letter-spacing:1.031426px;}
.ls71{letter-spacing:1.069173px;}
.ls15{letter-spacing:1.071000px;}
.ls47{letter-spacing:1.080000px;}
.lsa3{letter-spacing:1.125000px;}
.ls95{letter-spacing:1.152000px;}
.ls92{letter-spacing:1.170000px;}
.ls73{letter-spacing:1.236574px;}
.lsb4{letter-spacing:1.242000px;}
.ls40{letter-spacing:1.263600px;}
.ls7{letter-spacing:1.275000px;}
.ls97{letter-spacing:1.305000px;}
.lsb{letter-spacing:1.326000px;}
.lsb5{letter-spacing:1.350000px;}
.ls79{letter-spacing:1.380000px;}
.lsbc{letter-spacing:1.404000px;}
.ls3f{letter-spacing:1.944000px;}
.ls0{letter-spacing:2.592000px;}
.ls1c{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls93{letter-spacing:2.772030px;}
.lsb6{letter-spacing:4.620000px;}
.ls78{letter-spacing:6.120000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.067500px;}
.ws1e{word-spacing:-14.700000px;}
.ws47{word-spacing:-13.596000px;}
.ws20{word-spacing:-13.500000px;}
.ws45{word-spacing:-13.338000px;}
.ws29{word-spacing:-12.960000px;}
.ws1{word-spacing:-12.480000px;}
.ws83{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws1f{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws21{word-spacing:-12.150000px;}
.ws81{word-spacing:-12.096000px;}
.ws85{word-spacing:-12.042000px;}
.ws76{word-spacing:-11.826000px;}
.ws75{word-spacing:-11.610000px;}
.ws97{word-spacing:-11.385000px;}
.ws96{word-spacing:-10.890000px;}
.wsac{word-spacing:-10.845000px;}
.ws8f{word-spacing:-10.800000px;}
.wsc2{word-spacing:-10.665000px;}
.ws9a{word-spacing:-10.485000px;}
.wsc3{word-spacing:-10.395000px;}
.ws9b{word-spacing:-10.350000px;}
.ws93{word-spacing:-10.305000px;}
.wsce{word-spacing:-10.260000px;}
.ws90{word-spacing:-10.215000px;}
.ws9{word-spacing:-10.200000px;}
.ws99{word-spacing:-10.170000px;}
.ws95{word-spacing:-10.125000px;}
.ws98{word-spacing:-10.080000px;}
.ws91{word-spacing:-9.990000px;}
.wsab{word-spacing:-9.945000px;}
.wsb6{word-spacing:-9.900000px;}
.ws92{word-spacing:-9.855000px;}
.ws9c{word-spacing:-9.765000px;}
.wsbc{word-spacing:-9.720000px;}
.wsb2{word-spacing:-9.675000px;}
.wsbf{word-spacing:-9.585000px;}
.ws94{word-spacing:-9.450000px;}
.ws27{word-spacing:-9.231300px;}
.ws9d{word-spacing:-9.000000px;}
.wsc1{word-spacing:-8.955000px;}
.ws7f{word-spacing:-8.459100px;}
.ws5b{word-spacing:-8.400000px;}
.ws74{word-spacing:-8.388900px;}
.ws84{word-spacing:-8.353800px;}
.ws80{word-spacing:-8.318700px;}
.ws46{word-spacing:-8.283600px;}
.ws25{word-spacing:-8.248500px;}
.ws24{word-spacing:-8.213400px;}
.ws86{word-spacing:-8.178300px;}
.ws28{word-spacing:-8.143200px;}
.ws2a{word-spacing:-8.108100px;}
.ws26{word-spacing:-8.073000px;}
.ws44{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws5{word-spacing:-7.967700px;}
.ws7e{word-spacing:-7.932600px;}
.ws22{word-spacing:-7.897500px;}
.ws82{word-spacing:-7.862400px;}
.ws23{word-spacing:-7.827300px;}
.ws73{word-spacing:-7.792200px;}
.ws8{word-spacing:-7.326150px;}
.ws7{word-spacing:-6.828900px;}
.ws6{word-spacing:-6.630000px;}
.ws77{word-spacing:-6.120000px;}
.ws6b{word-spacing:-5.508000px;}
.wsc4{word-spacing:-4.620000px;}
.ws8d{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.890000px;}
.wsf{word-spacing:-1.836000px;}
.ws68{word-spacing:-1.782000px;}
.ws87{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.674000px;}
.ws51{word-spacing:-1.620000px;}
.wsa8{word-spacing:-1.575000px;}
.ws8e{word-spacing:-1.566000px;}
.wsb0{word-spacing:-1.530000px;}
.ws6d{word-spacing:-1.512000px;}
.ws4a{word-spacing:-1.458000px;}
.ws17{word-spacing:-1.428000px;}
.ws7a{word-spacing:-1.404000px;}
.wsa9{word-spacing:-1.395000px;}
.ws78{word-spacing:-1.380000px;}
.ws8b{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.305000px;}
.ws30{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws35{word-spacing:-1.242000px;}
.wsd2{word-spacing:-1.215000px;}
.ws2c{word-spacing:-1.188000px;}
.ws4e{word-spacing:-1.080000px;}
.ws9f{word-spacing:-1.035000px;}
.wsca{word-spacing:-0.990000px;}
.ws52{word-spacing:-0.972000px;}
.ws6a{word-spacing:-0.966000px;}
.wsb{word-spacing:-0.960000px;}
.ws6c{word-spacing:-0.918000px;}
.wsaa{word-spacing:-0.900000px;}
.ws10{word-spacing:-0.867000px;}
.ws34{word-spacing:-0.864000px;}
.wsb5{word-spacing:-0.855000px;}
.ws6f{word-spacing:-0.840000px;}
.wsb3{word-spacing:-0.810000px;}
.wsd3{word-spacing:-0.765000px;}
.ws6e{word-spacing:-0.756000px;}
.wsc8{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.702000px;}
.wse{word-spacing:-0.648000px;}
.wsa2{word-spacing:-0.630000px;}
.wsd{word-spacing:-0.594000px;}
.wsbd{word-spacing:-0.585000px;}
.ws72{word-spacing:-0.540000px;}
.wsa0{word-spacing:-0.495000px;}
.ws8a{word-spacing:-0.491400px;}
.ws31{word-spacing:-0.486000px;}
.ws4b{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.459000px;}
.wscb{word-spacing:-0.450000px;}
.ws2f{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.420000px;}
.ws19{word-spacing:-0.408000px;}
.wsc9{word-spacing:-0.405000px;}
.ws3b{word-spacing:-0.378000px;}
.wsa6{word-spacing:-0.360000px;}
.ws3d{word-spacing:-0.324000px;}
.wsa4{word-spacing:-0.315000px;}
.ws13{word-spacing:-0.306000px;}
.ws40{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.270000px;}
.ws54{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.204000px;}
.wsc6{word-spacing:-0.180000px;}
.ws79{word-spacing:-0.162000px;}
.ws12{word-spacing:-0.153000px;}
.ws8c{word-spacing:-0.140400px;}
.wsa3{word-spacing:-0.135000px;}
.ws2e{word-spacing:-0.108000px;}
.ws39{word-spacing:-0.105300px;}
.wsa5{word-spacing:-0.090000px;}
.ws4d{word-spacing:-0.070200px;}
.ws48{word-spacing:-0.054000px;}
.wsa7{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws88{word-spacing:0.035100px;}
.wsb1{word-spacing:0.045000px;}
.ws18{word-spacing:0.051000px;}
.ws2b{word-spacing:0.054000px;}
.wsc0{word-spacing:0.090000px;}
.ws50{word-spacing:0.108000px;}
.ws3c{word-spacing:0.140400px;}
.ws32{word-spacing:0.162000px;}
.ws4c{word-spacing:0.180000px;}
.ws69{word-spacing:0.216000px;}
.wsb9{word-spacing:0.225000px;}
.ws3a{word-spacing:0.270000px;}
.ws41{word-spacing:0.324000px;}
.wscc{word-spacing:0.360000px;}
.ws3f{word-spacing:0.378000px;}
.wsc7{word-spacing:0.405000px;}
.ws16{word-spacing:0.408000px;}
.ws7c{word-spacing:0.432000px;}
.wsd0{word-spacing:0.450000px;}
.ws2d{word-spacing:0.486000px;}
.ws9e{word-spacing:0.495000px;}
.ws67{word-spacing:0.540000px;}
.wscd{word-spacing:0.585000px;}
.ws71{word-spacing:0.594000px;}
.wsbe{word-spacing:0.630000px;}
.ws89{word-spacing:0.648000px;}
.wsba{word-spacing:0.675000px;}
.wsb8{word-spacing:0.720000px;}
.ws33{word-spacing:0.756000px;}
.ws70{word-spacing:0.810000px;}
.wsd5{word-spacing:0.864000px;}
.ws42{word-spacing:0.918000px;}
.wscf{word-spacing:0.945000px;}
.wsd4{word-spacing:0.972000px;}
.wsd1{word-spacing:1.035000px;}
.ws7b{word-spacing:1.080000px;}
.wsb7{word-spacing:1.125000px;}
.ws43{word-spacing:1.134000px;}
.wsa1{word-spacing:1.170000px;}
.ws7d{word-spacing:1.188000px;}
.wsbb{word-spacing:1.215000px;}
.wsd9{word-spacing:1.242000px;}
.ws4f{word-spacing:1.458000px;}
.ws1c{word-spacing:1.734000px;}
.wsd7{word-spacing:1.836000px;}
.wsae{word-spacing:1.845000px;}
.wsaf{word-spacing:1.890000px;}
.ws11{word-spacing:2.142000px;}
.wsd8{word-spacing:2.214000px;}
.ws15{word-spacing:2.244000px;}
.wsd6{word-spacing:2.268000px;}
.ws14{word-spacing:2.295000px;}
.wsad{word-spacing:2.385000px;}
.wsc5{word-spacing:2.790000px;}
.ws3e{word-spacing:3.618000px;}
.ws65{word-spacing:73.835996px;}
.ws62{word-spacing:120.371999px;}
.ws64{word-spacing:127.133996px;}
.ws63{word-spacing:158.759999px;}
.ws61{word-spacing:158.764199px;}
.ws59{word-spacing:160.902005px;}
.ws66{word-spacing:164.051999px;}
.ws5a{word-spacing:193.325997px;}
.ws58{word-spacing:205.295990px;}
.ws5c{word-spacing:216.593996px;}
.ws60{word-spacing:224.826000px;}
.ws5d{word-spacing:226.170003px;}
.ws57{word-spacing:244.229996px;}
.ws5e{word-spacing:361.918193px;}
.ws5f{word-spacing:702.660021px;}
.ws56{word-spacing:809.213968px;}
._3c{margin-left:-11.070000px;}
._39{margin-left:-9.225000px;}
._3d{margin-left:-8.145000px;}
._4{margin-left:-7.037378px;}
._7{margin-left:-5.946056px;}
._2{margin-left:-4.357769px;}
._1{margin-left:-3.276000px;}
._0{margin-left:-1.776011px;}
._3{width:1.191699px;}
._5{width:2.857213px;}
._33{width:4.018118px;}
._34{width:5.052029px;}
._35{width:6.861011px;}
._37{width:8.010002px;}
._3b{width:9.305316px;}
._38{width:10.321982px;}
._36{width:12.960000px;}
._2b{width:15.850079px;}
._3a{width:17.502024px;}
._6{width:46.909713px;}
._8{width:48.403339px;}
._19{width:71.546327px;}
._30{width:86.057999px;}
._2f{width:99.036000px;}
._b{width:106.428005px;}
._c{width:111.047990px;}
._a{width:112.433990px;}
._31{width:119.196000px;}
._26{width:121.631991px;}
._24{width:123.017990px;}
._2e{width:125.453994px;}
._10{width:126.587992px;}
._25{width:129.023982px;}
._18{width:131.207991px;}
._16{width:132.593990px;}
._23{width:139.608010px;}
._12{width:141.791991px;}
._f{width:143.177990px;}
._2d{width:146.537999px;}
._17{width:148.176002px;}
._11{width:149.183996px;}
._22{width:151.033773px;}
._15{width:158.759996px;}
._e{width:159.768010px;}
._28{width:161.598015px;}
._27{width:169.872015px;}
._1d{width:171.527991px;}
._20{width:172.913990px;}
._2c{width:179.676000px;}
._21{width:188.496015px;}
._1b{width:193.073990px;}
._1e{width:203.024304px;}
._32{width:206.762362px;}
._1c{width:208.656014px;}
._1f{width:219.916120px;}
._1a{width:259.560018px;}
._9{width:276.410315px;}
._14{width:363.186004px;}
._13{width:384.257993px;}
._29{width:389.268004px;}
._d{width:412.494004px;}
._2a{width:421.091993px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2e{bottom:68.319899px;}
.yb0{bottom:68.552997px;}
.y76{bottom:68.554498px;}
.y166{bottom:68.632503px;}
.y1a0{bottom:68.800801px;}
.y121{bottom:71.053802px;}
.y1e5{bottom:80.268267px;}
.yca{bottom:83.065825px;}
.y2d{bottom:83.313899px;}
.yaf{bottom:83.551496px;}
.y75{bottom:83.552997px;}
.y165{bottom:83.633998px;}
.y19f{bottom:83.799300px;}
.y120{bottom:86.052302px;}
.yfd{bottom:88.308305px;}
.y1e4{bottom:93.014517px;}
.yc9{bottom:98.064324px;}
.y2c{bottom:98.307899px;}
.yae{bottom:98.549995px;}
.y74{bottom:98.551496px;}
.y164{bottom:98.632498px;}
.y19e{bottom:98.797799px;}
.y22f{bottom:99.568811px;}
.y11f{bottom:101.050801px;}
.yfc{bottom:103.306804px;}
.y1e3{bottom:105.760767px;}
.yc8{bottom:113.062824px;}
.y2b{bottom:113.313899px;}
.y73{bottom:113.549995px;}
.y163{bottom:113.635499px;}
.y19d{bottom:113.796298px;}
.y22e{bottom:114.567310px;}
.y11e{bottom:116.049300px;}
.yfb{bottom:118.305303px;}
.y1e2{bottom:118.507018px;}
.y10f{bottom:127.020757px;}
.yf2{bottom:127.144651px;}
.yc7{bottom:128.061323px;}
.y2a{bottom:128.307899px;}
.y162{bottom:128.633998px;}
.y19c{bottom:128.794798px;}
.y22d{bottom:129.565809px;}
.y11d{bottom:131.047799px;}
.y1e1{bottom:131.253268px;}
.y118{bottom:132.506254px;}
.yfa{bottom:133.303802px;}
.yad{bottom:140.603101px;}
.y10e{bottom:142.019257px;}
.yf1{bottom:142.143150px;}
.yc6{bottom:143.059822px;}
.y29{bottom:143.313899px;}
.y161{bottom:143.632498px;}
.y72{bottom:143.682152px;}
.y19b{bottom:143.796298px;}
.y1e0{bottom:143.999518px;}
.y22c{bottom:144.564308px;}
.y11c{bottom:146.046298px;}
.y117{bottom:147.504753px;}
.yf9{bottom:148.302302px;}
.yac{bottom:155.601600px;}
.y1df{bottom:156.745768px;}
.y10d{bottom:157.017756px;}
.yf0{bottom:157.141650px;}
.yc5{bottom:158.058321px;}
.y28{bottom:158.307899px;}
.y160{bottom:158.633998px;}
.y71{bottom:158.680651px;}
.y19a{bottom:158.794798px;}
.y22b{bottom:159.562807px;}
.y11b{bottom:161.044798px;}
.y116{bottom:162.503252px;}
.yf8{bottom:163.300801px;}
.y1de{bottom:169.492018px;}
.yab{bottom:170.600099px;}
.y10c{bottom:172.016255px;}
.yef{bottom:172.140149px;}
.yc4{bottom:173.056820px;}
.y27{bottom:173.307899px;}
.y15f{bottom:173.632498px;}
.y70{bottom:173.679150px;}
.y199{bottom:173.803802px;}
.y22a{bottom:174.561307px;}
.y11a{bottom:176.043297px;}
.y115{bottom:177.501752px;}
.yf7{bottom:178.299300px;}
.y1dd{bottom:182.238268px;}
.yaa{bottom:185.598598px;}
.y10b{bottom:187.014754px;}
.yee{bottom:187.138648px;}
.yc3{bottom:188.055320px;}
.y26{bottom:188.307910px;}
.y15e{bottom:188.640002px;}
.y6f{bottom:188.677649px;}
.y198{bottom:188.802302px;}
.y229{bottom:189.559806px;}
.y119{bottom:191.043297px;}
.y114{bottom:192.500251px;}
.yf6{bottom:193.297799px;}
.y1dc{bottom:194.984518px;}
.ya9{bottom:200.598610px;}
.y10a{bottom:202.013253px;}
.yed{bottom:202.137147px;}
.yc2{bottom:203.053819px;}
.y25{bottom:203.307910px;}
.y15d{bottom:203.638501px;}
.y6e{bottom:203.676149px;}
.y197{bottom:203.800801px;}
.y228{bottom:204.558305px;}
.y113{bottom:207.498750px;}
.y1db{bottom:207.730768px;}
.yf5{bottom:208.296298px;}
.y109{bottom:217.011753px;}
.yec{bottom:217.135646px;}
.yc1{bottom:218.052318px;}
.y24{bottom:218.307910px;}
.y15c{bottom:218.637000px;}
.y6d{bottom:218.674648px;}
.y196{bottom:218.799300px;}
.y227{bottom:219.556804px;}
.y1da{bottom:220.477018px;}
.y112{bottom:222.497249px;}
.yf4{bottom:223.294798px;}
.ya8{bottom:227.662347px;}
.y108{bottom:232.010252px;}
.yeb{bottom:232.134145px;}
.yc0{bottom:233.050817px;}
.y1d9{bottom:233.223269px;}
.y23{bottom:233.307910px;}
.y15b{bottom:233.635499px;}
.y6c{bottom:233.673147px;}
.y195{bottom:233.797799px;}
.y226{bottom:234.555303px;}
.y111{bottom:237.495748px;}
.yf3{bottom:238.293297px;}
.ya7{bottom:242.660846px;}
.y1d8{bottom:245.969519px;}
.y107{bottom:247.008751px;}
.yea{bottom:247.132645px;}
.ybf{bottom:248.049316px;}
.y15a{bottom:248.633998px;}
.y6b{bottom:248.673147px;}
.y194{bottom:248.796298px;}
.y225{bottom:249.553802px;}
.y110{bottom:252.494247px;}
.y22{bottom:252.636909px;}
.y128{bottom:253.927950px;}
.ya6{bottom:257.659345px;}
.y1d7{bottom:258.715769px;}
.ybe{bottom:263.047816px;}
.y21{bottom:263.307910px;}
.y159{bottom:263.632498px;}
.y6a{bottom:263.686654px;}
.y193{bottom:263.794798px;}
.y224{bottom:264.552302px;}
.y127{bottom:268.926449px;}
.y1d6{bottom:271.462019px;}
.ya5{bottom:272.657845px;}
.ybd{bottom:278.046315px;}
.y20{bottom:278.307910px;}
.y158{bottom:278.638661px;}
.y69{bottom:278.685153px;}
.y192{bottom:278.812830px;}
.y223{bottom:279.550801px;}
.y126{bottom:283.924949px;}
.y1d5{bottom:284.208269px;}
.ya4{bottom:287.656344px;}
.y106{bottom:288.016676px;}
.ybc{bottom:293.044814px;}
.y157{bottom:293.637160px;}
.y68{bottom:293.683653px;}
.y191{bottom:293.811329px;}
.y222{bottom:294.549300px;}
.y1d4{bottom:296.954519px;}
.y1f{bottom:297.636909px;}
.y125{bottom:298.923448px;}
.ya3{bottom:302.654843px;}
.y105{bottom:303.015175px;}
.ybb{bottom:308.043313px;}
.y156{bottom:308.635659px;}
.y67{bottom:308.682152px;}
.y190{bottom:308.809829px;}
.y221{bottom:309.547799px;}
.y1d3{bottom:309.700769px;}
.y124{bottom:313.921947px;}
.ya2{bottom:317.653342px;}
.y104{bottom:318.013674px;}
.y1d2{bottom:322.447019px;}
.yba{bottom:323.041812px;}
.y155{bottom:323.634159px;}
.y66{bottom:323.680651px;}
.y18f{bottom:323.808328px;}
.y220{bottom:324.546298px;}
.y123{bottom:328.920446px;}
.ya1{bottom:332.651841px;}
.y103{bottom:333.012173px;}
.y1d1{bottom:335.193269px;}
.yb9{bottom:338.040312px;}
.y154{bottom:338.632658px;}
.y65{bottom:338.679150px;}
.y18e{bottom:338.806827px;}
.y21f{bottom:339.544798px;}
.y1e{bottom:342.685812px;}
.y122{bottom:343.918945px;}
.ya0{bottom:347.650340px;}
.y1d0{bottom:347.939520px;}
.y102{bottom:348.010672px;}
.yb8{bottom:353.038811px;}
.y153{bottom:353.637137px;}
.y64{bottom:353.677649px;}
.y18d{bottom:353.805326px;}
.y21e{bottom:354.543297px;}
.y1d{bottom:357.732313px;}
.y1cf{bottom:360.685770px;}
.y9f{bottom:362.648840px;}
.y101{bottom:363.009172px;}
.yb7{bottom:368.037310px;}
.y152{bottom:368.635636px;}
.y63{bottom:368.676149px;}
.y18c{bottom:368.803825px;}
.y21d{bottom:369.543297px;}
.y1c{bottom:372.730812px;}
.y1ce{bottom:373.432020px;}
.y9e{bottom:377.668350px;}
.y100{bottom:378.007671px;}
.yb6{bottom:383.035809px;}
.y151{bottom:383.634136px;}
.y62{bottom:383.674648px;}
.y18b{bottom:383.802325px;}
.y1cd{bottom:386.178270px;}
.y1b{bottom:387.729311px;}
.y9d{bottom:392.666849px;}
.yff{bottom:393.006170px;}
.yb5{bottom:398.034308px;}
.y150{bottom:398.632635px;}
.y61{bottom:398.673147px;}
.y18a{bottom:398.800824px;}
.y1cc{bottom:398.924520px;}
.y21c{bottom:402.745768px;}
.y9c{bottom:407.665349px;}
.yfe{bottom:408.004669px;}
.y1cb{bottom:411.670770px;}
.yb4{bottom:413.032807px;}
.y14f{bottom:413.632635px;}
.y60{bottom:413.674648px;}
.y189{bottom:413.799323px;}
.y21b{bottom:415.492018px;}
.y9b{bottom:422.663848px;}
.y1ca{bottom:424.417020px;}
.yb3{bottom:428.031307px;}
.y21a{bottom:428.238268px;}
.y14e{bottom:428.635636px;}
.y5f{bottom:428.673147px;}
.y188{bottom:428.797822px;}
.y1a{bottom:434.979311px;}
.y1c9{bottom:437.163270px;}
.y9a{bottom:437.662347px;}
.y219{bottom:440.984518px;}
.yb2{bottom:443.029806px;}
.y14d{bottom:443.634136px;}
.y5e{bottom:443.671646px;}
.y187{bottom:443.796321px;}
.y1c8{bottom:449.909520px;}
.y19{bottom:451.476311px;}
.y99{bottom:452.660846px;}
.y218{bottom:453.730768px;}
.yb1{bottom:458.028305px;}
.y14c{bottom:458.632635px;}
.y5d{bottom:458.671646px;}
.y186{bottom:458.794821px;}
.y1c7{bottom:462.655771px;}
.y217{bottom:466.477018px;}
.y98{bottom:467.659345px;}
.y18{bottom:467.973311px;}
.y14b{bottom:473.635636px;}
.y185{bottom:473.794821px;}
.y1c6{bottom:475.402021px;}
.y216{bottom:479.223269px;}
.y97{bottom:482.657845px;}
.y17{bottom:484.470311px;}
.y1c5{bottom:488.148271px;}
.y14a{bottom:488.634136px;}
.y184{bottom:488.796321px;}
.y5c{bottom:488.797822px;}
.y215{bottom:491.969519px;}
.y96{bottom:497.656344px;}
.y1c4{bottom:500.894521px;}
.y16{bottom:500.967311px;}
.y149{bottom:503.632635px;}
.y183{bottom:503.794821px;}
.y5b{bottom:503.796321px;}
.y214{bottom:504.715769px;}
.y95{bottom:512.654843px;}
.ye9{bottom:512.965805px;}
.y1c3{bottom:513.640771px;}
.y213{bottom:517.462019px;}
.y15{bottom:517.464311px;}
.y148{bottom:518.634136px;}
.y5a{bottom:518.794821px;}
.y182{bottom:518.796321px;}
.y1c2{bottom:526.387021px;}
.y94{bottom:527.653342px;}
.y212{bottom:530.208269px;}
.y147{bottom:533.632635px;}
.y181{bottom:533.794821px;}
.y59{bottom:533.797822px;}
.y14{bottom:533.961311px;}
.y1c1{bottom:539.133271px;}
.y93{bottom:542.651841px;}
.y211{bottom:542.954519px;}
.ye8{bottom:543.129304px;}
.y146{bottom:548.640139px;}
.y180{bottom:548.794821px;}
.y58{bottom:548.796321px;}
.y13{bottom:550.458311px;}
.y1c0{bottom:551.879521px;}
.y210{bottom:555.700769px;}
.y92{bottom:557.650340px;}
.ye7{bottom:560.569804px;}
.y145{bottom:563.638638px;}
.y57{bottom:563.794821px;}
.y17f{bottom:563.799323px;}
.y1bf{bottom:564.625771px;}
.y12{bottom:566.955311px;}
.y20f{bottom:568.447019px;}
.y91{bottom:572.648840px;}
.y1be{bottom:577.372022px;}
.ye6{bottom:578.010304px;}
.y144{bottom:578.637137px;}
.y56{bottom:578.794821px;}
.y17e{bottom:578.797822px;}
.y20e{bottom:581.193269px;}
.y11{bottom:583.452311px;}
.y90{bottom:587.647339px;}
.y1bd{bottom:590.118272px;}
.y143{bottom:593.635636px;}
.y55{bottom:593.796321px;}
.y20d{bottom:593.939520px;}
.ye5{bottom:595.450805px;}
.y10{bottom:599.949311px;}
.y1bc{bottom:602.864522px;}
.y20c{bottom:606.685770px;}
.y142{bottom:608.634136px;}
.y54{bottom:608.794821px;}
.ye4{bottom:612.891305px;}
.y8f{bottom:614.697454px;}
.y1bb{bottom:615.610772px;}
.yf{bottom:616.446311px;}
.y20b{bottom:619.432020px;}
.y141{bottom:623.632635px;}
.y17d{bottom:623.794821px;}
.y53{bottom:623.797822px;}
.y1ba{bottom:628.357022px;}
.y8e{bottom:629.697454px;}
.ye3{bottom:630.331805px;}
.y20a{bottom:632.178270px;}
.ye{bottom:632.943311px;}
.y140{bottom:638.643003px;}
.y52{bottom:638.796321px;}
.y1b9{bottom:641.103272px;}
.y8d{bottom:644.703457px;}
.y209{bottom:644.924520px;}
.ye2{bottom:647.772305px;}
.yd{bottom:649.440311px;}
.y13f{bottom:653.641502px;}
.y51{bottom:653.794821px;}
.y1b8{bottom:653.849522px;}
.y208{bottom:657.670770px;}
.y8c{bottom:659.701957px;}
.ye1{bottom:665.212805px;}
.yc{bottom:665.937311px;}
.y1b7{bottom:666.595772px;}
.y13e{bottom:668.640002px;}
.y50{bottom:668.799323px;}
.y17c{bottom:668.800824px;}
.y207{bottom:670.417020px;}
.y8b{bottom:674.700456px;}
.y1b6{bottom:679.342022px;}
.yb{bottom:682.434311px;}
.ye0{bottom:682.653305px;}
.y206{bottom:683.163270px;}
.y13d{bottom:683.638501px;}
.y4f{bottom:683.797822px;}
.y17b{bottom:683.799323px;}
.y8a{bottom:689.698955px;}
.y1b5{bottom:692.088273px;}
.y205{bottom:695.909520px;}
.y13c{bottom:698.637000px;}
.y4e{bottom:698.796321px;}
.y17a{bottom:698.797822px;}
.y89{bottom:704.697454px;}
.y1b4{bottom:704.834523px;}
.y204{bottom:708.655771px;}
.ya{bottom:712.434310px;}
.y13b{bottom:713.635499px;}
.y4d{bottom:713.794821px;}
.y179{bottom:713.796321px;}
.y1b3{bottom:717.580773px;}
.y88{bottom:719.695953px;}
.y203{bottom:721.402021px;}
.y245{bottom:726.556781px;}
.y13a{bottom:728.633998px;}
.y178{bottom:728.794821px;}
.y4c{bottom:728.796321px;}
.y1b2{bottom:730.327023px;}
.y9{bottom:730.434310px;}
.y202{bottom:734.148271px;}
.ydf{bottom:737.985276px;}
.y244{bottom:741.555280px;}
.y1b1{bottom:743.073273px;}
.y139{bottom:743.632498px;}
.y4b{bottom:743.794821px;}
.y177{bottom:743.799277px;}
.y87{bottom:746.752072px;}
.y201{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.yde{bottom:752.983776px;}
.y1b0{bottom:755.819523px;}
.y243{bottom:756.553780px;}
.y31{bottom:757.151396px;}
.y138{bottom:758.634044px;}
.y4a{bottom:758.794775px;}
.y176{bottom:758.797776px;}
.y200{bottom:759.640771px;}
.y86{bottom:761.750571px;}
.ydd{bottom:767.982275px;}
.y1af{bottom:768.565773px;}
.y242{bottom:771.552279px;}
.y1ff{bottom:772.387021px;}
.y137{bottom:773.632543px;}
.y49{bottom:773.794775px;}
.y175{bottom:773.796276px;}
.y85{bottom:776.749070px;}
.y30{bottom:778.150646px;}
.y1ae{bottom:781.312023px;}
.y7{bottom:781.416260px;}
.ydc{bottom:782.980774px;}
.y1fe{bottom:785.133271px;}
.y241{bottom:786.550778px;}
.y136{bottom:788.631042px;}
.y174{bottom:788.794775px;}
.y48{bottom:788.796276px;}
.y84{bottom:791.747569px;}
.y1ad{bottom:794.058273px;}
.y1fd{bottom:797.879521px;}
.y2f{bottom:799.149895px;}
.y240{bottom:801.549277px;}
.y135{bottom:803.631042px;}
.y47{bottom:803.794775px;}
.y173{bottom:803.800778px;}
.y83{bottom:806.746069px;}
.y1ac{bottom:806.804524px;}
.y1fc{bottom:810.625771px;}
.ydb{bottom:813.120272px;}
.y23f{bottom:816.547776px;}
.y46{bottom:818.796276px;}
.y172{bottom:818.799277px;}
.y1ab{bottom:819.550774px;}
.y82{bottom:821.744568px;}
.y1fb{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.yda{bottom:830.560772px;}
.y23e{bottom:831.546276px;}
.y1aa{bottom:832.297024px;}
.y134{bottom:833.727166px;}
.y45{bottom:833.794775px;}
.y171{bottom:833.797776px;}
.y1fa{bottom:836.118272px;}
.y1a9{bottom:845.043274px;}
.y23d{bottom:846.544775px;}
.yd9{bottom:848.001272px;}
.y133{bottom:848.725665px;}
.y44{bottom:848.794775px;}
.y170{bottom:848.796276px;}
.y81{bottom:848.809783px;}
.y1f9{bottom:848.864522px;}
.y1a8{bottom:857.793274px;}
.y23c{bottom:861.543274px;}
.y1f8{bottom:861.610772px;}
.y132{bottom:863.724165px;}
.y43{bottom:863.794775px;}
.y80{bottom:863.808282px;}
.yd8{bottom:865.441773px;}
.y5{bottom:871.428264px;}
.y1f7{bottom:874.357022px;}
.y131{bottom:878.722664px;}
.y16f{bottom:878.794775px;}
.y42{bottom:878.796276px;}
.y7f{bottom:878.806781px;}
.yd7{bottom:882.882273px;}
.y23b{bottom:883.297776px;}
.y1f6{bottom:887.103272px;}
.y1a7{bottom:890.796276px;}
.y130{bottom:893.721163px;}
.y41{bottom:893.794775px;}
.y16e{bottom:893.796276px;}
.y7e{bottom:893.805280px;}
.y23a{bottom:898.296276px;}
.y1f5{bottom:899.849522px;}
.yd6{bottom:900.322773px;}
.y1a6{bottom:905.794775px;}
.y12f{bottom:908.719662px;}
.y16d{bottom:908.794775px;}
.y40{bottom:908.796276px;}
.y7d{bottom:908.803780px;}
.y1f4{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.yd5{bottom:917.763273px;}
.y239{bottom:920.044775px;}
.y1a5{bottom:920.793274px;}
.y12e{bottom:923.718161px;}
.y3f{bottom:923.794775px;}
.y16c{bottom:923.799277px;}
.y7c{bottom:923.802279px;}
.y1f3{bottom:925.342022px;}
.y32{bottom:926.409576px;}
.yd4{bottom:935.203773px;}
.y1a4{bottom:935.793274px;}
.y1f2{bottom:938.088273px;}
.y12d{bottom:938.716661px;}
.y3e{bottom:938.794775px;}
.y16b{bottom:938.797776px;}
.y7b{bottom:938.800778px;}
.y238{bottom:941.793274px;}
.y1f1{bottom:950.834523px;}
.yd3{bottom:952.644273px;}
.y12c{bottom:953.715160px;}
.y16a{bottom:953.796276px;}
.y7a{bottom:953.799277px;}
.y3d{bottom:953.806781px;}
.y237{bottom:956.793274px;}
.y1f0{bottom:963.580773px;}
.y12b{bottom:968.713659px;}
.y169{bottom:968.794775px;}
.y79{bottom:968.797776px;}
.y1a3{bottom:968.800778px;}
.y3c{bottom:968.805280px;}
.yd2{bottom:970.084773px;}
.y1ef{bottom:976.327023px;}
.y12a{bottom:983.712158px;}
.y78{bottom:983.796276px;}
.y1a2{bottom:983.799277px;}
.y236{bottom:983.802279px;}
.y3b{bottom:983.803780px;}
.yd1{bottom:987.525273px;}
.y1ee{bottom:989.073273px;}
.y129{bottom:998.712158px;}
.y77{bottom:998.794775px;}
.y1a1{bottom:998.797776px;}
.y235{bottom:998.800778px;}
.y3a{bottom:998.802279px;}
.y1ed{bottom:1001.819523px;}
.yd0{bottom:1004.965773px;}
.y168{bottom:1013.796276px;}
.y234{bottom:1013.799277px;}
.y39{bottom:1013.800778px;}
.y1ec{bottom:1014.565773px;}
.ycf{bottom:1022.406273px;}
.y1eb{bottom:1027.312023px;}
.y167{bottom:1028.794775px;}
.y233{bottom:1028.797776px;}
.y38{bottom:1028.799277px;}
.yce{bottom:1039.846774px;}
.y1ea{bottom:1040.058273px;}
.y232{bottom:1043.796276px;}
.y37{bottom:1043.797776px;}
.y1e9{bottom:1052.804524px;}
.ycd{bottom:1057.287274px;}
.y231{bottom:1058.794775px;}
.y36{bottom:1058.796276px;}
.y1e8{bottom:1065.550774px;}
.y230{bottom:1073.793274px;}
.y35{bottom:1073.794775px;}
.ycc{bottom:1074.727774px;}
.y1e7{bottom:1078.297024px;}
.y34{bottom:1088.793274px;}
.y1e6{bottom:1091.043274px;}
.ycb{bottom:1092.168274px;}
.y33{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h10{height:35.394000px;}
.hd{height:36.669000px;}
.hf{height:36.681152px;}
.h8{height:38.838867px;}
.he{height:41.134746px;}
.hc{height:41.158746px;}
.h15{height:41.538000px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h13{height:43.154297px;}
.h4{height:44.218500px;}
.h17{height:44.505000px;}
.h18{height:45.090000px;}
.h3{height:45.744000px;}
.h19{height:46.080000px;}
.h12{height:47.469727px;}
.h6{height:48.450256px;}
.h7{height:48.450259px;}
.h9{height:51.840000px;}
.ha{height:53.406000px;}
.h16{height:55.296000px;}
.h11{height:71.928000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:14.097082px;}
.xe{left:59.043600px;}
.x2{left:61.191450px;}
.x6{left:140.952747px;}
.x4{left:233.456406px;}
.xa{left:238.133117px;}
.x7{left:251.456391px;}
.xb{left:290.249107px;}
.x10{left:300.594589px;}
.x9{left:388.482605px;}
.x3{left:584.586594px;}
.xf{left:814.046265px;}
.xc{left:816.003571px;}
.xd{left:817.278168px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v4{vertical-align:-16.319987pt;}
.v3{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.149315pt;}
.v1{vertical-align:18.133301pt;}
.ls5c{letter-spacing:-2.725333pt;}
.lsb7{letter-spacing:-2.480000pt;}
.lsbb{letter-spacing:-1.240000pt;}
.lsb9{letter-spacing:-1.200000pt;}
.lsae{letter-spacing:-1.160000pt;}
.ls9a{letter-spacing:-1.040000pt;}
.lsa6{letter-spacing:-1.000000pt;}
.lsa0{letter-spacing:-0.760000pt;}
.lsb8{letter-spacing:-0.640000pt;}
.ls5b{letter-spacing:-0.634667pt;}
.ls3d{letter-spacing:-0.624000pt;}
.lsa1{letter-spacing:-0.600000pt;}
.ls7d{letter-spacing:-0.576000pt;}
.lsa8{letter-spacing:-0.560000pt;}
.ls8a{letter-spacing:-0.528000pt;}
.lsad{letter-spacing:-0.520000pt;}
.ls89{letter-spacing:-0.480000pt;}
.ls9c{letter-spacing:-0.440000pt;}
.ls59{letter-spacing:-0.432000pt;}
.ls9d{letter-spacing:-0.400000pt;}
.ls7e{letter-spacing:-0.384000pt;}
.lsba{letter-spacing:-0.360000pt;}
.ls99{letter-spacing:-0.320000pt;}
.ls5a{letter-spacing:-0.298667pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls9b{letter-spacing:-0.280000pt;}
.ls7a{letter-spacing:-0.240000pt;}
.lsa2{letter-spacing:-0.200000pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.160000pt;}
.ls7b{letter-spacing:-0.156000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls38{letter-spacing:-0.124800pt;}
.lsa7{letter-spacing:-0.120000pt;}
.ls35{letter-spacing:-0.096000pt;}
.ls88{letter-spacing:-0.093600pt;}
.lsab{letter-spacing:-0.080000pt;}
.ls36{letter-spacing:-0.062400pt;}
.ls3e{letter-spacing:-0.048000pt;}
.lsa5{letter-spacing:-0.040000pt;}
.ls86{letter-spacing:-0.031200pt;}
.ls16{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.007399pt;}
.ls49{letter-spacing:0.009578pt;}
.ls4{letter-spacing:0.011673pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012405pt;}
.ls77{letter-spacing:0.019222pt;}
.ls91{letter-spacing:0.040000pt;}
.ls53{letter-spacing:0.047999pt;}
.ls39{letter-spacing:0.048000pt;}
.ls52{letter-spacing:0.048001pt;}
.ls8f{letter-spacing:0.060000pt;}
.ls46{letter-spacing:0.062400pt;}
.ls9e{letter-spacing:0.080000pt;}
.ls6f{letter-spacing:0.091191pt;}
.ls2b{letter-spacing:0.093599pt;}
.ls3c{letter-spacing:0.093600pt;}
.ls18{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.101311pt;}
.ls29{letter-spacing:0.101474pt;}
.ls69{letter-spacing:0.105594pt;}
.ls96{letter-spacing:0.120000pt;}
.ls75{letter-spacing:0.121494pt;}
.ls43{letter-spacing:0.124800pt;}
.ls81{letter-spacing:0.124801pt;}
.ls70{letter-spacing:0.139206pt;}
.ls17{letter-spacing:0.144000pt;}
.ls25{letter-spacing:0.148801pt;}
.lsa{letter-spacing:0.155572pt;}
.ls41{letter-spacing:0.156000pt;}
.ls9f{letter-spacing:0.160000pt;}
.ls6d{letter-spacing:0.166416pt;}
.ls1a{letter-spacing:0.176800pt;}
.ls85{letter-spacing:0.177601pt;}
.ls8b{letter-spacing:0.187200pt;}
.ls2d{letter-spacing:0.189853pt;}
.ls26{letter-spacing:0.192000pt;}
.ls74{letter-spacing:0.196800pt;}
.ls94{letter-spacing:0.200000pt;}
.ls84{letter-spacing:0.206397pt;}
.ls28{letter-spacing:0.211206pt;}
.ls4b{letter-spacing:0.213333pt;}
.ls3a{letter-spacing:0.218400pt;}
.ls4d{letter-spacing:0.230411pt;}
.ls12{letter-spacing:0.236139pt;}
.ls11{letter-spacing:0.236708pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.240001pt;}
.ls90{letter-spacing:0.240049pt;}
.ls3b{letter-spacing:0.249600pt;}
.ls83{letter-spacing:0.259198pt;}
.ls30{letter-spacing:0.264000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.272000pt;}
.lsaf{letter-spacing:0.280000pt;}
.ls1d{letter-spacing:0.280800pt;}
.ls82{letter-spacing:0.283184pt;}
.ls68{letter-spacing:0.287999pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls64{letter-spacing:0.288036pt;}
.ls6c{letter-spacing:0.297575pt;}
.ls23{letter-spacing:0.303990pt;}
.ls4f{letter-spacing:0.307197pt;}
.lsb1{letter-spacing:0.307988pt;}
.ls1e{letter-spacing:0.310952pt;}
.ls87{letter-spacing:0.312000pt;}
.ls9{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.317845pt;}
.lsa4{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.335999pt;}
.ls2a{letter-spacing:0.336000pt;}
.ls4a{letter-spacing:0.336001pt;}
.ls22{letter-spacing:0.343200pt;}
.lsb3{letter-spacing:0.360000pt;}
.ls10{letter-spacing:0.362667pt;}
.ls51{letter-spacing:0.373333pt;}
.ls7c{letter-spacing:0.374400pt;}
.ls21{letter-spacing:0.384000pt;}
.lsb2{letter-spacing:0.400000pt;}
.ls65{letter-spacing:0.403202pt;}
.ls14{letter-spacing:0.408000pt;}
.ls57{letter-spacing:0.412803pt;}
.ls58{letter-spacing:0.422386pt;}
.ls4c{letter-spacing:0.426667pt;}
.ls80{letter-spacing:0.427211pt;}
.ls8c{letter-spacing:0.427244pt;}
.ls1f{letter-spacing:0.432000pt;}
.ls7f{letter-spacing:0.436800pt;}
.lsa9{letter-spacing:0.440000pt;}
.ls8d{letter-spacing:0.455997pt;}
.ls66{letter-spacing:0.460791pt;}
.lsb0{letter-spacing:0.476011pt;}
.ls31{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.480006pt;}
.ls76{letter-spacing:0.489577pt;}
.ls5f{letter-spacing:0.489603pt;}
.ls5{letter-spacing:0.496393pt;}
.lse{letter-spacing:0.498667pt;}
.ls5e{letter-spacing:0.499198pt;}
.ls60{letter-spacing:0.504001pt;}
.ls8e{letter-spacing:0.520000pt;}
.ls32{letter-spacing:0.528000pt;}
.ls5d{letter-spacing:0.542398pt;}
.lsac{letter-spacing:0.560000pt;}
.ls61{letter-spacing:0.571203pt;}
.ls20{letter-spacing:0.576000pt;}
.ls98{letter-spacing:0.600000pt;}
.ls67{letter-spacing:0.604779pt;}
.ls1b{letter-spacing:0.618800pt;}
.ls55{letter-spacing:0.619196pt;}
.ls42{letter-spacing:0.624000pt;}
.lsaa{letter-spacing:0.640000pt;}
.ls54{letter-spacing:0.672000pt;}
.ls63{letter-spacing:0.720000pt;}
.ls8{letter-spacing:0.725071pt;}
.ls56{letter-spacing:0.734431pt;}
.ls62{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.751276pt;}
.lsc{letter-spacing:0.759902pt;}
.ls44{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.770667pt;}
.ls48{letter-spacing:0.796784pt;}
.ls72{letter-spacing:0.816000pt;}
.ls6e{letter-spacing:0.863957pt;}
.ls33{letter-spacing:0.864000pt;}
.ls6a{letter-spacing:0.916823pt;}
.ls71{letter-spacing:0.950376pt;}
.ls15{letter-spacing:0.952000pt;}
.ls47{letter-spacing:0.960000pt;}
.lsa3{letter-spacing:1.000000pt;}
.ls95{letter-spacing:1.024000pt;}
.ls92{letter-spacing:1.040000pt;}
.ls73{letter-spacing:1.099177pt;}
.lsb4{letter-spacing:1.104000pt;}
.ls40{letter-spacing:1.123200pt;}
.ls7{letter-spacing:1.133333pt;}
.ls97{letter-spacing:1.160000pt;}
.lsb{letter-spacing:1.178667pt;}
.lsb5{letter-spacing:1.200000pt;}
.ls79{letter-spacing:1.226667pt;}
.lsbc{letter-spacing:1.248000pt;}
.ls3f{letter-spacing:1.728000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls93{letter-spacing:2.464027pt;}
.lsb6{letter-spacing:4.106667pt;}
.ls78{letter-spacing:5.440000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws1e{word-spacing:-13.066667pt;}
.ws47{word-spacing:-12.085333pt;}
.ws20{word-spacing:-12.000000pt;}
.ws45{word-spacing:-11.856000pt;}
.ws29{word-spacing:-11.520000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws83{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws1f{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws21{word-spacing:-10.800000pt;}
.ws81{word-spacing:-10.752000pt;}
.ws85{word-spacing:-10.704000pt;}
.ws76{word-spacing:-10.512000pt;}
.ws75{word-spacing:-10.320000pt;}
.ws97{word-spacing:-10.120000pt;}
.ws96{word-spacing:-9.680000pt;}
.wsac{word-spacing:-9.640000pt;}
.ws8f{word-spacing:-9.600000pt;}
.wsc2{word-spacing:-9.480000pt;}
.ws9a{word-spacing:-9.320000pt;}
.wsc3{word-spacing:-9.240000pt;}
.ws9b{word-spacing:-9.200000pt;}
.ws93{word-spacing:-9.160000pt;}
.wsce{word-spacing:-9.120000pt;}
.ws90{word-spacing:-9.080000pt;}
.ws9{word-spacing:-9.066667pt;}
.ws99{word-spacing:-9.040000pt;}
.ws95{word-spacing:-9.000000pt;}
.ws98{word-spacing:-8.960000pt;}
.ws91{word-spacing:-8.880000pt;}
.wsab{word-spacing:-8.840000pt;}
.wsb6{word-spacing:-8.800000pt;}
.ws92{word-spacing:-8.760000pt;}
.ws9c{word-spacing:-8.680000pt;}
.wsbc{word-spacing:-8.640000pt;}
.wsb2{word-spacing:-8.600000pt;}
.wsbf{word-spacing:-8.520000pt;}
.ws94{word-spacing:-8.400000pt;}
.ws27{word-spacing:-8.205600pt;}
.ws9d{word-spacing:-8.000000pt;}
.wsc1{word-spacing:-7.960000pt;}
.ws7f{word-spacing:-7.519200pt;}
.ws5b{word-spacing:-7.466667pt;}
.ws74{word-spacing:-7.456800pt;}
.ws84{word-spacing:-7.425600pt;}
.ws80{word-spacing:-7.394400pt;}
.ws46{word-spacing:-7.363200pt;}
.ws25{word-spacing:-7.332000pt;}
.ws24{word-spacing:-7.300800pt;}
.ws86{word-spacing:-7.269600pt;}
.ws28{word-spacing:-7.238400pt;}
.ws2a{word-spacing:-7.207200pt;}
.ws26{word-spacing:-7.176000pt;}
.ws44{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.082400pt;}
.ws7e{word-spacing:-7.051200pt;}
.ws22{word-spacing:-7.020000pt;}
.ws82{word-spacing:-6.988800pt;}
.ws23{word-spacing:-6.957600pt;}
.ws73{word-spacing:-6.926400pt;}
.ws8{word-spacing:-6.512133pt;}
.ws7{word-spacing:-6.070133pt;}
.ws6{word-spacing:-5.893333pt;}
.ws77{word-spacing:-5.440000pt;}
.ws6b{word-spacing:-4.896000pt;}
.wsc4{word-spacing:-4.106667pt;}
.ws8d{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.680000pt;}
.wsf{word-spacing:-1.632000pt;}
.ws68{word-spacing:-1.584000pt;}
.ws87{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.488000pt;}
.ws51{word-spacing:-1.440000pt;}
.wsa8{word-spacing:-1.400000pt;}
.ws8e{word-spacing:-1.392000pt;}
.wsb0{word-spacing:-1.360000pt;}
.ws6d{word-spacing:-1.344000pt;}
.ws4a{word-spacing:-1.296000pt;}
.ws17{word-spacing:-1.269333pt;}
.ws7a{word-spacing:-1.248000pt;}
.wsa9{word-spacing:-1.240000pt;}
.ws78{word-spacing:-1.226667pt;}
.ws8b{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.160000pt;}
.ws30{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws35{word-spacing:-1.104000pt;}
.wsd2{word-spacing:-1.080000pt;}
.ws2c{word-spacing:-1.056000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws9f{word-spacing:-0.920000pt;}
.wsca{word-spacing:-0.880000pt;}
.ws52{word-spacing:-0.864000pt;}
.ws6a{word-spacing:-0.858667pt;}
.wsb{word-spacing:-0.853333pt;}
.ws6c{word-spacing:-0.816000pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws10{word-spacing:-0.770667pt;}
.ws34{word-spacing:-0.768000pt;}
.wsb5{word-spacing:-0.760000pt;}
.ws6f{word-spacing:-0.746667pt;}
.wsb3{word-spacing:-0.720000pt;}
.wsd3{word-spacing:-0.680000pt;}
.ws6e{word-spacing:-0.672000pt;}
.wsc8{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.576000pt;}
.wsa2{word-spacing:-0.560000pt;}
.wsd{word-spacing:-0.528000pt;}
.wsbd{word-spacing:-0.520000pt;}
.ws72{word-spacing:-0.480000pt;}
.wsa0{word-spacing:-0.440000pt;}
.ws8a{word-spacing:-0.436800pt;}
.ws31{word-spacing:-0.432000pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.408000pt;}
.wscb{word-spacing:-0.400000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.373333pt;}
.ws19{word-spacing:-0.362667pt;}
.wsc9{word-spacing:-0.360000pt;}
.ws3b{word-spacing:-0.336000pt;}
.wsa6{word-spacing:-0.320000pt;}
.ws3d{word-spacing:-0.288000pt;}
.wsa4{word-spacing:-0.280000pt;}
.ws13{word-spacing:-0.272000pt;}
.ws40{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.240000pt;}
.ws54{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.181333pt;}
.wsc6{word-spacing:-0.160000pt;}
.ws79{word-spacing:-0.144000pt;}
.ws12{word-spacing:-0.136000pt;}
.ws8c{word-spacing:-0.124800pt;}
.wsa3{word-spacing:-0.120000pt;}
.ws2e{word-spacing:-0.096000pt;}
.ws39{word-spacing:-0.093600pt;}
.wsa5{word-spacing:-0.080000pt;}
.ws4d{word-spacing:-0.062400pt;}
.ws48{word-spacing:-0.048000pt;}
.wsa7{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws88{word-spacing:0.031200pt;}
.wsb1{word-spacing:0.040000pt;}
.ws18{word-spacing:0.045333pt;}
.ws2b{word-spacing:0.048000pt;}
.wsc0{word-spacing:0.080000pt;}
.ws50{word-spacing:0.096000pt;}
.ws3c{word-spacing:0.124800pt;}
.ws32{word-spacing:0.144000pt;}
.ws4c{word-spacing:0.160000pt;}
.ws69{word-spacing:0.192000pt;}
.wsb9{word-spacing:0.200000pt;}
.ws3a{word-spacing:0.240000pt;}
.ws41{word-spacing:0.288000pt;}
.wscc{word-spacing:0.320000pt;}
.ws3f{word-spacing:0.336000pt;}
.wsc7{word-spacing:0.360000pt;}
.ws16{word-spacing:0.362667pt;}
.ws7c{word-spacing:0.384000pt;}
.wsd0{word-spacing:0.400000pt;}
.ws2d{word-spacing:0.432000pt;}
.ws9e{word-spacing:0.440000pt;}
.ws67{word-spacing:0.480000pt;}
.wscd{word-spacing:0.520000pt;}
.ws71{word-spacing:0.528000pt;}
.wsbe{word-spacing:0.560000pt;}
.ws89{word-spacing:0.576000pt;}
.wsba{word-spacing:0.600000pt;}
.wsb8{word-spacing:0.640000pt;}
.ws33{word-spacing:0.672000pt;}
.ws70{word-spacing:0.720000pt;}
.wsd5{word-spacing:0.768000pt;}
.ws42{word-spacing:0.816000pt;}
.wscf{word-spacing:0.840000pt;}
.wsd4{word-spacing:0.864000pt;}
.wsd1{word-spacing:0.920000pt;}
.ws7b{word-spacing:0.960000pt;}
.wsb7{word-spacing:1.000000pt;}
.ws43{word-spacing:1.008000pt;}
.wsa1{word-spacing:1.040000pt;}
.ws7d{word-spacing:1.056000pt;}
.wsbb{word-spacing:1.080000pt;}
.wsd9{word-spacing:1.104000pt;}
.ws4f{word-spacing:1.296000pt;}
.ws1c{word-spacing:1.541333pt;}
.wsd7{word-spacing:1.632000pt;}
.wsae{word-spacing:1.640000pt;}
.wsaf{word-spacing:1.680000pt;}
.ws11{word-spacing:1.904000pt;}
.wsd8{word-spacing:1.968000pt;}
.ws15{word-spacing:1.994667pt;}
.wsd6{word-spacing:2.016000pt;}
.ws14{word-spacing:2.040000pt;}
.wsad{word-spacing:2.120000pt;}
.wsc5{word-spacing:2.480000pt;}
.ws3e{word-spacing:3.216000pt;}
.ws65{word-spacing:65.631996pt;}
.ws62{word-spacing:106.997332pt;}
.ws64{word-spacing:113.007996pt;}
.ws63{word-spacing:141.119999pt;}
.ws61{word-spacing:141.123732pt;}
.ws59{word-spacing:143.024004pt;}
.ws66{word-spacing:145.823999pt;}
.ws5a{word-spacing:171.845330pt;}
.ws58{word-spacing:182.485325pt;}
.ws5c{word-spacing:192.527996pt;}
.ws60{word-spacing:199.845333pt;}
.ws5d{word-spacing:201.040002pt;}
.ws57{word-spacing:217.093330pt;}
.ws5e{word-spacing:321.705060pt;}
.ws5f{word-spacing:624.586685pt;}
.ws56{word-spacing:719.301305pt;}
._3c{margin-left:-9.840000pt;}
._39{margin-left:-8.200000pt;}
._3d{margin-left:-7.240000pt;}
._4{margin-left:-6.255447pt;}
._7{margin-left:-5.285383pt;}
._2{margin-left:-3.873573pt;}
._1{margin-left:-2.912000pt;}
._0{margin-left:-1.578676pt;}
._3{width:1.059288pt;}
._5{width:2.539745pt;}
._33{width:3.571660pt;}
._34{width:4.490692pt;}
._35{width:6.098677pt;}
._37{width:7.120002pt;}
._3b{width:8.271392pt;}
._38{width:9.175095pt;}
._36{width:11.520000pt;}
._2b{width:14.088959pt;}
._3a{width:15.557355pt;}
._6{width:41.697523pt;}
._8{width:43.025190pt;}
._19{width:63.596735pt;}
._30{width:76.495999pt;}
._2f{width:88.032000pt;}
._b{width:94.602671pt;}
._c{width:98.709324pt;}
._a{width:99.941325pt;}
._31{width:105.952000pt;}
._26{width:108.117325pt;}
._24{width:109.349325pt;}
._2e{width:111.514661pt;}
._10{width:112.522659pt;}
._25{width:114.687984pt;}
._18{width:116.629325pt;}
._16{width:117.861325pt;}
._23{width:124.096009pt;}
._12{width:126.037325pt;}
._f{width:127.269325pt;}
._2d{width:130.255999pt;}
._17{width:131.712001pt;}
._11{width:132.607996pt;}
._22{width:134.252243pt;}
._15{width:141.119997pt;}
._e{width:142.016009pt;}
._28{width:143.642680pt;}
._27{width:150.997347pt;}
._1d{width:152.469325pt;}
._20{width:153.701325pt;}
._2c{width:159.712000pt;}
._21{width:167.552013pt;}
._1b{width:171.621325pt;}
._1e{width:180.466048pt;}
._32{width:183.788766pt;}
._1c{width:185.472013pt;}
._1f{width:195.480995pt;}
._1a{width:230.720016pt;}
._9{width:245.698058pt;}
._14{width:322.832003pt;}
._13{width:341.562660pt;}
._29{width:346.016003pt;}
._d{width:366.661337pt;}
._2a{width:374.303994pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2e{bottom:60.728799pt;}
.yb0{bottom:60.935997pt;}
.y76{bottom:60.937331pt;}
.y166{bottom:61.006670pt;}
.y1a0{bottom:61.156267pt;}
.y121{bottom:63.158936pt;}
.y1e5{bottom:71.349571pt;}
.yca{bottom:73.836289pt;}
.y2d{bottom:74.056799pt;}
.yaf{bottom:74.267997pt;}
.y75{bottom:74.269331pt;}
.y165{bottom:74.341332pt;}
.y19f{bottom:74.488267pt;}
.y120{bottom:76.490935pt;}
.yfd{bottom:78.496271pt;}
.y1e4{bottom:82.679571pt;}
.yc9{bottom:87.168288pt;}
.y2c{bottom:87.384799pt;}
.yae{bottom:87.599996pt;}
.y74{bottom:87.601330pt;}
.y164{bottom:87.673331pt;}
.y19e{bottom:87.820266pt;}
.y22f{bottom:88.505609pt;}
.y11f{bottom:89.822934pt;}
.yfc{bottom:91.828270pt;}
.y1e3{bottom:94.009571pt;}
.yc8{bottom:100.500288pt;}
.y2b{bottom:100.723466pt;}
.y73{bottom:100.933329pt;}
.y163{bottom:101.009333pt;}
.y19d{bottom:101.152265pt;}
.y22e{bottom:101.837609pt;}
.y11e{bottom:103.154933pt;}
.yfb{bottom:105.160270pt;}
.y1e2{bottom:105.339571pt;}
.y10f{bottom:112.907340pt;}
.yf2{bottom:113.017468pt;}
.yc7{bottom:113.832287pt;}
.y2a{bottom:114.051466pt;}
.y162{bottom:114.341332pt;}
.y19c{bottom:114.484265pt;}
.y22d{bottom:115.169608pt;}
.y11d{bottom:116.486933pt;}
.y1e1{bottom:116.669571pt;}
.y118{bottom:117.783337pt;}
.yfa{bottom:118.492269pt;}
.yad{bottom:124.980534pt;}
.y10e{bottom:126.239339pt;}
.yf1{bottom:126.349467pt;}
.yc6{bottom:127.164286pt;}
.y29{bottom:127.390132pt;}
.y161{bottom:127.673331pt;}
.y72{bottom:127.717468pt;}
.y19b{bottom:127.818932pt;}
.y1e0{bottom:127.999571pt;}
.y22c{bottom:128.501607pt;}
.y11c{bottom:129.818932pt;}
.y117{bottom:131.115336pt;}
.yf9{bottom:131.824268pt;}
.yac{bottom:138.312533pt;}
.y1df{bottom:139.329571pt;}
.y10d{bottom:139.571338pt;}
.yf0{bottom:139.681466pt;}
.yc5{bottom:140.496286pt;}
.y28{bottom:140.718132pt;}
.y160{bottom:141.007999pt;}
.y71{bottom:141.049468pt;}
.y19a{bottom:141.150931pt;}
.y22b{bottom:141.833607pt;}
.y11b{bottom:143.150931pt;}
.y116{bottom:144.447335pt;}
.yf8{bottom:145.156267pt;}
.y1de{bottom:150.659572pt;}
.yab{bottom:151.644533pt;}
.y10c{bottom:152.903338pt;}
.yef{bottom:153.013466pt;}
.yc4{bottom:153.828285pt;}
.y27{bottom:154.051466pt;}
.y15f{bottom:154.339998pt;}
.y70{bottom:154.381467pt;}
.y199{bottom:154.492269pt;}
.y22a{bottom:155.165606pt;}
.y11a{bottom:156.482930pt;}
.y115{bottom:157.779335pt;}
.yf7{bottom:158.488267pt;}
.y1dd{bottom:161.989572pt;}
.yaa{bottom:164.976532pt;}
.y10b{bottom:166.235337pt;}
.yee{bottom:166.345465pt;}
.yc3{bottom:167.160284pt;}
.y26{bottom:167.384809pt;}
.y15e{bottom:167.680001pt;}
.y6f{bottom:167.713466pt;}
.y198{bottom:167.824268pt;}
.y229{bottom:168.497605pt;}
.y119{bottom:169.816264pt;}
.y114{bottom:171.111334pt;}
.yf6{bottom:171.820266pt;}
.y1dc{bottom:173.319572pt;}
.ya9{bottom:178.309875pt;}
.y10a{bottom:179.567336pt;}
.yed{bottom:179.677464pt;}
.yc2{bottom:180.492283pt;}
.y25{bottom:180.718143pt;}
.y15d{bottom:181.012001pt;}
.y6e{bottom:181.045465pt;}
.y197{bottom:181.156267pt;}
.y228{bottom:181.829604pt;}
.y113{bottom:184.443333pt;}
.y1db{bottom:184.649572pt;}
.yf5{bottom:185.152265pt;}
.y109{bottom:192.899336pt;}
.yec{bottom:193.009463pt;}
.yc1{bottom:193.824283pt;}
.y24{bottom:194.051476pt;}
.y15c{bottom:194.344000pt;}
.y6d{bottom:194.377465pt;}
.y196{bottom:194.488267pt;}
.y227{bottom:195.161604pt;}
.y1da{bottom:195.979572pt;}
.y112{bottom:197.775333pt;}
.yf4{bottom:198.484265pt;}
.ya8{bottom:202.366531pt;}
.y108{bottom:206.231335pt;}
.yeb{bottom:206.341463pt;}
.yc0{bottom:207.156282pt;}
.y1d9{bottom:207.309572pt;}
.y23{bottom:207.384809pt;}
.y15b{bottom:207.675999pt;}
.y6c{bottom:207.709464pt;}
.y195{bottom:207.820266pt;}
.y226{bottom:208.493603pt;}
.y111{bottom:211.107332pt;}
.yf3{bottom:211.816264pt;}
.ya7{bottom:215.698530pt;}
.y1d8{bottom:218.639572pt;}
.y107{bottom:219.563334pt;}
.yea{bottom:219.673462pt;}
.ybf{bottom:220.488281pt;}
.y15a{bottom:221.007999pt;}
.y6b{bottom:221.042797pt;}
.y194{bottom:221.152265pt;}
.y225{bottom:221.825602pt;}
.y110{bottom:224.439331pt;}
.y22{bottom:224.566142pt;}
.y128{bottom:225.713733pt;}
.ya6{bottom:229.030529pt;}
.y1d7{bottom:229.969572pt;}
.ybe{bottom:233.820281pt;}
.y21{bottom:234.051476pt;}
.y159{bottom:234.339998pt;}
.y6a{bottom:234.388137pt;}
.y193{bottom:234.484265pt;}
.y224{bottom:235.157601pt;}
.y127{bottom:239.045733pt;}
.y1d6{bottom:241.299572pt;}
.ya5{bottom:242.362528pt;}
.ybd{bottom:247.152280pt;}
.y20{bottom:247.384809pt;}
.y158{bottom:247.678810pt;}
.y69{bottom:247.720136pt;}
.y192{bottom:247.833627pt;}
.y223{bottom:248.489601pt;}
.y126{bottom:252.377732pt;}
.y1d5{bottom:252.629572pt;}
.ya4{bottom:255.694528pt;}
.y106{bottom:256.014823pt;}
.ybc{bottom:260.484279pt;}
.y157{bottom:261.010809pt;}
.y68{bottom:261.052136pt;}
.y191{bottom:261.165626pt;}
.y222{bottom:261.821600pt;}
.y1d4{bottom:263.959573pt;}
.y1f{bottom:264.566142pt;}
.y125{bottom:265.709731pt;}
.ya3{bottom:269.026527pt;}
.y105{bottom:269.346822pt;}
.ybb{bottom:273.816278pt;}
.y156{bottom:274.342808pt;}
.y67{bottom:274.384135pt;}
.y190{bottom:274.497625pt;}
.y221{bottom:275.153599pt;}
.y1d3{bottom:275.289573pt;}
.y124{bottom:279.041731pt;}
.ya2{bottom:282.358526pt;}
.y104{bottom:282.678821pt;}
.y1d2{bottom:286.619573pt;}
.yba{bottom:287.148278pt;}
.y155{bottom:287.674808pt;}
.y66{bottom:287.716134pt;}
.y18f{bottom:287.829625pt;}
.y220{bottom:288.485599pt;}
.y123{bottom:292.373730pt;}
.ya1{bottom:295.690526pt;}
.y103{bottom:296.010821pt;}
.y1d1{bottom:297.949573pt;}
.yb9{bottom:300.480277pt;}
.y154{bottom:301.006807pt;}
.y65{bottom:301.048133pt;}
.y18e{bottom:301.161624pt;}
.y21f{bottom:301.817598pt;}
.y1e{bottom:304.609610pt;}
.y122{bottom:305.705729pt;}
.ya0{bottom:309.022525pt;}
.y1d0{bottom:309.279573pt;}
.y102{bottom:309.342820pt;}
.yb8{bottom:313.812276pt;}
.y153{bottom:314.344122pt;}
.y64{bottom:314.380133pt;}
.y18d{bottom:314.493623pt;}
.y21e{bottom:315.149597pt;}
.y1d{bottom:317.984278pt;}
.y1cf{bottom:320.609573pt;}
.y9f{bottom:322.354524pt;}
.y101{bottom:322.674819pt;}
.yb7{bottom:327.144275pt;}
.y152{bottom:327.676121pt;}
.y63{bottom:327.712132pt;}
.y18c{bottom:327.825623pt;}
.y21d{bottom:328.482930pt;}
.y1c{bottom:331.316277pt;}
.y1ce{bottom:331.939573pt;}
.y9e{bottom:335.705200pt;}
.y100{bottom:336.006819pt;}
.yb6{bottom:340.476275pt;}
.y151{bottom:341.008121pt;}
.y62{bottom:341.044131pt;}
.y18b{bottom:341.157622pt;}
.y1cd{bottom:343.269573pt;}
.y1b{bottom:344.648276pt;}
.y9d{bottom:349.037199pt;}
.yff{bottom:349.338818pt;}
.yb5{bottom:353.808274pt;}
.y150{bottom:354.340120pt;}
.y61{bottom:354.376131pt;}
.y18a{bottom:354.489621pt;}
.y1cc{bottom:354.599573pt;}
.y21c{bottom:357.996238pt;}
.y9c{bottom:362.369199pt;}
.yfe{bottom:362.670817pt;}
.y1cb{bottom:365.929573pt;}
.yb4{bottom:367.140273pt;}
.y14f{bottom:367.673453pt;}
.y60{bottom:367.710798pt;}
.y189{bottom:367.821620pt;}
.y21b{bottom:369.326238pt;}
.y9b{bottom:375.701198pt;}
.y1ca{bottom:377.259574pt;}
.yb3{bottom:380.472273pt;}
.y21a{bottom:380.656238pt;}
.y14e{bottom:381.009455pt;}
.y5f{bottom:381.042797pt;}
.y188{bottom:381.153620pt;}
.y1a{bottom:386.648276pt;}
.y1c9{bottom:388.589574pt;}
.y9a{bottom:389.033197pt;}
.y219{bottom:391.986238pt;}
.yb2{bottom:393.804272pt;}
.y14d{bottom:394.341454pt;}
.y5e{bottom:394.374797pt;}
.y187{bottom:394.485619pt;}
.y1c8{bottom:399.919574pt;}
.y19{bottom:401.312276pt;}
.y99{bottom:402.365197pt;}
.y218{bottom:403.316238pt;}
.yb1{bottom:407.136271pt;}
.y14c{bottom:407.673453pt;}
.y5d{bottom:407.708130pt;}
.y186{bottom:407.817618pt;}
.y1c7{bottom:411.249574pt;}
.y217{bottom:414.646239pt;}
.y98{bottom:415.697196pt;}
.y18{bottom:415.976276pt;}
.y14b{bottom:421.009455pt;}
.y185{bottom:421.150952pt;}
.y1c6{bottom:422.579574pt;}
.y216{bottom:425.976239pt;}
.y97{bottom:429.029195pt;}
.y17{bottom:430.640276pt;}
.y1c5{bottom:433.909574pt;}
.y14a{bottom:434.341454pt;}
.y184{bottom:434.485619pt;}
.y5c{bottom:434.486953pt;}
.y215{bottom:437.306239pt;}
.y96{bottom:442.361194pt;}
.y1c4{bottom:445.239574pt;}
.y16{bottom:445.304276pt;}
.y149{bottom:447.673453pt;}
.y183{bottom:447.817618pt;}
.y5b{bottom:447.818952pt;}
.y214{bottom:448.636239pt;}
.y95{bottom:455.693194pt;}
.ye9{bottom:455.969604pt;}
.y1c3{bottom:456.569574pt;}
.y213{bottom:459.966239pt;}
.y15{bottom:459.968276pt;}
.y148{bottom:461.008121pt;}
.y5a{bottom:461.150952pt;}
.y182{bottom:461.152286pt;}
.y1c2{bottom:467.899574pt;}
.y94{bottom:469.025193pt;}
.y212{bottom:471.296239pt;}
.y147{bottom:474.340120pt;}
.y181{bottom:474.484285pt;}
.y59{bottom:474.486953pt;}
.y14{bottom:474.632276pt;}
.y1c1{bottom:479.229574pt;}
.y93{bottom:482.357192pt;}
.y211{bottom:482.626239pt;}
.ye8{bottom:482.781604pt;}
.y146{bottom:487.680123pt;}
.y180{bottom:487.817618pt;}
.y58{bottom:487.818952pt;}
.y13{bottom:489.296276pt;}
.y1c0{bottom:490.559575pt;}
.y210{bottom:493.956239pt;}
.y92{bottom:495.689192pt;}
.ye7{bottom:498.284270pt;}
.y145{bottom:501.012123pt;}
.y57{bottom:501.150952pt;}
.y17f{bottom:501.154954pt;}
.y1bf{bottom:501.889575pt;}
.y12{bottom:503.960276pt;}
.y20f{bottom:505.286239pt;}
.y91{bottom:509.021191pt;}
.y1be{bottom:513.219575pt;}
.ye6{bottom:513.786937pt;}
.y144{bottom:514.344122pt;}
.y56{bottom:514.484285pt;}
.y17e{bottom:514.486953pt;}
.y20e{bottom:516.616239pt;}
.y11{bottom:518.624276pt;}
.y90{bottom:522.353190pt;}
.y1bd{bottom:524.549575pt;}
.y143{bottom:527.676121pt;}
.y55{bottom:527.818952pt;}
.y20d{bottom:527.946240pt;}
.ye5{bottom:529.289604pt;}
.y10{bottom:533.288276pt;}
.y1bc{bottom:535.879575pt;}
.y20c{bottom:539.276240pt;}
.y142{bottom:541.008121pt;}
.y54{bottom:541.150952pt;}
.ye4{bottom:544.792271pt;}
.y8f{bottom:546.397737pt;}
.y1bb{bottom:547.209575pt;}
.yf{bottom:547.952276pt;}
.y20b{bottom:550.606240pt;}
.y141{bottom:554.340120pt;}
.y17d{bottom:554.484285pt;}
.y53{bottom:554.486953pt;}
.y1ba{bottom:558.539575pt;}
.y8e{bottom:559.731070pt;}
.ye3{bottom:560.294938pt;}
.y20a{bottom:561.936240pt;}
.ye{bottom:562.616276pt;}
.y140{bottom:567.682669pt;}
.y52{bottom:567.818952pt;}
.y1b9{bottom:569.869575pt;}
.y8d{bottom:573.069740pt;}
.y209{bottom:573.266240pt;}
.ye2{bottom:575.797604pt;}
.yd{bottom:577.280276pt;}
.y13f{bottom:581.014669pt;}
.y51{bottom:581.150952pt;}
.y1b8{bottom:581.199575pt;}
.y208{bottom:584.596240pt;}
.y8c{bottom:586.401739pt;}
.ye1{bottom:591.300271pt;}
.yc{bottom:591.944276pt;}
.y1b7{bottom:592.529575pt;}
.y13e{bottom:594.346668pt;}
.y50{bottom:594.488287pt;}
.y17c{bottom:594.489621pt;}
.y207{bottom:595.926240pt;}
.y8b{bottom:599.733738pt;}
.y1b6{bottom:603.859576pt;}
.yb{bottom:606.608276pt;}
.ye0{bottom:606.802938pt;}
.y206{bottom:607.256240pt;}
.y13d{bottom:607.678667pt;}
.y4f{bottom:607.820286pt;}
.y17b{bottom:607.821620pt;}
.y8a{bottom:613.065738pt;}
.y1b5{bottom:615.189576pt;}
.y205{bottom:618.586240pt;}
.y13c{bottom:621.010667pt;}
.y4e{bottom:621.152286pt;}
.y17a{bottom:621.153620pt;}
.y89{bottom:626.397737pt;}
.y1b4{bottom:626.519576pt;}
.y204{bottom:629.916240pt;}
.ya{bottom:633.274942pt;}
.y13b{bottom:634.342666pt;}
.y4d{bottom:634.484285pt;}
.y179{bottom:634.485619pt;}
.y1b3{bottom:637.849576pt;}
.y88{bottom:639.729736pt;}
.y203{bottom:641.246241pt;}
.y245{bottom:645.828250pt;}
.y13a{bottom:647.674665pt;}
.y178{bottom:647.817618pt;}
.y4c{bottom:647.818952pt;}
.y1b2{bottom:649.179576pt;}
.y9{bottom:649.274942pt;}
.y202{bottom:652.576241pt;}
.ydf{bottom:655.986912pt;}
.y244{bottom:659.160249pt;}
.y1b1{bottom:660.509576pt;}
.y139{bottom:661.006664pt;}
.y4b{bottom:661.150952pt;}
.y177{bottom:661.154913pt;}
.y87{bottom:663.779619pt;}
.y201{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.yde{bottom:669.318912pt;}
.y1b0{bottom:671.839576pt;}
.y243{bottom:672.492249pt;}
.y31{bottom:673.023463pt;}
.y138{bottom:674.341373pt;}
.y4a{bottom:674.484244pt;}
.y176{bottom:674.486912pt;}
.y200{bottom:675.236241pt;}
.y86{bottom:677.111619pt;}
.ydd{bottom:682.650911pt;}
.y1af{bottom:683.169576pt;}
.y242{bottom:685.824248pt;}
.y1ff{bottom:686.566241pt;}
.y137{bottom:687.673372pt;}
.y49{bottom:687.817578pt;}
.y175{bottom:687.818912pt;}
.y85{bottom:690.443618pt;}
.y30{bottom:691.689463pt;}
.y1ae{bottom:694.499576pt;}
.y7{bottom:694.592232pt;}
.ydc{bottom:695.982910pt;}
.y1fe{bottom:697.896241pt;}
.y241{bottom:699.156247pt;}
.y136{bottom:701.005371pt;}
.y174{bottom:701.150911pt;}
.y48{bottom:701.152245pt;}
.y84{bottom:703.775617pt;}
.y1ad{bottom:705.829576pt;}
.y1fd{bottom:709.226241pt;}
.y2f{bottom:710.355462pt;}
.y240{bottom:712.488246pt;}
.y135{bottom:714.338704pt;}
.y47{bottom:714.484244pt;}
.y173{bottom:714.489580pt;}
.y83{bottom:717.107617pt;}
.y1ac{bottom:717.159577pt;}
.y1fc{bottom:720.556241pt;}
.ydb{bottom:722.773575pt;}
.y23f{bottom:725.820246pt;}
.y46{bottom:727.818912pt;}
.y172{bottom:727.821580pt;}
.y1ab{bottom:728.489577pt;}
.y82{bottom:730.439616pt;}
.y1fb{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.yda{bottom:738.276242pt;}
.y23e{bottom:739.152245pt;}
.y1aa{bottom:739.819577pt;}
.y134{bottom:741.090814pt;}
.y45{bottom:741.150911pt;}
.y171{bottom:741.153579pt;}
.y1fa{bottom:743.216241pt;}
.y1a9{bottom:751.149577pt;}
.y23d{bottom:752.484244pt;}
.yd9{bottom:753.778909pt;}
.y133{bottom:754.422814pt;}
.y44{bottom:754.484244pt;}
.y170{bottom:754.485578pt;}
.y81{bottom:754.497585pt;}
.y1f9{bottom:754.546242pt;}
.y1a8{bottom:762.482910pt;}
.y23c{bottom:765.816243pt;}
.y1f8{bottom:765.876242pt;}
.y132{bottom:767.754813pt;}
.y43{bottom:767.817578pt;}
.y80{bottom:767.829584pt;}
.yd8{bottom:769.281576pt;}
.y5{bottom:774.602901pt;}
.y1f7{bottom:777.206242pt;}
.y131{bottom:781.086812pt;}
.y16f{bottom:781.150911pt;}
.y42{bottom:781.152245pt;}
.y7f{bottom:781.161583pt;}
.yd7{bottom:784.784242pt;}
.y23b{bottom:785.153579pt;}
.y1f6{bottom:788.536242pt;}
.y1a7{bottom:791.818912pt;}
.y130{bottom:794.418812pt;}
.y41{bottom:794.484244pt;}
.y16e{bottom:794.485578pt;}
.y7e{bottom:794.493583pt;}
.y23a{bottom:798.485578pt;}
.y1f5{bottom:799.866242pt;}
.yd6{bottom:800.286909pt;}
.y1a6{bottom:805.150911pt;}
.y12f{bottom:807.750811pt;}
.y16d{bottom:807.817578pt;}
.y40{bottom:807.818912pt;}
.y7d{bottom:807.825582pt;}
.y1f4{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.yd5{bottom:815.789576pt;}
.y239{bottom:817.817578pt;}
.y1a5{bottom:818.482910pt;}
.y12e{bottom:821.082810pt;}
.y3f{bottom:821.150911pt;}
.y16c{bottom:821.154913pt;}
.y7c{bottom:821.157581pt;}
.y1f3{bottom:822.526242pt;}
.y32{bottom:823.475179pt;}
.yd4{bottom:831.292243pt;}
.y1a4{bottom:831.816243pt;}
.y1f2{bottom:833.856242pt;}
.y12d{bottom:834.414809pt;}
.y3e{bottom:834.484244pt;}
.y16b{bottom:834.486912pt;}
.y7b{bottom:834.489580pt;}
.y238{bottom:837.149577pt;}
.y1f1{bottom:845.186242pt;}
.yd3{bottom:846.794909pt;}
.y12c{bottom:847.746809pt;}
.y16a{bottom:847.818912pt;}
.y7a{bottom:847.821580pt;}
.y3d{bottom:847.828250pt;}
.y237{bottom:850.482910pt;}
.y1f0{bottom:856.516242pt;}
.y12b{bottom:861.078808pt;}
.y169{bottom:861.150911pt;}
.y79{bottom:861.153579pt;}
.y1a3{bottom:861.156247pt;}
.y3c{bottom:861.160249pt;}
.yd2{bottom:862.297576pt;}
.y1ef{bottom:867.846243pt;}
.y12a{bottom:874.410807pt;}
.y78{bottom:874.485578pt;}
.y1a2{bottom:874.488246pt;}
.y236{bottom:874.490914pt;}
.y3b{bottom:874.492249pt;}
.yd1{bottom:877.800243pt;}
.y1ee{bottom:879.176243pt;}
.y129{bottom:887.744141pt;}
.y77{bottom:887.817578pt;}
.y1a1{bottom:887.820246pt;}
.y235{bottom:887.822914pt;}
.y3a{bottom:887.824248pt;}
.y1ed{bottom:890.506243pt;}
.yd0{bottom:893.302910pt;}
.y168{bottom:901.152245pt;}
.y234{bottom:901.154913pt;}
.y39{bottom:901.156247pt;}
.y1ec{bottom:901.836243pt;}
.ycf{bottom:908.805576pt;}
.y1eb{bottom:913.166243pt;}
.y167{bottom:914.484244pt;}
.y233{bottom:914.486912pt;}
.y38{bottom:914.488246pt;}
.yce{bottom:924.308243pt;}
.y1ea{bottom:924.496243pt;}
.y232{bottom:927.818912pt;}
.y37{bottom:927.820246pt;}
.y1e9{bottom:935.826243pt;}
.ycd{bottom:939.810910pt;}
.y231{bottom:941.150911pt;}
.y36{bottom:941.152245pt;}
.y1e8{bottom:947.156243pt;}
.y230{bottom:954.482910pt;}
.y35{bottom:954.484244pt;}
.ycc{bottom:955.313577pt;}
.y1e7{bottom:958.486243pt;}
.y34{bottom:967.816243pt;}
.y1e6{bottom:969.816243pt;}
.ycb{bottom:970.816243pt;}
.y33{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h10{height:31.461333pt;}
.hd{height:32.594667pt;}
.hf{height:32.605469pt;}
.h8{height:34.523438pt;}
.he{height:36.564219pt;}
.hc{height:36.585552pt;}
.h15{height:36.922667pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h13{height:38.359375pt;}
.h4{height:39.305333pt;}
.h17{height:39.560000pt;}
.h18{height:40.080000pt;}
.h3{height:40.661333pt;}
.h19{height:40.960000pt;}
.h12{height:42.195312pt;}
.h6{height:43.066895pt;}
.h7{height:43.066897pt;}
.h9{height:46.080000pt;}
.ha{height:47.472000pt;}
.h16{height:49.152000pt;}
.h11{height:63.936000pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:12.530739pt;}
.xe{left:52.483200pt;}
.x2{left:54.392400pt;}
.x6{left:125.291331pt;}
.x4{left:207.516805pt;}
.xa{left:211.673882pt;}
.x7{left:223.516792pt;}
.xb{left:257.999207pt;}
.x10{left:267.195190pt;}
.x9{left:345.317871pt;}
.x3{left:519.632528pt;}
.xf{left:723.596680pt;}
.xc{left:725.336507pt;}
.xd{left:726.469482pt;}
.x8{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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