
    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_3fcfa34cc0057879361ab962.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_c02702e330f1942be103e22d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_a27aee236113dd21646e8263.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_35de2508aa351a2dfb8291a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_6bea1c05a4df5452a2f48088.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_0572f5e923f079dc738c895e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.843000;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_6fc97e3313947144e42b844b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_842fa91e13e9614e740ce013.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_20d3272ae449d64997a8e03a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_e51b9bb116a8daaa6042313a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-9.030000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.004200px;}
.ls4{letter-spacing:0.005100px;}
.ls6a{letter-spacing:2.545364px;}
.ls66{letter-spacing:2.556762px;}
.ls65{letter-spacing:2.576421px;}
.ls67{letter-spacing:2.577374px;}
.ls69{letter-spacing:2.578513px;}
.ls68{letter-spacing:2.581595px;}
.ls3f{letter-spacing:2.599409px;}
.ls3c{letter-spacing:2.611049px;}
.ls3b{letter-spacing:2.631126px;}
.ls3d{letter-spacing:2.632099px;}
.ls3e{letter-spacing:2.633261px;}
.ls5{letter-spacing:2.950950px;}
.ls46{letter-spacing:2.987100px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.990611px;}
.ls11{letter-spacing:3.169217px;}
.ls10{letter-spacing:3.193951px;}
.ls7c{letter-spacing:3.473839px;}
.ls49{letter-spacing:4.111543px;}
.lse{letter-spacing:4.125358px;}
.ls48{letter-spacing:4.143632px;}
.lsb{letter-spacing:4.143831px;}
.lsa{letter-spacing:4.175694px;}
.lsc{letter-spacing:4.177238px;}
.lsd{letter-spacing:4.179083px;}
.ls5d{letter-spacing:4.483369px;}
.ls5a{letter-spacing:4.494309px;}
.ls5c{letter-spacing:4.523448px;}
.ls59{letter-spacing:4.528867px;}
.ls5b{letter-spacing:4.530542px;}
.ls25{letter-spacing:4.632010px;}
.ls22{letter-spacing:4.652752px;}
.ls21{letter-spacing:4.688528px;}
.ls23{letter-spacing:4.690263px;}
.ls24{letter-spacing:4.692334px;}
.ls1c{letter-spacing:4.878824px;}
.ls1b{letter-spacing:4.916901px;}
.ls4e{letter-spacing:4.980306px;}
.ls4b{letter-spacing:5.002608px;}
.ls4a{letter-spacing:5.041074px;}
.ls4c{letter-spacing:5.042939px;}
.ls4d{letter-spacing:5.045166px;}
.ls19{letter-spacing:5.086820px;}
.ls16{letter-spacing:5.099233px;}
.ls18{letter-spacing:5.132294px;}
.ls15{letter-spacing:5.138442px;}
.ls17{letter-spacing:5.140343px;}
.ls7a{letter-spacing:5.219627px;}
.ls2c{letter-spacing:5.234710px;}
.ls63{letter-spacing:5.237248px;}
.ls77{letter-spacing:5.243000px;}
.ls29{letter-spacing:5.258150px;}
.ls60{letter-spacing:5.260700px;}
.ls73{letter-spacing:5.265171px;}
.ls76{letter-spacing:5.283314px;}
.ls78{letter-spacing:5.285269px;}
.ls79{letter-spacing:5.287603px;}
.ls70{letter-spacing:5.288748px;}
.ls38{letter-spacing:5.295130px;}
.ls28{letter-spacing:5.298582px;}
.ls2a{letter-spacing:5.300542px;}
.ls5f{letter-spacing:5.301151px;}
.ls2b{letter-spacing:5.302883px;}
.ls61{letter-spacing:5.303112px;}
.ls62{letter-spacing:5.305454px;}
.ls35{letter-spacing:5.318841px;}
.ls74{letter-spacing:5.323038px;}
.ls6f{letter-spacing:5.329414px;}
.ls71{letter-spacing:5.331386px;}
.ls72{letter-spacing:5.333740px;}
.ls54{letter-spacing:5.341087px;}
.ls34{letter-spacing:5.359739px;}
.ls36{letter-spacing:5.361722px;}
.ls37{letter-spacing:5.364090px;}
.ls51{letter-spacing:5.365005px;}
.ls50{letter-spacing:5.406257px;}
.ls52{letter-spacing:5.408257px;}
.ls53{letter-spacing:5.410646px;}
.ls32{letter-spacing:5.514675px;}
.ls2f{letter-spacing:5.539369px;}
.ls2e{letter-spacing:5.581962px;}
.ls30{letter-spacing:5.584027px;}
.ls31{letter-spacing:5.586494px;}
.ls6{letter-spacing:7.353196px;}
.ls6d{letter-spacing:9.918538px;}
.ls8{letter-spacing:10.932538px;}
.ls6e{letter-spacing:11.304538px;}
.ls6c{letter-spacing:11.356200px;}
.ls9{letter-spacing:12.408538px;}
.ls7{letter-spacing:12.460200px;}
.ls44{letter-spacing:12.654538px;}
.ls13{letter-spacing:13.230538px;}
.ls20{letter-spacing:13.236538px;}
.ls7d{letter-spacing:13.677193px;}
.ls45{letter-spacing:14.268538px;}
.ls3a{letter-spacing:14.892538px;}
.ls14{letter-spacing:14.898538px;}
.ls12{letter-spacing:14.944200px;}
.ls57{letter-spacing:15.396538px;}
.ls6b{letter-spacing:15.420209px;}
.ls40{letter-spacing:15.747622px;}
.ls42{letter-spacing:16.200538px;}
.ls7e{letter-spacing:16.221193px;}
.ls1e{letter-spacing:16.380538px;}
.ls47{letter-spacing:18.203100px;}
.ls58{letter-spacing:18.792538px;}
.ls56{letter-spacing:18.838200px;}
.ls43{letter-spacing:20.232538px;}
.ls41{letter-spacing:20.278200px;}
.ls1f{letter-spacing:20.556538px;}
.ls1d{letter-spacing:20.602200px;}
.lsf{letter-spacing:24.992058px;}
.ls0{letter-spacing:26.805596px;}
.ls5e{letter-spacing:27.114939px;}
.ls26{letter-spacing:28.061437px;}
.ls4f{letter-spacing:30.171467px;}
.ls1a{letter-spacing:30.764549px;}
.ls7b{letter-spacing:31.621309px;}
.ls2d{letter-spacing:31.723325px;}
.ls64{letter-spacing:31.728062px;}
.ls75{letter-spacing:31.907925px;}
.ls39{letter-spacing:32.078720px;}
.ls55{letter-spacing:32.357137px;}
.ls33{letter-spacing:33.408755px;}
.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;}
}
.ws9f{word-spacing:-33.504164px;}
.wsf2{word-spacing:-32.449543px;}
.wsb2{word-spacing:-32.170331px;}
.ws12c{word-spacing:-31.988315px;}
.ws115{word-spacing:-31.818671px;}
.ws8e{word-spacing:-31.803249px;}
.ws139{word-spacing:-31.711613px;}
.ws69{word-spacing:-30.842058px;}
.wse2{word-spacing:-30.257632px;}
.ws7d{word-spacing:-28.141575px;}
.ws107{word-spacing:-27.183253px;}
.ws52{word-spacing:-25.063431px;}
.ws13e{word-spacing:-21.519300px;}
.wscd{word-spacing:-15.792594px;}
.ws11f{word-spacing:-15.464247px;}
.wsa5{word-spacing:-14.943900px;}
.ws9b{word-spacing:-5.584027px;}
.wsf0{word-spacing:-5.415794px;}
.wsee{word-spacing:-5.408257px;}
.wsec{word-spacing:-5.404937px;}
.wsb0{word-spacing:-5.366548px;}
.wsae{word-spacing:-5.361722px;}
.wsac{word-spacing:-5.355785px;}
.ws12a{word-spacing:-5.334965px;}
.ws128{word-spacing:-5.331386px;}
.ws126{word-spacing:-5.324262px;}
.ws111{word-spacing:-5.303112px;}
.ws89{word-spacing:-5.302091px;}
.ws8b{word-spacing:-5.300542px;}
.ws137{word-spacing:-5.296422px;}
.ws133{word-spacing:-5.285812px;}
.ws135{word-spacing:-5.285269px;}
.ws67{word-spacing:-5.145309px;}
.ws65{word-spacing:-5.140343px;}
.ws63{word-spacing:-5.134989px;}
.wse0{word-spacing:-5.052759px;}
.wsde{word-spacing:-5.042939px;}
.wsdc{word-spacing:-5.042635px;}
.ws7b{word-spacing:-4.694488px;}
.ws79{word-spacing:-4.690263px;}
.ws77{word-spacing:-4.685073px;}
.ws105{word-spacing:-4.535441px;}
.ws103{word-spacing:-4.530542px;}
.ws101{word-spacing:-4.526346px;}
.ws4e{word-spacing:-4.179043px;}
.ws50{word-spacing:-4.177238px;}
.ws33{word-spacing:-3.586536px;}
.ws32{word-spacing:-3.287658px;}
.ws5e{word-spacing:-3.168107px;}
.ws2f{word-spacing:-3.048556px;}
.ws55{word-spacing:-2.988780px;}
.ws25{word-spacing:-2.929004px;}
.ws5d{word-spacing:-2.869229px;}
.ws22{word-spacing:-2.749678px;}
.wscb{word-spacing:-2.634032px;}
.wsc9{word-spacing:-2.632099px;}
.wsc7{word-spacing:-2.628748px;}
.ws11a{word-spacing:-2.577538px;}
.ws11c{word-spacing:-2.577374px;}
.ws44{word-spacing:-2.570351px;}
.ws4b{word-spacing:-2.510575px;}
.ws131{word-spacing:-2.391024px;}
.ws14a{word-spacing:-2.385040px;}
.ws40{word-spacing:-2.331248px;}
.ws143{word-spacing:-2.217668px;}
.ws14c{word-spacing:-2.175826px;}
.wsfb{word-spacing:-2.151922px;}
.ws124{word-spacing:-2.092146px;}
.ws97{word-spacing:-2.032370px;}
.wsc1{word-spacing:-1.972595px;}
.ws27{word-spacing:-1.912819px;}
.ws21{word-spacing:-1.733492px;}
.ws24{word-spacing:-1.673717px;}
.ws146{word-spacing:-1.673712px;}
.ws82{word-spacing:-1.613941px;}
.ws45{word-spacing:-1.494390px;}
.ws142{word-spacing:-1.464498px;}
.wsf5{word-spacing:-1.434614px;}
.ws152{word-spacing:-1.380812px;}
.ws93{word-spacing:-1.374839px;}
.ws157{word-spacing:-1.338970px;}
.ws121{word-spacing:-1.315063px;}
.ws169{word-spacing:-1.297127px;}
.ws13c{word-spacing:-1.255288px;}
.ws158{word-spacing:-1.255284px;}
.ws6d{word-spacing:-1.075961px;}
.ws122{word-spacing:-1.016185px;}
.ws83{word-spacing:-0.956410px;}
.ws2e{word-spacing:-0.896634px;}
.ws3e{word-spacing:-0.836858px;}
.ws20{word-spacing:-0.777083px;}
.ws4c{word-spacing:-0.717307px;}
.wsd7{word-spacing:-0.657532px;}
.wsd0{word-spacing:-0.623831px;}
.wsd1{word-spacing:-0.597756px;}
.ws16e{word-spacing:-0.585799px;}
.wsa3{word-spacing:-0.537980px;}
.ws96{word-spacing:-0.478205px;}
.wsb5{word-spacing:-0.418429px;}
.ws16b{word-spacing:-0.418428px;}
.ws48{word-spacing:-0.358654px;}
.ws23{word-spacing:-0.298878px;}
.ws149{word-spacing:-0.292900px;}
.ws144{word-spacing:-0.251057px;}
.ws3f{word-spacing:-0.239102px;}
.wsbd{word-spacing:-0.179327px;}
.wsaa{word-spacing:-0.119551px;}
.ws30{word-spacing:-0.059776px;}
.ws11d{word-spacing:-0.007420px;}
.ws9c{word-spacing:-0.004865px;}
.wsef{word-spacing:-0.004712px;}
.wsaf{word-spacing:-0.004671px;}
.ws129{word-spacing:-0.004645px;}
.ws112{word-spacing:-0.004620px;}
.ws8c{word-spacing:-0.004618px;}
.ws136{word-spacing:-0.004605px;}
.ws66{word-spacing:-0.004479px;}
.wsdf{word-spacing:-0.004394px;}
.ws7a{word-spacing:-0.004086px;}
.ws104{word-spacing:-0.003947px;}
.ws51{word-spacing:-0.003639px;}
.wsca{word-spacing:-0.002293px;}
.ws5f{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.wsff{word-spacing:0.000169px;}
.ws4f{word-spacing:0.004080px;}
.ws119{word-spacing:0.006816px;}
.wsc6{word-spacing:0.006961px;}
.ws4d{word-spacing:0.011048px;}
.ws100{word-spacing:0.011982px;}
.ws76{word-spacing:0.012404px;}
.wsdb{word-spacing:0.013337px;}
.ws62{word-spacing:0.013595px;}
.ws132{word-spacing:0.013978px;}
.ws88{word-spacing:0.014018px;}
.ws10e{word-spacing:0.014025px;}
.ws125{word-spacing:0.014100px;}
.wsab{word-spacing:0.014180px;}
.wseb{word-spacing:0.014303px;}
.ws98{word-spacing:0.014768px;}
.ws84{word-spacing:0.119551px;}
.ws15a{word-spacing:0.167371px;}
.wsb7{word-spacing:0.179327px;}
.ws2a{word-spacing:0.239102px;}
.wsf9{word-spacing:0.298878px;}
.ws11{word-spacing:0.358654px;}
.ws19{word-spacing:0.382565px;}
.ws15e{word-spacing:0.418428px;}
.ws41{word-spacing:0.418429px;}
.ws130{word-spacing:0.478205px;}
.wsfc{word-spacing:0.537980px;}
.ws12{word-spacing:0.657532px;}
.ws16f{word-spacing:0.711328px;}
.ws1c{word-spacing:0.717307px;}
.ws150{word-spacing:0.753170px;}
.ws16c{word-spacing:0.795013px;}
.ws81{word-spacing:0.836858px;}
.ws29{word-spacing:0.896634px;}
.wsd3{word-spacing:0.956410px;}
.wsb{word-spacing:1.016185px;}
.wse9{word-spacing:1.135736px;}
.ws58{word-spacing:1.195512px;}
.ws156{word-spacing:1.213441px;}
.ws60{word-spacing:1.255288px;}
.wsa6{word-spacing:1.315063px;}
.ws28{word-spacing:1.374839px;}
.ws147{word-spacing:1.380812px;}
.ws1e{word-spacing:1.494390px;}
.ws145{word-spacing:1.506341px;}
.ws16a{word-spacing:1.548184px;}
.ws5{word-spacing:1.554166px;}
.ws15b{word-spacing:1.631869px;}
.ws37{word-spacing:1.673717px;}
.ws151{word-spacing:1.715555px;}
.ws13d{word-spacing:1.733492px;}
.ws1d{word-spacing:1.853044px;}
.ws26{word-spacing:1.912819px;}
.ws15f{word-spacing:1.966612px;}
.ws42{word-spacing:1.972595px;}
.ws2c{word-spacing:2.032370px;}
.ws15d{word-spacing:2.092140px;}
.wsc0{word-spacing:2.092146px;}
.wsc{word-spacing:2.151922px;}
.ws47{word-spacing:2.211697px;}
.ws148{word-spacing:2.217668px;}
.ws166{word-spacing:2.259511px;}
.ws168{word-spacing:2.301354px;}
.ws161{word-spacing:2.343197px;}
.wsfd{word-spacing:2.391024px;}
.ws6f{word-spacing:2.450800px;}
.wsf6{word-spacing:2.630126px;}
.ws167{word-spacing:2.636096px;}
.wsc2{word-spacing:2.689902px;}
.wsd9{word-spacing:2.809453px;}
.wsd{word-spacing:2.869229px;}
.ws94{word-spacing:2.988780px;}
.wsc3{word-spacing:3.048556px;}
.ws2b{word-spacing:3.168107px;}
.ws14e{word-spacing:3.221896px;}
.ws5c{word-spacing:3.227882px;}
.ws141{word-spacing:3.263738px;}
.ws16{word-spacing:3.287658px;}
.ws153{word-spacing:3.347424px;}
.wse{word-spacing:3.347434px;}
.ws140{word-spacing:3.389267px;}
.ws86{word-spacing:3.407209px;}
.ws162{word-spacing:3.431110px;}
.ws6{word-spacing:3.466985px;}
.ws14b{word-spacing:3.514795px;}
.wsa8{word-spacing:3.586536px;}
.ws95{word-spacing:3.646312px;}
.ws160{word-spacing:3.682166px;}
.ws13{word-spacing:3.706087px;}
.ws56{word-spacing:3.765863px;}
.ws92{word-spacing:3.825638px;}
.wsea{word-spacing:3.885414px;}
.ws2d{word-spacing:3.945190px;}
.ws12f{word-spacing:4.064741px;}
.ws14{word-spacing:4.124516px;}
.wsfe{word-spacing:4.184292px;}
.ws164{word-spacing:4.226123px;}
.ws5b{word-spacing:4.244068px;}
.ws7{word-spacing:4.303843px;}
.ws154{word-spacing:4.351651px;}
.ws6e{word-spacing:4.363619px;}
.wsd2{word-spacing:4.423394px;}
.ws14d{word-spacing:4.435337px;}
.ws10b{word-spacing:4.483170px;}
.ws1f{word-spacing:4.542946px;}
.ws16d{word-spacing:4.602708px;}
.ws3c{word-spacing:4.602721px;}
.ws159{word-spacing:4.644551px;}
.ws4{word-spacing:4.662497px;}
.ws73{word-spacing:4.722272px;}
.wsbe{word-spacing:4.782048px;}
.ws38{word-spacing:4.901599px;}
.ws165{word-spacing:4.979293px;}
.ws8{word-spacing:5.080926px;}
.ws11e{word-spacing:5.113524px;}
.ws11b{word-spacing:5.122816px;}
.wsbc{word-spacing:5.140702px;}
.wsbf{word-spacing:5.200477px;}
.wscc{word-spacing:5.222098px;}
.ws14f{word-spacing:5.230350px;}
.wsc8{word-spacing:5.231587px;}
.wse5{word-spacing:5.260253px;}
.ws15c{word-spacing:5.272193px;}
.ws113{word-spacing:5.297580px;}
.ws10f{word-spacing:5.308226px;}
.wscf{word-spacing:5.320028px;}
.wsa9{word-spacing:5.379804px;}
.ws85{word-spacing:5.439580px;}
.ws3{word-spacing:5.499355px;}
.ws13f{word-spacing:5.559131px;}
.ws9d{word-spacing:5.577252px;}
.ws99{word-spacing:5.588462px;}
.ws46{word-spacing:5.618906px;}
.ws74{word-spacing:5.648185px;}
.ws75{word-spacing:5.678682px;}
.wsc4{word-spacing:5.738458px;}
.wsbb{word-spacing:5.858009px;}
.ws163{word-spacing:5.899835px;}
.ws59{word-spacing:5.917784px;}
.ws71{word-spacing:5.977560px;}
.ws155{word-spacing:6.025363px;}
.ws3a{word-spacing:6.037336px;}
.wsd6{word-spacing:6.097111px;}
.wsa7{word-spacing:6.156887px;}
.ws87{word-spacing:6.216662px;}
.ws118{word-spacing:6.276438px;}
.ws49{word-spacing:6.336214px;}
.ws72{word-spacing:6.455765px;}
.ws4a{word-spacing:6.635092px;}
.wsda{word-spacing:6.694867px;}
.ws10{word-spacing:6.754643px;}
.ws2{word-spacing:6.874194px;}
.wsf7{word-spacing:6.933970px;}
.wsb8{word-spacing:6.993745px;}
.ws3d{word-spacing:7.113296px;}
.wse8{word-spacing:7.173072px;}
.wsa{word-spacing:7.232848px;}
.wsb6{word-spacing:7.531726px;}
.ws10d{word-spacing:7.591501px;}
.ws91{word-spacing:7.711052px;}
.ws15{word-spacing:7.770828px;}
.ws57{word-spacing:7.890379px;}
.wsf8{word-spacing:8.129482px;}
.ws3b{word-spacing:8.189257px;}
.ws61{word-spacing:8.249033px;}
.wsa2{word-spacing:8.308808px;}
.wsba{word-spacing:8.368584px;}
.ws39{word-spacing:8.428360px;}
.ws34{word-spacing:8.831087px;}
.ws35{word-spacing:8.846789px;}
.wse7{word-spacing:8.906564px;}
.ws106{word-spacing:8.988618px;}
.ws102{word-spacing:8.995857px;}
.ws7c{word-spacing:9.305504px;}
.ws78{word-spacing:9.312998px;}
.wsf{word-spacing:9.564096px;}
.wse4{word-spacing:9.683647px;}
.ws36{word-spacing:9.982525px;}
.wse1{word-spacing:10.005215px;}
.wsdd{word-spacing:10.023397px;}
.ws68{word-spacing:10.198466px;}
.ws64{word-spacing:10.206679px;}
.ws6c{word-spacing:10.341179px;}
.ws138{word-spacing:10.486000px;}
.ws134{word-spacing:10.505055px;}
.ws8d{word-spacing:10.516301px;}
.ws114{word-spacing:10.521400px;}
.ws8a{word-spacing:10.535411px;}
.ws110{word-spacing:10.540520px;}
.ws12b{word-spacing:10.577496px;}
.ws127{word-spacing:10.586014px;}
.wsb1{word-spacing:10.637683px;}
.wsad{word-spacing:10.646250px;}
.wsf1{word-spacing:10.730009px;}
.wsed{word-spacing:10.749507px;}
.ws9e{word-spacing:11.078738px;}
.ws9a{word-spacing:11.098870px;}
.wsc5{word-spacing:11.656242px;}
.ws18{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws54{word-spacing:16.772534px;}
.ws1b{word-spacing:17.932800px;}
.ws123{word-spacing:19.183966px;}
.wsd8{word-spacing:19.561966px;}
.wsa4{word-spacing:19.675966px;}
.ws31{word-spacing:20.185966px;}
.ws5a{word-spacing:20.191966px;}
.ws10c{word-spacing:20.335966px;}
.wsfa{word-spacing:20.509966px;}
.ws13b{word-spacing:20.701966px;}
.ws1a{word-spacing:21.519300px;}
.ws70{word-spacing:22.615966px;}
.ws43{word-spacing:24.811966px;}
.ws9{word-spacing:25.249966px;}
.wse6{word-spacing:25.429966px;}
.wsb9{word-spacing:27.205966px;}
.ws17{word-spacing:37.003661px;}
.ws120{word-spacing:48.970114px;}
.wsce{word-spacing:50.009881px;}
.ws53{word-spacing:79.367531px;}
.ws108{word-spacing:86.080301px;}
.ws7e{word-spacing:89.114989px;}
.wsa1{word-spacing:93.444984px;}
.wse3{word-spacing:95.815834px;}
.ws6a{word-spacing:97.666516px;}
.ws13a{word-spacing:100.420109px;}
.ws8f{word-spacing:100.710290px;}
.ws116{word-spacing:100.759126px;}
.ws12d{word-spacing:101.296330px;}
.wsb3{word-spacing:101.872716px;}
.wsf3{word-spacing:102.756887px;}
.wsa0{word-spacing:106.096519px;}
.wsd5{word-spacing:375.840550px;}
.wsb4{word-spacing:436.732345px;}
.ws10a{word-spacing:491.225525px;}
.ws80{word-spacing:513.160506px;}
.wsf4{word-spacing:584.277056px;}
.ws12e{word-spacing:595.195365px;}
.ws117{word-spacing:671.721889px;}
.ws6b{word-spacing:677.230225px;}
.ws90{word-spacing:737.330104px;}
.ws109{word-spacing:857.529862px;}
.ws7f{word-spacing:1081.601097px;}
.wsd4{word-spacing:1329.285190px;}
._29{margin-left:-8.090008px;}
._9{margin-left:-6.635092px;}
._7{margin-left:-4.722273px;}
._e{margin-left:-3.634907px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._49{width:2.021457px;}
._2b{width:3.602131px;}
._22{width:5.238951px;}
._8b{width:9.271645px;}
._8c{width:11.041083px;}
._83{width:12.194222px;}
._8d{width:13.420154px;}
._a{width:14.561341px;}
._b{width:15.679416px;}
._38{width:16.796944px;}
._f{width:17.872904px;}
._5{width:18.973331px;}
._10{width:20.060695px;}
._6{width:21.794189px;}
._3{width:23.073382px;}
._d{width:24.448220px;}
._8{width:26.480590px;}
._16{width:28.094532px;}
._12{width:29.887800px;}
._4{width:31.621292px;}
._14{width:33.235234px;}
._2{width:34.908950px;}
._21{width:36.487582px;}
._13{width:37.551041px;}
._15{width:38.794364px;}
._48{width:40.826735px;}
._11{width:43.038600px;}
._6b{width:45.130578px;}
._2a{width:49.769170px;}
._5a{width:64.693925px;}
._5c{width:65.862892px;}
._7f{width:75.571154px;}
._20{width:76.815443px;}
._62{width:78.352904px;}
._55{width:79.381038px;}
._80{width:82.652778px;}
._60{width:84.121884px;}
._4a{width:85.122081px;}
._59{width:90.092065px;}
._4f{width:91.593977px;}
._7a{width:95.259759px;}
._7b{width:96.907504px;}
._4d{width:98.229934px;}
._81{width:101.909385px;}
._50{width:104.652256px;}
._4c{width:111.916849px;}
._51{width:116.286134px;}
._57{width:117.349816px;}
._52{width:119.528299px;}
._5b{width:122.182035px;}
._5f{width:123.420551px;}
._7e{width:125.060377px;}
._4e{width:130.394184px;}
._53{width:132.394579px;}
._54{width:136.163164px;}
._7c{width:140.570002px;}
._5e{width:145.555074px;}
._5d{width:148.503025px;}
._61{width:149.691967px;}
._2e{width:151.589286px;}
._82{width:153.972349px;}
._19{width:155.894540px;}
._58{width:158.715569px;}
._56{width:161.663520px;}
._65{width:163.802444px;}
._40{width:165.348682px;}
._6c{width:169.155111px;}
._8a{width:170.331776px;}
._3b{width:172.035434px;}
._46{width:173.039512px;}
._33{width:174.242097px;}
._6a{width:175.478025px;}
._1c{width:176.780732px;}
._3d{width:180.587444px;}
._85{width:184.856891px;}
._63{width:189.017137px;}
._27{width:191.837599px;}
._3f{width:192.914996px;}
._88{width:197.246235px;}
._31{width:198.491912px;}
._84{width:199.678144px;}
._44{width:200.799367px;}
._68{width:202.519311px;}
._7d{width:204.076508px;}
._3e{width:209.040607px;}
._86{width:210.331553px;}
._78{width:214.137175px;}
._71{width:215.384386px;}
._24{width:218.318916px;}
._2f{width:222.787472px;}
._74{width:224.427696px;}
._45{width:225.457523px;}
._42{width:226.490433px;}
._23{width:228.025613px;}
._72{width:229.624745px;}
._2c{width:235.920207px;}
._6f{width:238.037097px;}
._28{width:239.334368px;}
._41{width:241.170250px;}
._77{width:243.091631px;}
._3c{width:249.357620px;}
._26{width:255.432192px;}
._66{width:256.601883px;}
._39{width:264.921067px;}
._18{width:267.130615px;}
._36{width:269.690098px;}
._87{width:274.292947px;}
._47{width:279.774648px;}
._89{width:290.478378px;}
._34{width:293.141410px;}
._1e{width:294.951023px;}
._73{width:296.122750px;}
._1f{width:297.497604px;}
._1b{width:301.885239px;}
._17{width:313.543520px;}
._64{width:315.276724px;}
._76{width:320.630260px;}
._1d{width:322.520797px;}
._3a{width:328.958203px;}
._37{width:334.982131px;}
._32{width:363.495349px;}
._1a{width:364.505830px;}
._25{width:367.063339px;}
._75{width:373.869389px;}
._35{width:381.884757px;}
._43{width:387.009085px;}
._69{width:389.684850px;}
._6e{width:391.167010px;}
._2d{width:397.550234px;}
._30{width:428.787383px;}
._6d{width:436.472432px;}
._67{width:444.937114px;}
._70{width:459.020088px;}
._79{width:540.736400px;}
._4b{width:573.531802px;}
._c{width:1171.269949px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs23{font-size:41.238094px;}
.fs28{font-size:41.842800px;}
.fs17{font-size:42.113690px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:51.116396px;}
.fs22{font-size:51.547489px;}
.fs16{font-size:52.641980px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:63.895334px;}
.fs19{font-size:66.315217px;}
.fs7{font-size:66.835983px;}
.fs5{font-size:71.731200px;}
.fs1f{font-size:72.488857px;}
.fsf{font-size:75.044389px;}
.fsd{font-size:78.690710px;}
.fs1b{font-size:80.687220px;}
.fsb{font-size:82.245694px;}
.fs18{font-size:82.893813px;}
.fs6{font-size:83.544770px;}
.fs27{font-size:84.564514px;}
.fs11{font-size:84.808878px;}
.fs21{font-size:84.850003px;}
.fs25{font-size:85.302386px;}
.fs15{font-size:85.787765px;}
.fs0{font-size:86.077200px;}
.fs1d{font-size:86.532332px;}
.fs13{font-size:89.344662px;}
.fs1e{font-size:90.610843px;}
.fse{font-size:93.805251px;}
.fsc{font-size:98.363141px;}
.fs1a{font-size:100.858772px;}
.fsa{font-size:102.806859px;}
.fs26{font-size:105.705378px;}
.fs10{font-size:106.010831px;}
.fs20{font-size:106.062238px;}
.fs24{font-size:106.627715px;}
.fs14{font-size:107.234438px;}
.fs1c{font-size:108.165144px;}
.fs12{font-size:111.680547px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.ye6{bottom:178.879500px;}
.y6a{bottom:180.037500px;}
.yca{bottom:181.252500px;}
.y21a{bottom:183.304500px;}
.y1e7{bottom:184.339500px;}
.y8c{bottom:186.549000px;}
.y1b1{bottom:187.176000px;}
.y202{bottom:188.848500px;}
.y1ce{bottom:189.679500px;}
.y157{bottom:191.245500px;}
.y27a{bottom:192.328500px;}
.y10b{bottom:193.281000px;}
.ye5{bottom:196.812000px;}
.y69{bottom:197.970000px;}
.yc9{bottom:199.186500px;}
.y219{bottom:201.238500px;}
.y1e6{bottom:202.272000px;}
.y8b{bottom:204.481500px;}
.y279{bottom:205.779000px;}
.y201{bottom:206.781000px;}
.y1cd{bottom:207.612000px;}
.y156{bottom:209.179500px;}
.y24e{bottom:210.262500px;}
.y10a{bottom:211.213500px;}
.y22e{bottom:212.278500px;}
.ye4{bottom:214.744500px;}
.y1b0{bottom:215.196000px;}
.y68{bottom:215.902500px;}
.yc8{bottom:217.119000px;}
.y218{bottom:219.171000px;}
.y1e5{bottom:220.206000px;}
.y8a{bottom:222.414000px;}
.y200{bottom:224.713500px;}
.y174{bottom:224.832000px;}
.y190{bottom:225.243000px;}
.y1cc{bottom:225.544500px;}
.y155{bottom:227.112000px;}
.y109{bottom:229.146000px;}
.y21{bottom:230.452500px;}
.y278{bottom:231.096000px;}
.ye3{bottom:232.677000px;}
.yc7{bottom:235.051500px;}
.y24d{bottom:235.666500px;}
.y217{bottom:237.103500px;}
.y1e4{bottom:238.138500px;}
.y89{bottom:240.348000px;}
.yab{bottom:241.126500px;}
.y1ff{bottom:242.646000px;}
.y18f{bottom:243.175500px;}
.y1cb{bottom:243.477000px;}
.y67{bottom:243.922500px;}
.y277{bottom:244.545000px;}
.y154{bottom:245.044500px;}
.y108{bottom:247.078500px;}
.y20{bottom:248.988000px;}
.y24c{bottom:249.115500px;}
.ye2{bottom:250.609500px;}
.yc6{bottom:252.984000px;}
.y1af{bottom:254.985000px;}
.y216{bottom:255.036000px;}
.y1e3{bottom:256.071000px;}
.y88{bottom:258.280500px;}
.yaa{bottom:259.059000px;}
.y1f{bottom:259.362000px;}
.y1fe{bottom:260.578500px;}
.y1ca{bottom:261.409500px;}
.y22d{bottom:262.339500px;}
.y153{bottom:262.977000px;}
.y173{bottom:264.027000px;}
.y12b{bottom:268.542000px;}
.ye1{bottom:268.543500px;}
.y276{bottom:269.862000px;}
.yc5{bottom:270.916500px;}
.y1ae{bottom:272.917500px;}
.y215{bottom:272.968500px;}
.y1e2{bottom:274.003500px;}
.y24b{bottom:274.521000px;}
.y107{bottom:275.098500px;}
.ya9{bottom:276.991500px;}
.y1e{bottom:277.899000px;}
.y18e{bottom:278.394000px;}
.y1fd{bottom:278.511000px;}
.y1c9{bottom:279.343500px;}
.y22c{bottom:280.272000px;}
.y172{bottom:281.959500px;}
.y275{bottom:283.311000px;}
.y66{bottom:283.711500px;}
.y87{bottom:286.300500px;}
.ye0{bottom:286.476000px;}
.y24a{bottom:287.970000px;}
.yc4{bottom:288.849000px;}
.y1ad{bottom:290.850000px;}
.y214{bottom:290.901000px;}
.y152{bottom:290.997000px;}
.y1e1{bottom:291.936000px;}
.ya8{bottom:294.925500px;}
.y43{bottom:295.666500px;}
.y1fc{bottom:296.445000px;}
.y274{bottom:296.761500px;}
.y1c8{bottom:297.276000px;}
.y22b{bottom:298.204500px;}
.y249{bottom:301.420500px;}
.y65{bottom:301.644000px;}
.ydf{bottom:304.408500px;}
.yc3{bottom:306.783000px;}
.y1ac{bottom:308.782500px;}
.y213{bottom:308.835000px;}
.y1e0{bottom:309.870000px;}
.ya7{bottom:312.858000px;}
.y42{bottom:313.599000px;}
.y1fb{bottom:314.377500px;}
.y1c7{bottom:315.208500px;}
.y171{bottom:315.858000px;}
.y22a{bottom:316.138500px;}
.y64{bottom:319.576500px;}
.y273{bottom:322.077000px;}
.yde{bottom:322.341000px;}
.yc2{bottom:324.715500px;}
.y86{bottom:326.088000px;}
.y1ab{bottom:326.715000px;}
.y212{bottom:326.767500px;}
.y248{bottom:326.824500px;}
.y1df{bottom:327.802500px;}
.y151{bottom:330.784500px;}
.ya6{bottom:330.790500px;}
.y18d{bottom:331.107168px;}
.y41{bottom:331.531500px;}
.y106{bottom:332.172000px;}
.y229{bottom:334.071000px;}
.y272{bottom:335.527500px;}
.y1d{bottom:335.863500px;}
.y63{bottom:337.509000px;}
.ydd{bottom:340.273500px;}
.y247{bottom:340.275000px;}
.y1fa{bottom:342.397500px;}
.yc1{bottom:342.648000px;}
.y85{bottom:344.020500px;}
.y1aa{bottom:344.649000px;}
.y211{bottom:344.700000px;}
.y1de{bottom:345.735000px;}
.y150{bottom:348.718500px;}
.ya5{bottom:348.723000px;}
.y40{bottom:349.464000px;}
.y1c{bottom:353.796000px;}
.y62{bottom:355.441500px;}
.y12a{bottom:358.206000px;}
.yc0{bottom:360.580500px;}
.y271{bottom:360.844500px;}
.y84{bottom:361.953000px;}
.y1a9{bottom:362.581500px;}
.y1c6{bottom:362.628000px;}
.y18c{bottom:363.556386px;}
.y1dd{bottom:363.667500px;}
.y246{bottom:365.679000px;}
.y14f{bottom:366.651000px;}
.ya4{bottom:366.655500px;}
.y3f{bottom:367.398000px;}
.y228{bottom:367.470000px;}
.y170{bottom:367.840852px;}
.ydc{bottom:368.293500px;}
.y210{bottom:372.720000px;}
.y61{bottom:373.374000px;}
.y270{bottom:374.293500px;}
.y129{bottom:376.138500px;}
.ybf{bottom:378.513000px;}
.y245{bottom:379.128000px;}
.y83{bottom:379.887000px;}
.y1a8{bottom:380.514000px;}
.y1b{bottom:382.203000px;}
.y105{bottom:383.903217px;}
.y14e{bottom:384.583500px;}
.ya3{bottom:384.589500px;}
.y3e{bottom:385.330500px;}
.y26f{bottom:387.742500px;}
.y60{bottom:391.308000px;}
.y1dc{bottom:391.687500px;}
.y128{bottom:394.072500px;}
.y18b{bottom:396.005603px;}
.ybe{bottom:396.445500px;}
.y82{bottom:397.819500px;}
.y16f{bottom:398.098180px;}
.y1a7{bottom:398.446500px;}
.y1f9{bottom:399.471000px;}
.y1a{bottom:400.137000px;}
.y14d{bottom:402.516000px;}
.ya2{bottom:402.522000px;}
.y3d{bottom:403.263000px;}
.y244{bottom:404.533500px;}
.y5f{bottom:409.240500px;}
.y127{bottom:412.005000px;}
.y26e{bottom:413.059500px;}
.y104{bottom:413.414331px;}
.y1c5{bottom:414.360934px;}
.ybd{bottom:414.379500px;}
.y81{bottom:415.752000px;}
.y1a6{bottom:416.379000px;}
.y243{bottom:417.982500px;}
.y19{bottom:418.069500px;}
.ya1{bottom:420.454500px;}
.ydb{bottom:423.981000px;}
.yf5{bottom:424.566000px;}
.y26d{bottom:426.510000px;}
.y5e{bottom:427.173000px;}
.y16e{bottom:428.355508px;}
.y18a{bottom:428.454820px;}
.y20f{bottom:429.793500px;}
.y126{bottom:429.937500px;}
.y3c{bottom:431.283000px;}
.y80{bottom:433.684500px;}
.y227{bottom:433.983000px;}
.y1a5{bottom:434.313000px;}
.y18{bottom:436.002000px;}
.ya0{bottom:438.387000px;}
.y26c{bottom:439.959000px;}
.ybc{bottom:442.399500px;}
.y242{bottom:443.388000px;}
.y103{bottom:443.905364px;}
.y1c4{bottom:444.851968px;}
.y5d{bottom:445.105500px;}
.y125{bottom:447.870000px;}
.y1db{bottom:448.761000px;}
.y14c{bottom:449.935500px;}
.y1f8{bottom:451.203185px;}
.y7f{bottom:451.617000px;}
.y1a4{bottom:452.245500px;}
.y17{bottom:453.934500px;}
.y9f{bottom:456.319500px;}
.y241{bottom:456.837000px;}
.y16d{bottom:459.622679px;}
.y189{bottom:460.904038px;}
.y5c{bottom:463.038000px;}
.y26b{bottom:465.276000px;}
.y124{bottom:465.802500px;}
.y7e{bottom:469.549500px;}
.y1a3{bottom:470.178000px;}
.y16{bottom:471.867000px;}
.y3b{bottom:474.060000px;}
.y9e{bottom:474.252000px;}
.y1c3{bottom:474.360614px;}
.yda{bottom:475.712217px;}
.yf4{bottom:476.297217px;}
.y26a{bottom:478.725000px;}
.y1f7{bottom:480.711831px;}
.y5b{bottom:480.970500px;}
.y20e{bottom:481.524717px;}
.y240{bottom:482.242500px;}
.y123{bottom:483.736500px;}
.y226{bottom:485.715185px;}
.y102{bottom:485.730000px;}
.y7d{bottom:487.483500px;}
.y1a2{bottom:488.110500px;}
.y15{bottom:489.801000px;}
.ybb{bottom:489.819000px;}
.y16c{bottom:489.880007px;}
.y3a{bottom:491.992500px;}
.y9d{bottom:492.186000px;}
.y188{bottom:494.436253px;}
.y23f{bottom:495.691500px;}
.y14b{bottom:497.095472px;}
.y5a{bottom:498.904500px;}
.y1da{bottom:500.492217px;}
.y122{bottom:501.669000px;}
.y101{bottom:503.662500px;}
.y269{bottom:504.042000px;}
.y1c2{bottom:504.854115px;}
.yd9{bottom:505.220863px;}
.y7c{bottom:505.416000px;}
.yf3{bottom:505.805863px;}
.y1a1{bottom:506.043000px;}
.y14{bottom:507.733500px;}
.y23e{bottom:509.140500px;}
.y39{bottom:509.925000px;}
.y9c{bottom:510.118500px;}
.y20d{bottom:511.033363px;}
.y1f6{bottom:511.205333px;}
.y14a{bottom:512.887907px;}
.y225{bottom:515.223831px;}
.y59{bottom:516.837000px;}
.y268{bottom:517.492500px;}
.y121{bottom:519.601500px;}
.y16b{bottom:521.144647px;}
.y7b{bottom:523.348500px;}
.y1a0{bottom:523.975500px;}
.y13{bottom:525.666000px;}
.y187{bottom:526.885470px;}
.y38{bottom:527.857500px;}
.y9b{bottom:528.051000px;}
.y149{bottom:528.681664px;}
.y1d9{bottom:530.000863px;}
.y23d{bottom:534.546000px;}
.y58{bottom:534.769500px;}
.yd8{bottom:535.714364px;}
.yf2{bottom:536.299364px;}
.y120{bottom:537.534000px;}
.y100{bottom:538.881000px;}
.y7a{bottom:541.281000px;}
.y20c{bottom:541.526864px;}
.yba{bottom:541.551128px;}
.y19f{bottom:541.909500px;}
.y267{bottom:542.808000px;}
.y12{bottom:543.598500px;}
.y148{bottom:544.474099px;}
.y224{bottom:545.717333px;}
.y37{bottom:545.791500px;}
.y9a{bottom:545.983500px;}
.y1c1{bottom:546.031500px;}
.y23c{bottom:547.995000px;}
.y57{bottom:552.702000px;}
.y1f5{bottom:553.029000px;}
.y11f{bottom:555.466500px;}
.y266{bottom:556.258500px;}
.y79{bottom:559.213500px;}
.y19e{bottom:559.842000px;}
.y147{bottom:560.266535px;}
.y186{bottom:560.417685px;}
.y1d8{bottom:560.494364px;}
.y11{bottom:561.531000px;}
.y16a{bottom:563.668500px;}
.y36{bottom:563.724000px;}
.y99{bottom:563.916000px;}
.y265{bottom:569.707500px;}
.y56{bottom:570.634500px;}
.y1f4{bottom:570.961500px;}
.yb9{bottom:571.059774px;}
.y11e{bottom:573.399000px;}
.y23b{bottom:573.400500px;}
.y146{bottom:576.058970px;}
.yd7{bottom:576.583500px;}
.yf1{bottom:577.570500px;}
.y19d{bottom:577.774500px;}
.y10{bottom:579.463500px;}
.y169{bottom:581.601000px;}
.y35{bottom:581.656500px;}
.y98{bottom:581.848500px;}
.y20b{bottom:583.351500px;}
.y223{bottom:586.707000px;}
.y23a{bottom:586.849500px;}
.y55{bottom:588.568500px;}
.y11d{bottom:591.333000px;}
.yff{bottom:591.498183px;}
.y145{bottom:591.851406px;}
.yd6{bottom:594.516000px;}
.y264{bottom:595.024500px;}
.yf0{bottom:595.503000px;}
.y19c{bottom:595.707000px;}
.y1c0{bottom:596.988507px;}
.yf{bottom:597.397500px;}
.y168{bottom:599.535000px;}
.y34{bottom:599.589000px;}
.y97{bottom:599.782500px;}
.yb8{bottom:600.568420px;}
.y20a{bottom:601.284000px;}
.y1d7{bottom:602.319000px;}
.y222{bottom:604.639500px;}
.y185{bottom:605.794500px;}
.y1f3{bottom:606.180000px;}
.y54{bottom:606.501000px;}
.y78{bottom:606.634500px;}
.y144{bottom:607.643841px;}
.y263{bottom:608.473500px;}
.y11c{bottom:609.265500px;}
.y239{bottom:612.255000px;}
.y19b{bottom:613.639500px;}
.ye{bottom:615.330000px;}
.y167{bottom:617.467500px;}
.y33{bottom:617.521500px;}
.y1d6{bottom:620.251500px;}
.y262{bottom:621.924000px;}
.y143{bottom:623.437598px;}
.yfe{bottom:623.670882px;}
.y184{bottom:623.727000px;}
.y1bf{bottom:624.171487px;}
.y53{bottom:624.433500px;}
.y238{bottom:625.704000px;}
.y11b{bottom:627.198000px;}
.yef{bottom:630.169500px;}
.yb7{bottom:631.061922px;}
.y19a{bottom:631.572000px;}
.yd5{bottom:631.842000px;}
.yd{bottom:633.262500px;}
.y166{bottom:635.400000px;}
.y32{bottom:635.454000px;}
.y209{bottom:636.502500px;}
.y221{bottom:639.024000px;}
.y142{bottom:639.230033px;}
.y183{bottom:641.659500px;}
.y52{bottom:642.366000px;}
.y11a{bottom:645.130500px;}
.y96{bottom:647.202000px;}
.y261{bottom:647.241000px;}
.y199{bottom:649.506000px;}
.yc{bottom:651.195000px;}
.y1be{bottom:651.354467px;}
.y1f2{bottom:653.230191px;}
.y165{bottom:653.332500px;}
.y31{bottom:653.388000px;}
.y77{bottom:654.919430px;}
.y141{bottom:655.022469px;}
.y1d5{bottom:655.470000px;}
.yfd{bottom:655.840891px;}
.y237{bottom:656.115000px;}
.y182{bottom:659.592000px;}
.y51{bottom:660.298500px;}
.y260{bottom:660.690000px;}
.y119{bottom:663.063000px;}
.y198{bottom:667.438500px;}
.y1f1{bottom:668.694282px;}
.yb{bottom:669.127500px;}
.y140{bottom:670.814904px;}
.y164{bottom:671.265000px;}
.y30{bottom:671.320500px;}
.yb6{bottom:672.238500px;}
.y76{bottom:674.087838px;}
.y181{bottom:677.526000px;}
.y50{bottom:678.231000px;}
.y1bd{bottom:678.537447px;}
.y118{bottom:680.995500px;}
.yee{bottom:683.232767px;}
.y1f0{bottom:684.158373px;}
.yd4{bottom:684.337393px;}
.y197{bottom:685.371000px;}
.y25f{bottom:686.007000px;}
.y13f{bottom:686.607339px;}
.ya{bottom:687.060000px;}
.yfc{bottom:688.010899px;}
.y208{bottom:689.061284px;}
.y163{bottom:689.197500px;}
.y2f{bottom:689.253000px;}
.y220{bottom:691.490833px;}
.y75{bottom:693.895995px;}
.y180{bottom:695.458500px;}
.y4f{bottom:696.165000px;}
.y236{bottom:698.481000px;}
.y117{bottom:698.929500px;}
.y95{bottom:698.934185px;}
.y25e{bottom:699.456000px;}
.y1ef{bottom:699.622465px;}
.y13e{bottom:702.399775px;}
.y196{bottom:703.303500px;}
.y9{bottom:704.994000px;}
.y1bc{bottom:705.722701px;}
.y162{bottom:707.131500px;}
.y2e{bottom:707.185500px;}
.y1d4{bottom:707.972800px;}
.y17f{bottom:713.391000px;}
.y4e{bottom:714.097500px;}
.y1ee{bottom:715.086556px;}
.yd3{bottom:716.142983px;}
.yed{bottom:716.736595px;}
.y116{bottom:716.862000px;}
.y13d{bottom:718.193531px;}
.yfb{bottom:720.180908px;}
.y207{bottom:721.049278px;}
.y195{bottom:721.236000px;}
.y8{bottom:722.926500px;}
.y21f{bottom:723.202128px;}
.yb5{bottom:723.514678px;}
.y286{bottom:724.333500px;}
.y25d{bottom:724.773000px;}
.y161{bottom:725.064000px;}
.y94{bottom:728.442831px;}
.y74{bottom:729.328500px;}
.y1ed{bottom:730.550647px;}
.y17e{bottom:731.323500px;}
.y4d{bottom:732.030000px;}
.y1bb{bottom:732.905681px;}
.y13c{bottom:733.985967px;}
.y115{bottom:734.794500px;}
.y2d{bottom:735.205500px;}
.y285{bottom:737.784000px;}
.y25c{bottom:738.223500px;}
.y194{bottom:739.168500px;}
.y1d3{bottom:739.791152px;}
.y7{bottom:740.859000px;}
.y160{bottom:742.996500px;}
.y1ec{bottom:746.016032px;}
.yd2{bottom:747.945913px;}
.y235{bottom:748.917000px;}
.y17d{bottom:749.256000px;}
.y13b{bottom:749.778402px;}
.y4c{bottom:749.962500px;}
.yec{bottom:750.240423px;}
.yb4{bottom:751.655971px;}
.y25b{bottom:751.672500px;}
.yfa{bottom:752.350916px;}
.y114{bottom:752.727000px;}
.y206{bottom:753.037271px;}
.y21e{bottom:754.913423px;}
.y193{bottom:757.102500px;}
.y93{bottom:758.936333px;}
.y1ba{bottom:760.088661px;}
.y15f{bottom:760.929000px;}
.y1eb{bottom:761.480124px;}
.y284{bottom:763.188000px;}
.y13a{bottom:765.570838px;}
.y17c{bottom:767.188500px;}
.y6{bottom:767.758500px;}
.y4b{bottom:767.895000px;}
.y113{bottom:770.659500px;}
.y1d2{bottom:771.609504px;}
.y192{bottom:775.035000px;}
.y283{bottom:776.637000px;}
.y25a{bottom:776.989500px;}
.y1ea{bottom:777.459038px;}
.y2c{bottom:777.982500px;}
.y73{bottom:779.578637px;}
.yd1{bottom:779.748843px;}
.yb3{bottom:779.797264px;}
.y139{bottom:781.363273px;}
.y234{bottom:782.316000px;}
.yeb{bottom:783.747053px;}
.y17b{bottom:785.122500px;}
.yf9{bottom:785.594603px;}
.y4a{bottom:785.827500px;}
.y205{bottom:786.092869px;}
.y1b9{bottom:787.271641px;}
.y21d{bottom:787.683088px;}
.y112{bottom:788.592000px;}
.y282{bottom:790.087500px;}
.y259{bottom:790.438500px;}
.y1e9{bottom:792.924423px;}
.y191{bottom:792.967500px;}
.y2b{bottom:795.915000px;}
.y138{bottom:797.155709px;}
.y92{bottom:800.112000px;}
.y17a{bottom:803.055000px;}
.y49{bottom:803.761500px;}
.y258{bottom:803.889000px;}
.y1d1{bottom:804.489798px;}
.y72{bottom:804.641816px;}
.y15e{bottom:805.711500px;}
.y111{bottom:806.526000px;}
.yb2{bottom:807.938557px;}
.y1e8{bottom:808.903337px;}
.yd0{bottom:811.551773px;}
.y137{bottom:812.949465px;}
.y2a{bottom:813.847500px;}
.y1b8{bottom:815.361858px;}
.y281{bottom:815.491500px;}
.yf8{bottom:817.764612px;}
.y204{bottom:818.080862px;}
.yea{bottom:818.366274px;}
.y21c{bottom:819.394383px;}
.y179{bottom:820.987500px;}
.y48{bottom:821.694000px;}
.y110{bottom:824.458500px;}
.y136{bottom:828.741900px;}
.y280{bottom:828.942000px;}
.y257{bottom:829.204500px;}
.y71{bottom:829.707092px;}
.y29{bottom:831.781500px;}
.y233{bottom:832.752000px;}
.yb1{bottom:836.079850px;}
.y1d0{bottom:836.308150px;}
.y47{bottom:839.626500px;}
.y10f{bottom:842.391000px;}
.y1b7{bottom:842.544838px;}
.y256{bottom:842.655000px;}
.ycf{bottom:844.416131px;}
.y135{bottom:844.534336px;}
.y28{bottom:849.714000px;}
.y232{bottom:850.684500px;}
.yf7{bottom:851.008299px;}
.y203{bottom:851.136460px;}
.ye9{bottom:851.870101px;}
.y21b{bottom:852.161395px;}
.y91{bottom:852.290102px;}
.y70{bottom:854.770271px;}
.y15d{bottom:855.896292px;}
.y255{bottom:856.104000px;}
.y46{bottom:857.559000px;}
.y10e{bottom:860.323500px;}
.y134{bottom:860.326771px;}
.yb0{bottom:864.223497px;}
.y27{bottom:867.646500px;}
.y5{bottom:867.796500px;}
.y178{bottom:868.407000px;}
.y1cf{bottom:869.185783px;}
.y1b6{bottom:869.727818px;}
.y45{bottom:875.491500px;}
.y133{bottom:876.119207px;}
.yce{bottom:876.219061px;}
.y10d{bottom:878.256000px;}
.y6f{bottom:879.833450px;}
.y15c{bottom:880.764186px;}
.y27f{bottom:881.245500px;}
.y254{bottom:881.421000px;}
.y90{bottom:883.131850px;}
.y231{bottom:884.085000px;}
.y26{bottom:885.579000px;}
.ye8{bottom:886.492125px;}
.y4{bottom:890.959500px;}
.y132{bottom:891.911642px;}
.yaf{bottom:893.301656px;}
.y44{bottom:893.424000px;}
.y27e{bottom:894.694500px;}
.y253{bottom:894.870000px;}
.yf6{bottom:896.188500px;}
.y10c{bottom:896.190000px;}
.y1b5{bottom:896.910798px;}
.y25{bottom:903.511500px;}
.y6e{bottom:904.896630px;}
.y15b{bottom:905.632080px;}
.y131{bottom:907.705399px;}
.y252{bottom:908.320500px;}
.ycd{bottom:909.083419px;}
.y3{bottom:914.122500px;}
.y8f{bottom:915.000366px;}
.y27d{bottom:920.100000px;}
.y177{bottom:920.138217px;}
.y24{bottom:921.444000px;}
.yae{bottom:922.382169px;}
.y130{bottom:923.497834px;}
.y1b4{bottom:925.001014px;}
.y6d{bottom:930.796297px;}
.y15a{bottom:931.329945px;}
.ye7{bottom:932.055000px;}
.y27c{bottom:933.549000px;}
.y251{bottom:933.637500px;}
.y230{bottom:934.521000px;}
.y12f{bottom:939.816024px;}
.y8e{bottom:945.844694px;}
.y27b{bottom:946.998000px;}
.y250{bottom:947.086500px;}
.y23{bottom:949.464000px;}
.y176{bottom:949.646863px;}
.ycc{bottom:949.987500px;}
.yad{bottom:950.523462px;}
.y1b3{bottom:952.183994px;}
.y22f{bottom:952.453500px;}
.y6c{bottom:955.859476px;}
.y12e{bottom:956.135534px;}
.y159{bottom:956.197839px;}
.y2{bottom:958.954500px;}
.ycb{bottom:967.920000px;}
.y12d{bottom:971.927970px;}
.y24f{bottom:972.403500px;}
.y8d{bottom:977.713211px;}
.yac{bottom:979.603975px;}
.y175{bottom:980.140364px;}
.y1b2{bottom:980.274211px;}
.y6b{bottom:981.759143px;}
.y158{bottom:981.895703px;}
.y1{bottom:985.852500px;}
.y12c{bottom:988.247480px;}
.h9{height:24.675533px;}
.h7{height:25.787366px;}
.h24{height:28.787846px;}
.h25{height:28.997846px;}
.h23{height:30.963672px;}
.h3{height:32.804932px;}
.h8{height:32.900573px;}
.h20{height:35.464672px;}
.h19{height:36.217682px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hd{height:41.484266px;}
.h10{height:41.961802px;}
.h11{height:43.959990px;}
.h5{height:44.233944px;}
.he{height:44.831700px;}
.hb{height:49.637990px;}
.h6{height:52.040387px;}
.h12{height:52.046387px;}
.hc{height:52.128854px;}
.h1a{height:54.871350px;}
.h1b{height:57.030944px;}
.hf{height:57.478801px;}
.h1{height:59.221114px;}
.ha{height:59.565422px;}
.h1e{height:62.340260px;}
.h15{height:64.538013px;}
.h14{height:67.673841px;}
.h1c{height:69.390835px;}
.h13{height:70.731119px;}
.h22{height:72.725300px;}
.h16{height:72.935452px;}
.h1f{height:72.970820px;}
.h21{height:73.359868px;}
.h18{height:73.777293px;}
.h1d{height:74.417619px;}
.h17{height:76.836216px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x11{left:204.646020px;}
.xe{left:205.874282px;}
.x15{left:207.078332px;}
.x38{left:208.122000px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.xc{left:218.928938px;}
.x2f{left:220.474770px;}
.x8{left:222.172500px;}
.x19{left:223.843798px;}
.x1{left:225.469500px;}
.x1e{left:227.527927px;}
.x37{left:233.020500px;}
.xb{left:244.377866px;}
.x28{left:246.361500px;}
.x2e{left:248.076125px;}
.x12{left:250.378500px;}
.x29{left:253.439711px;}
.x13{left:254.459306px;}
.xf{left:256.099500px;}
.x2c{left:257.263738px;}
.x27{left:259.332326px;}
.x1d{left:261.547414px;}
.x26{left:263.266500px;}
.x31{left:264.594000px;}
.x2{left:266.614500px;}
.x1c{left:268.939500px;}
.x18{left:271.903500px;}
.x2b{left:277.212000px;}
.x16{left:282.520500px;}
.x21{left:284.181000px;}
.x1b{left:285.843000px;}
.x4{left:293.067000px;}
.x10{left:304.971110px;}
.x5{left:307.503000px;}
.x24{left:318.412975px;}
.x25{left:324.782788px;}
.x23{left:334.448472px;}
.x35{left:337.936395px;}
.x34{left:343.657656px;}
.x33{left:359.361050px;}
.x30{left:400.471347px;}
.x2d{left:404.624713px;}
.x3{left:405.975000px;}
.x1a{left:410.873225px;}
.x20{left:420.750829px;}
.xd{left:423.174457px;}
.x2a{left:424.457520px;}
.x32{left:428.394749px;}
.x36{left:429.849786px;}
.x14{left:434.512683px;}
.x1f{left:443.810479px;}
.x17{left:445.296465px;}
.x22{left:450.964500px;}
.xa{left:454.699500px;}
.x39{left:708.960000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-8.026667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.003733pt;}
.ls4{letter-spacing:0.004533pt;}
.ls6a{letter-spacing:2.262546pt;}
.ls66{letter-spacing:2.272677pt;}
.ls65{letter-spacing:2.290152pt;}
.ls67{letter-spacing:2.290999pt;}
.ls69{letter-spacing:2.292011pt;}
.ls68{letter-spacing:2.294752pt;}
.ls3f{letter-spacing:2.310586pt;}
.ls3c{letter-spacing:2.320932pt;}
.ls3b{letter-spacing:2.338778pt;}
.ls3d{letter-spacing:2.339644pt;}
.ls3e{letter-spacing:2.340677pt;}
.ls5{letter-spacing:2.623067pt;}
.ls46{letter-spacing:2.655200pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.658321pt;}
.ls11{letter-spacing:2.817081pt;}
.ls10{letter-spacing:2.839067pt;}
.ls7c{letter-spacing:3.087857pt;}
.ls49{letter-spacing:3.654705pt;}
.lse{letter-spacing:3.666985pt;}
.ls48{letter-spacing:3.683229pt;}
.lsb{letter-spacing:3.683405pt;}
.lsa{letter-spacing:3.711728pt;}
.lsc{letter-spacing:3.713101pt;}
.lsd{letter-spacing:3.714741pt;}
.ls5d{letter-spacing:3.985217pt;}
.ls5a{letter-spacing:3.994941pt;}
.ls5c{letter-spacing:4.020843pt;}
.ls59{letter-spacing:4.025659pt;}
.ls5b{letter-spacing:4.027149pt;}
.ls25{letter-spacing:4.117342pt;}
.ls22{letter-spacing:4.135780pt;}
.ls21{letter-spacing:4.167581pt;}
.ls23{letter-spacing:4.169122pt;}
.ls24{letter-spacing:4.170964pt;}
.ls1c{letter-spacing:4.336732pt;}
.ls1b{letter-spacing:4.370579pt;}
.ls4e{letter-spacing:4.426939pt;}
.ls4b{letter-spacing:4.446762pt;}
.ls4a{letter-spacing:4.480955pt;}
.ls4c{letter-spacing:4.482612pt;}
.ls4d{letter-spacing:4.484592pt;}
.ls19{letter-spacing:4.521618pt;}
.ls16{letter-spacing:4.532652pt;}
.ls18{letter-spacing:4.562039pt;}
.ls15{letter-spacing:4.567504pt;}
.ls17{letter-spacing:4.569194pt;}
.ls7a{letter-spacing:4.639668pt;}
.ls2c{letter-spacing:4.653075pt;}
.ls63{letter-spacing:4.655332pt;}
.ls77{letter-spacing:4.660444pt;}
.ls29{letter-spacing:4.673911pt;}
.ls60{letter-spacing:4.676178pt;}
.ls73{letter-spacing:4.680152pt;}
.ls76{letter-spacing:4.696280pt;}
.ls78{letter-spacing:4.698017pt;}
.ls79{letter-spacing:4.700092pt;}
.ls70{letter-spacing:4.701109pt;}
.ls38{letter-spacing:4.706782pt;}
.ls28{letter-spacing:4.709850pt;}
.ls2a{letter-spacing:4.711592pt;}
.ls5f{letter-spacing:4.712134pt;}
.ls2b{letter-spacing:4.713673pt;}
.ls61{letter-spacing:4.713877pt;}
.ls62{letter-spacing:4.715959pt;}
.ls35{letter-spacing:4.727859pt;}
.ls74{letter-spacing:4.731589pt;}
.ls6f{letter-spacing:4.737257pt;}
.ls71{letter-spacing:4.739010pt;}
.ls72{letter-spacing:4.741103pt;}
.ls54{letter-spacing:4.747633pt;}
.ls34{letter-spacing:4.764213pt;}
.ls36{letter-spacing:4.765975pt;}
.ls37{letter-spacing:4.768080pt;}
.ls51{letter-spacing:4.768893pt;}
.ls50{letter-spacing:4.805562pt;}
.ls52{letter-spacing:4.807340pt;}
.ls53{letter-spacing:4.809463pt;}
.ls32{letter-spacing:4.901933pt;}
.ls2f{letter-spacing:4.923884pt;}
.ls2e{letter-spacing:4.961744pt;}
.ls30{letter-spacing:4.963580pt;}
.ls31{letter-spacing:4.965772pt;}
.ls6{letter-spacing:6.536174pt;}
.ls6d{letter-spacing:8.816479pt;}
.ls8{letter-spacing:9.717812pt;}
.ls6e{letter-spacing:10.048479pt;}
.ls6c{letter-spacing:10.094400pt;}
.ls9{letter-spacing:11.029812pt;}
.ls7{letter-spacing:11.075733pt;}
.ls44{letter-spacing:11.248479pt;}
.ls13{letter-spacing:11.760479pt;}
.ls20{letter-spacing:11.765812pt;}
.ls7d{letter-spacing:12.157505pt;}
.ls45{letter-spacing:12.683145pt;}
.ls3a{letter-spacing:13.237812pt;}
.ls14{letter-spacing:13.243145pt;}
.ls12{letter-spacing:13.283733pt;}
.ls57{letter-spacing:13.685812pt;}
.ls6b{letter-spacing:13.706853pt;}
.ls40{letter-spacing:13.997886pt;}
.ls42{letter-spacing:14.400479pt;}
.ls7e{letter-spacing:14.418838pt;}
.ls1e{letter-spacing:14.560479pt;}
.ls47{letter-spacing:16.180533pt;}
.ls58{letter-spacing:16.704479pt;}
.ls56{letter-spacing:16.745067pt;}
.ls43{letter-spacing:17.984479pt;}
.ls41{letter-spacing:18.025067pt;}
.ls1f{letter-spacing:18.272479pt;}
.ls1d{letter-spacing:18.313067pt;}
.lsf{letter-spacing:22.215163pt;}
.ls0{letter-spacing:23.827197pt;}
.ls5e{letter-spacing:24.102168pt;}
.ls26{letter-spacing:24.943500pt;}
.ls4f{letter-spacing:26.819082pt;}
.ls1a{letter-spacing:27.346265pt;}
.ls7b{letter-spacing:28.107830pt;}
.ls2d{letter-spacing:28.198511pt;}
.ls64{letter-spacing:28.202722pt;}
.ls75{letter-spacing:28.362600pt;}
.ls39{letter-spacing:28.514418pt;}
.ls55{letter-spacing:28.761900pt;}
.ls33{letter-spacing:29.696671pt;}
.ws9f{word-spacing:-29.781479pt;}
.wsf2{word-spacing:-28.844038pt;}
.wsb2{word-spacing:-28.595850pt;}
.ws12c{word-spacing:-28.434057pt;}
.ws115{word-spacing:-28.283263pt;}
.ws8e{word-spacing:-28.269555pt;}
.ws139{word-spacing:-28.188101pt;}
.ws69{word-spacing:-27.415162pt;}
.wse2{word-spacing:-26.895673pt;}
.ws7d{word-spacing:-25.014734pt;}
.ws107{word-spacing:-24.162892pt;}
.ws52{word-spacing:-22.278605pt;}
.ws13e{word-spacing:-19.128267pt;}
.wscd{word-spacing:-14.037861pt;}
.ws11f{word-spacing:-13.745997pt;}
.wsa5{word-spacing:-13.283467pt;}
.ws9b{word-spacing:-4.963580pt;}
.wsf0{word-spacing:-4.814039pt;}
.wsee{word-spacing:-4.807340pt;}
.wsec{word-spacing:-4.804389pt;}
.wsb0{word-spacing:-4.770265pt;}
.wsae{word-spacing:-4.765975pt;}
.wsac{word-spacing:-4.760697pt;}
.ws12a{word-spacing:-4.742191pt;}
.ws128{word-spacing:-4.739010pt;}
.ws126{word-spacing:-4.732677pt;}
.ws111{word-spacing:-4.713877pt;}
.ws89{word-spacing:-4.712970pt;}
.ws8b{word-spacing:-4.711592pt;}
.ws137{word-spacing:-4.707931pt;}
.ws133{word-spacing:-4.698500pt;}
.ws135{word-spacing:-4.698017pt;}
.ws67{word-spacing:-4.573608pt;}
.ws65{word-spacing:-4.569194pt;}
.ws63{word-spacing:-4.564435pt;}
.wse0{word-spacing:-4.491341pt;}
.wsde{word-spacing:-4.482612pt;}
.wsdc{word-spacing:-4.482342pt;}
.ws7b{word-spacing:-4.172879pt;}
.ws79{word-spacing:-4.169122pt;}
.ws77{word-spacing:-4.164509pt;}
.ws105{word-spacing:-4.031503pt;}
.ws103{word-spacing:-4.027149pt;}
.ws101{word-spacing:-4.023418pt;}
.ws4e{word-spacing:-3.714705pt;}
.ws50{word-spacing:-3.713101pt;}
.ws33{word-spacing:-3.188032pt;}
.ws32{word-spacing:-2.922363pt;}
.ws5e{word-spacing:-2.816095pt;}
.ws2f{word-spacing:-2.709827pt;}
.ws55{word-spacing:-2.656693pt;}
.ws25{word-spacing:-2.603559pt;}
.ws5d{word-spacing:-2.550426pt;}
.ws22{word-spacing:-2.444158pt;}
.wscb{word-spacing:-2.341362pt;}
.wsc9{word-spacing:-2.339644pt;}
.wsc7{word-spacing:-2.336665pt;}
.ws11a{word-spacing:-2.291145pt;}
.ws11c{word-spacing:-2.290999pt;}
.ws44{word-spacing:-2.284756pt;}
.ws4b{word-spacing:-2.231622pt;}
.ws131{word-spacing:-2.125355pt;}
.ws14a{word-spacing:-2.120035pt;}
.ws40{word-spacing:-2.072221pt;}
.ws143{word-spacing:-1.971261pt;}
.ws14c{word-spacing:-1.934067pt;}
.wsfb{word-spacing:-1.912819pt;}
.ws124{word-spacing:-1.859685pt;}
.ws97{word-spacing:-1.806551pt;}
.wsc1{word-spacing:-1.753418pt;}
.ws27{word-spacing:-1.700284pt;}
.ws21{word-spacing:-1.540882pt;}
.ws24{word-spacing:-1.487748pt;}
.ws146{word-spacing:-1.487744pt;}
.ws82{word-spacing:-1.434614pt;}
.ws45{word-spacing:-1.328347pt;}
.ws142{word-spacing:-1.301776pt;}
.wsf5{word-spacing:-1.275213pt;}
.ws152{word-spacing:-1.227389pt;}
.ws93{word-spacing:-1.222079pt;}
.ws157{word-spacing:-1.190195pt;}
.ws121{word-spacing:-1.168945pt;}
.ws169{word-spacing:-1.153002pt;}
.ws13c{word-spacing:-1.115811pt;}
.ws158{word-spacing:-1.115808pt;}
.ws6d{word-spacing:-0.956410pt;}
.ws122{word-spacing:-0.903276pt;}
.ws83{word-spacing:-0.850142pt;}
.ws2e{word-spacing:-0.797008pt;}
.ws3e{word-spacing:-0.743874pt;}
.ws20{word-spacing:-0.690740pt;}
.ws4c{word-spacing:-0.637606pt;}
.wsd7{word-spacing:-0.584473pt;}
.wsd0{word-spacing:-0.554516pt;}
.wsd1{word-spacing:-0.531339pt;}
.ws16e{word-spacing:-0.520710pt;}
.wsa3{word-spacing:-0.478205pt;}
.ws96{word-spacing:-0.425071pt;}
.wsb5{word-spacing:-0.371937pt;}
.ws16b{word-spacing:-0.371936pt;}
.ws48{word-spacing:-0.318803pt;}
.ws23{word-spacing:-0.265669pt;}
.ws149{word-spacing:-0.260355pt;}
.ws144{word-spacing:-0.223162pt;}
.ws3f{word-spacing:-0.212535pt;}
.wsbd{word-spacing:-0.159402pt;}
.wsaa{word-spacing:-0.106268pt;}
.ws30{word-spacing:-0.053134pt;}
.ws11d{word-spacing:-0.006595pt;}
.ws9c{word-spacing:-0.004325pt;}
.wsef{word-spacing:-0.004188pt;}
.wsaf{word-spacing:-0.004152pt;}
.ws129{word-spacing:-0.004129pt;}
.ws112{word-spacing:-0.004107pt;}
.ws8c{word-spacing:-0.004105pt;}
.ws136{word-spacing:-0.004093pt;}
.ws66{word-spacing:-0.003981pt;}
.wsdf{word-spacing:-0.003906pt;}
.ws7a{word-spacing:-0.003632pt;}
.ws104{word-spacing:-0.003509pt;}
.ws51{word-spacing:-0.003235pt;}
.wsca{word-spacing:-0.002038pt;}
.ws5f{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.wsff{word-spacing:0.000150pt;}
.ws4f{word-spacing:0.003626pt;}
.ws119{word-spacing:0.006059pt;}
.wsc6{word-spacing:0.006188pt;}
.ws4d{word-spacing:0.009820pt;}
.ws100{word-spacing:0.010651pt;}
.ws76{word-spacing:0.011026pt;}
.wsdb{word-spacing:0.011855pt;}
.ws62{word-spacing:0.012084pt;}
.ws132{word-spacing:0.012425pt;}
.ws88{word-spacing:0.012461pt;}
.ws10e{word-spacing:0.012467pt;}
.ws125{word-spacing:0.012533pt;}
.wsab{word-spacing:0.012605pt;}
.wseb{word-spacing:0.012714pt;}
.ws98{word-spacing:0.013127pt;}
.ws84{word-spacing:0.106268pt;}
.ws15a{word-spacing:0.148774pt;}
.wsb7{word-spacing:0.159402pt;}
.ws2a{word-spacing:0.212535pt;}
.wsf9{word-spacing:0.265669pt;}
.ws11{word-spacing:0.318803pt;}
.ws19{word-spacing:0.340058pt;}
.ws15e{word-spacing:0.371936pt;}
.ws41{word-spacing:0.371937pt;}
.ws130{word-spacing:0.425071pt;}
.wsfc{word-spacing:0.478205pt;}
.ws12{word-spacing:0.584473pt;}
.ws16f{word-spacing:0.632291pt;}
.ws1c{word-spacing:0.637606pt;}
.ws150{word-spacing:0.669485pt;}
.ws16c{word-spacing:0.706678pt;}
.ws81{word-spacing:0.743874pt;}
.ws29{word-spacing:0.797008pt;}
.wsd3{word-spacing:0.850142pt;}
.wsb{word-spacing:0.903276pt;}
.wse9{word-spacing:1.009543pt;}
.ws58{word-spacing:1.062677pt;}
.ws156{word-spacing:1.078614pt;}
.ws60{word-spacing:1.115811pt;}
.wsa6{word-spacing:1.168945pt;}
.ws28{word-spacing:1.222079pt;}
.ws147{word-spacing:1.227389pt;}
.ws1e{word-spacing:1.328347pt;}
.ws145{word-spacing:1.338970pt;}
.ws16a{word-spacing:1.376163pt;}
.ws5{word-spacing:1.381481pt;}
.ws15b{word-spacing:1.450550pt;}
.ws37{word-spacing:1.487748pt;}
.ws151{word-spacing:1.524938pt;}
.ws13d{word-spacing:1.540882pt;}
.ws1d{word-spacing:1.647150pt;}
.ws26{word-spacing:1.700284pt;}
.ws15f{word-spacing:1.748099pt;}
.ws42{word-spacing:1.753418pt;}
.ws2c{word-spacing:1.806551pt;}
.ws15d{word-spacing:1.859680pt;}
.wsc0{word-spacing:1.859685pt;}
.wsc{word-spacing:1.912819pt;}
.ws47{word-spacing:1.965953pt;}
.ws148{word-spacing:1.971261pt;}
.ws166{word-spacing:2.008454pt;}
.ws168{word-spacing:2.045648pt;}
.ws161{word-spacing:2.082842pt;}
.wsfd{word-spacing:2.125355pt;}
.ws6f{word-spacing:2.178489pt;}
.wsf6{word-spacing:2.337890pt;}
.ws167{word-spacing:2.343197pt;}
.wsc2{word-spacing:2.391024pt;}
.wsd9{word-spacing:2.497292pt;}
.wsd{word-spacing:2.550426pt;}
.ws94{word-spacing:2.656693pt;}
.wsc3{word-spacing:2.709827pt;}
.ws2b{word-spacing:2.816095pt;}
.ws14e{word-spacing:2.863907pt;}
.ws5c{word-spacing:2.869229pt;}
.ws141{word-spacing:2.901101pt;}
.ws16{word-spacing:2.922363pt;}
.ws153{word-spacing:2.975488pt;}
.wse{word-spacing:2.975497pt;}
.ws140{word-spacing:3.012682pt;}
.ws86{word-spacing:3.028630pt;}
.ws162{word-spacing:3.049875pt;}
.ws6{word-spacing:3.081764pt;}
.ws14b{word-spacing:3.124262pt;}
.wsa8{word-spacing:3.188032pt;}
.ws95{word-spacing:3.241166pt;}
.ws160{word-spacing:3.273037pt;}
.ws13{word-spacing:3.294300pt;}
.ws56{word-spacing:3.347434pt;}
.ws92{word-spacing:3.400567pt;}
.wsea{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.506835pt;}
.ws12f{word-spacing:3.613103pt;}
.ws14{word-spacing:3.666237pt;}
.wsfe{word-spacing:3.719371pt;}
.ws164{word-spacing:3.756554pt;}
.ws5b{word-spacing:3.772505pt;}
.ws7{word-spacing:3.825638pt;}
.ws154{word-spacing:3.868134pt;}
.ws6e{word-spacing:3.878772pt;}
.wsd2{word-spacing:3.931906pt;}
.ws14d{word-spacing:3.942522pt;}
.ws10b{word-spacing:3.985040pt;}
.ws1f{word-spacing:4.038174pt;}
.ws16d{word-spacing:4.091296pt;}
.ws3c{word-spacing:4.091308pt;}
.ws159{word-spacing:4.128490pt;}
.ws4{word-spacing:4.144442pt;}
.ws73{word-spacing:4.197575pt;}
.wsbe{word-spacing:4.250709pt;}
.ws38{word-spacing:4.356977pt;}
.ws165{word-spacing:4.426038pt;}
.ws8{word-spacing:4.516379pt;}
.ws11e{word-spacing:4.545354pt;}
.ws11b{word-spacing:4.553614pt;}
.wsbc{word-spacing:4.569513pt;}
.wsbf{word-spacing:4.622646pt;}
.wscc{word-spacing:4.641864pt;}
.ws14f{word-spacing:4.649200pt;}
.wsc8{word-spacing:4.650300pt;}
.wse5{word-spacing:4.675780pt;}
.ws15c{word-spacing:4.686394pt;}
.ws113{word-spacing:4.708960pt;}
.ws10f{word-spacing:4.718423pt;}
.wscf{word-spacing:4.728914pt;}
.wsa9{word-spacing:4.782048pt;}
.ws85{word-spacing:4.835182pt;}
.ws3{word-spacing:4.888316pt;}
.ws13f{word-spacing:4.941450pt;}
.ws9d{word-spacing:4.957557pt;}
.ws99{word-spacing:4.967522pt;}
.ws46{word-spacing:4.994583pt;}
.ws74{word-spacing:5.020609pt;}
.ws75{word-spacing:5.047717pt;}
.wsc4{word-spacing:5.100851pt;}
.wsbb{word-spacing:5.207119pt;}
.ws163{word-spacing:5.244298pt;}
.ws59{word-spacing:5.260253pt;}
.ws71{word-spacing:5.313387pt;}
.ws155{word-spacing:5.355878pt;}
.ws3a{word-spacing:5.366521pt;}
.wsd6{word-spacing:5.419654pt;}
.wsa7{word-spacing:5.472788pt;}
.ws87{word-spacing:5.525922pt;}
.ws118{word-spacing:5.579056pt;}
.ws49{word-spacing:5.632190pt;}
.ws72{word-spacing:5.738458pt;}
.ws4a{word-spacing:5.897859pt;}
.wsda{word-spacing:5.950993pt;}
.ws10{word-spacing:6.004127pt;}
.ws2{word-spacing:6.110395pt;}
.wsf7{word-spacing:6.163529pt;}
.wsb8{word-spacing:6.216662pt;}
.ws3d{word-spacing:6.322930pt;}
.wse8{word-spacing:6.376064pt;}
.wsa{word-spacing:6.429198pt;}
.wsb6{word-spacing:6.694867pt;}
.ws10d{word-spacing:6.748001pt;}
.ws91{word-spacing:6.854269pt;}
.ws15{word-spacing:6.907403pt;}
.ws57{word-spacing:7.013670pt;}
.wsf8{word-spacing:7.226206pt;}
.ws3b{word-spacing:7.279340pt;}
.ws61{word-spacing:7.332474pt;}
.wsa2{word-spacing:7.385607pt;}
.wsba{word-spacing:7.438741pt;}
.ws39{word-spacing:7.491875pt;}
.ws34{word-spacing:7.849855pt;}
.ws35{word-spacing:7.863812pt;}
.wse7{word-spacing:7.916946pt;}
.ws106{word-spacing:7.989883pt;}
.ws102{word-spacing:7.996317pt;}
.ws7c{word-spacing:8.271559pt;}
.ws78{word-spacing:8.278221pt;}
.wsf{word-spacing:8.501419pt;}
.wse4{word-spacing:8.607686pt;}
.ws36{word-spacing:8.873356pt;}
.wse1{word-spacing:8.893525pt;}
.wsdd{word-spacing:8.909686pt;}
.ws68{word-spacing:9.065303pt;}
.ws64{word-spacing:9.072604pt;}
.ws6c{word-spacing:9.192159pt;}
.ws138{word-spacing:9.320889pt;}
.ws134{word-spacing:9.337826pt;}
.ws8d{word-spacing:9.347823pt;}
.ws114{word-spacing:9.352356pt;}
.ws8a{word-spacing:9.364810pt;}
.ws110{word-spacing:9.369351pt;}
.ws12b{word-spacing:9.402219pt;}
.ws127{word-spacing:9.409790pt;}
.wsb1{word-spacing:9.455718pt;}
.wsad{word-spacing:9.463333pt;}
.wsf1{word-spacing:9.537786pt;}
.wsed{word-spacing:9.555118pt;}
.ws9e{word-spacing:9.847767pt;}
.ws9a{word-spacing:9.865662pt;}
.wsc5{word-spacing:10.361104pt;}
.ws18{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws54{word-spacing:14.908919pt;}
.ws1b{word-spacing:15.940267pt;}
.ws123{word-spacing:17.052414pt;}
.wsd8{word-spacing:17.388414pt;}
.wsa4{word-spacing:17.489748pt;}
.ws31{word-spacing:17.943081pt;}
.ws5a{word-spacing:17.948414pt;}
.ws10c{word-spacing:18.076414pt;}
.wsfa{word-spacing:18.231081pt;}
.ws13b{word-spacing:18.401748pt;}
.ws1a{word-spacing:19.128267pt;}
.ws70{word-spacing:20.103081pt;}
.ws43{word-spacing:22.055081pt;}
.ws9{word-spacing:22.444414pt;}
.wse6{word-spacing:22.604414pt;}
.wsb9{word-spacing:24.183081pt;}
.ws17{word-spacing:32.892143pt;}
.ws120{word-spacing:43.528990pt;}
.wsce{word-spacing:44.453227pt;}
.ws53{word-spacing:70.548917pt;}
.ws108{word-spacing:76.515823pt;}
.ws7e{word-spacing:79.213323pt;}
.wsa1{word-spacing:83.062208pt;}
.wse3{word-spacing:85.169630pt;}
.ws6a{word-spacing:86.814681pt;}
.ws13a{word-spacing:89.262319pt;}
.ws8f{word-spacing:89.520257pt;}
.ws116{word-spacing:89.563668pt;}
.ws12d{word-spacing:90.041182pt;}
.wsb3{word-spacing:90.553525pt;}
.wsf3{word-spacing:91.339455pt;}
.wsa0{word-spacing:94.308017pt;}
.wsd5{word-spacing:334.080488pt;}
.wsb4{word-spacing:388.206529pt;}
.ws10a{word-spacing:436.644911pt;}
.ws80{word-spacing:456.142672pt;}
.wsf4{word-spacing:519.357384pt;}
.ws12e{word-spacing:529.062547pt;}
.ws117{word-spacing:597.086123pt;}
.ws6b{word-spacing:601.982422pt;}
.ws90{word-spacing:655.404537pt;}
.ws109{word-spacing:762.248766pt;}
.ws7f{word-spacing:961.423197pt;}
.wsd4{word-spacing:1181.586836pt;}
._29{margin-left:-7.191119pt;}
._9{margin-left:-5.897859pt;}
._7{margin-left:-4.197576pt;}
._e{margin-left:-3.231029pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._49{width:1.796851pt;}
._2b{width:3.201894pt;}
._22{width:4.656846pt;}
._8b{width:8.241462pt;}
._8c{width:9.814296pt;}
._83{width:10.839308pt;}
._8d{width:11.929026pt;}
._a{width:12.943414pt;}
._b{width:13.937259pt;}
._38{width:14.930617pt;}
._f{width:15.887026pt;}
._5{width:16.865183pt;}
._10{width:17.831729pt;}
._6{width:19.372612pt;}
._3{width:20.509673pt;}
._d{width:21.731751pt;}
._8{width:23.538302pt;}
._16{width:24.972917pt;}
._12{width:26.566933pt;}
._4{width:28.107815pt;}
._14{width:29.542430pt;}
._2{width:31.030178pt;}
._21{width:32.433406pt;}
._13{width:33.378703pt;}
._15{width:34.483879pt;}
._48{width:36.290431pt;}
._11{width:38.256533pt;}
._6b{width:40.116069pt;}
._2a{width:44.239262pt;}
._5a{width:57.505711pt;}
._5c{width:58.544793pt;}
._7f{width:67.174359pt;}
._20{width:68.280394pt;}
._62{width:69.647025pt;}
._55{width:70.560923pt;}
._80{width:73.469136pt;}
._60{width:74.775008pt;}
._4a{width:75.664072pt;}
._59{width:80.081836pt;}
._4f{width:81.416869pt;}
._7a{width:84.675341pt;}
._7b{width:86.140004pt;}
._4d{width:87.315497pt;}
._81{width:90.586120pt;}
._50{width:93.024228pt;}
._4c{width:99.481644pt;}
._51{width:103.365452pt;}
._57{width:104.310948pt;}
._52{width:106.247377pt;}
._5b{width:108.606254pt;}
._5f{width:109.707157pt;}
._7e{width:111.164780pt;}
._4e{width:115.905942pt;}
._53{width:117.684071pt;}
._54{width:121.033924pt;}
._7c{width:124.951113pt;}
._5e{width:129.382288pt;}
._5d{width:132.002689pt;}
._61{width:133.059526pt;}
._2e{width:134.746032pt;}
._82{width:136.864310pt;}
._19{width:138.572924pt;}
._58{width:141.080506pt;}
._56{width:143.700907pt;}
._65{width:145.602172pt;}
._40{width:146.976607pt;}
._6c{width:150.360098pt;}
._8a{width:151.406023pt;}
._3b{width:152.920386pt;}
._46{width:153.812899pt;}
._33{width:154.881864pt;}
._6a{width:155.980467pt;}
._1c{width:157.138429pt;}
._3d{width:160.522173pt;}
._85{width:164.317237pt;}
._63{width:168.015233pt;}
._27{width:170.522310pt;}
._3f{width:171.479996pt;}
._88{width:175.329987pt;}
._31{width:176.437255pt;}
._84{width:177.491683pt;}
._44{width:178.488326pt;}
._68{width:180.017166pt;}
._7d{width:181.401340pt;}
._3e{width:185.813873pt;}
._86{width:186.961381pt;}
._78{width:190.344156pt;}
._71{width:191.452787pt;}
._24{width:194.061259pt;}
._2f{width:198.033308pt;}
._74{width:199.491285pt;}
._45{width:200.406687pt;}
._42{width:201.324829pt;}
._23{width:202.689434pt;}
._72{width:204.110885pt;}
._2c{width:209.706851pt;}
._6f{width:211.588530pt;}
._28{width:212.741660pt;}
._41{width:214.373556pt;}
._77{width:216.081450pt;}
._3c{width:221.651218pt;}
._26{width:227.050837pt;}
._66{width:228.090563pt;}
._39{width:235.485393pt;}
._18{width:237.449435pt;}
._36{width:239.724531pt;}
._87{width:243.815953pt;}
._47{width:248.688576pt;}
._89{width:258.203003pt;}
._34{width:260.570143pt;}
._1e{width:262.178687pt;}
._73{width:263.220222pt;}
._1f{width:264.442315pt;}
._1b{width:268.342435pt;}
._17{width:278.705351pt;}
._64{width:280.245977pt;}
._76{width:285.004676pt;}
._1d{width:286.685153pt;}
._3a{width:292.407291pt;}
._37{width:297.761894pt;}
._32{width:323.106977pt;}
._1a{width:324.005182pt;}
._25{width:326.278523pt;}
._75{width:332.328346pt;}
._35{width:339.453117pt;}
._43{width:344.008076pt;}
._69{width:346.386534pt;}
._6e{width:347.704009pt;}
._2d{width:353.377986pt;}
._30{width:381.144340pt;}
._6d{width:387.975495pt;}
._67{width:395.499657pt;}
._70{width:408.017856pt;}
._79{width:480.654578pt;}
._4b{width:509.806046pt;}
._c{width:1041.128843pt;}
.fs4{font-size:31.880533pt;}
.fs23{font-size:36.656084pt;}
.fs28{font-size:37.193600pt;}
.fs17{font-size:37.434391pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:45.436796pt;}
.fs22{font-size:45.819990pt;}
.fs16{font-size:46.792871pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:56.795853pt;}
.fs19{font-size:58.946860pt;}
.fs7{font-size:59.409763pt;}
.fs5{font-size:63.761067pt;}
.fs1f{font-size:64.434539pt;}
.fsf{font-size:66.706124pt;}
.fsd{font-size:69.947298pt;}
.fs1b{font-size:71.721973pt;}
.fsb{font-size:73.107283pt;}
.fs18{font-size:73.683390pt;}
.fs6{font-size:74.262017pt;}
.fs27{font-size:75.168457pt;}
.fs11{font-size:75.385669pt;}
.fs21{font-size:75.422225pt;}
.fs25{font-size:75.824343pt;}
.fs15{font-size:76.255791pt;}
.fs0{font-size:76.513067pt;}
.fs1d{font-size:76.917629pt;}
.fs13{font-size:79.417477pt;}
.fs1e{font-size:80.542972pt;}
.fse{font-size:83.382446pt;}
.fsc{font-size:87.433903pt;}
.fs1a{font-size:89.652242pt;}
.fsa{font-size:91.383875pt;}
.fs26{font-size:93.960336pt;}
.fs10{font-size:94.231850pt;}
.fs20{font-size:94.277545pt;}
.fs24{font-size:94.780191pt;}
.fs14{font-size:95.319500pt;}
.fs1c{font-size:96.146794pt;}
.fs12{font-size:99.271597pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.ye6{bottom:159.004000pt;}
.y6a{bottom:160.033333pt;}
.yca{bottom:161.113333pt;}
.y21a{bottom:162.937333pt;}
.y1e7{bottom:163.857333pt;}
.y8c{bottom:165.821333pt;}
.y1b1{bottom:166.378667pt;}
.y202{bottom:167.865333pt;}
.y1ce{bottom:168.604000pt;}
.y157{bottom:169.996000pt;}
.y27a{bottom:170.958667pt;}
.y10b{bottom:171.805333pt;}
.ye5{bottom:174.944000pt;}
.y69{bottom:175.973333pt;}
.yc9{bottom:177.054667pt;}
.y219{bottom:178.878667pt;}
.y1e6{bottom:179.797333pt;}
.y8b{bottom:181.761333pt;}
.y279{bottom:182.914667pt;}
.y201{bottom:183.805333pt;}
.y1cd{bottom:184.544000pt;}
.y156{bottom:185.937333pt;}
.y24e{bottom:186.900000pt;}
.y10a{bottom:187.745333pt;}
.y22e{bottom:188.692000pt;}
.ye4{bottom:190.884000pt;}
.y1b0{bottom:191.285333pt;}
.y68{bottom:191.913333pt;}
.yc8{bottom:192.994667pt;}
.y218{bottom:194.818667pt;}
.y1e5{bottom:195.738667pt;}
.y8a{bottom:197.701333pt;}
.y200{bottom:199.745333pt;}
.y174{bottom:199.850667pt;}
.y190{bottom:200.216000pt;}
.y1cc{bottom:200.484000pt;}
.y155{bottom:201.877333pt;}
.y109{bottom:203.685333pt;}
.y21{bottom:204.846667pt;}
.y278{bottom:205.418667pt;}
.ye3{bottom:206.824000pt;}
.yc7{bottom:208.934667pt;}
.y24d{bottom:209.481333pt;}
.y217{bottom:210.758667pt;}
.y1e4{bottom:211.678667pt;}
.y89{bottom:213.642667pt;}
.yab{bottom:214.334667pt;}
.y1ff{bottom:215.685333pt;}
.y18f{bottom:216.156000pt;}
.y1cb{bottom:216.424000pt;}
.y67{bottom:216.820000pt;}
.y277{bottom:217.373333pt;}
.y154{bottom:217.817333pt;}
.y108{bottom:219.625333pt;}
.y20{bottom:221.322667pt;}
.y24c{bottom:221.436000pt;}
.ye2{bottom:222.764000pt;}
.yc6{bottom:224.874667pt;}
.y1af{bottom:226.653333pt;}
.y216{bottom:226.698667pt;}
.y1e3{bottom:227.618667pt;}
.y88{bottom:229.582667pt;}
.yaa{bottom:230.274667pt;}
.y1f{bottom:230.544000pt;}
.y1fe{bottom:231.625333pt;}
.y1ca{bottom:232.364000pt;}
.y22d{bottom:233.190667pt;}
.y153{bottom:233.757333pt;}
.y173{bottom:234.690667pt;}
.y12b{bottom:238.704000pt;}
.ye1{bottom:238.705333pt;}
.y276{bottom:239.877333pt;}
.yc5{bottom:240.814667pt;}
.y1ae{bottom:242.593333pt;}
.y215{bottom:242.638667pt;}
.y1e2{bottom:243.558667pt;}
.y24b{bottom:244.018667pt;}
.y107{bottom:244.532000pt;}
.ya9{bottom:246.214667pt;}
.y1e{bottom:247.021333pt;}
.y18e{bottom:247.461333pt;}
.y1fd{bottom:247.565333pt;}
.y1c9{bottom:248.305333pt;}
.y22c{bottom:249.130667pt;}
.y172{bottom:250.630667pt;}
.y275{bottom:251.832000pt;}
.y66{bottom:252.188000pt;}
.y87{bottom:254.489333pt;}
.ye0{bottom:254.645333pt;}
.y24a{bottom:255.973333pt;}
.yc4{bottom:256.754667pt;}
.y1ad{bottom:258.533333pt;}
.y214{bottom:258.578667pt;}
.y152{bottom:258.664000pt;}
.y1e1{bottom:259.498667pt;}
.ya8{bottom:262.156000pt;}
.y43{bottom:262.814667pt;}
.y1fc{bottom:263.506667pt;}
.y274{bottom:263.788000pt;}
.y1c8{bottom:264.245333pt;}
.y22b{bottom:265.070667pt;}
.y249{bottom:267.929333pt;}
.y65{bottom:268.128000pt;}
.ydf{bottom:270.585333pt;}
.yc3{bottom:272.696000pt;}
.y1ac{bottom:274.473333pt;}
.y213{bottom:274.520000pt;}
.y1e0{bottom:275.440000pt;}
.ya7{bottom:278.096000pt;}
.y42{bottom:278.754667pt;}
.y1fb{bottom:279.446667pt;}
.y1c7{bottom:280.185333pt;}
.y171{bottom:280.762667pt;}
.y22a{bottom:281.012000pt;}
.y64{bottom:284.068000pt;}
.y273{bottom:286.290667pt;}
.yde{bottom:286.525333pt;}
.yc2{bottom:288.636000pt;}
.y86{bottom:289.856000pt;}
.y1ab{bottom:290.413333pt;}
.y212{bottom:290.460000pt;}
.y248{bottom:290.510667pt;}
.y1df{bottom:291.380000pt;}
.y151{bottom:294.030667pt;}
.ya6{bottom:294.036000pt;}
.y18d{bottom:294.317483pt;}
.y41{bottom:294.694667pt;}
.y106{bottom:295.264000pt;}
.y229{bottom:296.952000pt;}
.y272{bottom:298.246667pt;}
.y1d{bottom:298.545333pt;}
.y63{bottom:300.008000pt;}
.ydd{bottom:302.465333pt;}
.y247{bottom:302.466667pt;}
.y1fa{bottom:304.353333pt;}
.yc1{bottom:304.576000pt;}
.y85{bottom:305.796000pt;}
.y1aa{bottom:306.354667pt;}
.y211{bottom:306.400000pt;}
.y1de{bottom:307.320000pt;}
.y150{bottom:309.972000pt;}
.ya5{bottom:309.976000pt;}
.y40{bottom:310.634667pt;}
.y1c{bottom:314.485333pt;}
.y62{bottom:315.948000pt;}
.y12a{bottom:318.405333pt;}
.yc0{bottom:320.516000pt;}
.y271{bottom:320.750667pt;}
.y84{bottom:321.736000pt;}
.y1a9{bottom:322.294667pt;}
.y1c6{bottom:322.336000pt;}
.y18c{bottom:323.161232pt;}
.y1dd{bottom:323.260000pt;}
.y246{bottom:325.048000pt;}
.y14f{bottom:325.912000pt;}
.ya4{bottom:325.916000pt;}
.y3f{bottom:326.576000pt;}
.y228{bottom:326.640000pt;}
.y170{bottom:326.969646pt;}
.ydc{bottom:327.372000pt;}
.y210{bottom:331.306667pt;}
.y61{bottom:331.888000pt;}
.y270{bottom:332.705333pt;}
.y129{bottom:334.345333pt;}
.ybf{bottom:336.456000pt;}
.y245{bottom:337.002667pt;}
.y83{bottom:337.677333pt;}
.y1a8{bottom:338.234667pt;}
.y1b{bottom:339.736000pt;}
.y105{bottom:341.247304pt;}
.y14e{bottom:341.852000pt;}
.ya3{bottom:341.857333pt;}
.y3e{bottom:342.516000pt;}
.y26f{bottom:344.660000pt;}
.y60{bottom:347.829333pt;}
.y1dc{bottom:348.166667pt;}
.y128{bottom:350.286667pt;}
.y18b{bottom:352.004980pt;}
.ybe{bottom:352.396000pt;}
.y82{bottom:353.617333pt;}
.y16f{bottom:353.865049pt;}
.y1a7{bottom:354.174667pt;}
.y1f9{bottom:355.085333pt;}
.y1a{bottom:355.677333pt;}
.y14d{bottom:357.792000pt;}
.ya2{bottom:357.797333pt;}
.y3d{bottom:358.456000pt;}
.y244{bottom:359.585333pt;}
.y5f{bottom:363.769333pt;}
.y127{bottom:366.226667pt;}
.y26e{bottom:367.164000pt;}
.y104{bottom:367.479405pt;}
.y1c5{bottom:368.320830pt;}
.ybd{bottom:368.337333pt;}
.y81{bottom:369.557333pt;}
.y1a6{bottom:370.114667pt;}
.y243{bottom:371.540000pt;}
.y19{bottom:371.617333pt;}
.ya1{bottom:373.737333pt;}
.ydb{bottom:376.872000pt;}
.yf5{bottom:377.392000pt;}
.y26d{bottom:379.120000pt;}
.y5e{bottom:379.709333pt;}
.y16e{bottom:380.760452pt;}
.y18a{bottom:380.848729pt;}
.y20f{bottom:382.038667pt;}
.y126{bottom:382.166667pt;}
.y3c{bottom:383.362667pt;}
.y80{bottom:385.497333pt;}
.y227{bottom:385.762667pt;}
.y1a5{bottom:386.056000pt;}
.y18{bottom:387.557333pt;}
.ya0{bottom:389.677333pt;}
.y26c{bottom:391.074667pt;}
.ybc{bottom:393.244000pt;}
.y242{bottom:394.122667pt;}
.y103{bottom:394.582546pt;}
.y1c4{bottom:395.423971pt;}
.y5d{bottom:395.649333pt;}
.y125{bottom:398.106667pt;}
.y1db{bottom:398.898667pt;}
.y14c{bottom:399.942667pt;}
.y1f8{bottom:401.069498pt;}
.y7f{bottom:401.437333pt;}
.y1a4{bottom:401.996000pt;}
.y17{bottom:403.497333pt;}
.y9f{bottom:405.617333pt;}
.y241{bottom:406.077333pt;}
.y16d{bottom:408.553492pt;}
.y189{bottom:409.692478pt;}
.y5c{bottom:411.589333pt;}
.y26b{bottom:413.578667pt;}
.y124{bottom:414.046667pt;}
.y7e{bottom:417.377333pt;}
.y1a3{bottom:417.936000pt;}
.y16{bottom:419.437333pt;}
.y3b{bottom:421.386667pt;}
.y9e{bottom:421.557333pt;}
.y1c3{bottom:421.653879pt;}
.yda{bottom:422.855304pt;}
.yf4{bottom:423.375304pt;}
.y26a{bottom:425.533333pt;}
.y1f7{bottom:427.299405pt;}
.y5b{bottom:427.529333pt;}
.y20e{bottom:428.021970pt;}
.y240{bottom:428.660000pt;}
.y123{bottom:429.988000pt;}
.y226{bottom:431.746831pt;}
.y102{bottom:431.760000pt;}
.y7d{bottom:433.318667pt;}
.y1a2{bottom:433.876000pt;}
.y15{bottom:435.378667pt;}
.ybb{bottom:435.394667pt;}
.y16c{bottom:435.448895pt;}
.y3a{bottom:437.326667pt;}
.y9d{bottom:437.498667pt;}
.y188{bottom:439.498892pt;}
.y23f{bottom:440.614667pt;}
.y14b{bottom:441.862642pt;}
.y5a{bottom:443.470667pt;}
.y1da{bottom:444.881970pt;}
.y122{bottom:445.928000pt;}
.y101{bottom:447.700000pt;}
.y269{bottom:448.037333pt;}
.y1c2{bottom:448.759214pt;}
.yd9{bottom:449.085211pt;}
.y7c{bottom:449.258667pt;}
.yf3{bottom:449.605211pt;}
.y1a1{bottom:449.816000pt;}
.y14{bottom:451.318667pt;}
.y23e{bottom:452.569333pt;}
.y39{bottom:453.266667pt;}
.y9c{bottom:453.438667pt;}
.y20d{bottom:454.251878pt;}
.y1f6{bottom:454.404740pt;}
.y14a{bottom:455.900362pt;}
.y225{bottom:457.976739pt;}
.y59{bottom:459.410667pt;}
.y268{bottom:459.993333pt;}
.y121{bottom:461.868000pt;}
.y16b{bottom:463.239686pt;}
.y7b{bottom:465.198667pt;}
.y1a0{bottom:465.756000pt;}
.y13{bottom:467.258667pt;}
.y187{bottom:468.342640pt;}
.y38{bottom:469.206667pt;}
.y9b{bottom:469.378667pt;}
.y149{bottom:469.939257pt;}
.y1d9{bottom:471.111878pt;}
.y23d{bottom:475.152000pt;}
.y58{bottom:475.350667pt;}
.yd8{bottom:476.190546pt;}
.yf2{bottom:476.710546pt;}
.y120{bottom:477.808000pt;}
.y100{bottom:479.005333pt;}
.y7a{bottom:481.138667pt;}
.y20c{bottom:481.357213pt;}
.yba{bottom:481.378780pt;}
.y19f{bottom:481.697333pt;}
.y267{bottom:482.496000pt;}
.y12{bottom:483.198667pt;}
.y148{bottom:483.976977pt;}
.y224{bottom:485.082074pt;}
.y37{bottom:485.148000pt;}
.y9a{bottom:485.318667pt;}
.y1c1{bottom:485.361333pt;}
.y23c{bottom:487.106667pt;}
.y57{bottom:491.290667pt;}
.y1f5{bottom:491.581333pt;}
.y11f{bottom:493.748000pt;}
.y266{bottom:494.452000pt;}
.y79{bottom:497.078667pt;}
.y19e{bottom:497.637333pt;}
.y147{bottom:498.014698pt;}
.y186{bottom:498.149054pt;}
.y1d8{bottom:498.217213pt;}
.y11{bottom:499.138667pt;}
.y16a{bottom:501.038667pt;}
.y36{bottom:501.088000pt;}
.y99{bottom:501.258667pt;}
.y265{bottom:506.406667pt;}
.y56{bottom:507.230667pt;}
.y1f4{bottom:507.521333pt;}
.yb9{bottom:507.608688pt;}
.y11e{bottom:509.688000pt;}
.y23b{bottom:509.689333pt;}
.y146{bottom:512.052418pt;}
.yd7{bottom:512.518667pt;}
.yf1{bottom:513.396000pt;}
.y19d{bottom:513.577333pt;}
.y10{bottom:515.078667pt;}
.y169{bottom:516.978667pt;}
.y35{bottom:517.028000pt;}
.y98{bottom:517.198667pt;}
.y20b{bottom:518.534667pt;}
.y223{bottom:521.517333pt;}
.y23a{bottom:521.644000pt;}
.y55{bottom:523.172000pt;}
.y11d{bottom:525.629333pt;}
.yff{bottom:525.776163pt;}
.y145{bottom:526.090138pt;}
.yd6{bottom:528.458667pt;}
.y264{bottom:528.910667pt;}
.yf0{bottom:529.336000pt;}
.y19c{bottom:529.517333pt;}
.y1c0{bottom:530.656450pt;}
.yf{bottom:531.020000pt;}
.y168{bottom:532.920000pt;}
.y34{bottom:532.968000pt;}
.y97{bottom:533.140000pt;}
.yb8{bottom:533.838595pt;}
.y20a{bottom:534.474667pt;}
.y1d7{bottom:535.394667pt;}
.y222{bottom:537.457333pt;}
.y185{bottom:538.484000pt;}
.y1f3{bottom:538.826667pt;}
.y54{bottom:539.112000pt;}
.y78{bottom:539.230667pt;}
.y144{bottom:540.127859pt;}
.y263{bottom:540.865333pt;}
.y11c{bottom:541.569333pt;}
.y239{bottom:544.226667pt;}
.y19b{bottom:545.457333pt;}
.ye{bottom:546.960000pt;}
.y167{bottom:548.860000pt;}
.y33{bottom:548.908000pt;}
.y1d6{bottom:551.334667pt;}
.y262{bottom:552.821333pt;}
.y143{bottom:554.166753pt;}
.yfe{bottom:554.374118pt;}
.y184{bottom:554.424000pt;}
.y1bf{bottom:554.819099pt;}
.y53{bottom:555.052000pt;}
.y238{bottom:556.181333pt;}
.y11b{bottom:557.509333pt;}
.yef{bottom:560.150667pt;}
.yb7{bottom:560.943930pt;}
.y19a{bottom:561.397333pt;}
.yd5{bottom:561.637333pt;}
.yd{bottom:562.900000pt;}
.y166{bottom:564.800000pt;}
.y32{bottom:564.848000pt;}
.y209{bottom:565.780000pt;}
.y221{bottom:568.021333pt;}
.y142{bottom:568.204474pt;}
.y183{bottom:570.364000pt;}
.y52{bottom:570.992000pt;}
.y11a{bottom:573.449333pt;}
.y96{bottom:575.290667pt;}
.y261{bottom:575.325333pt;}
.y199{bottom:577.338667pt;}
.yc{bottom:578.840000pt;}
.y1be{bottom:578.981748pt;}
.y1f2{bottom:580.649058pt;}
.y165{bottom:580.740000pt;}
.y31{bottom:580.789333pt;}
.y77{bottom:582.150605pt;}
.y141{bottom:582.242194pt;}
.y1d5{bottom:582.640000pt;}
.yfd{bottom:582.969681pt;}
.y237{bottom:583.213333pt;}
.y182{bottom:586.304000pt;}
.y51{bottom:586.932000pt;}
.y260{bottom:587.280000pt;}
.y119{bottom:589.389333pt;}
.y198{bottom:593.278667pt;}
.y1f1{bottom:594.394917pt;}
.yb{bottom:594.780000pt;}
.y140{bottom:596.279915pt;}
.y164{bottom:596.680000pt;}
.y30{bottom:596.729333pt;}
.yb6{bottom:597.545333pt;}
.y76{bottom:599.189189pt;}
.y181{bottom:602.245333pt;}
.y50{bottom:602.872000pt;}
.y1bd{bottom:603.144397pt;}
.y118{bottom:605.329333pt;}
.yee{bottom:607.318015pt;}
.y1f0{bottom:608.140776pt;}
.yd4{bottom:608.299904pt;}
.y197{bottom:609.218667pt;}
.y25f{bottom:609.784000pt;}
.y13f{bottom:610.317635pt;}
.ya{bottom:610.720000pt;}
.yfc{bottom:611.565244pt;}
.y208{bottom:612.498919pt;}
.y163{bottom:612.620000pt;}
.y2f{bottom:612.669333pt;}
.y220{bottom:614.658518pt;}
.y75{bottom:616.796440pt;}
.y180{bottom:618.185333pt;}
.y4f{bottom:618.813333pt;}
.y236{bottom:620.872000pt;}
.y117{bottom:621.270667pt;}
.y95{bottom:621.274831pt;}
.y25e{bottom:621.738667pt;}
.y1ef{bottom:621.886635pt;}
.y13e{bottom:624.355355pt;}
.y196{bottom:625.158667pt;}
.y9{bottom:626.661333pt;}
.y1bc{bottom:627.309067pt;}
.y162{bottom:628.561333pt;}
.y2e{bottom:628.609333pt;}
.y1d4{bottom:629.309155pt;}
.y17f{bottom:634.125333pt;}
.y4e{bottom:634.753333pt;}
.y1ee{bottom:635.632494pt;}
.yd3{bottom:636.571540pt;}
.yed{bottom:637.099196pt;}
.y116{bottom:637.210667pt;}
.y13d{bottom:638.394250pt;}
.yfb{bottom:640.160807pt;}
.y207{bottom:640.932691pt;}
.y195{bottom:641.098667pt;}
.y8{bottom:642.601333pt;}
.y21f{bottom:642.846336pt;}
.yb5{bottom:643.124158pt;}
.y286{bottom:643.852000pt;}
.y25d{bottom:644.242667pt;}
.y161{bottom:644.501333pt;}
.y94{bottom:647.504739pt;}
.y74{bottom:648.292000pt;}
.y1ed{bottom:649.378353pt;}
.y17e{bottom:650.065333pt;}
.y4d{bottom:650.693333pt;}
.y1bb{bottom:651.471716pt;}
.y13c{bottom:652.431970pt;}
.y115{bottom:653.150667pt;}
.y2d{bottom:653.516000pt;}
.y285{bottom:655.808000pt;}
.y25c{bottom:656.198667pt;}
.y194{bottom:657.038667pt;}
.y1d3{bottom:657.592135pt;}
.y7{bottom:658.541333pt;}
.y160{bottom:660.441333pt;}
.y1ec{bottom:663.125362pt;}
.yd2{bottom:664.840812pt;}
.y235{bottom:665.704000pt;}
.y17d{bottom:666.005333pt;}
.y13b{bottom:666.469691pt;}
.y4c{bottom:666.633333pt;}
.yec{bottom:666.880376pt;}
.yb4{bottom:668.138641pt;}
.y25b{bottom:668.153333pt;}
.yfa{bottom:668.756370pt;}
.y114{bottom:669.090667pt;}
.y206{bottom:669.366463pt;}
.y21e{bottom:671.034154pt;}
.y193{bottom:672.980000pt;}
.y93{bottom:674.610074pt;}
.y1ba{bottom:675.634365pt;}
.y15f{bottom:676.381333pt;}
.y1eb{bottom:676.871221pt;}
.y284{bottom:678.389333pt;}
.y13a{bottom:680.507411pt;}
.y17c{bottom:681.945333pt;}
.y6{bottom:682.452000pt;}
.y4b{bottom:682.573333pt;}
.y113{bottom:685.030667pt;}
.y1d2{bottom:685.875114pt;}
.y192{bottom:688.920000pt;}
.y283{bottom:690.344000pt;}
.y25a{bottom:690.657333pt;}
.y1ea{bottom:691.074701pt;}
.y2c{bottom:691.540000pt;}
.y73{bottom:692.958788pt;}
.yd1{bottom:693.110083pt;}
.yb3{bottom:693.153124pt;}
.y139{bottom:694.545132pt;}
.y234{bottom:695.392000pt;}
.yeb{bottom:696.664047pt;}
.y17b{bottom:697.886667pt;}
.yf9{bottom:698.306314pt;}
.y4a{bottom:698.513333pt;}
.y205{bottom:698.749217pt;}
.y1b9{bottom:699.797014pt;}
.y21d{bottom:700.162745pt;}
.y112{bottom:700.970667pt;}
.y282{bottom:702.300000pt;}
.y259{bottom:702.612000pt;}
.y1e9{bottom:704.821709pt;}
.y191{bottom:704.860000pt;}
.y2b{bottom:707.480000pt;}
.y138{bottom:708.582852pt;}
.y92{bottom:711.210667pt;}
.y17a{bottom:713.826667pt;}
.y49{bottom:714.454667pt;}
.y258{bottom:714.568000pt;}
.y1d1{bottom:715.102043pt;}
.y72{bottom:715.237170pt;}
.y15e{bottom:716.188000pt;}
.y111{bottom:716.912000pt;}
.yb2{bottom:718.167606pt;}
.y1e8{bottom:719.025189pt;}
.yd0{bottom:721.379354pt;}
.y137{bottom:722.621747pt;}
.y2a{bottom:723.420000pt;}
.y1b8{bottom:724.766096pt;}
.y281{bottom:724.881333pt;}
.yf8{bottom:726.901877pt;}
.y204{bottom:727.182989pt;}
.yea{bottom:727.436688pt;}
.y21c{bottom:728.350562pt;}
.y179{bottom:729.766667pt;}
.y48{bottom:730.394667pt;}
.y110{bottom:732.852000pt;}
.y136{bottom:736.659467pt;}
.y280{bottom:736.837333pt;}
.y257{bottom:737.070667pt;}
.y71{bottom:737.517415pt;}
.y29{bottom:739.361333pt;}
.y233{bottom:740.224000pt;}
.yb1{bottom:743.182089pt;}
.y1d0{bottom:743.385023pt;}
.y47{bottom:746.334667pt;}
.y10f{bottom:748.792000pt;}
.y1b7{bottom:748.928745pt;}
.y256{bottom:749.026667pt;}
.ycf{bottom:750.592116pt;}
.y135{bottom:750.697187pt;}
.y28{bottom:755.301333pt;}
.y232{bottom:756.164000pt;}
.yf7{bottom:756.451821pt;}
.y203{bottom:756.565742pt;}
.ye9{bottom:757.217868pt;}
.y21b{bottom:757.476795pt;}
.y91{bottom:757.591201pt;}
.y70{bottom:759.795797pt;}
.y15d{bottom:760.796704pt;}
.y255{bottom:760.981333pt;}
.y46{bottom:762.274667pt;}
.y10e{bottom:764.732000pt;}
.y134{bottom:764.734908pt;}
.yb0{bottom:768.198664pt;}
.y27{bottom:771.241333pt;}
.y5{bottom:771.374667pt;}
.y178{bottom:771.917333pt;}
.y1cf{bottom:772.609585pt;}
.y1b6{bottom:773.091394pt;}
.y45{bottom:778.214667pt;}
.y133{bottom:778.772628pt;}
.yce{bottom:778.861388pt;}
.y10d{bottom:780.672000pt;}
.y6f{bottom:782.074178pt;}
.y15c{bottom:782.901499pt;}
.y27f{bottom:783.329333pt;}
.y254{bottom:783.485333pt;}
.y90{bottom:785.006089pt;}
.y231{bottom:785.853333pt;}
.y26{bottom:787.181333pt;}
.ye8{bottom:787.993000pt;}
.y4{bottom:791.964000pt;}
.y132{bottom:792.810349pt;}
.yaf{bottom:794.045916pt;}
.y44{bottom:794.154667pt;}
.y27e{bottom:795.284000pt;}
.y253{bottom:795.440000pt;}
.yf6{bottom:796.612000pt;}
.y10c{bottom:796.613333pt;}
.y1b5{bottom:797.254043pt;}
.y25{bottom:803.121333pt;}
.y6e{bottom:804.352560pt;}
.y15b{bottom:805.006294pt;}
.y131{bottom:806.849243pt;}
.y252{bottom:807.396000pt;}
.ycd{bottom:808.074150pt;}
.y3{bottom:812.553333pt;}
.y8f{bottom:813.333659pt;}
.y27d{bottom:817.866667pt;}
.y177{bottom:817.900637pt;}
.y24{bottom:819.061333pt;}
.yae{bottom:819.895261pt;}
.y130{bottom:820.886964pt;}
.y1b4{bottom:822.223124pt;}
.y6d{bottom:827.374486pt;}
.y15a{bottom:827.848840pt;}
.ye7{bottom:828.493333pt;}
.y27c{bottom:829.821333pt;}
.y251{bottom:829.900000pt;}
.y230{bottom:830.685333pt;}
.y12f{bottom:835.392021pt;}
.y8e{bottom:840.750839pt;}
.y27b{bottom:841.776000pt;}
.y250{bottom:841.854667pt;}
.y23{bottom:843.968000pt;}
.y176{bottom:844.130545pt;}
.ycc{bottom:844.433333pt;}
.yad{bottom:844.909744pt;}
.y1b3{bottom:846.385773pt;}
.y22f{bottom:846.625333pt;}
.y6c{bottom:849.652867pt;}
.y12e{bottom:849.898253pt;}
.y159{bottom:849.953635pt;}
.y2{bottom:852.404000pt;}
.ycb{bottom:860.373333pt;}
.y12d{bottom:863.935973pt;}
.y24f{bottom:864.358667pt;}
.y8d{bottom:869.078409pt;}
.yac{bottom:870.759089pt;}
.y175{bottom:871.235879pt;}
.y1b2{bottom:871.354854pt;}
.y6b{bottom:872.674794pt;}
.y158{bottom:872.796181pt;}
.y1{bottom:876.313333pt;}
.y12c{bottom:878.442204pt;}
.h9{height:21.933807pt;}
.h7{height:22.922103pt;}
.h24{height:25.589197pt;}
.h25{height:25.775863pt;}
.h23{height:27.523264pt;}
.h3{height:29.159939pt;}
.h8{height:29.244954pt;}
.h20{height:31.524153pt;}
.h19{height:32.193495pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hd{height:36.874903pt;}
.h10{height:37.299379pt;}
.h11{height:39.075547pt;}
.h5{height:39.319061pt;}
.he{height:39.850400pt;}
.hb{height:44.122658pt;}
.h6{height:46.258122pt;}
.h12{height:46.263455pt;}
.hc{height:46.336759pt;}
.h1a{height:48.774533pt;}
.h1b{height:50.694172pt;}
.hf{height:51.092268pt;}
.h1{height:52.640990pt;}
.ha{height:52.947042pt;}
.h1e{height:55.413565pt;}
.h15{height:57.367123pt;}
.h14{height:60.154525pt;}
.h1c{height:61.680742pt;}
.h13{height:62.872106pt;}
.h22{height:64.644711pt;}
.h16{height:64.831513pt;}
.h1f{height:64.862951pt;}
.h21{height:65.208772pt;}
.h18{height:65.579816pt;}
.h1d{height:66.148995pt;}
.h17{height:68.298859pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x11{left:181.907573pt;}
.xe{left:182.999362pt;}
.x15{left:184.069628pt;}
.x38{left:184.997333pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.xc{left:194.603501pt;}
.x2f{left:195.977574pt;}
.x8{left:197.486667pt;}
.x19{left:198.972265pt;}
.x1{left:200.417333pt;}
.x1e{left:202.247046pt;}
.x37{left:207.129333pt;}
.xb{left:217.224770pt;}
.x28{left:218.988000pt;}
.x2e{left:220.512111pt;}
.x12{left:222.558667pt;}
.x29{left:225.279743pt;}
.x13{left:226.186050pt;}
.xf{left:227.644000pt;}
.x2c{left:228.678878pt;}
.x27{left:230.517623pt;}
.x1d{left:232.486590pt;}
.x26{left:234.014667pt;}
.x31{left:235.194667pt;}
.x2{left:236.990667pt;}
.x1c{left:239.057333pt;}
.x18{left:241.692000pt;}
.x2b{left:246.410667pt;}
.x16{left:251.129333pt;}
.x21{left:252.605333pt;}
.x1b{left:254.082667pt;}
.x4{left:260.504000pt;}
.x10{left:271.085431pt;}
.x5{left:273.336000pt;}
.x24{left:283.033755pt;}
.x25{left:288.695812pt;}
.x23{left:297.287531pt;}
.x35{left:300.387907pt;}
.x34{left:305.473472pt;}
.x33{left:319.432044pt;}
.x30{left:355.974531pt;}
.x2d{left:359.666412pt;}
.x3{left:360.866667pt;}
.x1a{left:365.220645pt;}
.x20{left:374.000736pt;}
.xd{left:376.155073pt;}
.x2a{left:377.295573pt;}
.x32{left:380.795333pt;}
.x36{left:382.088699pt;}
.x14{left:386.233496pt;}
.x1f{left:394.498203pt;}
.x17{left:395.819080pt;}
.x22{left:400.857333pt;}
.xa{left:404.177333pt;}
.x39{left:630.186667pt;}
}




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