
    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_ec123b558e56a76fcaeead12.woff')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_b96ae098f6737a72b56ffa22.woff')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_298fa32590ef1ed494d59fe6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_d06b8466237d9d7387e634a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_2d2bd1f7397df796e9eb6783.woff')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_eb2f956da8158b606710b800.woff')format("woff");}.ff6{font-family:ff6;line-height:0.360019;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_4b89ed657967a6f0d310fdad.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_ef22119520fcabbe384ed202.woff')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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_9715b4c7fb8962ccaa2ee6e6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls47{letter-spacing:-0.430044px;}
.ls49{letter-spacing:-0.120412px;}
.ls3a{letter-spacing:-0.111811px;}
.ls33{letter-spacing:-0.103211px;}
.ls24{letter-spacing:-0.100545px;}
.ls17{letter-spacing:-0.093363px;}
.ls11{letter-spacing:-0.093320px;}
.ls23{letter-spacing:-0.086181px;}
.ls41{letter-spacing:-0.086009px;}
.ls1d{letter-spacing:-0.078999px;}
.ls3b{letter-spacing:-0.077408px;}
.ls1a{letter-spacing:-0.071818px;}
.ls2f{letter-spacing:-0.068807px;}
.ls19{letter-spacing:-0.064636px;}
.ls2e{letter-spacing:-0.060206px;}
.ls16{letter-spacing:-0.057454px;}
.ls56{letter-spacing:-0.055089px;}
.ls2c{letter-spacing:-0.051605px;}
.ls18{letter-spacing:-0.050272px;}
.ls15{letter-spacing:-0.043091px;}
.ls28{letter-spacing:-0.043004px;}
.ls1b{letter-spacing:-0.035909px;}
.ls2b{letter-spacing:-0.034404px;}
.ls32{letter-spacing:-0.033974px;}
.ls14{letter-spacing:-0.028727px;}
.ls10{letter-spacing:-0.027996px;}
.ls29{letter-spacing:-0.025803px;}
.ls26{letter-spacing:-0.021545px;}
.ls27{letter-spacing:-0.017202px;}
.ls57{letter-spacing:-0.015740px;}
.ls25{letter-spacing:-0.014364px;}
.ls40{letter-spacing:-0.013589px;}
.ls2a{letter-spacing:-0.008601px;}
.ls51{letter-spacing:-0.007870px;}
.ls12{letter-spacing:-0.007182px;}
.lse{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.005136px;}
.ls46{letter-spacing:0.006795px;}
.lsc{letter-spacing:0.007182px;}
.ls4e{letter-spacing:0.007870px;}
.ls21{letter-spacing:0.008601px;}
.ls45{letter-spacing:0.013589px;}
.ls55{letter-spacing:0.015740px;}
.ls22{letter-spacing:0.017202px;}
.ls53{letter-spacing:0.023610px;}
.ls2d{letter-spacing:0.025803px;}
.ls34{letter-spacing:0.027179px;}
.ls4d{letter-spacing:0.031479px;}
.ls38{letter-spacing:0.034404px;}
.ls4f{letter-spacing:0.039349px;}
.ls3e{letter-spacing:0.040768px;}
.ls13{letter-spacing:0.043004px;}
.ls3c{letter-spacing:0.043091px;}
.ls6{letter-spacing:0.045302px;}
.ls7{letter-spacing:0.045757px;}
.ls50{letter-spacing:0.047219px;}
.ls0{letter-spacing:0.050272px;}
.ls48{letter-spacing:0.051605px;}
.ls37{letter-spacing:0.054358px;}
.ls52{letter-spacing:0.055089px;}
.lsd{letter-spacing:0.057454px;}
.ls20{letter-spacing:0.060206px;}
.ls1{letter-spacing:0.062916px;}
.ls4c{letter-spacing:0.062959px;}
.ls3{letter-spacing:0.068635px;}
.ls42{letter-spacing:0.068807px;}
.ls54{letter-spacing:0.070829px;}
.lsf{letter-spacing:0.078999px;}
.ls5{letter-spacing:0.080075px;}
.ls35{letter-spacing:0.086309px;}
.ls44{letter-spacing:0.086861px;}
.lsb{letter-spacing:0.091514px;}
.ls8{letter-spacing:0.092451px;}
.ls4b{letter-spacing:0.103211px;}
.ls2{letter-spacing:0.105600px;}
.ls4{letter-spacing:0.106253px;}
.ls4a{letter-spacing:0.120412px;}
.ls9{letter-spacing:0.123648px;}
.lsa{letter-spacing:0.142991px;}
.ls3f{letter-spacing:0.172018px;}
.ls1f{letter-spacing:0.179544px;}
.ls30{letter-spacing:0.215850px;}
.ls43{letter-spacing:0.430044px;}
.ls1e{letter-spacing:3.978695px;}
.ls1c{letter-spacing:4.840506px;}
.ls3d{letter-spacing:20.429850px;}
.ls39{letter-spacing:38.015890px;}
.ls36{letter-spacing:61.238266px;}
.ls58{letter-spacing:1017.748755px;}
.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;}
}
.ws15d{word-spacing:-21.622612px;}
.ws5e{word-spacing:-21.562406px;}
.ws111{word-spacing:-21.536604px;}
.wsd1{word-spacing:-21.519402px;}
.ws110{word-spacing:-21.510801px;}
.ws5d{word-spacing:-21.502200px;}
.wscf{word-spacing:-21.493599px;}
.ws15c{word-spacing:-21.484998px;}
.wsf0{word-spacing:-21.467796px;}
.wsd0{word-spacing:-21.450595px;}
.wsd2{word-spacing:-21.433393px;}
.wsf1{word-spacing:-21.416191px;}
.ws3{word-spacing:-18.011854px;}
.ws24{word-spacing:-18.004672px;}
.ws0{word-spacing:-17.954400px;}
.ws80{word-spacing:-17.013929px;}
.ws122{word-spacing:-17.000339px;}
.ws1{word-spacing:-14.390564px;}
.ws2{word-spacing:-14.344807px;}
.ws89{word-spacing:-5.186331px;}
.ws88{word-spacing:-5.151927px;}
.ws52{word-spacing:-5.134725px;}
.ws66{word-spacing:-5.117524px;}
.ws6d{word-spacing:-5.005712px;}
.ws6a{word-spacing:-4.730484px;}
.wsf9{word-spacing:-4.721883px;}
.ws6b{word-spacing:-4.704681px;}
.ws125{word-spacing:-4.670278px;}
.ws46{word-spacing:-4.601471px;}
.ws6c{word-spacing:-4.584269px;}
.wsee{word-spacing:-4.309041px;}
.wsbc{word-spacing:-4.283238px;}
.ws4f{word-spacing:-4.154225px;}
.ws4b{word-spacing:-3.896199px;}
.ws3e{word-spacing:-3.827392px;}
.wse5{word-spacing:-3.423150px;}
.ws143{word-spacing:-3.405948px;}
.ws170{word-spacing:-3.371545px;}
.ws19{word-spacing:-3.274883px;}
.ws34{word-spacing:-3.018909px;}
.ws5b{word-spacing:-2.984505px;}
.ws13c{word-spacing:-2.967304px;}
.ws4a{word-spacing:-2.941501px;}
.wse6{word-spacing:-2.932900px;}
.ws16a{word-spacing:-2.907097px;}
.ws13a{word-spacing:-2.864093px;}
.ws2d{word-spacing:-2.858340px;}
.ws29{word-spacing:-2.650069px;}
.ws11d{word-spacing:-2.588865px;}
.wsb0{word-spacing:-2.580264px;}
.ws106{word-spacing:-2.571663px;}
.ws14c{word-spacing:-2.563062px;}
.ws15e{word-spacing:-2.554461px;}
.ws131{word-spacing:-2.545860px;}
.ws55{word-spacing:-2.502856px;}
.wsad{word-spacing:-2.425448px;}
.ws18{word-spacing:-2.420253px;}
.ws38{word-spacing:-2.399646px;}
.ws151{word-spacing:-2.391045px;}
.wscc{word-spacing:-2.201825px;}
.ws140{word-spacing:-2.167422px;}
.ws134{word-spacing:-2.158821px;}
.ws124{word-spacing:-2.124417px;}
.ws12f{word-spacing:-2.107216px;}
.ws90{word-spacing:-2.098615px;}
.ws3f{word-spacing:-2.090014px;}
.ws144{word-spacing:-2.081413px;}
.ws159{word-spacing:-2.072812px;}
.ws145{word-spacing:-2.038409px;}
.ws28{word-spacing:-2.025256px;}
.ws2a{word-spacing:-2.018075px;}
.ws13d{word-spacing:-2.012606px;}
.ws83{word-spacing:-1.990847px;}
.ws27{word-spacing:-1.989348px;}
.wsc{word-spacing:-1.982166px;}
.ws173{word-spacing:-1.969602px;}
.ws82{word-spacing:-1.963668px;}
.ws3c{word-spacing:-1.711575px;}
.wsb6{word-spacing:-1.702974px;}
.ws33{word-spacing:-1.677172px;}
.ws59{word-spacing:-1.616965px;}
.ws11f{word-spacing:-1.573961px;}
.ws53{word-spacing:-1.556759px;}
.ws1e{word-spacing:-1.544078px;}
.ws135{word-spacing:-1.341737px;}
.ws132{word-spacing:-1.307334px;}
.wsd8{word-spacing:-1.255728px;}
.ws153{word-spacing:-1.247128px;}
.ws115{word-spacing:-1.221325px;}
.ws104{word-spacing:-1.135316px;}
.ws101{word-spacing:-0.894492px;}
.ws141{word-spacing:-0.842886px;}
.ws41{word-spacing:-0.834285px;}
.ws160{word-spacing:-0.825684px;}
.wse3{word-spacing:-0.808483px;}
.wsb3{word-spacing:-0.799882px;}
.ws62{word-spacing:-0.774079px;}
.ws163{word-spacing:-0.748277px;}
.ws22{word-spacing:-0.725358px;}
.wsd7{word-spacing:-0.713873px;}
.ws21{word-spacing:-0.703812px;}
.wsb{word-spacing:-0.696631px;}
.ws15{word-spacing:-0.682267px;}
.ws86{word-spacing:-0.670869px;}
.wsf6{word-spacing:-0.645066px;}
.ws2f{word-spacing:-0.490250px;}
.ws58{word-spacing:-0.473048px;}
.ws8f{word-spacing:-0.412842px;}
.ws16d{word-spacing:-0.395640px;}
.wsba{word-spacing:-0.387040px;}
.ws107{word-spacing:-0.369838px;}
.wsbb{word-spacing:-0.352636px;}
.ws11a{word-spacing:-0.344035px;}
.ws85{word-spacing:-0.326833px;}
.ws123{word-spacing:-0.275228px;}
.ws71{word-spacing:-0.258026px;}
.ws162{word-spacing:-0.249426px;}
.ws7{word-spacing:-0.158644px;}
.ws114{word-spacing:-0.137614px;}
.ws179{word-spacing:-0.103211px;}
.ws81{word-spacing:-0.086009px;}
.ws6{word-spacing:-0.083988px;}
.ws154{word-spacing:-0.051605px;}
.ws113{word-spacing:-0.043004px;}
.wsa9{word-spacing:-0.034404px;}
.ws57{word-spacing:-0.025803px;}
.ws7c{word-spacing:-0.017202px;}
.ws39{word-spacing:-0.008601px;}
.ws5{word-spacing:0.000000px;}
.ws130{word-spacing:0.007182px;}
.wsa8{word-spacing:0.008601px;}
.ws74{word-spacing:0.017202px;}
.ws127{word-spacing:0.021545px;}
.ws7b{word-spacing:0.025803px;}
.ws129{word-spacing:0.028727px;}
.ws96{word-spacing:0.034404px;}
.wsce{word-spacing:0.035909px;}
.ws184{word-spacing:0.039349px;}
.ws9c{word-spacing:0.043004px;}
.ws128{word-spacing:0.043091px;}
.ws17a{word-spacing:0.047219px;}
.wscd{word-spacing:0.050272px;}
.ws126{word-spacing:0.051605px;}
.ws180{word-spacing:0.055089px;}
.ws4{word-spacing:0.057454px;}
.ws48{word-spacing:0.060206px;}
.ws17d{word-spacing:0.062959px;}
.wsc9{word-spacing:0.064636px;}
.ws95{word-spacing:0.068807px;}
.ws181{word-spacing:0.070829px;}
.ws7f{word-spacing:0.077408px;}
.ws17b{word-spacing:0.078698px;}
.wsa0{word-spacing:0.086009px;}
.ws183{word-spacing:0.086568px;}
.ws17c{word-spacing:0.094438px;}
.ws8{word-spacing:0.100545px;}
.ws182{word-spacing:0.102308px;}
.ws7a{word-spacing:0.103211px;}
.ws17e{word-spacing:0.110178px;}
.ws68{word-spacing:0.111811px;}
.ws17f{word-spacing:0.118048px;}
.ws30{word-spacing:0.129272px;}
.ws54{word-spacing:0.137614px;}
.ws1a{word-spacing:0.143635px;}
.ws2e{word-spacing:0.150817px;}
.wsa2{word-spacing:0.163417px;}
.ws16{word-spacing:0.165180px;}
.ws16b{word-spacing:0.172018px;}
.ws11{word-spacing:0.179544px;}
.ws5c{word-spacing:0.189219px;}
.wsa5{word-spacing:0.197820px;}
.ws12a{word-spacing:0.203841px;}
.wsd5{word-spacing:0.231020px;}
.wsc4{word-spacing:0.240825px;}
.ws5f{word-spacing:0.251404px;}
.ws169{word-spacing:0.292430px;}
.ws121{word-spacing:0.318233px;}
.ws61{word-spacing:0.412842px;}
.wsfb{word-spacing:0.447246px;}
.ws172{word-spacing:0.455847px;}
.wsfa{word-spacing:0.464448px;}
.wsb4{word-spacing:0.473048px;}
.ws7e{word-spacing:0.481649px;}
.ws16e{word-spacing:0.507452px;}
.ws176{word-spacing:0.524654px;}
.ws9{word-spacing:0.567359px;}
.ws12b{word-spacing:0.774079px;}
.ws12c{word-spacing:0.842886px;}
.wsf3{word-spacing:0.851487px;}
.ws9f{word-spacing:0.877290px;}
.ws105{word-spacing:0.885891px;}
.ws32{word-spacing:0.894492px;}
.ws47{word-spacing:0.911693px;}
.wsf2{word-spacing:0.920294px;}
.ws36{word-spacing:0.928895px;}
.wsc0{word-spacing:0.937496px;}
.wse0{word-spacing:0.980500px;}
.ws2c{word-spacing:1.034173px;}
.ws67{word-spacing:1.298733px;}
.wsac{word-spacing:1.315935px;}
.ws69{word-spacing:1.324536px;}
.ws13b{word-spacing:1.333136px;}
.wsc8{word-spacing:1.341737px;}
.wse8{word-spacing:1.350338px;}
.ws43{word-spacing:1.367540px;}
.ws14{word-spacing:1.493806px;}
.ws44{word-spacing:1.634167px;}
.ws97{word-spacing:1.728777px;}
.ws8a{word-spacing:1.737378px;}
.ws10e{word-spacing:1.780382px;}
.ws178{word-spacing:1.788983px;}
.ws16f{word-spacing:2.150220px;}
.wsdf{word-spacing:2.176023px;}
.wsb9{word-spacing:2.184624px;}
.ws137{word-spacing:2.193224px;}
.wsda{word-spacing:2.201825px;}
.ws167{word-spacing:2.210426px;}
.wsdb{word-spacing:2.244830px;}
.ws3b{word-spacing:2.253431px;}
.ws6e{word-spacing:2.279233px;}
.ws10{word-spacing:2.298163px;}
.ws12{word-spacing:2.312527px;}
.ws164{word-spacing:2.322238px;}
.wsd{word-spacing:2.348436px;}
.ws14a{word-spacing:2.537260px;}
.ws103{word-spacing:2.563062px;}
.ws8d{word-spacing:2.580264px;}
.ws63{word-spacing:2.597466px;}
.ws11b{word-spacing:2.606067px;}
.ws87{word-spacing:2.631869px;}
.wsc3{word-spacing:2.640470px;}
.ws158{word-spacing:2.666273px;}
.ws51{word-spacing:2.674874px;}
.ws3a{word-spacing:2.692075px;}
.ws116{word-spacing:2.941501px;}
.ws14d{word-spacing:2.984505px;}
.wsaf{word-spacing:3.018909px;}
.wsc5{word-spacing:3.027510px;}
.wse4{word-spacing:3.053312px;}
.ws4e{word-spacing:3.061913px;}
.ws174{word-spacing:3.070514px;}
.ws93{word-spacing:3.079115px;}
.ws171{word-spacing:3.087716px;}
.ws14e{word-spacing:3.104918px;}
.ws2b{word-spacing:3.195883px;}
.ws10b{word-spacing:3.405948px;}
.ws10c{word-spacing:3.414549px;}
.ws49{word-spacing:3.440352px;}
.ws9a{word-spacing:3.466155px;}
.wsc6{word-spacing:3.474756px;}
.wsbf{word-spacing:3.483356px;}
.ws4c{word-spacing:3.491957px;}
.ws84{word-spacing:3.500558px;}
.ws37{word-spacing:3.517760px;}
.ws23{word-spacing:3.576516px;}
.ws7d{word-spacing:3.595168px;}
.ws70{word-spacing:3.844593px;}
.wsc7{word-spacing:3.861795px;}
.ws177{word-spacing:3.870396px;}
.ws94{word-spacing:3.904800px;}
.wsc2{word-spacing:3.999409px;}
.ws10a{word-spacing:4.008010px;}
.ws13{word-spacing:4.014604px;}
.ws168{word-spacing:4.025212px;}
.ws26{word-spacing:4.079240px;}
.ws11e{word-spacing:4.300440px;}
.wsf4{word-spacing:4.309041px;}
.ws79{word-spacing:4.317642px;}
.ws91{word-spacing:4.326243px;}
.wsc1{word-spacing:4.377848px;}
.ws78{word-spacing:4.420852px;}
.ws1f{word-spacing:4.452691px;}
.wsf5{word-spacing:4.541265px;}
.wsbd{word-spacing:4.730484px;}
.wsec{word-spacing:4.739085px;}
.wsd6{word-spacing:4.747686px;}
.ws31{word-spacing:4.790690px;}
.wse9{word-spacing:4.807892px;}
.ws15f{word-spacing:4.825094px;}
.ws139{word-spacing:4.902502px;}
.wsed{word-spacing:4.911102px;}
.wsf8{word-spacing:5.134725px;}
.ws4d{word-spacing:5.186331px;}
.ws99{word-spacing:5.203532px;}
.wse1{word-spacing:5.220734px;}
.wsb2{word-spacing:5.272339px;}
.ws25{word-spacing:5.343229px;}
.ws13e{word-spacing:5.590572px;}
.wsaa{word-spacing:5.599173px;}
.ws56{word-spacing:5.607774px;}
.ws50{word-spacing:5.616375px;}
.wsb8{word-spacing:5.633576px;}
.ws100{word-spacing:5.693783px;}
.wsa7{word-spacing:5.719585px;}
.ws1c{word-spacing:5.731044px;}
.ws1b{word-spacing:5.745408px;}
.wsdd{word-spacing:5.848598px;}
.wsfd{word-spacing:6.020616px;}
.ws64{word-spacing:6.037818px;}
.ws9e{word-spacing:6.055020px;}
.wsfc{word-spacing:6.063620px;}
.wsfe{word-spacing:6.072221px;}
.ws14b{word-spacing:6.080822px;}
.ws60{word-spacing:6.089423px;}
.wscb{word-spacing:6.098024px;}
.ws13f{word-spacing:6.115226px;}
.wsde{word-spacing:6.192634px;}
.ws17{word-spacing:6.197859px;}
.ws165{word-spacing:6.201234px;}
.wsdc{word-spacing:6.227037px;}
.ws166{word-spacing:6.244239px;}
.wsa1{word-spacing:6.442059px;}
.ws16c{word-spacing:6.450660px;}
.ws8c{word-spacing:6.467862px;}
.ws175{word-spacing:6.476463px;}
.ws35{word-spacing:6.553871px;}
.ws136{word-spacing:6.571072px;}
.ws156{word-spacing:6.588274px;}
.wse7{word-spacing:6.631278px;}
.ws73{word-spacing:6.837700px;}
.ws120{word-spacing:6.863502px;}
.ws45{word-spacing:6.889305px;}
.ws76{word-spacing:6.906507px;}
.ws152{word-spacing:6.932309px;}
.ws15a{word-spacing:6.940910px;}
.ws72{word-spacing:6.949511px;}
.ws157{word-spacing:7.001116px;}
.wsd9{word-spacing:7.069923px;}
.ws138{word-spacing:7.276344px;}
.ws10d{word-spacing:7.302147px;}
.ws42{word-spacing:7.310748px;}
.wsb7{word-spacing:7.353752px;}
.ws150{word-spacing:7.370954px;}
.ws1d{word-spacing:7.461849px;}
.wse{word-spacing:7.469030px;}
.ws20{word-spacing:7.476212px;}
.wseb{word-spacing:7.508568px;}
.wsf{word-spacing:7.512121px;}
.wsca{word-spacing:7.766595px;}
.wsa4{word-spacing:7.809599px;}
.wsa{word-spacing:7.892754px;}
.ws6f{word-spacing:8.170836px;}
.ws12e{word-spacing:8.196639px;}
.ws12d{word-spacing:8.205240px;}
.ws9d{word-spacing:8.213840px;}
.ws142{word-spacing:8.239643px;}
.wsbe{word-spacing:8.317051px;}
.ws147{word-spacing:8.428862px;}
.ws146{word-spacing:8.566476px;}
.ws148{word-spacing:8.575077px;}
.ws102{word-spacing:8.583678px;}
.ws112{word-spacing:8.600880px;}
.wsea{word-spacing:8.626683px;}
.ws149{word-spacing:8.678288px;}
.ws10f{word-spacing:9.073928px;}
.ws98{word-spacing:9.091130px;}
.wsa3{word-spacing:9.116933px;}
.ws92{word-spacing:9.194341px;}
.ws75{word-spacing:9.452367px;}
.ws118{word-spacing:9.478170px;}
.ws65{word-spacing:9.529775px;}
.ws15b{word-spacing:9.538376px;}
.wsf7{word-spacing:9.607183px;}
.wsef{word-spacing:9.908214px;}
.ws108{word-spacing:10.020025px;}
.ws77{word-spacing:10.303854px;}
.ws5a{word-spacing:10.372661px;}
.wsab{word-spacing:10.424267px;}
.ws9b{word-spacing:10.725297px;}
.ws161{word-spacing:10.776903px;}
.ws155{word-spacing:10.785504px;}
.wsff{word-spacing:11.198346px;}
.ws11c{word-spacing:11.206947px;}
.wsb5{word-spacing:12.075636px;}
.ws133{word-spacing:13.408772px;}
.ws8b{word-spacing:15.077343px;}
.ws3d{word-spacing:16.014839px;}
.ws109{word-spacing:16.341672px;}
.wsa6{word-spacing:16.505089px;}
.ws8e{word-spacing:16.530891px;}
.ws117{word-spacing:16.754514px;}
.wsb1{word-spacing:17.666208px;}
.ws40{word-spacing:19.394984px;}
.ws14f{word-spacing:19.807827px;}
.wsd3{word-spacing:20.384100px;}
.wsd4{word-spacing:20.424868px;}
.ws119{word-spacing:31.393212px;}
.wsae{word-spacing:32.279103px;}
.wse2{word-spacing:67.972755px;}
._3{margin-left:-6.075769px;}
._2{margin-left:-4.739962px;}
._5{margin-left:-3.533426px;}
._0{margin-left:-1.390465px;}
._4{width:1.378898px;}
._1{width:2.420253px;}
._7{width:7.345152px;}
._6{width:12.032631px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:57.196200px;}
.fs5{font-size:67.947000px;}
.fs0{font-size:71.817600px;}
.fs1{font-size:78.698400px;}
.fs4{font-size:86.008800px;}
.fs3{font-size:93.319800px;}
.y0{bottom:0.000000px;}
.y2{bottom:15.336750px;}
.y1{bottom:40.494750px;}
.y153{bottom:105.968400px;}
.y144{bottom:108.656400px;}
.y47{bottom:113.167937px;}
.y26{bottom:114.120445px;}
.y181{bottom:116.505026px;}
.y159{bottom:117.150927px;}
.y167{bottom:118.982079px;}
.y11f{bottom:121.768764px;}
.y106{bottom:132.089664px;}
.y1c0{bottom:133.628315px;}
.ybb{bottom:134.779745px;}
.y25{bottom:136.805829px;}
.y46{bottom:140.475731px;}
.ye6{bottom:140.694900px;}
.y149{bottom:140.909400px;}
.y180{bottom:143.812820px;}
.y166{bottom:146.289873px;}
.y143{bottom:148.220400px;}
.y11e{bottom:149.076558px;}
.y9e{bottom:151.220171px;}
.y1bf{bottom:158.678016px;}
.y105{bottom:159.504969px;}
.y24{bottom:159.598940px;}
.yda{bottom:161.661883px;}
.yba{bottom:162.089690px;}
.y45{bottom:167.783525px;}
.y17f{bottom:171.120614px;}
.y193{bottom:172.728978px;}
.y165{bottom:173.597667px;}
.y11d{bottom:176.384352px;}
.y9d{bottom:178.530116px;}
.ye5{bottom:180.044550px;}
.y148{bottom:180.473550px;}
.y7f{bottom:181.860656px;}
.y23{bottom:182.392051px;}
.y19e{bottom:182.525557px;}
.y104{bottom:186.812763px;}
.yd9{bottom:189.075038px;}
.yb9{bottom:189.399634px;}
.y1be{bottom:194.586128px;}
.y44{bottom:195.198830px;}
.y17e{bottom:198.428408px;}
.y192{bottom:200.038922px;}
.y164{bottom:201.012972px;}
.y11c{bottom:203.692146px;}
.y22{bottom:205.185162px;}
.y9c{bottom:205.840060px;}
.y19d{bottom:207.573290px;}
.y7e{bottom:209.170601px;}
.y103{bottom:214.120557px;}
.yd8{bottom:216.382832px;}
.yb8{bottom:216.709578px;}
.y1bd{bottom:219.633861px;}
.y43{bottom:222.506624px;}
.y17d{bottom:225.736202px;}
.y191{bottom:227.348867px;}
.ye0{bottom:227.673637px;}
.y21{bottom:227.978273px;}
.y163{bottom:228.320766px;}
.y19c{bottom:232.621023px;}
.y7d{bottom:236.480545px;}
.y102{bottom:241.428351px;}
.y11b{bottom:241.751040px;}
.yd7{bottom:243.690626px;}
.y9b{bottom:245.834152px;}
.y42{bottom:249.814418px;}
.y20{bottom:250.771383px;}
.y17c{bottom:253.151507px;}
.y133{bottom:253.153657px;}
.y190{bottom:254.762021px;}
.y1bc{bottom:255.435731px;}
.y162{bottom:255.628560px;}
.yb7{bottom:256.701520px;}
.y19b{bottom:257.668756px;}
.y7c{bottom:263.895850px;}
.y101{bottom:268.736145px;}
.y11a{bottom:269.166345px;}
.y9a{bottom:273.141946px;}
.y1f{bottom:273.456768px;}
.y41{bottom:277.122212px;}
.y17b{bottom:280.461451px;}
.y1bb{bottom:280.485432px;}
.y132{bottom:281.214028px;}
.yd6{bottom:281.749520px;}
.yb6{bottom:284.011464px;}
.y7b{bottom:291.203644px;}
.y19a{bottom:293.470626px;}
.y161{bottom:293.687454px;}
.y18f{bottom:294.650753px;}
.y100{bottom:296.151450px;}
.y1e{bottom:296.251674px;}
.y119{bottom:296.474139px;}
.y99{bottom:300.449740px;}
.y40{bottom:304.430006px;}
.y61{bottom:307.769245px;}
.yd5{bottom:309.057314px;}
.y131{bottom:309.274399px;}
.y1ba{bottom:316.287301px;}
.y199{bottom:318.520327px;}
.y17a{bottom:318.520345px;}
.y1d{bottom:319.044785px;}
.y18e{bottom:321.958547px;}
.yff{bottom:323.461394px;}
.yb5{bottom:324.113067px;}
.y98{bottom:327.757534px;}
.y7a{bottom:329.262538px;}
.y160{bottom:331.746348px;}
.y3f{bottom:331.845311px;}
.y60{bottom:335.077039px;}
.y118{bottom:336.360720px;}
.yd4{bottom:336.472619px;}
.y1b9{bottom:341.337002px;}
.y1c{bottom:341.837896px;}
.y198{bottom:343.570027px;}
.y179{bottom:345.828139px;}
.y130{bottom:349.268491px;}
.yfe{bottom:350.771339px;}
.yb4{bottom:351.420861px;}
.y79{bottom:356.570332px;}
.y3e{bottom:359.153105px;}
.y18d{bottom:361.845128px;}
.y5f{bottom:362.384833px;}
.y117{bottom:363.668514px;}
.yd3{bottom:363.780413px;}
.y1b{bottom:364.631006px;}
.y1b8{bottom:366.384735px;}
.y97{bottom:367.644115px;}
.y178{bottom:373.135933px;}
.y12f{bottom:376.576285px;}
.yfd{bottom:378.081283px;}
.y197{bottom:379.371897px;}
.y78{bottom:383.878126px;}
.y3d{bottom:386.460899px;}
.y1a{bottom:387.424117px;}
.y5e{bottom:389.800138px;}
.y116{bottom:390.976308px;}
.yb3{bottom:391.414953px;}
.y1b7{bottom:391.432469px;}
.y152{bottom:391.950000px;}
.y158{bottom:392.379311px;}
.y177{bottom:400.551238px;}
.y18c{bottom:401.731709px;}
.yd2{bottom:401.839307px;}
.y12e{bottom:403.991590px;}
.y196{bottom:404.419630px;}
.y96{bottom:405.812670px;}
.y19{bottom:410.109502px;}
.y77{bottom:411.293431px;}
.y3c{bottom:413.768693px;}
.y157{bottom:413.881500px;}
.yfc{bottom:416.140177px;}
.y5d{bottom:417.110082px;}
.yb2{bottom:418.722747px;}
.y1b6{bottom:427.234338px;}
.y18b{bottom:429.147014px;}
.yd1{bottom:429.147101px;}
.y115{bottom:430.970400px;}
.y18{bottom:432.902612px;}
.y95{bottom:433.122614px;}
.y176{bottom:438.610132px;}
.y151{bottom:438.824925px;}
.y195{bottom:440.221500px;}
.y3b{bottom:441.076487px;}
.yfb{bottom:443.555482px;}
.y12d{bottom:443.878171px;}
.yb1{bottom:446.030541px;}
.y76{bottom:449.352325px;}
.y1b5{bottom:452.282072px;}
.y156{bottom:453.123000px;}
.y5c{bottom:455.168976px;}
.y17{bottom:455.695723px;}
.y18a{bottom:456.454808px;}
.yd0{bottom:456.454895px;}
.y94{bottom:460.432559px;}
.y150{bottom:466.132719px;}
.y114{bottom:470.856981px;}
.yfa{bottom:470.863276px;}
.y12c{bottom:471.185965px;}
.yb0{bottom:473.338335px;}
.y75{bottom:476.660119px;}
.y194{bottom:476.662575px;}
.y1b4{bottom:477.329805px;}
.y16{bottom:478.488834px;}
.y3a{bottom:479.242892px;}
.ycf{bottom:483.870200px;}
.y93{bottom:487.742503px;}
.y14f{bottom:493.440513px;}
.y189{bottom:496.341389px;}
.y113{bottom:498.164775px;}
.yf9{bottom:498.171070px;}
.y175{bottom:498.171226px;}
.y12b{bottom:498.493759px;}
.y15f{bottom:500.646129px;}
.y15{bottom:501.281945px;}
.y1b3{bottom:502.377538px;}
.y74{bottom:503.967913px;}
.y39{bottom:506.550686px;}
.yce{bottom:511.177994px;}
.yaf{bottom:513.224916px;}
.y5b{bottom:514.730070px;}
.y92{bottom:515.052447px;}
.y14e{bottom:520.855818px;}
.ydf{bottom:520.856421px;}
.y188{bottom:523.651333px;}
.y14{bottom:524.075056px;}
.yf8{bottom:525.478864px;}
.y174{bottom:525.479020px;}
.y12a{bottom:525.801553px;}
.y1b2{bottom:527.425271px;}
.y73{bottom:531.275707px;}
.y38{bottom:533.858480px;}
.y112{bottom:536.223669px;}
.ycd{bottom:538.485788px;}
.yae{bottom:540.640221px;}
.y5a{bottom:542.037864px;}
.yde{bottom:542.358611px;}
.y91{bottom:542.467752px;}
.y13{bottom:546.760440px;}
.y14d{bottom:548.163612px;}
.yf7{bottom:552.786658px;}
.y173{bottom:552.786814px;}
.y142{bottom:557.839800px;}
.y72{bottom:558.691012px;}
.y37{bottom:561.166274px;}
.y1b1{bottom:563.227141px;}
.y111{bottom:563.531463px;}
.y187{bottom:563.537914px;}
.ydd{bottom:563.860800px;}
.ycc{bottom:565.793582px;}
.y129{bottom:565.795645px;}
.yad{bottom:567.948015px;}
.y59{bottom:569.453169px;}
.y12{bottom:569.553551px;}
.y14c{bottom:575.471406px;}
.yf6{bottom:580.201963px;}
.y172{bottom:580.202119px;}
.y90{bottom:580.526646px;}
.y71{bottom:585.998806px;}
.y1b0{bottom:588.276842px;}
.y36{bottom:588.474068px;}
.y110{bottom:590.946768px;}
.y186{bottom:590.953219px;}
.y11{bottom:592.346662px;}
.ycb{bottom:593.101376px;}
.y128{bottom:593.103439px;}
.ye4{bottom:593.856611px;}
.y147{bottom:593.963111px;}
.y15e{bottom:595.255809px;}
.y58{bottom:596.760963px;}
.ydc{bottom:603.102300px;}
.y141{bottom:604.711514px;}
.yac{bottom:606.006909px;}
.yf5{bottom:607.509757px;}
.y171{bottom:607.509913px;}
.y8f{bottom:607.834440px;}
.y70{bottom:613.306600px;}
.y1af{bottom:613.326542px;}
.y14a{bottom:613.530237px;}
.y14b{bottom:613.530300px;}
.y10{bottom:615.139772px;}
.ye3{bottom:615.358800px;}
.y146{bottom:615.465300px;}
.y35{bottom:615.889373px;}
.y10f{bottom:618.256712px;}
.y185{bottom:618.261013px;}
.y127{bottom:620.411233px;}
.yca{bottom:620.516681px;}
.y15d{bottom:622.563603px;}
.y57{bottom:624.068757px;}
.y140{bottom:632.019308px;}
.yab{bottom:633.314703px;}
.yf4{bottom:634.817551px;}
.y170{bottom:634.817707px;}
.y8e{bottom:635.142234px;}
.yf{bottom:637.932883px;}
.y1ae{bottom:638.376243px;}
.y34{bottom:643.199318px;}
.y10e{bottom:645.566657px;}
.y184{bottom:645.568807px;}
.yc9{bottom:647.824475px;}
.y6f{bottom:651.365494px;}
.ye2{bottom:654.492450px;}
.y145{bottom:654.706950px;}
.y126{bottom:660.297814px;}
.y1cb{bottom:660.405450px;}
.yaa{bottom:660.622497px;}
.ye{bottom:660.725994px;}
.yf3{bottom:662.125345px;}
.y16f{bottom:662.125501px;}
.y56{bottom:662.127651px;}
.y8d{bottom:662.450028px;}
.y15c{bottom:662.450184px;}
.y1ad{bottom:663.425944px;}
.y13f{bottom:670.185713px;}
.y33{bottom:670.509262px;}
.y10d{bottom:672.876601px;}
.y6e{bottom:678.675438px;}
.yd{bottom:683.411378px;}
.yc8{bottom:685.883369px;}
.y125{bottom:687.607758px;}
.yf2{bottom:689.433139px;}
.y55{bottom:689.435445px;}
.y8c{bottom:689.865333px;}
.y15b{bottom:689.865489px;}
.y1ca{bottom:696.959508px;}
.y13e{bottom:697.493507px;}
.y32{bottom:697.819206px;}
.y1ac{bottom:699.227813px;}
.y16e{bottom:700.184395px;}
.y10c{bottom:700.186545px;}
.ya9{bottom:700.616589px;}
.y6d{bottom:706.090743px;}
.yc{bottom:706.204489px;}
.yc7{bottom:713.191163px;}
.y124{bottom:715.023063px;}
.yf1{bottom:716.848444px;}
.y54{bottom:716.850750px;}
.y8b{bottom:717.173127px;}
.y15a{bottom:717.173283px;}
.y1ab{bottom:724.277514px;}
.y13d{bottom:724.801301px;}
.y16d{bottom:727.599700px;}
.y10b{bottom:727.601850px;}
.ya8{bottom:727.924383px;}
.yb{bottom:728.997600px;}
.y6c{bottom:733.400687px;}
.y31{bottom:735.878100px;}
.y1c9{bottom:736.953600px;}
.y155{bottom:741.791100px;}
.yf0{bottom:744.156238px;}
.y53{bottom:744.158544px;}
.y8a{bottom:744.480921px;}
.yc6{bottom:753.185255px;}
.y16c{bottom:754.907494px;}
.y10a{bottom:754.909644px;}
.ya7{bottom:755.232177px;}
.y1aa{bottom:760.079384px;}
.y6b{bottom:760.710632px;}
.ya{bottom:763.832100px;}
.y13c{bottom:764.687882px;}
.yef{bottom:771.466182px;}
.y89{bottom:771.788715px;}
.y1c8{bottom:774.372981px;}
.yc5{bottom:780.493049px;}
.y154{bottom:781.034250px;}
.y16b{bottom:782.215288px;}
.y52{bottom:782.217438px;}
.ya6{bottom:782.539971px;}
.y1a9{bottom:785.129085px;}
.y6a{bottom:788.020576px;}
.y13b{bottom:791.995676px;}
.y183{bottom:792.968538px;}
.y30{bottom:794.150250px;}
.yee{bottom:798.773976px;}
.y88{bottom:799.096509px;}
.y1c7{bottom:799.420714px;}
.y16a{bottom:809.523082px;}
.y51{bottom:809.525232px;}
.y69{bottom:815.330520px;}
.y182{bottom:820.276332px;}
.yc4{bottom:820.487141px;}
.y1a8{bottom:820.930954px;}
.y9{bottom:821.779639px;}
.ya5{bottom:822.426552px;}
.yed{bottom:826.081770px;}
.y87{bottom:826.511814px;}
.y2f{bottom:829.091250px;}
.y13a{bottom:831.989768px;}
.y1c6{bottom:835.222584px;}
.y169{bottom:836.830876px;}
.y50{bottom:836.833026px;}
.y68{bottom:842.745825px;}
.y8{bottom:844.571763px;}
.y1a7{bottom:845.978687px;}
.y123{bottom:847.584126px;}
.yc3{bottom:847.797085px;}
.ya4{bottom:849.841857px;}
.yec{bottom:853.497075px;}
.y86{bottom:853.819608px;}
.y139{bottom:859.299712px;}
.y1c5{bottom:860.272284px;}
.y168{bottom:864.246181px;}
.y4f{bottom:864.248331px;}
.y67{bottom:870.053619px;}
.y122{bottom:874.999431px;}
.yc2{bottom:875.107029px;}
.y7{bottom:877.792789px;}
.yeb{bottom:880.804869px;}
.y85{bottom:881.127402px;}
.y1a6{bottom:881.780557px;}
.y138{bottom:886.609656px;}
.y2e{bottom:887.249490px;}
.ya3{bottom:889.728438px;}
.y4e{bottom:891.556125px;}
.y1c4{bottom:896.074154px;}
.y66{bottom:897.361413px;}
.ydb{bottom:899.295900px;}
.y6{bottom:900.585900px;}
.y121{bottom:902.307225px;}
.y1a5{bottom:906.828290px;}
.yea{bottom:908.112663px;}
.y2d{bottom:910.042601px;}
.yc1{bottom:915.101121px;}
.ya2{bottom:917.036232px;}
.y4d{bottom:918.863919px;}
.y84{bottom:919.186296px;}
.y1c3{bottom:921.121887px;}
.y137{bottom:924.667363px;}
.y65{bottom:924.669207px;}
.y120{bottom:929.615019px;}
.y1a4{bottom:931.876024px;}
.y2c{bottom:932.835712px;}
.yc0{bottom:942.516426px;}
.ya1{bottom:944.344026px;}
.y1c2{bottom:946.169620px;}
.ye9{bottom:946.171557px;}
.y4c{bottom:946.171713px;}
.y83{bottom:946.494090px;}
.y64{bottom:951.977001px;}
.y2b{bottom:955.628822px;}
.y109{bottom:956.922813px;}
.y1a3{bottom:956.923757px;}
.y5{bottom:969.177837px;}
.ybf{bottom:969.824220px;}
.ya0{bottom:971.651820px;}
.y136{bottom:973.477357px;}
.ye8{bottom:973.479351px;}
.y4b{bottom:973.479507px;}
.y82{bottom:973.909395px;}
.y2a{bottom:978.421933px;}
.y63{bottom:979.392306px;}
.y1a2{bottom:981.971490px;}
.y108{bottom:984.230607px;}
.y4{bottom:998.851200px;}
.y9f{bottom:999.067125px;}
.y135{bottom:1000.892662px;}
.ye7{bottom:1000.894656px;}
.y4a{bottom:1000.894812px;}
.y29{bottom:1001.215044px;}
.y81{bottom:1001.217189px;}
.y1c1{bottom:1007.021191px;}
.ybe{bottom:1009.818312px;}
.y107{bottom:1011.645912px;}
.y62{bottom:1017.451506px;}
.y1a1{bottom:1017.773360px;}
.y28{bottom:1024.008155px;}
.y134{bottom:1028.202606px;}
.ybd{bottom:1037.126106px;}
.y80{bottom:1038.953601px;}
.y49{bottom:1038.953706px;}
.y1a0{bottom:1042.823060px;}
.y27{bottom:1046.693539px;}
.ybc{bottom:1064.433900px;}
.y48{bottom:1066.261500px;}
.y19f{bottom:1067.872761px;}
.ye1{bottom:1068.196500px;}
.y3{bottom:1069.486650px;}
.he{height:50.631408px;}
.h4{height:51.353004px;}
.h8{height:52.285177px;}
.h2{height:52.452791px;}
.hb{height:53.863200px;}
.hc{height:58.638261px;}
.h9{height:60.636204px;}
.h1{height:61.978589px;}
.h5{height:61.982537px;}
.hd{height:67.916719px;}
.h7{height:74.225392px;}
.h6{height:74.225594px;}
.ha{height:74.230343px;}
.h3{height:80.534987px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:164.598300px;}
.xb{left:196.530030px;}
.x1a{left:201.151950px;}
.x4{left:212.763450px;}
.x1b{left:217.924950px;}
.x5{left:220.933598px;}
.xc{left:228.568308px;}
.xd{left:240.823704px;}
.x7{left:258.026784px;}
.xe{left:266.196300px;}
.x12{left:286.086600px;}
.xf{left:293.075100px;}
.x14{left:310.600237px;}
.x1f{left:315.545100px;}
.x1d{left:316.727100px;}
.x22{left:326.187600px;}
.x15{left:328.983600px;}
.x19{left:340.487100px;}
.x20{left:345.002100px;}
.x17{left:353.496750px;}
.x18{left:356.828067px;}
.x1{left:423.270750px;}
.x2{left:458.856900px;}
.x9{left:497.777274px;}
.x6{left:505.732050px;}
.x8{left:527.342784px;}
.x1c{left:633.671700px;}
.x3{left:658.505700px;}
.x1e{left:703.445850px;}
.x21{left:705.166350px;}
.x23{left:711.508774px;}
.x16{left:715.594350px;}
.x13{left:717.853350px;}
.x11{left:743.440490px;}
.x10{left:747.095850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls47{letter-spacing:-0.382261pt;}
.ls49{letter-spacing:-0.107033pt;}
.ls3a{letter-spacing:-0.099388pt;}
.ls33{letter-spacing:-0.091743pt;}
.ls24{letter-spacing:-0.089373pt;}
.ls17{letter-spacing:-0.082989pt;}
.ls11{letter-spacing:-0.082951pt;}
.ls23{letter-spacing:-0.076605pt;}
.ls41{letter-spacing:-0.076452pt;}
.ls1d{letter-spacing:-0.070222pt;}
.ls3b{letter-spacing:-0.068807pt;}
.ls1a{letter-spacing:-0.063838pt;}
.ls2f{letter-spacing:-0.061162pt;}
.ls19{letter-spacing:-0.057454pt;}
.ls2e{letter-spacing:-0.053517pt;}
.ls16{letter-spacing:-0.051070pt;}
.ls56{letter-spacing:-0.048968pt;}
.ls2c{letter-spacing:-0.045871pt;}
.ls18{letter-spacing:-0.044687pt;}
.ls15{letter-spacing:-0.038303pt;}
.ls28{letter-spacing:-0.038226pt;}
.ls1b{letter-spacing:-0.031919pt;}
.ls2b{letter-spacing:-0.030581pt;}
.ls32{letter-spacing:-0.030199pt;}
.ls14{letter-spacing:-0.025535pt;}
.ls10{letter-spacing:-0.024885pt;}
.ls29{letter-spacing:-0.022936pt;}
.ls26{letter-spacing:-0.019151pt;}
.ls27{letter-spacing:-0.015290pt;}
.ls57{letter-spacing:-0.013991pt;}
.ls25{letter-spacing:-0.012768pt;}
.ls40{letter-spacing:-0.012079pt;}
.ls2a{letter-spacing:-0.007645pt;}
.ls51{letter-spacing:-0.006995pt;}
.ls12{letter-spacing:-0.006384pt;}
.lse{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.004565pt;}
.ls46{letter-spacing:0.006040pt;}
.lsc{letter-spacing:0.006384pt;}
.ls4e{letter-spacing:0.006995pt;}
.ls21{letter-spacing:0.007645pt;}
.ls45{letter-spacing:0.012079pt;}
.ls55{letter-spacing:0.013991pt;}
.ls22{letter-spacing:0.015290pt;}
.ls53{letter-spacing:0.020986pt;}
.ls2d{letter-spacing:0.022936pt;}
.ls34{letter-spacing:0.024159pt;}
.ls4d{letter-spacing:0.027982pt;}
.ls38{letter-spacing:0.030581pt;}
.ls4f{letter-spacing:0.034977pt;}
.ls3e{letter-spacing:0.036238pt;}
.ls13{letter-spacing:0.038226pt;}
.ls3c{letter-spacing:0.038303pt;}
.ls6{letter-spacing:0.040269pt;}
.ls7{letter-spacing:0.040673pt;}
.ls50{letter-spacing:0.041972pt;}
.ls0{letter-spacing:0.044687pt;}
.ls48{letter-spacing:0.045871pt;}
.ls37{letter-spacing:0.048318pt;}
.ls52{letter-spacing:0.048968pt;}
.lsd{letter-spacing:0.051070pt;}
.ls20{letter-spacing:0.053517pt;}
.ls1{letter-spacing:0.055925pt;}
.ls4c{letter-spacing:0.055963pt;}
.ls3{letter-spacing:0.061009pt;}
.ls42{letter-spacing:0.061162pt;}
.ls54{letter-spacing:0.062959pt;}
.lsf{letter-spacing:0.070222pt;}
.ls5{letter-spacing:0.071177pt;}
.ls35{letter-spacing:0.076719pt;}
.ls44{letter-spacing:0.077210pt;}
.lsb{letter-spacing:0.081346pt;}
.ls8{letter-spacing:0.082179pt;}
.ls4b{letter-spacing:0.091743pt;}
.ls2{letter-spacing:0.093867pt;}
.ls4{letter-spacing:0.094447pt;}
.ls4a{letter-spacing:0.107033pt;}
.ls9{letter-spacing:0.109909pt;}
.lsa{letter-spacing:0.127103pt;}
.ls3f{letter-spacing:0.152905pt;}
.ls1f{letter-spacing:0.159595pt;}
.ls30{letter-spacing:0.191867pt;}
.ls43{letter-spacing:0.382261pt;}
.ls1e{letter-spacing:3.536618pt;}
.ls1c{letter-spacing:4.302672pt;}
.ls3d{letter-spacing:18.159867pt;}
.ls39{letter-spacing:33.791902pt;}
.ls36{letter-spacing:54.434014pt;}
.ls58{letter-spacing:904.665560pt;}
.ws15d{word-spacing:-19.220100pt;}
.ws5e{word-spacing:-19.166583pt;}
.ws111{word-spacing:-19.143648pt;}
.wsd1{word-spacing:-19.128357pt;}
.ws110{word-spacing:-19.120712pt;}
.ws5d{word-spacing:-19.113067pt;}
.wscf{word-spacing:-19.105421pt;}
.ws15c{word-spacing:-19.097776pt;}
.wsf0{word-spacing:-19.082486pt;}
.wsd0{word-spacing:-19.067195pt;}
.wsd2{word-spacing:-19.051905pt;}
.wsf1{word-spacing:-19.036614pt;}
.ws3{word-spacing:-16.010537pt;}
.ws24{word-spacing:-16.004153pt;}
.ws0{word-spacing:-15.959467pt;}
.ws80{word-spacing:-15.123492pt;}
.ws122{word-spacing:-15.111413pt;}
.ws1{word-spacing:-12.791612pt;}
.ws2{word-spacing:-12.750940pt;}
.ws89{word-spacing:-4.610072pt;}
.ws88{word-spacing:-4.579491pt;}
.ws52{word-spacing:-4.564200pt;}
.ws66{word-spacing:-4.548910pt;}
.ws6d{word-spacing:-4.449522pt;}
.ws6a{word-spacing:-4.204875pt;}
.wsf9{word-spacing:-4.197229pt;}
.ws6b{word-spacing:-4.181939pt;}
.ws125{word-spacing:-4.151358pt;}
.ws46{word-spacing:-4.090196pt;}
.ws6c{word-spacing:-4.074906pt;}
.wsee{word-spacing:-3.830259pt;}
.wsbc{word-spacing:-3.807323pt;}
.ws4f{word-spacing:-3.692644pt;}
.ws4b{word-spacing:-3.463288pt;}
.ws3e{word-spacing:-3.402126pt;}
.wse5{word-spacing:-3.042800pt;}
.ws143{word-spacing:-3.027510pt;}
.ws170{word-spacing:-2.996929pt;}
.ws19{word-spacing:-2.911007pt;}
.ws34{word-spacing:-2.683475pt;}
.ws5b{word-spacing:-2.652894pt;}
.ws13c{word-spacing:-2.637603pt;}
.ws4a{word-spacing:-2.614668pt;}
.wse6{word-spacing:-2.607022pt;}
.ws16a{word-spacing:-2.584087pt;}
.ws13a{word-spacing:-2.545860pt;}
.ws2d{word-spacing:-2.540747pt;}
.ws29{word-spacing:-2.355617pt;}
.ws11d{word-spacing:-2.301213pt;}
.wsb0{word-spacing:-2.293568pt;}
.ws106{word-spacing:-2.285923pt;}
.ws14c{word-spacing:-2.278278pt;}
.ws15e{word-spacing:-2.270632pt;}
.ws131{word-spacing:-2.262987pt;}
.ws55{word-spacing:-2.224761pt;}
.wsad{word-spacing:-2.155954pt;}
.ws18{word-spacing:-2.151336pt;}
.ws38{word-spacing:-2.133018pt;}
.ws151{word-spacing:-2.125373pt;}
.wscc{word-spacing:-1.957178pt;}
.ws140{word-spacing:-1.926597pt;}
.ws134{word-spacing:-1.918952pt;}
.ws124{word-spacing:-1.888371pt;}
.ws12f{word-spacing:-1.873081pt;}
.ws90{word-spacing:-1.865435pt;}
.ws3f{word-spacing:-1.857790pt;}
.ws144{word-spacing:-1.850145pt;}
.ws159{word-spacing:-1.842500pt;}
.ws145{word-spacing:-1.811919pt;}
.ws28{word-spacing:-1.800228pt;}
.ws2a{word-spacing:-1.793844pt;}
.ws13d{word-spacing:-1.788983pt;}
.ws83{word-spacing:-1.769642pt;}
.ws27{word-spacing:-1.768309pt;}
.wsc{word-spacing:-1.761925pt;}
.ws173{word-spacing:-1.750757pt;}
.ws82{word-spacing:-1.745483pt;}
.ws3c{word-spacing:-1.521400pt;}
.wsb6{word-spacing:-1.513755pt;}
.ws33{word-spacing:-1.490819pt;}
.ws59{word-spacing:-1.437303pt;}
.ws11f{word-spacing:-1.399076pt;}
.ws53{word-spacing:-1.383786pt;}
.ws1e{word-spacing:-1.372514pt;}
.ws135{word-spacing:-1.192655pt;}
.ws132{word-spacing:-1.162074pt;}
.wsd8{word-spacing:-1.116203pt;}
.ws153{word-spacing:-1.108558pt;}
.ws115{word-spacing:-1.085622pt;}
.ws104{word-spacing:-1.009170pt;}
.ws101{word-spacing:-0.795104pt;}
.ws141{word-spacing:-0.749232pt;}
.ws41{word-spacing:-0.741587pt;}
.ws160{word-spacing:-0.733942pt;}
.wse3{word-spacing:-0.718651pt;}
.wsb3{word-spacing:-0.711006pt;}
.ws62{word-spacing:-0.688070pt;}
.ws163{word-spacing:-0.665135pt;}
.ws22{word-spacing:-0.644762pt;}
.wsd7{word-spacing:-0.634554pt;}
.ws21{word-spacing:-0.625611pt;}
.wsb{word-spacing:-0.619227pt;}
.ws15{word-spacing:-0.606460pt;}
.ws86{word-spacing:-0.596328pt;}
.wsf6{word-spacing:-0.573392pt;}
.ws2f{word-spacing:-0.435778pt;}
.ws58{word-spacing:-0.420487pt;}
.ws8f{word-spacing:-0.366971pt;}
.ws16d{word-spacing:-0.351680pt;}
.wsba{word-spacing:-0.344035pt;}
.ws107{word-spacing:-0.328745pt;}
.wsbb{word-spacing:-0.313454pt;}
.ws11a{word-spacing:-0.305809pt;}
.ws85{word-spacing:-0.290519pt;}
.ws123{word-spacing:-0.244647pt;}
.ws71{word-spacing:-0.229357pt;}
.ws162{word-spacing:-0.221712pt;}
.ws7{word-spacing:-0.141017pt;}
.ws114{word-spacing:-0.122324pt;}
.ws179{word-spacing:-0.091743pt;}
.ws81{word-spacing:-0.076452pt;}
.ws6{word-spacing:-0.074656pt;}
.ws154{word-spacing:-0.045871pt;}
.ws113{word-spacing:-0.038226pt;}
.wsa9{word-spacing:-0.030581pt;}
.ws57{word-spacing:-0.022936pt;}
.ws7c{word-spacing:-0.015290pt;}
.ws39{word-spacing:-0.007645pt;}
.ws5{word-spacing:0.000000pt;}
.ws130{word-spacing:0.006384pt;}
.wsa8{word-spacing:0.007645pt;}
.ws74{word-spacing:0.015290pt;}
.ws127{word-spacing:0.019151pt;}
.ws7b{word-spacing:0.022936pt;}
.ws129{word-spacing:0.025535pt;}
.ws96{word-spacing:0.030581pt;}
.wsce{word-spacing:0.031919pt;}
.ws184{word-spacing:0.034977pt;}
.ws9c{word-spacing:0.038226pt;}
.ws128{word-spacing:0.038303pt;}
.ws17a{word-spacing:0.041972pt;}
.wscd{word-spacing:0.044687pt;}
.ws126{word-spacing:0.045871pt;}
.ws180{word-spacing:0.048968pt;}
.ws4{word-spacing:0.051070pt;}
.ws48{word-spacing:0.053517pt;}
.ws17d{word-spacing:0.055963pt;}
.wsc9{word-spacing:0.057454pt;}
.ws95{word-spacing:0.061162pt;}
.ws181{word-spacing:0.062959pt;}
.ws7f{word-spacing:0.068807pt;}
.ws17b{word-spacing:0.069954pt;}
.wsa0{word-spacing:0.076452pt;}
.ws183{word-spacing:0.076950pt;}
.ws17c{word-spacing:0.083945pt;}
.ws8{word-spacing:0.089373pt;}
.ws182{word-spacing:0.090940pt;}
.ws7a{word-spacing:0.091743pt;}
.ws17e{word-spacing:0.097936pt;}
.ws68{word-spacing:0.099388pt;}
.ws17f{word-spacing:0.104931pt;}
.ws30{word-spacing:0.114908pt;}
.ws54{word-spacing:0.122324pt;}
.ws1a{word-spacing:0.127676pt;}
.ws2e{word-spacing:0.134060pt;}
.wsa2{word-spacing:0.145259pt;}
.ws16{word-spacing:0.146827pt;}
.ws16b{word-spacing:0.152905pt;}
.ws11{word-spacing:0.159595pt;}
.ws5c{word-spacing:0.168195pt;}
.wsa5{word-spacing:0.175840pt;}
.ws12a{word-spacing:0.181192pt;}
.wsd5{word-spacing:0.205351pt;}
.wsc4{word-spacing:0.214066pt;}
.ws5f{word-spacing:0.223470pt;}
.ws169{word-spacing:0.259938pt;}
.ws121{word-spacing:0.282873pt;}
.ws61{word-spacing:0.366971pt;}
.wsfb{word-spacing:0.397552pt;}
.ws172{word-spacing:0.405197pt;}
.wsfa{word-spacing:0.412842pt;}
.wsb4{word-spacing:0.420487pt;}
.ws7e{word-spacing:0.428133pt;}
.ws16e{word-spacing:0.451068pt;}
.ws176{word-spacing:0.466359pt;}
.ws9{word-spacing:0.504319pt;}
.ws12b{word-spacing:0.688070pt;}
.ws12c{word-spacing:0.749232pt;}
.wsf3{word-spacing:0.756877pt;}
.ws9f{word-spacing:0.779813pt;}
.ws105{word-spacing:0.787458pt;}
.ws32{word-spacing:0.795104pt;}
.ws47{word-spacing:0.810394pt;}
.wsf2{word-spacing:0.818039pt;}
.ws36{word-spacing:0.825684pt;}
.wsc0{word-spacing:0.833330pt;}
.wse0{word-spacing:0.871556pt;}
.ws2c{word-spacing:0.919265pt;}
.ws67{word-spacing:1.154429pt;}
.wsac{word-spacing:1.169720pt;}
.ws69{word-spacing:1.177365pt;}
.ws13b{word-spacing:1.185010pt;}
.wsc8{word-spacing:1.192655pt;}
.wse8{word-spacing:1.200301pt;}
.ws43{word-spacing:1.215591pt;}
.ws14{word-spacing:1.327828pt;}
.ws44{word-spacing:1.452593pt;}
.ws97{word-spacing:1.536691pt;}
.ws8a{word-spacing:1.544336pt;}
.ws10e{word-spacing:1.582562pt;}
.ws178{word-spacing:1.590207pt;}
.ws16f{word-spacing:1.911307pt;}
.wsdf{word-spacing:1.934242pt;}
.wsb9{word-spacing:1.941888pt;}
.ws137{word-spacing:1.949533pt;}
.wsda{word-spacing:1.957178pt;}
.ws167{word-spacing:1.964823pt;}
.wsdb{word-spacing:1.995404pt;}
.ws3b{word-spacing:2.003049pt;}
.ws6e{word-spacing:2.025985pt;}
.ws10{word-spacing:2.042812pt;}
.ws12{word-spacing:2.055579pt;}
.ws164{word-spacing:2.064211pt;}
.wsd{word-spacing:2.087498pt;}
.ws14a{word-spacing:2.255342pt;}
.ws103{word-spacing:2.278278pt;}
.ws8d{word-spacing:2.293568pt;}
.ws63{word-spacing:2.308858pt;}
.ws11b{word-spacing:2.316504pt;}
.ws87{word-spacing:2.339439pt;}
.wsc3{word-spacing:2.347085pt;}
.ws158{word-spacing:2.370020pt;}
.ws51{word-spacing:2.377665pt;}
.ws3a{word-spacing:2.392956pt;}
.ws116{word-spacing:2.614668pt;}
.ws14d{word-spacing:2.652894pt;}
.wsaf{word-spacing:2.683475pt;}
.wsc5{word-spacing:2.691120pt;}
.wse4{word-spacing:2.714055pt;}
.ws4e{word-spacing:2.721701pt;}
.ws174{word-spacing:2.729346pt;}
.ws93{word-spacing:2.736991pt;}
.ws171{word-spacing:2.744636pt;}
.ws14e{word-spacing:2.759927pt;}
.ws2b{word-spacing:2.840785pt;}
.ws10b{word-spacing:3.027510pt;}
.ws10c{word-spacing:3.035155pt;}
.ws49{word-spacing:3.058091pt;}
.ws9a{word-spacing:3.081026pt;}
.wsc6{word-spacing:3.088672pt;}
.wsbf{word-spacing:3.096317pt;}
.ws4c{word-spacing:3.103962pt;}
.ws84{word-spacing:3.111607pt;}
.ws37{word-spacing:3.126898pt;}
.ws23{word-spacing:3.179126pt;}
.ws7d{word-spacing:3.195705pt;}
.ws70{word-spacing:3.417416pt;}
.wsc7{word-spacing:3.432707pt;}
.ws177{word-spacing:3.440352pt;}
.ws94{word-spacing:3.470933pt;}
.wsc2{word-spacing:3.555030pt;}
.ws10a{word-spacing:3.562676pt;}
.ws13{word-spacing:3.568537pt;}
.ws168{word-spacing:3.577966pt;}
.ws26{word-spacing:3.625991pt;}
.ws11e{word-spacing:3.822613pt;}
.wsf4{word-spacing:3.830259pt;}
.ws79{word-spacing:3.837904pt;}
.ws91{word-spacing:3.845549pt;}
.wsc1{word-spacing:3.891420pt;}
.ws78{word-spacing:3.929647pt;}
.ws1f{word-spacing:3.957948pt;}
.wsf5{word-spacing:4.036680pt;}
.wsbd{word-spacing:4.204875pt;}
.wsec{word-spacing:4.212520pt;}
.wsd6{word-spacing:4.220165pt;}
.ws31{word-spacing:4.258391pt;}
.wse9{word-spacing:4.273682pt;}
.ws15f{word-spacing:4.288972pt;}
.ws139{word-spacing:4.357779pt;}
.wsed{word-spacing:4.365424pt;}
.wsf8{word-spacing:4.564200pt;}
.ws4d{word-spacing:4.610072pt;}
.ws99{word-spacing:4.625362pt;}
.wse1{word-spacing:4.640653pt;}
.wsb2{word-spacing:4.686524pt;}
.ws25{word-spacing:4.749537pt;}
.ws13e{word-spacing:4.969397pt;}
.wsaa{word-spacing:4.977043pt;}
.ws56{word-spacing:4.984688pt;}
.ws50{word-spacing:4.992333pt;}
.wsb8{word-spacing:5.007623pt;}
.ws100{word-spacing:5.061140pt;}
.wsa7{word-spacing:5.084076pt;}
.ws1c{word-spacing:5.094262pt;}
.ws1b{word-spacing:5.107029pt;}
.wsdd{word-spacing:5.198754pt;}
.wsfd{word-spacing:5.351659pt;}
.ws64{word-spacing:5.366949pt;}
.ws9e{word-spacing:5.382240pt;}
.wsfc{word-spacing:5.389885pt;}
.wsfe{word-spacing:5.397530pt;}
.ws14b{word-spacing:5.405175pt;}
.ws60{word-spacing:5.412820pt;}
.wscb{word-spacing:5.420466pt;}
.ws13f{word-spacing:5.435756pt;}
.wsde{word-spacing:5.504563pt;}
.ws17{word-spacing:5.509208pt;}
.ws165{word-spacing:5.512208pt;}
.wsdc{word-spacing:5.535144pt;}
.ws166{word-spacing:5.550435pt;}
.wsa1{word-spacing:5.726275pt;}
.ws16c{word-spacing:5.733920pt;}
.ws8c{word-spacing:5.749210pt;}
.ws175{word-spacing:5.756856pt;}
.ws35{word-spacing:5.825663pt;}
.ws136{word-spacing:5.840953pt;}
.ws156{word-spacing:5.856244pt;}
.wse7{word-spacing:5.894470pt;}
.ws73{word-spacing:6.077955pt;}
.ws120{word-spacing:6.100891pt;}
.ws45{word-spacing:6.123827pt;}
.ws76{word-spacing:6.139117pt;}
.ws152{word-spacing:6.162053pt;}
.ws15a{word-spacing:6.169698pt;}
.ws72{word-spacing:6.177343pt;}
.ws157{word-spacing:6.223215pt;}
.wsd9{word-spacing:6.284376pt;}
.ws138{word-spacing:6.467862pt;}
.ws10d{word-spacing:6.490797pt;}
.ws42{word-spacing:6.498443pt;}
.wsb7{word-spacing:6.536669pt;}
.ws150{word-spacing:6.551959pt;}
.ws1d{word-spacing:6.632754pt;}
.wse{word-spacing:6.639138pt;}
.ws20{word-spacing:6.645522pt;}
.wseb{word-spacing:6.674283pt;}
.wsf{word-spacing:6.677441pt;}
.wsca{word-spacing:6.903640pt;}
.wsa4{word-spacing:6.941866pt;}
.wsa{word-spacing:7.015782pt;}
.ws6f{word-spacing:7.262965pt;}
.ws12e{word-spacing:7.285901pt;}
.ws12d{word-spacing:7.293546pt;}
.ws9d{word-spacing:7.301191pt;}
.ws142{word-spacing:7.324127pt;}
.wsbe{word-spacing:7.392934pt;}
.ws147{word-spacing:7.492322pt;}
.ws146{word-spacing:7.614646pt;}
.ws148{word-spacing:7.622291pt;}
.ws102{word-spacing:7.629936pt;}
.ws112{word-spacing:7.645227pt;}
.wsea{word-spacing:7.668162pt;}
.ws149{word-spacing:7.714034pt;}
.ws10f{word-spacing:8.065714pt;}
.ws98{word-spacing:8.081005pt;}
.wsa3{word-spacing:8.103940pt;}
.ws92{word-spacing:8.172747pt;}
.ws75{word-spacing:8.402104pt;}
.ws118{word-spacing:8.425040pt;}
.ws65{word-spacing:8.470911pt;}
.ws15b{word-spacing:8.478556pt;}
.wsf7{word-spacing:8.539718pt;}
.wsef{word-spacing:8.807301pt;}
.ws108{word-spacing:8.906689pt;}
.ws77{word-spacing:9.158982pt;}
.ws5a{word-spacing:9.220143pt;}
.wsab{word-spacing:9.266015pt;}
.ws9b{word-spacing:9.533598pt;}
.ws161{word-spacing:9.579469pt;}
.ws155{word-spacing:9.587114pt;}
.wsff{word-spacing:9.954085pt;}
.ws11c{word-spacing:9.961730pt;}
.wsb5{word-spacing:10.733898pt;}
.ws133{word-spacing:11.918908pt;}
.ws8b{word-spacing:13.402082pt;}
.ws3d{word-spacing:14.235412pt;}
.ws109{word-spacing:14.525931pt;}
.wsa6{word-spacing:14.671190pt;}
.ws8e{word-spacing:14.694126pt;}
.ws117{word-spacing:14.892902pt;}
.wsb1{word-spacing:15.703296pt;}
.ws40{word-spacing:17.239986pt;}
.ws14f{word-spacing:17.606957pt;}
.wsd3{word-spacing:18.119200pt;}
.wsd4{word-spacing:18.155438pt;}
.ws119{word-spacing:27.905077pt;}
.wsae{word-spacing:28.692536pt;}
.wse2{word-spacing:60.420226pt;}
._3{margin-left:-5.400684pt;}
._2{margin-left:-4.213299pt;}
._5{margin-left:-3.140823pt;}
._0{margin-left:-1.235969pt;}
._4{width:1.225687pt;}
._1{width:2.151336pt;}
._7{width:6.529024pt;}
._6{width:10.695672pt;}
.fs2{font-size:50.841067pt;}
.fs5{font-size:60.397333pt;}
.fs0{font-size:63.837867pt;}
.fs1{font-size:69.954133pt;}
.fs4{font-size:76.452267pt;}
.fs3{font-size:82.950933pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.632667pt;}
.y1{bottom:35.995333pt;}
.y153{bottom:94.194133pt;}
.y144{bottom:96.583467pt;}
.y47{bottom:100.593722pt;}
.y26{bottom:101.440396pt;}
.y181{bottom:103.560023pt;}
.y159{bottom:104.134157pt;}
.y167{bottom:105.761848pt;}
.y11f{bottom:108.238901pt;}
.y106{bottom:117.413035pt;}
.y1c0{bottom:118.780724pt;}
.ybb{bottom:119.804218pt;}
.y25{bottom:121.605182pt;}
.y46{bottom:124.867317pt;}
.ye6{bottom:125.062133pt;}
.y149{bottom:125.252800pt;}
.y180{bottom:127.833617pt;}
.y166{bottom:130.035443pt;}
.y143{bottom:131.751467pt;}
.y11e{bottom:132.512496pt;}
.y9e{bottom:134.417930pt;}
.y1bf{bottom:141.047125pt;}
.y105{bottom:141.782195pt;}
.y24{bottom:141.865725pt;}
.yda{bottom:143.699451pt;}
.yba{bottom:144.079724pt;}
.y45{bottom:149.140911pt;}
.y17f{bottom:152.107212pt;}
.y193{bottom:153.536869pt;}
.y165{bottom:154.309037pt;}
.y11d{bottom:156.786091pt;}
.y9d{bottom:158.693436pt;}
.ye5{bottom:160.039600pt;}
.y148{bottom:160.420933pt;}
.y7f{bottom:161.653917pt;}
.y23{bottom:162.126268pt;}
.y19e{bottom:162.244939pt;}
.y104{bottom:166.055789pt;}
.yd9{bottom:168.066700pt;}
.yb9{bottom:168.355230pt;}
.y1be{bottom:172.965447pt;}
.y44{bottom:173.510071pt;}
.y17e{bottom:176.380807pt;}
.y192{bottom:177.812375pt;}
.y164{bottom:178.678197pt;}
.y11c{bottom:181.059685pt;}
.y22{bottom:182.386810pt;}
.y9c{bottom:182.968942pt;}
.y19d{bottom:184.509591pt;}
.y7e{bottom:185.929423pt;}
.y103{bottom:190.329384pt;}
.yd8{bottom:192.340295pt;}
.yb8{bottom:192.630736pt;}
.y1bd{bottom:195.230099pt;}
.y43{bottom:197.783666pt;}
.y17d{bottom:200.654401pt;}
.y191{bottom:202.087881pt;}
.ye0{bottom:202.376566pt;}
.y21{bottom:202.647353pt;}
.y163{bottom:202.951792pt;}
.y19c{bottom:206.774243pt;}
.y7d{bottom:210.204929pt;}
.y102{bottom:214.602979pt;}
.y11b{bottom:214.889813pt;}
.yd7{bottom:216.613889pt;}
.y9b{bottom:218.519246pt;}
.y42{bottom:222.057261pt;}
.y20{bottom:222.907896pt;}
.y17c{bottom:225.023561pt;}
.y133{bottom:225.025473pt;}
.y190{bottom:226.455130pt;}
.y1bc{bottom:227.053983pt;}
.y162{bottom:227.225387pt;}
.yb7{bottom:228.179129pt;}
.y19b{bottom:229.038895pt;}
.y7c{bottom:234.574089pt;}
.y101{bottom:238.876573pt;}
.y11a{bottom:239.258973pt;}
.y9a{bottom:242.792841pt;}
.y1f{bottom:243.072682pt;}
.y41{bottom:246.330855pt;}
.y17b{bottom:249.299067pt;}
.y1bb{bottom:249.320384pt;}
.y132{bottom:249.968025pt;}
.yd6{bottom:250.444017pt;}
.yb6{bottom:252.454635pt;}
.y7b{bottom:258.847683pt;}
.y19a{bottom:260.862779pt;}
.y161{bottom:261.055515pt;}
.y18f{bottom:261.911780pt;}
.y100{bottom:263.245733pt;}
.y1e{bottom:263.334821pt;}
.y119{bottom:263.532568pt;}
.y99{bottom:267.066435pt;}
.y40{bottom:270.604450pt;}
.y61{bottom:273.572662pt;}
.yd5{bottom:274.717612pt;}
.y131{bottom:274.910577pt;}
.y1ba{bottom:281.144268pt;}
.y199{bottom:283.129179pt;}
.y17a{bottom:283.129195pt;}
.y1d{bottom:283.595364pt;}
.y18e{bottom:286.185375pt;}
.yff{bottom:287.521239pt;}
.yb5{bottom:288.100504pt;}
.y98{bottom:291.340030pt;}
.y7a{bottom:292.677811pt;}
.y160{bottom:294.885643pt;}
.y3f{bottom:294.973610pt;}
.y60{bottom:297.846257pt;}
.y118{bottom:298.987307pt;}
.yd4{bottom:299.086772pt;}
.y1b9{bottom:303.410669pt;}
.y1c{bottom:303.855907pt;}
.y198{bottom:305.395580pt;}
.y179{bottom:307.402790pt;}
.y130{bottom:310.460881pt;}
.yfe{bottom:311.796745pt;}
.yb4{bottom:312.374099pt;}
.y79{bottom:316.951406pt;}
.y3e{bottom:319.247205pt;}
.y18d{bottom:321.640113pt;}
.y5f{bottom:322.119851pt;}
.y117{bottom:323.260901pt;}
.yd3{bottom:323.360367pt;}
.y1b{bottom:324.116450pt;}
.y1b8{bottom:325.675320pt;}
.y97{bottom:326.794769pt;}
.y178{bottom:331.676385pt;}
.y12f{bottom:334.734475pt;}
.yfd{bottom:336.072251pt;}
.y197{bottom:337.219464pt;}
.y78{bottom:341.225001pt;}
.y3d{bottom:343.520799pt;}
.y1a{bottom:344.376993pt;}
.y5e{bottom:346.489011pt;}
.y116{bottom:347.534496pt;}
.yb3{bottom:347.924403pt;}
.y1b7{bottom:347.939972pt;}
.y152{bottom:348.400000pt;}
.y158{bottom:348.781609pt;}
.y177{bottom:356.045545pt;}
.y18c{bottom:357.094852pt;}
.yd2{bottom:357.190495pt;}
.y12e{bottom:359.103635pt;}
.y196{bottom:359.484116pt;}
.y96{bottom:360.722373pt;}
.y19{bottom:364.541779pt;}
.y77{bottom:365.594161pt;}
.y3c{bottom:367.794394pt;}
.y157{bottom:367.894667pt;}
.yfc{bottom:369.902379pt;}
.y5d{bottom:370.764517pt;}
.yb2{bottom:372.197997pt;}
.y1b6{bottom:379.763856pt;}
.y18b{bottom:381.464012pt;}
.yd1{bottom:381.464089pt;}
.y115{bottom:383.084800pt;}
.y18{bottom:384.802322pt;}
.y95{bottom:384.997879pt;}
.y176{bottom:389.875673pt;}
.y151{bottom:390.066600pt;}
.y195{bottom:391.308000pt;}
.y3b{bottom:392.067989pt;}
.yfb{bottom:394.271539pt;}
.y12d{bottom:394.558374pt;}
.yb1{bottom:396.471592pt;}
.y76{bottom:399.424289pt;}
.y1b5{bottom:402.028508pt;}
.y156{bottom:402.776000pt;}
.y5c{bottom:404.594645pt;}
.y17{bottom:405.062865pt;}
.y18a{bottom:405.737607pt;}
.yd0{bottom:405.737684pt;}
.y94{bottom:409.273385pt;}
.y150{bottom:414.340195pt;}
.y114{bottom:418.539539pt;}
.yfa{bottom:418.545134pt;}
.y12c{bottom:418.831969pt;}
.yb0{bottom:420.745187pt;}
.y75{bottom:423.697883pt;}
.y194{bottom:423.700067pt;}
.y1b4{bottom:424.293160pt;}
.y16{bottom:425.323408pt;}
.y3a{bottom:425.993682pt;}
.ycf{bottom:430.106844pt;}
.y93{bottom:433.548891pt;}
.y14f{bottom:438.613789pt;}
.y189{bottom:441.192345pt;}
.y113{bottom:442.813133pt;}
.yf9{bottom:442.818729pt;}
.y175{bottom:442.818867pt;}
.y12b{bottom:443.105563pt;}
.y15f{bottom:445.018781pt;}
.y15{bottom:445.583951pt;}
.y1b3{bottom:446.557812pt;}
.y74{bottom:447.971478pt;}
.y39{bottom:450.267277pt;}
.yce{bottom:454.380439pt;}
.yaf{bottom:456.199925pt;}
.y5b{bottom:457.537840pt;}
.y92{bottom:457.824397pt;}
.y14e{bottom:462.982949pt;}
.ydf{bottom:462.983485pt;}
.y188{bottom:465.467851pt;}
.y14{bottom:465.844494pt;}
.yf8{bottom:467.092323pt;}
.y174{bottom:467.092462pt;}
.y12a{bottom:467.379158pt;}
.y1b2{bottom:468.822463pt;}
.y73{bottom:472.245073pt;}
.y38{bottom:474.540871pt;}
.y112{bottom:476.643261pt;}
.ycd{bottom:478.654033pt;}
.yae{bottom:480.569085pt;}
.y5a{bottom:481.811435pt;}
.yde{bottom:482.096543pt;}
.y91{bottom:482.193557pt;}
.y13{bottom:486.009280pt;}
.y14d{bottom:487.256544pt;}
.yf7{bottom:491.365918pt;}
.y173{bottom:491.366057pt;}
.y142{bottom:495.857600pt;}
.y72{bottom:496.614233pt;}
.y37{bottom:498.814466pt;}
.y1b1{bottom:500.646348pt;}
.y111{bottom:500.916856pt;}
.y187{bottom:500.922590pt;}
.ydd{bottom:501.209600pt;}
.ycc{bottom:502.927628pt;}
.y129{bottom:502.929462pt;}
.yad{bottom:504.842680pt;}
.y59{bottom:506.180595pt;}
.y12{bottom:506.269823pt;}
.y14c{bottom:511.530139pt;}
.yf6{bottom:515.735078pt;}
.y172{bottom:515.735217pt;}
.y90{bottom:516.023685pt;}
.y71{bottom:520.887827pt;}
.y1b0{bottom:522.912748pt;}
.y36{bottom:523.088061pt;}
.y110{bottom:525.286016pt;}
.y186{bottom:525.291750pt;}
.y11{bottom:526.530366pt;}
.ycb{bottom:527.201223pt;}
.y128{bottom:527.203057pt;}
.ye4{bottom:527.872543pt;}
.y147{bottom:527.967209pt;}
.y15e{bottom:529.116275pt;}
.y58{bottom:530.454189pt;}
.ydc{bottom:536.090933pt;}
.y141{bottom:537.521345pt;}
.yac{bottom:538.672808pt;}
.yf5{bottom:540.008673pt;}
.y171{bottom:540.008811pt;}
.y8f{bottom:540.297280pt;}
.y70{bottom:545.161422pt;}
.y1af{bottom:545.179149pt;}
.y14a{bottom:545.360211pt;}
.y14b{bottom:545.360267pt;}
.y10{bottom:546.790909pt;}
.ye3{bottom:546.985600pt;}
.y146{bottom:547.080267pt;}
.y35{bottom:547.457221pt;}
.y10f{bottom:549.561522pt;}
.y185{bottom:549.565345pt;}
.y127{bottom:551.476651pt;}
.yca{bottom:551.570383pt;}
.y15d{bottom:553.389869pt;}
.y57{bottom:554.727784pt;}
.y140{bottom:561.794940pt;}
.yab{bottom:562.946403pt;}
.yf4{bottom:564.282267pt;}
.y170{bottom:564.282406pt;}
.y8e{bottom:564.570875pt;}
.yf{bottom:567.051452pt;}
.y1ae{bottom:567.445549pt;}
.y34{bottom:571.732727pt;}
.y10e{bottom:573.837028pt;}
.y184{bottom:573.838939pt;}
.yc9{bottom:575.843977pt;}
.y6f{bottom:578.991550pt;}
.ye2{bottom:581.771067pt;}
.y145{bottom:581.961733pt;}
.y126{bottom:586.931390pt;}
.y1cb{bottom:587.027067pt;}
.yaa{bottom:587.219997pt;}
.ye{bottom:587.311995pt;}
.yf3{bottom:588.555862pt;}
.y16f{bottom:588.556001pt;}
.y56{bottom:588.557912pt;}
.y8d{bottom:588.844469pt;}
.y15c{bottom:588.844608pt;}
.y1ad{bottom:589.711950pt;}
.y13f{bottom:595.720633pt;}
.y33{bottom:596.008233pt;}
.y10d{bottom:598.112534pt;}
.y6e{bottom:603.267056pt;}
.yd{bottom:607.476781pt;}
.yc8{bottom:609.674105pt;}
.y125{bottom:611.206896pt;}
.yf2{bottom:612.829457pt;}
.y55{bottom:612.831507pt;}
.y8c{bottom:613.213629pt;}
.y15b{bottom:613.213768pt;}
.y1ca{bottom:619.519563pt;}
.y13e{bottom:619.994228pt;}
.y32{bottom:620.283739pt;}
.y1ac{bottom:621.535834pt;}
.y16e{bottom:622.386129pt;}
.y10c{bottom:622.388040pt;}
.ya9{bottom:622.770301pt;}
.y6d{bottom:627.636216pt;}
.yc{bottom:627.737324pt;}
.yc7{bottom:633.947700pt;}
.y124{bottom:635.576056pt;}
.yf1{bottom:637.198617pt;}
.y54{bottom:637.200667pt;}
.y8b{bottom:637.487224pt;}
.y15a{bottom:637.487363pt;}
.y1ab{bottom:643.802235pt;}
.y13d{bottom:644.267823pt;}
.y16d{bottom:646.755289pt;}
.y10b{bottom:646.757200pt;}
.ya8{bottom:647.043896pt;}
.yb{bottom:647.997867pt;}
.y6c{bottom:651.911722pt;}
.y31{bottom:654.113867pt;}
.y1c9{bottom:655.069867pt;}
.y155{bottom:659.369867pt;}
.yf0{bottom:661.472211pt;}
.y53{bottom:661.474261pt;}
.y8a{bottom:661.760819pt;}
.yc6{bottom:669.498004pt;}
.y16c{bottom:671.028883pt;}
.y10a{bottom:671.030795pt;}
.ya7{bottom:671.317491pt;}
.y1aa{bottom:675.626119pt;}
.y6b{bottom:676.187228pt;}
.ya{bottom:678.961867pt;}
.y13c{bottom:679.722561pt;}
.yef{bottom:685.747717pt;}
.y89{bottom:686.034413pt;}
.y1c8{bottom:688.331538pt;}
.yc5{bottom:693.771599pt;}
.y154{bottom:694.252667pt;}
.y16b{bottom:695.302478pt;}
.y52{bottom:695.304389pt;}
.ya6{bottom:695.591085pt;}
.y1a9{bottom:697.892520pt;}
.y6a{bottom:700.462734pt;}
.y13b{bottom:703.996156pt;}
.y183{bottom:704.860923pt;}
.y30{bottom:705.911333pt;}
.yee{bottom:710.021312pt;}
.y88{bottom:710.308008pt;}
.y1c7{bottom:710.596190pt;}
.y16a{bottom:719.576073pt;}
.y51{bottom:719.577984pt;}
.y69{bottom:724.738240pt;}
.y182{bottom:729.134517pt;}
.yc4{bottom:729.321903pt;}
.y1a8{bottom:729.716404pt;}
.y9{bottom:730.470790pt;}
.ya5{bottom:731.045824pt;}
.yed{bottom:734.294907pt;}
.y87{bottom:734.677168pt;}
.y2f{bottom:736.970000pt;}
.y13a{bottom:739.546460pt;}
.y1c6{bottom:742.420074pt;}
.y169{bottom:743.849667pt;}
.y50{bottom:743.851579pt;}
.y68{bottom:749.107400pt;}
.y8{bottom:750.730456pt;}
.y1a7{bottom:751.981055pt;}
.y123{bottom:753.408112pt;}
.yc3{bottom:753.597409pt;}
.ya4{bottom:755.414984pt;}
.yec{bottom:758.664067pt;}
.y86{bottom:758.950763pt;}
.y139{bottom:763.821966pt;}
.y1c5{bottom:764.686475pt;}
.y168{bottom:768.218827pt;}
.y4f{bottom:768.220739pt;}
.y67{bottom:773.380995pt;}
.y122{bottom:777.777272pt;}
.yc2{bottom:777.872915pt;}
.y7{bottom:780.260257pt;}
.yeb{bottom:782.937661pt;}
.y85{bottom:783.224357pt;}
.y1a6{bottom:783.804940pt;}
.y138{bottom:788.097472pt;}
.y2e{bottom:788.666213pt;}
.ya3{bottom:790.869723pt;}
.y4e{bottom:792.494333pt;}
.y1c4{bottom:796.510359pt;}
.y66{bottom:797.654589pt;}
.ydb{bottom:799.374133pt;}
.y6{bottom:800.520800pt;}
.y121{bottom:802.050867pt;}
.y1a5{bottom:806.069591pt;}
.yea{bottom:807.211256pt;}
.y2d{bottom:808.926756pt;}
.yc1{bottom:813.423219pt;}
.ya2{bottom:815.143317pt;}
.y4d{bottom:816.767928pt;}
.y84{bottom:817.054485pt;}
.y1c3{bottom:818.775011pt;}
.y137{bottom:821.926545pt;}
.y65{bottom:821.928184pt;}
.y120{bottom:826.324461pt;}
.y1a4{bottom:828.334243pt;}
.y2c{bottom:829.187299pt;}
.yc0{bottom:837.792379pt;}
.ya1{bottom:839.416912pt;}
.y1c2{bottom:841.039663pt;}
.ye9{bottom:841.041384pt;}
.y4c{bottom:841.041523pt;}
.y83{bottom:841.328080pt;}
.y64{bottom:846.201779pt;}
.y2b{bottom:849.447842pt;}
.y109{bottom:850.598056pt;}
.y1a3{bottom:850.598895pt;}
.y5{bottom:861.491410pt;}
.ybf{bottom:862.065973pt;}
.ya0{bottom:863.690507pt;}
.y136{bottom:865.313206pt;}
.ye8{bottom:865.314979pt;}
.y4b{bottom:865.315117pt;}
.y82{bottom:865.697240pt;}
.y2a{bottom:869.708385pt;}
.y63{bottom:870.570939pt;}
.y1a2{bottom:872.863547pt;}
.y108{bottom:874.871651pt;}
.y4{bottom:887.867733pt;}
.y9f{bottom:888.059667pt;}
.y135{bottom:889.682366pt;}
.ye7{bottom:889.684139pt;}
.y4a{bottom:889.684277pt;}
.y29{bottom:889.968928pt;}
.y81{bottom:889.970835pt;}
.y1c1{bottom:895.129947pt;}
.ybe{bottom:897.616277pt;}
.y107{bottom:899.240811pt;}
.y62{bottom:904.401339pt;}
.y1a1{bottom:904.687431pt;}
.y28{bottom:910.229471pt;}
.y134{bottom:913.957872pt;}
.ybd{bottom:921.889872pt;}
.y80{bottom:923.514312pt;}
.y49{bottom:923.514405pt;}
.y1a0{bottom:926.953831pt;}
.y27{bottom:930.394257pt;}
.ybc{bottom:946.163467pt;}
.y48{bottom:947.788000pt;}
.y19f{bottom:949.220232pt;}
.ye1{bottom:949.508000pt;}
.y3{bottom:950.654800pt;}
.he{height:45.005696pt;}
.h4{height:45.647115pt;}
.h8{height:46.475713pt;}
.h2{height:46.624703pt;}
.hb{height:47.878400pt;}
.hc{height:52.122899pt;}
.h9{height:53.898848pt;}
.h1{height:55.092079pt;}
.h5{height:55.095589pt;}
.hd{height:60.370417pt;}
.h7{height:65.978126pt;}
.h6{height:65.978306pt;}
.ha{height:65.982527pt;}
.h3{height:71.586655pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:146.309600pt;}
.xb{left:174.693360pt;}
.x1a{left:178.801733pt;}
.x4{left:189.123067pt;}
.x1b{left:193.711067pt;}
.x5{left:196.385421pt;}
.xc{left:203.171829pt;}
.xd{left:214.065515pt;}
.x7{left:229.357142pt;}
.xe{left:236.618933pt;}
.x12{left:254.299200pt;}
.xf{left:260.511200pt;}
.x14{left:276.089100pt;}
.x1f{left:280.484533pt;}
.x1d{left:281.535200pt;}
.x22{left:289.944533pt;}
.x15{left:292.429867pt;}
.x19{left:302.655200pt;}
.x20{left:306.668533pt;}
.x17{left:314.219333pt;}
.x18{left:317.180504pt;}
.x1{left:376.240667pt;}
.x2{left:407.872800pt;}
.x9{left:442.468688pt;}
.x6{left:449.539600pt;}
.x8{left:468.749142pt;}
.x1c{left:563.263733pt;}
.x3{left:585.338400pt;}
.x1e{left:625.285200pt;}
.x21{left:626.814533pt;}
.x23{left:632.452243pt;}
.x16{left:636.083867pt;}
.x13{left:638.091867pt;}
.x11{left:660.835991pt;}
.x10{left:664.085200pt;}
}




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