
    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_87880357e21f3b00281b0b30.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_f0cde7bbdd229fa1d532256e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7c0ea714dc6e5d481c60d9cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56284be85c627412388da2c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_94b764e82a5b7728df6a97f4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fcc68fbacd541ba3751a9719.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_d30462d6612ef96d4541922f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3c1173b143ef54ede65b962.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_48d8c840416b91288387ee28.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3ff5e67fff148fa8cd9f65de.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bcf167bada0c7bcca540c885.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0921864ed35f94cdbb47fb88.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9d6a02b92ebd237bd74bdf96.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c3b92c7fa02441b14614349c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9d6a02b92ebd237bd74bdf96.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.400879px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.179979px;}
.v2{vertical-align:20.400879px;}
.ls59{letter-spacing:-3.456000px;}
.ls6b{letter-spacing:-1.350000px;}
.ls26{letter-spacing:-0.972000px;}
.ls84{letter-spacing:-0.945000px;}
.ls57{letter-spacing:-0.864000px;}
.ls89{letter-spacing:-0.810000px;}
.ls85{letter-spacing:-0.765000px;}
.ls83{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.594000px;}
.ls73{letter-spacing:-0.585000px;}
.ls58{letter-spacing:-0.540000px;}
.ls6a{letter-spacing:-0.495000px;}
.ls32{letter-spacing:-0.486000px;}
.ls74{letter-spacing:-0.450000px;}
.ls27{letter-spacing:-0.432000px;}
.ls6c{letter-spacing:-0.315000px;}
.ls16{letter-spacing:-0.270000px;}
.ls86{letter-spacing:-0.225000px;}
.ls3d{letter-spacing:-0.216000px;}
.ls43{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.153000px;}
.ls6f{letter-spacing:-0.135000px;}
.ls19{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.105300px;}
.ls72{letter-spacing:-0.090000px;}
.ls30{letter-spacing:-0.070200px;}
.ls28{letter-spacing:-0.054000px;}
.ls6e{letter-spacing:-0.045000px;}
.ls2c{letter-spacing:-0.035100px;}
.ls11{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.006593px;}
.ls4{letter-spacing:0.013406px;}
.ls2{letter-spacing:0.013772px;}
.ls3{letter-spacing:0.013956px;}
.ls4e{letter-spacing:0.019776px;}
.ls4d{letter-spacing:0.027000px;}
.ls7d{letter-spacing:0.045000px;}
.ls1a{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.058939px;}
.ls5{letter-spacing:0.070200px;}
.lsb{letter-spacing:0.088707px;}
.ls67{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.105300px;}
.ls7{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.113404px;}
.ls45{letter-spacing:0.117371px;}
.ls62{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.140398px;}
.ls25{letter-spacing:0.140400px;}
.ls4a{letter-spacing:0.155366px;}
.ls44{letter-spacing:0.161999px;}
.ls17{letter-spacing:0.162000px;}
.lse{letter-spacing:0.173188px;}
.ls9{letter-spacing:0.175499px;}
.ls8{letter-spacing:0.175500px;}
.ls56{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.205198px;}
.ls3e{letter-spacing:0.210600px;}
.ls4b{letter-spacing:0.215974px;}
.ls21{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.217805px;}
.ls78{letter-spacing:0.225000px;}
.lsa{letter-spacing:0.225721px;}
.ls39{letter-spacing:0.228150px;}
.ls3a{letter-spacing:0.245700px;}
.ls48{letter-spacing:0.248398px;}
.ls49{letter-spacing:0.248406px;}
.lsc{letter-spacing:0.270000px;}
.ls40{letter-spacing:0.280800px;}
.ls42{letter-spacing:0.297000px;}
.ls3f{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.306000px;}
.ls88{letter-spacing:0.315000px;}
.ls3b{letter-spacing:0.315899px;}
.ls3c{letter-spacing:0.315900px;}
.ls5e{letter-spacing:0.323999px;}
.ls14{letter-spacing:0.324000px;}
.ls41{letter-spacing:0.351000px;}
.ls7f{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.360902px;}
.ls22{letter-spacing:0.377998px;}
.lsd{letter-spacing:0.378000px;}
.ls64{letter-spacing:0.405000px;}
.ls2e{letter-spacing:0.421200px;}
.ls24{letter-spacing:0.432000px;}
.ls5f{letter-spacing:0.432001px;}
.ls65{letter-spacing:0.450000px;}
.ls23{letter-spacing:0.456301px;}
.ls10{letter-spacing:0.459000px;}
.ls76{letter-spacing:0.472500px;}
.ls37{letter-spacing:0.486000px;}
.ls82{letter-spacing:0.495000px;}
.ls2a{letter-spacing:0.526500px;}
.ls12{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.540314px;}
.ls34{letter-spacing:0.545446px;}
.ls63{letter-spacing:0.585000px;}
.ls5b{letter-spacing:0.593999px;}
.ls15{letter-spacing:0.594000px;}
.ls2b{letter-spacing:0.600000px;}
.ls75{letter-spacing:0.630000px;}
.ls2d{letter-spacing:0.648000px;}
.ls55{letter-spacing:0.653401px;}
.ls71{letter-spacing:0.675000px;}
.ls2f{letter-spacing:0.702000px;}
.ls70{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.756000px;}
.ls7e{letter-spacing:0.765000px;}
.ls29{letter-spacing:0.810000px;}
.ls50{letter-spacing:0.829194px;}
.ls5c{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.855000px;}
.ls5d{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.867000px;}
.ls68{letter-spacing:0.918000px;}
.ls66{letter-spacing:0.935957px;}
.ls79{letter-spacing:0.945000px;}
.ls8a{letter-spacing:0.972000px;}
.ls80{letter-spacing:1.004415px;}
.ls81{letter-spacing:1.026000px;}
.ls87{letter-spacing:1.125000px;}
.ls4f{letter-spacing:1.134001px;}
.ls7b{letter-spacing:1.170000px;}
.ls51{letter-spacing:1.188000px;}
.ls69{letter-spacing:1.200000px;}
.ls53{letter-spacing:1.295999px;}
.ls5a{letter-spacing:1.404000px;}
.ls77{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.490387px;}
.ls60{letter-spacing:1.500000px;}
.ls7a{letter-spacing:1.507487px;}
.ls61{letter-spacing:1.512000px;}
.ls36{letter-spacing:2.040000px;}
.ls0{letter-spacing:2.592000px;}
.ls1f{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7c{letter-spacing:3.105000px;}
.ls8b{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;}
.ws22{word-spacing:-14.700000px;}
.ws6f{word-spacing:-13.770000px;}
.ws7f{word-spacing:-13.596000px;}
.ws70{word-spacing:-13.554000px;}
.ws2b{word-spacing:-13.500000px;}
.ws71{word-spacing:-13.068000px;}
.ws53{word-spacing:-13.014000px;}
.ws2c{word-spacing:-12.960000px;}
.ws72{word-spacing:-12.852000px;}
.ws73{word-spacing:-12.798000px;}
.ws50{word-spacing:-12.690000px;}
.ws6d{word-spacing:-12.636000px;}
.ws2f{word-spacing:-12.582000px;}
.ws69{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws31{word-spacing:-12.474000px;}
.ws30{word-spacing:-12.420000px;}
.ws6e{word-spacing:-12.393000px;}
.ws32{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws29{word-spacing:-12.312000px;}
.ws25{word-spacing:-12.258000px;}
.ws26{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws33{word-spacing:-12.150000px;}
.ws6b{word-spacing:-11.826000px;}
.ws4e{word-spacing:-11.664000px;}
.ws6a{word-spacing:-11.502000px;}
.ws28{word-spacing:-11.394000px;}
.wsa4{word-spacing:-11.385000px;}
.wsa2{word-spacing:-10.755000px;}
.ws83{word-spacing:-10.665000px;}
.wsa5{word-spacing:-10.620000px;}
.wsa0{word-spacing:-10.485000px;}
.wsa1{word-spacing:-10.440000px;}
.wsbd{word-spacing:-10.395000px;}
.ws82{word-spacing:-10.305000px;}
.ws80{word-spacing:-10.215000px;}
.ws9{word-spacing:-10.200000px;}
.ws85{word-spacing:-10.125000px;}
.ws81{word-spacing:-9.990000px;}
.ws86{word-spacing:-9.855000px;}
.ws84{word-spacing:-9.765000px;}
.wsb0{word-spacing:-9.675000px;}
.ws9d{word-spacing:-9.585000px;}
.wsa3{word-spacing:-9.540000px;}
.wsa6{word-spacing:-9.495000px;}
.ws6c{word-spacing:-8.910000px;}
.ws27{word-spacing:-8.775000px;}
.ws2a{word-spacing:-8.494200px;}
.ws2e{word-spacing:-8.388900px;}
.ws57{word-spacing:-8.318700px;}
.ws56{word-spacing:-8.283600px;}
.ws54{word-spacing:-8.248500px;}
.ws55{word-spacing:-8.213400px;}
.ws51{word-spacing:-8.178300px;}
.ws6{word-spacing:-8.143200px;}
.ws23{word-spacing:-8.108100px;}
.ws24{word-spacing:-8.073000px;}
.ws52{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws5{word-spacing:-7.967700px;}
.ws2d{word-spacing:-7.932600px;}
.ws34{word-spacing:-7.897500px;}
.ws7{word-spacing:-7.862400px;}
.ws8{word-spacing:-6.630000px;}
.wsc1{word-spacing:-6.120000px;}
.ws68{word-spacing:-5.508000px;}
.wsc2{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.wsc{word-spacing:-3.276000px;}
.wsd{word-spacing:-2.400000px;}
.ws58{word-spacing:-1.890000px;}
.ws66{word-spacing:-1.860000px;}
.ws16{word-spacing:-1.836000px;}
.ws78{word-spacing:-1.674000px;}
.ws88{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.560000px;}
.ws1c{word-spacing:-1.530000px;}
.ws60{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.458000px;}
.ws9f{word-spacing:-1.395000px;}
.ws3c{word-spacing:-1.386000px;}
.ws65{word-spacing:-1.350000px;}
.ws1a{word-spacing:-1.296000px;}
.ws21{word-spacing:-1.275000px;}
.wsf{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.ws9e{word-spacing:-1.215000px;}
.ws3a{word-spacing:-1.188000px;}
.ws95{word-spacing:-1.170000px;}
.ws10{word-spacing:-1.134000px;}
.ws94{word-spacing:-1.125000px;}
.ws3d{word-spacing:-1.080000px;}
.ws8e{word-spacing:-1.035000px;}
.ws4a{word-spacing:-1.026000px;}
.wsb4{word-spacing:-0.990000px;}
.wsb{word-spacing:-0.960000px;}
.wsb3{word-spacing:-0.945000px;}
.ws48{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.867000px;}
.ws5a{word-spacing:-0.864000px;}
.ws91{word-spacing:-0.855000px;}
.ws37{word-spacing:-0.810000px;}
.ws7a{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.756000px;}
.wsa7{word-spacing:-0.720000px;}
.ws39{word-spacing:-0.702000px;}
.ws97{word-spacing:-0.675000px;}
.ws17{word-spacing:-0.648000px;}
.ws61{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.wsb1{word-spacing:-0.585000px;}
.ws18{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.495000px;}
.ws13{word-spacing:-0.486000px;}
.ws20{word-spacing:-0.459000px;}
.wsaa{word-spacing:-0.450000px;}
.ws4b{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.421200px;}
.ws93{word-spacing:-0.405000px;}
.ws19{word-spacing:-0.378000px;}
.ws1b{word-spacing:-0.324000px;}
.ws63{word-spacing:-0.315900px;}
.wsaf{word-spacing:-0.315000px;}
.ws1d{word-spacing:-0.306000px;}
.ws44{word-spacing:-0.270000px;}
.ws62{word-spacing:-0.245700px;}
.wsad{word-spacing:-0.225000px;}
.ws4d{word-spacing:-0.216000px;}
.ws5c{word-spacing:-0.210600px;}
.wsbb{word-spacing:-0.180000px;}
.ws5f{word-spacing:-0.175500px;}
.ws64{word-spacing:-0.162000px;}
.ws38{word-spacing:-0.140400px;}
.ws35{word-spacing:-0.108000px;}
.wsb8{word-spacing:-0.090000px;}
.ws43{word-spacing:-0.054000px;}
.wsb5{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws92{word-spacing:0.045000px;}
.ws5e{word-spacing:0.054000px;}
.ws98{word-spacing:0.090000px;}
.ws3f{word-spacing:0.105300px;}
.ws3e{word-spacing:0.108000px;}
.wsa8{word-spacing:0.135000px;}
.ws3b{word-spacing:0.162000px;}
.ws46{word-spacing:0.180000px;}
.ws49{word-spacing:0.216000px;}
.ws9b{word-spacing:0.225000px;}
.ws14{word-spacing:0.270000px;}
.ws90{word-spacing:0.315000px;}
.ws79{word-spacing:0.324000px;}
.wsb2{word-spacing:0.360000px;}
.ws7d{word-spacing:0.378000px;}
.wsab{word-spacing:0.405000px;}
.ws40{word-spacing:0.432000px;}
.wsb6{word-spacing:0.450000px;}
.ws4f{word-spacing:0.486000px;}
.ws8f{word-spacing:0.495000px;}
.ws67{word-spacing:0.540000px;}
.ws99{word-spacing:0.585000px;}
.ws59{word-spacing:0.594000px;}
.wsa9{word-spacing:0.630000px;}
.ws9a{word-spacing:0.675000px;}
.ws11{word-spacing:0.702000px;}
.ws9c{word-spacing:0.720000px;}
.ws41{word-spacing:0.756000px;}
.wsbf{word-spacing:0.765000px;}
.ws7c{word-spacing:0.810000px;}
.ws7b{word-spacing:0.840000px;}
.wsbc{word-spacing:0.855000px;}
.ws7e{word-spacing:0.900000px;}
.wsb7{word-spacing:0.945000px;}
.ws4c{word-spacing:0.972000px;}
.ws1f{word-spacing:1.071000px;}
.ws87{word-spacing:1.080000px;}
.ws96{word-spacing:1.170000px;}
.ws76{word-spacing:1.188000px;}
.ws77{word-spacing:1.242000px;}
.wsbe{word-spacing:1.260000px;}
.wsae{word-spacing:1.350000px;}
.wsc0{word-spacing:1.404000px;}
.ws42{word-spacing:1.566000px;}
.ws75{word-spacing:1.620000px;}
.ws74{word-spacing:1.674000px;}
.ws89{word-spacing:1.680000px;}
.ws8a{word-spacing:1.782000px;}
.wsb9{word-spacing:1.935000px;}
.wsba{word-spacing:2.430000px;}
.ws8c{word-spacing:2.484000px;}
.ws8b{word-spacing:2.520000px;}
.wsac{word-spacing:2.565000px;}
.ws5b{word-spacing:3.960000px;}
._b{margin-left:-19.284163px;}
._15{margin-left:-13.680000px;}
._16{margin-left:-11.970000px;}
._13{margin-left:-10.215000px;}
._12{margin-left:-9.000000px;}
._a{margin-left:-7.757345px;}
._8{margin-left:-6.329935px;}
._5{margin-left:-4.900156px;}
._1{margin-left:-3.338400px;}
._0{margin-left:-1.776011px;}
._2{width:1.139994px;}
._4{width:2.519993px;}
._7{width:4.242587px;}
._11{width:5.826011px;}
._f{width:6.861011px;}
._e{width:7.875000px;}
._10{width:9.900000px;}
._d{width:12.285000px;}
._9{width:15.281992px;}
._17{width:16.515002px;}
._14{width:17.730002px;}
._3{width:43.532931px;}
._c{width:46.015284px;}
._6{width:47.545878px;}
.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: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;}
.y33{bottom:68.313899px;}
.y11d{bottom:68.551502px;}
.y167{bottom:68.909566px;}
.yd8{bottom:77.068811px;}
.yc4{bottom:77.802302px;}
.y7a{bottom:77.805303px;}
.yf7{bottom:78.552302px;}
.y1b4{bottom:81.555303px;}
.y166{bottom:81.655816px;}
.y32{bottom:83.307899px;}
.y11c{bottom:83.550001px;}
.yd7{bottom:92.067310px;}
.yc3{bottom:92.800801px;}
.y79{bottom:92.803802px;}
.yf6{bottom:93.550801px;}
.y165{bottom:94.402066px;}
.y1b3{bottom:96.553802px;}
.y31{bottom:98.307899px;}
.yd6{bottom:107.065809px;}
.y164{bottom:107.148317px;}
.yc2{bottom:107.799300px;}
.y78{bottom:107.802302px;}
.yf5{bottom:108.549300px;}
.y11b{bottom:110.831553px;}
.y1b2{bottom:111.552302px;}
.y30{bottom:113.313899px;}
.y163{bottom:119.894567px;}
.yd5{bottom:122.064308px;}
.yc1{bottom:122.797799px;}
.y77{bottom:122.800801px;}
.yf4{bottom:123.547799px;}
.y89{bottom:125.659950px;}
.y11a{bottom:125.830052px;}
.y1b1{bottom:126.550801px;}
.y2f{bottom:128.307899px;}
.y162{bottom:132.640817px;}
.yd4{bottom:137.062807px;}
.yc0{bottom:137.796298px;}
.y76{bottom:137.799300px;}
.yf3{bottom:138.546298px;}
.y88{bottom:140.658449px;}
.y119{bottom:140.828551px;}
.y1b0{bottom:141.549300px;}
.y161{bottom:145.387067px;}
.y2e{bottom:147.636898px;}
.yd3{bottom:152.061307px;}
.ybf{bottom:152.794798px;}
.y75{bottom:152.797799px;}
.yf2{bottom:153.544798px;}
.y87{bottom:155.656949px;}
.y118{bottom:155.827050px;}
.y1af{bottom:156.547799px;}
.y160{bottom:158.133317px;}
.yd2{bottom:167.059806px;}
.y74{bottom:167.796298px;}
.ybe{bottom:167.799300px;}
.yf1{bottom:168.546298px;}
.y86{bottom:170.655448px;}
.y117{bottom:170.825550px;}
.y15f{bottom:170.879567px;}
.y1ae{bottom:171.546298px;}
.yd1{bottom:182.058305px;}
.y2d{bottom:182.185812px;}
.y73{bottom:182.794798px;}
.ybd{bottom:182.797799px;}
.yf0{bottom:183.544798px;}
.y15e{bottom:183.625817px;}
.y85{bottom:185.653947px;}
.y116{bottom:185.824049px;}
.y1ad{bottom:186.544798px;}
.y15d{bottom:196.372067px;}
.yd0{bottom:197.056804px;}
.y2c{bottom:197.185812px;}
.ybc{bottom:197.796298px;}
.y72{bottom:197.797799px;}
.yef{bottom:198.544798px;}
.y84{bottom:200.652446px;}
.y115{bottom:200.834554px;}
.y1ac{bottom:201.543297px;}
.y15c{bottom:209.118317px;}
.ycf{bottom:212.055303px;}
.y2b{bottom:212.190314px;}
.ybb{bottom:212.794798px;}
.y71{bottom:212.796298px;}
.yee{bottom:213.544798px;}
.y83{bottom:215.650945px;}
.y114{bottom:215.833054px;}
.y1ab{bottom:216.543297px;}
.y15b{bottom:221.864568px;}
.yce{bottom:227.053802px;}
.y2a{bottom:227.188813px;}
.y70{bottom:227.794798px;}
.yba{bottom:227.805303px;}
.yed{bottom:228.546298px;}
.y82{bottom:230.649445px;}
.y113{bottom:230.831553px;}
.y15a{bottom:234.610818px;}
.ycd{bottom:242.052302px;}
.y29{bottom:242.187313px;}
.yb9{bottom:242.803802px;}
.y6f{bottom:242.811329px;}
.yec{bottom:243.544798px;}
.y81{bottom:245.647944px;}
.y112{bottom:245.830052px;}
.y159{bottom:247.357068px;}
.y1aa{bottom:249.790766px;}
.ycc{bottom:257.050801px;}
.y28{bottom:257.185812px;}
.yb8{bottom:257.802302px;}
.y6e{bottom:257.809829px;}
.yeb{bottom:258.544798px;}
.y158{bottom:260.103318px;}
.y80{bottom:260.646443px;}
.y111{bottom:260.828551px;}
.y1a9{bottom:262.537017px;}
.ycb{bottom:272.049300px;}
.y27{bottom:272.187313px;}
.yb7{bottom:272.800801px;}
.y6d{bottom:272.808328px;}
.y157{bottom:272.849568px;}
.yea{bottom:273.544798px;}
.y1a8{bottom:275.283267px;}
.y7f{bottom:275.644942px;}
.y110{bottom:275.827050px;}
.y156{bottom:285.595818px;}
.yca{bottom:287.047799px;}
.y26{bottom:287.185812px;}
.yb6{bottom:287.799300px;}
.y6c{bottom:287.806827px;}
.y1a7{bottom:288.029517px;}
.ye9{bottom:288.544798px;}
.y7e{bottom:290.643441px;}
.y10f{bottom:290.825550px;}
.y155{bottom:298.342068px;}
.y1a6{bottom:300.775767px;}
.yc9{bottom:302.046298px;}
.y25{bottom:302.187313px;}
.yb5{bottom:302.797799px;}
.y6b{bottom:302.805326px;}
.ye8{bottom:303.543297px;}
.y7d{bottom:305.641941px;}
.y10e{bottom:305.824049px;}
.y154{bottom:311.088318px;}
.y1a5{bottom:313.522017px;}
.yc8{bottom:317.044798px;}
.y24{bottom:317.185812px;}
.yb4{bottom:317.796298px;}
.y6a{bottom:317.803825px;}
.ye7{bottom:318.543297px;}
.y7c{bottom:320.640440px;}
.y10d{bottom:320.824049px;}
.y153{bottom:323.834568px;}
.y1a4{bottom:326.268267px;}
.yc7{bottom:332.043297px;}
.y23{bottom:332.185812px;}
.yb3{bottom:332.794798px;}
.y69{bottom:332.802325px;}
.y7b{bottom:335.638939px;}
.y10c{bottom:335.822548px;}
.y152{bottom:336.580819px;}
.y1a3{bottom:339.014517px;}
.y22{bottom:347.185812px;}
.yb2{bottom:347.794798px;}
.y68{bottom:347.800824px;}
.y151{bottom:349.327069px;}
.ye6{bottom:351.546298px;}
.y1a2{bottom:351.760767px;}
.y150{bottom:362.073319px;}
.y21{bottom:362.190314px;}
.yb1{bottom:362.794798px;}
.y67{bottom:362.799323px;}
.y10b{bottom:363.099580px;}
.y1a1{bottom:364.507018px;}
.yc6{bottom:365.044798px;}
.ye5{bottom:366.544798px;}
.y14f{bottom:374.819569px;}
.y20{bottom:377.188813px;}
.y1a0{bottom:377.253268px;}
.y66{bottom:377.797822px;}
.yb0{bottom:377.800824px;}
.y10a{bottom:378.098079px;}
.yc5{bottom:380.043297px;}
.ye4{bottom:381.543297px;}
.y14e{bottom:387.565819px;}
.y19f{bottom:389.999518px;}
.y1f{bottom:392.187313px;}
.y65{bottom:392.796321px;}
.yaf{bottom:392.799323px;}
.y109{bottom:393.096578px;}
.y14d{bottom:400.312069px;}
.y19e{bottom:402.745768px;}
.y1e{bottom:407.185812px;}
.y64{bottom:407.794821px;}
.yae{bottom:407.797822px;}
.y108{bottom:408.095078px;}
.y14c{bottom:413.058319px;}
.y19d{bottom:415.492018px;}
.y1d{bottom:422.185812px;}
.y63{bottom:422.794821px;}
.yad{bottom:422.796321px;}
.y14b{bottom:425.804569px;}
.y19c{bottom:428.238268px;}
.ye3{bottom:429.193948px;}
.y107{bottom:435.369131px;}
.y105{bottom:437.118449px;}
.y1c{bottom:437.229313px;}
.y62{bottom:437.794821px;}
.y14a{bottom:438.550819px;}
.y19b{bottom:440.984518px;}
.ye2{bottom:444.192447px;}
.y106{bottom:450.367630px;}
.y149{bottom:451.297070px;}
.y104{bottom:452.116948px;}
.y1b{bottom:452.227812px;}
.y61{bottom:452.793320px;}
.y19a{bottom:453.730768px;}
.ye1{bottom:459.190946px;}
.y148{bottom:464.043320px;}
.y199{bottom:466.477018px;}
.y103{bottom:467.115447px;}
.y1a{bottom:467.226311px;}
.y60{bottom:467.793320px;}
.ye0{bottom:474.189445px;}
.y147{bottom:476.793320px;}
.y198{bottom:479.223269px;}
.y102{bottom:482.113946px;}
.yac{bottom:485.806827px;}
.ydf{bottom:489.187945px;}
.y197{bottom:491.969519px;}
.y101{bottom:497.112445px;}
.yab{bottom:500.805326px;}
.y5f{bottom:500.808328px;}
.yde{bottom:504.186444px;}
.y196{bottom:504.715769px;}
.y146{bottom:509.796321px;}
.y127{bottom:511.872440px;}
.y100{bottom:512.110944px;}
.y19{bottom:514.476311px;}
.yaa{bottom:515.803825px;}
.y5e{bottom:515.806827px;}
.y195{bottom:517.462019px;}
.ydd{bottom:519.184943px;}
.y145{bottom:524.794821px;}
.y126{bottom:526.870939px;}
.yff{bottom:527.109444px;}
.y194{bottom:530.208269px;}
.ya9{bottom:530.802325px;}
.y5d{bottom:530.805326px;}
.y18{bottom:530.973311px;}
.ydc{bottom:534.183442px;}
.y144{bottom:539.793320px;}
.y125{bottom:541.869438px;}
.yfe{bottom:542.107943px;}
.y193{bottom:542.954519px;}
.ya8{bottom:545.800824px;}
.y5c{bottom:545.803825px;}
.y17{bottom:547.470311px;}
.ydb{bottom:549.181941px;}
.y192{bottom:555.700769px;}
.y124{bottom:556.867937px;}
.yfd{bottom:557.106442px;}
.ya7{bottom:560.799323px;}
.y5b{bottom:560.802325px;}
.y16{bottom:563.967311px;}
.yda{bottom:564.180441px;}
.y191{bottom:568.447019px;}
.y123{bottom:571.866437px;}
.yfc{bottom:572.104941px;}
.y143{bottom:572.818788px;}
.ya6{bottom:575.797822px;}
.y5a{bottom:575.800824px;}
.yd9{bottom:579.178940px;}
.y15{bottom:580.464311px;}
.y190{bottom:581.193269px;}
.y122{bottom:586.864936px;}
.yfb{bottom:587.103440px;}
.y142{bottom:587.817287px;}
.ya5{bottom:590.796321px;}
.y59{bottom:590.799323px;}
.y18f{bottom:593.939520px;}
.y14{bottom:596.961311px;}
.y121{bottom:601.863435px;}
.yfa{bottom:602.101940px;}
.y141{bottom:602.815786px;}
.ya4{bottom:605.794821px;}
.y58{bottom:605.797822px;}
.y18e{bottom:606.685770px;}
.y13{bottom:613.458311px;}
.y120{bottom:616.861934px;}
.yf9{bottom:617.100439px;}
.y140{bottom:617.814285px;}
.y18d{bottom:619.432020px;}
.y57{bottom:620.796321px;}
.ya3{bottom:620.808282px;}
.y12{bottom:629.955311px;}
.y11f{bottom:631.860433px;}
.yf8{bottom:632.098938px;}
.y18c{bottom:632.178270px;}
.y13f{bottom:632.812784px;}
.y56{bottom:635.794821px;}
.ya2{bottom:635.806781px;}
.y18b{bottom:644.924520px;}
.y11{bottom:646.452311px;}
.y11e{bottom:646.858932px;}
.y13e{bottom:647.811284px;}
.y55{bottom:650.799323px;}
.ya1{bottom:650.805280px;}
.y18a{bottom:657.670770px;}
.y13d{bottom:662.809783px;}
.y10{bottom:662.949311px;}
.y54{bottom:665.797822px;}
.ya0{bottom:665.803780px;}
.y189{bottom:670.417020px;}
.y13c{bottom:677.808282px;}
.yf{bottom:679.446311px;}
.y53{bottom:680.796321px;}
.y9f{bottom:680.802279px;}
.y188{bottom:683.163270px;}
.y13b{bottom:692.806781px;}
.y52{bottom:695.794821px;}
.y9e{bottom:695.800778px;}
.y187{bottom:695.909520px;}
.ye{bottom:695.943311px;}
.y13a{bottom:707.805280px;}
.y186{bottom:708.655771px;}
.y51{bottom:710.796321px;}
.y9d{bottom:710.799277px;}
.yd{bottom:712.440311px;}
.y185{bottom:721.402021px;}
.y139{bottom:722.803780px;}
.y50{bottom:725.794821px;}
.y9c{bottom:725.797776px;}
.yc{bottom:728.937311px;}
.y184{bottom:734.148271px;}
.y138{bottom:737.802279px;}
.y4f{bottom:740.796276px;}
.yb{bottom:745.434311px;}
.y183{bottom:746.894521px;}
.y137{bottom:752.800778px;}
.y4e{bottom:755.794775px;}
.y36{bottom:757.145396px;}
.y182{bottom:759.640771px;}
.y136{bottom:767.799277px;}
.y4d{bottom:770.793274px;}
.y9b{bottom:770.794775px;}
.y181{bottom:772.387021px;}
.y9{bottom:775.434265px;}
.y35{bottom:778.144646px;}
.ya{bottom:780.534485px;}
.y135{bottom:782.797776px;}
.y180{bottom:785.133271px;}
.y4c{bottom:785.793274px;}
.y9a{bottom:785.796276px;}
.y1c6{bottom:786.556781px;}
.y7{bottom:793.434265px;}
.y134{bottom:797.796276px;}
.y17f{bottom:797.879521px;}
.y8{bottom:798.534485px;}
.y34{bottom:799.143895px;}
.y99{bottom:800.794775px;}
.y1c5{bottom:801.555280px;}
.y17e{bottom:810.625771px;}
.y133{bottom:812.794775px;}
.y98{bottom:815.794775px;}
.y1c4{bottom:816.553780px;}
.y4b{bottom:818.805280px;}
.y17d{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y132{bottom:827.793274px;}
.y97{bottom:830.794775px;}
.y1c3{bottom:831.552279px;}
.y4a{bottom:833.803780px;}
.y17c{bottom:836.118272px;}
.y96{bottom:845.796276px;}
.y1c2{bottom:846.550778px;}
.y49{bottom:848.802279px;}
.y17b{bottom:848.864522px;}
.y95{bottom:860.794775px;}
.y131{bottom:860.800778px;}
.y1c1{bottom:861.549277px;}
.y17a{bottom:861.610772px;}
.y48{bottom:863.800778px;}
.y5{bottom:871.428264px;}
.y179{bottom:874.357022px;}
.y94{bottom:875.793274px;}
.y130{bottom:875.799277px;}
.y1c0{bottom:876.547776px;}
.y47{bottom:878.799277px;}
.y178{bottom:887.103272px;}
.y12f{bottom:890.797776px;}
.y1bf{bottom:891.546276px;}
.y46{bottom:893.797776px;}
.y177{bottom:899.849522px;}
.y12e{bottom:905.796276px;}
.y1be{bottom:906.544775px;}
.y45{bottom:908.796276px;}
.y93{bottom:908.805280px;}
.y176{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y12d{bottom:920.794775px;}
.y1bd{bottom:921.543274px;}
.y44{bottom:923.794775px;}
.y92{bottom:923.803780px;}
.y175{bottom:925.342022px;}
.y37{bottom:926.409576px;}
.y12c{bottom:935.793274px;}
.y174{bottom:938.088273px;}
.y43{bottom:938.794775px;}
.y91{bottom:938.802279px;}
.y1bc{bottom:943.297776px;}
.y173{bottom:950.834523px;}
.y42{bottom:953.794775px;}
.y90{bottom:953.800778px;}
.y1bb{bottom:958.296276px;}
.y172{bottom:963.580773px;}
.y41{bottom:968.794775px;}
.y8f{bottom:968.799277px;}
.y12b{bottom:968.805280px;}
.y171{bottom:976.327023px;}
.y1ba{bottom:980.044775px;}
.y8e{bottom:983.797776px;}
.y40{bottom:983.800778px;}
.y12a{bottom:983.803780px;}
.y170{bottom:989.073273px;}
.y8d{bottom:998.796276px;}
.y3f{bottom:998.799277px;}
.y129{bottom:998.802279px;}
.y1b9{bottom:1001.793274px;}
.y16f{bottom:1001.819523px;}
.y8c{bottom:1013.794775px;}
.y3e{bottom:1013.797776px;}
.y128{bottom:1013.800778px;}
.y16e{bottom:1014.565773px;}
.y1b8{bottom:1016.793274px;}
.y16d{bottom:1027.312023px;}
.y3d{bottom:1028.796276px;}
.y8b{bottom:1028.799277px;}
.y16c{bottom:1040.058273px;}
.y3c{bottom:1043.794775px;}
.y1b7{bottom:1043.796276px;}
.y8a{bottom:1043.797776px;}
.y16b{bottom:1052.804524px;}
.y1b6{bottom:1058.794775px;}
.y3b{bottom:1058.796276px;}
.y16a{bottom:1065.550774px;}
.y1b5{bottom:1073.793274px;}
.y3a{bottom:1073.794775px;}
.y169{bottom:1078.297024px;}
.y39{bottom:1088.793274px;}
.y168{bottom:1091.043274px;}
.y38{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hc{height:23.842749px;}
.h6{height:28.050293px;}
.h11{height:35.394000px;}
.hd{height:36.669000px;}
.h10{height:36.681152px;}
.h7{height:38.826000px;}
.h8{height:38.838867px;}
.he{height:41.134746px;}
.hf{height:41.158746px;}
.h2{height:43.140000px;}
.h4{height:44.233154px;}
.h17{height:44.505000px;}
.h19{height:45.090000px;}
.h3{height:45.744000px;}
.h18{height:46.080000px;}
.h13{height:47.454000px;}
.h9{height:53.406000px;}
.h16{height:54.048151px;}
.h15{height:54.095994px;}
.hb{height:54.101997px;}
.ha{height:54.108000px;}
.h14{height:55.296000px;}
.h12{height:77.652000px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:14.068620px;}
.x2{left:61.191450px;}
.xb{left:140.952747px;}
.x4{left:233.456406px;}
.x9{left:251.445164px;}
.xe{left:300.594749px;}
.x7{left:338.903709px;}
.x5{left:418.406570px;}
.x8{left:492.320572px;}
.x3{left:584.586594px;}
.x6{left:804.415466px;}
.xd{left:816.003571px;}
.xc{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.134115pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.159981pt;}
.v2{vertical-align:18.134115pt;}
.ls59{letter-spacing:-3.072000pt;}
.ls6b{letter-spacing:-1.200000pt;}
.ls26{letter-spacing:-0.864000pt;}
.ls84{letter-spacing:-0.840000pt;}
.ls57{letter-spacing:-0.768000pt;}
.ls89{letter-spacing:-0.720000pt;}
.ls85{letter-spacing:-0.680000pt;}
.ls83{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.528000pt;}
.ls73{letter-spacing:-0.520000pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls6a{letter-spacing:-0.440000pt;}
.ls32{letter-spacing:-0.432000pt;}
.ls74{letter-spacing:-0.400000pt;}
.ls27{letter-spacing:-0.384000pt;}
.ls6c{letter-spacing:-0.280000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls86{letter-spacing:-0.200000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.136000pt;}
.ls6f{letter-spacing:-0.120000pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.093600pt;}
.ls72{letter-spacing:-0.080000pt;}
.ls30{letter-spacing:-0.062400pt;}
.ls28{letter-spacing:-0.048000pt;}
.ls6e{letter-spacing:-0.040000pt;}
.ls2c{letter-spacing:-0.031200pt;}
.ls11{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.005860pt;}
.ls4{letter-spacing:0.011917pt;}
.ls2{letter-spacing:0.012242pt;}
.ls3{letter-spacing:0.012405pt;}
.ls4e{letter-spacing:0.017579pt;}
.ls4d{letter-spacing:0.024000pt;}
.ls7d{letter-spacing:0.040000pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.052391pt;}
.ls5{letter-spacing:0.062400pt;}
.lsb{letter-spacing:0.078850pt;}
.ls67{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.093600pt;}
.ls7{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.100804pt;}
.ls45{letter-spacing:0.104330pt;}
.ls62{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.124798pt;}
.ls25{letter-spacing:0.124800pt;}
.ls4a{letter-spacing:0.138103pt;}
.ls44{letter-spacing:0.143999pt;}
.ls17{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.153945pt;}
.ls9{letter-spacing:0.155999pt;}
.ls8{letter-spacing:0.156000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.182399pt;}
.ls3e{letter-spacing:0.187200pt;}
.ls4b{letter-spacing:0.191977pt;}
.ls21{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.193604pt;}
.ls78{letter-spacing:0.200000pt;}
.lsa{letter-spacing:0.200641pt;}
.ls39{letter-spacing:0.202800pt;}
.ls3a{letter-spacing:0.218400pt;}
.ls48{letter-spacing:0.220799pt;}
.ls49{letter-spacing:0.220805pt;}
.lsc{letter-spacing:0.240000pt;}
.ls40{letter-spacing:0.249600pt;}
.ls42{letter-spacing:0.264000pt;}
.ls3f{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.272000pt;}
.ls88{letter-spacing:0.280000pt;}
.ls3b{letter-spacing:0.280799pt;}
.ls3c{letter-spacing:0.280800pt;}
.ls5e{letter-spacing:0.287999pt;}
.ls14{letter-spacing:0.288000pt;}
.ls41{letter-spacing:0.312000pt;}
.ls7f{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.320801pt;}
.ls22{letter-spacing:0.335999pt;}
.lsd{letter-spacing:0.336000pt;}
.ls64{letter-spacing:0.360000pt;}
.ls2e{letter-spacing:0.374400pt;}
.ls24{letter-spacing:0.384000pt;}
.ls5f{letter-spacing:0.384001pt;}
.ls65{letter-spacing:0.400000pt;}
.ls23{letter-spacing:0.405601pt;}
.ls10{letter-spacing:0.408000pt;}
.ls76{letter-spacing:0.420000pt;}
.ls37{letter-spacing:0.432000pt;}
.ls82{letter-spacing:0.440000pt;}
.ls2a{letter-spacing:0.468000pt;}
.ls12{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.480279pt;}
.ls34{letter-spacing:0.484841pt;}
.ls63{letter-spacing:0.520000pt;}
.ls5b{letter-spacing:0.527999pt;}
.ls15{letter-spacing:0.528000pt;}
.ls2b{letter-spacing:0.533333pt;}
.ls75{letter-spacing:0.560000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls55{letter-spacing:0.580801pt;}
.ls71{letter-spacing:0.600000pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls70{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.672000pt;}
.ls7e{letter-spacing:0.680000pt;}
.ls29{letter-spacing:0.720000pt;}
.ls50{letter-spacing:0.737061pt;}
.ls5c{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.760000pt;}
.ls5d{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.770667pt;}
.ls68{letter-spacing:0.816000pt;}
.ls66{letter-spacing:0.831962pt;}
.ls79{letter-spacing:0.840000pt;}
.ls8a{letter-spacing:0.864000pt;}
.ls80{letter-spacing:0.892813pt;}
.ls81{letter-spacing:0.912000pt;}
.ls87{letter-spacing:1.000000pt;}
.ls4f{letter-spacing:1.008000pt;}
.ls7b{letter-spacing:1.040000pt;}
.ls51{letter-spacing:1.056000pt;}
.ls69{letter-spacing:1.066667pt;}
.ls53{letter-spacing:1.151999pt;}
.ls5a{letter-spacing:1.248000pt;}
.ls77{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.324788pt;}
.ls60{letter-spacing:1.333333pt;}
.ls7a{letter-spacing:1.339989pt;}
.ls61{letter-spacing:1.344000pt;}
.ls36{letter-spacing:1.813333pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7c{letter-spacing:2.760000pt;}
.ls8b{letter-spacing:5.440000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws22{word-spacing:-13.066667pt;}
.ws6f{word-spacing:-12.240000pt;}
.ws7f{word-spacing:-12.085333pt;}
.ws70{word-spacing:-12.048000pt;}
.ws2b{word-spacing:-12.000000pt;}
.ws71{word-spacing:-11.616000pt;}
.ws53{word-spacing:-11.568000pt;}
.ws2c{word-spacing:-11.520000pt;}
.ws72{word-spacing:-11.424000pt;}
.ws73{word-spacing:-11.376000pt;}
.ws50{word-spacing:-11.280000pt;}
.ws6d{word-spacing:-11.232000pt;}
.ws2f{word-spacing:-11.184000pt;}
.ws69{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws31{word-spacing:-11.088000pt;}
.ws30{word-spacing:-11.040000pt;}
.ws6e{word-spacing:-11.016000pt;}
.ws32{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws29{word-spacing:-10.944000pt;}
.ws25{word-spacing:-10.896000pt;}
.ws26{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws33{word-spacing:-10.800000pt;}
.ws6b{word-spacing:-10.512000pt;}
.ws4e{word-spacing:-10.368000pt;}
.ws6a{word-spacing:-10.224000pt;}
.ws28{word-spacing:-10.128000pt;}
.wsa4{word-spacing:-10.120000pt;}
.wsa2{word-spacing:-9.560000pt;}
.ws83{word-spacing:-9.480000pt;}
.wsa5{word-spacing:-9.440000pt;}
.wsa0{word-spacing:-9.320000pt;}
.wsa1{word-spacing:-9.280000pt;}
.wsbd{word-spacing:-9.240000pt;}
.ws82{word-spacing:-9.160000pt;}
.ws80{word-spacing:-9.080000pt;}
.ws9{word-spacing:-9.066667pt;}
.ws85{word-spacing:-9.000000pt;}
.ws81{word-spacing:-8.880000pt;}
.ws86{word-spacing:-8.760000pt;}
.ws84{word-spacing:-8.680000pt;}
.wsb0{word-spacing:-8.600000pt;}
.ws9d{word-spacing:-8.520000pt;}
.wsa3{word-spacing:-8.480000pt;}
.wsa6{word-spacing:-8.440000pt;}
.ws6c{word-spacing:-7.920000pt;}
.ws27{word-spacing:-7.800000pt;}
.ws2a{word-spacing:-7.550400pt;}
.ws2e{word-spacing:-7.456800pt;}
.ws57{word-spacing:-7.394400pt;}
.ws56{word-spacing:-7.363200pt;}
.ws54{word-spacing:-7.332000pt;}
.ws55{word-spacing:-7.300800pt;}
.ws51{word-spacing:-7.269600pt;}
.ws6{word-spacing:-7.238400pt;}
.ws23{word-spacing:-7.207200pt;}
.ws24{word-spacing:-7.176000pt;}
.ws52{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.082400pt;}
.ws2d{word-spacing:-7.051200pt;}
.ws34{word-spacing:-7.020000pt;}
.ws7{word-spacing:-6.988800pt;}
.ws8{word-spacing:-5.893333pt;}
.wsc1{word-spacing:-5.440000pt;}
.ws68{word-spacing:-4.896000pt;}
.wsc2{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.wsc{word-spacing:-2.912000pt;}
.wsd{word-spacing:-2.133333pt;}
.ws58{word-spacing:-1.680000pt;}
.ws66{word-spacing:-1.653333pt;}
.ws16{word-spacing:-1.632000pt;}
.ws78{word-spacing:-1.488000pt;}
.ws88{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.386667pt;}
.ws1c{word-spacing:-1.360000pt;}
.ws60{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.296000pt;}
.ws9f{word-spacing:-1.240000pt;}
.ws3c{word-spacing:-1.232000pt;}
.ws65{word-spacing:-1.200000pt;}
.ws1a{word-spacing:-1.152000pt;}
.ws21{word-spacing:-1.133333pt;}
.wsf{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws9e{word-spacing:-1.080000pt;}
.ws3a{word-spacing:-1.056000pt;}
.ws95{word-spacing:-1.040000pt;}
.ws10{word-spacing:-1.008000pt;}
.ws94{word-spacing:-1.000000pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws8e{word-spacing:-0.920000pt;}
.ws4a{word-spacing:-0.912000pt;}
.wsb4{word-spacing:-0.880000pt;}
.wsb{word-spacing:-0.853333pt;}
.wsb3{word-spacing:-0.840000pt;}
.ws48{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.770667pt;}
.ws5a{word-spacing:-0.768000pt;}
.ws91{word-spacing:-0.760000pt;}
.ws37{word-spacing:-0.720000pt;}
.ws7a{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.672000pt;}
.wsa7{word-spacing:-0.640000pt;}
.ws39{word-spacing:-0.624000pt;}
.ws97{word-spacing:-0.600000pt;}
.ws17{word-spacing:-0.576000pt;}
.ws61{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.wsb1{word-spacing:-0.520000pt;}
.ws18{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.440000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws20{word-spacing:-0.408000pt;}
.wsaa{word-spacing:-0.400000pt;}
.ws4b{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.374400pt;}
.ws93{word-spacing:-0.360000pt;}
.ws19{word-spacing:-0.336000pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws63{word-spacing:-0.280800pt;}
.wsaf{word-spacing:-0.280000pt;}
.ws1d{word-spacing:-0.272000pt;}
.ws44{word-spacing:-0.240000pt;}
.ws62{word-spacing:-0.218400pt;}
.wsad{word-spacing:-0.200000pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws5c{word-spacing:-0.187200pt;}
.wsbb{word-spacing:-0.160000pt;}
.ws5f{word-spacing:-0.156000pt;}
.ws64{word-spacing:-0.144000pt;}
.ws38{word-spacing:-0.124800pt;}
.ws35{word-spacing:-0.096000pt;}
.wsb8{word-spacing:-0.080000pt;}
.ws43{word-spacing:-0.048000pt;}
.wsb5{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws92{word-spacing:0.040000pt;}
.ws5e{word-spacing:0.048000pt;}
.ws98{word-spacing:0.080000pt;}
.ws3f{word-spacing:0.093600pt;}
.ws3e{word-spacing:0.096000pt;}
.wsa8{word-spacing:0.120000pt;}
.ws3b{word-spacing:0.144000pt;}
.ws46{word-spacing:0.160000pt;}
.ws49{word-spacing:0.192000pt;}
.ws9b{word-spacing:0.200000pt;}
.ws14{word-spacing:0.240000pt;}
.ws90{word-spacing:0.280000pt;}
.ws79{word-spacing:0.288000pt;}
.wsb2{word-spacing:0.320000pt;}
.ws7d{word-spacing:0.336000pt;}
.wsab{word-spacing:0.360000pt;}
.ws40{word-spacing:0.384000pt;}
.wsb6{word-spacing:0.400000pt;}
.ws4f{word-spacing:0.432000pt;}
.ws8f{word-spacing:0.440000pt;}
.ws67{word-spacing:0.480000pt;}
.ws99{word-spacing:0.520000pt;}
.ws59{word-spacing:0.528000pt;}
.wsa9{word-spacing:0.560000pt;}
.ws9a{word-spacing:0.600000pt;}
.ws11{word-spacing:0.624000pt;}
.ws9c{word-spacing:0.640000pt;}
.ws41{word-spacing:0.672000pt;}
.wsbf{word-spacing:0.680000pt;}
.ws7c{word-spacing:0.720000pt;}
.ws7b{word-spacing:0.746667pt;}
.wsbc{word-spacing:0.760000pt;}
.ws7e{word-spacing:0.800000pt;}
.wsb7{word-spacing:0.840000pt;}
.ws4c{word-spacing:0.864000pt;}
.ws1f{word-spacing:0.952000pt;}
.ws87{word-spacing:0.960000pt;}
.ws96{word-spacing:1.040000pt;}
.ws76{word-spacing:1.056000pt;}
.ws77{word-spacing:1.104000pt;}
.wsbe{word-spacing:1.120000pt;}
.wsae{word-spacing:1.200000pt;}
.wsc0{word-spacing:1.248000pt;}
.ws42{word-spacing:1.392000pt;}
.ws75{word-spacing:1.440000pt;}
.ws74{word-spacing:1.488000pt;}
.ws89{word-spacing:1.493333pt;}
.ws8a{word-spacing:1.584000pt;}
.wsb9{word-spacing:1.720000pt;}
.wsba{word-spacing:2.160000pt;}
.ws8c{word-spacing:2.208000pt;}
.ws8b{word-spacing:2.240000pt;}
.wsac{word-spacing:2.280000pt;}
.ws5b{word-spacing:3.520000pt;}
._b{margin-left:-17.141479pt;}
._15{margin-left:-12.160000pt;}
._16{margin-left:-10.640000pt;}
._13{margin-left:-9.080000pt;}
._12{margin-left:-8.000000pt;}
._a{margin-left:-6.895418pt;}
._8{margin-left:-5.626609pt;}
._5{margin-left:-4.355694pt;}
._1{margin-left:-2.967467pt;}
._0{margin-left:-1.578676pt;}
._2{width:1.013328pt;}
._4{width:2.239994pt;}
._7{width:3.771188pt;}
._11{width:5.178676pt;}
._f{width:6.098677pt;}
._e{width:7.000000pt;}
._10{width:8.800000pt;}
._d{width:10.920000pt;}
._9{width:13.583993pt;}
._17{width:14.680002pt;}
._14{width:15.760002pt;}
._3{width:38.695939pt;}
._c{width:40.902475pt;}
._6{width:42.263003pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y33{bottom:60.723466pt;}
.y11d{bottom:60.934668pt;}
.y167{bottom:61.252948pt;}
.yd8{bottom:68.505609pt;}
.yc4{bottom:69.157601pt;}
.y7a{bottom:69.160270pt;}
.yf7{bottom:69.824268pt;}
.y1b4{bottom:72.493603pt;}
.y166{bottom:72.582948pt;}
.y32{bottom:74.051466pt;}
.y11c{bottom:74.266668pt;}
.yd7{bottom:81.837609pt;}
.yc3{bottom:82.489601pt;}
.y79{bottom:82.492269pt;}
.yf6{bottom:83.156267pt;}
.y165{bottom:83.912948pt;}
.y1b3{bottom:85.825602pt;}
.y31{bottom:87.384799pt;}
.yd6{bottom:95.169608pt;}
.y164{bottom:95.242948pt;}
.yc2{bottom:95.821600pt;}
.y78{bottom:95.824268pt;}
.yf5{bottom:96.488267pt;}
.y11b{bottom:98.516936pt;}
.y1b2{bottom:99.157601pt;}
.y30{bottom:100.723466pt;}
.y163{bottom:106.572948pt;}
.yd5{bottom:108.501607pt;}
.yc1{bottom:109.153599pt;}
.y77{bottom:109.156267pt;}
.yf4{bottom:109.820266pt;}
.y89{bottom:111.697734pt;}
.y11a{bottom:111.848935pt;}
.y1b1{bottom:112.489601pt;}
.y2f{bottom:114.051466pt;}
.y162{bottom:117.902948pt;}
.yd4{bottom:121.833607pt;}
.yc0{bottom:122.485599pt;}
.y76{bottom:122.488267pt;}
.yf3{bottom:123.152265pt;}
.y88{bottom:125.029733pt;}
.y119{bottom:125.180934pt;}
.y1b0{bottom:125.821600pt;}
.y161{bottom:129.232948pt;}
.y2e{bottom:131.232798pt;}
.yd3{bottom:135.165606pt;}
.ybf{bottom:135.817598pt;}
.y75{bottom:135.820266pt;}
.yf2{bottom:136.484265pt;}
.y87{bottom:138.361732pt;}
.y118{bottom:138.512934pt;}
.y1af{bottom:139.153599pt;}
.y160{bottom:140.562948pt;}
.yd2{bottom:148.497605pt;}
.y74{bottom:149.152265pt;}
.ybe{bottom:149.154933pt;}
.yf1{bottom:149.818932pt;}
.y86{bottom:151.693731pt;}
.y117{bottom:151.844933pt;}
.y15f{bottom:151.892949pt;}
.y1ae{bottom:152.485599pt;}
.yd1{bottom:161.829604pt;}
.y2d{bottom:161.942944pt;}
.y73{bottom:162.484265pt;}
.ybd{bottom:162.486933pt;}
.yf0{bottom:163.150931pt;}
.y15e{bottom:163.222949pt;}
.y85{bottom:165.025731pt;}
.y116{bottom:165.176932pt;}
.y1ad{bottom:165.817598pt;}
.y15d{bottom:174.552949pt;}
.yd0{bottom:175.161604pt;}
.y2c{bottom:175.276277pt;}
.ybc{bottom:175.818932pt;}
.y72{bottom:175.820266pt;}
.yef{bottom:176.484265pt;}
.y84{bottom:178.357730pt;}
.y115{bottom:178.519604pt;}
.y1ac{bottom:179.149597pt;}
.y15c{bottom:185.882949pt;}
.ycf{bottom:188.493603pt;}
.y2b{bottom:188.613613pt;}
.ybb{bottom:189.150931pt;}
.y71{bottom:189.152265pt;}
.yee{bottom:189.817598pt;}
.y83{bottom:191.689729pt;}
.y114{bottom:191.851603pt;}
.y1ab{bottom:192.482930pt;}
.y15b{bottom:197.212949pt;}
.yce{bottom:201.825602pt;}
.y2a{bottom:201.945612pt;}
.y70{bottom:202.484265pt;}
.yba{bottom:202.493603pt;}
.yed{bottom:203.152265pt;}
.y82{bottom:205.021729pt;}
.y113{bottom:205.183602pt;}
.y15a{bottom:208.542949pt;}
.ycd{bottom:215.157601pt;}
.y29{bottom:215.277611pt;}
.yb9{bottom:215.825602pt;}
.y6f{bottom:215.832293pt;}
.yec{bottom:216.484265pt;}
.y81{bottom:218.353728pt;}
.y112{bottom:218.515602pt;}
.y159{bottom:219.872949pt;}
.y1aa{bottom:222.036237pt;}
.ycc{bottom:228.489601pt;}
.y28{bottom:228.609610pt;}
.yb8{bottom:229.157601pt;}
.y6e{bottom:229.164292pt;}
.yeb{bottom:229.817598pt;}
.y158{bottom:231.202949pt;}
.y80{bottom:231.685727pt;}
.y111{bottom:231.847601pt;}
.y1a9{bottom:233.366237pt;}
.ycb{bottom:241.821600pt;}
.y27{bottom:241.944278pt;}
.yb7{bottom:242.489601pt;}
.y6d{bottom:242.496291pt;}
.y157{bottom:242.532949pt;}
.yea{bottom:243.150931pt;}
.y1a8{bottom:244.696237pt;}
.y7f{bottom:245.017726pt;}
.y110{bottom:245.179600pt;}
.y156{bottom:253.862949pt;}
.yca{bottom:255.153599pt;}
.y26{bottom:255.276277pt;}
.yb6{bottom:255.821600pt;}
.y6c{bottom:255.828291pt;}
.y1a7{bottom:256.026237pt;}
.ye9{bottom:256.484265pt;}
.y7e{bottom:258.349726pt;}
.y10f{bottom:258.511600pt;}
.y155{bottom:265.192950pt;}
.y1a6{bottom:267.356237pt;}
.yc9{bottom:268.485599pt;}
.y25{bottom:268.610944pt;}
.yb5{bottom:269.153599pt;}
.y6b{bottom:269.160290pt;}
.ye8{bottom:269.816264pt;}
.y7d{bottom:271.681725pt;}
.y10e{bottom:271.843599pt;}
.y154{bottom:276.522950pt;}
.y1a5{bottom:278.686237pt;}
.yc8{bottom:281.817598pt;}
.y24{bottom:281.942944pt;}
.yb4{bottom:282.485599pt;}
.y6a{bottom:282.492289pt;}
.ye7{bottom:283.149597pt;}
.y7c{bottom:285.013724pt;}
.y10d{bottom:285.176932pt;}
.y153{bottom:287.852950pt;}
.y1a4{bottom:290.016237pt;}
.yc7{bottom:295.149597pt;}
.y23{bottom:295.276277pt;}
.yb3{bottom:295.817598pt;}
.y69{bottom:295.824288pt;}
.y7b{bottom:298.345723pt;}
.y10c{bottom:298.508931pt;}
.y152{bottom:299.182950pt;}
.y1a3{bottom:301.346238pt;}
.y22{bottom:308.609610pt;}
.yb2{bottom:309.150931pt;}
.y68{bottom:309.156288pt;}
.y151{bottom:310.512950pt;}
.ye6{bottom:312.485599pt;}
.y1a2{bottom:312.676238pt;}
.y150{bottom:321.842950pt;}
.y21{bottom:321.946946pt;}
.yb1{bottom:322.484265pt;}
.y67{bottom:322.488287pt;}
.y10b{bottom:322.755182pt;}
.y1a1{bottom:324.006238pt;}
.yc6{bottom:324.484265pt;}
.ye5{bottom:325.817598pt;}
.y14f{bottom:333.172950pt;}
.y20{bottom:335.278945pt;}
.y1a0{bottom:335.336238pt;}
.y66{bottom:335.820286pt;}
.yb0{bottom:335.822954pt;}
.y10a{bottom:336.087181pt;}
.yc5{bottom:337.816264pt;}
.ye4{bottom:339.149597pt;}
.y14e{bottom:344.502950pt;}
.y19f{bottom:346.666238pt;}
.y1f{bottom:348.610944pt;}
.y65{bottom:349.152286pt;}
.yaf{bottom:349.154954pt;}
.y109{bottom:349.419181pt;}
.y14d{bottom:355.832950pt;}
.y19e{bottom:357.996238pt;}
.y1e{bottom:361.942944pt;}
.y64{bottom:362.484285pt;}
.yae{bottom:362.486953pt;}
.y108{bottom:362.751180pt;}
.y14c{bottom:367.162950pt;}
.y19d{bottom:369.326238pt;}
.y1d{bottom:375.276277pt;}
.y63{bottom:375.817618pt;}
.yad{bottom:375.818952pt;}
.y14b{bottom:378.492951pt;}
.y19c{bottom:380.656238pt;}
.ye3{bottom:381.505731pt;}
.y107{bottom:386.994783pt;}
.y105{bottom:388.549732pt;}
.y1c{bottom:388.648278pt;}
.y62{bottom:389.150952pt;}
.y14a{bottom:389.822951pt;}
.y19b{bottom:391.986238pt;}
.ye2{bottom:394.837731pt;}
.y106{bottom:400.326782pt;}
.y149{bottom:401.152951pt;}
.y104{bottom:401.881731pt;}
.y1b{bottom:401.980277pt;}
.y61{bottom:402.482951pt;}
.y19a{bottom:403.316238pt;}
.ye1{bottom:408.169730pt;}
.y148{bottom:412.482951pt;}
.y199{bottom:414.646239pt;}
.y103{bottom:415.213731pt;}
.y1a{bottom:415.312276pt;}
.y60{bottom:415.816284pt;}
.ye0{bottom:421.501729pt;}
.y147{bottom:423.816284pt;}
.y198{bottom:425.976239pt;}
.y102{bottom:428.545730pt;}
.yac{bottom:431.828291pt;}
.ydf{bottom:434.833729pt;}
.y197{bottom:437.306239pt;}
.y101{bottom:441.877729pt;}
.yab{bottom:445.160290pt;}
.y5f{bottom:445.162958pt;}
.yde{bottom:448.165728pt;}
.y196{bottom:448.636239pt;}
.y146{bottom:453.152286pt;}
.y127{bottom:454.997724pt;}
.y100{bottom:455.209728pt;}
.y19{bottom:457.312276pt;}
.yaa{bottom:458.492289pt;}
.y5e{bottom:458.494957pt;}
.y195{bottom:459.966239pt;}
.ydd{bottom:461.497727pt;}
.y145{bottom:466.484285pt;}
.y126{bottom:468.329724pt;}
.yff{bottom:468.541728pt;}
.y194{bottom:471.296239pt;}
.ya9{bottom:471.824288pt;}
.y5d{bottom:471.826957pt;}
.y18{bottom:471.976276pt;}
.ydc{bottom:474.829726pt;}
.y144{bottom:479.816284pt;}
.y125{bottom:481.661723pt;}
.yfe{bottom:481.873727pt;}
.y193{bottom:482.626239pt;}
.ya8{bottom:485.156288pt;}
.y5c{bottom:485.158956pt;}
.y17{bottom:486.640276pt;}
.ydb{bottom:488.161726pt;}
.y192{bottom:493.956239pt;}
.y124{bottom:494.993722pt;}
.yfd{bottom:495.205726pt;}
.ya7{bottom:498.488287pt;}
.y5b{bottom:498.490955pt;}
.y16{bottom:501.304276pt;}
.yda{bottom:501.493725pt;}
.y191{bottom:505.286239pt;}
.y123{bottom:508.325721pt;}
.yfc{bottom:508.537726pt;}
.y143{bottom:509.172256pt;}
.ya6{bottom:511.820286pt;}
.y5a{bottom:511.822954pt;}
.yd9{bottom:514.825724pt;}
.y15{bottom:515.968276pt;}
.y190{bottom:516.616239pt;}
.y122{bottom:521.657721pt;}
.yfb{bottom:521.869725pt;}
.y142{bottom:522.504255pt;}
.ya5{bottom:525.152286pt;}
.y59{bottom:525.154954pt;}
.y18f{bottom:527.946240pt;}
.y14{bottom:530.632276pt;}
.y121{bottom:534.989720pt;}
.yfa{bottom:535.201724pt;}
.y141{bottom:535.836254pt;}
.ya4{bottom:538.484285pt;}
.y58{bottom:538.486953pt;}
.y18e{bottom:539.276240pt;}
.y13{bottom:545.296276pt;}
.y120{bottom:548.321719pt;}
.yf9{bottom:548.533723pt;}
.y140{bottom:549.168254pt;}
.y18d{bottom:550.606240pt;}
.y57{bottom:551.818952pt;}
.ya3{bottom:551.829584pt;}
.y12{bottom:559.960276pt;}
.y11f{bottom:561.653718pt;}
.yf8{bottom:561.865723pt;}
.y18c{bottom:561.936240pt;}
.y13f{bottom:562.500253pt;}
.y56{bottom:565.150952pt;}
.ya2{bottom:565.161583pt;}
.y18b{bottom:573.266240pt;}
.y11{bottom:574.624276pt;}
.y11e{bottom:574.985718pt;}
.y13e{bottom:575.832252pt;}
.y55{bottom:578.488287pt;}
.ya1{bottom:578.493583pt;}
.y18a{bottom:584.596240pt;}
.y13d{bottom:589.164251pt;}
.y10{bottom:589.288276pt;}
.y54{bottom:591.820286pt;}
.ya0{bottom:591.825582pt;}
.y189{bottom:595.926240pt;}
.y13c{bottom:602.496251pt;}
.yf{bottom:603.952276pt;}
.y53{bottom:605.152286pt;}
.y9f{bottom:605.157581pt;}
.y188{bottom:607.256240pt;}
.y13b{bottom:615.828250pt;}
.y52{bottom:618.484285pt;}
.y9e{bottom:618.489580pt;}
.y187{bottom:618.586240pt;}
.ye{bottom:618.616276pt;}
.y13a{bottom:629.160249pt;}
.y186{bottom:629.916240pt;}
.y51{bottom:631.818952pt;}
.y9d{bottom:631.821580pt;}
.yd{bottom:633.280276pt;}
.y185{bottom:641.246241pt;}
.y139{bottom:642.492249pt;}
.y50{bottom:645.150952pt;}
.y9c{bottom:645.153579pt;}
.yc{bottom:647.944276pt;}
.y184{bottom:652.576241pt;}
.y138{bottom:655.824248pt;}
.y4f{bottom:658.485578pt;}
.yb{bottom:662.608276pt;}
.y183{bottom:663.906241pt;}
.y137{bottom:669.156247pt;}
.y4e{bottom:671.817578pt;}
.y36{bottom:673.018130pt;}
.y182{bottom:675.236241pt;}
.y136{bottom:682.488246pt;}
.y4d{bottom:685.149577pt;}
.y9b{bottom:685.150911pt;}
.y181{bottom:686.566241pt;}
.y9{bottom:689.274902pt;}
.y35{bottom:691.684130pt;}
.ya{bottom:693.808431pt;}
.y135{bottom:695.820246pt;}
.y180{bottom:697.896241pt;}
.y4c{bottom:698.482910pt;}
.y9a{bottom:698.485578pt;}
.y1c6{bottom:699.161583pt;}
.y7{bottom:705.274902pt;}
.y134{bottom:709.152245pt;}
.y17f{bottom:709.226241pt;}
.y8{bottom:709.808431pt;}
.y34{bottom:710.350129pt;}
.y99{bottom:711.817578pt;}
.y1c5{bottom:712.493583pt;}
.y17e{bottom:720.556241pt;}
.y133{bottom:722.484244pt;}
.y98{bottom:725.150911pt;}
.y1c4{bottom:725.825582pt;}
.y4b{bottom:727.826916pt;}
.y17d{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y132{bottom:735.816243pt;}
.y97{bottom:738.484244pt;}
.y1c3{bottom:739.157581pt;}
.y4a{bottom:741.158915pt;}
.y17c{bottom:743.216241pt;}
.y96{bottom:751.818912pt;}
.y1c2{bottom:752.489580pt;}
.y49{bottom:754.490914pt;}
.y17b{bottom:754.546242pt;}
.y95{bottom:765.150911pt;}
.y131{bottom:765.156247pt;}
.y1c1{bottom:765.821580pt;}
.y17a{bottom:765.876242pt;}
.y48{bottom:767.822914pt;}
.y5{bottom:774.602901pt;}
.y179{bottom:777.206242pt;}
.y94{bottom:778.482910pt;}
.y130{bottom:778.488246pt;}
.y1c0{bottom:779.153579pt;}
.y47{bottom:781.154913pt;}
.y178{bottom:788.536242pt;}
.y12f{bottom:791.820246pt;}
.y1bf{bottom:792.485578pt;}
.y46{bottom:794.486912pt;}
.y177{bottom:799.866242pt;}
.y12e{bottom:805.152245pt;}
.y1be{bottom:805.817578pt;}
.y45{bottom:807.818912pt;}
.y93{bottom:807.826916pt;}
.y176{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y12d{bottom:818.484244pt;}
.y1bd{bottom:819.149577pt;}
.y44{bottom:821.150911pt;}
.y92{bottom:821.158915pt;}
.y175{bottom:822.526242pt;}
.y37{bottom:823.475179pt;}
.y12c{bottom:831.816243pt;}
.y174{bottom:833.856242pt;}
.y43{bottom:834.484244pt;}
.y91{bottom:834.490914pt;}
.y1bc{bottom:838.486912pt;}
.y173{bottom:845.186242pt;}
.y42{bottom:847.817578pt;}
.y90{bottom:847.822914pt;}
.y1bb{bottom:851.818912pt;}
.y172{bottom:856.516242pt;}
.y41{bottom:861.150911pt;}
.y8f{bottom:861.154913pt;}
.y12b{bottom:861.160249pt;}
.y171{bottom:867.846243pt;}
.y1ba{bottom:871.150911pt;}
.y8e{bottom:874.486912pt;}
.y40{bottom:874.489580pt;}
.y12a{bottom:874.492249pt;}
.y170{bottom:879.176243pt;}
.y8d{bottom:887.818912pt;}
.y3f{bottom:887.821580pt;}
.y129{bottom:887.824248pt;}
.y1b9{bottom:890.482910pt;}
.y16f{bottom:890.506243pt;}
.y8c{bottom:901.150911pt;}
.y3e{bottom:901.153579pt;}
.y128{bottom:901.156247pt;}
.y16e{bottom:901.836243pt;}
.y1b8{bottom:903.816243pt;}
.y16d{bottom:913.166243pt;}
.y3d{bottom:914.485578pt;}
.y8b{bottom:914.488246pt;}
.y16c{bottom:924.496243pt;}
.y3c{bottom:927.817578pt;}
.y1b7{bottom:927.818912pt;}
.y8a{bottom:927.820246pt;}
.y16b{bottom:935.826243pt;}
.y1b6{bottom:941.150911pt;}
.y3b{bottom:941.152245pt;}
.y16a{bottom:947.156243pt;}
.y1b5{bottom:954.482910pt;}
.y3a{bottom:954.484244pt;}
.y169{bottom:958.486243pt;}
.y39{bottom:967.816243pt;}
.y168{bottom:969.816243pt;}
.y38{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hc{height:21.193555pt;}
.h6{height:24.933594pt;}
.h11{height:31.461333pt;}
.hd{height:32.594667pt;}
.h10{height:32.605469pt;}
.h7{height:34.512000pt;}
.h8{height:34.523438pt;}
.he{height:36.564219pt;}
.hf{height:36.585552pt;}
.h2{height:38.346667pt;}
.h4{height:39.318359pt;}
.h17{height:39.560000pt;}
.h19{height:40.080000pt;}
.h3{height:40.661333pt;}
.h18{height:40.960000pt;}
.h13{height:42.181333pt;}
.h9{height:47.472000pt;}
.h16{height:48.042801pt;}
.h15{height:48.085328pt;}
.hb{height:48.090664pt;}
.ha{height:48.096000pt;}
.h14{height:49.152000pt;}
.h12{height:69.024000pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:12.505440pt;}
.x2{left:54.392400pt;}
.xb{left:125.291331pt;}
.x4{left:207.516805pt;}
.x9{left:223.506813pt;}
.xe{left:267.195333pt;}
.x7{left:301.247742pt;}
.x5{left:371.916951pt;}
.x8{left:437.618286pt;}
.x3{left:519.632528pt;}
.x6{left:715.035970pt;}
.xd{left:725.336507pt;}
.xc{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; }
  