
    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_67300a02bc0d5713acc1a9e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_12e5c364e2f374686ebf7c0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_daa817923bf33833b10a7b32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a6d6e21c89b8467692472579.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_ad7027887097346ef859a5f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2bf9ebc05c45af1b1aa56158.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007324;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_3be9d6991df63acc8279c580.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m3{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m4{transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-33.840000px;}
.v11{vertical-align:-20.880000px;}
.v7{vertical-align:-19.080600px;}
.v3{vertical-align:-8.997876px;}
.v4{vertical-align:-7.554888px;}
.vd{vertical-align:-5.040216px;}
.vc{vertical-align:-3.960000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.160756px;}
.v10{vertical-align:5.040000px;}
.v9{vertical-align:7.200600px;}
.va{vertical-align:9.000000px;}
.vf{vertical-align:10.440000px;}
.v5{vertical-align:16.200000px;}
.ve{vertical-align:20.877912px;}
.v2{vertical-align:27.025308px;}
.v6{vertical-align:30.960072px;}
.v1{vertical-align:33.120000px;}
.ls1c{letter-spacing:-1.056960px;}
.ls6d{letter-spacing:-0.361152px;}
.ls42{letter-spacing:-0.144288px;}
.ls6a{letter-spacing:-0.127260px;}
.ls8b{letter-spacing:-0.090972px;}
.ls69{letter-spacing:-0.090900px;}
.ls1f{letter-spacing:-0.090180px;}
.ls24{letter-spacing:-0.084168px;}
.ls2a{letter-spacing:-0.078156px;}
.ls29{letter-spacing:-0.072144px;}
.ls26{letter-spacing:-0.066132px;}
.ls21{letter-spacing:-0.060120px;}
.ls8a{letter-spacing:-0.058716px;}
.ls45{letter-spacing:-0.054108px;}
.ls93{letter-spacing:-0.052668px;}
.ls27{letter-spacing:-0.048096px;}
.ls8e{letter-spacing:-0.043092px;}
.ls22{letter-spacing:-0.042084px;}
.ls8f{letter-spacing:-0.038304px;}
.ls25{letter-spacing:-0.036072px;}
.ls1d{letter-spacing:-0.036000px;}
.ls90{letter-spacing:-0.033516px;}
.ls2c{letter-spacing:-0.030060px;}
.ls8c{letter-spacing:-0.028728px;}
.ls65{letter-spacing:-0.024048px;}
.ls75{letter-spacing:-0.023328px;}
.ls6b{letter-spacing:-0.021816px;}
.ls91{letter-spacing:-0.019152px;}
.ls68{letter-spacing:-0.018180px;}
.ls2b{letter-spacing:-0.018036px;}
.ls8d{letter-spacing:-0.014364px;}
.ls6e{letter-spacing:-0.012024px;}
.ls20{letter-spacing:-0.011664px;}
.ls92{letter-spacing:-0.009576px;}
.ls28{letter-spacing:-0.006012px;}
.ls1b{letter-spacing:-0.004788px;}
.ls40{letter-spacing:-0.003888px;}
.ls1e{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.006012px;}
.ls73{letter-spacing:0.007776px;}
.ls0{letter-spacing:0.009576px;}
.ls55{letter-spacing:0.010908px;}
.ls7c{letter-spacing:0.011664px;}
.lsc{letter-spacing:0.012024px;}
.ls48{letter-spacing:0.014364px;}
.ls59{letter-spacing:0.014544px;}
.ls2d{letter-spacing:0.015552px;}
.ls7{letter-spacing:0.018036px;}
.ls78{letter-spacing:0.019152px;}
.ls44{letter-spacing:0.020160px;}
.ls7a{letter-spacing:0.023940px;}
.ls5{letter-spacing:0.024048px;}
.ls63{letter-spacing:0.028728px;}
.ls16{letter-spacing:0.030060px;}
.ls79{letter-spacing:0.033516px;}
.ls1{letter-spacing:0.036072px;}
.ls74{letter-spacing:0.038304px;}
.ls6f{letter-spacing:0.041940px;}
.ls4{letter-spacing:0.042084px;}
.ls37{letter-spacing:0.043092px;}
.ls87{letter-spacing:0.047880px;}
.ls15{letter-spacing:0.048096px;}
.ls70{letter-spacing:0.049464px;}
.lsd{letter-spacing:0.050328px;}
.ls51{letter-spacing:0.050904px;}
.ls71{letter-spacing:0.051552px;}
.ls72{letter-spacing:0.052668px;}
.ls17{letter-spacing:0.054108px;}
.ls7f{letter-spacing:0.057456px;}
.ls53{letter-spacing:0.058176px;}
.ls4a{letter-spacing:0.058716px;}
.ls8{letter-spacing:0.060120px;}
.ls46{letter-spacing:0.062244px;}
.ls52{letter-spacing:0.065448px;}
.lsb{letter-spacing:0.066132px;}
.ls89{letter-spacing:0.067032px;}
.ls66{letter-spacing:0.069084px;}
.ls84{letter-spacing:0.071820px;}
.ls3{letter-spacing:0.072144px;}
.ls67{letter-spacing:0.072720px;}
.ls34{letter-spacing:0.076608px;}
.ls9{letter-spacing:0.078156px;}
.ls88{letter-spacing:0.081396px;}
.ls2e{letter-spacing:0.083880px;}
.ls11{letter-spacing:0.084168px;}
.ls3c{letter-spacing:0.086184px;}
.ls2{letter-spacing:0.090180px;}
.ls83{letter-spacing:0.090972px;}
.ls7b{letter-spacing:0.092268px;}
.ls54{letter-spacing:0.094536px;}
.ls3e{letter-spacing:0.095760px;}
.ls6{letter-spacing:0.096192px;}
.ls6c{letter-spacing:0.098172px;}
.ls5a{letter-spacing:0.100044px;}
.ls5f{letter-spacing:0.100080px;}
.ls47{letter-spacing:0.100548px;}
.ls10{letter-spacing:0.102204px;}
.ls57{letter-spacing:0.103680px;}
.ls60{letter-spacing:0.104040px;}
.ls38{letter-spacing:0.105336px;}
.ls13{letter-spacing:0.108216px;}
.ls49{letter-spacing:0.110124px;}
.ls14{letter-spacing:0.114228px;}
.ls64{letter-spacing:0.114912px;}
.ls18{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.125820px;}
.ls30{letter-spacing:0.126252px;}
.ls77{letter-spacing:0.128484px;}
.ls19{letter-spacing:0.132264px;}
.ls33{letter-spacing:0.138276px;}
.ls4d{letter-spacing:0.141804px;}
.ls12{letter-spacing:0.144288px;}
.ls50{letter-spacing:0.144360px;}
.ls4f{letter-spacing:0.145188px;}
.ls3b{letter-spacing:0.150300px;}
.ls4c{letter-spacing:0.157680px;}
.ls85{letter-spacing:0.162792px;}
.ls81{letter-spacing:0.167580px;}
.ls80{letter-spacing:0.172368px;}
.ls23{letter-spacing:0.176148px;}
.ls82{letter-spacing:0.177156px;}
.ls32{letter-spacing:0.180360px;}
.ls43{letter-spacing:0.181944px;}
.ls86{letter-spacing:0.201096px;}
.ls7d{letter-spacing:0.220248px;}
.ls5c{letter-spacing:0.227736px;}
.ls5b{letter-spacing:0.228480px;}
.ls58{letter-spacing:0.228924px;}
.ls5d{letter-spacing:0.229356px;}
.ls4e{letter-spacing:0.301788px;}
.ls56{letter-spacing:0.305424px;}
.ls5e{letter-spacing:0.374508px;}
.ls41{letter-spacing:1.527048px;}
.ls7e{letter-spacing:12.247704px;}
.ls76{letter-spacing:31.950324px;}
.ls1a{letter-spacing:40.887612px;}
.lse{letter-spacing:41.117976px;}
.ls35{letter-spacing:45.539208px;}
.ls4b{letter-spacing:228.591072px;}
.ls61{letter-spacing:276.120000px;}
.ls62{letter-spacing:480.240000px;}
.ls3a{letter-spacing:500.237161px;}
.ls36{letter-spacing:755.266680px;}
.ls3f{letter-spacing:856.532376px;}
.ls3d{letter-spacing:857.612376px;}
.ls39{letter-spacing:982.172376px;}
.ls2f{letter-spacing:1010.251188px;}
.ls31{letter-spacing:1018.168164px;}
.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;}
}
.wsef{word-spacing:-60.120000px;}
.ws6d{word-spacing:-37.462254px;}
.wsad{word-spacing:-36.360000px;}
.ws68{word-spacing:-35.497791px;}
.ws6e{word-spacing:-35.446405px;}
.ws64{word-spacing:-35.421700px;}
.wsab{word-spacing:-29.160000px;}
.ws2{word-spacing:-21.146148px;}
.ws65{word-spacing:-16.164750px;}
.ws6a{word-spacing:-16.141350px;}
.ws61{word-spacing:-16.130100px;}
.ws0{word-spacing:-15.102144px;}
.ws5e{word-spacing:-15.030000px;}
.ws69{word-spacing:-14.885712px;}
.ws126{word-spacing:-12.190248px;}
.ws129{word-spacing:-12.171096px;}
.ws127{word-spacing:-12.075336px;}
.ws12a{word-spacing:-12.065760px;}
.ws12b{word-spacing:-12.013092px;}
.ws128{word-spacing:-12.003516px;}
.ws3{word-spacing:-9.735552px;}
.wsf2{word-spacing:-9.731664px;}
.wsf1{word-spacing:-9.727776px;}
.ws5f{word-spacing:-9.720000px;}
.ws60{word-spacing:-9.716112px;}
.ws1{word-spacing:-9.708336px;}
.ws70{word-spacing:-9.450000px;}
.ws72{word-spacing:-9.414750px;}
.wsaf{word-spacing:-9.391788px;}
.wsb1{word-spacing:-9.155448px;}
.wsac{word-spacing:-9.104544px;}
.wsb3{word-spacing:-9.090000px;}
.wsb4{word-spacing:-9.068184px;}
.wsb0{word-spacing:-8.999100px;}
.wsb2{word-spacing:-8.962740px;}
.wsf0{word-spacing:-7.598484px;}
.wsae{word-spacing:-5.940000px;}
.wsb5{word-spacing:-5.578848px;}
.ws8d{word-spacing:-0.272916px;}
.ws139{word-spacing:-0.268128px;}
.ws15c{word-spacing:-0.263340px;}
.ws156{word-spacing:-0.201096px;}
.ws90{word-spacing:-0.196308px;}
.wsa1{word-spacing:-0.186732px;}
.wsdc{word-spacing:-0.185436px;}
.ws172{word-spacing:-0.181944px;}
.ws9b{word-spacing:-0.177156px;}
.ws73{word-spacing:-0.176148px;}
.ws160{word-spacing:-0.172368px;}
.ws8e{word-spacing:-0.167580px;}
.ws101{word-spacing:-0.153216px;}
.wsbf{word-spacing:-0.150984px;}
.ws10d{word-spacing:-0.143640px;}
.wsda{word-spacing:-0.141804px;}
.wsea{word-spacing:-0.134208px;}
.ws8f{word-spacing:-0.134064px;}
.ws115{word-spacing:-0.129276px;}
.ws10e{word-spacing:-0.124488px;}
.wsdd{word-spacing:-0.119700px;}
.ws116{word-spacing:-0.114912px;}
.ws100{word-spacing:-0.110124px;}
.ws74{word-spacing:-0.092268px;}
.ws8b{word-spacing:-0.090180px;}
.ws50{word-spacing:-0.054108px;}
.ws8c{word-spacing:-0.048096px;}
.ws7d{word-spacing:-0.042084px;}
.ws7c{word-spacing:-0.036072px;}
.wsf5{word-spacing:-0.024048px;}
.ws87{word-spacing:-0.018036px;}
.ws77{word-spacing:-0.012024px;}
.ws9{word-spacing:0.000000px;}
.ws5d{word-spacing:0.006012px;}
.ws4{word-spacing:0.009576px;}
.ws4b{word-spacing:0.012024px;}
.ws7b{word-spacing:0.018036px;}
.ws5{word-spacing:0.023940px;}
.ws125{word-spacing:0.024048px;}
.wsf4{word-spacing:0.030060px;}
.ws8{word-spacing:0.036000px;}
.ws3d{word-spacing:0.036072px;}
.wse9{word-spacing:0.042084px;}
.wsb{word-spacing:0.048096px;}
.wsa{word-spacing:0.054108px;}
.ws6{word-spacing:0.066060px;}
.ws7{word-spacing:0.079272px;}
.ws183{word-spacing:0.090180px;}
.wsc2{word-spacing:0.096192px;}
.wsd9{word-spacing:0.114228px;}
.wscf{word-spacing:0.138276px;}
.ws1b{word-spacing:0.150300px;}
.ws179{word-spacing:0.177156px;}
.ws17a{word-spacing:0.186732px;}
.wsdb{word-spacing:0.210888px;}
.ws124{word-spacing:0.414828px;}
.wseb{word-spacing:0.426852px;}
.wsec{word-spacing:0.438876px;}
.ws123{word-spacing:0.444888px;}
.wsd0{word-spacing:0.480960px;}
.wse4{word-spacing:0.498996px;}
.wse2{word-spacing:0.505008px;}
.ws113{word-spacing:0.715428px;}
.ws111{word-spacing:0.721440px;}
.wsc5{word-spacing:0.727452px;}
.ws165{word-spacing:0.818748px;}
.ws18f{word-spacing:0.835668px;}
.ws58{word-spacing:0.841680px;}
.ws164{word-spacing:0.924084px;}
.ws85{word-spacing:1.052100px;}
.wsa3{word-spacing:1.070136px;}
.ws89{word-spacing:1.088172px;}
.ws12{word-spacing:1.148292px;}
.ws11{word-spacing:1.154304px;}
.ws12f{word-spacing:1.177848px;}
.wsf8{word-spacing:1.424844px;}
.ws79{word-spacing:1.430856px;}
.wsa2{word-spacing:1.448892px;}
.ws78{word-spacing:1.496988px;}
.ws84{word-spacing:1.503000px;}
.ws12e{word-spacing:1.599192px;}
.ws192{word-spacing:1.863720px;}
.wsf{word-spacing:1.869732px;}
.ws110{word-spacing:1.893780px;}
.wsa9{word-spacing:1.959912px;}
.ws13f{word-spacing:1.987020px;}
.ws10f{word-spacing:2.194380px;}
.ws180{word-spacing:2.218428px;}
.ws10b{word-spacing:2.326644px;}
.wsb9{word-spacing:2.331756px;}
.ws138{word-spacing:2.370060px;}
.ws13e{word-spacing:2.384424px;}
.ws10a{word-spacing:2.494980px;}
.wsce{word-spacing:2.519028px;}
.wsd8{word-spacing:2.525040px;}
.ws3b{word-spacing:2.531052px;}
.ws59{word-spacing:2.537064px;}
.ws98{word-spacing:2.669328px;}
.ws137{word-spacing:2.676492px;}
.ws3c{word-spacing:2.693376px;}
.wsb8{word-spacing:2.729160px;}
.ws105{word-spacing:2.879748px;}
.ws189{word-spacing:2.897784px;}
.wsbc{word-spacing:2.957904px;}
.ws5b{word-spacing:2.963916px;}
.ws88{word-spacing:3.018024px;}
.wsa4{word-spacing:3.210408px;}
.ws106{word-spacing:3.264516px;}
.ws13{word-spacing:3.270528px;}
.ws5a{word-spacing:3.306600px;}
.ws17{word-spacing:3.324636px;}
.ws12d{word-spacing:3.452148px;}
.ws149{word-spacing:3.480876px;}
.ws161{word-spacing:3.485664px;}
.ws157{word-spacing:3.490452px;}
.ws9f{word-spacing:3.619224px;}
.ws33{word-spacing:3.625236px;}
.ws12c{word-spacing:3.782520px;}
.ws91{word-spacing:3.931848px;}
.wsd3{word-spacing:3.943872px;}
.ws18d{word-spacing:3.961908px;}
.wsd2{word-spacing:3.979944px;}
.wsd{word-spacing:4.010004px;}
.ws4d{word-spacing:4.022028px;}
.wse{word-spacing:4.028040px;}
.ws75{word-spacing:4.118220px;}
.ws148{word-spacing:4.122468px;}
.ws147{word-spacing:4.500720px;}
.ws168{word-spacing:4.505508px;}
.wsff{word-spacing:4.671324px;}
.ws133{word-spacing:4.783212px;}
.wsd6{word-spacing:4.797576px;}
.ws132{word-spacing:4.845456px;}
.ws167{word-spacing:4.893336px;}
.ws166{word-spacing:4.989096px;}
.ws51{word-spacing:5.020020px;}
.wsd5{word-spacing:5.050080px;}
.wsd1{word-spacing:5.056092px;}
.ws16a{word-spacing:5.228496px;}
.ws174{word-spacing:5.257224px;}
.ws169{word-spacing:5.343408px;}
.wsd4{word-spacing:5.386752px;}
.wse8{word-spacing:5.446872px;}
.ws188{word-spacing:5.519016px;}
.ws173{word-spacing:5.668992px;}
.wsa7{word-spacing:5.783544px;}
.ws187{word-spacing:5.801580px;}
.wse7{word-spacing:5.825628px;}
.wse5{word-spacing:5.879736px;}
.ws36{word-spacing:5.915808px;}
.wsc{word-spacing:5.939856px;}
.ws5c{word-spacing:6.096168px;}
.wsa6{word-spacing:6.114204px;}
.ws3a{word-spacing:6.180336px;}
.ws195{word-spacing:6.186348px;}
.ws194{word-spacing:6.192360px;}
.ws7f{word-spacing:6.288552px;}
.ws119{word-spacing:6.456888px;}
.ws7e{word-spacing:6.510996px;}
.ws39{word-spacing:6.535044px;}
.ws141{word-spacing:6.583500px;}
.ws83{word-spacing:6.601176px;}
.wsf9{word-spacing:6.619212px;}
.ws140{word-spacing:6.679260px;}
.ws152{word-spacing:6.751080px;}
.ws150{word-spacing:6.794172px;}
.ws80{word-spacing:6.841656px;}
.ws11b{word-spacing:6.859692px;}
.ws24{word-spacing:6.889752px;}
.ws112{word-spacing:6.895764px;}
.ws82{word-spacing:6.901776px;}
.ws1a{word-spacing:6.919812px;}
.ws109{word-spacing:6.961896px;}
.ws81{word-spacing:6.997968px;}
.ws151{word-spacing:7.071876px;}
.ws22{word-spacing:7.190352px;}
.ws54{word-spacing:7.196364px;}
.wsa8{word-spacing:7.202376px;}
.ws23{word-spacing:7.232436px;}
.ws11a{word-spacing:7.262496px;}
.ws19{word-spacing:7.274520px;}
.wscd{word-spacing:7.280532px;}
.wsca{word-spacing:7.286544px;}
.ws177{word-spacing:7.287336px;}
.ws197{word-spacing:7.328628px;}
.ws18c{word-spacing:7.545060px;}
.wse3{word-spacing:7.659288px;}
.ws176{word-spacing:7.790076px;}
.ws175{word-spacing:7.794864px;}
.ws28{word-spacing:7.911792px;}
.ws18a{word-spacing:7.929828px;}
.ws14c{word-spacing:8.029476px;}
.wsdf{word-spacing:8.091720px;}
.wsde{word-spacing:8.096508px;}
.ws13a{word-spacing:8.134812px;}
.ws9c{word-spacing:8.272512px;}
.ws15{word-spacing:8.278524px;}
.ws30{word-spacing:8.290548px;}
.ws193{word-spacing:8.356680px;}
.ws42{word-spacing:8.368704px;}
.ws14b{word-spacing:8.465184px;}
.ws14a{word-spacing:8.517852px;}
.ws44{word-spacing:8.597160px;}
.wsd7{word-spacing:8.603172px;}
.ws1c{word-spacing:8.639244px;}
.ws18e{word-spacing:8.651268px;}
.ws2e{word-spacing:8.681328px;}
.ws2f{word-spacing:8.693352px;}
.ws41{word-spacing:8.711388px;}
.wse1{word-spacing:8.795556px;}
.ws134{word-spacing:8.848224px;}
.ws43{word-spacing:8.975916px;}
.wse6{word-spacing:8.993952px;}
.ws8a{word-spacing:8.999964px;}
.ws21{word-spacing:9.126216px;}
.wse0{word-spacing:9.173808px;}
.ws13d{word-spacing:9.216900px;}
.ws31{word-spacing:9.360684px;}
.ws32{word-spacing:9.450864px;}
.ws17d{word-spacing:9.456300px;}
.wsbb{word-spacing:9.585576px;}
.ws9e{word-spacing:9.703368px;}
.ws56{word-spacing:9.715392px;}
.ws14{word-spacing:9.721404px;}
.ws103{word-spacing:9.727416px;}
.wsfb{word-spacing:9.769500px;}
.ws186{word-spacing:9.781524px;}
.wsfa{word-spacing:9.787536px;}
.ws155{word-spacing:9.896796px;}
.ws17c{word-spacing:9.954252px;}
.wsba{word-spacing:9.973404px;}
.ws97{word-spacing:10.046052px;}
.ws96{word-spacing:10.052064px;}
.ws49{word-spacing:10.160280px;}
.wsed{word-spacing:10.226412px;}
.ws4a{word-spacing:10.244448px;}
.ws154{word-spacing:10.303776px;}
.ws131{word-spacing:10.327716px;}
.wsc7{word-spacing:10.424808px;}
.ws7a{word-spacing:10.442844px;}
.ws95{word-spacing:10.563084px;}
.ws130{word-spacing:10.658088px;}
.wsc1{word-spacing:10.779516px;}
.ws10{word-spacing:10.791540px;}
.ws18b{word-spacing:10.797552px;}
.ws47{word-spacing:10.821600px;}
.ws55{word-spacing:10.833624px;}
.ws182{word-spacing:10.839636px;}
.ws94{word-spacing:11.098152px;}
.wsc4{word-spacing:11.152260px;}
.ws76{word-spacing:11.170296px;}
.ws9d{word-spacing:11.176308px;}
.ws15b{word-spacing:11.247012px;}
.ws15a{word-spacing:11.366712px;}
.ws93{word-spacing:11.615184px;}
.ws16c{word-spacing:11.697084px;}
.ws35{word-spacing:11.873700px;}
.ws40{word-spacing:11.903760px;}
.ws3f{word-spacing:11.945844px;}
.ws16b{word-spacing:12.113640px;}
.ws196{word-spacing:12.330612px;}
.wsaa{word-spacing:12.384720px;}
.ws144{word-spacing:12.405708px;}
.ws114{word-spacing:12.424860px;}
.ws10c{word-spacing:12.565080px;}
.ws2c{word-spacing:12.583116px;}
.wsfc{word-spacing:12.607164px;}
.wsf7{word-spacing:12.637224px;}
.wsf6{word-spacing:12.679308px;}
.ws29{word-spacing:12.739428px;}
.ws14f{word-spacing:12.760020px;}
.ws143{word-spacing:12.798324px;}
.ws26{word-spacing:12.967884px;}
.ws136{word-spacing:13.123908px;}
.ws14e{word-spacing:13.152636px;}
.ws191{word-spacing:13.340628px;}
.ws102{word-spacing:13.448844px;}
.ws135{word-spacing:13.550040px;}
.ws17b{word-spacing:14.004900px;}
.wsbd{word-spacing:14.013972px;}
.ws190{word-spacing:14.056056px;}
.ws48{word-spacing:14.062068px;}
.ws52{word-spacing:14.146236px;}
.ws16f{word-spacing:14.239512px;}
.ws92{word-spacing:14.362668px;}
.ws18{word-spacing:14.422788px;}
.ws34{word-spacing:14.428800px;}
.wsbe{word-spacing:14.555052px;}
.ws16e{word-spacing:14.627340px;}
.ws178{word-spacing:14.680008px;}
.ws3e{word-spacing:14.729400px;}
.ws13c{word-spacing:14.924196px;}
.ws13b{word-spacing:14.938560px;}
.ws153{word-spacing:15.043896px;}
.wsc9{word-spacing:15.138216px;}
.ws107{word-spacing:15.162264px;}
.ws108{word-spacing:15.234408px;}
.ws163{word-spacing:15.331176px;}
.ws162{word-spacing:15.345540px;}
.ws121{word-spacing:15.541020px;}
.ws120{word-spacing:15.829596px;}
.wsc3{word-spacing:15.859656px;}
.ws117{word-spacing:16.178292px;}
.wscc{word-spacing:16.220376px;}
.ws38{word-spacing:16.262460px;}
.ws53{word-spacing:16.382700px;}
.ws14d{word-spacing:16.485084px;}
.wsee{word-spacing:16.563060px;}
.wsb7{word-spacing:16.611156px;}
.wscb{word-spacing:16.617168px;}
.ws1e{word-spacing:16.641216px;}
.ws15d{word-spacing:16.868124px;}
.ws99{word-spacing:16.917768px;}
.ws9a{word-spacing:16.977888px;}
.wsb6{word-spacing:16.995924px;}
.ws46{word-spacing:17.013960px;}
.ws171{word-spacing:17.088372px;}
.ws142{word-spacing:17.217648px;}
.wsa0{word-spacing:17.248428px;}
.ws86{word-spacing:17.278488px;}
.ws45{word-spacing:17.362656px;}
.ws170{word-spacing:17.485776px;}
.ws2a{word-spacing:17.633196px;}
.ws118{word-spacing:17.771472px;}
.ws25{word-spacing:18.156240px;}
.ws2d{word-spacing:19.058040px;}
.ws4e{word-spacing:19.070064px;}
.wsc6{word-spacing:19.424772px;}
.ws17f{word-spacing:19.478880px;}
.ws57{word-spacing:19.532988px;}
.ws17e{word-spacing:19.821564px;}
.ws104{word-spacing:20.561040px;}
.ws1f{word-spacing:20.693304px;}
.ws20{word-spacing:20.969856px;}
.ws2b{word-spacing:21.246408px;}
.ws4c{word-spacing:21.408732px;}
.ws15e{word-spacing:21.416724px;}
.ws15f{word-spacing:21.541212px;}
.ws145{word-spacing:22.570632px;}
.wsfe{word-spacing:23.043996px;}
.wsf3{word-spacing:23.470848px;}
.wsfd{word-spacing:23.506920px;}
.ws4f{word-spacing:24.492888px;}
.ws11f{word-spacing:24.847596px;}
.ws16{word-spacing:24.853608px;}
.wsa5{word-spacing:25.196292px;}
.wsc8{word-spacing:25.340580px;}
.ws37{word-spacing:25.917732px;}
.ws11c{word-spacing:27.450792px;}
.wsc0{word-spacing:28.124136px;}
.ws181{word-spacing:28.184256px;}
.ws185{word-spacing:30.961800px;}
.ws184{word-spacing:31.340556px;}
.ws27{word-spacing:33.967800px;}
.ws146{word-spacing:35.838180px;}
.ws1d{word-spacing:38.290428px;}
.ws11e{word-spacing:38.548944px;}
.ws11d{word-spacing:38.560968px;}
.ws16d{word-spacing:47.089980px;}
.ws158{word-spacing:49.871808px;}
.ws159{word-spacing:49.919688px;}
.ws122{word-spacing:51.661116px;}
.ws6b{word-spacing:86.190316px;}
.ws71{word-spacing:86.954631px;}
.ws6f{word-spacing:87.571260px;}
.ws6c{word-spacing:215.436651px;}
.ws63{word-spacing:472.566766px;}
.ws67{word-spacing:487.923280px;}
.ws62{word-spacing:518.610808px;}
.ws66{word-spacing:529.351457px;}
._1c{margin-left:-368.467278px;}
._f{margin-left:-356.938982px;}
._9{margin-left:-352.897692px;}
._19{margin-left:-279.258268px;}
._7{margin-left:-230.647526px;}
._1d{margin-left:-190.354653px;}
._11{margin-left:-174.863800px;}
._1b{margin-left:-172.625801px;}
._c{margin-left:-167.585287px;}
._1a{margin-left:-166.100518px;}
._12{margin-left:-164.376110px;}
._b{margin-left:-158.223377px;}
._1f{margin-left:-155.029153px;}
._21{margin-left:-153.735653px;}
._10{margin-left:-150.979212px;}
._a{margin-left:-144.096252px;}
._8{margin-left:-141.939664px;}
._15{margin-left:-125.521594px;}
._16{margin-left:-124.081786px;}
._d{margin-left:-104.329487px;}
._29{margin-left:-23.200308px;}
._2a{margin-left:-20.440800px;}
._14{margin-left:-17.514648px;}
._28{margin-left:-9.721404px;}
._3{margin-left:-6.480936px;}
._5{margin-left:-5.024412px;}
._2d{margin-left:-3.601188px;}
._6{margin-left:-2.124936px;}
._1{margin-left:-1.019844px;}
._2{width:1.004004px;}
._2c{width:6.923448px;}
._26{width:15.972768px;}
._27{width:17.428140px;}
._2b{width:18.443376px;}
._23{width:28.163016px;}
._18{width:31.045392px;}
._25{width:181.058256px;}
._24{width:196.034940px;}
._e{width:246.239496px;}
._13{width:253.081152px;}
._17{width:255.239460px;}
._1e{width:304.201188px;}
._20{width:416.517372px;}
._22{width:418.681692px;}
._0{width:1074.958668px;}
._4{width:1624.147056px;}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:19.080000px;}
.fs1c{font-size:23.760000px;}
.fs1a{font-size:29.160000px;}
.fs1d{font-size:29.880000px;}
.fs19{font-size:36.360000px;}
.fs7{font-size:37.636800px;}
.fs16{font-size:37.659000px;}
.fse{font-size:37.663800px;}
.fsa{font-size:37.718400px;}
.fs13{font-size:37.800000px;}
.fs4{font-size:38.880000px;}
.fs12{font-size:39.240000px;}
.fs0{font-size:47.880000px;}
.fs11{font-size:50.400000px;}
.fs10{font-size:51.480000px;}
.fs3{font-size:60.120000px;}
.fsc{font-size:63.539045px;}
.fs6{font-size:64.520400px;}
.fs18{font-size:64.559400px;}
.fsd{font-size:64.565400px;}
.fs9{font-size:64.659000px;}
.fs15{font-size:64.800000px;}
.fs8{font-size:68.189630px;}
.fs17{font-size:68.230609px;}
.fsf{font-size:68.237257px;}
.fsb{font-size:68.336306px;}
.fs14{font-size:68.485252px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.510450px;}
.yc3{bottom:3.600450px;}
.y166{bottom:128.639919px;}
.y147{bottom:128.728857px;}
.y17c{bottom:129.539388px;}
.y10b{bottom:130.341990px;}
.ydf{bottom:134.574645px;}
.yb2{bottom:139.980904px;}
.y165{bottom:146.190450px;}
.y146{bottom:146.279388px;}
.y17b{bottom:147.089919px;}
.y10a{bottom:147.892521px;}
.yb4{bottom:148.440450px;}
.yde{bottom:152.125176px;}
.yb5{bottom:152.490450px;}
.y2b{bottom:153.921609px;}
.y54{bottom:154.019538px;}
.yb1{bottom:154.289172px;}
.yb3{bottom:162.480332px;}
.y145{bottom:163.829919px;}
.y17a{bottom:164.635140px;}
.y109{bottom:165.443052px;}
.ydd{bottom:169.675707px;}
.y2a{bottom:171.472140px;}
.y53{bottom:171.570069px;}
.y164{bottom:172.200600px;}
.y144{bottom:181.380450px;}
.y179{bottom:182.185671px;}
.y108{bottom:182.993583px;}
.ydc{bottom:187.226238px;}
.y29{bottom:189.022671px;}
.y52{bottom:189.094815px;}
.yb0{bottom:190.469388px;}
.y163{bottom:192.720450px;}
.y178{bottom:199.736202px;}
.y107{bottom:200.544114px;}
.ydb{bottom:204.776769px;}
.y28{bottom:206.573202px;}
.y51{bottom:206.645346px;}
.yaf{bottom:208.019919px;}
.y143{bottom:209.010450px;}
.y177{bottom:217.286733px;}
.yda{bottom:222.327300px;}
.y106{bottom:223.583601px;}
.y27{bottom:224.123733px;}
.y50{bottom:224.195877px;}
.yae{bottom:225.570450px;}
.y176{bottom:234.837264px;}
.yd9{bottom:239.877831px;}
.y105{bottom:241.134132px;}
.y26{bottom:241.674264px;}
.y4f{bottom:241.746408px;}
.yad{bottom:251.580450px;}
.y175{bottom:252.387795px;}
.yd8{bottom:257.428362px;}
.y104{bottom:258.684663px;}
.y25{bottom:259.224795px;}
.y4e{bottom:259.296939px;}
.y142{bottom:268.496202px;}
.y174{bottom:269.938326px;}
.yac{bottom:272.100450px;}
.y103{bottom:276.235194px;}
.y24{bottom:276.775326px;}
.y4d{bottom:276.847470px;}
.yd7{bottom:283.978857px;}
.y141{bottom:286.046733px;}
.y173{bottom:287.488857px;}
.y1da{bottom:292.068813px;}
.y102{bottom:293.785725px;}
.y23{bottom:294.325857px;}
.y4c{bottom:294.398001px;}
.yd6{bottom:301.529388px;}
.y140{bottom:303.597264px;}
.y172{bottom:305.039388px;}
.y101{bottom:311.336256px;}
.y4b{bottom:311.948532px;}
.y1ac{bottom:318.088695px;}
.y1d9{bottom:319.068705px;}
.yd5{bottom:319.079919px;}
.y22{bottom:320.876352px;}
.y13f{bottom:321.147795px;}
.y171{bottom:322.589919px;}
.y4a{bottom:329.499063px;}
.y1ab{bottom:332.219280px;}
.y100{bottom:334.375743px;}
.ya8{bottom:335.550450px;}
.y1d8{bottom:336.619236px;}
.yd4{bottom:336.630819px;}
.ya9{bottom:337.080450px;}
.y21{bottom:338.426883px;}
.y13e{bottom:338.698326px;}
.y170{bottom:340.140450px;}
.y1aa{bottom:346.349865px;}
.y49{bottom:347.049594px;}
.yff{bottom:351.926274px;}
.y1d7{bottom:354.169767px;}
.y20{bottom:355.977414px;}
.y13d{bottom:356.248857px;}
.y1a9{bottom:360.471900px;}
.yd0{bottom:364.350000px;}
.y16f{bottom:367.770450px;}
.yd2{bottom:367.860450px;}
.yd3{bottom:368.760450px;}
.ycf{bottom:368.760801px;}
.y1d6{bottom:371.720298px;}
.y1f{bottom:373.527945px;}
.y48{bottom:373.600089px;}
.y13c{bottom:373.799388px;}
.yfe{bottom:378.476769px;}
.y1a8{bottom:383.601531px;}
.y1d5{bottom:389.270829px;}
.y1e{bottom:391.078476px;}
.y47{bottom:391.150620px;}
.y13b{bottom:391.349919px;}
.yfd{bottom:396.027300px;}
.yce{bottom:396.390450px;}
.yaa{bottom:396.570450px;}
.ya4{bottom:397.020600px;}
.y1a7{bottom:397.732116px;}
.ya6{bottom:401.429862px;}
.y1d4{bottom:406.821360px;}
.y1d{bottom:408.629007px;}
.y46{bottom:408.701151px;}
.y13a{bottom:408.900450px;}
.yab{bottom:409.710600px;}
.y1a6{bottom:411.862701px;}
.yfc{bottom:413.577831px;}
.ycd{bottom:422.400450px;}
.ya7{bottom:423.930600px;}
.y1d3{bottom:424.371891px;}
.y1c{bottom:426.179538px;}
.y45{bottom:426.251682px;}
.y16e{bottom:426.720450px;}
.ya5{bottom:427.350042px;}
.yfb{bottom:431.128362px;}
.y139{bottom:434.910015px;}
.y1a5{bottom:434.992332px;}
.y1d2{bottom:441.922422px;}
.ycc{bottom:442.920450px;}
.y1b{bottom:443.730069px;}
.y44{bottom:443.802213px;}
.y16d{bottom:447.240450px;}
.yfa{bottom:448.678893px;}
.y138{bottom:449.040600px;}
.y1a4{bottom:449.122917px;}
.y1d1{bottom:459.472953px;}
.y1a{bottom:461.280600px;}
.y1a3{bottom:463.253502px;}
.yf9{bottom:466.229424px;}
.y43{bottom:466.841700px;}
.y137{bottom:469.560450px;}
.ya3{bottom:469.740450px;}
.y1d0{bottom:477.023484px;}
.y1a2{bottom:477.384087px;}
.yf8{bottom:483.779955px;}
.y42{bottom:484.392231px;}
.y19{bottom:488.910450px;}
.ya2{bottom:490.260450px;}
.y1cf{bottom:494.574015px;}
.y1a1{bottom:500.513718px;}
.y162{bottom:504.389388px;}
.y41{bottom:507.431718px;}
.yf7{bottom:508.080450px;}
.yf5{bottom:510.327759px;}
.yf6{bottom:510.330450px;}
.y1ce{bottom:512.124546px;}
.y1a0{bottom:514.643106px;}
.y161{bottom:521.939919px;}
.y19f{bottom:528.773691px;}
.yf4{bottom:528.867264px;}
.y1cd{bottom:529.675077px;}
.y40{bottom:530.471205px;}
.y160{bottom:537.240450px;}
.y15e{bottom:539.486733px;}
.y15f{bottom:539.490450px;}
.yf3{bottom:546.417795px;}
.y1cc{bottom:547.225608px;}
.y3f{bottom:548.021736px;}
.y18{bottom:548.399388px;}
.y19e{bottom:551.903322px;}
.y15d{bottom:558.026238px;}
.yf2{bottom:563.968326px;}
.y1cb{bottom:564.776139px;}
.y3e{bottom:565.572267px;}
.y17{bottom:565.949919px;}
.y19d{bottom:566.033907px;}
.y19c{bottom:580.164492px;}
.yf1{bottom:581.518857px;}
.y1ca{bottom:582.326670px;}
.y3d{bottom:583.122798px;}
.y16{bottom:583.500450px;}
.y15c{bottom:584.576733px;}
.yf0{bottom:599.069388px;}
.y1c9{bottom:599.877201px;}
.y3c{bottom:600.673329px;}
.y15b{bottom:602.127264px;}
.y19b{bottom:603.294123px;}
.y8f{bottom:606.626253px;}
.y7b{bottom:606.629481px;}
.y88{bottom:606.897428px;}
.y82{bottom:606.899042px;}
.y91{bottom:606.900450px;}
.y9d{bottom:610.770450px;}
.y9b{bottom:610.950039px;}
.y95{bottom:610.950450px;}
.y15{bottom:611.130450px;}
.yef{bottom:616.619919px;}
.y19a{bottom:617.424708px;}
.y1c8{bottom:617.427732px;}
.y3b{bottom:618.223860px;}
.y15a{bottom:619.677795px;}
.y84{bottom:620.309275px;}
.y7e{bottom:620.310889px;}
.y8b{bottom:620.577222px;}
.y77{bottom:620.580450px;}
.y92{bottom:631.110741px;}
.y199{bottom:631.555293px;}
.yee{bottom:634.170450px;}
.y1c7{bottom:634.978263px;}
.y9e{bottom:634.980861px;}
.y97{bottom:635.159247px;}
.y99{bottom:635.160450px;}
.y3a{bottom:635.774391px;}
.y85{bottom:635.788830px;}
.y7f{bottom:635.790444px;}
.y8c{bottom:635.967999px;}
.y78{bottom:635.971227px;}
.y159{bottom:637.228326px;}
.y8a{bottom:647.307297px;}
.y7d{bottom:647.310526px;}
.y86{bottom:651.268385px;}
.y80{bottom:651.269999px;}
.y8d{bottom:651.447554px;}
.y79{bottom:651.450782px;}
.y76{bottom:652.616121px;}
.ya1{bottom:652.620450px;}
.y39{bottom:653.324922px;}
.y198{bottom:654.684924px;}
.y158{bottom:654.778857px;}
.y93{bottom:655.321031px;}
.y9f{bottom:659.191272px;}
.y98{bottom:659.369658px;}
.y9a{bottom:659.370861px;}
.ycb{bottom:660.177831px;}
.y1c6{bottom:661.797795px;}
.yed{bottom:661.800450px;}
.y87{bottom:666.747939px;}
.y81{bottom:666.749553px;}
.y8e{bottom:666.927108px;}
.y7a{bottom:666.930337px;}
.y197{bottom:668.815509px;}
.y38{bottom:670.875453px;}
.y157{bottom:672.329388px;}
.yca{bottom:677.728362px;}
.y1c5{bottom:679.348326px;}
.y94{bottom:679.531322px;}
.y14{bottom:679.619919px;}
.y89{bottom:682.227494px;}
.y83{bottom:682.229108px;}
.y90{bottom:682.406663px;}
.y7c{bottom:682.409891px;}
.y196{bottom:682.946094px;}
.ya0{bottom:683.401683px;}
.y9c{bottom:683.579658px;}
.y96{bottom:683.580068px;}
.y156{bottom:689.879919px;}
.y1c4{bottom:696.898857px;}
.y13{bottom:697.164123px;}
.y37{bottom:697.425948px;}
.yc9{bottom:704.278857px;}
.y195{bottom:706.075725px;}
.y155{bottom:707.430450px;}
.y75{bottom:713.546238px;}
.y1c3{bottom:714.449388px;}
.y12{bottom:714.714654px;}
.y36{bottom:714.976479px;}
.y194{bottom:720.205113px;}
.yec{bottom:721.288857px;}
.yc8{bottom:721.829388px;}
.y74{bottom:731.096769px;}
.y1c2{bottom:731.999919px;}
.y11{bottom:732.265185px;}
.y35{bottom:732.527010px;}
.y154{bottom:733.440450px;}
.y193{bottom:734.335698px;}
.yeb{bottom:738.839388px;}
.yc7{bottom:739.379919px;}
.y192{bottom:748.466283px;}
.y73{bottom:748.647300px;}
.y1c1{bottom:749.550450px;}
.y10{bottom:749.815716px;}
.y34{bottom:750.077541px;}
.y153{bottom:753.960450px;}
.y16c{bottom:753.961062px;}
.yea{bottom:756.389919px;}
.yc6{bottom:756.930819px;}
.y72{bottom:766.197831px;}
.yf{bottom:767.366247px;}
.y33{bottom:767.628072px;}
.y16b{bottom:768.090450px;}
.y191{bottom:771.595914px;}
.ye9{bottom:773.940450px;}
.y1c0{bottom:777.450450px;}
.y136{bottom:783.119865px;}
.yc2{bottom:784.560000px;}
.ye{bottom:784.916778px;}
.y32{bottom:785.178603px;}
.y190{bottom:785.725302px;}
.yc4{bottom:788.160450px;}
.y16a{bottom:788.610600px;}
.yc1{bottom:789.060090px;}
.yc5{bottom:789.060450px;}
.y71{bottom:792.748326px;}
.y135{bottom:797.250450px;}
.y18f{bottom:799.855887px;}
.ye8{bottom:799.950477px;}
.yd{bottom:802.467309px;}
.y31{bottom:802.729134px;}
.y70{bottom:810.298857px;}
.ye7{bottom:814.081062px;}
.yc0{bottom:816.779919px;}
.y134{bottom:817.770450px;}
.yc{bottom:820.017840px;}
.y30{bottom:820.279665px;}
.y18e{bottom:822.985518px;}
.y6f{bottom:827.849388px;}
.ye6{bottom:828.210450px;}
.y111{bottom:831.090450px;}
.ybf{bottom:834.330450px;}
.y12b{bottom:836.760180px;}
.y120{bottom:836.760765px;}
.y18d{bottom:837.116103px;}
.yb{bottom:837.568371px;}
.y2f{bottom:837.830196px;}
.y132{bottom:840.630450px;}
.y1bf{bottom:842.424969px;}
.y11a{bottom:843.510450px;}
.y6e{bottom:845.399919px;}
.y112{bottom:849.630450px;}
.y18c{bottom:851.246688px;}
.ye5{bottom:852.150747px;}
.y151{bottom:854.490450px;}
.ya{bottom:855.118902px;}
.y2e{bottom:855.380727px;}
.y1be{bottom:856.554357px;}
.y11f{bottom:858.090234px;}
.y152{bottom:859.710450px;}
.y131{bottom:859.980450px;}
.ybe{bottom:860.340450px;}
.y12a{bottom:861.330225px;}
.y119{bottom:862.590450px;}
.y6d{bottom:862.950450px;}
.y6c{bottom:862.950945px;}
.y133{bottom:864.570450px;}
.y18b{bottom:865.377273px;}
.ye4{bottom:866.280450px;}
.y1bd{bottom:870.684942px;}
.y9{bottom:872.669433px;}
.y2d{bottom:872.931258px;}
.y150{bottom:875.010450px;}
.y110{bottom:878.070450px;}
.ybd{bottom:880.860600px;}
.y6a{bottom:881.490378px;}
.y6b{bottom:881.490450px;}
.y18a{bottom:888.506904px;}
.y8{bottom:890.219964px;}
.y2c{bottom:890.481789px;}
.y1bc{bottom:893.814573px;}
.y189{bottom:902.637489px;}
.y1bb{bottom:907.945158px;}
.y7{bottom:908.039532px;}
.y68{bottom:909.300450px;}
.y64{bottom:909.300550px;}
.y10f{bottom:909.480450px;}
.y11d{bottom:912.270504px;}
.y129{bottom:913.620450px;}
.y188{bottom:916.768074px;}
.y66{bottom:917.760450px;}
.y130{bottom:918.120450px;}
.y118{bottom:918.480450px;}
.y67{bottom:921.810450px;}
.y1ba{bottom:922.075743px;}
.y69{bottom:923.610450px;}
.y63{bottom:923.611134px;}
.y65{bottom:931.800266px;}
.y117{bottom:937.560450px;}
.y11e{bottom:937.740630px;}
.y187{bottom:939.897705px;}
.y128{bottom:940.170612px;}
.y6{bottom:943.589991px;}
.y1b9{bottom:945.205374px;}
.ye3{bottom:946.290747px;}
.y10e{bottom:948.630450px;}
.y186{bottom:954.028290px;}
.y1b8{bottom:959.335959px;}
.y5d{bottom:960.060273px;}
.y61{bottom:960.060450px;}
.ye2{bottom:960.420450px;}
.y185{bottom:968.158875px;}
.y5f{bottom:968.430450px;}
.y60{bottom:972.480450px;}
.y1b7{bottom:973.466544px;}
.y5c{bottom:974.369172px;}
.y62{bottom:974.370450px;}
.y5{bottom:979.140450px;}
.y114{bottom:980.220450px;}
.y14f{bottom:980.936202px;}
.y184{bottom:982.289460px;}
.y5e{bottom:982.560149px;}
.y12f{bottom:989.220450px;}
.y11c{bottom:996.330279px;}
.y127{bottom:996.330450px;}
.y1b6{bottom:996.596175px;}
.y14e{bottom:998.486733px;}
.y183{bottom:1005.419091px;}
.y12e{bottom:1008.660450px;}
.y116{bottom:1008.930450px;}
.y5b{bottom:1010.549388px;}
.y1b5{bottom:1010.726760px;}
.y4{bottom:1015.230450px;}
.y14d{bottom:1016.037264px;}
.y182{bottom:1019.549676px;}
.y113{bottom:1019.910450px;}
.y1b4{bottom:1024.857345px;}
.y5a{bottom:1028.099919px;}
.y14c{bottom:1033.587795px;}
.y181{bottom:1033.679064px;}
.y1b3{bottom:1038.987930px;}
.y59{bottom:1045.649919px;}
.ybc{bottom:1050.149919px;}
.y14b{bottom:1051.138326px;}
.y10d{bottom:1052.580450px;}
.y180{bottom:1056.808695px;}
.y1b2{bottom:1062.117561px;}
.y12d{bottom:1062.930450px;}
.y58{bottom:1063.199919px;}
.y3{bottom:1066.169253px;}
.y11b{bottom:1067.340450px;}
.ybb{bottom:1067.699919px;}
.y126{bottom:1067.790837px;}
.y14a{bottom:1068.688857px;}
.y17f{bottom:1070.939280px;}
.y1b1{bottom:1076.248146px;}
.y57{bottom:1080.750450px;}
.y115{bottom:1081.290450px;}
.y12c{bottom:1082.280450px;}
.y17e{bottom:1085.069865px;}
.yba{bottom:1085.248857px;}
.y149{bottom:1086.239388px;}
.y1b0{bottom:1090.378731px;}
.y10c{bottom:1091.280450px;}
.y17d{bottom:1099.200450px;}
.yb9{bottom:1102.799388px;}
.y169{bottom:1103.789325px;}
.y148{bottom:1103.789919px;}
.y2{bottom:1104.150450px;}
.y56{bottom:1108.379901px;}
.y1af{bottom:1113.508362px;}
.y125{bottom:1114.680693px;}
.yb8{bottom:1120.349919px;}
.y122{bottom:1120.440117px;}
.y168{bottom:1121.339856px;}
.ye1{bottom:1121.339919px;}
.y124{bottom:1125.660504px;}
.y121{bottom:1126.200450px;}
.y1ae{bottom:1127.638947px;}
.y55{bottom:1132.950450px;}
.y123{bottom:1136.550324px;}
.yb6{bottom:1137.900393px;}
.yb7{bottom:1137.900450px;}
.y167{bottom:1138.890387px;}
.ye0{bottom:1138.890450px;}
.y1ad{bottom:1141.768335px;}
.y1{bottom:1189.740450px;}
.h25{height:19.620000px;}
.h2b{height:19.748496px;}
.h22{height:19.800000px;}
.h39{height:20.761348px;}
.h2a{height:22.421830px;}
.h31{height:24.642422px;}
.h36{height:25.246055px;}
.h2f{height:25.262549px;}
.h2d{height:25.263089px;}
.h2c{height:25.263593px;}
.h29{height:25.263809px;}
.h2e{height:25.264673px;}
.h34{height:25.264709px;}
.h17{height:26.151330px;}
.h1f{height:26.207658px;}
.h33{height:32.708375px;}
.h32{height:33.067475px;}
.h35{height:33.070103px;}
.h3c{height:33.244805px;}
.h1b{height:33.268184px;}
.h1{height:34.881328px;}
.h3d{height:34.915528px;}
.h1e{height:34.994531px;}
.h37{height:35.686055px;}
.h1c{height:37.503984px;}
.h5{height:41.743477px;}
.h4{height:41.772832px;}
.ha{height:41.774956px;}
.h3a{height:41.777332px;}
.h20{height:41.779204px;}
.hd{height:44.798832px;}
.h18{height:44.830078px;}
.hb{height:44.830337px;}
.h1a{height:44.861604px;}
.h12{height:44.895067px;}
.h10{height:44.926639px;}
.h30{height:45.520334px;}
.h28{height:50.772832px;}
.h38{height:54.014766px;}
.h21{height:54.016890px;}
.h6{height:54.021089px;}
.h3b{height:54.036006px;}
.h9{height:54.117906px;}
.h8{height:55.687324px;}
.h7{height:56.848359px;}
.h15{height:58.854281px;}
.he{height:59.763281px;}
.h27{height:59.799405px;}
.h16{height:59.804963px;}
.h13{height:59.891662px;}
.h24{height:60.022266px;}
.hc{height:60.998832px;}
.h11{height:61.095067px;}
.hf{height:63.161977px;}
.h26{height:63.199934px;}
.h19{height:63.206092px;}
.h14{height:63.297838px;}
.h23{height:63.435802px;}
.h3{height:66.364805px;}
.h1d{height:68.464056px;}
.h2{height:89.542266px;}
.h0{height:1263.000000px;}
.w5{width:8.820000px;}
.w3{width:8.910000px;}
.w4{width:10.260000px;}
.w2{width:10.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:63.810000px;}
.x4c{left:74.430135px;}
.x6d{left:79.560000px;}
.xc{left:85.140000px;}
.x8{left:95.670000px;}
.x6e{left:99.989199px;}
.xd{left:116.999721px;}
.x49{left:138.240108px;}
.x1f{left:139.590000px;}
.x3{left:142.380630px;}
.x20{left:146.250000px;}
.x66{left:165.600000px;}
.x5{left:175.590000px;}
.x27{left:179.008451px;}
.x2e{left:183.869314px;}
.x2c{left:187.469932px;}
.x32{left:189.270000px;}
.x2a{left:192.329911px;}
.x29{left:193.769610px;}
.x26{left:200.878366px;}
.x38{left:209.339109px;}
.x2{left:211.050000px;}
.x12{left:212.759602px;}
.x34{left:221.579681px;}
.x25{left:224.278481px;}
.x14{left:229.228434px;}
.x1b{left:230.850787px;}
.x48{left:235.080630px;}
.xe{left:240.750108px;}
.x16{left:242.639852px;}
.x37{left:253.350113px;}
.xf{left:259.920731px;}
.x17{left:261.809629px;}
.x4{left:271.260000px;}
.x13{left:272.518397px;}
.x1a{left:274.409939px;}
.x6{left:277.200315px;}
.x11{left:279.180128px;}
.x19{left:281.069816px;}
.x68{left:282.600000px;}
.x1d{left:293.400000px;}
.x4a{left:295.110000px;}
.x30{left:296.370027px;}
.x1e{left:300.060000px;}
.x4b{left:303.750000px;}
.x24{left:308.339403px;}
.x36{left:309.870000px;}
.x23{left:317.249429px;}
.x22{left:323.909350px;}
.x31{left:325.800000px;}
.x35{left:327.870000px;}
.x2d{left:329.130000px;}
.x2b{left:332.550000px;}
.x10{left:334.890000px;}
.x18{left:336.780000px;}
.x28{left:339.660339px;}
.x21{left:346.320000px;}
.x15{left:350.190000px;}
.x1c{left:352.260000px;}
.x2f{left:355.500000px;}
.x33{left:394.830000px;}
.x65{left:405.450000px;}
.x47{left:422.640000px;}
.x7{left:435.870522px;}
.x69{left:439.740000px;}
.x67{left:444.330000px;}
.x9{left:448.559370px;}
.x57{left:457.200000px;}
.xb{left:459.179568px;}
.x4e{left:463.230000px;}
.x39{left:469.889253px;}
.xa{left:480.419964px;}
.x4f{left:485.100000px;}
.x4d{left:493.830000px;}
.x3f{left:501.750000px;}
.x50{left:513.000000px;}
.x64{left:522.990108px;}
.x6b{left:544.320108px;}
.x61{left:549.270000px;}
.x60{left:550.530000px;}
.x5d{left:574.470000px;}
.x5c{left:575.730000px;}
.x52{left:588.330000px;}
.x42{left:602.100000px;}
.x51{left:616.140000px;}
.x44{left:622.530000px;}
.x41{left:633.600000px;}
.x53{left:638.910000px;}
.x5e{left:651.960000px;}
.x5f{left:653.310000px;}
.x43{left:659.520000px;}
.x40{left:669.780000px;}
.x62{left:677.880000px;}
.x3a{left:682.380000px;}
.x3b{left:689.040000px;}
.x45{left:696.150000px;}
.x55{left:699.209847px;}
.x54{left:700.650000px;}
.x56{left:701.729730px;}
.x58{left:747.359163px;}
.x59{left:751.679640px;}
.x5b{left:753.479850px;}
.x5a{left:756.990018px;}
.x3e{left:761.219850px;}
.x46{left:764.639850px;}
.x3c{left:773.819850px;}
.x3d{left:780.479850px;}
.x63{left:807.839850px;}
.x6c{left:825.930000px;}
.x6a{left:828.089850px;}
@media print{
.v8{vertical-align:-30.080000pt;}
.v11{vertical-align:-18.560000pt;}
.v7{vertical-align:-16.960533pt;}
.v3{vertical-align:-7.998112pt;}
.v4{vertical-align:-6.715456pt;}
.vd{vertical-align:-4.480192pt;}
.vc{vertical-align:-3.520000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.920672pt;}
.v10{vertical-align:4.480000pt;}
.v9{vertical-align:6.400533pt;}
.va{vertical-align:8.000000pt;}
.vf{vertical-align:9.280000pt;}
.v5{vertical-align:14.400000pt;}
.ve{vertical-align:18.558144pt;}
.v2{vertical-align:24.022496pt;}
.v6{vertical-align:27.520064pt;}
.v1{vertical-align:29.440000pt;}
.ls1c{letter-spacing:-0.939520pt;}
.ls6d{letter-spacing:-0.321024pt;}
.ls42{letter-spacing:-0.128256pt;}
.ls6a{letter-spacing:-0.113120pt;}
.ls8b{letter-spacing:-0.080864pt;}
.ls69{letter-spacing:-0.080800pt;}
.ls1f{letter-spacing:-0.080160pt;}
.ls24{letter-spacing:-0.074816pt;}
.ls2a{letter-spacing:-0.069472pt;}
.ls29{letter-spacing:-0.064128pt;}
.ls26{letter-spacing:-0.058784pt;}
.ls21{letter-spacing:-0.053440pt;}
.ls8a{letter-spacing:-0.052192pt;}
.ls45{letter-spacing:-0.048096pt;}
.ls93{letter-spacing:-0.046816pt;}
.ls27{letter-spacing:-0.042752pt;}
.ls8e{letter-spacing:-0.038304pt;}
.ls22{letter-spacing:-0.037408pt;}
.ls8f{letter-spacing:-0.034048pt;}
.ls25{letter-spacing:-0.032064pt;}
.ls1d{letter-spacing:-0.032000pt;}
.ls90{letter-spacing:-0.029792pt;}
.ls2c{letter-spacing:-0.026720pt;}
.ls8c{letter-spacing:-0.025536pt;}
.ls65{letter-spacing:-0.021376pt;}
.ls75{letter-spacing:-0.020736pt;}
.ls6b{letter-spacing:-0.019392pt;}
.ls91{letter-spacing:-0.017024pt;}
.ls68{letter-spacing:-0.016160pt;}
.ls2b{letter-spacing:-0.016032pt;}
.ls8d{letter-spacing:-0.012768pt;}
.ls6e{letter-spacing:-0.010688pt;}
.ls20{letter-spacing:-0.010368pt;}
.ls92{letter-spacing:-0.008512pt;}
.ls28{letter-spacing:-0.005344pt;}
.ls1b{letter-spacing:-0.004256pt;}
.ls40{letter-spacing:-0.003456pt;}
.ls1e{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.005344pt;}
.ls73{letter-spacing:0.006912pt;}
.ls0{letter-spacing:0.008512pt;}
.ls55{letter-spacing:0.009696pt;}
.ls7c{letter-spacing:0.010368pt;}
.lsc{letter-spacing:0.010688pt;}
.ls48{letter-spacing:0.012768pt;}
.ls59{letter-spacing:0.012928pt;}
.ls2d{letter-spacing:0.013824pt;}
.ls7{letter-spacing:0.016032pt;}
.ls78{letter-spacing:0.017024pt;}
.ls44{letter-spacing:0.017920pt;}
.ls7a{letter-spacing:0.021280pt;}
.ls5{letter-spacing:0.021376pt;}
.ls63{letter-spacing:0.025536pt;}
.ls16{letter-spacing:0.026720pt;}
.ls79{letter-spacing:0.029792pt;}
.ls1{letter-spacing:0.032064pt;}
.ls74{letter-spacing:0.034048pt;}
.ls6f{letter-spacing:0.037280pt;}
.ls4{letter-spacing:0.037408pt;}
.ls37{letter-spacing:0.038304pt;}
.ls87{letter-spacing:0.042560pt;}
.ls15{letter-spacing:0.042752pt;}
.ls70{letter-spacing:0.043968pt;}
.lsd{letter-spacing:0.044736pt;}
.ls51{letter-spacing:0.045248pt;}
.ls71{letter-spacing:0.045824pt;}
.ls72{letter-spacing:0.046816pt;}
.ls17{letter-spacing:0.048096pt;}
.ls7f{letter-spacing:0.051072pt;}
.ls53{letter-spacing:0.051712pt;}
.ls4a{letter-spacing:0.052192pt;}
.ls8{letter-spacing:0.053440pt;}
.ls46{letter-spacing:0.055328pt;}
.ls52{letter-spacing:0.058176pt;}
.lsb{letter-spacing:0.058784pt;}
.ls89{letter-spacing:0.059584pt;}
.ls66{letter-spacing:0.061408pt;}
.ls84{letter-spacing:0.063840pt;}
.ls3{letter-spacing:0.064128pt;}
.ls67{letter-spacing:0.064640pt;}
.ls34{letter-spacing:0.068096pt;}
.ls9{letter-spacing:0.069472pt;}
.ls88{letter-spacing:0.072352pt;}
.ls2e{letter-spacing:0.074560pt;}
.ls11{letter-spacing:0.074816pt;}
.ls3c{letter-spacing:0.076608pt;}
.ls2{letter-spacing:0.080160pt;}
.ls83{letter-spacing:0.080864pt;}
.ls7b{letter-spacing:0.082016pt;}
.ls54{letter-spacing:0.084032pt;}
.ls3e{letter-spacing:0.085120pt;}
.ls6{letter-spacing:0.085504pt;}
.ls6c{letter-spacing:0.087264pt;}
.ls5a{letter-spacing:0.088928pt;}
.ls5f{letter-spacing:0.088960pt;}
.ls47{letter-spacing:0.089376pt;}
.ls10{letter-spacing:0.090848pt;}
.ls57{letter-spacing:0.092160pt;}
.ls60{letter-spacing:0.092480pt;}
.ls38{letter-spacing:0.093632pt;}
.ls13{letter-spacing:0.096192pt;}
.ls49{letter-spacing:0.097888pt;}
.ls14{letter-spacing:0.101536pt;}
.ls64{letter-spacing:0.102144pt;}
.ls18{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.111840pt;}
.ls30{letter-spacing:0.112224pt;}
.ls77{letter-spacing:0.114208pt;}
.ls19{letter-spacing:0.117568pt;}
.ls33{letter-spacing:0.122912pt;}
.ls4d{letter-spacing:0.126048pt;}
.ls12{letter-spacing:0.128256pt;}
.ls50{letter-spacing:0.128320pt;}
.ls4f{letter-spacing:0.129056pt;}
.ls3b{letter-spacing:0.133600pt;}
.ls4c{letter-spacing:0.140160pt;}
.ls85{letter-spacing:0.144704pt;}
.ls81{letter-spacing:0.148960pt;}
.ls80{letter-spacing:0.153216pt;}
.ls23{letter-spacing:0.156576pt;}
.ls82{letter-spacing:0.157472pt;}
.ls32{letter-spacing:0.160320pt;}
.ls43{letter-spacing:0.161728pt;}
.ls86{letter-spacing:0.178752pt;}
.ls7d{letter-spacing:0.195776pt;}
.ls5c{letter-spacing:0.202432pt;}
.ls5b{letter-spacing:0.203093pt;}
.ls58{letter-spacing:0.203488pt;}
.ls5d{letter-spacing:0.203872pt;}
.ls4e{letter-spacing:0.268256pt;}
.ls56{letter-spacing:0.271488pt;}
.ls5e{letter-spacing:0.332896pt;}
.ls41{letter-spacing:1.357376pt;}
.ls7e{letter-spacing:10.886848pt;}
.ls76{letter-spacing:28.400288pt;}
.ls1a{letter-spacing:36.344544pt;}
.lse{letter-spacing:36.549312pt;}
.ls35{letter-spacing:40.479296pt;}
.ls4b{letter-spacing:203.192064pt;}
.ls61{letter-spacing:245.440000pt;}
.ls62{letter-spacing:426.880000pt;}
.ls3a{letter-spacing:444.655254pt;}
.ls36{letter-spacing:671.348160pt;}
.ls3f{letter-spacing:761.362112pt;}
.ls3d{letter-spacing:762.322112pt;}
.ls39{letter-spacing:873.042112pt;}
.ls2f{letter-spacing:898.001056pt;}
.ls31{letter-spacing:905.038368pt;}
.wsef{word-spacing:-53.440000pt;}
.ws6d{word-spacing:-33.299782pt;}
.wsad{word-spacing:-32.320000pt;}
.ws68{word-spacing:-31.553592pt;}
.ws6e{word-spacing:-31.507915pt;}
.ws64{word-spacing:-31.485955pt;}
.wsab{word-spacing:-25.920000pt;}
.ws2{word-spacing:-18.796576pt;}
.ws65{word-spacing:-14.368667pt;}
.ws6a{word-spacing:-14.347867pt;}
.ws61{word-spacing:-14.337867pt;}
.ws0{word-spacing:-13.424128pt;}
.ws5e{word-spacing:-13.360000pt;}
.ws69{word-spacing:-13.231744pt;}
.ws126{word-spacing:-10.835776pt;}
.ws129{word-spacing:-10.818752pt;}
.ws127{word-spacing:-10.733632pt;}
.ws12a{word-spacing:-10.725120pt;}
.ws12b{word-spacing:-10.678304pt;}
.ws128{word-spacing:-10.669792pt;}
.ws3{word-spacing:-8.653824pt;}
.wsf2{word-spacing:-8.650368pt;}
.wsf1{word-spacing:-8.646912pt;}
.ws5f{word-spacing:-8.640000pt;}
.ws60{word-spacing:-8.636544pt;}
.ws1{word-spacing:-8.629632pt;}
.ws70{word-spacing:-8.400000pt;}
.ws72{word-spacing:-8.368667pt;}
.wsaf{word-spacing:-8.348256pt;}
.wsb1{word-spacing:-8.138176pt;}
.wsac{word-spacing:-8.092928pt;}
.wsb3{word-spacing:-8.080000pt;}
.wsb4{word-spacing:-8.060608pt;}
.wsb0{word-spacing:-7.999200pt;}
.wsb2{word-spacing:-7.966880pt;}
.wsf0{word-spacing:-6.754208pt;}
.wsae{word-spacing:-5.280000pt;}
.wsb5{word-spacing:-4.958976pt;}
.ws8d{word-spacing:-0.242592pt;}
.ws139{word-spacing:-0.238336pt;}
.ws15c{word-spacing:-0.234080pt;}
.ws156{word-spacing:-0.178752pt;}
.ws90{word-spacing:-0.174496pt;}
.wsa1{word-spacing:-0.165984pt;}
.wsdc{word-spacing:-0.164832pt;}
.ws172{word-spacing:-0.161728pt;}
.ws9b{word-spacing:-0.157472pt;}
.ws73{word-spacing:-0.156576pt;}
.ws160{word-spacing:-0.153216pt;}
.ws8e{word-spacing:-0.148960pt;}
.ws101{word-spacing:-0.136192pt;}
.wsbf{word-spacing:-0.134208pt;}
.ws10d{word-spacing:-0.127680pt;}
.wsda{word-spacing:-0.126048pt;}
.wsea{word-spacing:-0.119296pt;}
.ws8f{word-spacing:-0.119168pt;}
.ws115{word-spacing:-0.114912pt;}
.ws10e{word-spacing:-0.110656pt;}
.wsdd{word-spacing:-0.106400pt;}
.ws116{word-spacing:-0.102144pt;}
.ws100{word-spacing:-0.097888pt;}
.ws74{word-spacing:-0.082016pt;}
.ws8b{word-spacing:-0.080160pt;}
.ws50{word-spacing:-0.048096pt;}
.ws8c{word-spacing:-0.042752pt;}
.ws7d{word-spacing:-0.037408pt;}
.ws7c{word-spacing:-0.032064pt;}
.wsf5{word-spacing:-0.021376pt;}
.ws87{word-spacing:-0.016032pt;}
.ws77{word-spacing:-0.010688pt;}
.ws9{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.005344pt;}
.ws4{word-spacing:0.008512pt;}
.ws4b{word-spacing:0.010688pt;}
.ws7b{word-spacing:0.016032pt;}
.ws5{word-spacing:0.021280pt;}
.ws125{word-spacing:0.021376pt;}
.wsf4{word-spacing:0.026720pt;}
.ws8{word-spacing:0.032000pt;}
.ws3d{word-spacing:0.032064pt;}
.wse9{word-spacing:0.037408pt;}
.wsb{word-spacing:0.042752pt;}
.wsa{word-spacing:0.048096pt;}
.ws6{word-spacing:0.058720pt;}
.ws7{word-spacing:0.070464pt;}
.ws183{word-spacing:0.080160pt;}
.wsc2{word-spacing:0.085504pt;}
.wsd9{word-spacing:0.101536pt;}
.wscf{word-spacing:0.122912pt;}
.ws1b{word-spacing:0.133600pt;}
.ws179{word-spacing:0.157472pt;}
.ws17a{word-spacing:0.165984pt;}
.wsdb{word-spacing:0.187456pt;}
.ws124{word-spacing:0.368736pt;}
.wseb{word-spacing:0.379424pt;}
.wsec{word-spacing:0.390112pt;}
.ws123{word-spacing:0.395456pt;}
.wsd0{word-spacing:0.427520pt;}
.wse4{word-spacing:0.443552pt;}
.wse2{word-spacing:0.448896pt;}
.ws113{word-spacing:0.635936pt;}
.ws111{word-spacing:0.641280pt;}
.wsc5{word-spacing:0.646624pt;}
.ws165{word-spacing:0.727776pt;}
.ws18f{word-spacing:0.742816pt;}
.ws58{word-spacing:0.748160pt;}
.ws164{word-spacing:0.821408pt;}
.ws85{word-spacing:0.935200pt;}
.wsa3{word-spacing:0.951232pt;}
.ws89{word-spacing:0.967264pt;}
.ws12{word-spacing:1.020704pt;}
.ws11{word-spacing:1.026048pt;}
.ws12f{word-spacing:1.046976pt;}
.wsf8{word-spacing:1.266528pt;}
.ws79{word-spacing:1.271872pt;}
.wsa2{word-spacing:1.287904pt;}
.ws78{word-spacing:1.330656pt;}
.ws84{word-spacing:1.336000pt;}
.ws12e{word-spacing:1.421504pt;}
.ws192{word-spacing:1.656640pt;}
.wsf{word-spacing:1.661984pt;}
.ws110{word-spacing:1.683360pt;}
.wsa9{word-spacing:1.742144pt;}
.ws13f{word-spacing:1.766240pt;}
.ws10f{word-spacing:1.950560pt;}
.ws180{word-spacing:1.971936pt;}
.ws10b{word-spacing:2.068128pt;}
.wsb9{word-spacing:2.072672pt;}
.ws138{word-spacing:2.106720pt;}
.ws13e{word-spacing:2.119488pt;}
.ws10a{word-spacing:2.217760pt;}
.wsce{word-spacing:2.239136pt;}
.wsd8{word-spacing:2.244480pt;}
.ws3b{word-spacing:2.249824pt;}
.ws59{word-spacing:2.255168pt;}
.ws98{word-spacing:2.372736pt;}
.ws137{word-spacing:2.379104pt;}
.ws3c{word-spacing:2.394112pt;}
.wsb8{word-spacing:2.425920pt;}
.ws105{word-spacing:2.559776pt;}
.ws189{word-spacing:2.575808pt;}
.wsbc{word-spacing:2.629248pt;}
.ws5b{word-spacing:2.634592pt;}
.ws88{word-spacing:2.682688pt;}
.wsa4{word-spacing:2.853696pt;}
.ws106{word-spacing:2.901792pt;}
.ws13{word-spacing:2.907136pt;}
.ws5a{word-spacing:2.939200pt;}
.ws17{word-spacing:2.955232pt;}
.ws12d{word-spacing:3.068576pt;}
.ws149{word-spacing:3.094112pt;}
.ws161{word-spacing:3.098368pt;}
.ws157{word-spacing:3.102624pt;}
.ws9f{word-spacing:3.217088pt;}
.ws33{word-spacing:3.222432pt;}
.ws12c{word-spacing:3.362240pt;}
.ws91{word-spacing:3.494976pt;}
.wsd3{word-spacing:3.505664pt;}
.ws18d{word-spacing:3.521696pt;}
.wsd2{word-spacing:3.537728pt;}
.wsd{word-spacing:3.564448pt;}
.ws4d{word-spacing:3.575136pt;}
.wse{word-spacing:3.580480pt;}
.ws75{word-spacing:3.660640pt;}
.ws148{word-spacing:3.664416pt;}
.ws147{word-spacing:4.000640pt;}
.ws168{word-spacing:4.004896pt;}
.wsff{word-spacing:4.152288pt;}
.ws133{word-spacing:4.251744pt;}
.wsd6{word-spacing:4.264512pt;}
.ws132{word-spacing:4.307072pt;}
.ws167{word-spacing:4.349632pt;}
.ws166{word-spacing:4.434752pt;}
.ws51{word-spacing:4.462240pt;}
.wsd5{word-spacing:4.488960pt;}
.wsd1{word-spacing:4.494304pt;}
.ws16a{word-spacing:4.647552pt;}
.ws174{word-spacing:4.673088pt;}
.ws169{word-spacing:4.749696pt;}
.wsd4{word-spacing:4.788224pt;}
.wse8{word-spacing:4.841664pt;}
.ws188{word-spacing:4.905792pt;}
.ws173{word-spacing:5.039104pt;}
.wsa7{word-spacing:5.140928pt;}
.ws187{word-spacing:5.156960pt;}
.wse7{word-spacing:5.178336pt;}
.wse5{word-spacing:5.226432pt;}
.ws36{word-spacing:5.258496pt;}
.wsc{word-spacing:5.279872pt;}
.ws5c{word-spacing:5.418816pt;}
.wsa6{word-spacing:5.434848pt;}
.ws3a{word-spacing:5.493632pt;}
.ws195{word-spacing:5.498976pt;}
.ws194{word-spacing:5.504320pt;}
.ws7f{word-spacing:5.589824pt;}
.ws119{word-spacing:5.739456pt;}
.ws7e{word-spacing:5.787552pt;}
.ws39{word-spacing:5.808928pt;}
.ws141{word-spacing:5.852000pt;}
.ws83{word-spacing:5.867712pt;}
.wsf9{word-spacing:5.883744pt;}
.ws140{word-spacing:5.937120pt;}
.ws152{word-spacing:6.000960pt;}
.ws150{word-spacing:6.039264pt;}
.ws80{word-spacing:6.081472pt;}
.ws11b{word-spacing:6.097504pt;}
.ws24{word-spacing:6.124224pt;}
.ws112{word-spacing:6.129568pt;}
.ws82{word-spacing:6.134912pt;}
.ws1a{word-spacing:6.150944pt;}
.ws109{word-spacing:6.188352pt;}
.ws81{word-spacing:6.220416pt;}
.ws151{word-spacing:6.286112pt;}
.ws22{word-spacing:6.391424pt;}
.ws54{word-spacing:6.396768pt;}
.wsa8{word-spacing:6.402112pt;}
.ws23{word-spacing:6.428832pt;}
.ws11a{word-spacing:6.455552pt;}
.ws19{word-spacing:6.466240pt;}
.wscd{word-spacing:6.471584pt;}
.wsca{word-spacing:6.476928pt;}
.ws177{word-spacing:6.477632pt;}
.ws197{word-spacing:6.514336pt;}
.ws18c{word-spacing:6.706720pt;}
.wse3{word-spacing:6.808256pt;}
.ws176{word-spacing:6.924512pt;}
.ws175{word-spacing:6.928768pt;}
.ws28{word-spacing:7.032704pt;}
.ws18a{word-spacing:7.048736pt;}
.ws14c{word-spacing:7.137312pt;}
.wsdf{word-spacing:7.192640pt;}
.wsde{word-spacing:7.196896pt;}
.ws13a{word-spacing:7.230944pt;}
.ws9c{word-spacing:7.353344pt;}
.ws15{word-spacing:7.358688pt;}
.ws30{word-spacing:7.369376pt;}
.ws193{word-spacing:7.428160pt;}
.ws42{word-spacing:7.438848pt;}
.ws14b{word-spacing:7.524608pt;}
.ws14a{word-spacing:7.571424pt;}
.ws44{word-spacing:7.641920pt;}
.wsd7{word-spacing:7.647264pt;}
.ws1c{word-spacing:7.679328pt;}
.ws18e{word-spacing:7.690016pt;}
.ws2e{word-spacing:7.716736pt;}
.ws2f{word-spacing:7.727424pt;}
.ws41{word-spacing:7.743456pt;}
.wse1{word-spacing:7.818272pt;}
.ws134{word-spacing:7.865088pt;}
.ws43{word-spacing:7.978592pt;}
.wse6{word-spacing:7.994624pt;}
.ws8a{word-spacing:7.999968pt;}
.ws21{word-spacing:8.112192pt;}
.wse0{word-spacing:8.154496pt;}
.ws13d{word-spacing:8.192800pt;}
.ws31{word-spacing:8.320608pt;}
.ws32{word-spacing:8.400768pt;}
.ws17d{word-spacing:8.405600pt;}
.wsbb{word-spacing:8.520512pt;}
.ws9e{word-spacing:8.625216pt;}
.ws56{word-spacing:8.635904pt;}
.ws14{word-spacing:8.641248pt;}
.ws103{word-spacing:8.646592pt;}
.wsfb{word-spacing:8.684000pt;}
.ws186{word-spacing:8.694688pt;}
.wsfa{word-spacing:8.700032pt;}
.ws155{word-spacing:8.797152pt;}
.ws17c{word-spacing:8.848224pt;}
.wsba{word-spacing:8.865248pt;}
.ws97{word-spacing:8.929824pt;}
.ws96{word-spacing:8.935168pt;}
.ws49{word-spacing:9.031360pt;}
.wsed{word-spacing:9.090144pt;}
.ws4a{word-spacing:9.106176pt;}
.ws154{word-spacing:9.158912pt;}
.ws131{word-spacing:9.180192pt;}
.wsc7{word-spacing:9.266496pt;}
.ws7a{word-spacing:9.282528pt;}
.ws95{word-spacing:9.389408pt;}
.ws130{word-spacing:9.473856pt;}
.wsc1{word-spacing:9.581792pt;}
.ws10{word-spacing:9.592480pt;}
.ws18b{word-spacing:9.597824pt;}
.ws47{word-spacing:9.619200pt;}
.ws55{word-spacing:9.629888pt;}
.ws182{word-spacing:9.635232pt;}
.ws94{word-spacing:9.865024pt;}
.wsc4{word-spacing:9.913120pt;}
.ws76{word-spacing:9.929152pt;}
.ws9d{word-spacing:9.934496pt;}
.ws15b{word-spacing:9.997344pt;}
.ws15a{word-spacing:10.103744pt;}
.ws93{word-spacing:10.324608pt;}
.ws16c{word-spacing:10.397408pt;}
.ws35{word-spacing:10.554400pt;}
.ws40{word-spacing:10.581120pt;}
.ws3f{word-spacing:10.618528pt;}
.ws16b{word-spacing:10.767680pt;}
.ws196{word-spacing:10.960544pt;}
.wsaa{word-spacing:11.008640pt;}
.ws144{word-spacing:11.027296pt;}
.ws114{word-spacing:11.044320pt;}
.ws10c{word-spacing:11.168960pt;}
.ws2c{word-spacing:11.184992pt;}
.wsfc{word-spacing:11.206368pt;}
.wsf7{word-spacing:11.233088pt;}
.wsf6{word-spacing:11.270496pt;}
.ws29{word-spacing:11.323936pt;}
.ws14f{word-spacing:11.342240pt;}
.ws143{word-spacing:11.376288pt;}
.ws26{word-spacing:11.527008pt;}
.ws136{word-spacing:11.665696pt;}
.ws14e{word-spacing:11.691232pt;}
.ws191{word-spacing:11.858336pt;}
.ws102{word-spacing:11.954528pt;}
.ws135{word-spacing:12.044480pt;}
.ws17b{word-spacing:12.448800pt;}
.wsbd{word-spacing:12.456864pt;}
.ws190{word-spacing:12.494272pt;}
.ws48{word-spacing:12.499616pt;}
.ws52{word-spacing:12.574432pt;}
.ws16f{word-spacing:12.657344pt;}
.ws92{word-spacing:12.766816pt;}
.ws18{word-spacing:12.820256pt;}
.ws34{word-spacing:12.825600pt;}
.wsbe{word-spacing:12.937824pt;}
.ws16e{word-spacing:13.002080pt;}
.ws178{word-spacing:13.048896pt;}
.ws3e{word-spacing:13.092800pt;}
.ws13c{word-spacing:13.265952pt;}
.ws13b{word-spacing:13.278720pt;}
.ws153{word-spacing:13.372352pt;}
.wsc9{word-spacing:13.456192pt;}
.ws107{word-spacing:13.477568pt;}
.ws108{word-spacing:13.541696pt;}
.ws163{word-spacing:13.627712pt;}
.ws162{word-spacing:13.640480pt;}
.ws121{word-spacing:13.814240pt;}
.ws120{word-spacing:14.070752pt;}
.wsc3{word-spacing:14.097472pt;}
.ws117{word-spacing:14.380704pt;}
.wscc{word-spacing:14.418112pt;}
.ws38{word-spacing:14.455520pt;}
.ws53{word-spacing:14.562400pt;}
.ws14d{word-spacing:14.653408pt;}
.wsee{word-spacing:14.722720pt;}
.wsb7{word-spacing:14.765472pt;}
.wscb{word-spacing:14.770816pt;}
.ws1e{word-spacing:14.792192pt;}
.ws15d{word-spacing:14.993888pt;}
.ws99{word-spacing:15.038016pt;}
.ws9a{word-spacing:15.091456pt;}
.wsb6{word-spacing:15.107488pt;}
.ws46{word-spacing:15.123520pt;}
.ws171{word-spacing:15.189664pt;}
.ws142{word-spacing:15.304576pt;}
.wsa0{word-spacing:15.331936pt;}
.ws86{word-spacing:15.358656pt;}
.ws45{word-spacing:15.433472pt;}
.ws170{word-spacing:15.542912pt;}
.ws2a{word-spacing:15.673952pt;}
.ws118{word-spacing:15.796864pt;}
.ws25{word-spacing:16.138880pt;}
.ws2d{word-spacing:16.940480pt;}
.ws4e{word-spacing:16.951168pt;}
.wsc6{word-spacing:17.266464pt;}
.ws17f{word-spacing:17.314560pt;}
.ws57{word-spacing:17.362656pt;}
.ws17e{word-spacing:17.619168pt;}
.ws104{word-spacing:18.276480pt;}
.ws1f{word-spacing:18.394048pt;}
.ws20{word-spacing:18.639872pt;}
.ws2b{word-spacing:18.885696pt;}
.ws4c{word-spacing:19.029984pt;}
.ws15e{word-spacing:19.037088pt;}
.ws15f{word-spacing:19.147744pt;}
.ws145{word-spacing:20.062784pt;}
.wsfe{word-spacing:20.483552pt;}
.wsf3{word-spacing:20.862976pt;}
.wsfd{word-spacing:20.895040pt;}
.ws4f{word-spacing:21.771456pt;}
.ws11f{word-spacing:22.086752pt;}
.ws16{word-spacing:22.092096pt;}
.wsa5{word-spacing:22.396704pt;}
.wsc8{word-spacing:22.524960pt;}
.ws37{word-spacing:23.037984pt;}
.ws11c{word-spacing:24.400704pt;}
.wsc0{word-spacing:24.999232pt;}
.ws181{word-spacing:25.052672pt;}
.ws185{word-spacing:27.521600pt;}
.ws184{word-spacing:27.858272pt;}
.ws27{word-spacing:30.193600pt;}
.ws146{word-spacing:31.856160pt;}
.ws1d{word-spacing:34.035936pt;}
.ws11e{word-spacing:34.265728pt;}
.ws11d{word-spacing:34.276416pt;}
.ws16d{word-spacing:41.857760pt;}
.ws158{word-spacing:44.330496pt;}
.ws159{word-spacing:44.373056pt;}
.ws122{word-spacing:45.920992pt;}
.ws6b{word-spacing:76.613614pt;}
.ws71{word-spacing:77.293005pt;}
.ws6f{word-spacing:77.841120pt;}
.ws6c{word-spacing:191.499245pt;}
.ws63{word-spacing:420.059347pt;}
.ws67{word-spacing:433.709582pt;}
.ws62{word-spacing:460.987385pt;}
.ws66{word-spacing:470.534629pt;}
._1c{margin-left:-327.526469pt;}
._f{margin-left:-317.279095pt;}
._9{margin-left:-313.686837pt;}
._19{margin-left:-248.229572pt;}
._7{margin-left:-205.020023pt;}
._1d{margin-left:-169.204136pt;}
._11{margin-left:-155.434489pt;}
._1b{margin-left:-153.445157pt;}
._c{margin-left:-148.964700pt;}
._1a{margin-left:-147.644905pt;}
._12{margin-left:-146.112098pt;}
._b{margin-left:-140.643002pt;}
._1f{margin-left:-137.803692pt;}
._21{margin-left:-136.653914pt;}
._10{margin-left:-134.203744pt;}
._a{margin-left:-128.085558pt;}
._8{margin-left:-126.168590pt;}
._15{margin-left:-111.574750pt;}
._16{margin-left:-110.294921pt;}
._d{margin-left:-92.737322pt;}
._29{margin-left:-20.622496pt;}
._2a{margin-left:-18.169600pt;}
._14{margin-left:-15.568576pt;}
._28{margin-left:-8.641248pt;}
._3{margin-left:-5.760832pt;}
._5{margin-left:-4.466144pt;}
._2d{margin-left:-3.201056pt;}
._6{margin-left:-1.888832pt;}
._1{margin-left:-0.906528pt;}
._2{width:0.892448pt;}
._2c{width:6.154176pt;}
._26{width:14.198016pt;}
._27{width:15.491680pt;}
._2b{width:16.394112pt;}
._23{width:25.033792pt;}
._18{width:27.595904pt;}
._25{width:160.940672pt;}
._24{width:174.253280pt;}
._e{width:218.879552pt;}
._13{width:224.961024pt;}
._17{width:226.879520pt;}
._1e{width:270.401056pt;}
._20{width:370.237664pt;}
._22{width:372.161504pt;}
._0{width:955.518816pt;}
._4{width:1443.686272pt;}
.fs1b{font-size:16.960000pt;}
.fs1c{font-size:21.120000pt;}
.fs1a{font-size:25.920000pt;}
.fs1d{font-size:26.560000pt;}
.fs19{font-size:32.320000pt;}
.fs7{font-size:33.454933pt;}
.fs16{font-size:33.474667pt;}
.fse{font-size:33.478933pt;}
.fsa{font-size:33.527467pt;}
.fs13{font-size:33.600000pt;}
.fs4{font-size:34.560000pt;}
.fs12{font-size:34.880000pt;}
.fs0{font-size:42.560000pt;}
.fs11{font-size:44.800000pt;}
.fs10{font-size:45.760000pt;}
.fs3{font-size:53.440000pt;}
.fsc{font-size:56.479151pt;}
.fs6{font-size:57.351467pt;}
.fs18{font-size:57.386133pt;}
.fsd{font-size:57.391467pt;}
.fs9{font-size:57.474667pt;}
.fs15{font-size:57.600000pt;}
.fs8{font-size:60.613005pt;}
.fs17{font-size:60.649430pt;}
.fsf{font-size:60.655340pt;}
.fsb{font-size:60.743383pt;}
.fs14{font-size:60.875779pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:3.120400pt;}
.yc3{bottom:3.200400pt;}
.y166{bottom:114.346595pt;}
.y147{bottom:114.425651pt;}
.y17c{bottom:115.146123pt;}
.y10b{bottom:115.859547pt;}
.ydf{bottom:119.621907pt;}
.yb2{bottom:124.427470pt;}
.y165{bottom:129.947067pt;}
.y146{bottom:130.026123pt;}
.y17b{bottom:130.746595pt;}
.y10a{bottom:131.460019pt;}
.yb4{bottom:131.947067pt;}
.yde{bottom:135.222379pt;}
.yb5{bottom:135.547067pt;}
.y2b{bottom:136.819208pt;}
.y54{bottom:136.906256pt;}
.yb1{bottom:137.145931pt;}
.yb3{bottom:144.426961pt;}
.y145{bottom:145.626595pt;}
.y17a{bottom:146.342347pt;}
.y109{bottom:147.060491pt;}
.ydd{bottom:150.822851pt;}
.y2a{bottom:152.419680pt;}
.y53{bottom:152.506728pt;}
.y164{bottom:153.067200pt;}
.y144{bottom:161.227067pt;}
.y179{bottom:161.942819pt;}
.y108{bottom:162.660963pt;}
.ydc{bottom:166.423323pt;}
.y29{bottom:168.020152pt;}
.y52{bottom:168.084280pt;}
.yb0{bottom:169.306123pt;}
.y163{bottom:171.307067pt;}
.y178{bottom:177.543291pt;}
.y107{bottom:178.261435pt;}
.ydb{bottom:182.023795pt;}
.y28{bottom:183.620624pt;}
.y51{bottom:183.684752pt;}
.yaf{bottom:184.906595pt;}
.y143{bottom:185.787067pt;}
.y177{bottom:193.143763pt;}
.yda{bottom:197.624267pt;}
.y106{bottom:198.740979pt;}
.y27{bottom:199.221096pt;}
.y50{bottom:199.285224pt;}
.yae{bottom:200.507067pt;}
.y176{bottom:208.744235pt;}
.yd9{bottom:213.224739pt;}
.y105{bottom:214.341451pt;}
.y26{bottom:214.821568pt;}
.y4f{bottom:214.885696pt;}
.yad{bottom:223.627067pt;}
.y175{bottom:224.344707pt;}
.yd8{bottom:228.825211pt;}
.y104{bottom:229.941923pt;}
.y25{bottom:230.422040pt;}
.y4e{bottom:230.486168pt;}
.y142{bottom:238.663291pt;}
.y174{bottom:239.945179pt;}
.yac{bottom:241.867067pt;}
.y103{bottom:245.542395pt;}
.y24{bottom:246.022512pt;}
.y4d{bottom:246.086640pt;}
.yd7{bottom:252.425651pt;}
.y141{bottom:254.263763pt;}
.y173{bottom:255.545651pt;}
.y1da{bottom:259.616723pt;}
.y102{bottom:261.142867pt;}
.y23{bottom:261.622984pt;}
.y4c{bottom:261.687112pt;}
.yd6{bottom:268.026123pt;}
.y140{bottom:269.864235pt;}
.y172{bottom:271.146123pt;}
.y101{bottom:276.743339pt;}
.y4b{bottom:277.287584pt;}
.y1ac{bottom:282.745507pt;}
.y1d9{bottom:283.616627pt;}
.yd5{bottom:283.626595pt;}
.y22{bottom:285.223424pt;}
.y13f{bottom:285.464707pt;}
.y171{bottom:286.746595pt;}
.y4a{bottom:292.888056pt;}
.y1ab{bottom:295.306027pt;}
.y100{bottom:297.222883pt;}
.ya8{bottom:298.267067pt;}
.y1d8{bottom:299.217099pt;}
.yd4{bottom:299.227395pt;}
.ya9{bottom:299.627067pt;}
.y21{bottom:300.823896pt;}
.y13e{bottom:301.065179pt;}
.y170{bottom:302.347067pt;}
.y1aa{bottom:307.866547pt;}
.y49{bottom:308.488528pt;}
.yff{bottom:312.823355pt;}
.y1d7{bottom:314.817571pt;}
.y20{bottom:316.424368pt;}
.y13d{bottom:316.665651pt;}
.y1a9{bottom:320.419467pt;}
.yd0{bottom:323.866667pt;}
.y16f{bottom:326.907067pt;}
.yd2{bottom:326.987067pt;}
.yd3{bottom:327.787067pt;}
.ycf{bottom:327.787379pt;}
.y1d6{bottom:330.418043pt;}
.y1f{bottom:332.024840pt;}
.y48{bottom:332.088968pt;}
.y13c{bottom:332.266123pt;}
.yfe{bottom:336.423795pt;}
.y1a8{bottom:340.979139pt;}
.y1d5{bottom:346.018515pt;}
.y1e{bottom:347.625312pt;}
.y47{bottom:347.689440pt;}
.y13b{bottom:347.866595pt;}
.yfd{bottom:352.024267pt;}
.yce{bottom:352.347067pt;}
.yaa{bottom:352.507067pt;}
.ya4{bottom:352.907200pt;}
.y1a7{bottom:353.539659pt;}
.ya6{bottom:356.826544pt;}
.y1d4{bottom:361.618987pt;}
.y1d{bottom:363.225784pt;}
.y46{bottom:363.289912pt;}
.y13a{bottom:363.467067pt;}
.yab{bottom:364.187200pt;}
.y1a6{bottom:366.100179pt;}
.yfc{bottom:367.624739pt;}
.ycd{bottom:375.467067pt;}
.ya7{bottom:376.827200pt;}
.y1d3{bottom:377.219459pt;}
.y1c{bottom:378.826256pt;}
.y45{bottom:378.890384pt;}
.y16e{bottom:379.307067pt;}
.ya5{bottom:379.866704pt;}
.yfb{bottom:383.225211pt;}
.y139{bottom:386.586680pt;}
.y1a5{bottom:386.659851pt;}
.y1d2{bottom:392.819931pt;}
.ycc{bottom:393.707067pt;}
.y1b{bottom:394.426728pt;}
.y44{bottom:394.490856pt;}
.y16d{bottom:397.547067pt;}
.yfa{bottom:398.825683pt;}
.y138{bottom:399.147200pt;}
.y1a4{bottom:399.220371pt;}
.y1d1{bottom:408.420403pt;}
.y1a{bottom:410.027200pt;}
.y1a3{bottom:411.780891pt;}
.yf9{bottom:414.426155pt;}
.y43{bottom:414.970400pt;}
.y137{bottom:417.387067pt;}
.ya3{bottom:417.547067pt;}
.y1d0{bottom:424.020875pt;}
.y1a2{bottom:424.341411pt;}
.yf8{bottom:430.026627pt;}
.y42{bottom:430.570872pt;}
.y19{bottom:434.587067pt;}
.ya2{bottom:435.787067pt;}
.y1cf{bottom:439.621347pt;}
.y1a1{bottom:444.901083pt;}
.y162{bottom:448.346123pt;}
.y41{bottom:451.050416pt;}
.yf7{bottom:451.627067pt;}
.yf5{bottom:453.624675pt;}
.yf6{bottom:453.627067pt;}
.y1ce{bottom:455.221819pt;}
.y1a0{bottom:457.460539pt;}
.y161{bottom:463.946595pt;}
.y19f{bottom:470.021059pt;}
.yf4{bottom:470.104235pt;}
.y1cd{bottom:470.822291pt;}
.y40{bottom:471.529960pt;}
.y160{bottom:477.547067pt;}
.y15e{bottom:479.543763pt;}
.y15f{bottom:479.547067pt;}
.yf3{bottom:485.704707pt;}
.y1cc{bottom:486.422763pt;}
.y3f{bottom:487.130432pt;}
.y18{bottom:487.466123pt;}
.y19e{bottom:490.580731pt;}
.y15d{bottom:496.023323pt;}
.yf2{bottom:501.305179pt;}
.y1cb{bottom:502.023235pt;}
.y3e{bottom:502.730904pt;}
.y17{bottom:503.066595pt;}
.y19d{bottom:503.141251pt;}
.y19c{bottom:515.701771pt;}
.yf1{bottom:516.905651pt;}
.y1ca{bottom:517.623707pt;}
.y3d{bottom:518.331376pt;}
.y16{bottom:518.667067pt;}
.y15c{bottom:519.623763pt;}
.yf0{bottom:532.506123pt;}
.y1c9{bottom:533.224179pt;}
.y3c{bottom:533.931848pt;}
.y15b{bottom:535.224235pt;}
.y19b{bottom:536.261443pt;}
.y8f{bottom:539.223336pt;}
.y7b{bottom:539.226206pt;}
.y88{bottom:539.464380pt;}
.y82{bottom:539.465815pt;}
.y91{bottom:539.467067pt;}
.y9d{bottom:542.907067pt;}
.y9b{bottom:543.066701pt;}
.y95{bottom:543.067067pt;}
.y15{bottom:543.227067pt;}
.yef{bottom:548.106595pt;}
.y19a{bottom:548.821963pt;}
.y1c8{bottom:548.824651pt;}
.y3b{bottom:549.532320pt;}
.y15a{bottom:550.824707pt;}
.y84{bottom:551.386023pt;}
.y7e{bottom:551.387457pt;}
.y8b{bottom:551.624197pt;}
.y77{bottom:551.627067pt;}
.y92{bottom:560.987325pt;}
.y199{bottom:561.382483pt;}
.yee{bottom:563.707067pt;}
.y1c7{bottom:564.425123pt;}
.y9e{bottom:564.427432pt;}
.y97{bottom:564.585997pt;}
.y99{bottom:564.587067pt;}
.y3a{bottom:565.132792pt;}
.y85{bottom:565.145627pt;}
.y7f{bottom:565.147061pt;}
.y8c{bottom:565.304888pt;}
.y78{bottom:565.307758pt;}
.y159{bottom:566.425179pt;}
.y8a{bottom:575.384264pt;}
.y7d{bottom:575.387134pt;}
.y86{bottom:578.905231pt;}
.y80{bottom:578.906666pt;}
.y8d{bottom:579.064492pt;}
.y79{bottom:579.067362pt;}
.y76{bottom:580.103219pt;}
.ya1{bottom:580.107067pt;}
.y39{bottom:580.733264pt;}
.y198{bottom:581.942155pt;}
.y158{bottom:582.025651pt;}
.y93{bottom:582.507583pt;}
.y9f{bottom:585.947797pt;}
.y98{bottom:586.106362pt;}
.y9a{bottom:586.107432pt;}
.ycb{bottom:586.824739pt;}
.y1c6{bottom:588.264707pt;}
.yed{bottom:588.267067pt;}
.y87{bottom:592.664835pt;}
.y81{bottom:592.666270pt;}
.y8e{bottom:592.824096pt;}
.y7a{bottom:592.826966pt;}
.y197{bottom:594.502675pt;}
.y38{bottom:596.333736pt;}
.y157{bottom:597.626123pt;}
.yca{bottom:602.425211pt;}
.y1c5{bottom:603.865179pt;}
.y94{bottom:604.027842pt;}
.y14{bottom:604.106595pt;}
.y89{bottom:606.424439pt;}
.y83{bottom:606.425874pt;}
.y90{bottom:606.583700pt;}
.y7c{bottom:606.586570pt;}
.y196{bottom:607.063195pt;}
.ya0{bottom:607.468162pt;}
.y9c{bottom:607.626362pt;}
.y96{bottom:607.626728pt;}
.y156{bottom:613.226595pt;}
.y1c4{bottom:619.465651pt;}
.y13{bottom:619.701443pt;}
.y37{bottom:619.934176pt;}
.yc9{bottom:626.025651pt;}
.y195{bottom:627.622867pt;}
.y155{bottom:628.827067pt;}
.y75{bottom:634.263323pt;}
.y1c3{bottom:635.066123pt;}
.y12{bottom:635.301915pt;}
.y36{bottom:635.534648pt;}
.y194{bottom:640.182323pt;}
.yec{bottom:641.145651pt;}
.yc8{bottom:641.626123pt;}
.y74{bottom:649.863795pt;}
.y1c2{bottom:650.666595pt;}
.y11{bottom:650.902387pt;}
.y35{bottom:651.135120pt;}
.y154{bottom:651.947067pt;}
.y193{bottom:652.742843pt;}
.yeb{bottom:656.746123pt;}
.yc7{bottom:657.226595pt;}
.y192{bottom:665.303363pt;}
.y73{bottom:665.464267pt;}
.y1c1{bottom:666.267067pt;}
.y10{bottom:666.502859pt;}
.y34{bottom:666.735592pt;}
.y153{bottom:670.187067pt;}
.y16c{bottom:670.187611pt;}
.yea{bottom:672.346595pt;}
.yc6{bottom:672.827395pt;}
.y72{bottom:681.064739pt;}
.yf{bottom:682.103331pt;}
.y33{bottom:682.336064pt;}
.y16b{bottom:682.747067pt;}
.y191{bottom:685.863035pt;}
.ye9{bottom:687.947067pt;}
.y1c0{bottom:691.067067pt;}
.y136{bottom:696.106547pt;}
.yc2{bottom:697.386667pt;}
.ye{bottom:697.703803pt;}
.y32{bottom:697.936536pt;}
.y190{bottom:698.422491pt;}
.yc4{bottom:700.587067pt;}
.y16a{bottom:700.987200pt;}
.yc1{bottom:701.386747pt;}
.yc5{bottom:701.387067pt;}
.y71{bottom:704.665179pt;}
.y135{bottom:708.667067pt;}
.y18f{bottom:710.983011pt;}
.ye8{bottom:711.067091pt;}
.yd{bottom:713.304275pt;}
.y31{bottom:713.537008pt;}
.y70{bottom:720.265651pt;}
.ye7{bottom:723.627611pt;}
.yc0{bottom:726.026595pt;}
.y134{bottom:726.907067pt;}
.yc{bottom:728.904747pt;}
.y30{bottom:729.137480pt;}
.y18e{bottom:731.542683pt;}
.y6f{bottom:735.866123pt;}
.ye6{bottom:736.187067pt;}
.y111{bottom:738.747067pt;}
.ybf{bottom:741.627067pt;}
.y12b{bottom:743.786827pt;}
.y120{bottom:743.787347pt;}
.y18d{bottom:744.103203pt;}
.yb{bottom:744.505219pt;}
.y2f{bottom:744.737952pt;}
.y132{bottom:747.227067pt;}
.y1bf{bottom:748.822195pt;}
.y11a{bottom:749.787067pt;}
.y6e{bottom:751.466595pt;}
.y112{bottom:755.227067pt;}
.y18c{bottom:756.663723pt;}
.ye5{bottom:757.467331pt;}
.y151{bottom:759.547067pt;}
.ya{bottom:760.105691pt;}
.y2e{bottom:760.338424pt;}
.y1be{bottom:761.381651pt;}
.y11f{bottom:762.746875pt;}
.y152{bottom:764.187067pt;}
.y131{bottom:764.427067pt;}
.ybe{bottom:764.747067pt;}
.y12a{bottom:765.626867pt;}
.y119{bottom:766.747067pt;}
.y6d{bottom:767.067067pt;}
.y6c{bottom:767.067507pt;}
.y133{bottom:768.507067pt;}
.y18b{bottom:769.224243pt;}
.ye4{bottom:770.027067pt;}
.y1bd{bottom:773.942171pt;}
.y9{bottom:775.706163pt;}
.y2d{bottom:775.938896pt;}
.y150{bottom:777.787067pt;}
.y110{bottom:780.507067pt;}
.ybd{bottom:782.987200pt;}
.y6a{bottom:783.547003pt;}
.y6b{bottom:783.547067pt;}
.y18a{bottom:789.783915pt;}
.y8{bottom:791.306635pt;}
.y2c{bottom:791.539368pt;}
.y1bc{bottom:794.501843pt;}
.y189{bottom:802.344435pt;}
.y1bb{bottom:807.062363pt;}
.y7{bottom:807.146251pt;}
.y68{bottom:808.267067pt;}
.y64{bottom:808.267156pt;}
.y10f{bottom:808.427067pt;}
.y11d{bottom:810.907115pt;}
.y129{bottom:812.107067pt;}
.y188{bottom:814.904955pt;}
.y66{bottom:815.787067pt;}
.y130{bottom:816.107067pt;}
.y118{bottom:816.427067pt;}
.y67{bottom:819.387067pt;}
.y1ba{bottom:819.622883pt;}
.y69{bottom:820.987067pt;}
.y63{bottom:820.987675pt;}
.y65{bottom:828.266903pt;}
.y117{bottom:833.387067pt;}
.y11e{bottom:833.547227pt;}
.y187{bottom:835.464627pt;}
.y128{bottom:835.707211pt;}
.y6{bottom:838.746659pt;}
.y1b9{bottom:840.182555pt;}
.ye3{bottom:841.147331pt;}
.y10e{bottom:843.227067pt;}
.y186{bottom:848.025147pt;}
.y1b8{bottom:852.743075pt;}
.y5d{bottom:853.386909pt;}
.y61{bottom:853.387067pt;}
.ye2{bottom:853.707067pt;}
.y185{bottom:860.585667pt;}
.y5f{bottom:860.827067pt;}
.y60{bottom:864.427067pt;}
.y1b7{bottom:865.303595pt;}
.y5c{bottom:866.105931pt;}
.y62{bottom:866.107067pt;}
.y5{bottom:870.347067pt;}
.y114{bottom:871.307067pt;}
.y14f{bottom:871.943291pt;}
.y184{bottom:873.146187pt;}
.y5e{bottom:873.386800pt;}
.y12f{bottom:879.307067pt;}
.y11c{bottom:885.626915pt;}
.y127{bottom:885.627067pt;}
.y1b6{bottom:885.863267pt;}
.y14e{bottom:887.543763pt;}
.y183{bottom:893.705859pt;}
.y12e{bottom:896.587067pt;}
.y116{bottom:896.827067pt;}
.y5b{bottom:898.266123pt;}
.y1b5{bottom:898.423787pt;}
.y4{bottom:902.427067pt;}
.y14d{bottom:903.144235pt;}
.y182{bottom:906.266379pt;}
.y113{bottom:906.587067pt;}
.y1b4{bottom:910.984307pt;}
.y5a{bottom:913.866595pt;}
.y14c{bottom:918.744707pt;}
.y181{bottom:918.825835pt;}
.y1b3{bottom:923.544827pt;}
.y59{bottom:929.466595pt;}
.ybc{bottom:933.466595pt;}
.y14b{bottom:934.345179pt;}
.y10d{bottom:935.627067pt;}
.y180{bottom:939.385507pt;}
.y1b2{bottom:944.104499pt;}
.y12d{bottom:944.827067pt;}
.y58{bottom:945.066595pt;}
.y3{bottom:947.706003pt;}
.y11b{bottom:948.747067pt;}
.ybb{bottom:949.066595pt;}
.y126{bottom:949.147411pt;}
.y14a{bottom:949.945651pt;}
.y17f{bottom:951.946027pt;}
.y1b1{bottom:956.665019pt;}
.y57{bottom:960.667067pt;}
.y115{bottom:961.147067pt;}
.y12c{bottom:962.027067pt;}
.y17e{bottom:964.506547pt;}
.yba{bottom:964.665651pt;}
.y149{bottom:965.546123pt;}
.y1b0{bottom:969.225539pt;}
.y10c{bottom:970.027067pt;}
.y17d{bottom:977.067067pt;}
.yb9{bottom:980.266123pt;}
.y169{bottom:981.146067pt;}
.y148{bottom:981.146595pt;}
.y2{bottom:981.467067pt;}
.y56{bottom:985.226579pt;}
.y1af{bottom:989.785211pt;}
.y125{bottom:990.827283pt;}
.yb8{bottom:995.866595pt;}
.y122{bottom:995.946771pt;}
.y168{bottom:996.746539pt;}
.ye1{bottom:996.746595pt;}
.y124{bottom:1000.587115pt;}
.y121{bottom:1001.067067pt;}
.y1ae{bottom:1002.345731pt;}
.y55{bottom:1007.067067pt;}
.y123{bottom:1010.266955pt;}
.yb6{bottom:1011.467016pt;}
.yb7{bottom:1011.467067pt;}
.y167{bottom:1012.347011pt;}
.ye0{bottom:1012.347067pt;}
.y1ad{bottom:1014.905187pt;}
.y1{bottom:1057.547067pt;}
.h25{height:17.440000pt;}
.h2b{height:17.554219pt;}
.h22{height:17.600000pt;}
.h39{height:18.454531pt;}
.h2a{height:19.930516pt;}
.h31{height:21.904375pt;}
.h36{height:22.440937pt;}
.h2f{height:22.455599pt;}
.h2d{height:22.456079pt;}
.h2c{height:22.456527pt;}
.h29{height:22.456719pt;}
.h2e{height:22.457487pt;}
.h34{height:22.457519pt;}
.h17{height:23.245627pt;}
.h1f{height:23.295696pt;}
.h33{height:29.074111pt;}
.h32{height:29.393312pt;}
.h35{height:29.395647pt;}
.h3c{height:29.550937pt;}
.h1b{height:29.571719pt;}
.h1{height:31.005625pt;}
.h3d{height:31.036025pt;}
.h1e{height:31.106250pt;}
.h37{height:31.720938pt;}
.h1c{height:33.336875pt;}
.h5{height:37.105312pt;}
.h4{height:37.131406pt;}
.ha{height:37.133294pt;}
.h3a{height:37.135406pt;}
.h20{height:37.137070pt;}
.hd{height:39.821184pt;}
.h18{height:39.848958pt;}
.hb{height:39.849188pt;}
.h1a{height:39.876981pt;}
.h12{height:39.906727pt;}
.h10{height:39.934790pt;}
.h30{height:40.462519pt;}
.h28{height:45.131406pt;}
.h38{height:48.013125pt;}
.h21{height:48.015013pt;}
.h6{height:48.018746pt;}
.h3b{height:48.032005pt;}
.h9{height:48.104805pt;}
.h8{height:49.499844pt;}
.h7{height:50.531875pt;}
.h15{height:52.314917pt;}
.he{height:53.122916pt;}
.h27{height:53.155027pt;}
.h16{height:53.159967pt;}
.h13{height:53.237033pt;}
.h24{height:53.353125pt;}
.hc{height:54.221184pt;}
.h11{height:54.306727pt;}
.hf{height:56.143979pt;}
.h26{height:56.177719pt;}
.h19{height:56.183193pt;}
.h14{height:56.264745pt;}
.h23{height:56.387380pt;}
.h3{height:58.990937pt;}
.h1d{height:60.856939pt;}
.h2{height:79.593125pt;}
.h0{height:1122.666667pt;}
.w5{width:7.840000pt;}
.w3{width:7.920000pt;}
.w4{width:9.120000pt;}
.w2{width:9.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:56.720000pt;}
.x4c{left:66.160120pt;}
.x6d{left:70.720000pt;}
.xc{left:75.680000pt;}
.x8{left:85.040000pt;}
.x6e{left:88.879288pt;}
.xd{left:103.999752pt;}
.x49{left:122.880096pt;}
.x1f{left:124.080000pt;}
.x3{left:126.560560pt;}
.x20{left:130.000000pt;}
.x66{left:147.200000pt;}
.x5{left:156.080000pt;}
.x27{left:159.118623pt;}
.x2e{left:163.439390pt;}
.x2c{left:166.639940pt;}
.x32{left:168.240000pt;}
.x2a{left:170.959921pt;}
.x29{left:172.239653pt;}
.x26{left:178.558547pt;}
.x38{left:186.079208pt;}
.x2{left:187.600000pt;}
.x12{left:189.119646pt;}
.x34{left:196.959716pt;}
.x25{left:199.358650pt;}
.x14{left:203.758608pt;}
.x1b{left:205.200700pt;}
.x48{left:208.960560pt;}
.xe{left:214.000096pt;}
.x16{left:215.679868pt;}
.x37{left:225.200101pt;}
.xf{left:231.040650pt;}
.x17{left:232.719670pt;}
.x4{left:241.120000pt;}
.x13{left:242.238575pt;}
.x1a{left:243.919946pt;}
.x6{left:246.400280pt;}
.x11{left:248.160114pt;}
.x19{left:249.839836pt;}
.x68{left:251.200000pt;}
.x1d{left:260.800000pt;}
.x4a{left:262.320000pt;}
.x30{left:263.440024pt;}
.x1e{left:266.720000pt;}
.x4b{left:270.000000pt;}
.x24{left:274.079470pt;}
.x36{left:275.440000pt;}
.x23{left:281.999492pt;}
.x22{left:287.919422pt;}
.x31{left:289.600000pt;}
.x35{left:291.440000pt;}
.x2d{left:292.560000pt;}
.x2b{left:295.600000pt;}
.x10{left:297.680000pt;}
.x18{left:299.360000pt;}
.x28{left:301.920301pt;}
.x21{left:307.840000pt;}
.x15{left:311.280000pt;}
.x1c{left:313.120000pt;}
.x2f{left:316.000000pt;}
.x33{left:350.960000pt;}
.x65{left:360.400000pt;}
.x47{left:375.680000pt;}
.x7{left:387.440464pt;}
.x69{left:390.880000pt;}
.x67{left:394.960000pt;}
.x9{left:398.719440pt;}
.x57{left:406.400000pt;}
.xb{left:408.159616pt;}
.x4e{left:411.760000pt;}
.x39{left:417.679336pt;}
.xa{left:427.039968pt;}
.x4f{left:431.200000pt;}
.x4d{left:438.960000pt;}
.x3f{left:446.000000pt;}
.x50{left:456.000000pt;}
.x64{left:464.880096pt;}
.x6b{left:483.840096pt;}
.x61{left:488.240000pt;}
.x60{left:489.360000pt;}
.x5d{left:510.640000pt;}
.x5c{left:511.760000pt;}
.x52{left:522.960000pt;}
.x42{left:535.200000pt;}
.x51{left:547.680000pt;}
.x44{left:553.360000pt;}
.x41{left:563.200000pt;}
.x53{left:567.920000pt;}
.x5e{left:579.520000pt;}
.x5f{left:580.720000pt;}
.x43{left:586.240000pt;}
.x40{left:595.360000pt;}
.x62{left:602.560000pt;}
.x3a{left:606.560000pt;}
.x3b{left:612.480000pt;}
.x45{left:618.800000pt;}
.x55{left:621.519864pt;}
.x54{left:622.800000pt;}
.x56{left:623.759760pt;}
.x58{left:664.319256pt;}
.x59{left:668.159680pt;}
.x5b{left:669.759867pt;}
.x5a{left:672.880016pt;}
.x3e{left:676.639867pt;}
.x46{left:679.679867pt;}
.x3c{left:687.839867pt;}
.x3d{left:693.759867pt;}
.x63{left:718.079867pt;}
.x6c{left:734.160000pt;}
.x6a{left:736.079867pt;}
}




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