
    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_0bec9d99bffb0063d404e366.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_d4985ab9aef6f1a8468dd913.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_ef58b6742e1e8854e1e885b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_c0280bb695a54de1a7597e30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_aca67cac9b0083a0adf4218a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_fdcfb66800f5dd4f9edcf5f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_826a283a32e039b2312ebd60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875000;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_fbdd8834005dce2cc70250ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4bc22145f77a4dee5045f2d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.746094;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_9999881668895a8950121514.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.867676;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_24c739bee608e092bc6fcd63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v11{vertical-align:-45.840000px;}
.v14{vertical-align:-43.920000px;}
.v16{vertical-align:-38.880000px;}
.vb{vertical-align:-34.560000px;}
.vf{vertical-align:-33.120000px;}
.v10{vertical-align:-30.855000px;}
.v9{vertical-align:-29.519400px;}
.v4{vertical-align:-24.480000px;}
.v5{vertical-align:-22.320000px;}
.v7{vertical-align:-20.129760px;}
.v8{vertical-align:-18.701280px;}
.v13{vertical-align:-17.138880px;}
.v1a{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160000px;}
.vc{vertical-align:4.677000px;}
.vd{vertical-align:7.528920px;}
.v1d{vertical-align:9.755400px;}
.v18{vertical-align:19.440000px;}
.v6{vertical-align:23.040000px;}
.ve{vertical-align:24.479400px;}
.v1c{vertical-align:26.640000px;}
.v3{vertical-align:28.769880px;}
.v1b{vertical-align:30.960000px;}
.va{vertical-align:32.400000px;}
.v19{vertical-align:35.986320px;}
.v17{vertical-align:38.880000px;}
.v15{vertical-align:43.920000px;}
.v12{vertical-align:45.234600px;}
.v2{vertical-align:88.386480px;}
.ls55{letter-spacing:-6.415920px;}
.ls18{letter-spacing:-6.372720px;}
.ls8e{letter-spacing:-5.812560px;}
.ls37{letter-spacing:-5.724000px;}
.ls1b{letter-spacing:-5.171040px;}
.ls85{letter-spacing:-4.248000px;}
.ls79{letter-spacing:-2.808000px;}
.ls6e{letter-spacing:-0.957600px;}
.ls56{letter-spacing:-0.766080px;}
.ls57{letter-spacing:-0.421200px;}
.ls34{letter-spacing:-0.383040px;}
.lse{letter-spacing:-0.360720px;}
.ls36{letter-spacing:-0.336960px;}
.ls6f{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.287280px;}
.ls38{letter-spacing:-0.252720px;}
.lsf{letter-spacing:-0.240480px;}
.ls23{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.191520px;}
.ls49{letter-spacing:-0.168480px;}
.lsb{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.122400px;}
.ls48{letter-spacing:-0.120240px;}
.ls4c{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.095760px;}
.ls39{letter-spacing:-0.084240px;}
.ls53{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.020880px;}
.ls59{letter-spacing:0.027360px;}
.ls2e{letter-spacing:0.061200px;}
.ls54{letter-spacing:0.064080px;}
.ls8{letter-spacing:0.072000px;}
.ls5b{letter-spacing:0.084240px;}
.ls35{letter-spacing:0.095760px;}
.ls13{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120240px;}
.ls7a{letter-spacing:0.123120px;}
.lsd{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.167760px;}
.ls2d{letter-spacing:0.168480px;}
.ls16{letter-spacing:0.191520px;}
.ls7f{letter-spacing:0.199800px;}
.ls5{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.223920px;}
.ls28{letter-spacing:0.224520px;}
.ls7e{letter-spacing:0.234000px;}
.ls25{letter-spacing:0.240480px;}
.ls63{letter-spacing:0.241920px;}
.ls58{letter-spacing:0.252720px;}
.ls66{letter-spacing:0.254880px;}
.ls0{letter-spacing:0.264240px;}
.ls1c{letter-spacing:0.287280px;}
.lsc{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.294840px;}
.ls5f{letter-spacing:0.296640px;}
.ls52{letter-spacing:0.303720px;}
.ls3b{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.360720px;}
.ls17{letter-spacing:0.383040px;}
.ls5a{letter-spacing:0.401760px;}
.ls30{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.574560px;}
.ls3d{letter-spacing:0.611400px;}
.ls75{letter-spacing:0.626400px;}
.ls41{letter-spacing:0.648000px;}
.ls61{letter-spacing:0.841680px;}
.ls5c{letter-spacing:0.957600px;}
.ls26{letter-spacing:1.149120px;}
.ls9{letter-spacing:1.322640px;}
.ls88{letter-spacing:1.432080px;}
.ls80{letter-spacing:2.105160px;}
.ls87{letter-spacing:2.442960px;}
.ls7d{letter-spacing:2.571840px;}
.ls6d{letter-spacing:2.592000px;}
.ls8b{letter-spacing:2.687760px;}
.ls2c{letter-spacing:2.695680px;}
.ls8c{letter-spacing:2.736000px;}
.ls68{letter-spacing:3.246480px;}
.ls67{letter-spacing:3.893760px;}
.ls8a{letter-spacing:4.127760px;}
.ls8d{letter-spacing:4.262400px;}
.ls62{letter-spacing:4.335840px;}
.ls1f{letter-spacing:4.464000px;}
.ls60{letter-spacing:4.613760px;}
.ls64{letter-spacing:5.055840px;}
.ls72{letter-spacing:5.283360px;}
.ls77{letter-spacing:5.925600px;}
.ls84{letter-spacing:6.066720px;}
.ls74{letter-spacing:6.199200px;}
.ls6a{letter-spacing:6.436800px;}
.ls7b{letter-spacing:6.585720px;}
.ls76{letter-spacing:6.753600px;}
.ls44{letter-spacing:7.110720px;}
.ls45{letter-spacing:7.335360px;}
.ls6c{letter-spacing:11.743200px;}
.ls69{letter-spacing:13.338720px;}
.ls6b{letter-spacing:13.897440px;}
.ls7c{letter-spacing:16.056000px;}
.ls89{letter-spacing:16.272000px;}
.ls65{letter-spacing:19.959840px;}
.ls4d{letter-spacing:21.960000px;}
.ls4e{letter-spacing:27.578880px;}
.ls83{letter-spacing:29.015280px;}
.ls82{letter-spacing:29.781360px;}
.ls71{letter-spacing:31.203360px;}
.ls11{letter-spacing:32.585040px;}
.ls70{letter-spacing:32.706720px;}
.lsa{letter-spacing:33.667200px;}
.ls78{letter-spacing:36.273600px;}
.ls21{letter-spacing:40.464000px;}
.ls22{letter-spacing:44.064000px;}
.ls20{letter-spacing:44.784000px;}
.ls4b{letter-spacing:45.249120px;}
.ls33{letter-spacing:45.748800px;}
.ls4a{letter-spacing:45.969120px;}
.ls2f{letter-spacing:45.969720px;}
.ls32{letter-spacing:46.184280px;}
.ls50{letter-spacing:51.891840px;}
.ls3f{letter-spacing:53.913600px;}
.ls3c{letter-spacing:54.482400px;}
.ls5d{letter-spacing:65.891520px;}
.ls7{letter-spacing:68.506560px;}
.ls5e{letter-spacing:74.501280px;}
.ls1e{letter-spacing:82.117440px;}
.ls81{letter-spacing:82.162080px;}
.ls86{letter-spacing:88.536240px;}
.ls73{letter-spacing:97.524000px;}
.ls15{letter-spacing:101.888640px;}
.ls42{letter-spacing:105.876000px;}
.ls43{letter-spacing:105.889680px;}
.ls6{letter-spacing:111.600000px;}
.ls10{letter-spacing:119.879280px;}
.ls12{letter-spacing:119.916000px;}
.ls1d{letter-spacing:124.200000px;}
.ls2b{letter-spacing:339.188760px;}
.ls29{letter-spacing:370.047840px;}
.ls31{letter-spacing:390.204000px;}
.ls47{letter-spacing:738.942600px;}
.ls3e{letter-spacing:986.116800px;}
.ls46{letter-spacing:1018.557000px;}
.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;}
}
.ws87{word-spacing:-216.000000px;}
.ws8d{word-spacing:-192.240000px;}
.ws49{word-spacing:-167.760000px;}
.ws3f{word-spacing:-144.000000px;}
.ws58{word-spacing:-120.240000px;}
.ws88{word-spacing:-108.000000px;}
.ws9d{word-spacing:-107.784000px;}
.ws66{word-spacing:-95.760000px;}
.ws33{word-spacing:-84.240000px;}
.ws3a{word-spacing:-61.200000px;}
.ws39{word-spacing:-61.077600px;}
.ws9c{word-spacing:-59.400000px;}
.ws95{word-spacing:-58.968000px;}
.ws22{word-spacing:-39.312000px;}
.ws23{word-spacing:-39.168000px;}
.ws69{word-spacing:-33.306480px;}
.ws24{word-spacing:-33.186240px;}
.ws12{word-spacing:-32.945760px;}
.ws50{word-spacing:-32.825520px;}
.ws4f{word-spacing:-32.705280px;}
.ws6{word-spacing:-32.585040px;}
.ws41{word-spacing:-30.132000px;}
.ws13{word-spacing:-29.700000px;}
.ws4e{word-spacing:-29.376000px;}
.ws7c{word-spacing:-27.195840px;}
.ws11{word-spacing:-26.813520px;}
.ws91{word-spacing:-26.784000px;}
.ws31{word-spacing:-26.429760px;}
.ws2f{word-spacing:-26.334000px;}
.ws1{word-spacing:-26.238240px;}
.ws5e{word-spacing:-26.142480px;}
.ws0{word-spacing:-26.046720px;}
.ws7d{word-spacing:-25.950960px;}
.ws65{word-spacing:-25.472160px;}
.ws8c{word-spacing:-25.280640px;}
.ws40{word-spacing:-24.084000px;}
.ws7b{word-spacing:-23.940000px;}
.ws34{word-spacing:-23.587200px;}
.ws3c{word-spacing:-22.997520px;}
.ws59{word-spacing:-22.829040px;}
.ws14{word-spacing:-21.258720px;}
.ws48{word-spacing:-19.872000px;}
.ws64{word-spacing:-19.822320px;}
.ws2d{word-spacing:-19.800000px;}
.wsa2{word-spacing:-19.728000px;}
.ws38{word-spacing:-18.701280px;}
.ws9f{word-spacing:-18.195840px;}
.ws63{word-spacing:-17.622000px;}
.ws2e{word-spacing:-17.557920px;}
.ws9e{word-spacing:-17.269200px;}
.ws92{word-spacing:-16.488000px;}
.ws2c{word-spacing:-16.272000px;}
.ws62{word-spacing:-15.840000px;}
.wsa1{word-spacing:-15.624000px;}
.wsa0{word-spacing:-15.552000px;}
.ws2{word-spacing:-2.906640px;}
.ws6e{word-spacing:-2.304000px;}
.ws5c{word-spacing:-2.284560px;}
.ws6c{word-spacing:-1.800000px;}
.ws55{word-spacing:-1.769040px;}
.ws52{word-spacing:-1.620000px;}
.ws72{word-spacing:-1.584000px;}
.ws4{word-spacing:-1.563120px;}
.ws8b{word-spacing:-1.347840px;}
.ws86{word-spacing:-1.322640px;}
.ws67{word-spacing:-1.296000px;}
.ws79{word-spacing:-1.263600px;}
.ws83{word-spacing:-1.244880px;}
.ws15{word-spacing:-1.202400px;}
.ws54{word-spacing:-1.095120px;}
.ws5a{word-spacing:-1.080000px;}
.ws77{word-spacing:-1.010880px;}
.ws89{word-spacing:-0.972000px;}
.ws18{word-spacing:-0.961920px;}
.wsd{word-spacing:-0.864000px;}
.ws57{word-spacing:-0.861840px;}
.ws7e{word-spacing:-0.842400px;}
.ws1a{word-spacing:-0.841680px;}
.ws71{word-spacing:-0.792000px;}
.ws53{word-spacing:-0.756000px;}
.ws81{word-spacing:-0.721440px;}
.ws47{word-spacing:-0.673920px;}
.ws17{word-spacing:-0.601200px;}
.ws76{word-spacing:-0.589680px;}
.ws2a{word-spacing:-0.574560px;}
.ws25{word-spacing:-0.540000px;}
.ws7f{word-spacing:-0.505440px;}
.ws82{word-spacing:-0.480960px;}
.ws1f{word-spacing:-0.478800px;}
.ws7{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.360720px;}
.ws6b{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.336960px;}
.ws6d{word-spacing:-0.288000px;}
.ws7a{word-spacing:-0.252720px;}
.ws19{word-spacing:-0.240480px;}
.ws4a{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.191520px;}
.ws43{word-spacing:-0.168480px;}
.ws4d{word-spacing:-0.167760px;}
.wse{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.120240px;}
.ws4c{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.095760px;}
.ws6f{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws70{word-spacing:0.072000px;}
.ws5d{word-spacing:0.084240px;}
.ws20{word-spacing:0.095760px;}
.ws5f{word-spacing:0.108000px;}
.ws3{word-spacing:0.120240px;}
.ws45{word-spacing:0.168480px;}
.ws1d{word-spacing:0.191520px;}
.ws8e{word-spacing:0.216000px;}
.wsc{word-spacing:0.240480px;}
.wsa5{word-spacing:0.252720px;}
.ws1c{word-spacing:0.287280px;}
.ws9{word-spacing:0.288000px;}
.ws94{word-spacing:0.354312px;}
.ws73{word-spacing:0.360000px;}
.ws5b{word-spacing:0.360720px;}
.ws80{word-spacing:0.383040px;}
.ws78{word-spacing:0.421200px;}
.ws2b{word-spacing:0.432000px;}
.wsf{word-spacing:0.480960px;}
.ws46{word-spacing:0.505440px;}
.ws27{word-spacing:0.574560px;}
.wsa{word-spacing:0.576000px;}
.ws30{word-spacing:0.584136px;}
.ws4b{word-spacing:0.648000px;}
.ws8f{word-spacing:0.670320px;}
.ws9b{word-spacing:0.721440px;}
.ws8a{word-spacing:0.756000px;}
.ws21{word-spacing:0.842688px;}
.ws99{word-spacing:0.861840px;}
.ws60{word-spacing:0.864000px;}
.ws56{word-spacing:0.926640px;}
.ws10{word-spacing:0.936000px;}
.ws74{word-spacing:0.957600px;}
.wsa6{word-spacing:0.972000px;}
.ws85{word-spacing:1.082160px;}
.ws42{word-spacing:1.244880px;}
.ws93{word-spacing:1.296000px;}
.ws28{word-spacing:1.340640px;}
.ws29{word-spacing:1.436400px;}
.ws75{word-spacing:1.532160px;}
.ws90{word-spacing:1.620000px;}
.ws84{word-spacing:1.627920px;}
.ws51{word-spacing:1.728000px;}
.ws26{word-spacing:2.010960px;}
.ws9a{word-spacing:2.872800px;}
.ws96{word-spacing:4.176000px;}
.ws97{word-spacing:24.768000px;}
.ws3b{word-spacing:71.032800px;}
.ws6a{word-spacing:170.171208px;}
.ws3d{word-spacing:207.803232px;}
.ws36{word-spacing:277.638192px;}
.ws32{word-spacing:282.768408px;}
.ws35{word-spacing:285.859800px;}
.ws37{word-spacing:293.155200px;}
.ws3e{word-spacing:316.152720px;}
.ws68{word-spacing:380.016000px;}
.wsa3{word-spacing:974.926920px;}
.ws98{word-spacing:1605.780000px;}
.wsa4{word-spacing:1605.787200px;}
.ws61{word-spacing:4675.560000px;}
.ws5{word-spacing:4712.280000px;}
._10{margin-left:-3143.004000px;}
._16{margin-left:-22.680000px;}
._14{margin-left:-17.992008px;}
._e{margin-left:-16.530480px;}
._5{margin-left:-14.907384px;}
._2{margin-left:-12.721392px;}
._7{margin-left:-10.624896px;}
._f{margin-left:-8.928000px;}
._b{margin-left:-7.351848px;}
._9{margin-left:-6.336000px;}
._3{margin-left:-5.293512px;}
._12{margin-left:-4.190400px;}
._6{margin-left:-2.969712px;}
._0{margin-left:-1.638288px;}
._4{width:1.015056px;}
._1{width:2.510280px;}
._c{width:3.612096px;}
._d{width:4.713480px;}
._8{width:5.806800px;}
._a{width:6.878520px;}
._17{width:8.399088px;}
._13{width:11.328360px;}
._18{width:27.749304px;}
._19{width:453.597744px;}
._11{width:1492.885872px;}
._15{width:1781.524440px;}
._1a{width:1880.067048px;}
.fc19{color:rgb(148,215,228);}
.fc18{color:rgb(244,222,58);}
.fc17{color:rgb(255,102,0);}
.fc16{color:rgb(207,139,3);}
.fc15{color:rgb(151,233,213);}
.fc13{color:rgb(204,0,0);}
.fc12{color:rgb(51,102,255);}
.fc11{color:rgb(255,255,255);}
.fc10{color:rgb(51,51,255);}
.fcf{color:rgb(0,112,192);}
.fc0{color:rgb(0,153,153);}
.fc7{color:rgb(0,0,204);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(0,176,80);}
.fc8{color:rgb(237,125,49);}
.fc1{color:rgb(137,137,137);}
.fc3{color:rgb(51,51,204);}
.fc9{color:rgb(127,96,0);}
.fce{color:rgb(255,0,0);}
.fcb{color:rgb(191,144,0);}
.fc5{color:rgb(84,130,53);}
.fca{color:rgb(56,87,35);}
.fc14{color:rgb(0,0,255);}
.fcd{color:rgb(68,84,106);}
.fc6{color:rgb(112,48,160);}
.fcc{color:transparent;}
.fs14{font-size:52.560000px;}
.fs15{font-size:56.160000px;}
.fsa{font-size:61.200000px;}
.fs7{font-size:64.080000px;}
.fse{font-size:69.840000px;}
.fs5{font-size:72.000000px;}
.fs10{font-size:79.200000px;}
.fs13{font-size:79.920000px;}
.fs8{font-size:84.240000px;}
.fs9{font-size:87.840000px;}
.fs2{font-size:95.760000px;}
.fsb{font-size:105.120000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fsd{font-size:122.400000px;}
.fs12{font-size:140.400000px;}
.fs4{font-size:144.000000px;}
.fsf{font-size:157.680000px;}
.fsc{font-size:167.760000px;}
.fs11{font-size:192.240000px;}
.fs3{font-size:216.000000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:9.024600px;}
.y15a{bottom:30.930900px;}
.yb{bottom:30.933600px;}
.ye{bottom:31.473600px;}
.yce{bottom:37.813260px;}
.ydb{bottom:51.257250px;}
.y98{bottom:56.415150px;}
.yb4{bottom:56.695530px;}
.y13a{bottom:66.610140px;}
.ycd{bottom:66.804240px;}
.y91{bottom:69.106350px;}
.y2a{bottom:74.752350px;}
.y14{bottom:75.196260px;}
.y97{bottom:78.015150px;}
.ya1{bottom:78.068550px;}
.ya{bottom:80.050800px;}
.yb3{bottom:85.495710px;}
.y109{bottom:91.441500px;}
.y7a{bottom:91.522980px;}
.y43{bottom:92.405190px;}
.ycc{bottom:95.412540px;}
.y96{bottom:99.615150px;}
.ya0{bottom:99.668550px;}
.yf6{bottom:99.927600px;}
.y139{bottom:101.179500px;}
.y147{bottom:102.693930px;}
.y89{bottom:105.202260px;}
.yda{bottom:106.157250px;}
.y29{bottom:109.312350px;}
.y13{bottom:111.208140px;}
.y18{bottom:111.228120px;}
.yb2{bottom:114.295530px;}
.y79{bottom:120.322800px;}
.y42{bottom:121.205010px;}
.y9f{bottom:121.268550px;}
.y9{bottom:123.250800px;}
.y108{bottom:123.841500px;}
.y14e{bottom:128.390400px;}
.ycb{bottom:128.904780px;}
.y88{bottom:130.411080px;}
.ye4{bottom:131.043630px;}
.y146{bottom:132.746550px;}
.y138{bottom:136.459500px;}
.y66{bottom:141.790200px;}
.y9e{bottom:142.868550px;}
.yb1{bottom:143.094840px;}
.y28{bottom:144.592350px;}
.y12{bottom:147.220020px;}
.y17{bottom:147.240000px;}
.y78{bottom:149.122620px;}
.y41{bottom:150.004830px;}
.y150{bottom:153.531750px;}
.y87{bottom:155.619900px;}
.y107{bottom:156.241500px;}
.y148{bottom:157.260450px;}
.yca{bottom:157.715220px;}
.yec{bottom:160.948500px;}
.y60{bottom:162.180000px;}
.yd9{bottom:166.457250px;}
.y152{bottom:166.849980px;}
.yb0{bottom:171.894660px;}
.y8{bottom:173.818920px;}
.y137{bottom:174.600780px;}
.y77{bottom:177.922440px;}
.y40{bottom:178.804650px;}
.y74{bottom:181.012800px;}
.y27{bottom:182.752350px;}
.y11{bottom:183.231900px;}
.y67{bottom:185.565600px;}
.yc9{bottom:186.323520px;}
.y106{bottom:188.641500px;}
.ye3{bottom:188.643270px;}
.y16{bottom:190.416240px;}
.y151{bottom:195.649800px;}
.yaf{bottom:205.195530px;}
.y14f{bottom:205.339530px;}
.y3f{bottom:207.604470px;}
.y145{bottom:207.646980px;}
.y30{bottom:208.368150px;}
.y136{bottom:209.170140px;}
.y7{bottom:209.830800px;}
.yc8{bottom:215.123340px;}
.y26{bottom:217.312350px;}
.y10{bottom:219.243780px;}
.y92{bottom:219.715950px;}
.yd8{bottom:221.357250px;}
.y71{bottom:222.371520px;}
.y15{bottom:226.428120px;}
.y6f{bottom:226.951950px;}
.yae{bottom:233.995380px;}
.y86{bottom:234.317700px;}
.y3e{bottom:236.404290px;}
.y144{bottom:237.699600px;}
.y135{bottom:243.739500px;}
.ye2{bottom:246.242910px;}
.y2f{bottom:251.568150px;}
.y25{bottom:251.872350px;}
.yc7{bottom:252.924600px;}
.y6{bottom:254.290800px;}
.y94{bottom:257.596950px;}
.y70{bottom:258.383400px;}
.y6e{bottom:259.351950px;}
.y157{bottom:260.810100px;}
.yf{bottom:262.440000px;}
.yad{bottom:262.795530px;}
.y3d{bottom:265.204110px;}
.y134{bottom:279.019500px;}
.yf7{bottom:280.166400px;}
.yd7{bottom:281.657250px;}
.y24{bottom:287.152350px;}
.y93{bottom:289.996950px;}
.yac{bottom:291.594450px;}
.y156{bottom:293.210100px;}
.y3c{bottom:294.003930px;}
.y90{bottom:296.530680px;}
.ye1{bottom:303.842550px;}
.y124{bottom:306.097050px;}
.y5{bottom:306.130800px;}
.y6a{bottom:308.546250px;}
.y5f{bottom:309.620550px;}
.y11e{bottom:310.021650px;}
.ye6{bottom:316.455150px;}
.y133{bottom:319.888860px;}
.yab{bottom:320.394270px;}
.y3b{bottom:322.803750px;}
.y84{bottom:324.576660px;}
.y8f{bottom:325.330500px;}
.y155{bottom:325.610100px;}
.yf9{bottom:326.973600px;}
.y123{bottom:334.886850px;}
.y154{bottom:338.003100px;}
.yd6{bottom:338.177250px;}
.y69{bottom:340.946250px;}
.y19{bottom:346.169100px;}
.yaa{bottom:349.194090px;}
.y3a{bottom:351.603570px;}
.y132{bottom:357.137340px;}
.y83{bottom:360.588540px;}
.y76{bottom:360.728280px;}
.ye0{bottom:361.442190px;}
.y9b{bottom:365.234700px;}
.y1a{bottom:366.149100px;}
.y153{bottom:370.403100px;}
.y61{bottom:370.896900px;}
.yf0{bottom:374.518050px;}
.y8e{bottom:375.070350px;}
.y119{bottom:377.627970px;}
.y143{bottom:377.803950px;}
.y39{bottom:380.403390px;}
.y20{bottom:385.229700px;}
.y9a{bottom:386.834700px;}
.ya9{bottom:386.995350px;}
.y75{bottom:389.528100px;}
.y131{bottom:394.579500px;}
.y95{bottom:396.286200px;}
.y63{bottom:401.258280px;}
.yd5{bottom:401.368050px;}
.y82{bottom:403.784760px;}
.y99{bottom:408.434700px;}
.y38{bottom:409.203210px;}
.y7c{bottom:410.766420px;}
.y118{bottom:413.639850px;}
.y1f{bottom:414.029520px;}
.y142{bottom:416.520000px;}
.ydf{bottom:419.041830px;}
.y130{bottom:429.859500px;}
.y62{bottom:430.058100px;}
.y10e{bottom:432.020250px;}
.y6d{bottom:433.027920px;}
.y37{bottom:438.003030px;}
.yfa{bottom:438.969600px;}
.y81{bottom:439.796640px;}
.y1e{bottom:442.829340px;}
.ya6{bottom:443.909100px;}
.y7b{bottom:446.778300px;}
.y3{bottom:447.980400px;}
.y159{bottom:449.034900px;}
.yd4{bottom:453.557250px;}
.y5d{bottom:454.588650px;}
.y141{bottom:455.400000px;}
.ya3{bottom:457.173450px;}
.y36{bottom:466.802850px;}
.y13c{bottom:467.789100px;}
.y12f{bottom:468.010140px;}
.yed{bottom:468.928200px;}
.y6c{bottom:469.039800px;}
.y110{bottom:470.900250px;}
.y10d{bottom:470.900400px;}
.y8d{bottom:471.216090px;}
.y1d{bottom:471.629160px;}
.y80{bottom:475.808520px;}
.yde{bottom:476.641470px;}
.ya2{bottom:478.773450px;}
.y158{bottom:481.434900px;}
.yc2{bottom:482.756670px;}
.y9d{bottom:486.223350px;}
.y2{bottom:487.220400px;}
.y140{bottom:487.800000px;}
.y117{bottom:500.039850px;}
.y5e{bottom:500.193600px;}
.y1c{bottom:500.428980px;}
.y12e{bottom:502.579500px;}
.y8c{bottom:507.227970px;}
.y9c{bottom:507.823350px;}
.yc1{bottom:507.965490px;}
.y10f{bottom:509.780250px;}
.y10c{bottom:509.780400px;}
.yd3{bottom:510.077250px;}
.y35{bottom:511.493460px;}
.y7f{bottom:511.820400px;}
.yf8{bottom:513.732600px;}
.yeb{bottom:520.417950px;}
.yd{bottom:521.646900px;}
.y13f{bottom:525.239850px;}
.y68{bottom:526.707750px;}
.y14d{bottom:528.552150px;}
.y1b{bottom:529.228800px;}
.ya5{bottom:532.097100px;}
.y105{bottom:532.249650px;}
.yc0{bottom:533.174310px;}
.ydd{bottom:534.241110px;}
.y73{bottom:535.575180px;}
.y12d{bottom:537.859500px;}
.y23{bottom:538.349940px;}
.y34{bottom:540.293280px;}
.y8b{bottom:543.239850px;}
.y6b{bottom:547.943400px;}
.y14c{bottom:550.512150px;}
.yea{bottom:553.006950px;}
.ya4{bottom:553.697100px;}
.y122{bottom:555.900930px;}
.y13e{bottom:556.919850px;}
.y85{bottom:557.888370px;}
.ybf{bottom:558.383130px;}
.y7e{bottom:558.429450px;}
.y104{bottom:560.685120px;}
.y72{bottom:560.784000px;}
.yef{bottom:562.898520px;}
.y22{bottom:567.149760px;}
.y115{bottom:568.290060px;}
.y33{bottom:569.093100px;}
.yd2{bottom:573.077250px;}
.yf3{bottom:573.691410px;}
.yf5{bottom:575.124390px;}
.y1{bottom:575.279550px;}
.y129{bottom:576.558630px;}
.ybe{bottom:583.591950px;}
.y121{bottom:584.700750px;}
.y59{bottom:584.893650px;}
.yc{bottom:585.211800px;}
.y56{bottom:585.253650px;}
.y5c{bottom:585.433650px;}
.y53{bottom:585.784830px;}
.y8a{bottom:586.439700px;}
.y116{bottom:586.439850px;}
.y100{bottom:587.027880px;}
.ye9{bottom:588.457950px;}
.y13d{bottom:589.319850px;}
.ydc{bottom:591.840750px;}
.y7d{bottom:593.900250px;}
.y21{bottom:595.949580px;}
.y114{bottom:597.089880px;}
.ye5{bottom:598.753650px;}
.yee{bottom:598.910400px;}
.yf2{bottom:602.491230px;}
.ya8{bottom:605.042850px;}
.y12b{bottom:605.046000px;}
.y52{bottom:605.233650px;}
.y103{bottom:605.237460px;}
.y128{bottom:605.358450px;}
.y57{bottom:610.462470px;}
.y54{bottom:610.614570px;}
.y5a{bottom:610.628970px;}
.yff{bottom:612.236700px;}
.yf4{bottom:614.533050px;}
.y5b{bottom:618.729150px;}
.y55{bottom:618.732750px;}
.y58{bottom:618.739950px;}
.ye8{bottom:620.317950px;}
.ybb{bottom:622.258650px;}
.y113{bottom:625.889700px;}
.yd1{bottom:627.977250px;}
.yf1{bottom:631.291050px;}
.ya7{bottom:633.842850px;}
.y102{bottom:634.037280px;}
.y11d{bottom:636.162000px;}
.y10b{bottom:639.051630px;}
.y127{bottom:639.918450px;}
.yc6{bottom:641.893080px;}
.y4c{bottom:647.098650px;}
.y51{bottom:647.818800px;}
.y49{bottom:647.989830px;}
.y32{bottom:657.502500px;}
.yfe{bottom:660.017640px;}
.y101{bottom:662.837100px;}
.y48{bottom:667.438650px;}
.y10a{bottom:667.851450px;}
.y11c{bottom:668.562000px;}
.yc5{bottom:670.692900px;}
.y4d{bottom:672.475950px;}
.y4a{bottom:672.651090px;}
.y4f{bottom:673.023510px;}
.y2e{bottom:674.466690px;}
.y126{bottom:675.198450px;}
.y12a{bottom:678.612000px;}
.y4e{bottom:680.577750px;}
.y4b{bottom:680.944950px;}
.y50{bottom:681.117750px;}
.y120{bottom:688.717020px;}
.yfd{bottom:688.817460px;}
.y4{bottom:689.902500px;}
.yb7{bottom:691.052100px;}
.ye7{bottom:693.408750px;}
.yb9{bottom:693.565650px;}
.yb5{bottom:697.710300px;}
.yc4{bottom:702.390780px;}
.y14b{bottom:702.693750px;}
.y2d{bottom:703.266510px;}
.y46{bottom:709.181010px;}
.yb8{bottom:712.362900px;}
.yba{bottom:712.419750px;}
.yb6{bottom:715.713000px;}
.y12c{bottom:716.840400px;}
.yd0{bottom:717.216600px;}
.yfc{bottom:720.321780px;}
.y31{bottom:722.302500px;}
.y11b{bottom:724.042950px;}
.y14a{bottom:727.353750px;}
.yc3{bottom:727.599600px;}
.y2c{bottom:732.066330px;}
.y11f{bottom:732.093600px;}
.y45{bottom:734.389830px;}
.y64{bottom:740.248350px;}
.y65{bottom:741.417600px;}
.y125{bottom:741.713100px;}
.yfb{bottom:748.762500px;}
.y149{bottom:749.493750px;}
.y112{bottom:750.621330px;}
.y47{bottom:750.958650px;}
.y11a{bottom:752.843100px;}
.ybd{bottom:757.906050px;}
.y44{bottom:759.598650px;}
.y2b{bottom:760.866150px;}
.ybc{bottom:771.797400px;}
.y111{bottom:775.830150px;}
.y13b{bottom:779.360850px;}
.h10{height:42.762305px;}
.h7{height:49.886719px;}
.h30{height:50.308594px;}
.h6{height:54.070312px;}
.h33{height:54.140625px;}
.h23{height:54.574312px;}
.h34{height:58.861055px;}
.hf{height:59.066719px;}
.h11{height:63.262266px;}
.hc{height:63.344531px;}
.h36{height:63.365273px;}
.h25{height:63.403386px;}
.h2a{height:64.947066px;}
.h1c{height:66.349336px;}
.h22{height:66.910430px;}
.h32{height:67.374844px;}
.h3{height:71.913516px;}
.h2d{height:71.916396px;}
.h31{height:71.922156px;}
.ha{height:72.007031px;}
.h37{height:73.017666px;}
.h35{height:73.722305px;}
.h21{height:74.667726px;}
.h1e{height:74.669046px;}
.h1d{height:74.672766px;}
.h1b{height:75.462891px;}
.h26{height:76.880098px;}
.h1f{height:76.921258px;}
.h27{height:76.921858px;}
.h29{height:76.922578px;}
.h20{height:76.924018px;}
.h2e{height:76.940698px;}
.h28{height:76.967938px;}
.h9{height:81.105469px;}
.h14{height:81.210938px;}
.h2b{height:84.015352px;}
.hd{height:86.175352px;}
.he{height:86.384531px;}
.h3a{height:86.470313px;}
.h15{height:86.540625px;}
.h38{height:86.980746px;}
.h2{height:90.297422px;}
.h19{height:90.340622px;}
.h8{height:90.414844px;}
.h39{height:94.939453px;}
.h2f{height:96.004367px;}
.h13{height:100.617188px;}
.h5{height:108.140625px;}
.h12{height:108.281250px;}
.h24{height:108.496866px;}
.h18{height:117.219023px;}
.h1a{height:120.924023px;}
.h16{height:126.147656px;}
.h17{height:130.824656px;}
.h2c{height:134.323945px;}
.h4{height:162.210938px;}
.hb{height:165.278938px;}
.h1{height:198.438047px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x49{left:16.009950px;}
.x50{left:21.395850px;}
.x19{left:28.693200px;}
.x17{left:31.816350px;}
.x56{left:34.529100px;}
.x18{left:42.942300px;}
.x74{left:50.029200px;}
.xb{left:55.800000px;}
.x3c{left:59.130300px;}
.x1a{left:62.544360px;}
.x4{left:82.800000px;}
.x75{left:83.860200px;}
.x3e{left:88.870800px;}
.xc{left:96.230700px;}
.x70{left:108.682650px;}
.x7{left:123.300000px;}
.x3d{left:124.484250px;}
.x69{left:134.436750px;}
.x5{left:136.800000px;}
.x4a{left:146.726400px;}
.x6f{left:152.053650px;}
.x37{left:154.218150px;}
.x6d{left:161.781000px;}
.x6{left:170.640000px;}
.x11{left:183.300000px;}
.x9{left:198.429900px;}
.x6a{left:199.498050px;}
.x3b{left:203.416050px;}
.x8b{left:223.664010px;}
.x4c{left:236.266950px;}
.x12{left:237.300000px;}
.x1{left:242.358750px;}
.x51{left:245.689500px;}
.x66{left:249.618600px;}
.x65{left:251.617800px;}
.x8a{left:261.305850px;}
.x7e{left:264.121050px;}
.x8{left:310.679700px;}
.x6e{left:333.586950px;}
.x63{left:378.324450px;}
.x4f{left:406.059750px;}
.xf{left:418.198650px;}
.x64{left:432.324450px;}
.x47{left:484.255800px;}
.x2{left:498.318750px;}
.x87{left:503.085750px;}
.x7d{left:521.045550px;}
.x53{left:545.027550px;}
.x84{left:547.395750px;}
.x2c{left:549.857850px;}
.x1b{left:555.434100px;}
.x7f{left:562.466730px;}
.xa{left:571.275000px;}
.x3{left:576.258750px;}
.x21{left:577.394100px;}
.x71{left:589.471650px;}
.x73{left:600.940950px;}
.x52{left:609.328500px;}
.x41{left:628.683150px;}
.x43{left:635.014500px;}
.x60{left:654.757650px;}
.x36{left:665.626650px;}
.x72{left:679.526700px;}
.x3f{left:681.754800px;}
.x4b{left:682.911450px;}
.x33{left:684.067950px;}
.x1c{left:716.269320px;}
.xd{left:742.800000px;}
.x88{left:748.778700px;}
.x79{left:753.010050px;}
.x61{left:756.300000px;}
.xe{left:783.300000px;}
.x59{left:787.152900px;}
.x38{left:793.800150px;}
.x54{left:810.360300px;}
.x68{left:826.199850px;}
.x67{left:828.423450px;}
.x7a{left:835.616100px;}
.x1f{left:840.502260px;}
.x1d{left:842.292360px;}
.x77{left:845.550000px;}
.x1e{left:857.413440px;}
.x6c{left:873.529200px;}
.x89{left:883.917450px;}
.x5a{left:885.148050px;}
.x39{left:889.207320px;}
.x13{left:902.731200px;}
.x31{left:911.110500px;}
.x7b{left:915.120000px;}
.x14{left:936.606300px;}
.x8c{left:964.912950px;}
.x22{left:966.653370px;}
.x4e{left:975.696150px;}
.x6b{left:979.522500px;}
.x10{left:989.054100px;}
.x35{left:991.750500px;}
.x32{left:992.830650px;}
.x34{left:995.170650px;}
.x4d{left:996.930150px;}
.x5c{left:998.665800px;}
.x7c{left:1008.986250px;}
.x83{left:1022.562450px;}
.x45{left:1024.020960px;}
.x55{left:1026.806700px;}
.x15{left:1042.800000px;}
.x42{left:1051.132950px;}
.x57{left:1056.548850px;}
.x46{left:1057.872120px;}
.x81{left:1063.956450px;}
.x5e{left:1067.369250px;}
.x44{left:1071.565800px;}
.x76{left:1078.389000px;}
.x8d{left:1083.832200px;}
.x58{left:1090.396050px;}
.x23{left:1092.213090px;}
.x40{left:1094.586150px;}
.x25{left:1099.933050px;}
.x2d{left:1102.457430px;}
.x5d{left:1105.623600px;}
.x5f{left:1112.878560px;}
.x20{left:1119.829050px;}
.x2e{left:1137.553050px;}
.x24{left:1138.813050px;}
.x82{left:1152.970950px;}
.x80{left:1155.630450px;}
.x48{left:1174.365450px;}
.x26{left:1211.424690px;}
.x2f{left:1219.511730px;}
.x28{left:1222.577700px;}
.x78{left:1224.784650px;}
.x85{left:1252.942800px;}
.x30{left:1266.137700px;}
.x27{left:1269.737700px;}
.x3a{left:1274.395770px;}
.x5b{left:1314.946050px;}
.x86{left:1330.382850px;}
.x2b{left:1337.134050px;}
.x62{left:1338.720000px;}
.x16{left:1347.900000px;}
.x29{left:1349.737980px;}
.x2a{left:1373.134050px;}
@media print{
.v11{vertical-align:-40.746667pt;}
.v14{vertical-align:-39.040000pt;}
.v16{vertical-align:-34.560000pt;}
.vb{vertical-align:-30.720000pt;}
.vf{vertical-align:-29.440000pt;}
.v10{vertical-align:-27.426667pt;}
.v9{vertical-align:-26.239467pt;}
.v4{vertical-align:-21.760000pt;}
.v5{vertical-align:-19.840000pt;}
.v7{vertical-align:-17.893120pt;}
.v8{vertical-align:-16.623360pt;}
.v13{vertical-align:-15.234560pt;}
.v1a{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920000pt;}
.vc{vertical-align:4.157333pt;}
.vd{vertical-align:6.692373pt;}
.v1d{vertical-align:8.671467pt;}
.v18{vertical-align:17.280000pt;}
.v6{vertical-align:20.480000pt;}
.ve{vertical-align:21.759467pt;}
.v1c{vertical-align:23.680000pt;}
.v3{vertical-align:25.573227pt;}
.v1b{vertical-align:27.520000pt;}
.va{vertical-align:28.800000pt;}
.v19{vertical-align:31.987840pt;}
.v17{vertical-align:34.560000pt;}
.v15{vertical-align:39.040000pt;}
.v12{vertical-align:40.208533pt;}
.v2{vertical-align:78.565760pt;}
.ls55{letter-spacing:-5.703040pt;}
.ls18{letter-spacing:-5.664640pt;}
.ls8e{letter-spacing:-5.166720pt;}
.ls37{letter-spacing:-5.088000pt;}
.ls1b{letter-spacing:-4.596480pt;}
.ls85{letter-spacing:-3.776000pt;}
.ls79{letter-spacing:-2.496000pt;}
.ls6e{letter-spacing:-0.851200pt;}
.ls56{letter-spacing:-0.680960pt;}
.ls57{letter-spacing:-0.374400pt;}
.ls34{letter-spacing:-0.340480pt;}
.lse{letter-spacing:-0.320640pt;}
.ls36{letter-spacing:-0.299520pt;}
.ls6f{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.255360pt;}
.ls38{letter-spacing:-0.224640pt;}
.lsf{letter-spacing:-0.213760pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.170240pt;}
.ls49{letter-spacing:-0.149760pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.108800pt;}
.ls48{letter-spacing:-0.106880pt;}
.ls4c{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.085120pt;}
.ls39{letter-spacing:-0.074880pt;}
.ls53{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.018560pt;}
.ls59{letter-spacing:0.024320pt;}
.ls2e{letter-spacing:0.054400pt;}
.ls54{letter-spacing:0.056960pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5b{letter-spacing:0.074880pt;}
.ls35{letter-spacing:0.085120pt;}
.ls13{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106880pt;}
.ls7a{letter-spacing:0.109440pt;}
.lsd{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.149120pt;}
.ls2d{letter-spacing:0.149760pt;}
.ls16{letter-spacing:0.170240pt;}
.ls7f{letter-spacing:0.177600pt;}
.ls5{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.199040pt;}
.ls28{letter-spacing:0.199573pt;}
.ls7e{letter-spacing:0.208000pt;}
.ls25{letter-spacing:0.213760pt;}
.ls63{letter-spacing:0.215040pt;}
.ls58{letter-spacing:0.224640pt;}
.ls66{letter-spacing:0.226560pt;}
.ls0{letter-spacing:0.234880pt;}
.ls1c{letter-spacing:0.255360pt;}
.lsc{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.262080pt;}
.ls5f{letter-spacing:0.263680pt;}
.ls52{letter-spacing:0.269973pt;}
.ls3b{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.320640pt;}
.ls17{letter-spacing:0.340480pt;}
.ls5a{letter-spacing:0.357120pt;}
.ls30{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.510720pt;}
.ls3d{letter-spacing:0.543467pt;}
.ls75{letter-spacing:0.556800pt;}
.ls41{letter-spacing:0.576000pt;}
.ls61{letter-spacing:0.748160pt;}
.ls5c{letter-spacing:0.851200pt;}
.ls26{letter-spacing:1.021440pt;}
.ls9{letter-spacing:1.175680pt;}
.ls88{letter-spacing:1.272960pt;}
.ls80{letter-spacing:1.871253pt;}
.ls87{letter-spacing:2.171520pt;}
.ls7d{letter-spacing:2.286080pt;}
.ls6d{letter-spacing:2.304000pt;}
.ls8b{letter-spacing:2.389120pt;}
.ls2c{letter-spacing:2.396160pt;}
.ls8c{letter-spacing:2.432000pt;}
.ls68{letter-spacing:2.885760pt;}
.ls67{letter-spacing:3.461120pt;}
.ls8a{letter-spacing:3.669120pt;}
.ls8d{letter-spacing:3.788800pt;}
.ls62{letter-spacing:3.854080pt;}
.ls1f{letter-spacing:3.968000pt;}
.ls60{letter-spacing:4.101120pt;}
.ls64{letter-spacing:4.494080pt;}
.ls72{letter-spacing:4.696320pt;}
.ls77{letter-spacing:5.267200pt;}
.ls84{letter-spacing:5.392640pt;}
.ls74{letter-spacing:5.510400pt;}
.ls6a{letter-spacing:5.721600pt;}
.ls7b{letter-spacing:5.853973pt;}
.ls76{letter-spacing:6.003200pt;}
.ls44{letter-spacing:6.320640pt;}
.ls45{letter-spacing:6.520320pt;}
.ls6c{letter-spacing:10.438400pt;}
.ls69{letter-spacing:11.856640pt;}
.ls6b{letter-spacing:12.353280pt;}
.ls7c{letter-spacing:14.272000pt;}
.ls89{letter-spacing:14.464000pt;}
.ls65{letter-spacing:17.742080pt;}
.ls4d{letter-spacing:19.520000pt;}
.ls4e{letter-spacing:24.514560pt;}
.ls83{letter-spacing:25.791360pt;}
.ls82{letter-spacing:26.472320pt;}
.ls71{letter-spacing:27.736320pt;}
.ls11{letter-spacing:28.964480pt;}
.ls70{letter-spacing:29.072640pt;}
.lsa{letter-spacing:29.926400pt;}
.ls78{letter-spacing:32.243200pt;}
.ls21{letter-spacing:35.968000pt;}
.ls22{letter-spacing:39.168000pt;}
.ls20{letter-spacing:39.808000pt;}
.ls4b{letter-spacing:40.221440pt;}
.ls33{letter-spacing:40.665600pt;}
.ls4a{letter-spacing:40.861440pt;}
.ls2f{letter-spacing:40.861973pt;}
.ls32{letter-spacing:41.052693pt;}
.ls50{letter-spacing:46.126080pt;}
.ls3f{letter-spacing:47.923200pt;}
.ls3c{letter-spacing:48.428800pt;}
.ls5d{letter-spacing:58.570240pt;}
.ls7{letter-spacing:60.894720pt;}
.ls5e{letter-spacing:66.223360pt;}
.ls1e{letter-spacing:72.993280pt;}
.ls81{letter-spacing:73.032960pt;}
.ls86{letter-spacing:78.698880pt;}
.ls73{letter-spacing:86.688000pt;}
.ls15{letter-spacing:90.567680pt;}
.ls42{letter-spacing:94.112000pt;}
.ls43{letter-spacing:94.124160pt;}
.ls6{letter-spacing:99.200000pt;}
.ls10{letter-spacing:106.559360pt;}
.ls12{letter-spacing:106.592000pt;}
.ls1d{letter-spacing:110.400000pt;}
.ls2b{letter-spacing:301.501120pt;}
.ls29{letter-spacing:328.931413pt;}
.ls31{letter-spacing:346.848000pt;}
.ls47{letter-spacing:656.837867pt;}
.ls3e{letter-spacing:876.548267pt;}
.ls46{letter-spacing:905.384000pt;}
.ws87{word-spacing:-192.000000pt;}
.ws8d{word-spacing:-170.880000pt;}
.ws49{word-spacing:-149.120000pt;}
.ws3f{word-spacing:-128.000000pt;}
.ws58{word-spacing:-106.880000pt;}
.ws88{word-spacing:-96.000000pt;}
.ws9d{word-spacing:-95.808000pt;}
.ws66{word-spacing:-85.120000pt;}
.ws33{word-spacing:-74.880000pt;}
.ws3a{word-spacing:-54.400000pt;}
.ws39{word-spacing:-54.291200pt;}
.ws9c{word-spacing:-52.800000pt;}
.ws95{word-spacing:-52.416000pt;}
.ws22{word-spacing:-34.944000pt;}
.ws23{word-spacing:-34.816000pt;}
.ws69{word-spacing:-29.605760pt;}
.ws24{word-spacing:-29.498880pt;}
.ws12{word-spacing:-29.285120pt;}
.ws50{word-spacing:-29.178240pt;}
.ws4f{word-spacing:-29.071360pt;}
.ws6{word-spacing:-28.964480pt;}
.ws41{word-spacing:-26.784000pt;}
.ws13{word-spacing:-26.400000pt;}
.ws4e{word-spacing:-26.112000pt;}
.ws7c{word-spacing:-24.174080pt;}
.ws11{word-spacing:-23.834240pt;}
.ws91{word-spacing:-23.808000pt;}
.ws31{word-spacing:-23.493120pt;}
.ws2f{word-spacing:-23.408000pt;}
.ws1{word-spacing:-23.322880pt;}
.ws5e{word-spacing:-23.237760pt;}
.ws0{word-spacing:-23.152640pt;}
.ws7d{word-spacing:-23.067520pt;}
.ws65{word-spacing:-22.641920pt;}
.ws8c{word-spacing:-22.471680pt;}
.ws40{word-spacing:-21.408000pt;}
.ws7b{word-spacing:-21.280000pt;}
.ws34{word-spacing:-20.966400pt;}
.ws3c{word-spacing:-20.442240pt;}
.ws59{word-spacing:-20.292480pt;}
.ws14{word-spacing:-18.896640pt;}
.ws48{word-spacing:-17.664000pt;}
.ws64{word-spacing:-17.619840pt;}
.ws2d{word-spacing:-17.600000pt;}
.wsa2{word-spacing:-17.536000pt;}
.ws38{word-spacing:-16.623360pt;}
.ws9f{word-spacing:-16.174080pt;}
.ws63{word-spacing:-15.664000pt;}
.ws2e{word-spacing:-15.607040pt;}
.ws9e{word-spacing:-15.350400pt;}
.ws92{word-spacing:-14.656000pt;}
.ws2c{word-spacing:-14.464000pt;}
.ws62{word-spacing:-14.080000pt;}
.wsa1{word-spacing:-13.888000pt;}
.wsa0{word-spacing:-13.824000pt;}
.ws2{word-spacing:-2.583680pt;}
.ws6e{word-spacing:-2.048000pt;}
.ws5c{word-spacing:-2.030720pt;}
.ws6c{word-spacing:-1.600000pt;}
.ws55{word-spacing:-1.572480pt;}
.ws52{word-spacing:-1.440000pt;}
.ws72{word-spacing:-1.408000pt;}
.ws4{word-spacing:-1.389440pt;}
.ws8b{word-spacing:-1.198080pt;}
.ws86{word-spacing:-1.175680pt;}
.ws67{word-spacing:-1.152000pt;}
.ws79{word-spacing:-1.123200pt;}
.ws83{word-spacing:-1.106560pt;}
.ws15{word-spacing:-1.068800pt;}
.ws54{word-spacing:-0.973440pt;}
.ws5a{word-spacing:-0.960000pt;}
.ws77{word-spacing:-0.898560pt;}
.ws89{word-spacing:-0.864000pt;}
.ws18{word-spacing:-0.855040pt;}
.wsd{word-spacing:-0.768000pt;}
.ws57{word-spacing:-0.766080pt;}
.ws7e{word-spacing:-0.748800pt;}
.ws1a{word-spacing:-0.748160pt;}
.ws71{word-spacing:-0.704000pt;}
.ws53{word-spacing:-0.672000pt;}
.ws81{word-spacing:-0.641280pt;}
.ws47{word-spacing:-0.599040pt;}
.ws17{word-spacing:-0.534400pt;}
.ws76{word-spacing:-0.524160pt;}
.ws2a{word-spacing:-0.510720pt;}
.ws25{word-spacing:-0.480000pt;}
.ws7f{word-spacing:-0.449280pt;}
.ws82{word-spacing:-0.427520pt;}
.ws1f{word-spacing:-0.425600pt;}
.ws7{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.320640pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.299520pt;}
.ws6d{word-spacing:-0.256000pt;}
.ws7a{word-spacing:-0.224640pt;}
.ws19{word-spacing:-0.213760pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.170240pt;}
.ws43{word-spacing:-0.149760pt;}
.ws4d{word-spacing:-0.149120pt;}
.wse{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.106880pt;}
.ws4c{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.085120pt;}
.ws6f{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws70{word-spacing:0.064000pt;}
.ws5d{word-spacing:0.074880pt;}
.ws20{word-spacing:0.085120pt;}
.ws5f{word-spacing:0.096000pt;}
.ws3{word-spacing:0.106880pt;}
.ws45{word-spacing:0.149760pt;}
.ws1d{word-spacing:0.170240pt;}
.ws8e{word-spacing:0.192000pt;}
.wsc{word-spacing:0.213760pt;}
.wsa5{word-spacing:0.224640pt;}
.ws1c{word-spacing:0.255360pt;}
.ws9{word-spacing:0.256000pt;}
.ws94{word-spacing:0.314944pt;}
.ws73{word-spacing:0.320000pt;}
.ws5b{word-spacing:0.320640pt;}
.ws80{word-spacing:0.340480pt;}
.ws78{word-spacing:0.374400pt;}
.ws2b{word-spacing:0.384000pt;}
.wsf{word-spacing:0.427520pt;}
.ws46{word-spacing:0.449280pt;}
.ws27{word-spacing:0.510720pt;}
.wsa{word-spacing:0.512000pt;}
.ws30{word-spacing:0.519232pt;}
.ws4b{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.595840pt;}
.ws9b{word-spacing:0.641280pt;}
.ws8a{word-spacing:0.672000pt;}
.ws21{word-spacing:0.749056pt;}
.ws99{word-spacing:0.766080pt;}
.ws60{word-spacing:0.768000pt;}
.ws56{word-spacing:0.823680pt;}
.ws10{word-spacing:0.832000pt;}
.ws74{word-spacing:0.851200pt;}
.wsa6{word-spacing:0.864000pt;}
.ws85{word-spacing:0.961920pt;}
.ws42{word-spacing:1.106560pt;}
.ws93{word-spacing:1.152000pt;}
.ws28{word-spacing:1.191680pt;}
.ws29{word-spacing:1.276800pt;}
.ws75{word-spacing:1.361920pt;}
.ws90{word-spacing:1.440000pt;}
.ws84{word-spacing:1.447040pt;}
.ws51{word-spacing:1.536000pt;}
.ws26{word-spacing:1.787520pt;}
.ws9a{word-spacing:2.553600pt;}
.ws96{word-spacing:3.712000pt;}
.ws97{word-spacing:22.016000pt;}
.ws3b{word-spacing:63.140267pt;}
.ws6a{word-spacing:151.263296pt;}
.ws3d{word-spacing:184.713984pt;}
.ws36{word-spacing:246.789504pt;}
.ws32{word-spacing:251.349696pt;}
.ws35{word-spacing:254.097600pt;}
.ws37{word-spacing:260.582400pt;}
.ws3e{word-spacing:281.024640pt;}
.ws68{word-spacing:337.792000pt;}
.wsa3{word-spacing:866.601707pt;}
.ws98{word-spacing:1427.360000pt;}
.wsa4{word-spacing:1427.366400pt;}
.ws61{word-spacing:4156.053333pt;}
.ws5{word-spacing:4188.693333pt;}
._10{margin-left:-2793.781333pt;}
._16{margin-left:-20.160000pt;}
._14{margin-left:-15.992896pt;}
._e{margin-left:-14.693760pt;}
._5{margin-left:-13.251008pt;}
._2{margin-left:-11.307904pt;}
._7{margin-left:-9.444352pt;}
._f{margin-left:-7.936000pt;}
._b{margin-left:-6.534976pt;}
._9{margin-left:-5.632000pt;}
._3{margin-left:-4.705344pt;}
._12{margin-left:-3.724800pt;}
._6{margin-left:-2.639744pt;}
._0{margin-left:-1.456256pt;}
._4{width:0.902272pt;}
._1{width:2.231360pt;}
._c{width:3.210752pt;}
._d{width:4.189760pt;}
._8{width:5.161600pt;}
._a{width:6.114240pt;}
._17{width:7.465856pt;}
._13{width:10.069653pt;}
._18{width:24.666048pt;}
._19{width:403.197995pt;}
._11{width:1327.009664pt;}
._15{width:1583.577280pt;}
._1a{width:1671.170709pt;}
.fs14{font-size:46.720000pt;}
.fs15{font-size:49.920000pt;}
.fsa{font-size:54.400000pt;}
.fs7{font-size:56.960000pt;}
.fse{font-size:62.080000pt;}
.fs5{font-size:64.000000pt;}
.fs10{font-size:70.400000pt;}
.fs13{font-size:71.040000pt;}
.fs8{font-size:74.880000pt;}
.fs9{font-size:78.080000pt;}
.fs2{font-size:85.120000pt;}
.fsb{font-size:93.440000pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fsd{font-size:108.800000pt;}
.fs12{font-size:124.800000pt;}
.fs4{font-size:128.000000pt;}
.fsf{font-size:140.160000pt;}
.fsc{font-size:149.120000pt;}
.fs11{font-size:170.880000pt;}
.fs3{font-size:192.000000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:8.021867pt;}
.y15a{bottom:27.494133pt;}
.yb{bottom:27.496533pt;}
.ye{bottom:27.976533pt;}
.yce{bottom:33.611787pt;}
.ydb{bottom:45.562000pt;}
.y98{bottom:50.146800pt;}
.yb4{bottom:50.396027pt;}
.y13a{bottom:59.209013pt;}
.ycd{bottom:59.381547pt;}
.y91{bottom:61.427867pt;}
.y2a{bottom:66.446533pt;}
.y14{bottom:66.841120pt;}
.y97{bottom:69.346800pt;}
.ya1{bottom:69.394267pt;}
.ya{bottom:71.156267pt;}
.yb3{bottom:75.996187pt;}
.y109{bottom:81.281333pt;}
.y7a{bottom:81.353760pt;}
.y43{bottom:82.137947pt;}
.ycc{bottom:84.811147pt;}
.y96{bottom:88.546800pt;}
.ya0{bottom:88.594267pt;}
.yf6{bottom:88.824533pt;}
.y139{bottom:89.937333pt;}
.y147{bottom:91.283493pt;}
.y89{bottom:93.513120pt;}
.yda{bottom:94.362000pt;}
.y29{bottom:97.166533pt;}
.y13{bottom:98.851680pt;}
.y18{bottom:98.869440pt;}
.yb2{bottom:101.596027pt;}
.y79{bottom:106.953600pt;}
.y42{bottom:107.737787pt;}
.y9f{bottom:107.794267pt;}
.y9{bottom:109.556267pt;}
.y108{bottom:110.081333pt;}
.y14e{bottom:114.124800pt;}
.ycb{bottom:114.582027pt;}
.y88{bottom:115.920960pt;}
.ye4{bottom:116.483227pt;}
.y146{bottom:117.996933pt;}
.y138{bottom:121.297333pt;}
.y66{bottom:126.035733pt;}
.y9e{bottom:126.994267pt;}
.yb1{bottom:127.195413pt;}
.y28{bottom:128.526533pt;}
.y12{bottom:130.862240pt;}
.y17{bottom:130.880000pt;}
.y78{bottom:132.553440pt;}
.y41{bottom:133.337627pt;}
.y150{bottom:136.472667pt;}
.y87{bottom:138.328800pt;}
.y107{bottom:138.881333pt;}
.y148{bottom:139.787067pt;}
.yca{bottom:140.191307pt;}
.yec{bottom:143.065333pt;}
.y60{bottom:144.160000pt;}
.yd9{bottom:147.962000pt;}
.y152{bottom:148.311093pt;}
.yb0{bottom:152.795253pt;}
.y8{bottom:154.505707pt;}
.y137{bottom:155.200693pt;}
.y77{bottom:158.153280pt;}
.y40{bottom:158.937467pt;}
.y74{bottom:160.900267pt;}
.y27{bottom:162.446533pt;}
.y11{bottom:162.872800pt;}
.y67{bottom:164.947200pt;}
.yc9{bottom:165.620907pt;}
.y106{bottom:167.681333pt;}
.ye3{bottom:167.682907pt;}
.y16{bottom:169.258880pt;}
.y151{bottom:173.910933pt;}
.yaf{bottom:182.396027pt;}
.y14f{bottom:182.524027pt;}
.y3f{bottom:184.537307pt;}
.y145{bottom:184.575093pt;}
.y30{bottom:185.216133pt;}
.y136{bottom:185.929013pt;}
.y7{bottom:186.516267pt;}
.yc8{bottom:191.220747pt;}
.y26{bottom:193.166533pt;}
.y10{bottom:194.883360pt;}
.y92{bottom:195.303067pt;}
.yd8{bottom:196.762000pt;}
.y71{bottom:197.663573pt;}
.y15{bottom:201.269440pt;}
.y6f{bottom:201.735067pt;}
.yae{bottom:207.995893pt;}
.y86{bottom:208.282400pt;}
.y3e{bottom:210.137147pt;}
.y144{bottom:211.288533pt;}
.y135{bottom:216.657333pt;}
.ye2{bottom:218.882587pt;}
.y2f{bottom:223.616133pt;}
.y25{bottom:223.886533pt;}
.yc7{bottom:224.821867pt;}
.y6{bottom:226.036267pt;}
.y94{bottom:228.975067pt;}
.y70{bottom:229.674133pt;}
.y6e{bottom:230.535067pt;}
.y157{bottom:231.831200pt;}
.yf{bottom:233.280000pt;}
.yad{bottom:233.596027pt;}
.y3d{bottom:235.736987pt;}
.y134{bottom:248.017333pt;}
.yf7{bottom:249.036800pt;}
.yd7{bottom:250.362000pt;}
.y24{bottom:255.246533pt;}
.y93{bottom:257.775067pt;}
.yac{bottom:259.195067pt;}
.y156{bottom:260.631200pt;}
.y3c{bottom:261.336827pt;}
.y90{bottom:263.582827pt;}
.ye1{bottom:270.082267pt;}
.y124{bottom:272.086267pt;}
.y5{bottom:272.116267pt;}
.y6a{bottom:274.263333pt;}
.y5f{bottom:275.218267pt;}
.y11e{bottom:275.574800pt;}
.ye6{bottom:281.293467pt;}
.y133{bottom:284.345653pt;}
.yab{bottom:284.794907pt;}
.y3b{bottom:286.936667pt;}
.y84{bottom:288.512587pt;}
.y8f{bottom:289.182667pt;}
.y155{bottom:289.431200pt;}
.yf9{bottom:290.643200pt;}
.y123{bottom:297.677200pt;}
.y154{bottom:300.447200pt;}
.yd6{bottom:300.602000pt;}
.y69{bottom:303.063333pt;}
.y19{bottom:307.705867pt;}
.yaa{bottom:310.394747pt;}
.y3a{bottom:312.536507pt;}
.y132{bottom:317.455413pt;}
.y83{bottom:320.523147pt;}
.y76{bottom:320.647360pt;}
.ye0{bottom:321.281947pt;}
.y9b{bottom:324.653067pt;}
.y1a{bottom:325.465867pt;}
.y153{bottom:329.247200pt;}
.y61{bottom:329.686133pt;}
.yf0{bottom:332.904933pt;}
.y8e{bottom:333.395867pt;}
.y119{bottom:335.669307pt;}
.y143{bottom:335.825733pt;}
.y39{bottom:338.136347pt;}
.y20{bottom:342.426400pt;}
.y9a{bottom:343.853067pt;}
.ya9{bottom:343.995867pt;}
.y75{bottom:346.247200pt;}
.y131{bottom:350.737333pt;}
.y95{bottom:352.254400pt;}
.y63{bottom:356.674027pt;}
.yd5{bottom:356.771600pt;}
.y82{bottom:358.919787pt;}
.y99{bottom:363.053067pt;}
.y38{bottom:363.736187pt;}
.y7c{bottom:365.125707pt;}
.y118{bottom:367.679867pt;}
.y1f{bottom:368.026240pt;}
.y142{bottom:370.240000pt;}
.ydf{bottom:372.481627pt;}
.y130{bottom:382.097333pt;}
.y62{bottom:382.273867pt;}
.y10e{bottom:384.018000pt;}
.y6d{bottom:384.913707pt;}
.y37{bottom:389.336027pt;}
.yfa{bottom:390.195200pt;}
.y81{bottom:390.930347pt;}
.y1e{bottom:393.626080pt;}
.ya6{bottom:394.585867pt;}
.y7b{bottom:397.136267pt;}
.y3{bottom:398.204800pt;}
.y159{bottom:399.142133pt;}
.yd4{bottom:403.162000pt;}
.y5d{bottom:404.078800pt;}
.y141{bottom:404.800000pt;}
.ya3{bottom:406.376400pt;}
.y36{bottom:414.935867pt;}
.y13c{bottom:415.812533pt;}
.y12f{bottom:416.009013pt;}
.yed{bottom:416.825067pt;}
.y6c{bottom:416.924267pt;}
.y110{bottom:418.578000pt;}
.y10d{bottom:418.578133pt;}
.y8d{bottom:418.858747pt;}
.y1d{bottom:419.225920pt;}
.y80{bottom:422.940907pt;}
.yde{bottom:423.681307pt;}
.ya2{bottom:425.576400pt;}
.y158{bottom:427.942133pt;}
.yc2{bottom:429.117040pt;}
.y9d{bottom:432.198533pt;}
.y2{bottom:433.084800pt;}
.y140{bottom:433.600000pt;}
.y117{bottom:444.479867pt;}
.y5e{bottom:444.616533pt;}
.y1c{bottom:444.825760pt;}
.y12e{bottom:446.737333pt;}
.y8c{bottom:450.869307pt;}
.y9c{bottom:451.398533pt;}
.yc1{bottom:451.524880pt;}
.y10f{bottom:453.138000pt;}
.y10c{bottom:453.138133pt;}
.yd3{bottom:453.402000pt;}
.y35{bottom:454.660853pt;}
.y7f{bottom:454.951467pt;}
.yf8{bottom:456.651200pt;}
.yeb{bottom:462.593733pt;}
.yd{bottom:463.686133pt;}
.y13f{bottom:466.879867pt;}
.y68{bottom:468.184667pt;}
.y14d{bottom:469.824133pt;}
.y1b{bottom:470.425600pt;}
.ya5{bottom:472.975200pt;}
.y105{bottom:473.110800pt;}
.yc0{bottom:473.932720pt;}
.ydd{bottom:474.880987pt;}
.y73{bottom:476.066827pt;}
.y12d{bottom:478.097333pt;}
.y23{bottom:478.533280pt;}
.y34{bottom:480.260693pt;}
.y8b{bottom:482.879867pt;}
.y6b{bottom:487.060800pt;}
.y14c{bottom:489.344133pt;}
.yea{bottom:491.561733pt;}
.ya4{bottom:492.175200pt;}
.y122{bottom:494.134160pt;}
.y13e{bottom:495.039867pt;}
.y85{bottom:495.900773pt;}
.ybf{bottom:496.340560pt;}
.y7e{bottom:496.381733pt;}
.y104{bottom:498.386773pt;}
.y72{bottom:498.474667pt;}
.yef{bottom:500.354240pt;}
.y22{bottom:504.133120pt;}
.y115{bottom:505.146720pt;}
.y33{bottom:505.860533pt;}
.yd2{bottom:509.402000pt;}
.yf3{bottom:509.947920pt;}
.yf5{bottom:511.221680pt;}
.y1{bottom:511.359600pt;}
.y129{bottom:512.496560pt;}
.ybe{bottom:518.748400pt;}
.y121{bottom:519.734000pt;}
.y59{bottom:519.905467pt;}
.yc{bottom:520.188267pt;}
.y56{bottom:520.225467pt;}
.y5c{bottom:520.385467pt;}
.y53{bottom:520.697627pt;}
.y8a{bottom:521.279733pt;}
.y116{bottom:521.279867pt;}
.y100{bottom:521.802560pt;}
.ye9{bottom:523.073733pt;}
.y13d{bottom:523.839867pt;}
.ydc{bottom:526.080667pt;}
.y7d{bottom:527.911333pt;}
.y21{bottom:529.732960pt;}
.y114{bottom:530.746560pt;}
.ye5{bottom:532.225467pt;}
.yee{bottom:532.364800pt;}
.yf2{bottom:535.547760pt;}
.ya8{bottom:537.815867pt;}
.y12b{bottom:537.818667pt;}
.y52{bottom:537.985467pt;}
.y103{bottom:537.988853pt;}
.y128{bottom:538.096400pt;}
.y57{bottom:542.633307pt;}
.y54{bottom:542.768507pt;}
.y5a{bottom:542.781307pt;}
.yff{bottom:544.210400pt;}
.yf4{bottom:546.251600pt;}
.y5b{bottom:549.981467pt;}
.y55{bottom:549.984667pt;}
.y58{bottom:549.991067pt;}
.ye8{bottom:551.393733pt;}
.ybb{bottom:553.118800pt;}
.y113{bottom:556.346400pt;}
.yd1{bottom:558.202000pt;}
.yf1{bottom:561.147600pt;}
.ya7{bottom:563.415867pt;}
.y102{bottom:563.588693pt;}
.y11d{bottom:565.477333pt;}
.y10b{bottom:568.045893pt;}
.y127{bottom:568.816400pt;}
.yc6{bottom:570.571627pt;}
.y4c{bottom:575.198800pt;}
.y51{bottom:575.838933pt;}
.y49{bottom:575.990960pt;}
.y32{bottom:584.446667pt;}
.yfe{bottom:586.682347pt;}
.y101{bottom:589.188533pt;}
.y48{bottom:593.278800pt;}
.y10a{bottom:593.645733pt;}
.y11c{bottom:594.277333pt;}
.yc5{bottom:596.171467pt;}
.y4d{bottom:597.756400pt;}
.y4a{bottom:597.912080pt;}
.y4f{bottom:598.243120pt;}
.y2e{bottom:599.525947pt;}
.y126{bottom:600.176400pt;}
.y12a{bottom:603.210667pt;}
.y4e{bottom:604.958000pt;}
.y4b{bottom:605.284400pt;}
.y50{bottom:605.438000pt;}
.y120{bottom:612.192907pt;}
.yfd{bottom:612.282187pt;}
.y4{bottom:613.246667pt;}
.yb7{bottom:614.268533pt;}
.ye7{bottom:616.363333pt;}
.yb9{bottom:616.502800pt;}
.yb5{bottom:620.186933pt;}
.yc4{bottom:624.347360pt;}
.y14b{bottom:624.616667pt;}
.y2d{bottom:625.125787pt;}
.y46{bottom:630.383120pt;}
.yb8{bottom:633.211467pt;}
.yba{bottom:633.262000pt;}
.yb6{bottom:636.189333pt;}
.y12c{bottom:637.191467pt;}
.yd0{bottom:637.525867pt;}
.yfc{bottom:640.286027pt;}
.y31{bottom:642.046667pt;}
.y11b{bottom:643.593733pt;}
.y14a{bottom:646.536667pt;}
.yc3{bottom:646.755200pt;}
.y2c{bottom:650.725627pt;}
.y11f{bottom:650.749867pt;}
.y45{bottom:652.790960pt;}
.y64{bottom:657.998533pt;}
.y65{bottom:659.037867pt;}
.y125{bottom:659.300533pt;}
.yfb{bottom:665.566667pt;}
.y149{bottom:666.216667pt;}
.y112{bottom:667.218960pt;}
.y47{bottom:667.518800pt;}
.y11a{bottom:669.193867pt;}
.ybd{bottom:673.694267pt;}
.y44{bottom:675.198800pt;}
.y2b{bottom:676.325467pt;}
.ybc{bottom:686.042133pt;}
.y111{bottom:689.626800pt;}
.y13b{bottom:692.765200pt;}
.h10{height:38.010937pt;}
.h7{height:44.343750pt;}
.h30{height:44.718750pt;}
.h6{height:48.062500pt;}
.h33{height:48.125000pt;}
.h23{height:48.510500pt;}
.h34{height:52.320937pt;}
.hf{height:52.503750pt;}
.h11{height:56.233125pt;}
.hc{height:56.306250pt;}
.h36{height:56.324688pt;}
.h25{height:56.358565pt;}
.h2a{height:57.730725pt;}
.h1c{height:58.977187pt;}
.h22{height:59.475937pt;}
.h32{height:59.888750pt;}
.h3{height:63.923125pt;}
.h2d{height:63.925685pt;}
.h31{height:63.930805pt;}
.ha{height:64.006250pt;}
.h37{height:64.904592pt;}
.h35{height:65.530937pt;}
.h21{height:66.371312pt;}
.h1e{height:66.372485pt;}
.h1d{height:66.375792pt;}
.h1b{height:67.078125pt;}
.h26{height:68.337865pt;}
.h1f{height:68.374452pt;}
.h27{height:68.374985pt;}
.h29{height:68.375625pt;}
.h20{height:68.376905pt;}
.h2e{height:68.391732pt;}
.h28{height:68.415945pt;}
.h9{height:72.093750pt;}
.h14{height:72.187500pt;}
.h2b{height:74.680312pt;}
.hd{height:76.600312pt;}
.he{height:76.786250pt;}
.h3a{height:76.862500pt;}
.h15{height:76.925000pt;}
.h38{height:77.316218pt;}
.h2{height:80.264375pt;}
.h19{height:80.302775pt;}
.h8{height:80.368750pt;}
.h39{height:84.390625pt;}
.h2f{height:85.337215pt;}
.h13{height:89.437500pt;}
.h5{height:96.125000pt;}
.h12{height:96.250000pt;}
.h24{height:96.441658pt;}
.h18{height:104.194687pt;}
.h1a{height:107.488021pt;}
.h16{height:112.131250pt;}
.h17{height:116.288583pt;}
.h2c{height:119.399062pt;}
.h4{height:144.187500pt;}
.hb{height:146.914612pt;}
.h1{height:176.389375pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x49{left:14.231067pt;}
.x50{left:19.018533pt;}
.x19{left:25.505067pt;}
.x17{left:28.281200pt;}
.x56{left:30.692533pt;}
.x18{left:38.170933pt;}
.x74{left:44.470400pt;}
.xb{left:49.600000pt;}
.x3c{left:52.560267pt;}
.x1a{left:55.594987pt;}
.x4{left:73.600000pt;}
.x75{left:74.542400pt;}
.x3e{left:78.996267pt;}
.xc{left:85.538400pt;}
.x70{left:96.606800pt;}
.x7{left:109.600000pt;}
.x3d{left:110.652667pt;}
.x69{left:119.499333pt;}
.x5{left:121.600000pt;}
.x4a{left:130.423467pt;}
.x6f{left:135.158800pt;}
.x37{left:137.082800pt;}
.x6d{left:143.805333pt;}
.x6{left:151.680000pt;}
.x11{left:162.933333pt;}
.x9{left:176.382133pt;}
.x6a{left:177.331600pt;}
.x3b{left:180.814267pt;}
.x8b{left:198.812453pt;}
.x4c{left:210.015067pt;}
.x12{left:210.933333pt;}
.x1{left:215.430000pt;}
.x51{left:218.390667pt;}
.x66{left:221.883200pt;}
.x65{left:223.660267pt;}
.x8a{left:232.271867pt;}
.x7e{left:234.774267pt;}
.x8{left:276.159733pt;}
.x6e{left:296.521733pt;}
.x63{left:336.288400pt;}
.x4f{left:360.942000pt;}
.xf{left:371.732133pt;}
.x64{left:384.288400pt;}
.x47{left:430.449600pt;}
.x2{left:442.950000pt;}
.x87{left:447.187333pt;}
.x7d{left:463.151600pt;}
.x53{left:484.468933pt;}
.x84{left:486.574000pt;}
.x2c{left:488.762533pt;}
.x1b{left:493.719200pt;}
.x7f{left:499.970427pt;}
.xa{left:507.800000pt;}
.x3{left:512.230000pt;}
.x21{left:513.239200pt;}
.x71{left:523.974800pt;}
.x73{left:534.169733pt;}
.x52{left:541.625333pt;}
.x41{left:558.829467pt;}
.x43{left:564.457333pt;}
.x60{left:582.006800pt;}
.x36{left:591.668133pt;}
.x72{left:604.023733pt;}
.x3f{left:606.004267pt;}
.x4b{left:607.032400pt;}
.x33{left:608.060400pt;}
.x1c{left:636.683840pt;}
.xd{left:660.266667pt;}
.x88{left:665.581067pt;}
.x79{left:669.342267pt;}
.x61{left:672.266667pt;}
.xe{left:696.266667pt;}
.x59{left:699.691467pt;}
.x38{left:705.600133pt;}
.x54{left:720.320267pt;}
.x68{left:734.399867pt;}
.x67{left:736.376400pt;}
.x7a{left:742.769867pt;}
.x1f{left:747.113120pt;}
.x1d{left:748.704320pt;}
.x77{left:751.600000pt;}
.x1e{left:762.145280pt;}
.x6c{left:776.470400pt;}
.x89{left:785.704400pt;}
.x5a{left:786.798267pt;}
.x39{left:790.406507pt;}
.x13{left:802.427733pt;}
.x31{left:809.876000pt;}
.x7b{left:813.440000pt;}
.x14{left:832.538933pt;}
.x8c{left:857.700400pt;}
.x22{left:859.247440pt;}
.x4e{left:867.285467pt;}
.x6b{left:870.686667pt;}
.x10{left:879.159200pt;}
.x35{left:881.556000pt;}
.x32{left:882.516133pt;}
.x34{left:884.596133pt;}
.x4d{left:886.160133pt;}
.x5c{left:887.702933pt;}
.x7c{left:896.876667pt;}
.x83{left:908.944400pt;}
.x45{left:910.240853pt;}
.x55{left:912.717067pt;}
.x15{left:926.933333pt;}
.x42{left:934.340400pt;}
.x57{left:939.154533pt;}
.x46{left:940.330773pt;}
.x81{left:945.739067pt;}
.x5e{left:948.772667pt;}
.x44{left:952.502933pt;}
.x76{left:958.568000pt;}
.x8d{left:963.406400pt;}
.x58{left:969.240933pt;}
.x23{left:970.856080pt;}
.x40{left:972.965467pt;}
.x25{left:977.718267pt;}
.x2d{left:979.962160pt;}
.x5d{left:982.776533pt;}
.x5f{left:989.225387pt;}
.x20{left:995.403600pt;}
.x2e{left:1011.158267pt;}
.x24{left:1012.278267pt;}
.x82{left:1024.863067pt;}
.x80{left:1027.227067pt;}
.x48{left:1043.880400pt;}
.x26{left:1076.821947pt;}
.x2f{left:1084.010427pt;}
.x28{left:1086.735733pt;}
.x78{left:1088.697467pt;}
.x85{left:1113.726933pt;}
.x30{left:1125.455733pt;}
.x27{left:1128.655733pt;}
.x3a{left:1132.796240pt;}
.x5b{left:1168.840933pt;}
.x86{left:1182.562533pt;}
.x2b{left:1188.563600pt;}
.x62{left:1189.973333pt;}
.x16{left:1198.133333pt;}
.x29{left:1199.767093pt;}
.x2a{left:1220.563600pt;}
}




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