
    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_93136620b54f9b16cb11208b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_1663df9e2ba4a820551c5d66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.703000;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_0920c72b13d0dee477e9cbf5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.993000;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_c5c52469fe314711c60e57c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148000;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_a36d4a2b38f7c3855b7ea178.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_8d2a02c60e6575bc9c6b7168.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_043c067009436696f6f1d8d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_354740314ea4a8750dfaf21c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.839000;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_af4e78b6c3f1561968163015.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.990000;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_af51031c958190d219e6eda8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.748000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7fa5b72e402dfc4188bc770.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_af25feb3c908629726fa9578.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9aa522ef1fcb8492596ed5c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8278fb1e4e61120539261ff3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_76703aedd933a2de179b34de.woff2')format("woff");}.fff{font-family:fff;line-height:0.826000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29f2467969f0130233bf0c96.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.122000;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);}
.v2{vertical-align:-9.571872px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.640000px;}
.v1{vertical-align:11.027610px;}
.v3{vertical-align:12.319260px;}
.lse{letter-spacing:-8.879616px;}
.ls5a{letter-spacing:-4.002990px;}
.ls93{letter-spacing:-2.973408px;}
.ls8e{letter-spacing:-2.320296px;}
.ls44{letter-spacing:-2.318040px;}
.ls1a{letter-spacing:-2.186064px;}
.ls14{letter-spacing:-2.115000px;}
.lsc{letter-spacing:-1.827360px;}
.ls3d{letter-spacing:-1.428612px;}
.ls69{letter-spacing:-1.312710px;}
.ls68{letter-spacing:-1.291278px;}
.ls65{letter-spacing:-1.173402px;}
.ls67{letter-spacing:-1.130538px;}
.ls2d{letter-spacing:-1.026480px;}
.ls15{letter-spacing:-0.964440px;}
.ls11{letter-spacing:-0.959082px;}
.ls12{letter-spacing:-0.953724px;}
.ls4c{letter-spacing:-0.943008px;}
.ls9b{letter-spacing:-0.902400px;}
.ls6e{letter-spacing:-0.853332px;}
.ls28{letter-spacing:-0.825132px;}
.ls6b{letter-spacing:-0.819774px;}
.ls9a{letter-spacing:-0.816672px;}
.ls97{letter-spacing:-0.812160px;}
.ls6a{letter-spacing:-0.809058px;}
.ls86{letter-spacing:-0.760836px;}
.ls51{letter-spacing:-0.595584px;}
.ls4f{letter-spacing:-0.586560px;}
.ls50{letter-spacing:-0.564000px;}
.ls2c{letter-spacing:-0.552720px;}
.ls52{letter-spacing:-0.541440px;}
.ls18{letter-spacing:-0.541158px;}
.ls66{letter-spacing:-0.535800px;}
.ls2e{letter-spacing:-0.517188px;}
.ls7f{letter-spacing:-0.498294px;}
.ls82{letter-spacing:-0.466146px;}
.ls59{letter-spacing:-0.465018px;}
.ls5b{letter-spacing:-0.460224px;}
.lsf{letter-spacing:-0.433152px;}
.lsd{letter-spacing:-0.412848px;}
.ls47{letter-spacing:-0.412284px;}
.ls5f{letter-spacing:-0.407490px;}
.ls83{letter-spacing:-0.407208px;}
.ls4d{letter-spacing:-0.392544px;}
.ls4e{letter-spacing:-0.369984px;}
.ls27{letter-spacing:-0.369138px;}
.ls25{letter-spacing:-0.364344px;}
.ls7e{letter-spacing:-0.358986px;}
.ls80{letter-spacing:-0.348270px;}
.ls81{letter-spacing:-0.342912px;}
.ls3b{letter-spacing:-0.340374px;}
.ls6c{letter-spacing:-0.321480px;}
.ls8b{letter-spacing:-0.310764px;}
.ls89{letter-spacing:-0.305406px;}
.ls22{letter-spacing:-0.302022px;}
.ls8c{letter-spacing:-0.300048px;}
.ls98{letter-spacing:-0.279744px;}
.ls6f{letter-spacing:-0.275232px;}
.ls85{letter-spacing:-0.273258px;}
.ls7c{letter-spacing:-0.262542px;}
.ls5c{letter-spacing:-0.249288px;}
.ls3c{letter-spacing:-0.244494px;}
.ls39{letter-spacing:-0.239700px;}
.ls7d{letter-spacing:-0.225036px;}
.ls62{letter-spacing:-0.198246px;}
.ls3e{letter-spacing:-0.186966px;}
.ls87{letter-spacing:-0.155382px;}
.ls84{letter-spacing:-0.150024px;}
.ls61{letter-spacing:-0.144666px;}
.ls4b{letter-spacing:-0.139026px;}
.ls57{letter-spacing:-0.124644px;}
.ls19{letter-spacing:-0.096444px;}
.ls46{letter-spacing:-0.091086px;}
.ls1b{letter-spacing:-0.058938px;}
.ls88{letter-spacing:-0.053580px;}
.ls8f{letter-spacing:-0.039480px;}
.ls29{letter-spacing:-0.035532px;}
.ls40{letter-spacing:-0.028764px;}
.ls8d{letter-spacing:-0.028200px;}
.ls96{letter-spacing:-0.022560px;}
.ls1e{letter-spacing:-0.021432px;}
.ls6d{letter-spacing:-0.014382px;}
.ls99{letter-spacing:-0.013536px;}
.ls2b{letter-spacing:-0.011844px;}
.ls17{letter-spacing:-0.011280px;}
.ls13{letter-spacing:-0.010716px;}
.ls58{letter-spacing:-0.010067px;}
.ls42{letter-spacing:-0.009588px;}
.ls90{letter-spacing:-0.009024px;}
.ls5e{letter-spacing:-0.005640px;}
.ls10{letter-spacing:-0.005358px;}
.ls23{letter-spacing:-0.004794px;}
.ls16{letter-spacing:-0.004512px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003948px;}
.ls7b{letter-spacing:0.004512px;}
.ls33{letter-spacing:0.004794px;}
.ls4{letter-spacing:0.005640px;}
.lsb{letter-spacing:0.006768px;}
.ls7{letter-spacing:0.007896px;}
.ls8{letter-spacing:0.011844px;}
.ls38{letter-spacing:0.013536px;}
.ls6{letter-spacing:0.015792px;}
.ls74{letter-spacing:0.021432px;}
.ls5d{letter-spacing:0.023970px;}
.ls20{letter-spacing:0.026790px;}
.ls1{letter-spacing:0.031584px;}
.ls49{letter-spacing:0.038352px;}
.ls1c{letter-spacing:0.064296px;}
.ls54{letter-spacing:0.067116px;}
.ls71{letter-spacing:0.069654px;}
.ls77{letter-spacing:0.075012px;}
.ls37{letter-spacing:0.076704px;}
.ls35{letter-spacing:0.095880px;}
.ls41{letter-spacing:0.105468px;}
.ls5{letter-spacing:0.110262px;}
.ls72{letter-spacing:0.123234px;}
.ls32{letter-spacing:0.129438px;}
.ls1f{letter-spacing:0.160740px;}
.ls3f{letter-spacing:0.196554px;}
.ls78{letter-spacing:0.198246px;}
.ls60{letter-spacing:0.234906px;}
.ls1d{letter-spacing:0.235752px;}
.ls75{letter-spacing:0.262542px;}
.ls3a{letter-spacing:0.263670px;}
.ls79{letter-spacing:0.283974px;}
.ls24{letter-spacing:0.297228px;}
.ls63{letter-spacing:0.316122px;}
.ls8a{letter-spacing:0.321480px;}
.ls21{letter-spacing:0.325992px;}
.ls73{letter-spacing:0.337554px;}
.ls31{letter-spacing:0.359550px;}
.ls7a{letter-spacing:0.378726px;}
.lsa{letter-spacing:0.382166px;}
.ls48{letter-spacing:0.407490px;}
.ls64{letter-spacing:0.412566px;}
.ls3{letter-spacing:0.455430px;}
.ls70{letter-spacing:0.460788px;}
.ls26{letter-spacing:0.474606px;}
.ls2f{letter-spacing:0.479400px;}
.ls76{letter-spacing:0.487578px;}
.ls2{letter-spacing:0.530442px;}
.ls92{letter-spacing:0.586560px;}
.ls34{letter-spacing:0.693720px;}
.ls43{letter-spacing:1.082880px;}
.ls94{letter-spacing:1.186656px;}
.ls91{letter-spacing:1.484448px;}
.ls95{letter-spacing:2.761344px;}
.ls2a{letter-spacing:6.711600px;}
.ls45{letter-spacing:7.703958px;}
.ls36{letter-spacing:11.975412px;}
.ls55{letter-spacing:12.733800px;}
.ls56{letter-spacing:13.395000px;}
.ls4a{letter-spacing:13.830690px;}
.ls53{letter-spacing:17.099100px;}
.ls30{letter-spacing:19.262292px;}
.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;}
}
.ws46{word-spacing:-25.815690px;}
.ws43{word-spacing:-19.688958px;}
.wsa{word-spacing:-15.859680px;}
.ws13{word-spacing:-15.318240px;}
.ws83{word-spacing:-15.002400px;}
.ws8{word-spacing:-14.905956px;}
.ws7{word-spacing:-14.900598px;}
.wsb{word-spacing:-14.895240px;}
.ws3{word-spacing:-14.341392px;}
.ws82{word-spacing:-13.423200px;}
.ws84{word-spacing:-13.395000px;}
.wsd8{word-spacing:-13.389642px;}
.ws40{word-spacing:-13.378080px;}
.ws87{word-spacing:-13.336908px;}
.wsd1{word-spacing:-13.046730px;}
.wsce{word-spacing:-12.430560px;}
.ws5{word-spacing:-12.295200px;}
.ws81{word-spacing:-12.289560px;}
.wse{word-spacing:-12.283920px;}
.ws10{word-spacing:-11.985000px;}
.wsda{word-spacing:-11.973720px;}
.wsf{word-spacing:-11.208936px;}
.ws3f{word-spacing:-10.556388px;}
.ws41{word-spacing:-9.977160px;}
.ws88{word-spacing:-9.836160px;}
.ws12a{word-spacing:-9.831648px;}
.ws12b{word-spacing:-9.822624px;}
.ws126{word-spacing:-9.813600px;}
.wsd9{word-spacing:-9.664704px;}
.ws129{word-spacing:-9.294720px;}
.ws49{word-spacing:-9.240576px;}
.ws128{word-spacing:-9.024000px;}
.ws12d{word-spacing:-8.933760px;}
.ws16{word-spacing:-8.610588px;}
.ws15{word-spacing:-8.606640px;}
.ws42{word-spacing:-8.389500px;}
.ws7f{word-spacing:-8.379433px;}
.ws19{word-spacing:-8.089452px;}
.ws14{word-spacing:-8.053920px;}
.ws44{word-spacing:-4.266660px;}
.wsfc{word-spacing:-2.668284px;}
.wsc1{word-spacing:-2.662926px;}
.ws111{word-spacing:-2.625420px;}
.ws26{word-spacing:-2.620062px;}
.ws21{word-spacing:-2.582556px;}
.wsa9{word-spacing:-2.555766px;}
.wsa4{word-spacing:-2.534334px;}
.wsff{word-spacing:-2.528976px;}
.ws10d{word-spacing:-2.523618px;}
.wsa7{word-spacing:-2.480754px;}
.wse9{word-spacing:-2.453964px;}
.wse8{word-spacing:-2.416458px;}
.ws11e{word-spacing:-2.378952px;}
.ws5a{word-spacing:-2.377824px;}
.ws114{word-spacing:-2.373594px;}
.ws11a{word-spacing:-2.368236px;}
.wsc8{word-spacing:-2.357520px;}
.wsbd{word-spacing:-2.352162px;}
.wsf4{word-spacing:-2.330730px;}
.wsec{word-spacing:-2.320014px;}
.ws64{word-spacing:-2.315502px;}
.ws37{word-spacing:-2.310708px;}
.wsbb{word-spacing:-2.309298px;}
.ws8e{word-spacing:-2.281944px;}
.wsf9{word-spacing:-2.271792px;}
.ws79{word-spacing:-2.267562px;}
.wse0{word-spacing:-2.250360px;}
.wscc{word-spacing:-2.245002px;}
.ws52{word-spacing:-2.219622px;}
.wsf8{word-spacing:-2.212854px;}
.wsc{word-spacing:-2.201856px;}
.wsd0{word-spacing:-2.196780px;}
.wsbe{word-spacing:-2.191422px;}
.ws104{word-spacing:-2.186064px;}
.wsf1{word-spacing:-2.180706px;}
.wsbf{word-spacing:-2.169990px;}
.ws4a{word-spacing:-2.166888px;}
.ws98{word-spacing:-2.162094px;}
.ws20{word-spacing:-2.153916px;}
.wsc3{word-spacing:-2.137842px;}
.ws32{word-spacing:-2.104566px;}
.ws5b{word-spacing:-2.094978px;}
.ws61{word-spacing:-2.085390px;}
.ws4f{word-spacing:-2.066214px;}
.ws36{word-spacing:-2.042244px;}
.ws3a{word-spacing:-2.037450px;}
.ws96{word-spacing:-1.999098px;}
.ws69{word-spacing:-1.994304px;}
.wsdc{word-spacing:-1.967232px;}
.ws127{word-spacing:-1.962720px;}
.wscf{word-spacing:-1.961028px;}
.ws97{word-spacing:-1.946364px;}
.wse3{word-spacing:-1.944954px;}
.wse6{word-spacing:-1.891374px;}
.ws85{word-spacing:-1.784214px;}
.wsc9{word-spacing:-1.762782px;}
.wsca{word-spacing:-1.757424px;}
.wsf7{word-spacing:-1.746708px;}
.wsfd{word-spacing:-1.735992px;}
.ws124{word-spacing:-1.714560px;}
.ws38{word-spacing:-1.711458px;}
.ws115{word-spacing:-1.687770px;}
.wsa8{word-spacing:-1.671696px;}
.ws1f{word-spacing:-1.655622px;}
.ws5f{word-spacing:-1.653930px;}
.ws5e{word-spacing:-1.625166px;}
.ws17{word-spacing:-1.598940px;}
.ws54{word-spacing:-1.553256px;}
.ws10b{word-spacing:-1.505598px;}
.wsd5{word-spacing:-1.500240px;}
.ws50{word-spacing:-1.447788px;}
.ws22{word-spacing:-1.393080px;}
.wsc5{word-spacing:-1.371648px;}
.ws7b{word-spacing:-1.350216px;}
.ws1b{word-spacing:-1.346268px;}
.ws125{word-spacing:-1.303968px;}
.ws8d{word-spacing:-1.246440px;}
.ws10c{word-spacing:-1.205550px;}
.ws92{word-spacing:-1.150560px;}
.ws11b{word-spacing:-0.862638px;}
.ws120{word-spacing:-0.846564px;}
.wsa0{word-spacing:-0.824568px;}
.ws113{word-spacing:-0.809058px;}
.wsfa{word-spacing:-0.782268px;}
.wsd3{word-spacing:-0.712614px;}
.wsd4{word-spacing:-0.707256px;}
.ws9a{word-spacing:-0.613632px;}
.wsc4{word-spacing:-0.605454px;}
.ws12c{word-spacing:-0.536928px;}
.ws108{word-spacing:-0.503652px;}
.wse1{word-spacing:-0.482220px;}
.ws9c{word-spacing:-0.445842px;}
.ws45{word-spacing:-0.349962px;}
.ws65{word-spacing:-0.345168px;}
.ws70{word-spacing:-0.340374px;}
.ws102{word-spacing:-0.337554px;}
.wsfe{word-spacing:-0.294690px;}
.ws2b{word-spacing:-0.246468px;}
.ws94{word-spacing:-0.196554px;}
.ws2c{word-spacing:-0.182172px;}
.ws12f{word-spacing:-0.013536px;}
.ws6{word-spacing:-0.010716px;}
.ws71{word-spacing:-0.009588px;}
.ws123{word-spacing:-0.009024px;}
.ws3e{word-spacing:-0.007896px;}
.ws33{word-spacing:-0.004794px;}
.ws7e{word-spacing:-0.004512px;}
.ws1a{word-spacing:0.000000px;}
.ws3d{word-spacing:0.003948px;}
.wsd{word-spacing:0.004512px;}
.ws53{word-spacing:0.004794px;}
.ws1d{word-spacing:0.005358px;}
.ws5d{word-spacing:0.005640px;}
.ws7c{word-spacing:0.009024px;}
.wsba{word-spacing:0.010716px;}
.ws3c{word-spacing:0.015792px;}
.ws1c{word-spacing:0.027072px;}
.ws80{word-spacing:0.033558px;}
.ws12{word-spacing:0.035532px;}
.ws47{word-spacing:0.036096px;}
.ws7d{word-spacing:0.040608px;}
.ws9{word-spacing:0.042864px;}
.ws2{word-spacing:0.054144px;}
.ws63{word-spacing:0.076704px;}
.wse7{word-spacing:0.198246px;}
.ws67{word-spacing:0.206142px;}
.ws62{word-spacing:0.297228px;}
.ws29{word-spacing:0.358986px;}
.wsc6{word-spacing:0.375060px;}
.ws107{word-spacing:0.401850px;}
.ws18{word-spacing:0.438228px;}
.ws91{word-spacing:0.474606px;}
.ws8c{word-spacing:0.580074px;}
.wsf6{word-spacing:0.584022px;}
.ws4b{word-spacing:0.680748px;}
.ws121{word-spacing:0.690336px;}
.ws1e{word-spacing:0.710640px;}
.wsea{word-spacing:0.717972px;}
.ws9b{word-spacing:0.738276px;}
.ws90{word-spacing:0.743070px;}
.wsa2{word-spacing:0.776628px;}
.ws72{word-spacing:0.786216px;}
.ws9e{word-spacing:0.805392px;}
.ws25{word-spacing:0.825132px;}
.ws11d{word-spacing:0.889428px;}
.ws66{word-spacing:0.901272px;}
.ws0{word-spacing:0.957941px;}
.wscb{word-spacing:1.146612px;}
.ws75{word-spacing:1.169736px;}
.wsc7{word-spacing:1.210908px;}
.ws4c{word-spacing:1.241646px;}
.ws101{word-spacing:1.243056px;}
.ws109{word-spacing:1.393080px;}
.wsd2{word-spacing:1.398438px;}
.ws11f{word-spacing:1.543104px;}
.ws3b{word-spacing:1.649136px;}
.wsb8{word-spacing:1.687770px;}
.ws105{word-spacing:1.735992px;}
.wsb6{word-spacing:1.757424px;}
.ws56{word-spacing:1.816926px;}
.ws73{word-spacing:1.836102px;}
.wse4{word-spacing:1.869942px;}
.wse2{word-spacing:1.934238px;}
.wscd{word-spacing:1.939596px;}
.ws6a{word-spacing:1.975128px;}
.ws122{word-spacing:2.003892px;}
.ws60{word-spacing:2.023068px;}
.ws31{word-spacing:2.061420px;}
.wsef{word-spacing:2.073546px;}
.wsb9{word-spacing:2.084262px;}
.ws34{word-spacing:2.090184px;}
.ws4e{word-spacing:2.118948px;}
.ws9d{word-spacing:2.152506px;}
.ws10a{word-spacing:2.164632px;}
.ws58{word-spacing:2.190858px;}
.ws112{word-spacing:2.191422px;}
.wsf0{word-spacing:2.212854px;}
.wse5{word-spacing:2.218212px;}
.ws2d{word-spacing:2.223570px;}
.ws24{word-spacing:2.239644px;}
.wsb4{word-spacing:2.266434px;}
.ws35{word-spacing:2.272356px;}
.ws5c{word-spacing:2.281944px;}
.ws6e{word-spacing:2.286738px;}
.ws39{word-spacing:2.305914px;}
.ws8f{word-spacing:2.315502px;}
.ws30{word-spacing:2.329884px;}
.wsfb{word-spacing:2.341446px;}
.ws6c{word-spacing:2.349060px;}
.ws118{word-spacing:2.357520px;}
.wsb0{word-spacing:2.362878px;}
.ws99{word-spacing:2.363442px;}
.ws119{word-spacing:2.395026px;}
.wsbc{word-spacing:2.411100px;}
.ws2a{word-spacing:2.443248px;}
.ws117{word-spacing:2.480754px;}
.ws2e{word-spacing:2.518260px;}
.ws77{word-spacing:2.550408px;}
.wsf5{word-spacing:2.555766px;}
.ws110{word-spacing:2.566482px;}
.wsee{word-spacing:2.603988px;}
.wsed{word-spacing:2.609346px;}
.ws28{word-spacing:2.614704px;}
.ws2f{word-spacing:2.652210px;}
.wsd6{word-spacing:2.657568px;}
.wsc0{word-spacing:2.662926px;}
.wsd7{word-spacing:2.673642px;}
.ws10f{word-spacing:2.679000px;}
.ws10e{word-spacing:2.684358px;}
.wsf2{word-spacing:3.102282px;}
.ws55{word-spacing:3.140070px;}
.wsab{word-spacing:3.193368px;}
.wsf3{word-spacing:3.311244px;}
.wsa3{word-spacing:3.450552px;}
.ws68{word-spacing:3.542766px;}
.ws4d{word-spacing:3.758496px;}
.ws57{word-spacing:3.902316px;}
.ws23{word-spacing:3.911340px;}
.wsa1{word-spacing:3.979020px;}
.ws103{word-spacing:4.222104px;}
.ws6d{word-spacing:4.242690px;}
.ws78{word-spacing:4.285836px;}
.ws8b{word-spacing:4.352952px;}
.ws8a{word-spacing:4.357746px;}
.ws6f{word-spacing:4.803588px;}
.ws27{word-spacing:4.934718px;}
.wsb3{word-spacing:5.304420px;}
.ws89{word-spacing:5.426808px;}
.ws100{word-spacing:6.231354px;}
.ws59{word-spacing:6.318492px;}
.wseb{word-spacing:6.397452px;}
.ws95{word-spacing:7.090326px;}
.ws76{word-spacing:7.838190px;}
.ws74{word-spacing:8.231298px;}
.wsb7{word-spacing:8.653170px;}
.ws11c{word-spacing:8.781762px;}
.ws93{word-spacing:8.806578px;}
.ws6b{word-spacing:9.086040px;}
.wsc2{word-spacing:9.408648px;}
.wsaf{word-spacing:9.917658px;}
.ws106{word-spacing:9.955164px;}
.wsae{word-spacing:10.019460px;}
.wsb1{word-spacing:11.117850px;}
.wsb2{word-spacing:11.316096px;}
.wsa6{word-spacing:11.637576px;}
.wsac{word-spacing:13.303914px;}
.ws4{word-spacing:13.678128px;}
.ws116{word-spacing:14.745216px;}
.wsaa{word-spacing:15.034548px;}
.wsa5{word-spacing:15.688224px;}
.wsb5{word-spacing:15.891828px;}
.ws51{word-spacing:16.251660px;}
.ws7a{word-spacing:17.253606px;}
.wsad{word-spacing:27.572268px;}
.ws9f{word-spacing:41.391396px;}
.wsdb{word-spacing:46.802976px;}
.wsdd{word-spacing:52.970880px;}
.wsde{word-spacing:64.011744px;}
.ws11{word-spacing:1609.203888px;}
.ws48{word-spacing:1929.532896px;}
.wsdf{word-spacing:1930.818816px;}
.ws12e{word-spacing:1937.281488px;}
.ws86{word-spacing:1945.410888px;}
.ws1{word-spacing:1945.543488px;}
._e{margin-left:-7.568316px;}
._13{margin-left:-5.947380px;}
._4{margin-left:-4.822200px;}
._7{margin-left:-3.749190px;}
._d{margin-left:-2.622318px;}
._0{margin-left:-1.480500px;}
._8{width:1.443840px;}
._9{width:2.797440px;}
._a{width:4.816842px;}
._f{width:5.977272px;}
._1{width:6.987960px;}
._6{width:8.940528px;}
._3{width:10.192608px;}
._5{width:11.734020px;}
._10{width:13.614960px;}
._b{width:15.206004px;}
._c{width:16.770540px;}
._11{width:17.926176px;}
._27{width:19.771020px;}
._14{width:21.003360px;}
._15{width:22.299996px;}
._2{width:24.276252px;}
._31{width:37.729908px;}
._34{width:39.037824px;}
._32{width:42.151104px;}
._2c{width:44.218164px;}
._30{width:45.539616px;}
._33{width:46.987686px;}
._2e{width:48.648384px;}
._12{width:51.243066px;}
._2f{width:53.435334px;}
._2d{width:55.150176px;}
._2a{width:59.386944px;}
._2b{width:60.776640px;}
._29{width:63.894432px;}
._28{width:70.391712px;}
._22{width:83.660094px;}
._19{width:94.274010px;}
._18{width:102.390252px;}
._20{width:145.785540px;}
._21{width:181.395372px;}
._17{width:213.356970px;}
._1c{width:216.012846px;}
._1d{width:219.550818px;}
._16{width:223.879800px;}
._1e{width:226.631556px;}
._25{width:243.501642px;}
._23{width:246.066432px;}
._1a{width:262.092774px;}
._1b{width:317.976432px;}
._26{width:428.286372px;}
._1f{width:442.471818px;}
._24{width:870.278790px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:31.584000px;}
.fs9{font-size:33.558000px;}
.fsb{font-size:37.506000px;}
.fs0{font-size:39.480000px;}
.fsa{font-size:42.300000px;}
.fs6{font-size:45.120000px;}
.fs7{font-size:47.940000px;}
.fs5{font-size:53.580000px;}
.fs4{font-size:56.400000px;}
.fs2{font-size:67.680000px;}
.fs8{font-size:78.960000px;}
.fs3{font-size:124.080000px;}
.y0{bottom:0.000000px;}
.y2{bottom:33.807000px;}
.y1{bottom:73.323000px;}
.y50{bottom:97.758339px;}
.y2b{bottom:97.759973px;}
.yc5{bottom:97.766468px;}
.y12d{bottom:97.782113px;}
.y14e{bottom:101.229750px;}
.yf6{bottom:102.383093px;}
.y8c{bottom:106.795950px;}
.y88{bottom:107.966013px;}
.y2a{bottom:113.746905px;}
.yc4{bottom:113.753400px;}
.y12c{bottom:113.769045px;}
.y14d{bottom:115.329750px;}
.yf5{bottom:116.483445px;}
.y87{bottom:122.066366px;}
.y4f{bottom:127.710828px;}
.y14c{bottom:129.429750px;}
.y29{bottom:129.733838px;}
.yc3{bottom:129.740333px;}
.y12b{bottom:129.755977px;}
.yf4{bottom:130.583798px;}
.y86{bottom:136.166718px;}
.y4e{bottom:140.400687px;}
.y14b{bottom:143.529750px;}
.yf3{bottom:144.684150px;}
.y28{bottom:145.720770px;}
.yc2{bottom:145.727265px;}
.y12a{bottom:145.742910px;}
.y85{bottom:150.267071px;}
.y4d{bottom:153.090546px;}
.y14a{bottom:157.629750px;}
.y27{bottom:161.707703px;}
.yc1{bottom:161.714198px;}
.y129{bottom:161.729842px;}
.y84{bottom:164.367423px;}
.y4c{bottom:165.780405px;}
.yf2{bottom:166.774269px;}
.y149{bottom:171.729750px;}
.y26{bottom:177.694635px;}
.yc0{bottom:177.701130px;}
.y128{bottom:177.716775px;}
.y83{bottom:178.467776px;}
.y4b{bottom:178.470264px;}
.yf1{bottom:180.874621px;}
.y148{bottom:185.829750px;}
.y4a{bottom:191.160123px;}
.y82{bottom:192.568128px;}
.y25{bottom:193.681568px;}
.ybf{bottom:193.688063px;}
.y127{bottom:193.703707px;}
.yf0{bottom:194.974974px;}
.y147{bottom:199.929750px;}
.y49{bottom:203.849982px;}
.y81{bottom:206.668481px;}
.y24{bottom:209.668500px;}
.ybe{bottom:209.674995px;}
.y126{bottom:209.690640px;}
.y146{bottom:214.029750px;}
.yef{bottom:215.070223px;}
.y48{bottom:216.539841px;}
.y80{bottom:220.768833px;}
.y23{bottom:225.655950px;}
.ybd{bottom:225.661928px;}
.y125{bottom:225.677572px;}
.y145{bottom:228.129750px;}
.yee{bottom:229.170576px;}
.y47{bottom:229.229700px;}
.y7f{bottom:234.869186px;}
.ybc{bottom:241.648860px;}
.y124{bottom:241.664505px;}
.y144{bottom:242.229750px;}
.yed{bottom:243.270928px;}
.y7e{bottom:250.967438px;}
.y143{bottom:256.329750px;}
.ybb{bottom:257.635793px;}
.y123{bottom:257.651437px;}
.yec{bottom:263.366178px;}
.y7d{bottom:265.067790px;}
.y142{bottom:270.429750px;}
.y22{bottom:273.618306px;}
.yba{bottom:273.622725px;}
.y122{bottom:273.638370px;}
.y45{bottom:277.281195px;}
.yeb{bottom:277.466531px;}
.y7c{bottom:279.168143px;}
.y141{bottom:284.529750px;}
.y21{bottom:289.605450px;}
.yb9{bottom:289.609658px;}
.y121{bottom:289.625302px;}
.y44{bottom:291.381548px;}
.yea{bottom:291.566883px;}
.y7b{bottom:293.268495px;}
.y140{bottom:298.629750px;}
.y43{bottom:305.481900px;}
.yb8{bottom:305.596590px;}
.y120{bottom:305.612235px;}
.ye9{bottom:305.667236px;}
.y7a{bottom:307.368848px;}
.y13f{bottom:312.729750px;}
.y79{bottom:321.469200px;}
.y20{bottom:321.580200px;}
.yb7{bottom:321.583523px;}
.y11f{bottom:321.599167px;}
.ye8{bottom:325.762485px;}
.y13e{bottom:326.829750px;}
.y78{bottom:337.567110px;}
.y1f{bottom:337.567650px;}
.yb6{bottom:337.570455px;}
.y11e{bottom:337.586100px;}
.ye7{bottom:339.862838px;}
.y13d{bottom:340.929750px;}
.y1ac{bottom:345.407550px;}
.y17c{bottom:345.409350px;}
.y77{bottom:353.555100px;}
.yb5{bottom:353.557388px;}
.y11d{bottom:353.573033px;}
.ye6{bottom:353.963190px;}
.y13c{bottom:355.029750px;}
.y1ab{bottom:359.507550px;}
.y17b{bottom:359.509350px;}
.y42{bottom:364.766235px;}
.y13b{bottom:369.129750px;}
.yb4{bottom:369.544320px;}
.y1e{bottom:369.553103px;}
.y11c{bottom:369.559965px;}
.y1aa{bottom:373.607550px;}
.y17a{bottom:373.609350px;}
.ye5{bottom:374.058440px;}
.y41{bottom:378.866588px;}
.y13a{bottom:383.229750px;}
.yb3{bottom:385.531253px;}
.y1d{bottom:385.540035px;}
.y11b{bottom:385.546897px;}
.y1a9{bottom:387.707550px;}
.y179{bottom:387.709350px;}
.ye4{bottom:388.158792px;}
.y40{bottom:392.966940px;}
.y76{bottom:395.850367px;}
.y139{bottom:397.329750px;}
.yb2{bottom:401.518185px;}
.y1c{bottom:401.526968px;}
.y11a{bottom:401.533830px;}
.y1a8{bottom:401.807550px;}
.y178{bottom:401.809350px;}
.ye3{bottom:402.259145px;}
.y3f{bottom:407.067293px;}
.y75{bottom:409.950720px;}
.y138{bottom:411.429750px;}
.y1a7{bottom:415.907550px;}
.y177{bottom:415.909350px;}
.yb1{bottom:417.505118px;}
.y1b{bottom:417.513900px;}
.y119{bottom:417.520762px;}
.y3e{bottom:421.167645px;}
.y74{bottom:424.051072px;}
.ye2{bottom:424.352294px;}
.y137{bottom:425.529750px;}
.y8b{bottom:426.544050px;}
.y1a6{bottom:430.007550px;}
.y176{bottom:430.009350px;}
.yb0{bottom:433.492050px;}
.y1a{bottom:433.500833px;}
.y118{bottom:433.507695px;}
.y3d{bottom:435.267998px;}
.y73{bottom:438.151425px;}
.ye1{bottom:438.452646px;}
.y136{bottom:439.629750px;}
.y1a5{bottom:444.107550px;}
.y175{bottom:444.109350px;}
.y3c{bottom:449.368350px;}
.yaf{bottom:449.479500px;}
.y19{bottom:449.487765px;}
.y117{bottom:449.494627px;}
.y72{bottom:452.251777px;}
.ye0{bottom:452.552999px;}
.y135{bottom:453.729750px;}
.y1a4{bottom:458.207550px;}
.y174{bottom:458.209350px;}
.y3b{bottom:465.466800px;}
.y18{bottom:465.474698px;}
.y116{bottom:465.481560px;}
.y71{bottom:466.352130px;}
.ydf{bottom:466.653351px;}
.y134{bottom:467.829750px;}
.y1a3{bottom:472.307550px;}
.y173{bottom:472.309350px;}
.y70{bottom:480.452483px;}
.y17{bottom:481.461630px;}
.y115{bottom:481.468492px;}
.yae{bottom:484.226677px;}
.y1a2{bottom:486.407550px;}
.y172{bottom:486.409350px;}
.yde{bottom:488.746500px;}
.y6f{bottom:494.552835px;}
.y133{bottom:497.441550px;}
.y16{bottom:497.448563px;}
.y114{bottom:497.455425px;}
.yad{bottom:498.327030px;}
.y1a1{bottom:499.097550px;}
.y1a0{bottom:500.507550px;}
.y171{bottom:500.509350px;}
.y3a{bottom:502.991843px;}
.ydd{bottom:506.843400px;}
.y6e{bottom:508.653188px;}
.yac{bottom:512.427383px;}
.y15{bottom:513.435495px;}
.y113{bottom:513.442358px;}
.y19f{bottom:514.607550px;}
.y170{bottom:514.609350px;}
.y39{bottom:517.092195px;}
.y6d{bottom:522.753540px;}
.yab{bottom:526.527735px;}
.y19e{bottom:528.707550px;}
.y16f{bottom:528.709350px;}
.y14{bottom:529.422428px;}
.y112{bottom:529.429290px;}
.y38{bottom:531.192548px;}
.yf8{bottom:533.934000px;}
.y132{bottom:534.966443px;}
.y6c{bottom:536.853893px;}
.yaa{bottom:540.628087px;}
.y19d{bottom:542.807550px;}
.y16e{bottom:542.809350px;}
.y37{bottom:545.292900px;}
.y13{bottom:545.409360px;}
.y111{bottom:545.416223px;}
.yf7{bottom:548.034000px;}
.y131{bottom:549.066795px;}
.y6b{bottom:550.954245px;}
.ya9{bottom:554.728440px;}
.y19c{bottom:555.497550px;}
.y19b{bottom:556.907550px;}
.y16d{bottom:556.909350px;}
.y36{bottom:561.391200px;}
.y12{bottom:561.396293px;}
.y110{bottom:561.403155px;}
.y130{bottom:563.167148px;}
.y6a{bottom:565.054597px;}
.ya8{bottom:568.828792px;}
.y19a{bottom:571.007550px;}
.y16c{bottom:571.009350px;}
.y12f{bottom:577.267500px;}
.y11{bottom:577.383225px;}
.y10f{bottom:577.390087px;}
.y69{bottom:579.154598px;}
.ya7{bottom:582.929145px;}
.y199{bottom:585.107550px;}
.y16b{bottom:585.109350px;}
.y68{bottom:593.254950px;}
.y12e{bottom:593.366100px;}
.ydc{bottom:593.366835px;}
.y10{bottom:593.370158px;}
.y35{bottom:593.370525px;}
.y10e{bottom:593.377020px;}
.ya6{bottom:597.029498px;}
.y198{bottom:599.207550px;}
.y16a{bottom:599.209350px;}
.y67{bottom:609.353400px;}
.ydb{bottom:609.353768px;}
.yf{bottom:609.357090px;}
.y34{bottom:609.357458px;}
.y10d{bottom:609.363952px;}
.ya5{bottom:611.129498px;}
.y197{bottom:613.307550px;}
.y169{bottom:613.309350px;}
.ya4{bottom:625.229850px;}
.yda{bottom:625.340700px;}
.ye{bottom:625.344023px;}
.y33{bottom:625.344390px;}
.y10c{bottom:625.350885px;}
.y196{bottom:627.407550px;}
.y168{bottom:627.409350px;}
.ya3{bottom:641.328150px;}
.yd{bottom:641.330955px;}
.y32{bottom:641.331322px;}
.y10b{bottom:641.337818px;}
.y195{bottom:641.507550px;}
.y167{bottom:641.509350px;}
.y66{bottom:655.422360px;}
.y194{bottom:655.607550px;}
.y166{bottom:655.609350px;}
.yc{bottom:657.317888px;}
.y31{bottom:657.318255px;}
.y10a{bottom:657.324750px;}
.y65{bottom:669.522713px;}
.y193{bottom:669.707550px;}
.y165{bottom:669.709350px;}
.yb{bottom:673.304820px;}
.y30{bottom:673.305187px;}
.yd9{bottom:673.310947px;}
.y109{bottom:673.311682px;}
.ya2{bottom:677.596439px;}
.y64{bottom:683.623065px;}
.y192{bottom:683.807550px;}
.y164{bottom:683.809350px;}
.ya{bottom:689.291753px;}
.y2f{bottom:689.292120px;}
.yd8{bottom:689.297880px;}
.y108{bottom:689.298615px;}
.ya1{bottom:691.696791px;}
.y63{bottom:697.723418px;}
.y191{bottom:697.907550px;}
.y163{bottom:697.909350px;}
.y8a{bottom:698.329650px;}
.y9{bottom:705.278685px;}
.y2e{bottom:705.279053px;}
.yd7{bottom:705.284812px;}
.y107{bottom:705.285547px;}
.ya0{bottom:705.797144px;}
.y62{bottom:711.823770px;}
.y190{bottom:712.007550px;}
.y162{bottom:712.009350px;}
.y8{bottom:721.265618px;}
.y2d{bottom:721.265985px;}
.yd6{bottom:721.271745px;}
.y106{bottom:721.272480px;}
.y9f{bottom:721.895396px;}
.y61{bottom:725.924123px;}
.y18f{bottom:726.107550px;}
.y161{bottom:726.109350px;}
.y9e{bottom:735.995748px;}
.y7{bottom:737.252550px;}
.y2c{bottom:737.252917px;}
.yd5{bottom:737.258677px;}
.y105{bottom:737.259413px;}
.y60{bottom:740.024475px;}
.y18e{bottom:740.207550px;}
.y160{bottom:740.209350px;}
.y9d{bottom:752.093648px;}
.y6{bottom:753.239850px;}
.yd4{bottom:753.245610px;}
.y104{bottom:753.246345px;}
.y5f{bottom:754.124828px;}
.y18d{bottom:754.307550px;}
.y15f{bottom:754.309350px;}
.y9c{bottom:766.189968px;}
.y5e{bottom:768.225180px;}
.y18c{bottom:768.407550px;}
.y15e{bottom:768.409350px;}
.yd3{bottom:769.232542px;}
.y103{bottom:769.233277px;}
.y9b{bottom:780.290321px;}
.y5d{bottom:782.325533px;}
.y18b{bottom:782.507550px;}
.y15d{bottom:782.509350px;}
.yd2{bottom:785.219475px;}
.y102{bottom:785.220210px;}
.y9a{bottom:794.390673px;}
.y5c{bottom:796.425885px;}
.y18a{bottom:796.607550px;}
.y15c{bottom:796.609350px;}
.yd1{bottom:801.206407px;}
.y101{bottom:801.207142px;}
.y99{bottom:808.491026px;}
.y5b{bottom:810.526238px;}
.y189{bottom:810.707550px;}
.y15b{bottom:810.709350px;}
.yd0{bottom:817.193340px;}
.y100{bottom:817.194075px;}
.y98{bottom:822.591378px;}
.y5a{bottom:824.626590px;}
.y188{bottom:824.807550px;}
.y15a{bottom:824.809350px;}
.ycf{bottom:833.180273px;}
.yff{bottom:833.181007px;}
.y97{bottom:836.691731px;}
.y59{bottom:838.726943px;}
.y187{bottom:838.907550px;}
.y159{bottom:838.909350px;}
.yce{bottom:849.167205px;}
.yfe{bottom:849.167940px;}
.y96{bottom:850.792083px;}
.y58{bottom:852.827295px;}
.y186{bottom:853.007550px;}
.y158{bottom:853.009350px;}
.y95{bottom:864.892436px;}
.ycd{bottom:865.154137px;}
.yfd{bottom:865.154873px;}
.y57{bottom:866.927648px;}
.y185{bottom:867.107550px;}
.y157{bottom:867.109350px;}
.y94{bottom:878.992788px;}
.y56{bottom:881.028000px;}
.ycc{bottom:881.141070px;}
.yfc{bottom:881.141805px;}
.y184{bottom:881.207550px;}
.y156{bottom:881.209350px;}
.y93{bottom:893.093141px;}
.y183{bottom:895.307550px;}
.y155{bottom:895.309350px;}
.y55{bottom:897.126450px;}
.ycb{bottom:897.128002px;}
.yfb{bottom:897.128737px;}
.y5{bottom:905.035836px;}
.y92{bottom:907.193493px;}
.y182{bottom:909.407550px;}
.y154{bottom:909.409350px;}
.yca{bottom:913.114935px;}
.yfa{bottom:913.115670px;}
.y91{bottom:921.293846px;}
.y181{bottom:923.507550px;}
.y153{bottom:923.509350px;}
.y4{bottom:924.776400px;}
.yc9{bottom:929.101867px;}
.yf9{bottom:929.102602px;}
.y54{bottom:937.386143px;}
.y90{bottom:937.392098px;}
.y180{bottom:937.607550px;}
.y152{bottom:937.609350px;}
.yc8{bottom:945.089535px;}
.y53{bottom:951.486495px;}
.y8f{bottom:951.491745px;}
.y17f{bottom:951.707550px;}
.y151{bottom:951.709350px;}
.yc7{bottom:961.076468px;}
.y3{bottom:964.500600px;}
.y52{bottom:965.586848px;}
.y8e{bottom:965.592098px;}
.y17e{bottom:965.807550px;}
.y150{bottom:965.809350px;}
.yc6{bottom:977.063400px;}
.y51{bottom:979.687200px;}
.y8d{bottom:979.692450px;}
.y17d{bottom:979.907550px;}
.y14f{bottom:979.909350px;}
.y46{bottom:1057.000500px;}
.y89{bottom:1063.230600px;}
.hf{height:28.820400px;}
.hd{height:30.241680px;}
.h9{height:30.907200px;}
.h1a{height:34.561920px;}
.h19{height:34.708560px;}
.he{height:35.097720px;}
.ha{height:35.955000px;}
.h14{height:35.956410px;}
.h12{height:35.957820px;}
.h13{height:35.971128px;}
.h16{height:36.195510px;}
.h11{height:36.196110px;}
.h7{height:38.791920px;}
.h8{height:40.111680px;}
.h6{height:40.185000px;}
.h17{height:40.448760px;}
.hb{height:41.566800px;}
.h15{height:43.002180px;}
.h5{height:43.202400px;}
.h10{height:44.405361px;}
.h1b{height:45.751680px;}
.h2{height:46.699200px;}
.h18{height:48.061260px;}
.hc{height:58.272480px;}
.h4{height:60.167520px;}
.h3{height:91.446960px;}
.h1{height:1122.360000px;}
.h0{height:1263.000000px;}
.w1{width:841.770000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:23.970000px;}
.x2{left:65.748150px;}
.xb{left:81.346950px;}
.x6{left:89.729250px;}
.x10{left:105.328018px;}
.x3{left:117.349050px;}
.x4{left:185.938650px;}
.xf{left:289.994323px;}
.x5{left:315.853794px;}
.xd{left:416.763300px;}
.x8{left:425.464681px;}
.x9{left:441.063450px;}
.x7{left:449.445750px;}
.x11{left:461.621382px;}
.xa{left:465.044700px;}
.xc{left:534.363600px;}
.xe{left:580.329750px;}
.x12{left:627.590790px;}
@media print{
.v2{vertical-align:-8.508331pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.013333pt;}
.v1{vertical-align:9.802320pt;}
.v3{vertical-align:10.950453pt;}
.lse{letter-spacing:-7.892992pt;}
.ls5a{letter-spacing:-3.558213pt;}
.ls93{letter-spacing:-2.643029pt;}
.ls8e{letter-spacing:-2.062485pt;}
.ls44{letter-spacing:-2.060480pt;}
.ls1a{letter-spacing:-1.943168pt;}
.ls14{letter-spacing:-1.880000pt;}
.lsc{letter-spacing:-1.624320pt;}
.ls3d{letter-spacing:-1.269877pt;}
.ls69{letter-spacing:-1.166853pt;}
.ls68{letter-spacing:-1.147803pt;}
.ls65{letter-spacing:-1.043024pt;}
.ls67{letter-spacing:-1.004923pt;}
.ls2d{letter-spacing:-0.912427pt;}
.ls15{letter-spacing:-0.857280pt;}
.ls11{letter-spacing:-0.852517pt;}
.ls12{letter-spacing:-0.847755pt;}
.ls4c{letter-spacing:-0.838229pt;}
.ls9b{letter-spacing:-0.802133pt;}
.ls6e{letter-spacing:-0.758517pt;}
.ls28{letter-spacing:-0.733451pt;}
.ls6b{letter-spacing:-0.728688pt;}
.ls9a{letter-spacing:-0.725931pt;}
.ls97{letter-spacing:-0.721920pt;}
.ls6a{letter-spacing:-0.719163pt;}
.ls86{letter-spacing:-0.676299pt;}
.ls51{letter-spacing:-0.529408pt;}
.ls4f{letter-spacing:-0.521387pt;}
.ls50{letter-spacing:-0.501333pt;}
.ls2c{letter-spacing:-0.491307pt;}
.ls52{letter-spacing:-0.481280pt;}
.ls18{letter-spacing:-0.481029pt;}
.ls66{letter-spacing:-0.476267pt;}
.ls2e{letter-spacing:-0.459723pt;}
.ls7f{letter-spacing:-0.442928pt;}
.ls82{letter-spacing:-0.414352pt;}
.ls59{letter-spacing:-0.413349pt;}
.ls5b{letter-spacing:-0.409088pt;}
.lsf{letter-spacing:-0.385024pt;}
.lsd{letter-spacing:-0.366976pt;}
.ls47{letter-spacing:-0.366475pt;}
.ls5f{letter-spacing:-0.362213pt;}
.ls83{letter-spacing:-0.361963pt;}
.ls4d{letter-spacing:-0.348928pt;}
.ls4e{letter-spacing:-0.328875pt;}
.ls27{letter-spacing:-0.328123pt;}
.ls25{letter-spacing:-0.323861pt;}
.ls7e{letter-spacing:-0.319099pt;}
.ls80{letter-spacing:-0.309573pt;}
.ls81{letter-spacing:-0.304811pt;}
.ls3b{letter-spacing:-0.302555pt;}
.ls6c{letter-spacing:-0.285760pt;}
.ls8b{letter-spacing:-0.276235pt;}
.ls89{letter-spacing:-0.271472pt;}
.ls22{letter-spacing:-0.268464pt;}
.ls8c{letter-spacing:-0.266709pt;}
.ls98{letter-spacing:-0.248661pt;}
.ls6f{letter-spacing:-0.244651pt;}
.ls85{letter-spacing:-0.242896pt;}
.ls7c{letter-spacing:-0.233371pt;}
.ls5c{letter-spacing:-0.221589pt;}
.ls3c{letter-spacing:-0.217328pt;}
.ls39{letter-spacing:-0.213067pt;}
.ls7d{letter-spacing:-0.200032pt;}
.ls62{letter-spacing:-0.176219pt;}
.ls3e{letter-spacing:-0.166192pt;}
.ls87{letter-spacing:-0.138117pt;}
.ls84{letter-spacing:-0.133355pt;}
.ls61{letter-spacing:-0.128592pt;}
.ls4b{letter-spacing:-0.123579pt;}
.ls57{letter-spacing:-0.110795pt;}
.ls19{letter-spacing:-0.085728pt;}
.ls46{letter-spacing:-0.080965pt;}
.ls1b{letter-spacing:-0.052389pt;}
.ls88{letter-spacing:-0.047627pt;}
.ls8f{letter-spacing:-0.035093pt;}
.ls29{letter-spacing:-0.031584pt;}
.ls40{letter-spacing:-0.025568pt;}
.ls8d{letter-spacing:-0.025067pt;}
.ls96{letter-spacing:-0.020053pt;}
.ls1e{letter-spacing:-0.019051pt;}
.ls6d{letter-spacing:-0.012784pt;}
.ls99{letter-spacing:-0.012032pt;}
.ls2b{letter-spacing:-0.010528pt;}
.ls17{letter-spacing:-0.010027pt;}
.ls13{letter-spacing:-0.009525pt;}
.ls58{letter-spacing:-0.008949pt;}
.ls42{letter-spacing:-0.008523pt;}
.ls90{letter-spacing:-0.008021pt;}
.ls5e{letter-spacing:-0.005013pt;}
.ls10{letter-spacing:-0.004763pt;}
.ls23{letter-spacing:-0.004261pt;}
.ls16{letter-spacing:-0.004011pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003509pt;}
.ls7b{letter-spacing:0.004011pt;}
.ls33{letter-spacing:0.004261pt;}
.ls4{letter-spacing:0.005013pt;}
.lsb{letter-spacing:0.006016pt;}
.ls7{letter-spacing:0.007019pt;}
.ls8{letter-spacing:0.010528pt;}
.ls38{letter-spacing:0.012032pt;}
.ls6{letter-spacing:0.014037pt;}
.ls74{letter-spacing:0.019051pt;}
.ls5d{letter-spacing:0.021307pt;}
.ls20{letter-spacing:0.023813pt;}
.ls1{letter-spacing:0.028075pt;}
.ls49{letter-spacing:0.034091pt;}
.ls1c{letter-spacing:0.057152pt;}
.ls54{letter-spacing:0.059659pt;}
.ls71{letter-spacing:0.061915pt;}
.ls77{letter-spacing:0.066677pt;}
.ls37{letter-spacing:0.068181pt;}
.ls35{letter-spacing:0.085227pt;}
.ls41{letter-spacing:0.093749pt;}
.ls5{letter-spacing:0.098011pt;}
.ls72{letter-spacing:0.109541pt;}
.ls32{letter-spacing:0.115056pt;}
.ls1f{letter-spacing:0.142880pt;}
.ls3f{letter-spacing:0.174715pt;}
.ls78{letter-spacing:0.176219pt;}
.ls60{letter-spacing:0.208805pt;}
.ls1d{letter-spacing:0.209557pt;}
.ls75{letter-spacing:0.233371pt;}
.ls3a{letter-spacing:0.234373pt;}
.ls79{letter-spacing:0.252421pt;}
.ls24{letter-spacing:0.264203pt;}
.ls63{letter-spacing:0.280997pt;}
.ls8a{letter-spacing:0.285760pt;}
.ls21{letter-spacing:0.289771pt;}
.ls73{letter-spacing:0.300048pt;}
.ls31{letter-spacing:0.319600pt;}
.ls7a{letter-spacing:0.336645pt;}
.lsa{letter-spacing:0.339703pt;}
.ls48{letter-spacing:0.362213pt;}
.ls64{letter-spacing:0.366725pt;}
.ls3{letter-spacing:0.404827pt;}
.ls70{letter-spacing:0.409589pt;}
.ls26{letter-spacing:0.421872pt;}
.ls2f{letter-spacing:0.426133pt;}
.ls76{letter-spacing:0.433403pt;}
.ls2{letter-spacing:0.471504pt;}
.ls92{letter-spacing:0.521387pt;}
.ls34{letter-spacing:0.616640pt;}
.ls43{letter-spacing:0.962560pt;}
.ls94{letter-spacing:1.054805pt;}
.ls91{letter-spacing:1.319509pt;}
.ls95{letter-spacing:2.454528pt;}
.ls2a{letter-spacing:5.965867pt;}
.ls45{letter-spacing:6.847963pt;}
.ls36{letter-spacing:10.644811pt;}
.ls55{letter-spacing:11.318933pt;}
.ls56{letter-spacing:11.906667pt;}
.ls4a{letter-spacing:12.293947pt;}
.ls53{letter-spacing:15.199200pt;}
.ls30{letter-spacing:17.122037pt;}
.ws46{word-spacing:-22.947280pt;}
.ws43{word-spacing:-17.501296pt;}
.wsa{word-spacing:-14.097493pt;}
.ws13{word-spacing:-13.616213pt;}
.ws83{word-spacing:-13.335467pt;}
.ws8{word-spacing:-13.249739pt;}
.ws7{word-spacing:-13.244976pt;}
.wsb{word-spacing:-13.240213pt;}
.ws3{word-spacing:-12.747904pt;}
.ws82{word-spacing:-11.931733pt;}
.ws84{word-spacing:-11.906667pt;}
.wsd8{word-spacing:-11.901904pt;}
.ws40{word-spacing:-11.891627pt;}
.ws87{word-spacing:-11.855029pt;}
.wsd1{word-spacing:-11.597093pt;}
.wsce{word-spacing:-11.049387pt;}
.ws5{word-spacing:-10.929067pt;}
.ws81{word-spacing:-10.924053pt;}
.wse{word-spacing:-10.919040pt;}
.ws10{word-spacing:-10.653333pt;}
.wsda{word-spacing:-10.643307pt;}
.wsf{word-spacing:-9.963499pt;}
.ws3f{word-spacing:-9.383456pt;}
.ws41{word-spacing:-8.868587pt;}
.ws88{word-spacing:-8.743253pt;}
.ws12a{word-spacing:-8.739243pt;}
.ws12b{word-spacing:-8.731221pt;}
.ws126{word-spacing:-8.723200pt;}
.wsd9{word-spacing:-8.590848pt;}
.ws129{word-spacing:-8.261973pt;}
.ws49{word-spacing:-8.213845pt;}
.ws128{word-spacing:-8.021333pt;}
.ws12d{word-spacing:-7.941120pt;}
.ws16{word-spacing:-7.653856pt;}
.ws15{word-spacing:-7.650347pt;}
.ws42{word-spacing:-7.457333pt;}
.ws7f{word-spacing:-7.448385pt;}
.ws19{word-spacing:-7.190624pt;}
.ws14{word-spacing:-7.159040pt;}
.ws44{word-spacing:-3.792587pt;}
.wsfc{word-spacing:-2.371808pt;}
.wsc1{word-spacing:-2.367045pt;}
.ws111{word-spacing:-2.333707pt;}
.ws26{word-spacing:-2.328944pt;}
.ws21{word-spacing:-2.295605pt;}
.wsa9{word-spacing:-2.271792pt;}
.wsa4{word-spacing:-2.252741pt;}
.wsff{word-spacing:-2.247979pt;}
.ws10d{word-spacing:-2.243216pt;}
.wsa7{word-spacing:-2.205115pt;}
.wse9{word-spacing:-2.181301pt;}
.wse8{word-spacing:-2.147963pt;}
.ws11e{word-spacing:-2.114624pt;}
.ws5a{word-spacing:-2.113621pt;}
.ws114{word-spacing:-2.109861pt;}
.ws11a{word-spacing:-2.105099pt;}
.wsc8{word-spacing:-2.095573pt;}
.wsbd{word-spacing:-2.090811pt;}
.wsf4{word-spacing:-2.071760pt;}
.wsec{word-spacing:-2.062235pt;}
.ws64{word-spacing:-2.058224pt;}
.ws37{word-spacing:-2.053963pt;}
.wsbb{word-spacing:-2.052709pt;}
.ws8e{word-spacing:-2.028395pt;}
.wsf9{word-spacing:-2.019371pt;}
.ws79{word-spacing:-2.015611pt;}
.wse0{word-spacing:-2.000320pt;}
.wscc{word-spacing:-1.995557pt;}
.ws52{word-spacing:-1.972997pt;}
.wsf8{word-spacing:-1.966981pt;}
.wsc{word-spacing:-1.957205pt;}
.wsd0{word-spacing:-1.952693pt;}
.wsbe{word-spacing:-1.947931pt;}
.ws104{word-spacing:-1.943168pt;}
.wsf1{word-spacing:-1.938405pt;}
.wsbf{word-spacing:-1.928880pt;}
.ws4a{word-spacing:-1.926123pt;}
.ws98{word-spacing:-1.921861pt;}
.ws20{word-spacing:-1.914592pt;}
.wsc3{word-spacing:-1.900304pt;}
.ws32{word-spacing:-1.870725pt;}
.ws5b{word-spacing:-1.862203pt;}
.ws61{word-spacing:-1.853680pt;}
.ws4f{word-spacing:-1.836635pt;}
.ws36{word-spacing:-1.815328pt;}
.ws3a{word-spacing:-1.811067pt;}
.ws96{word-spacing:-1.776976pt;}
.ws69{word-spacing:-1.772715pt;}
.wsdc{word-spacing:-1.748651pt;}
.ws127{word-spacing:-1.744640pt;}
.wscf{word-spacing:-1.743136pt;}
.ws97{word-spacing:-1.730101pt;}
.wse3{word-spacing:-1.728848pt;}
.wse6{word-spacing:-1.681221pt;}
.ws85{word-spacing:-1.585968pt;}
.wsc9{word-spacing:-1.566917pt;}
.wsca{word-spacing:-1.562155pt;}
.wsf7{word-spacing:-1.552629pt;}
.wsfd{word-spacing:-1.543104pt;}
.ws124{word-spacing:-1.524053pt;}
.ws38{word-spacing:-1.521296pt;}
.ws115{word-spacing:-1.500240pt;}
.wsa8{word-spacing:-1.485952pt;}
.ws1f{word-spacing:-1.471664pt;}
.ws5f{word-spacing:-1.470160pt;}
.ws5e{word-spacing:-1.444592pt;}
.ws17{word-spacing:-1.421280pt;}
.ws54{word-spacing:-1.380672pt;}
.ws10b{word-spacing:-1.338309pt;}
.wsd5{word-spacing:-1.333547pt;}
.ws50{word-spacing:-1.286923pt;}
.ws22{word-spacing:-1.238293pt;}
.wsc5{word-spacing:-1.219243pt;}
.ws7b{word-spacing:-1.200192pt;}
.ws1b{word-spacing:-1.196683pt;}
.ws125{word-spacing:-1.159083pt;}
.ws8d{word-spacing:-1.107947pt;}
.ws10c{word-spacing:-1.071600pt;}
.ws92{word-spacing:-1.022720pt;}
.ws11b{word-spacing:-0.766789pt;}
.ws120{word-spacing:-0.752501pt;}
.wsa0{word-spacing:-0.732949pt;}
.ws113{word-spacing:-0.719163pt;}
.wsfa{word-spacing:-0.695349pt;}
.wsd3{word-spacing:-0.633435pt;}
.wsd4{word-spacing:-0.628672pt;}
.ws9a{word-spacing:-0.545451pt;}
.wsc4{word-spacing:-0.538181pt;}
.ws12c{word-spacing:-0.477269pt;}
.ws108{word-spacing:-0.447691pt;}
.wse1{word-spacing:-0.428640pt;}
.ws9c{word-spacing:-0.396304pt;}
.ws45{word-spacing:-0.311077pt;}
.ws65{word-spacing:-0.306816pt;}
.ws70{word-spacing:-0.302555pt;}
.ws102{word-spacing:-0.300048pt;}
.wsfe{word-spacing:-0.261947pt;}
.ws2b{word-spacing:-0.219083pt;}
.ws94{word-spacing:-0.174715pt;}
.ws2c{word-spacing:-0.161931pt;}
.ws12f{word-spacing:-0.012032pt;}
.ws6{word-spacing:-0.009525pt;}
.ws71{word-spacing:-0.008523pt;}
.ws123{word-spacing:-0.008021pt;}
.ws3e{word-spacing:-0.007019pt;}
.ws33{word-spacing:-0.004261pt;}
.ws7e{word-spacing:-0.004011pt;}
.ws1a{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.003509pt;}
.wsd{word-spacing:0.004011pt;}
.ws53{word-spacing:0.004261pt;}
.ws1d{word-spacing:0.004763pt;}
.ws5d{word-spacing:0.005013pt;}
.ws7c{word-spacing:0.008021pt;}
.wsba{word-spacing:0.009525pt;}
.ws3c{word-spacing:0.014037pt;}
.ws1c{word-spacing:0.024064pt;}
.ws80{word-spacing:0.029829pt;}
.ws12{word-spacing:0.031584pt;}
.ws47{word-spacing:0.032085pt;}
.ws7d{word-spacing:0.036096pt;}
.ws9{word-spacing:0.038101pt;}
.ws2{word-spacing:0.048128pt;}
.ws63{word-spacing:0.068181pt;}
.wse7{word-spacing:0.176219pt;}
.ws67{word-spacing:0.183237pt;}
.ws62{word-spacing:0.264203pt;}
.ws29{word-spacing:0.319099pt;}
.wsc6{word-spacing:0.333387pt;}
.ws107{word-spacing:0.357200pt;}
.ws18{word-spacing:0.389536pt;}
.ws91{word-spacing:0.421872pt;}
.ws8c{word-spacing:0.515621pt;}
.wsf6{word-spacing:0.519131pt;}
.ws4b{word-spacing:0.605109pt;}
.ws121{word-spacing:0.613632pt;}
.ws1e{word-spacing:0.631680pt;}
.wsea{word-spacing:0.638197pt;}
.ws9b{word-spacing:0.656245pt;}
.ws90{word-spacing:0.660507pt;}
.wsa2{word-spacing:0.690336pt;}
.ws72{word-spacing:0.698859pt;}
.ws9e{word-spacing:0.715904pt;}
.ws25{word-spacing:0.733451pt;}
.ws11d{word-spacing:0.790603pt;}
.ws66{word-spacing:0.801131pt;}
.ws0{word-spacing:0.851503pt;}
.wscb{word-spacing:1.019211pt;}
.ws75{word-spacing:1.039765pt;}
.wsc7{word-spacing:1.076363pt;}
.ws4c{word-spacing:1.103685pt;}
.ws101{word-spacing:1.104939pt;}
.ws109{word-spacing:1.238293pt;}
.wsd2{word-spacing:1.243056pt;}
.ws11f{word-spacing:1.371648pt;}
.ws3b{word-spacing:1.465899pt;}
.wsb8{word-spacing:1.500240pt;}
.ws105{word-spacing:1.543104pt;}
.wsb6{word-spacing:1.562155pt;}
.ws56{word-spacing:1.615045pt;}
.ws73{word-spacing:1.632091pt;}
.wse4{word-spacing:1.662171pt;}
.wse2{word-spacing:1.719323pt;}
.wscd{word-spacing:1.724085pt;}
.ws6a{word-spacing:1.755669pt;}
.ws122{word-spacing:1.781237pt;}
.ws60{word-spacing:1.798283pt;}
.ws31{word-spacing:1.832373pt;}
.wsef{word-spacing:1.843152pt;}
.wsb9{word-spacing:1.852677pt;}
.ws34{word-spacing:1.857941pt;}
.ws4e{word-spacing:1.883509pt;}
.ws9d{word-spacing:1.913339pt;}
.ws10a{word-spacing:1.924117pt;}
.ws58{word-spacing:1.947429pt;}
.ws112{word-spacing:1.947931pt;}
.wsf0{word-spacing:1.966981pt;}
.wse5{word-spacing:1.971744pt;}
.ws2d{word-spacing:1.976507pt;}
.ws24{word-spacing:1.990795pt;}
.wsb4{word-spacing:2.014608pt;}
.ws35{word-spacing:2.019872pt;}
.ws5c{word-spacing:2.028395pt;}
.ws6e{word-spacing:2.032656pt;}
.ws39{word-spacing:2.049701pt;}
.ws8f{word-spacing:2.058224pt;}
.ws30{word-spacing:2.071008pt;}
.wsfb{word-spacing:2.081285pt;}
.ws6c{word-spacing:2.088053pt;}
.ws118{word-spacing:2.095573pt;}
.wsb0{word-spacing:2.100336pt;}
.ws99{word-spacing:2.100837pt;}
.ws119{word-spacing:2.128912pt;}
.wsbc{word-spacing:2.143200pt;}
.ws2a{word-spacing:2.171776pt;}
.ws117{word-spacing:2.205115pt;}
.ws2e{word-spacing:2.238453pt;}
.ws77{word-spacing:2.267029pt;}
.wsf5{word-spacing:2.271792pt;}
.ws110{word-spacing:2.281317pt;}
.wsee{word-spacing:2.314656pt;}
.wsed{word-spacing:2.319419pt;}
.ws28{word-spacing:2.324181pt;}
.ws2f{word-spacing:2.357520pt;}
.wsd6{word-spacing:2.362283pt;}
.wsc0{word-spacing:2.367045pt;}
.wsd7{word-spacing:2.376571pt;}
.ws10f{word-spacing:2.381333pt;}
.ws10e{word-spacing:2.386096pt;}
.wsf2{word-spacing:2.757584pt;}
.ws55{word-spacing:2.791173pt;}
.wsab{word-spacing:2.838549pt;}
.wsf3{word-spacing:2.943328pt;}
.wsa3{word-spacing:3.067157pt;}
.ws68{word-spacing:3.149125pt;}
.ws4d{word-spacing:3.340885pt;}
.ws57{word-spacing:3.468725pt;}
.ws23{word-spacing:3.476747pt;}
.wsa1{word-spacing:3.536907pt;}
.ws103{word-spacing:3.752981pt;}
.ws6d{word-spacing:3.771280pt;}
.ws78{word-spacing:3.809632pt;}
.ws8b{word-spacing:3.869291pt;}
.ws8a{word-spacing:3.873552pt;}
.ws6f{word-spacing:4.269856pt;}
.ws27{word-spacing:4.386416pt;}
.wsb3{word-spacing:4.715040pt;}
.ws89{word-spacing:4.823829pt;}
.ws100{word-spacing:5.538981pt;}
.ws59{word-spacing:5.616437pt;}
.wseb{word-spacing:5.686624pt;}
.ws95{word-spacing:6.302512pt;}
.ws76{word-spacing:6.967280pt;}
.ws74{word-spacing:7.316709pt;}
.wsb7{word-spacing:7.691707pt;}
.ws11c{word-spacing:7.806011pt;}
.ws93{word-spacing:7.828069pt;}
.ws6b{word-spacing:8.076480pt;}
.wsc2{word-spacing:8.363243pt;}
.wsaf{word-spacing:8.815696pt;}
.ws106{word-spacing:8.849035pt;}
.wsae{word-spacing:8.906187pt;}
.wsb1{word-spacing:9.882533pt;}
.wsb2{word-spacing:10.058752pt;}
.wsa6{word-spacing:10.344512pt;}
.wsac{word-spacing:11.825701pt;}
.ws4{word-spacing:12.158336pt;}
.ws116{word-spacing:13.106859pt;}
.wsaa{word-spacing:13.364043pt;}
.wsa5{word-spacing:13.945088pt;}
.wsb5{word-spacing:14.126069pt;}
.ws51{word-spacing:14.445920pt;}
.ws7a{word-spacing:15.336539pt;}
.wsad{word-spacing:24.508683pt;}
.ws9f{word-spacing:36.792352pt;}
.wsdb{word-spacing:41.602645pt;}
.wsdd{word-spacing:47.085227pt;}
.wsde{word-spacing:56.899328pt;}
.ws11{word-spacing:1430.403456pt;}
.ws48{word-spacing:1715.140352pt;}
.wsdf{word-spacing:1716.283392pt;}
.ws12e{word-spacing:1722.027989pt;}
.ws86{word-spacing:1729.254123pt;}
.ws1{word-spacing:1729.371989pt;}
._e{margin-left:-6.727392pt;}
._13{margin-left:-5.286560pt;}
._4{margin-left:-4.286400pt;}
._7{margin-left:-3.332613pt;}
._d{margin-left:-2.330949pt;}
._0{margin-left:-1.316000pt;}
._8{width:1.283413pt;}
._9{width:2.486613pt;}
._a{width:4.281637pt;}
._f{width:5.313131pt;}
._1{width:6.211520pt;}
._6{width:7.947136pt;}
._3{width:9.060096pt;}
._5{width:10.430240pt;}
._10{width:12.102187pt;}
._b{width:13.516448pt;}
._c{width:14.907147pt;}
._11{width:15.934379pt;}
._27{width:17.574240pt;}
._14{width:18.669653pt;}
._15{width:19.822219pt;}
._2{width:21.578891pt;}
._31{width:33.537696pt;}
._34{width:34.700288pt;}
._32{width:37.467648pt;}
._2c{width:39.305035pt;}
._30{width:40.479659pt;}
._33{width:41.766832pt;}
._2e{width:43.243008pt;}
._12{width:45.549392pt;}
._2f{width:47.498075pt;}
._2d{width:49.022379pt;}
._2a{width:52.788395pt;}
._2b{width:54.023680pt;}
._29{width:56.795051pt;}
._28{width:62.570411pt;}
._22{width:74.364528pt;}
._19{width:83.799120pt;}
._18{width:91.013557pt;}
._20{width:129.587147pt;}
._21{width:161.240331pt;}
._17{width:189.650640pt;}
._1c{width:192.011419pt;}
._1d{width:195.156283pt;}
._16{width:199.004267pt;}
._1e{width:201.450272pt;}
._25{width:216.445904pt;}
._23{width:218.725717pt;}
._1a{width:232.971355pt;}
._1b{width:282.645717pt;}
._26{width:380.698997pt;}
._1f{width:393.308283pt;}
._24{width:773.581147pt;}
.fs1{font-size:28.074667pt;}
.fs9{font-size:29.829333pt;}
.fsb{font-size:33.338667pt;}
.fs0{font-size:35.093333pt;}
.fsa{font-size:37.600000pt;}
.fs6{font-size:40.106667pt;}
.fs7{font-size:42.613333pt;}
.fs5{font-size:47.626667pt;}
.fs4{font-size:50.133333pt;}
.fs2{font-size:60.160000pt;}
.fs8{font-size:70.186667pt;}
.fs3{font-size:110.293333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:30.050667pt;}
.y1{bottom:65.176000pt;}
.y50{bottom:86.896301pt;}
.y2b{bottom:86.897753pt;}
.yc5{bottom:86.903527pt;}
.y12d{bottom:86.917433pt;}
.y14e{bottom:89.982000pt;}
.yf6{bottom:91.007193pt;}
.y8c{bottom:94.929733pt;}
.y88{bottom:95.969789pt;}
.y2a{bottom:101.108360pt;}
.yc4{bottom:101.114133pt;}
.y12c{bottom:101.128040pt;}
.y14d{bottom:102.515333pt;}
.yf5{bottom:103.540840pt;}
.y87{bottom:108.503436pt;}
.y4f{bottom:113.520736pt;}
.y14c{bottom:115.048667pt;}
.y29{bottom:115.318967pt;}
.yc3{bottom:115.324740pt;}
.y12b{bottom:115.338647pt;}
.yf4{bottom:116.074487pt;}
.y86{bottom:121.037083pt;}
.y4e{bottom:124.800611pt;}
.y14b{bottom:127.582000pt;}
.yf3{bottom:128.608133pt;}
.y28{bottom:129.529573pt;}
.yc2{bottom:129.535347pt;}
.y12a{bottom:129.549253pt;}
.y85{bottom:133.570729pt;}
.y4d{bottom:136.080485pt;}
.y14a{bottom:140.115333pt;}
.y27{bottom:143.740180pt;}
.yc1{bottom:143.745953pt;}
.y129{bottom:143.759860pt;}
.y84{bottom:146.104376pt;}
.y4c{bottom:147.360360pt;}
.yf2{bottom:148.243795pt;}
.y149{bottom:152.648667pt;}
.y26{bottom:157.950787pt;}
.yc0{bottom:157.956560pt;}
.y128{bottom:157.970467pt;}
.y83{bottom:158.638023pt;}
.y4b{bottom:158.640235pt;}
.yf1{bottom:160.777441pt;}
.y148{bottom:165.182000pt;}
.y4a{bottom:169.920109pt;}
.y82{bottom:171.171669pt;}
.y25{bottom:172.161393pt;}
.ybf{bottom:172.167167pt;}
.y127{bottom:172.181073pt;}
.yf0{bottom:173.311088pt;}
.y147{bottom:177.715333pt;}
.y49{bottom:181.199984pt;}
.y81{bottom:183.705316pt;}
.y24{bottom:186.372000pt;}
.ybe{bottom:186.377773pt;}
.y126{bottom:186.391680pt;}
.y146{bottom:190.248667pt;}
.yef{bottom:191.173532pt;}
.y48{bottom:192.479859pt;}
.y80{bottom:196.238963pt;}
.y23{bottom:200.583067pt;}
.ybd{bottom:200.588380pt;}
.y125{bottom:200.602287pt;}
.y145{bottom:202.782000pt;}
.yee{bottom:203.707179pt;}
.y47{bottom:203.759733pt;}
.y7f{bottom:208.772609pt;}
.ybc{bottom:214.798987pt;}
.y124{bottom:214.812893pt;}
.y144{bottom:215.315333pt;}
.yed{bottom:216.240825pt;}
.y7e{bottom:223.082167pt;}
.y143{bottom:227.848667pt;}
.ybb{bottom:229.009593pt;}
.y123{bottom:229.023500pt;}
.yec{bottom:234.103269pt;}
.y7d{bottom:235.615813pt;}
.y142{bottom:240.382000pt;}
.y22{bottom:243.216272pt;}
.yba{bottom:243.220200pt;}
.y122{bottom:243.234107pt;}
.y45{bottom:246.472173pt;}
.yeb{bottom:246.636916pt;}
.y7c{bottom:248.149460pt;}
.y141{bottom:252.915333pt;}
.y21{bottom:257.427067pt;}
.yb9{bottom:257.430807pt;}
.y121{bottom:257.444713pt;}
.y44{bottom:259.005820pt;}
.yea{bottom:259.170563pt;}
.y7b{bottom:260.683107pt;}
.y140{bottom:265.448667pt;}
.y43{bottom:271.539467pt;}
.yb8{bottom:271.641413pt;}
.y120{bottom:271.655320pt;}
.ye9{bottom:271.704209pt;}
.y7a{bottom:273.216753pt;}
.y13f{bottom:277.982000pt;}
.y79{bottom:285.750400pt;}
.y20{bottom:285.849067pt;}
.yb7{bottom:285.852020pt;}
.y11f{bottom:285.865927pt;}
.ye8{bottom:289.566653pt;}
.y13e{bottom:290.515333pt;}
.y78{bottom:300.059653pt;}
.y1f{bottom:300.060133pt;}
.yb6{bottom:300.062627pt;}
.y11e{bottom:300.076533pt;}
.ye7{bottom:302.100300pt;}
.y13d{bottom:303.048667pt;}
.y1ac{bottom:307.028933pt;}
.y17c{bottom:307.030533pt;}
.y77{bottom:314.271200pt;}
.yb5{bottom:314.273233pt;}
.y11d{bottom:314.287140pt;}
.ye6{bottom:314.633947pt;}
.y13c{bottom:315.582000pt;}
.y1ab{bottom:319.562267pt;}
.y17b{bottom:319.563867pt;}
.y42{bottom:324.236653pt;}
.y13b{bottom:328.115333pt;}
.yb4{bottom:328.483840pt;}
.y1e{bottom:328.491647pt;}
.y11c{bottom:328.497747pt;}
.y1aa{bottom:332.095600pt;}
.y17a{bottom:332.097200pt;}
.ye5{bottom:332.496391pt;}
.y41{bottom:336.770300pt;}
.y13a{bottom:340.648667pt;}
.yb3{bottom:342.694447pt;}
.y1d{bottom:342.702253pt;}
.y11b{bottom:342.708353pt;}
.y1a9{bottom:344.628933pt;}
.y179{bottom:344.630533pt;}
.ye4{bottom:345.030037pt;}
.y40{bottom:349.303947pt;}
.y76{bottom:351.866993pt;}
.y139{bottom:353.182000pt;}
.yb2{bottom:356.905053pt;}
.y1c{bottom:356.912860pt;}
.y11a{bottom:356.918960pt;}
.y1a8{bottom:357.162267pt;}
.y178{bottom:357.163867pt;}
.ye3{bottom:357.563684pt;}
.y3f{bottom:361.837593pt;}
.y75{bottom:364.400640pt;}
.y138{bottom:365.715333pt;}
.y1a7{bottom:369.695600pt;}
.y177{bottom:369.697200pt;}
.yb1{bottom:371.115660pt;}
.y1b{bottom:371.123467pt;}
.y119{bottom:371.129567pt;}
.y3e{bottom:374.371240pt;}
.y74{bottom:376.934287pt;}
.ye2{bottom:377.202039pt;}
.y137{bottom:378.248667pt;}
.y8b{bottom:379.150267pt;}
.y1a6{bottom:382.228933pt;}
.y176{bottom:382.230533pt;}
.yb0{bottom:385.326267pt;}
.y1a{bottom:385.334073pt;}
.y118{bottom:385.340173pt;}
.y3d{bottom:386.904887pt;}
.y73{bottom:389.467933pt;}
.ye1{bottom:389.735685pt;}
.y136{bottom:390.782000pt;}
.y1a5{bottom:394.762267pt;}
.y175{bottom:394.763867pt;}
.y3c{bottom:399.438533pt;}
.yaf{bottom:399.537333pt;}
.y19{bottom:399.544680pt;}
.y117{bottom:399.550780pt;}
.y72{bottom:402.001580pt;}
.ye0{bottom:402.269332pt;}
.y135{bottom:403.315333pt;}
.y1a4{bottom:407.295600pt;}
.y174{bottom:407.297200pt;}
.y3b{bottom:413.748267pt;}
.y18{bottom:413.755287pt;}
.y116{bottom:413.761387pt;}
.y71{bottom:414.535227pt;}
.ydf{bottom:414.802979pt;}
.y134{bottom:415.848667pt;}
.y1a3{bottom:419.828933pt;}
.y173{bottom:419.830533pt;}
.y70{bottom:427.068873pt;}
.y17{bottom:427.965893pt;}
.y115{bottom:427.971993pt;}
.yae{bottom:430.423713pt;}
.y1a2{bottom:432.362267pt;}
.y172{bottom:432.363867pt;}
.yde{bottom:434.441333pt;}
.y6f{bottom:439.602520pt;}
.y133{bottom:442.170267pt;}
.y16{bottom:442.176500pt;}
.y114{bottom:442.182600pt;}
.yad{bottom:442.957360pt;}
.y1a1{bottom:443.642267pt;}
.y1a0{bottom:444.895600pt;}
.y171{bottom:444.897200pt;}
.y3a{bottom:447.103860pt;}
.ydd{bottom:450.527467pt;}
.y6e{bottom:452.136167pt;}
.yac{bottom:455.491007pt;}
.y15{bottom:456.387107pt;}
.y113{bottom:456.393207pt;}
.y19f{bottom:457.428933pt;}
.y170{bottom:457.430533pt;}
.y39{bottom:459.637507pt;}
.y6d{bottom:464.669813pt;}
.yab{bottom:468.024653pt;}
.y19e{bottom:469.962267pt;}
.y16f{bottom:469.963867pt;}
.y14{bottom:470.597713pt;}
.y112{bottom:470.603813pt;}
.y38{bottom:472.171153pt;}
.yf8{bottom:474.608000pt;}
.y132{bottom:475.525727pt;}
.y6c{bottom:477.203460pt;}
.yaa{bottom:480.558300pt;}
.y19d{bottom:482.495600pt;}
.y16e{bottom:482.497200pt;}
.y37{bottom:484.704800pt;}
.y13{bottom:484.808320pt;}
.y111{bottom:484.814420pt;}
.yf7{bottom:487.141333pt;}
.y131{bottom:488.059373pt;}
.y6b{bottom:489.737107pt;}
.ya9{bottom:493.091947pt;}
.y19c{bottom:493.775600pt;}
.y19b{bottom:495.028933pt;}
.y16d{bottom:495.030533pt;}
.y36{bottom:499.014400pt;}
.y12{bottom:499.018927pt;}
.y110{bottom:499.025027pt;}
.y130{bottom:500.593020pt;}
.y6a{bottom:502.270753pt;}
.ya8{bottom:505.625593pt;}
.y19a{bottom:507.562267pt;}
.y16c{bottom:507.563867pt;}
.y12f{bottom:513.126667pt;}
.y11{bottom:513.229533pt;}
.y10f{bottom:513.235633pt;}
.y69{bottom:514.804087pt;}
.ya7{bottom:518.159240pt;}
.y199{bottom:520.095600pt;}
.y16b{bottom:520.097200pt;}
.y68{bottom:527.337733pt;}
.y12e{bottom:527.436533pt;}
.ydc{bottom:527.437187pt;}
.y10{bottom:527.440140pt;}
.y35{bottom:527.440467pt;}
.y10e{bottom:527.446240pt;}
.ya6{bottom:530.692887pt;}
.y198{bottom:532.628933pt;}
.y16a{bottom:532.630533pt;}
.y67{bottom:541.647467pt;}
.ydb{bottom:541.647793pt;}
.yf{bottom:541.650747pt;}
.y34{bottom:541.651073pt;}
.y10d{bottom:541.656847pt;}
.ya5{bottom:543.226220pt;}
.y197{bottom:545.162267pt;}
.y169{bottom:545.163867pt;}
.ya4{bottom:555.759867pt;}
.yda{bottom:555.858400pt;}
.ye{bottom:555.861353pt;}
.y33{bottom:555.861680pt;}
.y10c{bottom:555.867453pt;}
.y196{bottom:557.695600pt;}
.y168{bottom:557.697200pt;}
.ya3{bottom:570.069467pt;}
.yd{bottom:570.071960pt;}
.y32{bottom:570.072287pt;}
.y10b{bottom:570.078060pt;}
.y195{bottom:570.228933pt;}
.y167{bottom:570.230533pt;}
.y66{bottom:582.597653pt;}
.y194{bottom:582.762267pt;}
.y166{bottom:582.763867pt;}
.yc{bottom:584.282567pt;}
.y31{bottom:584.282893pt;}
.y10a{bottom:584.288667pt;}
.y65{bottom:595.131300pt;}
.y193{bottom:595.295600pt;}
.y165{bottom:595.297200pt;}
.yb{bottom:598.493173pt;}
.y30{bottom:598.493500pt;}
.yd9{bottom:598.498620pt;}
.y109{bottom:598.499273pt;}
.ya2{bottom:602.307945pt;}
.y64{bottom:607.664947pt;}
.y192{bottom:607.828933pt;}
.y164{bottom:607.830533pt;}
.ya{bottom:612.703780pt;}
.y2f{bottom:612.704107pt;}
.yd8{bottom:612.709227pt;}
.y108{bottom:612.709880pt;}
.ya1{bottom:614.841592pt;}
.y63{bottom:620.198593pt;}
.y191{bottom:620.362267pt;}
.y163{bottom:620.363867pt;}
.y8a{bottom:620.737467pt;}
.y9{bottom:626.914387pt;}
.y2e{bottom:626.914713pt;}
.yd7{bottom:626.919833pt;}
.y107{bottom:626.920487pt;}
.ya0{bottom:627.375239pt;}
.y62{bottom:632.732240pt;}
.y190{bottom:632.895600pt;}
.y162{bottom:632.897200pt;}
.y8{bottom:641.124993pt;}
.y2d{bottom:641.125320pt;}
.yd6{bottom:641.130440pt;}
.y106{bottom:641.131093pt;}
.y9f{bottom:641.684796pt;}
.y61{bottom:645.265887pt;}
.y18f{bottom:645.428933pt;}
.y161{bottom:645.430533pt;}
.y9e{bottom:654.218443pt;}
.y7{bottom:655.335600pt;}
.y2c{bottom:655.335927pt;}
.yd5{bottom:655.341047pt;}
.y105{bottom:655.341700pt;}
.y60{bottom:657.799533pt;}
.y18e{bottom:657.962267pt;}
.y160{bottom:657.963867pt;}
.y9d{bottom:668.527687pt;}
.y6{bottom:669.546533pt;}
.yd4{bottom:669.551653pt;}
.y104{bottom:669.552307pt;}
.y5f{bottom:670.333180pt;}
.y18d{bottom:670.495600pt;}
.y15f{bottom:670.497200pt;}
.y9c{bottom:681.057749pt;}
.y5e{bottom:682.866827pt;}
.y18c{bottom:683.028933pt;}
.y15e{bottom:683.030533pt;}
.yd3{bottom:683.762260pt;}
.y103{bottom:683.762913pt;}
.y9b{bottom:693.591396pt;}
.y5d{bottom:695.400473pt;}
.y18b{bottom:695.562267pt;}
.y15d{bottom:695.563867pt;}
.yd2{bottom:697.972867pt;}
.y102{bottom:697.973520pt;}
.y9a{bottom:706.125043pt;}
.y5c{bottom:707.934120pt;}
.y18a{bottom:708.095600pt;}
.y15c{bottom:708.097200pt;}
.yd1{bottom:712.183473pt;}
.y101{bottom:712.184127pt;}
.y99{bottom:718.658689pt;}
.y5b{bottom:720.467767pt;}
.y189{bottom:720.628933pt;}
.y15b{bottom:720.630533pt;}
.yd0{bottom:726.394080pt;}
.y100{bottom:726.394733pt;}
.y98{bottom:731.192336pt;}
.y5a{bottom:733.001413pt;}
.y188{bottom:733.162267pt;}
.y15a{bottom:733.163867pt;}
.ycf{bottom:740.604687pt;}
.yff{bottom:740.605340pt;}
.y97{bottom:743.725983pt;}
.y59{bottom:745.535060pt;}
.y187{bottom:745.695600pt;}
.y159{bottom:745.697200pt;}
.yce{bottom:754.815293pt;}
.yfe{bottom:754.815947pt;}
.y96{bottom:756.259629pt;}
.y58{bottom:758.068707pt;}
.y186{bottom:758.228933pt;}
.y158{bottom:758.230533pt;}
.y95{bottom:768.793276pt;}
.ycd{bottom:769.025900pt;}
.yfd{bottom:769.026553pt;}
.y57{bottom:770.602353pt;}
.y185{bottom:770.762267pt;}
.y157{bottom:770.763867pt;}
.y94{bottom:781.326923pt;}
.y56{bottom:783.136000pt;}
.ycc{bottom:783.236507pt;}
.yfc{bottom:783.237160pt;}
.y184{bottom:783.295600pt;}
.y156{bottom:783.297200pt;}
.y93{bottom:793.860569pt;}
.y183{bottom:795.828933pt;}
.y155{bottom:795.830533pt;}
.y55{bottom:797.445733pt;}
.ycb{bottom:797.447113pt;}
.yfb{bottom:797.447767pt;}
.y5{bottom:804.476299pt;}
.y92{bottom:806.394216pt;}
.y182{bottom:808.362267pt;}
.y154{bottom:808.363867pt;}
.yca{bottom:811.657720pt;}
.yfa{bottom:811.658373pt;}
.y91{bottom:818.927863pt;}
.y181{bottom:820.895600pt;}
.y153{bottom:820.897200pt;}
.y4{bottom:822.023467pt;}
.yc9{bottom:825.868327pt;}
.yf9{bottom:825.868980pt;}
.y54{bottom:833.232127pt;}
.y90{bottom:833.237420pt;}
.y180{bottom:833.428933pt;}
.y152{bottom:833.430533pt;}
.yc8{bottom:840.079587pt;}
.y53{bottom:845.765773pt;}
.y8f{bottom:845.770440pt;}
.y17f{bottom:845.962267pt;}
.y151{bottom:845.963867pt;}
.yc7{bottom:854.290193pt;}
.y3{bottom:857.333867pt;}
.y52{bottom:858.299420pt;}
.y8e{bottom:858.304087pt;}
.y17e{bottom:858.495600pt;}
.y150{bottom:858.497200pt;}
.yc6{bottom:868.500800pt;}
.y51{bottom:870.833067pt;}
.y8d{bottom:870.837733pt;}
.y17d{bottom:871.028933pt;}
.y14f{bottom:871.030533pt;}
.y46{bottom:939.556000pt;}
.y89{bottom:945.093867pt;}
.hf{height:25.618133pt;}
.hd{height:26.881493pt;}
.h9{height:27.473067pt;}
.h1a{height:30.721707pt;}
.h19{height:30.852053pt;}
.he{height:31.197973pt;}
.ha{height:31.960000pt;}
.h14{height:31.961253pt;}
.h12{height:31.962507pt;}
.h13{height:31.974336pt;}
.h16{height:32.173787pt;}
.h11{height:32.174320pt;}
.h7{height:34.481707pt;}
.h8{height:35.654827pt;}
.h6{height:35.720000pt;}
.h17{height:35.954453pt;}
.hb{height:36.948267pt;}
.h15{height:38.224160pt;}
.h5{height:38.402133pt;}
.h10{height:39.471432pt;}
.h1b{height:40.668160pt;}
.h2{height:41.510400pt;}
.h18{height:42.721120pt;}
.hc{height:51.797760pt;}
.h4{height:53.482240pt;}
.h3{height:81.286187pt;}
.h1{height:997.653333pt;}
.h0{height:1122.666667pt;}
.w1{width:748.240000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:21.306667pt;}
.x2{left:58.442800pt;}
.xb{left:72.308400pt;}
.x6{left:79.759333pt;}
.x10{left:93.624905pt;}
.x3{left:104.310267pt;}
.x4{left:165.278800pt;}
.xf{left:257.772732pt;}
.x5{left:280.758928pt;}
.xd{left:370.456267pt;}
.x8{left:378.190828pt;}
.x9{left:392.056400pt;}
.x7{left:399.507333pt;}
.x11{left:410.330117pt;}
.xa{left:413.373067pt;}
.xc{left:474.989867pt;}
.xe{left:515.848667pt;}
.x12{left:557.858480pt;}
}




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