
    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_8caa278fc330ffc0e4e3c120.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_4add9fb0dfb0a27af4de9e17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.844238;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_07595aa28e9c370daf7145c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_52c1589ceaa7f6194282fc1a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d2c1be71482ae8b6425e039a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f7d8a7fd191974a628eb4265.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687012;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_b215771ee0af933aa90b391b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_dfa1671785f62bb434835753.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_85a09cbbc973a17df7156f18.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_b8963aa6b526e84b72d207d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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);}
.v1{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.lsee{letter-spacing:-0.500688px;}
.ls62{letter-spacing:-0.355752px;}
.lsca{letter-spacing:-0.303048px;}
.ls8f{letter-spacing:-0.296460px;}
.lsdc{letter-spacing:-0.276696px;}
.lse7{letter-spacing:-0.270108px;}
.lsa5{letter-spacing:-0.256932px;}
.lsfe{letter-spacing:-0.237168px;}
.lsba{letter-spacing:-0.184464px;}
.ls126{letter-spacing:-0.181944px;}
.ls4c{letter-spacing:-0.177876px;}
.ls51{letter-spacing:-0.164700px;}
.ls129{letter-spacing:-0.158400px;}
.lsa8{letter-spacing:-0.158112px;}
.lsa3{letter-spacing:-0.151524px;}
.ls8a{letter-spacing:-0.144936px;}
.lsa9{letter-spacing:-0.138348px;}
.ls52{letter-spacing:-0.131760px;}
.ls4e{letter-spacing:-0.125172px;}
.ls4a{letter-spacing:-0.118584px;}
.ls5f{letter-spacing:-0.111996px;}
.ls50{letter-spacing:-0.105408px;}
.ls8b{letter-spacing:-0.098820px;}
.ls67{letter-spacing:-0.092232px;}
.lsaa{letter-spacing:-0.085644px;}
.ls127{letter-spacing:-0.079200px;}
.ls5b{letter-spacing:-0.079056px;}
.ls61{letter-spacing:-0.072468px;}
.ls5a{letter-spacing:-0.065880px;}
.ls53{letter-spacing:-0.059292px;}
.ls54{letter-spacing:-0.052704px;}
.ls5e{letter-spacing:-0.046116px;}
.ls57{letter-spacing:-0.039528px;}
.ls49{letter-spacing:-0.032940px;}
.ls47{letter-spacing:-0.026352px;}
.ls128{letter-spacing:-0.021600px;}
.ls55{letter-spacing:-0.019764px;}
.ls123{letter-spacing:-0.014400px;}
.ls59{letter-spacing:-0.013176px;}
.ls124{letter-spacing:-0.007200px;}
.ls4b{letter-spacing:-0.006588px;}
.ls45{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.006588px;}
.ls4{letter-spacing:0.013176px;}
.ls122{letter-spacing:0.014400px;}
.lsc4{letter-spacing:0.016344px;}
.lsf{letter-spacing:0.019764px;}
.ls11d{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.026352px;}
.ls11e{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.032940px;}
.ls11f{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.039528px;}
.ls119{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.046116px;}
.ls120{letter-spacing:0.050400px;}
.ls8{letter-spacing:0.052704px;}
.ls5{letter-spacing:0.059292px;}
.ls16{letter-spacing:0.065880px;}
.ls11c{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.072468px;}
.ls0{letter-spacing:0.079056px;}
.ls121{letter-spacing:0.079200px;}
.lse{letter-spacing:0.085644px;}
.ls6{letter-spacing:0.092232px;}
.lsd{letter-spacing:0.098820px;}
.ls26{letter-spacing:0.105408px;}
.ls43{letter-spacing:0.111996px;}
.ls3{letter-spacing:0.118584px;}
.ls18{letter-spacing:0.125172px;}
.ls9a{letter-spacing:0.131760px;}
.ls15{letter-spacing:0.138348px;}
.ls40{letter-spacing:0.144936px;}
.lsa4{letter-spacing:0.151524px;}
.ls31{letter-spacing:0.158112px;}
.ls1{letter-spacing:0.164700px;}
.lsd6{letter-spacing:0.168696px;}
.ls94{letter-spacing:0.171288px;}
.ls2a{letter-spacing:0.177876px;}
.ls11a{letter-spacing:0.180000px;}
.ls11b{letter-spacing:0.180468px;}
.ls125{letter-spacing:0.181944px;}
.ls93{letter-spacing:0.184464px;}
.ls39{letter-spacing:0.191052px;}
.ls1e{letter-spacing:0.197640px;}
.ls56{letter-spacing:0.204228px;}
.ls89{letter-spacing:0.210816px;}
.ls17{letter-spacing:0.213912px;}
.lse9{letter-spacing:0.214128px;}
.ls20{letter-spacing:0.217404px;}
.ls48{letter-spacing:0.223992px;}
.ls7{letter-spacing:0.230580px;}
.lsa6{letter-spacing:0.237168px;}
.lsfb{letter-spacing:0.237636px;}
.ls72{letter-spacing:0.243756px;}
.ls7d{letter-spacing:0.250344px;}
.lsa1{letter-spacing:0.256932px;}
.ls8e{letter-spacing:0.263520px;}
.ls110{letter-spacing:0.270108px;}
.ls9e{letter-spacing:0.276696px;}
.ls10e{letter-spacing:0.279324px;}
.ls2b{letter-spacing:0.283284px;}
.ls99{letter-spacing:0.289872px;}
.ls92{letter-spacing:0.296460px;}
.ls46{letter-spacing:0.303048px;}
.ls58{letter-spacing:0.309636px;}
.lsdd{letter-spacing:0.316224px;}
.lscb{letter-spacing:0.322812px;}
.ls64{letter-spacing:0.329400px;}
.ls107{letter-spacing:0.331668px;}
.lsa7{letter-spacing:0.335988px;}
.ls8c{letter-spacing:0.342576px;}
.ls8d{letter-spacing:0.349164px;}
.lse6{letter-spacing:0.355752px;}
.ls12{letter-spacing:0.362340px;}
.ls35{letter-spacing:0.368928px;}
.ls86{letter-spacing:0.382104px;}
.lsa0{letter-spacing:0.388692px;}
.ls41{letter-spacing:0.395280px;}
.ls5d{letter-spacing:0.401868px;}
.lsc8{letter-spacing:0.408456px;}
.lsed{letter-spacing:0.415044px;}
.lsda{letter-spacing:0.421632px;}
.ls9f{letter-spacing:0.428220px;}
.ls60{letter-spacing:0.434808px;}
.ls84{letter-spacing:0.441396px;}
.ls90{letter-spacing:0.447984px;}
.lsce{letter-spacing:0.449604px;}
.ls111{letter-spacing:0.467748px;}
.ls68{letter-spacing:0.480924px;}
.ls10b{letter-spacing:0.507276px;}
.ls63{letter-spacing:0.513864px;}
.ls10c{letter-spacing:0.527040px;}
.ls5c{letter-spacing:0.540216px;}
.ls19{letter-spacing:0.592920px;}
.lscc{letter-spacing:0.594144px;}
.lsc2{letter-spacing:0.637272px;}
.lsff{letter-spacing:0.718092px;}
.lsac{letter-spacing:0.744444px;}
.lsdb{letter-spacing:0.810324px;}
.ls1a{letter-spacing:0.948672px;}
.lsb6{letter-spacing:0.970956px;}
.ls87{letter-spacing:0.976896px;}
.lsab{letter-spacing:1.258704px;}
.lsbb{letter-spacing:1.304424px;}
.ls69{letter-spacing:1.311012px;}
.lsc3{letter-spacing:1.593468px;}
.lsb1{letter-spacing:1.666548px;}
.lsde{letter-spacing:1.666764px;}
.ls30{letter-spacing:1.673352px;}
.ls95{letter-spacing:2.006964px;}
.lsbd{letter-spacing:2.022516px;}
.ls2f{letter-spacing:2.029104px;}
.lsb0{letter-spacing:2.154276px;}
.ls105{letter-spacing:2.344104px;}
.ls80{letter-spacing:2.364732px;}
.ls71{letter-spacing:2.391444px;}
.lsd5{letter-spacing:2.395296px;}
.lsb3{letter-spacing:2.399832px;}
.lsc5{letter-spacing:2.702484px;}
.lsb9{letter-spacing:2.747196px;}
.ls7f{letter-spacing:2.753784px;}
.ls81{letter-spacing:3.109536px;}
.lsf8{letter-spacing:3.440628px;}
.lsef{letter-spacing:3.448620px;}
.ls117{letter-spacing:3.465288px;}
.lsd0{letter-spacing:3.466872px;}
.ls75{letter-spacing:3.471876px;}
.ls98{letter-spacing:3.785472px;}
.ls83{letter-spacing:3.827628px;}
.ls82{letter-spacing:3.834216px;}
.lse5{letter-spacing:4.166964px;}
.ls115{letter-spacing:4.183380px;}
.ls6f{letter-spacing:4.189968px;}
.lsc6{letter-spacing:4.498668px;}
.ls2c{letter-spacing:4.552308px;}
.lsc1{letter-spacing:4.556304px;}
.ls70{letter-spacing:4.908060px;}
.lse3{letter-spacing:4.914648px;}
.lse2{letter-spacing:4.941612px;}
.lse8{letter-spacing:5.263812px;}
.ls6e{letter-spacing:5.270400px;}
.lsf2{letter-spacing:5.271120px;}
.lsd9{letter-spacing:5.302872px;}
.ls10f{letter-spacing:5.626152px;}
.ls6d{letter-spacing:5.632740px;}
.ls23{letter-spacing:5.988492px;}
.ls9b{letter-spacing:6.013764px;}
.lsec{letter-spacing:6.256764px;}
.ls66{letter-spacing:6.344244px;}
.ls22{letter-spacing:6.350832px;}
.lsaf{letter-spacing:6.387480px;}
.lsb4{letter-spacing:6.701292px;}
.ls65{letter-spacing:6.706584px;}
.ls3d{letter-spacing:6.713172px;}
.lsfa{letter-spacing:6.732216px;}
.ls78{letter-spacing:6.733476px;}
.ls2e{letter-spacing:7.068924px;}
.ls114{letter-spacing:7.424208px;}
.ls2d{letter-spacing:7.431264px;}
.lsc7{letter-spacing:7.788312px;}
.ls32{letter-spacing:7.793604px;}
.lsd7{letter-spacing:7.803864px;}
.ls73{letter-spacing:8.149356px;}
.ls74{letter-spacing:8.163360px;}
.ls113{letter-spacing:8.167248px;}
.lse4{letter-spacing:8.223156px;}
.lsfd{letter-spacing:8.505108px;}
.ls42{letter-spacing:8.511696px;}
.lse1{letter-spacing:8.748216px;}
.ls44{letter-spacing:8.874036px;}
.ls3b{letter-spacing:9.229788px;}
.lsf1{letter-spacing:9.582948px;}
.ls3c{letter-spacing:9.592128px;}
.ls1f{letter-spacing:9.947880px;}
.ls21{letter-spacing:9.954468px;}
.lseb{letter-spacing:9.970452px;}
.ls38{letter-spacing:10.245528px;}
.lsa2{letter-spacing:10.303632px;}
.ls36{letter-spacing:10.310220px;}
.lsbc{letter-spacing:10.665972px;}
.ls37{letter-spacing:10.672560px;}
.lsb8{letter-spacing:10.697364px;}
.ls29{letter-spacing:11.028312px;}
.lscd{letter-spacing:11.390652px;}
.lsf3{letter-spacing:11.413188px;}
.ls116{letter-spacing:11.746404px;}
.ls9c{letter-spacing:11.752992px;}
.ls9d{letter-spacing:12.108744px;}
.lsf9{letter-spacing:12.393288px;}
.ls28{letter-spacing:12.471084px;}
.lsea{letter-spacing:12.798288px;}
.lsfc{letter-spacing:12.813156px;}
.ls118{letter-spacing:12.826836px;}
.ls27{letter-spacing:12.833424px;}
.ls7e{letter-spacing:13.189176px;}
.ls7c{letter-spacing:13.551516px;}
.lsf5{letter-spacing:13.598928px;}
.ls4f{letter-spacing:13.907268px;}
.ls11{letter-spacing:13.913856px;}
.ls6c{letter-spacing:13.938048px;}
.ls4d{letter-spacing:14.263020px;}
.ls14{letter-spacing:14.269608px;}
.lsd8{letter-spacing:14.631948px;}
.ls1d{letter-spacing:14.987700px;}
.ls1b{letter-spacing:14.994288px;}
.ls3a{letter-spacing:15.350040px;}
.ls100{letter-spacing:15.683652px;}
.ls101{letter-spacing:15.712380px;}
.ls76{letter-spacing:16.068132px;}
.lsd4{letter-spacing:16.074720px;}
.ls77{letter-spacing:16.430472px;}
.lscf{letter-spacing:16.792812px;}
.ls7b{letter-spacing:17.143560px;}
.ls3e{letter-spacing:17.148564px;}
.ls91{letter-spacing:17.504316px;}
.ls3f{letter-spacing:17.510904px;}
.ls112{letter-spacing:17.817012px;}
.ls85{letter-spacing:17.873244px;}
.ls6b{letter-spacing:18.228996px;}
.ls6a{letter-spacing:18.591336px;}
.ls33{letter-spacing:18.953676px;}
.ls34{letter-spacing:19.309428px;}
.lsb5{letter-spacing:19.671768px;}
.lsbe{letter-spacing:20.027520px;}
.lsb7{letter-spacing:20.034108px;}
.lsd1{letter-spacing:20.389860px;}
.ls79{letter-spacing:20.752200px;}
.ls7a{letter-spacing:21.107952px;}
.lse0{letter-spacing:21.114540px;}
.lsdf{letter-spacing:21.470292px;}
.lsf6{letter-spacing:21.832632px;}
.lsf7{letter-spacing:22.188384px;}
.ls24{letter-spacing:22.550724px;}
.ls25{letter-spacing:22.913064px;}
.ls10d{letter-spacing:23.268816px;}
.ls102{letter-spacing:23.631156px;}
.ls88{letter-spacing:23.993496px;}
.ls10a{letter-spacing:24.349248px;}
.lsd2{letter-spacing:25.073928px;}
.lsd3{letter-spacing:25.429680px;}
.lsf0{letter-spacing:25.792020px;}
.lsf4{letter-spacing:26.510112px;}
.lsb2{letter-spacing:26.872452px;}
.lsc0{letter-spacing:27.590544px;}
.lsc9{letter-spacing:27.946296px;}
.lsbf{letter-spacing:27.952884px;}
.lsad{letter-spacing:28.308636px;}
.lsae{letter-spacing:28.670976px;}
.ls97{letter-spacing:29.033316px;}
.ls96{letter-spacing:29.389068px;}
.lsc{letter-spacing:30.831840px;}
.lsb{letter-spacing:31.194180px;}
.ls109{letter-spacing:31.549932px;}
.ls108{letter-spacing:31.912272px;}
.ls103{letter-spacing:34.073136px;}
.ls104{letter-spacing:34.428888px;}
.ls106{letter-spacing:849.107556px;}
.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;}
}
.ws6e{word-spacing:-93.826296px;}
.ws6b{word-spacing:-85.907520px;}
.ws4f{word-spacing:-83.384316px;}
.ws17{word-spacing:-80.143020px;}
.ws1c{word-spacing:-79.787268px;}
.ws8c{word-spacing:-78.706836px;}
.ws5a{word-spacing:-77.988744px;}
.ws8a{word-spacing:-77.626404px;}
.ws68{word-spacing:-76.545972px;}
.ws58{word-spacing:-76.183632px;}
.ws76{word-spacing:-75.827880px;}
.ws7f{word-spacing:-74.385108px;}
.ws80{word-spacing:-74.029356px;}
.ws75{word-spacing:-72.948924px;}
.ws3c{word-spacing:-72.586584px;}
.ws3d{word-spacing:-72.224244px;}
.ws8e{word-spacing:-72.000000px;}
.ws86{word-spacing:-71.506152px;}
.ws7a{word-spacing:-71.143812px;}
.ws89{word-spacing:-70.063380px;}
.ws4d{word-spacing:-69.707628px;}
.ws8b{word-spacing:-69.345288px;}
.ws63{word-spacing:-68.627196px;}
.ws69{word-spacing:-67.909104px;}
.ws6a{word-spacing:-67.902516px;}
.ws77{word-spacing:-67.546764px;}
.ws66{word-spacing:-67.184424px;}
.ws8d{word-spacing:-66.828672px;}
.ws49{word-spacing:-66.229164px;}
.ws3e{word-spacing:-66.103992px;}
.ws1{word-spacing:-65.880000px;}
.ws7c{word-spacing:-65.873412px;}
.ws7e{word-spacing:-65.827296px;}
.ws1f{word-spacing:-65.748240px;}
.ws8f{word-spacing:-47.880000px;}
.ws90{word-spacing:-17.992800px;}
.ws94{word-spacing:-17.841600px;}
.ws91{word-spacing:-12.151944px;}
.ws93{word-spacing:-11.788056px;}
.ws72{word-spacing:-0.876204px;}
.ws82{word-spacing:-0.783972px;}
.ws2e{word-spacing:-0.606096px;}
.ws85{word-spacing:-0.592920px;}
.ws39{word-spacing:-0.579744px;}
.ws83{word-spacing:-0.573156px;}
.ws42{word-spacing:-0.546804px;}
.ws88{word-spacing:-0.533628px;}
.ws4e{word-spacing:-0.513864px;}
.ws33{word-spacing:-0.500688px;}
.ws54{word-spacing:-0.494100px;}
.ws71{word-spacing:-0.487512px;}
.ws7b{word-spacing:-0.480924px;}
.ws2f{word-spacing:-0.467748px;}
.ws41{word-spacing:-0.461160px;}
.ws56{word-spacing:-0.454572px;}
.ws67{word-spacing:-0.447984px;}
.ws6c{word-spacing:-0.434808px;}
.ws3a{word-spacing:-0.428220px;}
.ws78{word-spacing:-0.421632px;}
.ws84{word-spacing:-0.415044px;}
.ws48{word-spacing:-0.408456px;}
.ws5f{word-spacing:-0.401868px;}
.ws3b{word-spacing:-0.395280px;}
.ws70{word-spacing:-0.388692px;}
.ws74{word-spacing:-0.382104px;}
.ws25{word-spacing:-0.375516px;}
.ws6{word-spacing:-0.368928px;}
.ws51{word-spacing:-0.362340px;}
.ws6d{word-spacing:-0.355752px;}
.ws35{word-spacing:-0.349164px;}
.ws5b{word-spacing:-0.342576px;}
.ws87{word-spacing:-0.335988px;}
.ws4a{word-spacing:-0.329400px;}
.ws57{word-spacing:-0.322812px;}
.ws4b{word-spacing:-0.316224px;}
.ws46{word-spacing:-0.309636px;}
.ws5e{word-spacing:-0.303048px;}
.ws50{word-spacing:-0.296460px;}
.wsc{word-spacing:-0.289872px;}
.ws2b{word-spacing:-0.283284px;}
.ws44{word-spacing:-0.276696px;}
.ws23{word-spacing:-0.270108px;}
.ws2a{word-spacing:-0.263520px;}
.ws19{word-spacing:-0.256932px;}
.ws52{word-spacing:-0.250344px;}
.ws2c{word-spacing:-0.243756px;}
.ws53{word-spacing:-0.237168px;}
.ws0{word-spacing:-0.230580px;}
.ws36{word-spacing:-0.223992px;}
.ws5c{word-spacing:-0.217404px;}
.ws40{word-spacing:-0.210816px;}
.wsa3{word-spacing:-0.208800px;}
.ws1a{word-spacing:-0.204228px;}
.ws55{word-spacing:-0.197640px;}
.ws37{word-spacing:-0.191052px;}
.ws3{word-spacing:-0.184464px;}
.ws43{word-spacing:-0.177876px;}
.ws32{word-spacing:-0.171288px;}
.wsf{word-spacing:-0.164700px;}
.ws7{word-spacing:-0.158112px;}
.ws10{word-spacing:-0.151524px;}
.ws28{word-spacing:-0.144936px;}
.wsa{word-spacing:-0.138348px;}
.ws1b{word-spacing:-0.131760px;}
.ws5{word-spacing:-0.125172px;}
.ws9{word-spacing:-0.118584px;}
.ws2{word-spacing:-0.111996px;}
.wsd{word-spacing:-0.105408px;}
.wsa2{word-spacing:-0.100800px;}
.ws15{word-spacing:-0.098820px;}
.wsb{word-spacing:-0.092232px;}
.wse{word-spacing:-0.085644px;}
.ws4{word-spacing:-0.079056px;}
.ws27{word-spacing:-0.072468px;}
.ws92{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.065880px;}
.ws14{word-spacing:-0.059292px;}
.ws26{word-spacing:-0.052704px;}
.wsa4{word-spacing:-0.050400px;}
.ws22{word-spacing:-0.046116px;}
.ws8{word-spacing:-0.039528px;}
.wsa6{word-spacing:-0.036000px;}
.ws11{word-spacing:-0.032940px;}
.ws9b{word-spacing:-0.028800px;}
.ws24{word-spacing:-0.026352px;}
.wsa1{word-spacing:-0.021600px;}
.ws30{word-spacing:-0.019764px;}
.wsa7{word-spacing:-0.014400px;}
.ws21{word-spacing:-0.013176px;}
.ws20{word-spacing:-0.006588px;}
.ws29{word-spacing:0.000000px;}
.ws34{word-spacing:0.006588px;}
.ws2d{word-spacing:0.013176px;}
.ws62{word-spacing:0.019764px;}
.wsa5{word-spacing:0.021600px;}
.ws3f{word-spacing:0.026352px;}
.ws47{word-spacing:0.032940px;}
.ws1d{word-spacing:0.039528px;}
.ws31{word-spacing:0.046116px;}
.ws12{word-spacing:0.052704px;}
.ws18{word-spacing:0.059292px;}
.ws64{word-spacing:0.065880px;}
.ws61{word-spacing:0.072468px;}
.ws45{word-spacing:0.079056px;}
.ws59{word-spacing:0.085644px;}
.ws60{word-spacing:0.092232px;}
.ws1e{word-spacing:0.098820px;}
.ws16{word-spacing:0.111996px;}
.ws65{word-spacing:0.118584px;}
.ws81{word-spacing:0.171288px;}
.ws5d{word-spacing:0.191052px;}
.ws79{word-spacing:0.204228px;}
.ws73{word-spacing:0.210816px;}
.ws4c{word-spacing:0.230580px;}
.ws6f{word-spacing:0.237168px;}
.ws38{word-spacing:0.289872px;}
.ws7d{word-spacing:0.434808px;}
.ws9d{word-spacing:12.204000px;}
.ws9e{word-spacing:12.211200px;}
.ws9f{word-spacing:18.979200px;}
.wsa0{word-spacing:19.000800px;}
.ws96{word-spacing:20.505600px;}
.ws95{word-spacing:20.563200px;}
.ws9c{word-spacing:30.578400px;}
.ws98{word-spacing:32.760000px;}
.ws97{word-spacing:32.774400px;}
.ws99{word-spacing:58.478400px;}
.ws9a{word-spacing:58.694400px;}
._f{margin-left:-58.792788px;}
._e{margin-left:-32.889600px;}
._11{margin-left:-29.620800px;}
._a{margin-left:-27.406080px;}
._9{margin-left:-20.370096px;}
._4{margin-left:-17.635968px;}
._d{margin-left:-13.507056px;}
._6{margin-left:-11.955564px;}
._5{margin-left:-10.652796px;}
._8{margin-left:-9.644832px;}
._c{margin-left:-8.458992px;}
._7{margin-left:-6.601176px;}
._b{margin-left:-5.342868px;}
._3{margin-left:-3.577284px;}
._0{margin-left:-1.087020px;}
._1{width:1.087020px;}
._2{width:4.189968px;}
._10{width:30.009600px;}
._14{width:113.760000px;}
._1a{width:169.560000px;}
._17{width:194.744592px;}
._19{width:205.560000px;}
._15{width:321.480000px;}
._13{width:362.520000px;}
._18{width:375.480000px;}
._12{width:399.240000px;}
._16{width:540.360000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.721170px;}
.y1{bottom:77.880450px;}
.y51{bottom:115.050108px;}
.ydd{bottom:115.050576px;}
.y98{bottom:116.399982px;}
.ybb{bottom:116.400450px;}
.y26{bottom:120.360108px;}
.y71{bottom:125.851890px;}
.y101{bottom:131.429514px;}
.y133{bottom:131.429982px;}
.y12b{bottom:131.430639px;}
.y16f{bottom:132.509982px;}
.y186{bottom:132.515856px;}
.y50{bottom:138.269514px;}
.ydc{bottom:138.269982px;}
.y158{bottom:139.352421px;}
.y198{bottom:139.353996px;}
.yba{bottom:139.530108px;}
.y97{bottom:139.531422px;}
.y25{bottom:143.490576px;}
.y70{bottom:149.071296px;}
.y100{bottom:154.559982px;}
.y132{bottom:154.560954px;}
.y16e{bottom:155.645121px;}
.ydb{bottom:161.399640px;}
.y4f{bottom:161.399982px;}
.y113{bottom:161.400108px;}
.yb9{bottom:162.749514px;}
.y96{bottom:162.750828px;}
.y24{bottom:166.709982px;}
.y12a{bottom:169.589982px;}
.y185{bottom:170.675199px;}
.y6f{bottom:172.201764px;}
.y157{bottom:177.511764px;}
.y197{bottom:177.513339px;}
.yff{bottom:177.691359px;}
.y131{bottom:177.691422px;}
.y4e{bottom:184.530108px;}
.y112{bottom:184.530576px;}
.yb8{bottom:185.879982px;}
.y23{bottom:189.843480px;}
.y129{bottom:192.720450px;}
.y16d{bottom:193.804464px;}
.y95{bottom:200.910171px;}
.y4d{bottom:207.749514px;}
.y111{bottom:207.749982px;}
.y184{bottom:208.834542px;}
.yb7{bottom:209.010108px;}
.y6e{bottom:210.361107px;}
.y156{bottom:215.671107px;}
.y196{bottom:215.672682px;}
.y128{bottom:215.850108px;}
.yfe{bottom:215.850702px;}
.y130{bottom:215.850765px;}
.y22{bottom:228.002823px;}
.y4c{bottom:230.879982px;}
.y110{bottom:230.880450px;}
.y16c{bottom:231.963807px;}
.yb6{bottom:232.229514px;}
.y94{bottom:239.069514px;}
.yfd{bottom:239.070108px;}
.y183{bottom:246.993885px;}
.y6d{bottom:248.520108px;}
.y195{bottom:253.832025px;}
.y155{bottom:253.833543px;}
.y10f{bottom:254.010108px;}
.y4b{bottom:254.010852px;}
.yda{bottom:254.011233px;}
.yb5{bottom:255.359982px;}
.y93{bottom:262.199982px;}
.yfc{bottom:262.200576px;}
.y21{bottom:266.162166px;}
.y16b{bottom:270.123150px;}
.y6c{bottom:271.650576px;}
.y194{bottom:276.962493px;}
.y10e{bottom:277.229514px;}
.y4a{bottom:277.230258px;}
.yd9{bottom:277.230639px;}
.yb4{bottom:278.490900px;}
.y182{bottom:285.153228px;}
.y127{bottom:285.330702px;}
.yfb{bottom:285.331044px;}
.y92{bottom:285.331827px;}
.y20{bottom:289.381572px;}
.y154{bottom:291.992886px;}
.y6b{bottom:294.869982px;}
.y10d{bottom:300.359982px;}
.y49{bottom:300.360726px;}
.yd8{bottom:300.361107px;}
.y16a{bottom:308.282493px;}
.yfa{bottom:308.550108px;}
.y91{bottom:308.551233px;}
.y193{bottom:315.121836px;}
.yb3{bottom:316.650243px;}
.y6a{bottom:318.000852px;}
.y181{bottom:323.312571px;}
.y10c{bottom:323.491170px;}
.y48{bottom:323.491194px;}
.y1f{bottom:327.540915px;}
.y153{bottom:330.152229px;}
.yf9{bottom:331.680576px;}
.yd7{bottom:338.520702px;}
.y69{bottom:341.220258px;}
.y169{bottom:346.441836px;}
.y90{bottom:346.710576px;}
.y47{bottom:346.710765px;}
.y192{bottom:353.281179px;}
.y152{bottom:353.282697px;}
.yb2{bottom:354.809586px;}
.yf8{bottom:354.811044px;}
.y180{bottom:361.471914px;}
.yd6{bottom:361.651170px;}
.y68{bottom:364.350726px;}
.y1e{bottom:365.700258px;}
.y8f{bottom:369.841044px;}
.y46{bottom:369.841233px;}
.y151{bottom:376.502103px;}
.yf7{bottom:378.029640px;}
.y126{bottom:378.030108px;}
.y1a7{bottom:384.691107px;}
.y168{bottom:384.691764px;}
.yd5{bottom:384.870576px;}
.y67{bottom:387.481194px;}
.y1d{bottom:388.830726px;}
.y191{bottom:391.440522px;}
.yb1{bottom:393.059514px;}
.y8e{bottom:393.060258px;}
.y10b{bottom:393.060450px;}
.y45{bottom:393.060639px;}
.y12f{bottom:393.060915px;}
.y17f{bottom:399.631257px;}
.y150{bottom:399.632571px;}
.yf6{bottom:401.160108px;}
.y125{bottom:401.160576px;}
.yd4{bottom:408.001044px;}
.y66{bottom:410.701422px;}
.y1c{bottom:411.961194px;}
.yb0{bottom:416.189982px;}
.y10a{bottom:416.190108px;}
.y8d{bottom:416.190726px;}
.y12e{bottom:416.191383px;}
.y1a6{bottom:422.850450px;}
.y167{bottom:422.851107px;}
.yf5{bottom:424.379514px;}
.y124{bottom:424.379982px;}
.y1d5{bottom:426.812223px;}
.y190{bottom:429.692142px;}
.y44{bottom:431.219982px;}
.yd3{bottom:431.220258px;}
.y1b{bottom:435.180108px;}
.y1d3{bottom:436.891863px;}
.y14f{bottom:437.791914px;}
.y17e{bottom:437.794329px;}
.yaf{bottom:439.320108px;}
.y109{bottom:439.320576px;}
.y8c{bottom:439.321194px;}
.y12d{bottom:439.321851px;}
.yf4{bottom:447.509982px;}
.y123{bottom:447.510108px;}
.y65{bottom:448.860765px;}
.y43{bottom:454.349640px;}
.yd2{bottom:454.350726px;}
.y1a{bottom:458.310576px;}
.y1d4{bottom:460.651485px;}
.y166{bottom:461.012610px;}
.y1a5{bottom:461.013267px;}
.yae{bottom:462.539514px;}
.y108{bottom:462.539982px;}
.y8b{bottom:462.540108px;}
.y18f{bottom:467.851485px;}
.yf3{bottom:470.640108px;}
.y122{bottom:470.640576px;}
.y1d2{bottom:470.642187px;}
.y14e{bottom:475.951257px;}
.y17d{bottom:475.953672px;}
.y42{bottom:477.480108px;}
.yd1{bottom:477.481194px;}
.y1bb{bottom:480.181890px;}
.y19{bottom:481.441044px;}
.y165{bottom:484.143078px;}
.yad{bottom:485.669982px;}
.y8a{bottom:485.670576px;}
.y107{bottom:485.671233px;}
.y64{bottom:487.020108px;}
.y18e{bottom:490.981953px;}
.yf2{bottom:493.859514px;}
.y121{bottom:493.859982px;}
.y1a4{bottom:499.172610px;}
.y17c{bottom:499.173078px;}
.y41{bottom:500.699514px;}
.yd0{bottom:500.700108px;}
.y1cf{bottom:501.691431px;}
.y18{bottom:504.659640px;}
.yac{bottom:508.800108px;}
.y89{bottom:508.801044px;}
.y106{bottom:508.801701px;}
.y63{bottom:510.150576px;}
.y14d{bottom:514.113861px;}
.yf1{bottom:516.989982px;}
.y120{bottom:516.990108px;}
.y1ba{bottom:518.341233px;}
.y164{bottom:522.302421px;}
.y40{bottom:523.829982px;}
.ycf{bottom:523.830576px;}
.y17{bottom:527.790108px;}
.y18d{bottom:529.141296px;}
.yab{bottom:532.019514px;}
.y88{bottom:532.019640px;}
.y62{bottom:533.281044px;}
.y1ce{bottom:535.441755px;}
.y1a3{bottom:537.331953px;}
.y17b{bottom:537.332421px;}
.y14c{bottom:537.333267px;}
.y11f{bottom:540.120576px;}
.yf0{bottom:540.121170px;}
.y1b9{bottom:541.471701px;}
.y3f{bottom:546.960702px;}
.yce{bottom:546.961044px;}
.y16{bottom:551.009514px;}
.yaa{bottom:555.149982px;}
.y87{bottom:555.150108px;}
.y61{bottom:556.500639px;}
.y163{bottom:560.461764px;}
.y11e{bottom:563.339982px;}
.yef{bottom:563.340576px;}
.y18c{bottom:567.300639px;}
.y1d1{bottom:569.641710px;}
.ycd{bottom:570.179640px;}
.y3e{bottom:570.180108px;}
.y15{bottom:574.139982px;}
.y1a2{bottom:575.491296px;}
.y17a{bottom:575.491764px;}
.y14b{bottom:575.492610px;}
.y86{bottom:578.280576px;}
.ya9{bottom:578.281170px;}
.y1b8{bottom:579.631044px;}
.y60{bottom:579.631107px;}
.y1d9{bottom:583.323339px;}
.y11d{bottom:586.470765px;}
.yee{bottom:586.471044px;}
.ycc{bottom:593.310108px;}
.y3d{bottom:593.310576px;}
.y14{bottom:597.270450px;}
.y162{bottom:598.621107px;}
.y85{bottom:601.499982px;}
.ya8{bottom:601.500576px;}
.y1b7{bottom:602.850108px;}
.y1d0{bottom:603.392034px;}
.y18b{bottom:605.459982px;}
.yed{bottom:609.690108px;}
.y11c{bottom:609.690171px;}
.y1a1{bottom:613.650639px;}
.y179{bottom:613.651107px;}
.y14a{bottom:613.651953px;}
.ycb{bottom:616.440576px;}
.y3c{bottom:616.441044px;}
.y5f{bottom:617.790450px;}
.y13{bottom:620.491485px;}
.y1d8{bottom:621.482682px;}
.y84{bottom:624.630108px;}
.ya7{bottom:624.631044px;}
.y1b6{bottom:625.980576px;}
.y140{bottom:625.980639px;}
.y18a{bottom:628.590450px;}
.yec{bottom:632.820576px;}
.y11b{bottom:632.820639px;}
.y161{bottom:636.780450px;}
.y1a0{bottom:636.781107px;}
.yca{bottom:639.659982px;}
.y3b{bottom:639.660108px;}
.y5e{bottom:641.010108px;}
.y12{bottom:643.621953px;}
.y83{bottom:647.849514px;}
.ya6{bottom:647.850108px;}
.y1b5{bottom:649.111044px;}
.y149{bottom:651.811296px;}
.y178{bottom:651.813924px;}
.yeb{bottom:655.951044px;}
.y11a{bottom:655.951107px;}
.y1d7{bottom:659.642025px;}
.yc9{bottom:662.790108px;}
.y3a{bottom:662.790576px;}
.y13f{bottom:664.139982px;}
.y5d{bottom:664.140576px;}
.y189{bottom:666.753861px;}
.y1cd{bottom:670.081764px;}
.y82{bottom:670.979982px;}
.ya5{bottom:670.980576px;}
.y1b4{bottom:672.330171px;}
.y160{bottom:674.944986px;}
.y19f{bottom:674.945049px;}
.yea{bottom:679.171422px;}
.y11{bottom:681.781296px;}
.yc8{bottom:686.009514px;}
.y39{bottom:686.009982px;}
.y5c{bottom:687.271044px;}
.y13e{bottom:687.271422px;}
.y148{bottom:689.970639px;}
.y177{bottom:689.973267px;}
.y1d6{bottom:693.392349px;}
.y119{bottom:694.110702px;}
.ya4{bottom:694.111044px;}
.y81{bottom:694.111890px;}
.y1cc{bottom:708.241107px;}
.y38{bottom:709.139640px;}
.yc7{bottom:709.139982px;}
.y1b3{bottom:710.489514px;}
.y5b{bottom:710.490108px;}
.y13d{bottom:710.490828px;}
.y147{bottom:713.101107px;}
.y15f{bottom:713.104329px;}
.y19e{bottom:713.104392px;}
.ya3{bottom:717.330108px;}
.ye9{bottom:717.330765px;}
.y80{bottom:717.331296px;}
.y10{bottom:719.940639px;}
.y176{bottom:728.132610px;}
.y37{bottom:732.270108px;}
.yc6{bottom:732.270450px;}
.y105{bottom:732.270702px;}
.y1b2{bottom:733.619982px;}
.y5a{bottom:733.620576px;}
.y13c{bottom:733.621296px;}
.ya2{bottom:740.460576px;}
.y7f{bottom:740.461764px;}
.y1cb{bottom:746.400450px;}
.y146{bottom:751.263672px;}
.y19d{bottom:751.263735px;}
.y36{bottom:755.489514px;}
.yc5{bottom:755.490108px;}
.y59{bottom:756.751044px;}
.y1b1{bottom:756.751233px;}
.yf{bottom:758.099982px;}
.ya1{bottom:763.591044px;}
.y175{bottom:766.291953px;}
.y1ca{bottom:771.060450px;}
.y13b{bottom:771.780639px;}
.y15e{bottom:774.483078px;}
.y35{bottom:778.619982px;}
.yc4{bottom:778.620576px;}
.y7e{bottom:778.621107px;}
.y1b0{bottom:779.970639px;}
.y58{bottom:779.971089px;}
.ye{bottom:781.230900px;}
.y118{bottom:786.809640px;}
.ya0{bottom:786.810258px;}
.y174{bottom:789.422421px;}
.y145{bottom:789.423015px;}
.y19c{bottom:789.423078px;}
.y1c9{bottom:797.790600px;}
.y12c{bottom:801.750702px;}
.yc3{bottom:801.751044px;}
.y34{bottom:801.751827px;}
.y57{bottom:803.101557px;}
.y188{bottom:804.451296px;}
.y13a{bottom:809.939982px;}
.y117{bottom:809.940108px;}
.y9f{bottom:809.940726px;}
.y15d{bottom:812.642421px;}
.y7d{bottom:816.780108px;}
.y1af{bottom:818.129982px;}
.yd{bottom:819.480828px;}
.y1c8{bottom:824.430600px;}
.yc2{bottom:824.969118px;}
.ye8{bottom:824.970108px;}
.y33{bottom:824.971233px;}
.y56{bottom:826.232025px;}
.y173{bottom:827.581764px;}
.y144{bottom:827.582358px;}
.y19b{bottom:827.582421px;}
.y116{bottom:833.070576px;}
.y139{bottom:833.070702px;}
.y9e{bottom:833.071194px;}
.y7c{bottom:839.910576px;}
.y1ae{bottom:841.260765px;}
.yc{bottom:842.611296px;}
.yc1{bottom:848.099586px;}
.ye7{bottom:848.100576px;}
.y32{bottom:848.101701px;}
.y15c{bottom:850.801764px;}
.y1c7{bottom:851.160450px;}
.y115{bottom:856.289982px;}
.y138{bottom:856.290108px;}
.y9d{bottom:856.290765px;}
.y7b{bottom:863.129982px;}
.y1ad{bottom:864.480171px;}
.y55{bottom:864.481953px;}
.y172{bottom:865.741107px;}
.y143{bottom:865.741701px;}
.y19a{bottom:865.741764px;}
.yc0{bottom:871.230054px;}
.ye6{bottom:871.231044px;}
.y1c6{bottom:877.620450px;}
.y137{bottom:879.420576px;}
.y9c{bottom:879.421233px;}
.yb{bottom:880.770639px;}
.y7a{bottom:886.260108px;}
.y31{bottom:886.261044px;}
.y1ac{bottom:887.610639px;}
.y142{bottom:888.961107px;}
.ye5{bottom:894.450108px;}
.y104{bottom:894.450765px;}
.y1c5{bottom:900.480450px;}
.y1c3{bottom:901.380450px;}
.y136{bottom:902.639982px;}
.y9b{bottom:902.640639px;}
.y54{bottom:902.641296px;}
.y187{bottom:903.900450px;}
.ya{bottom:903.901107px;}
.y171{bottom:903.905301px;}
.y79{bottom:909.479514px;}
.ybf{bottom:909.479982px;}
.y30{bottom:909.480108px;}
.ye4{bottom:917.580576px;}
.y103{bottom:917.581233px;}
.y1c4{bottom:925.050450px;}
.y1ab{bottom:925.769982px;}
.y135{bottom:925.770765px;}
.y9a{bottom:925.771107px;}
.y141{bottom:927.124707px;}
.y78{bottom:932.609982px;}
.ybe{bottom:932.610108px;}
.y2f{bottom:932.610576px;}
.ye3{bottom:940.799982px;}
.y53{bottom:940.800639px;}
.y9{bottom:942.064644px;}
.y1aa{bottom:948.900108px;}
.y15b{bottom:950.255175px;}
.y77{bottom:955.740108px;}
.ybd{bottom:955.740576px;}
.y2e{bottom:955.741044px;}
.ye2{bottom:963.930108px;}
.y99{bottom:963.930765px;}
.y102{bottom:963.931107px;}
.y8{bottom:965.284050px;}
.y1c2{bottom:971.760450px;}
.y1a9{bottom:972.119514px;}
.y76{bottom:978.959514px;}
.y2d{bottom:978.959640px;}
.y52{bottom:978.959982px;}
.y170{bottom:980.223987px;}
.ye1{bottom:987.060576px;}
.y15a{bottom:988.414518px;}
.y1c1{bottom:992.550450px;}
.y1a8{bottom:995.249982px;}
.ybc{bottom:1002.089640px;}
.y75{bottom:1002.089982px;}
.y2c{bottom:1002.090108px;}
.y7{bottom:1003.443393px;}
.ye0{bottom:1010.279982px;}
.y1c0{bottom:1013.250450px;}
.y199{bottom:1018.383330px;}
.y74{bottom:1025.220108px;}
.y2b{bottom:1025.220576px;}
.y159{bottom:1026.573861px;}
.ydf{bottom:1033.410450px;}
.y134{bottom:1033.412205px;}
.y1bf{bottom:1033.950450px;}
.y6{bottom:1041.602736px;}
.y73{bottom:1048.439514px;}
.y2a{bottom:1048.439982px;}
.y1be{bottom:1054.650450px;}
.yde{bottom:1056.542673px;}
.y5{bottom:1064.733204px;}
.y72{bottom:1071.569982px;}
.y29{bottom:1071.571548px;}
.y1bd{bottom:1075.260450px;}
.y114{bottom:1079.762079px;}
.y28{bottom:1094.702016px;}
.y1bc{bottom:1095.960450px;}
.y4{bottom:1102.892547px;}
.y27{bottom:1117.921422px;}
.y3{bottom:1141.051890px;}
.h2{height:43.909277px;}
.h3{height:45.035156px;}
.h1{height:47.286914px;}
.h7{height:47.287682px;}
.h9{height:47.288030px;}
.h6{height:47.288282px;}
.h5{height:47.288882px;}
.h4{height:47.290154px;}
.h8{height:47.292242px;}
.ha{height:49.992188px;}
.he{height:66.364205px;}
.hb{height:66.364805px;}
.hc{height:70.628906px;}
.hd{height:72.562500px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:127.619658px;}
.x4{left:181.620000px;}
.x5{left:269.550000px;}
.x9{left:559.621224px;}
.x7{left:681.390522px;}
.x8{left:683.370216px;}
.xa{left:687.869820px;}
.xb{left:692.730117px;}
.x6{left:709.560000px;}
.x3{left:748.710000px;}
.x1{left:757.080000px;}
@media print{
.v1{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.lsee{letter-spacing:-0.445056pt;}
.ls62{letter-spacing:-0.316224pt;}
.lsca{letter-spacing:-0.269376pt;}
.ls8f{letter-spacing:-0.263520pt;}
.lsdc{letter-spacing:-0.245952pt;}
.lse7{letter-spacing:-0.240096pt;}
.lsa5{letter-spacing:-0.228384pt;}
.lsfe{letter-spacing:-0.210816pt;}
.lsba{letter-spacing:-0.163968pt;}
.ls126{letter-spacing:-0.161728pt;}
.ls4c{letter-spacing:-0.158112pt;}
.ls51{letter-spacing:-0.146400pt;}
.ls129{letter-spacing:-0.140800pt;}
.lsa8{letter-spacing:-0.140544pt;}
.lsa3{letter-spacing:-0.134688pt;}
.ls8a{letter-spacing:-0.128832pt;}
.lsa9{letter-spacing:-0.122976pt;}
.ls52{letter-spacing:-0.117120pt;}
.ls4e{letter-spacing:-0.111264pt;}
.ls4a{letter-spacing:-0.105408pt;}
.ls5f{letter-spacing:-0.099552pt;}
.ls50{letter-spacing:-0.093696pt;}
.ls8b{letter-spacing:-0.087840pt;}
.ls67{letter-spacing:-0.081984pt;}
.lsaa{letter-spacing:-0.076128pt;}
.ls127{letter-spacing:-0.070400pt;}
.ls5b{letter-spacing:-0.070272pt;}
.ls61{letter-spacing:-0.064416pt;}
.ls5a{letter-spacing:-0.058560pt;}
.ls53{letter-spacing:-0.052704pt;}
.ls54{letter-spacing:-0.046848pt;}
.ls5e{letter-spacing:-0.040992pt;}
.ls57{letter-spacing:-0.035136pt;}
.ls49{letter-spacing:-0.029280pt;}
.ls47{letter-spacing:-0.023424pt;}
.ls128{letter-spacing:-0.019200pt;}
.ls55{letter-spacing:-0.017568pt;}
.ls123{letter-spacing:-0.012800pt;}
.ls59{letter-spacing:-0.011712pt;}
.ls124{letter-spacing:-0.006400pt;}
.ls4b{letter-spacing:-0.005856pt;}
.ls45{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.005856pt;}
.ls4{letter-spacing:0.011712pt;}
.ls122{letter-spacing:0.012800pt;}
.lsc4{letter-spacing:0.014528pt;}
.lsf{letter-spacing:0.017568pt;}
.ls11d{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.023424pt;}
.ls11e{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.029280pt;}
.ls11f{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.035136pt;}
.ls119{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.040992pt;}
.ls120{letter-spacing:0.044800pt;}
.ls8{letter-spacing:0.046848pt;}
.ls5{letter-spacing:0.052704pt;}
.ls16{letter-spacing:0.058560pt;}
.ls11c{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.064416pt;}
.ls0{letter-spacing:0.070272pt;}
.ls121{letter-spacing:0.070400pt;}
.lse{letter-spacing:0.076128pt;}
.ls6{letter-spacing:0.081984pt;}
.lsd{letter-spacing:0.087840pt;}
.ls26{letter-spacing:0.093696pt;}
.ls43{letter-spacing:0.099552pt;}
.ls3{letter-spacing:0.105408pt;}
.ls18{letter-spacing:0.111264pt;}
.ls9a{letter-spacing:0.117120pt;}
.ls15{letter-spacing:0.122976pt;}
.ls40{letter-spacing:0.128832pt;}
.lsa4{letter-spacing:0.134688pt;}
.ls31{letter-spacing:0.140544pt;}
.ls1{letter-spacing:0.146400pt;}
.lsd6{letter-spacing:0.149952pt;}
.ls94{letter-spacing:0.152256pt;}
.ls2a{letter-spacing:0.158112pt;}
.ls11a{letter-spacing:0.160000pt;}
.ls11b{letter-spacing:0.160416pt;}
.ls125{letter-spacing:0.161728pt;}
.ls93{letter-spacing:0.163968pt;}
.ls39{letter-spacing:0.169824pt;}
.ls1e{letter-spacing:0.175680pt;}
.ls56{letter-spacing:0.181536pt;}
.ls89{letter-spacing:0.187392pt;}
.ls17{letter-spacing:0.190144pt;}
.lse9{letter-spacing:0.190336pt;}
.ls20{letter-spacing:0.193248pt;}
.ls48{letter-spacing:0.199104pt;}
.ls7{letter-spacing:0.204960pt;}
.lsa6{letter-spacing:0.210816pt;}
.lsfb{letter-spacing:0.211232pt;}
.ls72{letter-spacing:0.216672pt;}
.ls7d{letter-spacing:0.222528pt;}
.lsa1{letter-spacing:0.228384pt;}
.ls8e{letter-spacing:0.234240pt;}
.ls110{letter-spacing:0.240096pt;}
.ls9e{letter-spacing:0.245952pt;}
.ls10e{letter-spacing:0.248288pt;}
.ls2b{letter-spacing:0.251808pt;}
.ls99{letter-spacing:0.257664pt;}
.ls92{letter-spacing:0.263520pt;}
.ls46{letter-spacing:0.269376pt;}
.ls58{letter-spacing:0.275232pt;}
.lsdd{letter-spacing:0.281088pt;}
.lscb{letter-spacing:0.286944pt;}
.ls64{letter-spacing:0.292800pt;}
.ls107{letter-spacing:0.294816pt;}
.lsa7{letter-spacing:0.298656pt;}
.ls8c{letter-spacing:0.304512pt;}
.ls8d{letter-spacing:0.310368pt;}
.lse6{letter-spacing:0.316224pt;}
.ls12{letter-spacing:0.322080pt;}
.ls35{letter-spacing:0.327936pt;}
.ls86{letter-spacing:0.339648pt;}
.lsa0{letter-spacing:0.345504pt;}
.ls41{letter-spacing:0.351360pt;}
.ls5d{letter-spacing:0.357216pt;}
.lsc8{letter-spacing:0.363072pt;}
.lsed{letter-spacing:0.368928pt;}
.lsda{letter-spacing:0.374784pt;}
.ls9f{letter-spacing:0.380640pt;}
.ls60{letter-spacing:0.386496pt;}
.ls84{letter-spacing:0.392352pt;}
.ls90{letter-spacing:0.398208pt;}
.lsce{letter-spacing:0.399648pt;}
.ls111{letter-spacing:0.415776pt;}
.ls68{letter-spacing:0.427488pt;}
.ls10b{letter-spacing:0.450912pt;}
.ls63{letter-spacing:0.456768pt;}
.ls10c{letter-spacing:0.468480pt;}
.ls5c{letter-spacing:0.480192pt;}
.ls19{letter-spacing:0.527040pt;}
.lscc{letter-spacing:0.528128pt;}
.lsc2{letter-spacing:0.566464pt;}
.lsff{letter-spacing:0.638304pt;}
.lsac{letter-spacing:0.661728pt;}
.lsdb{letter-spacing:0.720288pt;}
.ls1a{letter-spacing:0.843264pt;}
.lsb6{letter-spacing:0.863072pt;}
.ls87{letter-spacing:0.868352pt;}
.lsab{letter-spacing:1.118848pt;}
.lsbb{letter-spacing:1.159488pt;}
.ls69{letter-spacing:1.165344pt;}
.lsc3{letter-spacing:1.416416pt;}
.lsb1{letter-spacing:1.481376pt;}
.lsde{letter-spacing:1.481568pt;}
.ls30{letter-spacing:1.487424pt;}
.ls95{letter-spacing:1.783968pt;}
.lsbd{letter-spacing:1.797792pt;}
.ls2f{letter-spacing:1.803648pt;}
.lsb0{letter-spacing:1.914912pt;}
.ls105{letter-spacing:2.083648pt;}
.ls80{letter-spacing:2.101984pt;}
.ls71{letter-spacing:2.125728pt;}
.lsd5{letter-spacing:2.129152pt;}
.lsb3{letter-spacing:2.133184pt;}
.lsc5{letter-spacing:2.402208pt;}
.lsb9{letter-spacing:2.441952pt;}
.ls7f{letter-spacing:2.447808pt;}
.ls81{letter-spacing:2.764032pt;}
.lsf8{letter-spacing:3.058336pt;}
.lsef{letter-spacing:3.065440pt;}
.ls117{letter-spacing:3.080256pt;}
.lsd0{letter-spacing:3.081664pt;}
.ls75{letter-spacing:3.086112pt;}
.ls98{letter-spacing:3.364864pt;}
.ls83{letter-spacing:3.402336pt;}
.ls82{letter-spacing:3.408192pt;}
.lse5{letter-spacing:3.703968pt;}
.ls115{letter-spacing:3.718560pt;}
.ls6f{letter-spacing:3.724416pt;}
.lsc6{letter-spacing:3.998816pt;}
.ls2c{letter-spacing:4.046496pt;}
.lsc1{letter-spacing:4.050048pt;}
.ls70{letter-spacing:4.362720pt;}
.lse3{letter-spacing:4.368576pt;}
.lse2{letter-spacing:4.392544pt;}
.lse8{letter-spacing:4.678944pt;}
.ls6e{letter-spacing:4.684800pt;}
.lsf2{letter-spacing:4.685440pt;}
.lsd9{letter-spacing:4.713664pt;}
.ls10f{letter-spacing:5.001024pt;}
.ls6d{letter-spacing:5.006880pt;}
.ls23{letter-spacing:5.323104pt;}
.ls9b{letter-spacing:5.345568pt;}
.lsec{letter-spacing:5.561568pt;}
.ls66{letter-spacing:5.639328pt;}
.ls22{letter-spacing:5.645184pt;}
.lsaf{letter-spacing:5.677760pt;}
.lsb4{letter-spacing:5.956704pt;}
.ls65{letter-spacing:5.961408pt;}
.ls3d{letter-spacing:5.967264pt;}
.lsfa{letter-spacing:5.984192pt;}
.ls78{letter-spacing:5.985312pt;}
.ls2e{letter-spacing:6.283488pt;}
.ls114{letter-spacing:6.599296pt;}
.ls2d{letter-spacing:6.605568pt;}
.lsc7{letter-spacing:6.922944pt;}
.ls32{letter-spacing:6.927648pt;}
.lsd7{letter-spacing:6.936768pt;}
.ls73{letter-spacing:7.243872pt;}
.ls74{letter-spacing:7.256320pt;}
.ls113{letter-spacing:7.259776pt;}
.lse4{letter-spacing:7.309472pt;}
.lsfd{letter-spacing:7.560096pt;}
.ls42{letter-spacing:7.565952pt;}
.lse1{letter-spacing:7.776192pt;}
.ls44{letter-spacing:7.888032pt;}
.ls3b{letter-spacing:8.204256pt;}
.lsf1{letter-spacing:8.518176pt;}
.ls3c{letter-spacing:8.526336pt;}
.ls1f{letter-spacing:8.842560pt;}
.ls21{letter-spacing:8.848416pt;}
.lseb{letter-spacing:8.862624pt;}
.ls38{letter-spacing:9.107136pt;}
.lsa2{letter-spacing:9.158784pt;}
.ls36{letter-spacing:9.164640pt;}
.lsbc{letter-spacing:9.480864pt;}
.ls37{letter-spacing:9.486720pt;}
.lsb8{letter-spacing:9.508768pt;}
.ls29{letter-spacing:9.802944pt;}
.lscd{letter-spacing:10.125024pt;}
.lsf3{letter-spacing:10.145056pt;}
.ls116{letter-spacing:10.441248pt;}
.ls9c{letter-spacing:10.447104pt;}
.ls9d{letter-spacing:10.763328pt;}
.lsf9{letter-spacing:11.016256pt;}
.ls28{letter-spacing:11.085408pt;}
.lsea{letter-spacing:11.376256pt;}
.lsfc{letter-spacing:11.389472pt;}
.ls118{letter-spacing:11.401632pt;}
.ls27{letter-spacing:11.407488pt;}
.ls7e{letter-spacing:11.723712pt;}
.ls7c{letter-spacing:12.045792pt;}
.lsf5{letter-spacing:12.087936pt;}
.ls4f{letter-spacing:12.362016pt;}
.ls11{letter-spacing:12.367872pt;}
.ls6c{letter-spacing:12.389376pt;}
.ls4d{letter-spacing:12.678240pt;}
.ls14{letter-spacing:12.684096pt;}
.lsd8{letter-spacing:13.006176pt;}
.ls1d{letter-spacing:13.322400pt;}
.ls1b{letter-spacing:13.328256pt;}
.ls3a{letter-spacing:13.644480pt;}
.ls100{letter-spacing:13.941024pt;}
.ls101{letter-spacing:13.966560pt;}
.ls76{letter-spacing:14.282784pt;}
.lsd4{letter-spacing:14.288640pt;}
.ls77{letter-spacing:14.604864pt;}
.lscf{letter-spacing:14.926944pt;}
.ls7b{letter-spacing:15.238720pt;}
.ls3e{letter-spacing:15.243168pt;}
.ls91{letter-spacing:15.559392pt;}
.ls3f{letter-spacing:15.565248pt;}
.ls112{letter-spacing:15.837344pt;}
.ls85{letter-spacing:15.887328pt;}
.ls6b{letter-spacing:16.203552pt;}
.ls6a{letter-spacing:16.525632pt;}
.ls33{letter-spacing:16.847712pt;}
.ls34{letter-spacing:17.163936pt;}
.lsb5{letter-spacing:17.486016pt;}
.lsbe{letter-spacing:17.802240pt;}
.lsb7{letter-spacing:17.808096pt;}
.lsd1{letter-spacing:18.124320pt;}
.ls79{letter-spacing:18.446400pt;}
.ls7a{letter-spacing:18.762624pt;}
.lse0{letter-spacing:18.768480pt;}
.lsdf{letter-spacing:19.084704pt;}
.lsf6{letter-spacing:19.406784pt;}
.lsf7{letter-spacing:19.723008pt;}
.ls24{letter-spacing:20.045088pt;}
.ls25{letter-spacing:20.367168pt;}
.ls10d{letter-spacing:20.683392pt;}
.ls102{letter-spacing:21.005472pt;}
.ls88{letter-spacing:21.327552pt;}
.ls10a{letter-spacing:21.643776pt;}
.lsd2{letter-spacing:22.287936pt;}
.lsd3{letter-spacing:22.604160pt;}
.lsf0{letter-spacing:22.926240pt;}
.lsf4{letter-spacing:23.564544pt;}
.lsb2{letter-spacing:23.886624pt;}
.lsc0{letter-spacing:24.524928pt;}
.lsc9{letter-spacing:24.841152pt;}
.lsbf{letter-spacing:24.847008pt;}
.lsad{letter-spacing:25.163232pt;}
.lsae{letter-spacing:25.485312pt;}
.ls97{letter-spacing:25.807392pt;}
.ls96{letter-spacing:26.123616pt;}
.lsc{letter-spacing:27.406080pt;}
.lsb{letter-spacing:27.728160pt;}
.ls109{letter-spacing:28.044384pt;}
.ls108{letter-spacing:28.366464pt;}
.ls103{letter-spacing:30.287232pt;}
.ls104{letter-spacing:30.603456pt;}
.ls106{letter-spacing:754.762272pt;}
.ws6e{word-spacing:-83.401152pt;}
.ws6b{word-spacing:-76.362240pt;}
.ws4f{word-spacing:-74.119392pt;}
.ws17{word-spacing:-71.238240pt;}
.ws1c{word-spacing:-70.922016pt;}
.ws8c{word-spacing:-69.961632pt;}
.ws5a{word-spacing:-69.323328pt;}
.ws8a{word-spacing:-69.001248pt;}
.ws68{word-spacing:-68.040864pt;}
.ws58{word-spacing:-67.718784pt;}
.ws76{word-spacing:-67.402560pt;}
.ws7f{word-spacing:-66.120096pt;}
.ws80{word-spacing:-65.803872pt;}
.ws75{word-spacing:-64.843488pt;}
.ws3c{word-spacing:-64.521408pt;}
.ws3d{word-spacing:-64.199328pt;}
.ws8e{word-spacing:-64.000000pt;}
.ws86{word-spacing:-63.561024pt;}
.ws7a{word-spacing:-63.238944pt;}
.ws89{word-spacing:-62.278560pt;}
.ws4d{word-spacing:-61.962336pt;}
.ws8b{word-spacing:-61.640256pt;}
.ws63{word-spacing:-61.001952pt;}
.ws69{word-spacing:-60.363648pt;}
.ws6a{word-spacing:-60.357792pt;}
.ws77{word-spacing:-60.041568pt;}
.ws66{word-spacing:-59.719488pt;}
.ws8d{word-spacing:-59.403264pt;}
.ws49{word-spacing:-58.870368pt;}
.ws3e{word-spacing:-58.759104pt;}
.ws1{word-spacing:-58.560000pt;}
.ws7c{word-spacing:-58.554144pt;}
.ws7e{word-spacing:-58.513152pt;}
.ws1f{word-spacing:-58.442880pt;}
.ws8f{word-spacing:-42.560000pt;}
.ws90{word-spacing:-15.993600pt;}
.ws94{word-spacing:-15.859200pt;}
.ws91{word-spacing:-10.801728pt;}
.ws93{word-spacing:-10.478272pt;}
.ws72{word-spacing:-0.778848pt;}
.ws82{word-spacing:-0.696864pt;}
.ws2e{word-spacing:-0.538752pt;}
.ws85{word-spacing:-0.527040pt;}
.ws39{word-spacing:-0.515328pt;}
.ws83{word-spacing:-0.509472pt;}
.ws42{word-spacing:-0.486048pt;}
.ws88{word-spacing:-0.474336pt;}
.ws4e{word-spacing:-0.456768pt;}
.ws33{word-spacing:-0.445056pt;}
.ws54{word-spacing:-0.439200pt;}
.ws71{word-spacing:-0.433344pt;}
.ws7b{word-spacing:-0.427488pt;}
.ws2f{word-spacing:-0.415776pt;}
.ws41{word-spacing:-0.409920pt;}
.ws56{word-spacing:-0.404064pt;}
.ws67{word-spacing:-0.398208pt;}
.ws6c{word-spacing:-0.386496pt;}
.ws3a{word-spacing:-0.380640pt;}
.ws78{word-spacing:-0.374784pt;}
.ws84{word-spacing:-0.368928pt;}
.ws48{word-spacing:-0.363072pt;}
.ws5f{word-spacing:-0.357216pt;}
.ws3b{word-spacing:-0.351360pt;}
.ws70{word-spacing:-0.345504pt;}
.ws74{word-spacing:-0.339648pt;}
.ws25{word-spacing:-0.333792pt;}
.ws6{word-spacing:-0.327936pt;}
.ws51{word-spacing:-0.322080pt;}
.ws6d{word-spacing:-0.316224pt;}
.ws35{word-spacing:-0.310368pt;}
.ws5b{word-spacing:-0.304512pt;}
.ws87{word-spacing:-0.298656pt;}
.ws4a{word-spacing:-0.292800pt;}
.ws57{word-spacing:-0.286944pt;}
.ws4b{word-spacing:-0.281088pt;}
.ws46{word-spacing:-0.275232pt;}
.ws5e{word-spacing:-0.269376pt;}
.ws50{word-spacing:-0.263520pt;}
.wsc{word-spacing:-0.257664pt;}
.ws2b{word-spacing:-0.251808pt;}
.ws44{word-spacing:-0.245952pt;}
.ws23{word-spacing:-0.240096pt;}
.ws2a{word-spacing:-0.234240pt;}
.ws19{word-spacing:-0.228384pt;}
.ws52{word-spacing:-0.222528pt;}
.ws2c{word-spacing:-0.216672pt;}
.ws53{word-spacing:-0.210816pt;}
.ws0{word-spacing:-0.204960pt;}
.ws36{word-spacing:-0.199104pt;}
.ws5c{word-spacing:-0.193248pt;}
.ws40{word-spacing:-0.187392pt;}
.wsa3{word-spacing:-0.185600pt;}
.ws1a{word-spacing:-0.181536pt;}
.ws55{word-spacing:-0.175680pt;}
.ws37{word-spacing:-0.169824pt;}
.ws3{word-spacing:-0.163968pt;}
.ws43{word-spacing:-0.158112pt;}
.ws32{word-spacing:-0.152256pt;}
.wsf{word-spacing:-0.146400pt;}
.ws7{word-spacing:-0.140544pt;}
.ws10{word-spacing:-0.134688pt;}
.ws28{word-spacing:-0.128832pt;}
.wsa{word-spacing:-0.122976pt;}
.ws1b{word-spacing:-0.117120pt;}
.ws5{word-spacing:-0.111264pt;}
.ws9{word-spacing:-0.105408pt;}
.ws2{word-spacing:-0.099552pt;}
.wsd{word-spacing:-0.093696pt;}
.wsa2{word-spacing:-0.089600pt;}
.ws15{word-spacing:-0.087840pt;}
.wsb{word-spacing:-0.081984pt;}
.wse{word-spacing:-0.076128pt;}
.ws4{word-spacing:-0.070272pt;}
.ws27{word-spacing:-0.064416pt;}
.ws92{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.058560pt;}
.ws14{word-spacing:-0.052704pt;}
.ws26{word-spacing:-0.046848pt;}
.wsa4{word-spacing:-0.044800pt;}
.ws22{word-spacing:-0.040992pt;}
.ws8{word-spacing:-0.035136pt;}
.wsa6{word-spacing:-0.032000pt;}
.ws11{word-spacing:-0.029280pt;}
.ws9b{word-spacing:-0.025600pt;}
.ws24{word-spacing:-0.023424pt;}
.wsa1{word-spacing:-0.019200pt;}
.ws30{word-spacing:-0.017568pt;}
.wsa7{word-spacing:-0.012800pt;}
.ws21{word-spacing:-0.011712pt;}
.ws20{word-spacing:-0.005856pt;}
.ws29{word-spacing:0.000000pt;}
.ws34{word-spacing:0.005856pt;}
.ws2d{word-spacing:0.011712pt;}
.ws62{word-spacing:0.017568pt;}
.wsa5{word-spacing:0.019200pt;}
.ws3f{word-spacing:0.023424pt;}
.ws47{word-spacing:0.029280pt;}
.ws1d{word-spacing:0.035136pt;}
.ws31{word-spacing:0.040992pt;}
.ws12{word-spacing:0.046848pt;}
.ws18{word-spacing:0.052704pt;}
.ws64{word-spacing:0.058560pt;}
.ws61{word-spacing:0.064416pt;}
.ws45{word-spacing:0.070272pt;}
.ws59{word-spacing:0.076128pt;}
.ws60{word-spacing:0.081984pt;}
.ws1e{word-spacing:0.087840pt;}
.ws16{word-spacing:0.099552pt;}
.ws65{word-spacing:0.105408pt;}
.ws81{word-spacing:0.152256pt;}
.ws5d{word-spacing:0.169824pt;}
.ws79{word-spacing:0.181536pt;}
.ws73{word-spacing:0.187392pt;}
.ws4c{word-spacing:0.204960pt;}
.ws6f{word-spacing:0.210816pt;}
.ws38{word-spacing:0.257664pt;}
.ws7d{word-spacing:0.386496pt;}
.ws9d{word-spacing:10.848000pt;}
.ws9e{word-spacing:10.854400pt;}
.ws9f{word-spacing:16.870400pt;}
.wsa0{word-spacing:16.889600pt;}
.ws96{word-spacing:18.227200pt;}
.ws95{word-spacing:18.278400pt;}
.ws9c{word-spacing:27.180800pt;}
.ws98{word-spacing:29.120000pt;}
.ws97{word-spacing:29.132800pt;}
.ws99{word-spacing:51.980800pt;}
.ws9a{word-spacing:52.172800pt;}
._f{margin-left:-52.260256pt;}
._e{margin-left:-29.235200pt;}
._11{margin-left:-26.329600pt;}
._a{margin-left:-24.360960pt;}
._9{margin-left:-18.106752pt;}
._4{margin-left:-15.676416pt;}
._d{margin-left:-12.006272pt;}
._6{margin-left:-10.627168pt;}
._5{margin-left:-9.469152pt;}
._8{margin-left:-8.573184pt;}
._c{margin-left:-7.519104pt;}
._7{margin-left:-5.867712pt;}
._b{margin-left:-4.749216pt;}
._3{margin-left:-3.179808pt;}
._0{margin-left:-0.966240pt;}
._1{width:0.966240pt;}
._2{width:3.724416pt;}
._10{width:26.675200pt;}
._14{width:101.120000pt;}
._1a{width:150.720000pt;}
._17{width:173.106304pt;}
._19{width:182.720000pt;}
._15{width:285.760000pt;}
._13{width:322.240000pt;}
._18{width:333.760000pt;}
._12{width:354.880000pt;}
._16{width:480.320000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.307707pt;}
.y1{bottom:69.227067pt;}
.y51{bottom:102.266763pt;}
.ydd{bottom:102.267179pt;}
.y98{bottom:103.466651pt;}
.ybb{bottom:103.467067pt;}
.y26{bottom:106.986763pt;}
.y71{bottom:111.868347pt;}
.y101{bottom:116.826235pt;}
.y133{bottom:116.826651pt;}
.y12b{bottom:116.827235pt;}
.y16f{bottom:117.786651pt;}
.y186{bottom:117.791872pt;}
.y50{bottom:122.906235pt;}
.ydc{bottom:122.906651pt;}
.y158{bottom:123.868819pt;}
.y198{bottom:123.870219pt;}
.yba{bottom:124.026763pt;}
.y97{bottom:124.027931pt;}
.y25{bottom:127.547179pt;}
.y70{bottom:132.507819pt;}
.y100{bottom:137.386651pt;}
.y132{bottom:137.387515pt;}
.y16e{bottom:138.351219pt;}
.ydb{bottom:143.466347pt;}
.y4f{bottom:143.466651pt;}
.y113{bottom:143.466763pt;}
.yb9{bottom:144.666235pt;}
.y96{bottom:144.667403pt;}
.y24{bottom:148.186651pt;}
.y12a{bottom:150.746651pt;}
.y185{bottom:151.711288pt;}
.y6f{bottom:153.068235pt;}
.y157{bottom:157.788235pt;}
.y197{bottom:157.789635pt;}
.yff{bottom:157.947875pt;}
.y131{bottom:157.947931pt;}
.y4e{bottom:164.026763pt;}
.y112{bottom:164.027179pt;}
.yb8{bottom:165.226651pt;}
.y23{bottom:168.749760pt;}
.y129{bottom:171.307067pt;}
.y16d{bottom:172.270635pt;}
.y95{bottom:178.586819pt;}
.y4d{bottom:184.666235pt;}
.y111{bottom:184.666651pt;}
.y184{bottom:185.630704pt;}
.yb7{bottom:185.786763pt;}
.y6e{bottom:186.987651pt;}
.y156{bottom:191.707651pt;}
.y196{bottom:191.709051pt;}
.y128{bottom:191.866763pt;}
.yfe{bottom:191.867291pt;}
.y130{bottom:191.867347pt;}
.y22{bottom:202.669176pt;}
.y4c{bottom:205.226651pt;}
.y110{bottom:205.227067pt;}
.y16c{bottom:206.190051pt;}
.yb6{bottom:206.426235pt;}
.y94{bottom:212.506235pt;}
.yfd{bottom:212.506763pt;}
.y183{bottom:219.550120pt;}
.y6d{bottom:220.906763pt;}
.y195{bottom:225.628467pt;}
.y155{bottom:225.629816pt;}
.y10f{bottom:225.786763pt;}
.y4b{bottom:225.787424pt;}
.yda{bottom:225.787763pt;}
.yb5{bottom:226.986651pt;}
.y93{bottom:233.066651pt;}
.yfc{bottom:233.067179pt;}
.y21{bottom:236.588592pt;}
.y16b{bottom:240.109467pt;}
.y6c{bottom:241.467179pt;}
.y194{bottom:246.188883pt;}
.y10e{bottom:246.426235pt;}
.y4a{bottom:246.426896pt;}
.yd9{bottom:246.427235pt;}
.yb4{bottom:247.547467pt;}
.y182{bottom:253.469536pt;}
.y127{bottom:253.627291pt;}
.yfb{bottom:253.627595pt;}
.y92{bottom:253.628291pt;}
.y20{bottom:257.228064pt;}
.y154{bottom:259.549232pt;}
.y6b{bottom:262.106651pt;}
.y10d{bottom:266.986651pt;}
.y49{bottom:266.987312pt;}
.yd8{bottom:266.987651pt;}
.y16a{bottom:274.028883pt;}
.yfa{bottom:274.266763pt;}
.y91{bottom:274.267763pt;}
.y193{bottom:280.108299pt;}
.yb3{bottom:281.466883pt;}
.y6a{bottom:282.667424pt;}
.y181{bottom:287.388952pt;}
.y10c{bottom:287.547707pt;}
.y48{bottom:287.547728pt;}
.y1f{bottom:291.147480pt;}
.y153{bottom:293.468648pt;}
.yf9{bottom:294.827179pt;}
.yd7{bottom:300.907291pt;}
.y69{bottom:303.306896pt;}
.y169{bottom:307.948299pt;}
.y90{bottom:308.187179pt;}
.y47{bottom:308.187347pt;}
.y192{bottom:314.027715pt;}
.y152{bottom:314.029064pt;}
.yb2{bottom:315.386299pt;}
.yf8{bottom:315.387595pt;}
.y180{bottom:321.308368pt;}
.yd6{bottom:321.467707pt;}
.y68{bottom:323.867312pt;}
.y1e{bottom:325.066896pt;}
.y8f{bottom:328.747595pt;}
.y46{bottom:328.747763pt;}
.y151{bottom:334.668536pt;}
.yf7{bottom:336.026347pt;}
.y126{bottom:336.026763pt;}
.y1a7{bottom:341.947651pt;}
.y168{bottom:341.948235pt;}
.yd5{bottom:342.107179pt;}
.y67{bottom:344.427728pt;}
.y1d{bottom:345.627312pt;}
.y191{bottom:347.947131pt;}
.yb1{bottom:349.386235pt;}
.y8e{bottom:349.386896pt;}
.y10b{bottom:349.387067pt;}
.y45{bottom:349.387235pt;}
.y12f{bottom:349.387480pt;}
.y17f{bottom:355.227784pt;}
.y150{bottom:355.228952pt;}
.yf6{bottom:356.586763pt;}
.y125{bottom:356.587179pt;}
.yd4{bottom:362.667595pt;}
.y66{bottom:365.067931pt;}
.y1c{bottom:366.187728pt;}
.yb0{bottom:369.946651pt;}
.y10a{bottom:369.946763pt;}
.y8d{bottom:369.947312pt;}
.y12e{bottom:369.947896pt;}
.y1a6{bottom:375.867067pt;}
.y167{bottom:375.867651pt;}
.yf5{bottom:377.226235pt;}
.y124{bottom:377.226651pt;}
.y1d5{bottom:379.388643pt;}
.y190{bottom:381.948571pt;}
.y44{bottom:383.306651pt;}
.yd3{bottom:383.306896pt;}
.y1b{bottom:386.826763pt;}
.y1d3{bottom:388.348323pt;}
.y14f{bottom:389.148368pt;}
.y17e{bottom:389.150515pt;}
.yaf{bottom:390.506763pt;}
.y109{bottom:390.507179pt;}
.y8c{bottom:390.507728pt;}
.y12d{bottom:390.508312pt;}
.yf4{bottom:397.786651pt;}
.y123{bottom:397.786763pt;}
.y65{bottom:398.987347pt;}
.y43{bottom:403.866347pt;}
.yd2{bottom:403.867312pt;}
.y1a{bottom:407.387179pt;}
.y1d4{bottom:409.467987pt;}
.y166{bottom:409.788987pt;}
.y1a5{bottom:409.789571pt;}
.yae{bottom:411.146235pt;}
.y108{bottom:411.146651pt;}
.y8b{bottom:411.146763pt;}
.y18f{bottom:415.867987pt;}
.yf3{bottom:418.346763pt;}
.y122{bottom:418.347179pt;}
.y1d2{bottom:418.348611pt;}
.y14e{bottom:423.067784pt;}
.y17d{bottom:423.069931pt;}
.y42{bottom:424.426763pt;}
.yd1{bottom:424.427728pt;}
.y1bb{bottom:426.828347pt;}
.y19{bottom:427.947595pt;}
.y165{bottom:430.349403pt;}
.yad{bottom:431.706651pt;}
.y8a{bottom:431.707179pt;}
.y107{bottom:431.707763pt;}
.y64{bottom:432.906763pt;}
.y18e{bottom:436.428403pt;}
.yf2{bottom:438.986235pt;}
.y121{bottom:438.986651pt;}
.y1a4{bottom:443.708987pt;}
.y17c{bottom:443.709403pt;}
.y41{bottom:445.066235pt;}
.yd0{bottom:445.066763pt;}
.y1cf{bottom:445.947939pt;}
.y18{bottom:448.586347pt;}
.yac{bottom:452.266763pt;}
.y89{bottom:452.267595pt;}
.y106{bottom:452.268179pt;}
.y63{bottom:453.467179pt;}
.y14d{bottom:456.990099pt;}
.yf1{bottom:459.546651pt;}
.y120{bottom:459.546763pt;}
.y1ba{bottom:460.747763pt;}
.y164{bottom:464.268819pt;}
.y40{bottom:465.626651pt;}
.ycf{bottom:465.627179pt;}
.y17{bottom:469.146763pt;}
.y18d{bottom:470.347819pt;}
.yab{bottom:472.906235pt;}
.y88{bottom:472.906347pt;}
.y62{bottom:474.027595pt;}
.y1ce{bottom:475.948227pt;}
.y1a3{bottom:477.628403pt;}
.y17b{bottom:477.628819pt;}
.y14c{bottom:477.629571pt;}
.y11f{bottom:480.107179pt;}
.yf0{bottom:480.107707pt;}
.y1b9{bottom:481.308179pt;}
.y3f{bottom:486.187291pt;}
.yce{bottom:486.187595pt;}
.y16{bottom:489.786235pt;}
.yaa{bottom:493.466651pt;}
.y87{bottom:493.466763pt;}
.y61{bottom:494.667235pt;}
.y163{bottom:498.188235pt;}
.y11e{bottom:500.746651pt;}
.yef{bottom:500.747179pt;}
.y18c{bottom:504.267235pt;}
.y1d1{bottom:506.348187pt;}
.ycd{bottom:506.826347pt;}
.y3e{bottom:506.826763pt;}
.y15{bottom:510.346651pt;}
.y1a2{bottom:511.547819pt;}
.y17a{bottom:511.548235pt;}
.y14b{bottom:511.548987pt;}
.y86{bottom:514.027179pt;}
.ya9{bottom:514.027707pt;}
.y1b8{bottom:515.227595pt;}
.y60{bottom:515.227651pt;}
.y1d9{bottom:518.509635pt;}
.y11d{bottom:521.307347pt;}
.yee{bottom:521.307595pt;}
.ycc{bottom:527.386763pt;}
.y3d{bottom:527.387179pt;}
.y14{bottom:530.907067pt;}
.y162{bottom:532.107651pt;}
.y85{bottom:534.666651pt;}
.ya8{bottom:534.667179pt;}
.y1b7{bottom:535.866763pt;}
.y1d0{bottom:536.348475pt;}
.y18b{bottom:538.186651pt;}
.yed{bottom:541.946763pt;}
.y11c{bottom:541.946819pt;}
.y1a1{bottom:545.467235pt;}
.y179{bottom:545.467651pt;}
.y14a{bottom:545.468403pt;}
.ycb{bottom:547.947179pt;}
.y3c{bottom:547.947595pt;}
.y5f{bottom:549.147067pt;}
.y13{bottom:551.547987pt;}
.y1d8{bottom:552.429051pt;}
.y84{bottom:555.226763pt;}
.ya7{bottom:555.227595pt;}
.y1b6{bottom:556.427179pt;}
.y140{bottom:556.427235pt;}
.y18a{bottom:558.747067pt;}
.yec{bottom:562.507179pt;}
.y11b{bottom:562.507235pt;}
.y161{bottom:566.027067pt;}
.y1a0{bottom:566.027651pt;}
.yca{bottom:568.586651pt;}
.y3b{bottom:568.586763pt;}
.y5e{bottom:569.786763pt;}
.y12{bottom:572.108403pt;}
.y83{bottom:575.866235pt;}
.ya6{bottom:575.866763pt;}
.y1b5{bottom:576.987595pt;}
.y149{bottom:579.387819pt;}
.y178{bottom:579.390155pt;}
.yeb{bottom:583.067595pt;}
.y11a{bottom:583.067651pt;}
.y1d7{bottom:586.348467pt;}
.yc9{bottom:589.146763pt;}
.y3a{bottom:589.147179pt;}
.y13f{bottom:590.346651pt;}
.y5d{bottom:590.347179pt;}
.y189{bottom:592.670099pt;}
.y1cd{bottom:595.628235pt;}
.y82{bottom:596.426651pt;}
.ya5{bottom:596.427179pt;}
.y1b4{bottom:597.626819pt;}
.y160{bottom:599.951099pt;}
.y19f{bottom:599.951155pt;}
.yea{bottom:603.707931pt;}
.y11{bottom:606.027819pt;}
.yc8{bottom:609.786235pt;}
.y39{bottom:609.786651pt;}
.y5c{bottom:610.907595pt;}
.y13e{bottom:610.907931pt;}
.y148{bottom:613.307235pt;}
.y177{bottom:613.309571pt;}
.y1d6{bottom:616.348755pt;}
.y119{bottom:616.987291pt;}
.ya4{bottom:616.987595pt;}
.y81{bottom:616.988347pt;}
.y1cc{bottom:629.547651pt;}
.y38{bottom:630.346347pt;}
.yc7{bottom:630.346651pt;}
.y1b3{bottom:631.546235pt;}
.y5b{bottom:631.546763pt;}
.y13d{bottom:631.547403pt;}
.y147{bottom:633.867651pt;}
.y15f{bottom:633.870515pt;}
.y19e{bottom:633.870571pt;}
.ya3{bottom:637.626763pt;}
.ye9{bottom:637.627347pt;}
.y80{bottom:637.627819pt;}
.y10{bottom:639.947235pt;}
.y176{bottom:647.228987pt;}
.y37{bottom:650.906763pt;}
.yc6{bottom:650.907067pt;}
.y105{bottom:650.907291pt;}
.y1b2{bottom:652.106651pt;}
.y5a{bottom:652.107179pt;}
.y13c{bottom:652.107819pt;}
.ya2{bottom:658.187179pt;}
.y7f{bottom:658.188235pt;}
.y1cb{bottom:663.467067pt;}
.y146{bottom:667.789931pt;}
.y19d{bottom:667.789987pt;}
.y36{bottom:671.546235pt;}
.yc5{bottom:671.546763pt;}
.y59{bottom:672.667595pt;}
.y1b1{bottom:672.667763pt;}
.yf{bottom:673.866651pt;}
.ya1{bottom:678.747595pt;}
.y175{bottom:681.148403pt;}
.y1ca{bottom:685.387067pt;}
.y13b{bottom:686.027235pt;}
.y15e{bottom:688.429403pt;}
.y35{bottom:692.106651pt;}
.yc4{bottom:692.107179pt;}
.y7e{bottom:692.107651pt;}
.y1b0{bottom:693.307235pt;}
.y58{bottom:693.307635pt;}
.ye{bottom:694.427467pt;}
.y118{bottom:699.386347pt;}
.ya0{bottom:699.386896pt;}
.y174{bottom:701.708819pt;}
.y145{bottom:701.709347pt;}
.y19c{bottom:701.709403pt;}
.y1c9{bottom:709.147200pt;}
.y12c{bottom:712.667291pt;}
.yc3{bottom:712.667595pt;}
.y34{bottom:712.668291pt;}
.y57{bottom:713.868051pt;}
.y188{bottom:715.067819pt;}
.y13a{bottom:719.946651pt;}
.y117{bottom:719.946763pt;}
.y9f{bottom:719.947312pt;}
.y15d{bottom:722.348819pt;}
.y7d{bottom:726.026763pt;}
.y1af{bottom:727.226651pt;}
.yd{bottom:728.427403pt;}
.y1c8{bottom:732.827200pt;}
.yc2{bottom:733.305883pt;}
.ye8{bottom:733.306763pt;}
.y33{bottom:733.307763pt;}
.y56{bottom:734.428467pt;}
.y173{bottom:735.628235pt;}
.y144{bottom:735.628763pt;}
.y19b{bottom:735.628819pt;}
.y116{bottom:740.507179pt;}
.y139{bottom:740.507291pt;}
.y9e{bottom:740.507728pt;}
.y7c{bottom:746.587179pt;}
.y1ae{bottom:747.787347pt;}
.yc{bottom:748.987819pt;}
.yc1{bottom:753.866299pt;}
.ye7{bottom:753.867179pt;}
.y32{bottom:753.868179pt;}
.y15c{bottom:756.268235pt;}
.y1c7{bottom:756.587067pt;}
.y115{bottom:761.146651pt;}
.y138{bottom:761.146763pt;}
.y9d{bottom:761.147347pt;}
.y7b{bottom:767.226651pt;}
.y1ad{bottom:768.426819pt;}
.y55{bottom:768.428403pt;}
.y172{bottom:769.547651pt;}
.y143{bottom:769.548179pt;}
.y19a{bottom:769.548235pt;}
.yc0{bottom:774.426715pt;}
.ye6{bottom:774.427595pt;}
.y1c6{bottom:780.107067pt;}
.y137{bottom:781.707179pt;}
.y9c{bottom:781.707763pt;}
.yb{bottom:782.907235pt;}
.y7a{bottom:787.786763pt;}
.y31{bottom:787.787595pt;}
.y1ac{bottom:788.987235pt;}
.y142{bottom:790.187651pt;}
.ye5{bottom:795.066763pt;}
.y104{bottom:795.067347pt;}
.y1c5{bottom:800.427067pt;}
.y1c3{bottom:801.227067pt;}
.y136{bottom:802.346651pt;}
.y9b{bottom:802.347235pt;}
.y54{bottom:802.347819pt;}
.y187{bottom:803.467067pt;}
.ya{bottom:803.467651pt;}
.y171{bottom:803.471379pt;}
.y79{bottom:808.426235pt;}
.ybf{bottom:808.426651pt;}
.y30{bottom:808.426763pt;}
.ye4{bottom:815.627179pt;}
.y103{bottom:815.627763pt;}
.y1c4{bottom:822.267067pt;}
.y1ab{bottom:822.906651pt;}
.y135{bottom:822.907347pt;}
.y9a{bottom:822.907651pt;}
.y141{bottom:824.110851pt;}
.y78{bottom:828.986651pt;}
.ybe{bottom:828.986763pt;}
.y2f{bottom:828.987179pt;}
.ye3{bottom:836.266651pt;}
.y53{bottom:836.267235pt;}
.y9{bottom:837.390795pt;}
.y1aa{bottom:843.466763pt;}
.y15b{bottom:844.671267pt;}
.y77{bottom:849.546763pt;}
.ybd{bottom:849.547179pt;}
.y2e{bottom:849.547595pt;}
.ye2{bottom:856.826763pt;}
.y99{bottom:856.827347pt;}
.y102{bottom:856.827651pt;}
.y8{bottom:858.030267pt;}
.y1c2{bottom:863.787067pt;}
.y1a9{bottom:864.106235pt;}
.y76{bottom:870.186235pt;}
.y2d{bottom:870.186347pt;}
.y52{bottom:870.186651pt;}
.y170{bottom:871.310211pt;}
.ye1{bottom:877.387179pt;}
.y15a{bottom:878.590683pt;}
.y1c1{bottom:882.267067pt;}
.y1a8{bottom:884.666651pt;}
.ybc{bottom:890.746347pt;}
.y75{bottom:890.746651pt;}
.y2c{bottom:890.746763pt;}
.y7{bottom:891.949683pt;}
.ye0{bottom:898.026651pt;}
.y1c0{bottom:900.667067pt;}
.y199{bottom:905.229627pt;}
.y74{bottom:911.306763pt;}
.y2b{bottom:911.307179pt;}
.y159{bottom:912.510099pt;}
.ydf{bottom:918.587067pt;}
.y134{bottom:918.588627pt;}
.y1bf{bottom:919.067067pt;}
.y6{bottom:925.869099pt;}
.y73{bottom:931.946235pt;}
.y2a{bottom:931.946651pt;}
.y1be{bottom:937.467067pt;}
.yde{bottom:939.149043pt;}
.y5{bottom:946.429515pt;}
.y72{bottom:952.506651pt;}
.y29{bottom:952.508043pt;}
.y1bd{bottom:955.787067pt;}
.y114{bottom:959.788515pt;}
.y28{bottom:973.068459pt;}
.y1bc{bottom:974.187067pt;}
.y4{bottom:980.348931pt;}
.y27{bottom:993.707931pt;}
.y3{bottom:1014.268347pt;}
.h2{height:39.030469pt;}
.h3{height:40.031250pt;}
.h1{height:42.032812pt;}
.h7{height:42.033495pt;}
.h9{height:42.033804pt;}
.h6{height:42.034028pt;}
.h5{height:42.034562pt;}
.h4{height:42.035692pt;}
.h8{height:42.037548pt;}
.ha{height:44.437500pt;}
.he{height:58.990404pt;}
.hb{height:58.990937pt;}
.hc{height:62.781250pt;}
.hd{height:64.500000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:113.439696pt;}
.x4{left:161.440000pt;}
.x5{left:239.600000pt;}
.x9{left:497.441088pt;}
.x7{left:605.680464pt;}
.x8{left:607.440192pt;}
.xa{left:611.439840pt;}
.xb{left:615.760104pt;}
.x6{left:630.720000pt;}
.x3{left:665.520000pt;}
.x1{left:672.960000pt;}
}




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