
    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_4422eeee4b5d242a3c108c09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_fa7dc620836ba4006da96894.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_cc481133a3328eada2c74abc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_95b1cc52eb2f04274ef1b419.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_0b0c825e33bd3250d9cadd62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_4c97c9520d9d96bae22c2295.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_e433f1c643599d870c249bef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_fe91da864fcb1076ef0526ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_4701577aa8fc1c3db2366146.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_404d66015c177d2735d79e28.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_42e546876d0fa2dc0ca16c36.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a8ed9f2e8c517aba463cffc1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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);}
.v3{vertical-align:-21.000000px;}
.v7{vertical-align:-18.899780px;}
.v6{vertical-align:-17.850037px;}
.v4{vertical-align:-10.859377px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.749927px;}
.v2{vertical-align:21.000000px;}
.ls49{letter-spacing:-4.074000px;}
.ls55{letter-spacing:-3.906000px;}
.ls46{letter-spacing:-3.864000px;}
.ls54{letter-spacing:-3.780000px;}
.ls6e{letter-spacing:-3.105000px;}
.ls44{letter-spacing:-1.722000px;}
.ls52{letter-spacing:-1.554000px;}
.ls40{letter-spacing:-1.344000px;}
.ls82{letter-spacing:-1.305000px;}
.ls84{letter-spacing:-1.170000px;}
.ls70{letter-spacing:-1.125000px;}
.ls48{letter-spacing:-1.092000px;}
.ls50{letter-spacing:-0.924000px;}
.ls78{letter-spacing:-0.900000px;}
.ls1f{letter-spacing:-0.810000px;}
.ls56{letter-spacing:-0.798000px;}
.ls2e{letter-spacing:-0.756000px;}
.ls83{letter-spacing:-0.720000px;}
.ls45{letter-spacing:-0.714000px;}
.ls1e{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls73{letter-spacing:-0.630000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls3a{letter-spacing:-0.561600px;}
.ls43{letter-spacing:-0.546000px;}
.ls20{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.526500px;}
.ls57{letter-spacing:-0.504000px;}
.ls74{letter-spacing:-0.495000px;}
.ls3d{letter-spacing:-0.491400px;}
.ls29{letter-spacing:-0.486000px;}
.ls51{letter-spacing:-0.462000px;}
.ls72{letter-spacing:-0.450000px;}
.ls3e{letter-spacing:-0.420000px;}
.ls88{letter-spacing:-0.405000px;}
.ls35{letter-spacing:-0.378000px;}
.ls4e{letter-spacing:-0.351000px;}
.ls3f{letter-spacing:-0.336000px;}
.ls39{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.270000px;}
.ls47{letter-spacing:-0.252000px;}
.ls6f{letter-spacing:-0.225000px;}
.ls32{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.210600px;}
.ls4f{letter-spacing:-0.210000px;}
.ls77{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.175500px;}
.ls4a{letter-spacing:-0.168000px;}
.ls4c{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.140400px;}
.ls71{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.105300px;}
.ls75{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls76{letter-spacing:-0.045000px;}
.ls60{letter-spacing:-0.035100px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013223px;}
.ls1{letter-spacing:0.013772px;}
.ls28{letter-spacing:0.017349px;}
.ls4{letter-spacing:0.018761px;}
.ls10{letter-spacing:0.022239px;}
.ls80{letter-spacing:0.022500px;}
.ls6d{letter-spacing:0.045000px;}
.lsf{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.057029px;}
.ls86{letter-spacing:0.063082px;}
.ls2d{letter-spacing:0.070200px;}
.ls64{letter-spacing:0.090000px;}
.ls37{letter-spacing:0.105300px;}
.ls1c{letter-spacing:0.108000px;}
.ls41{letter-spacing:0.126000px;}
.ls17{letter-spacing:0.132103px;}
.ls6b{letter-spacing:0.135000px;}
.ls13{letter-spacing:0.135031px;}
.ls6{letter-spacing:0.140400px;}
.ls22{letter-spacing:0.157950px;}
.ls11{letter-spacing:0.158836px;}
.ls58{letter-spacing:0.159019px;}
.lsc{letter-spacing:0.159202px;}
.ls16{letter-spacing:0.159568px;}
.ls19{letter-spacing:0.162000px;}
.ls53{letter-spacing:0.168000px;}
.ls1d{letter-spacing:0.175500px;}
.ls65{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.183730px;}
.ls27{letter-spacing:0.197558px;}
.ls62{letter-spacing:0.202500px;}
.lsd{letter-spacing:0.203331px;}
.ls42{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.216000px;}
.ls63{letter-spacing:0.225000px;}
.ls15{letter-spacing:0.243000px;}
.ls5a{letter-spacing:0.245700px;}
.ls26{letter-spacing:0.247181px;}
.ls7a{letter-spacing:0.247500px;}
.ls5c{letter-spacing:0.263250px;}
.ls61{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls2f{letter-spacing:0.280800px;}
.ls6c{letter-spacing:0.315000px;}
.ls23{letter-spacing:0.315900px;}
.ls18{letter-spacing:0.324000px;}
.ls7e{letter-spacing:0.337500px;}
.ls5b{letter-spacing:0.351000px;}
.ls66{letter-spacing:0.360000px;}
.lse{letter-spacing:0.378000px;}
.ls59{letter-spacing:0.386100px;}
.ls68{letter-spacing:0.405000px;}
.ls36{letter-spacing:0.421200px;}
.ls8{letter-spacing:0.432000px;}
.ls6a{letter-spacing:0.450000px;}
.ls5e{letter-spacing:0.456300px;}
.ls2c{letter-spacing:0.486000px;}
.ls81{letter-spacing:0.495000px;}
.ls25{letter-spacing:0.526500px;}
.ls34{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.544050px;}
.ls31{letter-spacing:0.561600px;}
.lsb{letter-spacing:0.594000px;}
.ls33{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.702000px;}
.ls7{letter-spacing:0.756000px;}
.ls79{letter-spacing:0.787500px;}
.ls5d{letter-spacing:0.810000px;}
.ls30{letter-spacing:0.864000px;}
.ls7c{letter-spacing:1.048547px;}
.ls85{letter-spacing:1.066488px;}
.ls69{letter-spacing:1.161000px;}
.ls7f{letter-spacing:1.196988px;}
.ls87{letter-spacing:1.260000px;}
.ls7d{letter-spacing:1.336500px;}
.ls7b{letter-spacing:1.350000px;}
.ls67{letter-spacing:1.863000px;}
.ls0{letter-spacing:3.000000px;}
.ls4b{letter-spacing:137.550000px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.wsc9{word-spacing:-13.860000px;}
.ws4e{word-spacing:-13.596000px;}
.ws26{word-spacing:-12.636000px;}
.ws10{word-spacing:-12.528000px;}
.ws4d{word-spacing:-12.501000px;}
.wsb5{word-spacing:-12.474000px;}
.ws47{word-spacing:-12.420000px;}
.wsc6{word-spacing:-12.312000px;}
.ws27{word-spacing:-12.258000px;}
.ws49{word-spacing:-12.150000px;}
.ws81{word-spacing:-12.042000px;}
.wsb9{word-spacing:-11.934000px;}
.ws12{word-spacing:-11.826000px;}
.ws20{word-spacing:-11.772000px;}
.wsbe{word-spacing:-11.718000px;}
.ws23{word-spacing:-11.610000px;}
.wsfd{word-spacing:-10.665000px;}
.wscb{word-spacing:-10.530000px;}
.wsd9{word-spacing:-10.440000px;}
.wsca{word-spacing:-10.417500px;}
.wse0{word-spacing:-10.395000px;}
.wscc{word-spacing:-10.350000px;}
.wscd{word-spacing:-10.305000px;}
.wsce{word-spacing:-10.215000px;}
.wsef{word-spacing:-10.080000px;}
.wsf1{word-spacing:-10.035000px;}
.wscf{word-spacing:-9.810000px;}
.wsd0{word-spacing:-9.765000px;}
.wsd2{word-spacing:-9.675000px;}
.wsf{word-spacing:-9.600000px;}
.wsd1{word-spacing:-9.495000px;}
.wsac{word-spacing:-9.366000px;}
.ws67{word-spacing:-9.156000px;}
.ws84{word-spacing:-9.114000px;}
.ws92{word-spacing:-9.030000px;}
.wsf0{word-spacing:-9.000000px;}
.ws73{word-spacing:-8.988000px;}
.ws91{word-spacing:-8.736000px;}
.ws25{word-spacing:-8.529300px;}
.wsbd{word-spacing:-8.424000px;}
.ws48{word-spacing:-8.388900px;}
.wsb4{word-spacing:-8.353800px;}
.wsb8{word-spacing:-8.318700px;}
.ws21{word-spacing:-8.283600px;}
.ws24{word-spacing:-8.248500px;}
.wsb7{word-spacing:-8.213400px;}
.ws11{word-spacing:-8.143200px;}
.ws4b{word-spacing:-8.108100px;}
.ws4a{word-spacing:-8.073000px;}
.ws22{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-7.967700px;}
.wsc7{word-spacing:-7.932600px;}
.wsc5{word-spacing:-7.862400px;}
.ws63{word-spacing:-7.827300px;}
.ws6d{word-spacing:-7.812000px;}
.ws4c{word-spacing:-7.792200px;}
.ws62{word-spacing:-7.757100px;}
.ws80{word-spacing:-7.616700px;}
.ws64{word-spacing:-7.476300px;}
.ws7f{word-spacing:-7.441200px;}
.ws61{word-spacing:-7.406100px;}
.ws3{word-spacing:-7.371000px;}
.ws5{word-spacing:-6.630000px;}
.wsfc{word-spacing:-6.300000px;}
.wse9{word-spacing:-6.030000px;}
.wsf4{word-spacing:-5.715000px;}
.wsf8{word-spacing:-5.535000px;}
.wsb0{word-spacing:-3.132000px;}
.ws44{word-spacing:-2.862000px;}
.ws40{word-spacing:-2.106000px;}
.ws5d{word-spacing:-1.944000px;}
.wsb2{word-spacing:-1.782000px;}
.wsb1{word-spacing:-1.728000px;}
.ws46{word-spacing:-1.512000px;}
.ws43{word-spacing:-1.458000px;}
.ws5e{word-spacing:-1.404000px;}
.wsd{word-spacing:-1.242000px;}
.wsb{word-spacing:-1.188000px;}
.ws2f{word-spacing:-1.134000px;}
.wsc4{word-spacing:-1.080000px;}
.wsda{word-spacing:-1.035000px;}
.wsd5{word-spacing:-1.026000px;}
.wsde{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.972000px;}
.ws2e{word-spacing:-0.918000px;}
.ws52{word-spacing:-0.864000px;}
.ws58{word-spacing:-0.810000px;}
.wsf3{word-spacing:-0.765000px;}
.wsae{word-spacing:-0.756000px;}
.wse1{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.702000px;}
.ws18{word-spacing:-0.648000px;}
.ws3a{word-spacing:-0.594000px;}
.wsf2{word-spacing:-0.585000px;}
.ws34{word-spacing:-0.561600px;}
.ws8{word-spacing:-0.540000px;}
.ws100{word-spacing:-0.495000px;}
.wsc2{word-spacing:-0.486000px;}
.ws2b{word-spacing:-0.432000px;}
.wsfe{word-spacing:-0.405000px;}
.ws3f{word-spacing:-0.378000px;}
.wse5{word-spacing:-0.360000px;}
.wsbc{word-spacing:-0.351000px;}
.ws4f{word-spacing:-0.324000px;}
.ws2d{word-spacing:-0.315900px;}
.wsee{word-spacing:-0.315000px;}
.wsbf{word-spacing:-0.280800px;}
.wse{word-spacing:-0.270000px;}
.wsd4{word-spacing:-0.264000px;}
.wsba{word-spacing:-0.245700px;}
.wse3{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.wsd8{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.175500px;}
.wsaf{word-spacing:-0.162000px;}
.wsb6{word-spacing:-0.140400px;}
.wsfa{word-spacing:-0.135000px;}
.wsad{word-spacing:-0.108000px;}
.wsdf{word-spacing:-0.090000px;}
.ws2a{word-spacing:-0.054000px;}
.wsea{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.wse7{word-spacing:0.045000px;}
.ws35{word-spacing:0.054000px;}
.wse2{word-spacing:0.090000px;}
.wsd3{word-spacing:0.108000px;}
.wsfb{word-spacing:0.135000px;}
.ws13{word-spacing:0.162000px;}
.wsf9{word-spacing:0.180000px;}
.ws28{word-spacing:0.216000px;}
.wsdb{word-spacing:0.225000px;}
.ws15{word-spacing:0.270000px;}
.ws19{word-spacing:0.324000px;}
.wseb{word-spacing:0.360000px;}
.ws59{word-spacing:0.378000px;}
.ws1d{word-spacing:0.432000px;}
.wse4{word-spacing:0.450000px;}
.wsbb{word-spacing:0.486000px;}
.wse8{word-spacing:0.495000px;}
.wsc0{word-spacing:0.540000px;}
.wsed{word-spacing:0.585000px;}
.ws29{word-spacing:0.594000px;}
.wsf7{word-spacing:0.630000px;}
.ws14{word-spacing:0.648000px;}
.ws7e{word-spacing:0.702000px;}
.wsc3{word-spacing:0.756000px;}
.wsf6{word-spacing:0.765000px;}
.ws1e{word-spacing:0.810000px;}
.wse6{word-spacing:0.855000px;}
.ws32{word-spacing:0.864000px;}
.ws57{word-spacing:0.918000px;}
.ws50{word-spacing:0.972000px;}
.wsd6{word-spacing:0.990000px;}
.ws31{word-spacing:1.026000px;}
.wsdc{word-spacing:1.035000px;}
.ws17{word-spacing:1.080000px;}
.wsdd{word-spacing:1.125000px;}
.ws7b{word-spacing:1.134000px;}
.wsc{word-spacing:1.188000px;}
.wsf5{word-spacing:1.215000px;}
.wsa{word-spacing:1.242000px;}
.ws51{word-spacing:1.296000px;}
.wsc8{word-spacing:1.350000px;}
.ws3c{word-spacing:1.404000px;}
.wsff{word-spacing:1.440000px;}
.ws53{word-spacing:1.458000px;}
.ws1c{word-spacing:1.512000px;}
.wsec{word-spacing:1.530000px;}
.ws1b{word-spacing:1.620000px;}
.wsc1{word-spacing:1.674000px;}
.ws3e{word-spacing:1.728000px;}
.ws2c{word-spacing:1.782000px;}
.ws38{word-spacing:1.890000px;}
.ws42{word-spacing:1.944000px;}
.ws7d{word-spacing:1.998000px;}
.ws9{word-spacing:2.052000px;}
.ws3b{word-spacing:2.160000px;}
.ws60{word-spacing:2.214000px;}
.wsb3{word-spacing:2.268000px;}
.ws33{word-spacing:2.322000px;}
.ws45{word-spacing:2.484000px;}
.ws36{word-spacing:2.538000px;}
.ws39{word-spacing:2.808000px;}
.ws103{word-spacing:3.024000px;}
.wsd7{word-spacing:3.105000px;}
.ws104{word-spacing:3.132000px;}
.ws101{word-spacing:3.186000px;}
.ws102{word-spacing:3.348000px;}
.ws55{word-spacing:3.402000px;}
.ws7c{word-spacing:3.510000px;}
.ws54{word-spacing:3.834000px;}
.ws37{word-spacing:3.942000px;}
.ws56{word-spacing:4.320000px;}
.ws3d{word-spacing:4.698000px;}
.ws5c{word-spacing:4.806000px;}
.ws5f{word-spacing:5.346000px;}
.ws7a{word-spacing:5.508000px;}
.ws5b{word-spacing:5.562000px;}
.ws107{word-spacing:5.670000px;}
.ws41{word-spacing:6.264000px;}
.ws79{word-spacing:6.372000px;}
.ws105{word-spacing:6.480000px;}
.ws106{word-spacing:6.750000px;}
.ws5a{word-spacing:7.128000px;}
.ws1f{word-spacing:15.282000px;}
.ws86{word-spacing:25.662000px;}
.ws8b{word-spacing:31.420193px;}
.ws8c{word-spacing:37.169991px;}
.ws9d{word-spacing:42.336000px;}
.ws8f{word-spacing:44.314200px;}
.ws68{word-spacing:45.948000px;}
.ws95{word-spacing:48.342000px;}
.ws8d{word-spacing:48.426000px;}
.ws87{word-spacing:48.762000px;}
.ws96{word-spacing:49.434000px;}
.ws85{word-spacing:50.610000px;}
.ws88{word-spacing:51.870000px;}
.wsa1{word-spacing:52.626000px;}
.ws89{word-spacing:53.214000px;}
.ws90{word-spacing:56.574000px;}
.ws8e{word-spacing:68.544000px;}
.ws98{word-spacing:70.182000px;}
.ws9f{word-spacing:71.274000px;}
.ws9a{word-spacing:78.120000px;}
.ws94{word-spacing:79.044000px;}
.ws99{word-spacing:82.236000px;}
.wsab{word-spacing:94.163995px;}
.ws97{word-spacing:96.390000px;}
.wsa3{word-spacing:100.967991px;}
.ws66{word-spacing:101.224200px;}
.ws8a{word-spacing:103.992000px;}
.ws65{word-spacing:129.952194px;}
.ws78{word-spacing:143.182200px;}
.ws6e{word-spacing:156.870000px;}
.ws75{word-spacing:162.246000px;}
.ws77{word-spacing:163.799994px;}
.ws71{word-spacing:169.218000px;}
.ws6f{word-spacing:174.594000px;}
.ws74{word-spacing:190.092000px;}
.ws69{word-spacing:191.520000px;}
.ws6a{word-spacing:197.232000px;}
.ws72{word-spacing:200.722200px;}
.ws6c{word-spacing:205.422000px;}
.ws76{word-spacing:211.806000px;}
.ws70{word-spacing:224.494200px;}
.ws93{word-spacing:246.918000px;}
.ws6b{word-spacing:248.766000px;}
.ws83{word-spacing:365.400000px;}
.ws82{word-spacing:680.273984px;}
.ws9b{word-spacing:756.545964px;}
.ws9c{word-spacing:924.042000px;}
.ws9e{word-spacing:1137.401961px;}
.wsa0{word-spacing:1276.002072px;}
.wsa2{word-spacing:1411.578000px;}
.wsa4{word-spacing:1609.860000px;}
.wsa5{word-spacing:1791.971965px;}
.wsa6{word-spacing:1944.142131px;}
.wsa7{word-spacing:2098.949976px;}
.wsa8{word-spacing:2248.175935px;}
.wsa9{word-spacing:2449.607927px;}
.wsaa{word-spacing:2597.658000px;}
._1a{margin-left:-20.952007px;}
._1d{margin-left:-17.097742px;}
._1b{margin-left:-15.213000px;}
._18{margin-left:-13.241340px;}
._5{margin-left:-12.062419px;}
._8{margin-left:-10.154407px;}
._19{margin-left:-8.499600px;}
._2{margin-left:-7.347600px;}
._16{margin-left:-6.058800px;}
._3{margin-left:-4.269057px;}
._4{margin-left:-3.191886px;}
._0{margin-left:-1.876800px;}
._6{width:1.134600px;}
._7{width:2.352600px;}
._c{width:3.845575px;}
._13{width:4.992724px;}
._b{width:6.517800px;}
._17{width:7.615551px;}
._9{width:8.924825px;}
._47{width:10.363824px;}
._a{width:11.521257px;}
._10{width:12.784872px;}
._f{width:14.836176px;}
._e{width:16.000928px;}
._d{width:17.480298px;}
._12{width:18.986752px;}
._11{width:21.392457px;}
._15{width:22.485171px;}
._14{width:24.076088px;}
._1c{width:47.616552px;}
._1e{width:55.556400px;}
._37{width:58.548000px;}
._41{width:61.711848px;}
._34{width:64.302000px;}
._3e{width:65.646000px;}
._3a{width:67.914000px;}
._40{width:77.572200px;}
._25{width:79.422000px;}
._21{width:80.598000px;}
._42{width:82.985950px;}
._2c{width:84.083400px;}
._32{width:88.612802px;}
._43{width:90.089984px;}
._3b{width:92.064000px;}
._2a{width:95.493057px;}
._22{width:99.246000px;}
._45{width:100.296000px;}
._38{width:102.312000px;}
._23{width:104.076000px;}
._3f{width:105.475848px;}
._36{width:106.889991px;}
._20{width:108.514800px;}
._46{width:109.688952px;}
._35{width:110.698135px;}
._3c{width:111.930000px;}
._29{width:114.324000px;}
._33{width:116.506200px;}
._1f{width:122.229600px;}
._44{width:130.438152px;}
._2f{width:136.570800px;}
._26{width:155.064000px;}
._24{width:157.108800px;}
._2e{width:163.533057px;}
._30{width:165.004800px;}
._2b{width:173.781057px;}
._28{width:207.886800px;}
._2d{width:210.110457px;}
._27{width:227.052000px;}
._1{width:314.308800px;}
._39{width:412.565983px;}
._3d{width:622.482000px;}
._31{width:983.387400px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.199200px;}
.y32{bottom:3.199350px;}
.ydb{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y31{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y98{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y30{bottom:68.037452px;}
.y260{bottom:69.915784px;}
.y16d{bottom:71.562150px;}
.yda{bottom:73.990648px;}
.y96{bottom:75.086244px;}
.y53{bottom:79.372652px;}
.y1d0{bottom:79.386152px;}
.y15d{bottom:80.666704px;}
.y25f{bottom:82.662034px;}
.y1b0{bottom:82.981648px;}
.y2f{bottom:83.037452px;}
.yf2{bottom:83.125652px;}
.y16c{bottom:86.560650px;}
.yd9{bottom:88.989148px;}
.y95{bottom:90.084744px;}
.y52{bottom:94.371152px;}
.y1cf{bottom:94.384652px;}
.y25e{bottom:95.408284px;}
.y15c{bottom:95.665204px;}
.y1af{bottom:97.992148px;}
.y2e{bottom:98.037452px;}
.yf1{bottom:98.124152px;}
.y20f{bottom:101.163898px;}
.y16b{bottom:101.566650px;}
.yd8{bottom:103.987648px;}
.y94{bottom:105.086244px;}
.y25d{bottom:108.154534px;}
.y51{bottom:109.371152px;}
.y1ce{bottom:109.383152px;}
.y15b{bottom:110.666704px;}
.y1ae{bottom:112.990648px;}
.y2d{bottom:113.037452px;}
.yf0{bottom:113.122652px;}
.y20e{bottom:113.910148px;}
.y16a{bottom:116.565150px;}
.yd7{bottom:118.986148px;}
.y93{bottom:120.084744px;}
.y25c{bottom:120.900784px;}
.y50{bottom:124.371152px;}
.y1cd{bottom:124.381652px;}
.y15a{bottom:125.665204px;}
.y20d{bottom:126.656398px;}
.y1ad{bottom:127.989148px;}
.y2c{bottom:128.043452px;}
.yef{bottom:128.121152px;}
.y169{bottom:131.563650px;}
.y25b{bottom:133.647034px;}
.yd6{bottom:133.984648px;}
.y92{bottom:135.084744px;}
.y4f{bottom:139.372652px;}
.y1cc{bottom:139.380152px;}
.y20c{bottom:139.402648px;}
.y159{bottom:140.666704px;}
.y1ac{bottom:142.987648px;}
.y2b{bottom:143.037452px;}
.yee{bottom:143.125652px;}
.y139{bottom:143.874152px;}
.y25a{bottom:146.393284px;}
.y168{bottom:146.562150px;}
.yd5{bottom:148.983148px;}
.y91{bottom:150.084744px;}
.y20b{bottom:152.148898px;}
.y4e{bottom:154.371152px;}
.y1cb{bottom:154.378652px;}
.y158{bottom:155.665204px;}
.y1ab{bottom:157.986148px;}
.y2a{bottom:158.043452px;}
.yed{bottom:158.124152px;}
.y138{bottom:158.872652px;}
.y259{bottom:159.139534px;}
.y167{bottom:161.560650px;}
.yd4{bottom:163.981648px;}
.y20a{bottom:164.895148px;}
.y90{bottom:165.083244px;}
.y4d{bottom:169.372652px;}
.y1ca{bottom:169.377152px;}
.y157{bottom:170.668204px;}
.y258{bottom:171.885784px;}
.y1aa{bottom:172.984648px;}
.y29{bottom:173.037452px;}
.yec{bottom:173.122652px;}
.y137{bottom:173.871152px;}
.y166{bottom:176.560502px;}
.y209{bottom:177.641398px;}
.yd3{bottom:178.980148px;}
.y4c{bottom:184.371152px;}
.y1c9{bottom:184.375652px;}
.y257{bottom:184.632034px;}
.y156{bottom:185.666704px;}
.y1a9{bottom:187.983148px;}
.y28{bottom:188.037441px;}
.yeb{bottom:188.121152px;}
.y136{bottom:188.875652px;}
.y208{bottom:190.387648px;}
.y165{bottom:191.563650px;}
.yd2{bottom:193.980148px;}
.y256{bottom:197.378284px;}
.y8f{bottom:198.093744px;}
.y4b{bottom:199.372652px;}
.y1c8{bottom:199.374152px;}
.y155{bottom:200.665204px;}
.y1a8{bottom:202.981648px;}
.y27{bottom:203.043441px;}
.yea{bottom:203.122652px;}
.y207{bottom:203.133898px;}
.y135{bottom:203.874152px;}
.y27c{bottom:206.162244px;}
.y164{bottom:206.562150px;}
.y255{bottom:210.124534px;}
.y8e{bottom:213.092244px;}
.y4a{bottom:214.371152px;}
.y1c7{bottom:214.372652px;}
.y154{bottom:215.666704px;}
.y206{bottom:215.880148px;}
.y1a7{bottom:217.984648px;}
.y26{bottom:218.037441px;}
.ye9{bottom:218.121152px;}
.y134{bottom:218.872652px;}
.y163{bottom:221.560650px;}
.y254{bottom:222.870784px;}
.yd1{bottom:226.990648px;}
.y8d{bottom:228.090744px;}
.y205{bottom:228.626398px;}
.y1c6{bottom:229.371152px;}
.y49{bottom:229.375652px;}
.y153{bottom:230.665204px;}
.y1a6{bottom:232.983148px;}
.y25{bottom:233.037441px;}
.ye8{bottom:233.122652px;}
.y133{bottom:233.871152px;}
.y253{bottom:235.617034px;}
.y27b{bottom:236.159243px;}
.y162{bottom:236.562150px;}
.y204{bottom:241.372648px;}
.yd0{bottom:241.989148px;}
.y8c{bottom:243.089244px;}
.y1c5{bottom:244.371152px;}
.y48{bottom:244.374152px;}
.y152{bottom:245.663704px;}
.y1a5{bottom:247.981648px;}
.ye7{bottom:248.121152px;}
.y252{bottom:248.363284px;}
.y132{bottom:248.869652px;}
.y27a{bottom:251.157743px;}
.y161{bottom:251.560650px;}
.y24{bottom:252.493950px;}
.y203{bottom:254.118898px;}
.ycf{bottom:256.987648px;}
.y8b{bottom:258.087744px;}
.y1c4{bottom:259.371152px;}
.y47{bottom:259.372652px;}
.y151{bottom:260.663704px;}
.y251{bottom:261.109534px;}
.y1a4{bottom:262.983148px;}
.ye6{bottom:263.122652px;}
.y279{bottom:266.156243px;}
.y160{bottom:266.560650px;}
.y202{bottom:266.865148px;}
.yce{bottom:271.986148px;}
.y8a{bottom:273.086244px;}
.y250{bottom:273.855784px;}
.y46{bottom:274.371152px;}
.y1c3{bottom:274.372652px;}
.y1a3{bottom:277.981648px;}
.ye5{bottom:278.121152px;}
.y201{bottom:279.611398px;}
.y278{bottom:281.154743px;}
.y15f{bottom:281.559150px;}
.y131{bottom:281.898129px;}
.y24f{bottom:286.602034px;}
.ycd{bottom:286.984648px;}
.y89{bottom:288.084744px;}
.y1c2{bottom:289.371152px;}
.y45{bottom:289.372652px;}
.y200{bottom:292.357648px;}
.y1a2{bottom:292.983148px;}
.ye4{bottom:293.131629px;}
.y277{bottom:296.153243px;}
.y130{bottom:296.896629px;}
.y24e{bottom:299.348284px;}
.y22{bottom:301.573805px;}
.ycc{bottom:301.983148px;}
.y88{bottom:303.083244px;}
.y44{bottom:304.371152px;}
.y1ff{bottom:305.103898px;}
.y1a1{bottom:307.981648px;}
.ye3{bottom:308.130129px;}
.y276{bottom:311.151743px;}
.y12f{bottom:311.895129px;}
.y24d{bottom:312.094534px;}
.y21{bottom:316.572305px;}
.ycb{bottom:316.981648px;}
.y1fe{bottom:317.850148px;}
.y43{bottom:319.375652px;}
.y1c1{bottom:319.390629px;}
.y1a0{bottom:322.987648px;}
.ye2{bottom:323.128629px;}
.y24c{bottom:324.840784px;}
.y171{bottom:325.642650px;}
.y275{bottom:326.150243px;}
.y12e{bottom:326.893629px;}
.y15e{bottom:330.271660px;}
.y1fd{bottom:330.596398px;}
.y20{bottom:331.570805px;}
.yca{bottom:331.980148px;}
.y42{bottom:334.374152px;}
.y1c0{bottom:334.389129px;}
.y87{bottom:336.084744px;}
.y24b{bottom:337.587034px;}
.y19f{bottom:337.986148px;}
.ye1{bottom:338.127129px;}
.y170{bottom:340.641150px;}
.y274{bottom:341.148743px;}
.y12d{bottom:341.892129px;}
.y1fc{bottom:343.342648px;}
.y1f{bottom:346.606815px;}
.y41{bottom:349.372652px;}
.y1bf{bottom:349.387629px;}
.y24a{bottom:350.333284px;}
.y86{bottom:351.092267px;}
.y19e{bottom:352.984648px;}
.ye0{bottom:353.125629px;}
.y1fb{bottom:356.088898px;}
.y12c{bottom:356.890629px;}
.y1e{bottom:361.605315px;}
.y249{bottom:363.079534px;}
.y273{bottom:363.638243px;}
.y40{bottom:364.371152px;}
.y1be{bottom:364.386129px;}
.yc9{bottom:364.986148px;}
.y85{bottom:366.090767px;}
.y19d{bottom:367.983148px;}
.ydf{bottom:368.124129px;}
.y1fa{bottom:368.835148px;}
.y12b{bottom:371.889129px;}
.y248{bottom:375.825784px;}
.y1d{bottom:376.603815px;}
.y272{bottom:378.636743px;}
.y3f{bottom:379.378629px;}
.y1bd{bottom:379.384629px;}
.yc8{bottom:379.984648px;}
.y84{bottom:381.089267px;}
.y1f9{bottom:381.581398px;}
.y19c{bottom:382.981648px;}
.yde{bottom:383.122629px;}
.y12a{bottom:386.887629px;}
.y247{bottom:388.572034px;}
.y1c{bottom:391.602315px;}
.y1f8{bottom:394.327648px;}
.y3e{bottom:394.377129px;}
.y1bc{bottom:394.383129px;}
.yc7{bottom:394.983148px;}
.y83{bottom:396.087767px;}
.y19b{bottom:397.983148px;}
.ydd{bottom:398.121129px;}
.y271{bottom:401.141243px;}
.y246{bottom:401.318284px;}
.y129{bottom:401.886129px;}
.y1f7{bottom:407.073898px;}
.y3d{bottom:409.375629px;}
.y1bb{bottom:409.381629px;}
.yc6{bottom:409.981648px;}
.y82{bottom:411.086267px;}
.y19a{bottom:412.981648px;}
.ydc{bottom:413.119629px;}
.y245{bottom:414.064534px;}
.y128{bottom:416.884629px;}
.y1f6{bottom:419.820148px;}
.y270{bottom:423.645743px;}
.y3c{bottom:424.374129px;}
.y1ba{bottom:424.380129px;}
.yc5{bottom:424.981648px;}
.y81{bottom:426.084767px;}
.y244{bottom:426.810784px;}
.y199{bottom:427.984648px;}
.y127{bottom:431.883129px;}
.y1f5{bottom:432.566398px;}
.y1b{bottom:436.746315px;}
.y3b{bottom:439.372629px;}
.y1b9{bottom:439.378629px;}
.y243{bottom:439.557034px;}
.yc4{bottom:439.990648px;}
.y80{bottom:441.083267px;}
.y198{bottom:442.983148px;}
.y1f4{bottom:445.312648px;}
.y26f{bottom:446.150243px;}
.y126{bottom:446.881629px;}
.y242{bottom:452.303284px;}
.y1a{bottom:453.243315px;}
.y3a{bottom:454.371129px;}
.y1b8{bottom:454.377129px;}
.yc3{bottom:454.989148px;}
.y7f{bottom:456.083267px;}
.y197{bottom:457.981648px;}
.y1f3{bottom:458.058898px;}
.y26e{bottom:461.148743px;}
.y125{bottom:461.880129px;}
.y241{bottom:465.049534px;}
.y39{bottom:469.375629px;}
.y19{bottom:469.740315px;}
.yc2{bottom:469.987648px;}
.y1f2{bottom:470.805148px;}
.y196{bottom:472.983148px;}
.y26d{bottom:476.148743px;}
.y124{bottom:476.878629px;}
.y240{bottom:477.795784px;}
.yf4{bottom:478.218602px;}
.y1f1{bottom:483.551398px;}
.y38{bottom:484.374129px;}
.yc1{bottom:484.986148px;}
.y18{bottom:486.237315px;}
.y195{bottom:487.981648px;}
.y7e{bottom:489.090767px;}
.y23f{bottom:490.542034px;}
.y123{bottom:491.877129px;}
.yf3{bottom:493.217102px;}
.y1f0{bottom:496.297648px;}
.y37{bottom:499.372629px;}
.yc0{bottom:499.984648px;}
.y17{bottom:502.734315px;}
.y194{bottom:502.986148px;}
.y23e{bottom:503.288284px;}
.y7d{bottom:504.089267px;}
.y26c{bottom:506.148743px;}
.y122{bottom:506.875629px;}
.y1ef{bottom:509.043898px;}
.y36{bottom:514.371129px;}
.ybf{bottom:514.983148px;}
.y23d{bottom:516.034534px;}
.y193{bottom:517.984648px;}
.y7c{bottom:519.087767px;}
.y16{bottom:519.231315px;}
.y26b{bottom:521.148743px;}
.y1ee{bottom:521.790148px;}
.y121{bottom:521.874129px;}
.y117{bottom:525.088986px;}
.y23c{bottom:528.780784px;}
.y35{bottom:529.371129px;}
.y1b7{bottom:529.374129px;}
.ybe{bottom:529.981648px;}
.y192{bottom:532.983148px;}
.y7b{bottom:534.086267px;}
.y1ed{bottom:534.536398px;}
.y15{bottom:535.728315px;}
.y120{bottom:536.872629px;}
.y23b{bottom:541.527034px;}
.y116{bottom:542.623986px;}
.y34{bottom:544.369629px;}
.y1b6{bottom:544.372629px;}
.ybd{bottom:544.984648px;}
.y1ec{bottom:547.282648px;}
.y191{bottom:547.981648px;}
.y7a{bottom:549.084767px;}
.y11f{bottom:551.871129px;}
.y14{bottom:552.225315px;}
.y26a{bottom:552.620238px;}
.y23a{bottom:554.273284px;}
.y1b5{bottom:559.371129px;}
.ybc{bottom:559.983148px;}
.y1eb{bottom:560.028898px;}
.y115{bottom:560.158986px;}
.y190{bottom:562.986148px;}
.y79{bottom:564.084767px;}
.y11e{bottom:566.874129px;}
.y239{bottom:567.019534px;}
.y269{bottom:567.618738px;}
.y13{bottom:568.722315px;}
.y1ea{bottom:572.775148px;}
.y1b4{bottom:574.374129px;}
.ybb{bottom:574.981648px;}
.y114{bottom:577.693986px;}
.y18f{bottom:577.984648px;}
.y78{bottom:579.086267px;}
.y238{bottom:579.765784px;}
.y11d{bottom:581.872629px;}
.y268{bottom:582.617238px;}
.y12{bottom:585.234315px;}
.y1e9{bottom:585.521398px;}
.y1b3{bottom:589.372629px;}
.yba{bottom:589.981648px;}
.y237{bottom:592.512034px;}
.y18e{bottom:592.983148px;}
.y77{bottom:594.084767px;}
.y113{bottom:595.228986px;}
.y11c{bottom:596.871129px;}
.y54{bottom:597.031631px;}
.y267{bottom:597.615738px;}
.y1e8{bottom:598.267648px;}
.y11{bottom:601.731315px;}
.y1b2{bottom:604.371129px;}
.yb9{bottom:604.981648px;}
.y236{bottom:605.258284px;}
.y18d{bottom:607.981648px;}
.y76{bottom:609.087767px;}
.y1e7{bottom:611.013898px;}
.y11b{bottom:611.874129px;}
.y266{bottom:612.615738px;}
.y112{bottom:612.763986px;}
.y235{bottom:618.004534px;}
.y10{bottom:618.228315px;}
.y1b1{bottom:619.369629px;}
.yb8{bottom:619.981648px;}
.y18c{bottom:622.981648px;}
.y1e6{bottom:623.760148px;}
.y75{bottom:624.086267px;}
.y11a{bottom:626.872629px;}
.y111{bottom:630.298986px;}
.y234{bottom:630.750784px;}
.yf{bottom:634.725315px;}
.yb7{bottom:634.983148px;}
.y1e5{bottom:636.506398px;}
.y18b{bottom:637.984648px;}
.y74{bottom:639.084767px;}
.y119{bottom:641.871129px;}
.y265{bottom:642.620238px;}
.y233{bottom:643.497034px;}
.y110{bottom:647.833986px;}
.y109{bottom:647.844486px;}
.y1e4{bottom:649.252648px;}
.yb6{bottom:649.981648px;}
.ye{bottom:651.222315px;}
.y18a{bottom:652.983148px;}
.y73{bottom:654.086267px;}
.y232{bottom:656.243284px;}
.y118{bottom:656.869629px;}
.y264{bottom:657.618738px;}
.y1e3{bottom:661.998898px;}
.yb5{bottom:664.983148px;}
.y10f{bottom:665.368986px;}
.yd{bottom:667.719315px;}
.y189{bottom:667.981648px;}
.y231{bottom:668.989534px;}
.y72{bottom:669.084767px;}
.y263{bottom:672.617238px;}
.y1e2{bottom:674.745148px;}
.yb4{bottom:679.981648px;}
.y1d2{bottom:681.033131px;}
.y230{bottom:681.735784px;}
.y10e{bottom:682.903986px;}
.y188{bottom:682.984648px;}
.y71{bottom:684.086267px;}
.y1e1{bottom:687.491398px;}
.y262{bottom:687.615738px;}
.y22f{bottom:694.482034px;}
.yb3{bottom:694.980148px;}
.y1d1{bottom:696.031631px;}
.yc{bottom:697.719315px;}
.y187{bottom:697.983148px;}
.y70{bottom:699.084767px;}
.y1e0{bottom:700.237648px;}
.y10d{bottom:700.438986px;}
.y261{bottom:702.615738px;}
.y22e{bottom:707.228284px;}
.y186{bottom:712.981648px;}
.y1df{bottom:712.983898px;}
.y6f{bottom:714.090721px;}
.yb{bottom:715.719315px;}
.y10c{bottom:717.973986px;}
.y22d{bottom:719.974534px;}
.y1de{bottom:725.730148px;}
.y13c{bottom:726.619928px;}
.yb2{bottom:727.981648px;}
.y16f{bottom:728.913152px;}
.y6e{bottom:729.089221px;}
.y22c{bottom:732.720784px;}
.ya{bottom:733.719315px;}
.y10b{bottom:735.508986px;}
.y1dd{bottom:738.480148px;}
.y13b{bottom:741.618428px;}
.y185{bottom:742.983194px;}
.yb1{bottom:742.990694px;}
.y16e{bottom:743.911652px;}
.y6d{bottom:744.087721px;}
.y22b{bottom:745.467034px;}
.y10a{bottom:753.043986px;}
.y13a{bottom:756.616928px;}
.y184{bottom:757.981694px;}
.yb0{bottom:757.989194px;}
.y22a{bottom:758.213284px;}
.y6c{bottom:759.086221px;}
.y9{bottom:766.695269px;}
.y108{bottom:770.578986px;}
.y229{bottom:770.959534px;}
.y183{bottom:772.983194px;}
.yaf{bottom:772.987694px;}
.y6b{bottom:774.084721px;}
.y228{bottom:783.705784px;}
.y1dc{bottom:787.980194px;}
.y182{bottom:787.981694px;}
.yae{bottom:787.986194px;}
.y150{bottom:788.103578px;}
.y107{bottom:788.113986px;}
.y6a{bottom:789.086221px;}
.y227{bottom:796.452034px;}
.yad{bottom:802.984694px;}
.y181{bottom:802.993694px;}
.y69{bottom:804.084721px;}
.y14f{bottom:805.638578px;}
.y106{bottom:805.648986px;}
.y226{bottom:809.198284px;}
.y8{bottom:811.701269px;}
.yac{bottom:817.983194px;}
.y1db{bottom:817.984694px;}
.y180{bottom:817.992194px;}
.y68{bottom:819.086221px;}
.y225{bottom:821.944534px;}
.y14d{bottom:823.173578px;}
.y102{bottom:823.183986px;}
.yab{bottom:832.981694px;}
.y1da{bottom:832.983194px;}
.y17f{bottom:832.990694px;}
.y67{bottom:834.084721px;}
.y224{bottom:834.690784px;}
.y14e{bottom:840.708578px;}
.y105{bottom:840.718986px;}
.y223{bottom:847.437034px;}
.yaa{bottom:847.981694px;}
.y17e{bottom:847.989194px;}
.y66{bottom:849.087721px;}
.y7{bottom:856.707269px;}
.y14c{bottom:858.243578px;}
.y104{bottom:858.253986px;}
.y222{bottom:860.183284px;}
.y1d9{bottom:862.980194px;}
.ya9{bottom:862.981694px;}
.y17d{bottom:862.987694px;}
.y65{bottom:864.086221px;}
.y221{bottom:872.929534px;}
.y14b{bottom:875.778578px;}
.y103{bottom:875.788986px;}
.y1d8{bottom:877.980194px;}
.ya8{bottom:877.983194px;}
.y17c{bottom:877.986194px;}
.y64{bottom:879.084721px;}
.y220{bottom:885.675784px;}
.ya7{bottom:892.981694px;}
.y17b{bottom:892.984694px;}
.y101{bottom:893.313486px;}
.y148{bottom:893.313578px;}
.y63{bottom:894.087721px;}
.y21f{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y17a{bottom:907.983194px;}
.ya6{bottom:907.986194px;}
.y1d7{bottom:907.998194px;}
.y62{bottom:909.086221px;}
.y100{bottom:910.848486px;}
.y14a{bottom:910.848578px;}
.y21e{bottom:911.168284px;}
.y179{bottom:922.981694px;}
.ya5{bottom:922.984694px;}
.y1d6{bottom:922.996694px;}
.y21d{bottom:923.914534px;}
.y61{bottom:924.084721px;}
.yff{bottom:928.383486px;}
.y149{bottom:928.383578px;}
.y21c{bottom:936.660784px;}
.ya4{bottom:937.983194px;}
.y178{bottom:937.989194px;}
.y1d5{bottom:937.995194px;}
.y60{bottom:939.086221px;}
.yfe{bottom:945.918486px;}
.y147{bottom:945.918578px;}
.y5{bottom:946.719269px;}
.y21b{bottom:949.407034px;}
.ya3{bottom:952.981694px;}
.y177{bottom:952.987694px;}
.y1d4{bottom:952.993694px;}
.y5f{bottom:954.084721px;}
.y23{bottom:954.366760px;}
.y21a{bottom:962.153284px;}
.yfd{bottom:963.453486px;}
.y146{bottom:963.453578px;}
.ya2{bottom:967.981694px;}
.y176{bottom:967.986194px;}
.y1d3{bottom:967.992194px;}
.y5e{bottom:969.084721px;}
.y219{bottom:974.899534px;}
.yfc{bottom:980.988486px;}
.y145{bottom:980.988578px;}
.yf6{bottom:980.998986px;}
.y175{bottom:982.984694px;}
.ya1{bottom:982.990694px;}
.y5d{bottom:984.087721px;}
.y218{bottom:987.645784px;}
.y140{bottom:992.906078px;}
.y174{bottom:997.983194px;}
.ya0{bottom:997.989194px;}
.yfb{bottom:998.523486px;}
.y144{bottom:998.523578px;}
.y5c{bottom:999.086221px;}
.y217{bottom:1000.392034px;}
.y13f{bottom:1004.151578px;}
.y173{bottom:1012.981694px;}
.y9f{bottom:1012.987694px;}
.y216{bottom:1013.138284px;}
.y5b{bottom:1014.084721px;}
.yfa{bottom:1016.058486px;}
.y143{bottom:1016.058578px;}
.y215{bottom:1025.884534px;}
.y172{bottom:1027.981694px;}
.y9e{bottom:1027.986194px;}
.y5a{bottom:1029.087721px;}
.yf9{bottom:1033.593486px;}
.y142{bottom:1033.593578px;}
.y214{bottom:1038.630784px;}
.y9d{bottom:1042.984694px;}
.y59{bottom:1044.086221px;}
.yf8{bottom:1051.128486px;}
.y141{bottom:1051.128578px;}
.y213{bottom:1051.377034px;}
.y9c{bottom:1057.983194px;}
.y58{bottom:1059.084721px;}
.y212{bottom:1064.123284px;}
.yf7{bottom:1068.663486px;}
.y13e{bottom:1068.663578px;}
.y9b{bottom:1072.981694px;}
.y57{bottom:1074.084721px;}
.y211{bottom:1076.869534px;}
.yf5{bottom:1086.198486px;}
.y13d{bottom:1086.198578px;}
.y9a{bottom:1087.980194px;}
.y56{bottom:1089.083221px;}
.y210{bottom:1089.615784px;}
.y55{bottom:1140.640320px;}
.y99{bottom:1140.746521px;}
.y33{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.he{height:23.842749px;}
.h2{height:34.523438px;}
.h3e{height:35.411133px;}
.h10{height:36.681152px;}
.h9{height:38.838867px;}
.h31{height:41.538000px;}
.h12{height:41.644740px;}
.h11{height:41.644786px;}
.h13{height:41.668740px;}
.hf{height:41.668786px;}
.h30{height:43.008000px;}
.h41{height:44.505000px;}
.h3f{height:45.090000px;}
.h3{height:45.679688px;}
.h40{height:46.080000px;}
.h24{height:47.469727px;}
.h7{height:49.050293px;}
.h8{height:49.183594px;}
.h14{height:49.373525px;}
.h42{height:50.439000px;}
.ha{height:51.416016px;}
.hb{height:53.406000px;}
.hc{height:53.463827px;}
.h3d{height:53.529955px;}
.h39{height:53.559680px;}
.h3b{height:53.565907px;}
.h2c{height:53.571680px;}
.h2f{height:53.571863px;}
.h38{height:53.577680px;}
.h17{height:53.578046px;}
.h3a{height:53.583863px;}
.h35{height:53.583912px;}
.h2a{height:53.589680px;}
.h18{height:53.589863px;}
.h16{height:53.590046px;}
.h3c{height:53.595314px;}
.h33{height:53.595317px;}
.h37{height:53.595680px;}
.h2e{height:53.595863px;}
.h1f{height:53.596779px;}
.h2b{height:53.601680px;}
.h19{height:53.601863px;}
.h36{height:53.601889px;}
.h1b{height:53.601909px;}
.h21{height:53.602779px;}
.h29{height:53.607680px;}
.h2d{height:53.607863px;}
.h1d{height:53.607909px;}
.h15{height:53.608046px;}
.h34{height:53.608504px;}
.h20{height:53.608779px;}
.h27{height:53.613680px;}
.h25{height:53.613909px;}
.h28{height:54.066000px;}
.h22{height:54.078183px;}
.h1a{height:54.084000px;}
.h23{height:54.090000px;}
.h32{height:54.096000px;}
.h26{height:54.102000px;}
.h1c{height:54.108000px;}
.h1e{height:55.296000px;}
.h4{height:57.099609px;}
.hd{height:77.677734px;}
.h5{height:112.201172px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.228350px;}
.x3{left:61.653603px;}
.xd{left:66.418306px;}
.xe{left:114.791805px;}
.x6{left:141.395702px;}
.xc{left:162.661354px;}
.x5{left:233.858253px;}
.xa{left:238.570953px;}
.x8{left:251.858706px;}
.x10{left:254.108253px;}
.x11{left:302.498703px;}
.xb{left:304.332460px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xf{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v7{vertical-align:-16.799805pt;}
.v6{vertical-align:-15.866700pt;}
.v4{vertical-align:-9.652780pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.666602pt;}
.v2{vertical-align:18.666667pt;}
.ls49{letter-spacing:-3.621333pt;}
.ls55{letter-spacing:-3.472000pt;}
.ls46{letter-spacing:-3.434667pt;}
.ls54{letter-spacing:-3.360000pt;}
.ls6e{letter-spacing:-2.760000pt;}
.ls44{letter-spacing:-1.530667pt;}
.ls52{letter-spacing:-1.381333pt;}
.ls40{letter-spacing:-1.194667pt;}
.ls82{letter-spacing:-1.160000pt;}
.ls84{letter-spacing:-1.040000pt;}
.ls70{letter-spacing:-1.000000pt;}
.ls48{letter-spacing:-0.970667pt;}
.ls50{letter-spacing:-0.821333pt;}
.ls78{letter-spacing:-0.800000pt;}
.ls1f{letter-spacing:-0.720000pt;}
.ls56{letter-spacing:-0.709333pt;}
.ls2e{letter-spacing:-0.672000pt;}
.ls83{letter-spacing:-0.640000pt;}
.ls45{letter-spacing:-0.634667pt;}
.ls1e{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls73{letter-spacing:-0.560000pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls3a{letter-spacing:-0.499200pt;}
.ls43{letter-spacing:-0.485333pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.468000pt;}
.ls57{letter-spacing:-0.448000pt;}
.ls74{letter-spacing:-0.440000pt;}
.ls3d{letter-spacing:-0.436800pt;}
.ls29{letter-spacing:-0.432000pt;}
.ls51{letter-spacing:-0.410667pt;}
.ls72{letter-spacing:-0.400000pt;}
.ls3e{letter-spacing:-0.373333pt;}
.ls88{letter-spacing:-0.360000pt;}
.ls35{letter-spacing:-0.336000pt;}
.ls4e{letter-spacing:-0.312000pt;}
.ls3f{letter-spacing:-0.298667pt;}
.ls39{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls47{letter-spacing:-0.224000pt;}
.ls6f{letter-spacing:-0.200000pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.187200pt;}
.ls4f{letter-spacing:-0.186667pt;}
.ls77{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.156000pt;}
.ls4a{letter-spacing:-0.149333pt;}
.ls4c{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.124800pt;}
.ls71{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.093600pt;}
.ls75{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls76{letter-spacing:-0.040000pt;}
.ls60{letter-spacing:-0.031200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011754pt;}
.ls1{letter-spacing:0.012242pt;}
.ls28{letter-spacing:0.015421pt;}
.ls4{letter-spacing:0.016676pt;}
.ls10{letter-spacing:0.019768pt;}
.ls80{letter-spacing:0.020000pt;}
.ls6d{letter-spacing:0.040000pt;}
.lsf{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.050693pt;}
.ls86{letter-spacing:0.056073pt;}
.ls2d{letter-spacing:0.062400pt;}
.ls64{letter-spacing:0.080000pt;}
.ls37{letter-spacing:0.093600pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls41{letter-spacing:0.112000pt;}
.ls17{letter-spacing:0.117424pt;}
.ls6b{letter-spacing:0.120000pt;}
.ls13{letter-spacing:0.120028pt;}
.ls6{letter-spacing:0.124800pt;}
.ls22{letter-spacing:0.140400pt;}
.ls11{letter-spacing:0.141187pt;}
.ls58{letter-spacing:0.141350pt;}
.lsc{letter-spacing:0.141513pt;}
.ls16{letter-spacing:0.141839pt;}
.ls19{letter-spacing:0.144000pt;}
.ls53{letter-spacing:0.149333pt;}
.ls1d{letter-spacing:0.156000pt;}
.ls65{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.163315pt;}
.ls27{letter-spacing:0.175607pt;}
.ls62{letter-spacing:0.180000pt;}
.lsd{letter-spacing:0.180738pt;}
.ls42{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.192000pt;}
.ls63{letter-spacing:0.200000pt;}
.ls15{letter-spacing:0.216000pt;}
.ls5a{letter-spacing:0.218400pt;}
.ls26{letter-spacing:0.219717pt;}
.ls7a{letter-spacing:0.220000pt;}
.ls5c{letter-spacing:0.234000pt;}
.ls61{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls2f{letter-spacing:0.249600pt;}
.ls6c{letter-spacing:0.280000pt;}
.ls23{letter-spacing:0.280800pt;}
.ls18{letter-spacing:0.288000pt;}
.ls7e{letter-spacing:0.300000pt;}
.ls5b{letter-spacing:0.312000pt;}
.ls66{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.336000pt;}
.ls59{letter-spacing:0.343200pt;}
.ls68{letter-spacing:0.360000pt;}
.ls36{letter-spacing:0.374400pt;}
.ls8{letter-spacing:0.384000pt;}
.ls6a{letter-spacing:0.400000pt;}
.ls5e{letter-spacing:0.405600pt;}
.ls2c{letter-spacing:0.432000pt;}
.ls81{letter-spacing:0.440000pt;}
.ls25{letter-spacing:0.468000pt;}
.ls34{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.483600pt;}
.ls31{letter-spacing:0.499200pt;}
.lsb{letter-spacing:0.528000pt;}
.ls33{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.624000pt;}
.ls7{letter-spacing:0.672000pt;}
.ls79{letter-spacing:0.700000pt;}
.ls5d{letter-spacing:0.720000pt;}
.ls30{letter-spacing:0.768000pt;}
.ls7c{letter-spacing:0.932041pt;}
.ls85{letter-spacing:0.947989pt;}
.ls69{letter-spacing:1.032000pt;}
.ls7f{letter-spacing:1.063989pt;}
.ls87{letter-spacing:1.120000pt;}
.ls7d{letter-spacing:1.188000pt;}
.ls7b{letter-spacing:1.200000pt;}
.ls67{letter-spacing:1.656000pt;}
.ls0{letter-spacing:2.666667pt;}
.ls4b{letter-spacing:122.266667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.wsc9{word-spacing:-12.320000pt;}
.ws4e{word-spacing:-12.085333pt;}
.ws26{word-spacing:-11.232000pt;}
.ws10{word-spacing:-11.136000pt;}
.ws4d{word-spacing:-11.112000pt;}
.wsb5{word-spacing:-11.088000pt;}
.ws47{word-spacing:-11.040000pt;}
.wsc6{word-spacing:-10.944000pt;}
.ws27{word-spacing:-10.896000pt;}
.ws49{word-spacing:-10.800000pt;}
.ws81{word-spacing:-10.704000pt;}
.wsb9{word-spacing:-10.608000pt;}
.ws12{word-spacing:-10.512000pt;}
.ws20{word-spacing:-10.464000pt;}
.wsbe{word-spacing:-10.416000pt;}
.ws23{word-spacing:-10.320000pt;}
.wsfd{word-spacing:-9.480000pt;}
.wscb{word-spacing:-9.360000pt;}
.wsd9{word-spacing:-9.280000pt;}
.wsca{word-spacing:-9.260000pt;}
.wse0{word-spacing:-9.240000pt;}
.wscc{word-spacing:-9.200000pt;}
.wscd{word-spacing:-9.160000pt;}
.wsce{word-spacing:-9.080000pt;}
.wsef{word-spacing:-8.960000pt;}
.wsf1{word-spacing:-8.920000pt;}
.wscf{word-spacing:-8.720000pt;}
.wsd0{word-spacing:-8.680000pt;}
.wsd2{word-spacing:-8.600000pt;}
.wsf{word-spacing:-8.533333pt;}
.wsd1{word-spacing:-8.440000pt;}
.wsac{word-spacing:-8.325333pt;}
.ws67{word-spacing:-8.138667pt;}
.ws84{word-spacing:-8.101333pt;}
.ws92{word-spacing:-8.026667pt;}
.wsf0{word-spacing:-8.000000pt;}
.ws73{word-spacing:-7.989333pt;}
.ws91{word-spacing:-7.765333pt;}
.ws25{word-spacing:-7.581600pt;}
.wsbd{word-spacing:-7.488000pt;}
.ws48{word-spacing:-7.456800pt;}
.wsb4{word-spacing:-7.425600pt;}
.wsb8{word-spacing:-7.394400pt;}
.ws21{word-spacing:-7.363200pt;}
.ws24{word-spacing:-7.332000pt;}
.wsb7{word-spacing:-7.300800pt;}
.ws11{word-spacing:-7.238400pt;}
.ws4b{word-spacing:-7.207200pt;}
.ws4a{word-spacing:-7.176000pt;}
.ws22{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.082400pt;}
.wsc7{word-spacing:-7.051200pt;}
.wsc5{word-spacing:-6.988800pt;}
.ws63{word-spacing:-6.957600pt;}
.ws6d{word-spacing:-6.944000pt;}
.ws4c{word-spacing:-6.926400pt;}
.ws62{word-spacing:-6.895200pt;}
.ws80{word-spacing:-6.770400pt;}
.ws64{word-spacing:-6.645600pt;}
.ws7f{word-spacing:-6.614400pt;}
.ws61{word-spacing:-6.583200pt;}
.ws3{word-spacing:-6.552000pt;}
.ws5{word-spacing:-5.893333pt;}
.wsfc{word-spacing:-5.600000pt;}
.wse9{word-spacing:-5.360000pt;}
.wsf4{word-spacing:-5.080000pt;}
.wsf8{word-spacing:-4.920000pt;}
.wsb0{word-spacing:-2.784000pt;}
.ws44{word-spacing:-2.544000pt;}
.ws40{word-spacing:-1.872000pt;}
.ws5d{word-spacing:-1.728000pt;}
.wsb2{word-spacing:-1.584000pt;}
.wsb1{word-spacing:-1.536000pt;}
.ws46{word-spacing:-1.344000pt;}
.ws43{word-spacing:-1.296000pt;}
.ws5e{word-spacing:-1.248000pt;}
.wsd{word-spacing:-1.104000pt;}
.wsb{word-spacing:-1.056000pt;}
.ws2f{word-spacing:-1.008000pt;}
.wsc4{word-spacing:-0.960000pt;}
.wsda{word-spacing:-0.920000pt;}
.wsd5{word-spacing:-0.912000pt;}
.wsde{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.864000pt;}
.ws2e{word-spacing:-0.816000pt;}
.ws52{word-spacing:-0.768000pt;}
.ws58{word-spacing:-0.720000pt;}
.wsf3{word-spacing:-0.680000pt;}
.wsae{word-spacing:-0.672000pt;}
.wse1{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.624000pt;}
.ws18{word-spacing:-0.576000pt;}
.ws3a{word-spacing:-0.528000pt;}
.wsf2{word-spacing:-0.520000pt;}
.ws34{word-spacing:-0.499200pt;}
.ws8{word-spacing:-0.480000pt;}
.ws100{word-spacing:-0.440000pt;}
.wsc2{word-spacing:-0.432000pt;}
.ws2b{word-spacing:-0.384000pt;}
.wsfe{word-spacing:-0.360000pt;}
.ws3f{word-spacing:-0.336000pt;}
.wse5{word-spacing:-0.320000pt;}
.wsbc{word-spacing:-0.312000pt;}
.ws4f{word-spacing:-0.288000pt;}
.ws2d{word-spacing:-0.280800pt;}
.wsee{word-spacing:-0.280000pt;}
.wsbf{word-spacing:-0.249600pt;}
.wse{word-spacing:-0.240000pt;}
.wsd4{word-spacing:-0.234667pt;}
.wsba{word-spacing:-0.218400pt;}
.wse3{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.wsd8{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.156000pt;}
.wsaf{word-spacing:-0.144000pt;}
.wsb6{word-spacing:-0.124800pt;}
.wsfa{word-spacing:-0.120000pt;}
.wsad{word-spacing:-0.096000pt;}
.wsdf{word-spacing:-0.080000pt;}
.ws2a{word-spacing:-0.048000pt;}
.wsea{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.wse7{word-spacing:0.040000pt;}
.ws35{word-spacing:0.048000pt;}
.wse2{word-spacing:0.080000pt;}
.wsd3{word-spacing:0.096000pt;}
.wsfb{word-spacing:0.120000pt;}
.ws13{word-spacing:0.144000pt;}
.wsf9{word-spacing:0.160000pt;}
.ws28{word-spacing:0.192000pt;}
.wsdb{word-spacing:0.200000pt;}
.ws15{word-spacing:0.240000pt;}
.ws19{word-spacing:0.288000pt;}
.wseb{word-spacing:0.320000pt;}
.ws59{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.384000pt;}
.wse4{word-spacing:0.400000pt;}
.wsbb{word-spacing:0.432000pt;}
.wse8{word-spacing:0.440000pt;}
.wsc0{word-spacing:0.480000pt;}
.wsed{word-spacing:0.520000pt;}
.ws29{word-spacing:0.528000pt;}
.wsf7{word-spacing:0.560000pt;}
.ws14{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.624000pt;}
.wsc3{word-spacing:0.672000pt;}
.wsf6{word-spacing:0.680000pt;}
.ws1e{word-spacing:0.720000pt;}
.wse6{word-spacing:0.760000pt;}
.ws32{word-spacing:0.768000pt;}
.ws57{word-spacing:0.816000pt;}
.ws50{word-spacing:0.864000pt;}
.wsd6{word-spacing:0.880000pt;}
.ws31{word-spacing:0.912000pt;}
.wsdc{word-spacing:0.920000pt;}
.ws17{word-spacing:0.960000pt;}
.wsdd{word-spacing:1.000000pt;}
.ws7b{word-spacing:1.008000pt;}
.wsc{word-spacing:1.056000pt;}
.wsf5{word-spacing:1.080000pt;}
.wsa{word-spacing:1.104000pt;}
.ws51{word-spacing:1.152000pt;}
.wsc8{word-spacing:1.200000pt;}
.ws3c{word-spacing:1.248000pt;}
.wsff{word-spacing:1.280000pt;}
.ws53{word-spacing:1.296000pt;}
.ws1c{word-spacing:1.344000pt;}
.wsec{word-spacing:1.360000pt;}
.ws1b{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.488000pt;}
.ws3e{word-spacing:1.536000pt;}
.ws2c{word-spacing:1.584000pt;}
.ws38{word-spacing:1.680000pt;}
.ws42{word-spacing:1.728000pt;}
.ws7d{word-spacing:1.776000pt;}
.ws9{word-spacing:1.824000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws60{word-spacing:1.968000pt;}
.wsb3{word-spacing:2.016000pt;}
.ws33{word-spacing:2.064000pt;}
.ws45{word-spacing:2.208000pt;}
.ws36{word-spacing:2.256000pt;}
.ws39{word-spacing:2.496000pt;}
.ws103{word-spacing:2.688000pt;}
.wsd7{word-spacing:2.760000pt;}
.ws104{word-spacing:2.784000pt;}
.ws101{word-spacing:2.832000pt;}
.ws102{word-spacing:2.976000pt;}
.ws55{word-spacing:3.024000pt;}
.ws7c{word-spacing:3.120000pt;}
.ws54{word-spacing:3.408000pt;}
.ws37{word-spacing:3.504000pt;}
.ws56{word-spacing:3.840000pt;}
.ws3d{word-spacing:4.176000pt;}
.ws5c{word-spacing:4.272000pt;}
.ws5f{word-spacing:4.752000pt;}
.ws7a{word-spacing:4.896000pt;}
.ws5b{word-spacing:4.944000pt;}
.ws107{word-spacing:5.040000pt;}
.ws41{word-spacing:5.568000pt;}
.ws79{word-spacing:5.664000pt;}
.ws105{word-spacing:5.760000pt;}
.ws106{word-spacing:6.000000pt;}
.ws5a{word-spacing:6.336000pt;}
.ws1f{word-spacing:13.584000pt;}
.ws86{word-spacing:22.810667pt;}
.ws8b{word-spacing:27.929060pt;}
.ws8c{word-spacing:33.039992pt;}
.ws9d{word-spacing:37.632000pt;}
.ws8f{word-spacing:39.390400pt;}
.ws68{word-spacing:40.842667pt;}
.ws95{word-spacing:42.970667pt;}
.ws8d{word-spacing:43.045333pt;}
.ws87{word-spacing:43.344000pt;}
.ws96{word-spacing:43.941333pt;}
.ws85{word-spacing:44.986667pt;}
.ws88{word-spacing:46.106667pt;}
.wsa1{word-spacing:46.778667pt;}
.ws89{word-spacing:47.301333pt;}
.ws90{word-spacing:50.288000pt;}
.ws8e{word-spacing:60.928000pt;}
.ws98{word-spacing:62.384000pt;}
.ws9f{word-spacing:63.354667pt;}
.ws9a{word-spacing:69.440000pt;}
.ws94{word-spacing:70.261333pt;}
.ws99{word-spacing:73.098667pt;}
.wsab{word-spacing:83.701329pt;}
.ws97{word-spacing:85.680000pt;}
.wsa3{word-spacing:89.749325pt;}
.ws66{word-spacing:89.977067pt;}
.ws8a{word-spacing:92.437333pt;}
.ws65{word-spacing:115.513062pt;}
.ws78{word-spacing:127.273067pt;}
.ws6e{word-spacing:139.440000pt;}
.ws75{word-spacing:144.218667pt;}
.ws77{word-spacing:145.599995pt;}
.ws71{word-spacing:150.416000pt;}
.ws6f{word-spacing:155.194667pt;}
.ws74{word-spacing:168.970667pt;}
.ws69{word-spacing:170.240000pt;}
.ws6a{word-spacing:175.317333pt;}
.ws72{word-spacing:178.419733pt;}
.ws6c{word-spacing:182.597333pt;}
.ws76{word-spacing:188.272000pt;}
.ws70{word-spacing:199.550400pt;}
.ws93{word-spacing:219.482667pt;}
.ws6b{word-spacing:221.125333pt;}
.ws83{word-spacing:324.800000pt;}
.ws82{word-spacing:604.687986pt;}
.ws9b{word-spacing:672.485301pt;}
.ws9c{word-spacing:821.370667pt;}
.ws9e{word-spacing:1011.023965pt;}
.wsa0{word-spacing:1134.224064pt;}
.wsa2{word-spacing:1254.736000pt;}
.wsa4{word-spacing:1430.986667pt;}
.wsa5{word-spacing:1592.863969pt;}
.wsa6{word-spacing:1728.126338pt;}
.wsa7{word-spacing:1865.733312pt;}
.wsa8{word-spacing:1998.378609pt;}
.wsa9{word-spacing:2177.429268pt;}
.wsaa{word-spacing:2309.029333pt;}
._1a{margin-left:-18.624006pt;}
._1d{margin-left:-15.197993pt;}
._1b{margin-left:-13.522667pt;}
._18{margin-left:-11.770080pt;}
._5{margin-left:-10.722150pt;}
._8{margin-left:-9.026139pt;}
._19{margin-left:-7.555200pt;}
._2{margin-left:-6.531200pt;}
._16{margin-left:-5.385600pt;}
._3{margin-left:-3.794718pt;}
._4{margin-left:-2.837232pt;}
._0{margin-left:-1.668267pt;}
._6{width:1.008533pt;}
._7{width:2.091200pt;}
._c{width:3.418289pt;}
._13{width:4.437977pt;}
._b{width:5.793600pt;}
._17{width:6.769378pt;}
._9{width:7.933178pt;}
._47{width:9.212288pt;}
._a{width:10.241117pt;}
._10{width:11.364331pt;}
._f{width:13.187712pt;}
._e{width:14.223047pt;}
._d{width:15.538042pt;}
._12{width:16.877113pt;}
._11{width:19.015517pt;}
._15{width:19.986819pt;}
._14{width:21.400967pt;}
._1c{width:42.325824pt;}
._1e{width:49.383467pt;}
._37{width:52.042667pt;}
._41{width:54.854976pt;}
._34{width:57.157333pt;}
._3e{width:58.352000pt;}
._3a{width:60.368000pt;}
._40{width:68.953067pt;}
._25{width:70.597333pt;}
._21{width:71.642667pt;}
._42{width:73.765289pt;}
._2c{width:74.740800pt;}
._32{width:78.766935pt;}
._43{width:80.079985pt;}
._3b{width:81.834667pt;}
._2a{width:84.882718pt;}
._22{width:88.218667pt;}
._45{width:89.152000pt;}
._38{width:90.944000pt;}
._23{width:92.512000pt;}
._3f{width:93.756309pt;}
._36{width:95.013325pt;}
._20{width:96.457600pt;}
._46{width:97.501291pt;}
._35{width:98.398343pt;}
._3c{width:99.493333pt;}
._29{width:101.621333pt;}
._33{width:103.561067pt;}
._1f{width:108.648533pt;}
._44{width:115.945024pt;}
._2f{width:121.396267pt;}
._26{width:137.834667pt;}
._24{width:139.652267pt;}
._2e{width:145.362718pt;}
._30{width:146.670933pt;}
._2b{width:154.472051pt;}
._28{width:184.788267pt;}
._2d{width:186.764851pt;}
._27{width:201.824000pt;}
._1{width:279.385600pt;}
._39{width:366.725318pt;}
._3d{width:553.317333pt;}
._31{width:874.122133pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.843733pt;}
.y32{bottom:2.843867pt;}
.ydb{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y31{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y98{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y30{bottom:60.477735pt;}
.y260{bottom:62.147363pt;}
.y16d{bottom:63.610800pt;}
.yda{bottom:65.769465pt;}
.y96{bottom:66.743328pt;}
.y53{bottom:70.553468pt;}
.y1d0{bottom:70.565468pt;}
.y15d{bottom:71.703737pt;}
.y25f{bottom:73.477363pt;}
.y1b0{bottom:73.761465pt;}
.y2f{bottom:73.811069pt;}
.yf2{bottom:73.889468pt;}
.y16c{bottom:76.942800pt;}
.yd9{bottom:79.101465pt;}
.y95{bottom:80.075328pt;}
.y52{bottom:83.885468pt;}
.y1cf{bottom:83.897468pt;}
.y25e{bottom:84.807363pt;}
.y15c{bottom:85.035737pt;}
.y1af{bottom:87.104132pt;}
.y2e{bottom:87.144402pt;}
.yf1{bottom:87.221468pt;}
.y20f{bottom:89.923465pt;}
.y16b{bottom:90.281467pt;}
.yd8{bottom:92.433465pt;}
.y94{bottom:93.409995pt;}
.y25d{bottom:96.137363pt;}
.y51{bottom:97.218802pt;}
.y1ce{bottom:97.229468pt;}
.y15b{bottom:98.370403pt;}
.y1ae{bottom:100.436132pt;}
.y2d{bottom:100.477735pt;}
.yf0{bottom:100.553468pt;}
.y20e{bottom:101.253465pt;}
.y16a{bottom:103.613467pt;}
.yd7{bottom:105.765465pt;}
.y93{bottom:106.741995pt;}
.y25c{bottom:107.467363pt;}
.y50{bottom:110.552135pt;}
.y1cd{bottom:110.561468pt;}
.y15a{bottom:111.702403pt;}
.y20d{bottom:112.583465pt;}
.y1ad{bottom:113.768132pt;}
.y2c{bottom:113.816402pt;}
.yef{bottom:113.885468pt;}
.y169{bottom:116.945467pt;}
.y25b{bottom:118.797363pt;}
.yd6{bottom:119.097465pt;}
.y92{bottom:120.075328pt;}
.y4f{bottom:123.886802pt;}
.y1cc{bottom:123.893468pt;}
.y20c{bottom:123.913465pt;}
.y159{bottom:125.037070pt;}
.y1ac{bottom:127.100132pt;}
.y2b{bottom:127.144402pt;}
.yee{bottom:127.222802pt;}
.y139{bottom:127.888135pt;}
.y25a{bottom:130.127363pt;}
.y168{bottom:130.277467pt;}
.yd5{bottom:132.429465pt;}
.y91{bottom:133.408662pt;}
.y20b{bottom:135.243465pt;}
.y4e{bottom:137.218802pt;}
.y1cb{bottom:137.225468pt;}
.y158{bottom:138.369070pt;}
.y1ab{bottom:140.432132pt;}
.y2a{bottom:140.483069pt;}
.yed{bottom:140.554802pt;}
.y138{bottom:141.220135pt;}
.y259{bottom:141.457363pt;}
.y167{bottom:143.609467pt;}
.yd4{bottom:145.761465pt;}
.y20a{bottom:146.573465pt;}
.y90{bottom:146.740662pt;}
.y4d{bottom:150.553468pt;}
.y1ca{bottom:150.557468pt;}
.y157{bottom:151.705070pt;}
.y258{bottom:152.787363pt;}
.y1aa{bottom:153.764132pt;}
.y29{bottom:153.811069pt;}
.yec{bottom:153.886802pt;}
.y137{bottom:154.552135pt;}
.y166{bottom:156.942668pt;}
.y209{bottom:157.903465pt;}
.yd3{bottom:159.093465pt;}
.y4c{bottom:163.885468pt;}
.y1c9{bottom:163.889468pt;}
.y257{bottom:164.117363pt;}
.y156{bottom:165.037070pt;}
.y1a9{bottom:167.096132pt;}
.y28{bottom:167.144392pt;}
.yeb{bottom:167.218802pt;}
.y136{bottom:167.889468pt;}
.y208{bottom:169.233465pt;}
.y165{bottom:170.278800pt;}
.yd2{bottom:172.426799pt;}
.y256{bottom:175.447363pt;}
.y8f{bottom:176.083328pt;}
.y4b{bottom:177.220135pt;}
.y1c8{bottom:177.221468pt;}
.y155{bottom:178.369070pt;}
.y1a8{bottom:180.428132pt;}
.y27{bottom:180.483058pt;}
.yea{bottom:180.553468pt;}
.y207{bottom:180.563465pt;}
.y135{bottom:181.221468pt;}
.y27c{bottom:183.255328pt;}
.y164{bottom:183.610800pt;}
.y255{bottom:186.777363pt;}
.y8e{bottom:189.415328pt;}
.y4a{bottom:190.552135pt;}
.y1c7{bottom:190.553468pt;}
.y154{bottom:191.703737pt;}
.y206{bottom:191.893465pt;}
.y1a7{bottom:193.764132pt;}
.y26{bottom:193.811058pt;}
.ye9{bottom:193.885468pt;}
.y134{bottom:194.553468pt;}
.y163{bottom:196.942800pt;}
.y254{bottom:198.107363pt;}
.yd1{bottom:201.769465pt;}
.y8d{bottom:202.747328pt;}
.y205{bottom:203.223465pt;}
.y1c6{bottom:203.885468pt;}
.y49{bottom:203.889468pt;}
.y153{bottom:205.035737pt;}
.y1a6{bottom:207.096132pt;}
.y25{bottom:207.144392pt;}
.ye8{bottom:207.220135pt;}
.y133{bottom:207.885468pt;}
.y253{bottom:209.437363pt;}
.y27b{bottom:209.919327pt;}
.y162{bottom:210.277467pt;}
.y204{bottom:214.553465pt;}
.yd0{bottom:215.101465pt;}
.y8c{bottom:216.079328pt;}
.y1c5{bottom:217.218802pt;}
.y48{bottom:217.221468pt;}
.y152{bottom:218.367737pt;}
.y1a5{bottom:220.428132pt;}
.ye7{bottom:220.552135pt;}
.y252{bottom:220.767363pt;}
.y132{bottom:221.217468pt;}
.y27a{bottom:223.251327pt;}
.y161{bottom:223.609467pt;}
.y24{bottom:224.439067pt;}
.y203{bottom:225.883465pt;}
.ycf{bottom:228.433465pt;}
.y8b{bottom:229.411328pt;}
.y1c4{bottom:230.552135pt;}
.y47{bottom:230.553468pt;}
.y151{bottom:231.701070pt;}
.y251{bottom:232.097363pt;}
.y1a4{bottom:233.762799pt;}
.ye6{bottom:233.886802pt;}
.y279{bottom:236.583327pt;}
.y160{bottom:236.942800pt;}
.y202{bottom:237.213465pt;}
.yce{bottom:241.765465pt;}
.y8a{bottom:242.743328pt;}
.y250{bottom:243.427363pt;}
.y46{bottom:243.885468pt;}
.y1c3{bottom:243.886802pt;}
.y1a3{bottom:247.094799pt;}
.ye5{bottom:247.218802pt;}
.y201{bottom:248.543465pt;}
.y278{bottom:249.915327pt;}
.y15f{bottom:250.274800pt;}
.y131{bottom:250.576115pt;}
.y24f{bottom:254.757363pt;}
.ycd{bottom:255.097465pt;}
.y89{bottom:256.075328pt;}
.y1c2{bottom:257.218802pt;}
.y45{bottom:257.220135pt;}
.y200{bottom:259.873465pt;}
.y1a2{bottom:260.429465pt;}
.ye4{bottom:260.561448pt;}
.y277{bottom:263.247327pt;}
.y130{bottom:263.908115pt;}
.y24e{bottom:266.087363pt;}
.y22{bottom:268.065605pt;}
.ycc{bottom:268.429465pt;}
.y88{bottom:269.407328pt;}
.y44{bottom:270.552135pt;}
.y1ff{bottom:271.203465pt;}
.y1a1{bottom:273.761465pt;}
.ye3{bottom:273.893448pt;}
.y276{bottom:276.579327pt;}
.y12f{bottom:277.240115pt;}
.y24d{bottom:277.417363pt;}
.y21{bottom:281.397605pt;}
.ycb{bottom:281.761465pt;}
.y1fe{bottom:282.533465pt;}
.y43{bottom:283.889468pt;}
.y1c1{bottom:283.902781pt;}
.y1a0{bottom:287.100132pt;}
.ye2{bottom:287.225448pt;}
.y24c{bottom:288.747363pt;}
.y171{bottom:289.460133pt;}
.y275{bottom:289.911327pt;}
.y12e{bottom:290.572115pt;}
.y15e{bottom:293.574809pt;}
.y1fd{bottom:293.863465pt;}
.y20{bottom:294.729605pt;}
.yca{bottom:295.093465pt;}
.y42{bottom:297.221468pt;}
.y1c0{bottom:297.234781pt;}
.y87{bottom:298.741995pt;}
.y24b{bottom:300.077363pt;}
.y19f{bottom:300.432132pt;}
.ye1{bottom:300.557448pt;}
.y170{bottom:302.792133pt;}
.y274{bottom:303.243327pt;}
.y12d{bottom:303.904115pt;}
.y1fc{bottom:305.193465pt;}
.y1f{bottom:308.094946pt;}
.y41{bottom:310.553468pt;}
.y1bf{bottom:310.566781pt;}
.y24a{bottom:311.407363pt;}
.y86{bottom:312.082015pt;}
.y19e{bottom:313.764132pt;}
.ye0{bottom:313.889448pt;}
.y1fb{bottom:316.523465pt;}
.y12c{bottom:317.236115pt;}
.y1e{bottom:321.426946pt;}
.y249{bottom:322.737363pt;}
.y273{bottom:323.233993pt;}
.y40{bottom:323.885468pt;}
.y1be{bottom:323.898781pt;}
.yc9{bottom:324.432132pt;}
.y85{bottom:325.414015pt;}
.y19d{bottom:327.096132pt;}
.ydf{bottom:327.221448pt;}
.y1fa{bottom:327.853465pt;}
.y12b{bottom:330.568115pt;}
.y248{bottom:334.067363pt;}
.y1d{bottom:334.758946pt;}
.y272{bottom:336.565993pt;}
.y3f{bottom:337.225448pt;}
.y1bd{bottom:337.230781pt;}
.yc8{bottom:337.764132pt;}
.y84{bottom:338.746015pt;}
.y1f9{bottom:339.183465pt;}
.y19c{bottom:340.428132pt;}
.yde{bottom:340.553448pt;}
.y12a{bottom:343.900115pt;}
.y247{bottom:345.397363pt;}
.y1c{bottom:348.090946pt;}
.y1f8{bottom:350.513465pt;}
.y3e{bottom:350.557448pt;}
.y1bc{bottom:350.562781pt;}
.yc7{bottom:351.096132pt;}
.y83{bottom:352.078015pt;}
.y19b{bottom:353.762799pt;}
.ydd{bottom:353.885448pt;}
.y271{bottom:356.569993pt;}
.y246{bottom:356.727363pt;}
.y129{bottom:357.232115pt;}
.y1f7{bottom:361.843465pt;}
.y3d{bottom:363.889448pt;}
.y1bb{bottom:363.894781pt;}
.yc6{bottom:364.428132pt;}
.y82{bottom:365.410015pt;}
.y19a{bottom:367.094799pt;}
.ydc{bottom:367.217448pt;}
.y245{bottom:368.057363pt;}
.y128{bottom:370.564115pt;}
.y1f6{bottom:373.173465pt;}
.y270{bottom:376.573993pt;}
.y3c{bottom:377.221448pt;}
.y1ba{bottom:377.226781pt;}
.yc5{bottom:377.761465pt;}
.y81{bottom:378.742015pt;}
.y244{bottom:379.387363pt;}
.y199{bottom:380.430799pt;}
.y127{bottom:383.896115pt;}
.y1f5{bottom:384.503465pt;}
.y1b{bottom:388.218946pt;}
.y3b{bottom:390.553448pt;}
.y1b9{bottom:390.558781pt;}
.y243{bottom:390.717363pt;}
.yc4{bottom:391.102799pt;}
.y80{bottom:392.074015pt;}
.y198{bottom:393.762799pt;}
.y1f4{bottom:395.833465pt;}
.y26f{bottom:396.577993pt;}
.y126{bottom:397.228115pt;}
.y242{bottom:402.047363pt;}
.y1a{bottom:402.882946pt;}
.y3a{bottom:403.885448pt;}
.y1b8{bottom:403.890781pt;}
.yc3{bottom:404.434799pt;}
.y7f{bottom:405.407349pt;}
.y197{bottom:407.094799pt;}
.y1f3{bottom:407.163465pt;}
.y26e{bottom:409.909993pt;}
.y125{bottom:410.560115pt;}
.y241{bottom:413.377363pt;}
.y39{bottom:417.222781pt;}
.y19{bottom:417.546946pt;}
.yc2{bottom:417.766799pt;}
.y1f2{bottom:418.493465pt;}
.y196{bottom:420.429465pt;}
.y26d{bottom:423.243327pt;}
.y124{bottom:423.892115pt;}
.y240{bottom:424.707363pt;}
.yf4{bottom:425.083202pt;}
.y1f1{bottom:429.823465pt;}
.y38{bottom:430.554781pt;}
.yc1{bottom:431.098799pt;}
.y18{bottom:432.210946pt;}
.y195{bottom:433.761465pt;}
.y7e{bottom:434.747349pt;}
.y23f{bottom:436.037363pt;}
.y123{bottom:437.224115pt;}
.yf3{bottom:438.415202pt;}
.y1f0{bottom:441.153465pt;}
.y37{bottom:443.886781pt;}
.yc0{bottom:444.430799pt;}
.y17{bottom:446.874946pt;}
.y194{bottom:447.098799pt;}
.y23e{bottom:447.367363pt;}
.y7d{bottom:448.079349pt;}
.y26c{bottom:449.909993pt;}
.y122{bottom:450.556115pt;}
.y1ef{bottom:452.483465pt;}
.y36{bottom:457.218781pt;}
.ybf{bottom:457.762799pt;}
.y23d{bottom:458.697363pt;}
.y193{bottom:460.430799pt;}
.y7c{bottom:461.411349pt;}
.y16{bottom:461.538946pt;}
.y26b{bottom:463.243327pt;}
.y1ee{bottom:463.813465pt;}
.y121{bottom:463.888115pt;}
.y117{bottom:466.745766pt;}
.y23c{bottom:470.027363pt;}
.y35{bottom:470.552115pt;}
.y1b7{bottom:470.554781pt;}
.ybe{bottom:471.094799pt;}
.y192{bottom:473.762799pt;}
.y7b{bottom:474.743349pt;}
.y1ed{bottom:475.143465pt;}
.y15{bottom:476.202946pt;}
.y120{bottom:477.220115pt;}
.y23b{bottom:481.357363pt;}
.y116{bottom:482.332432pt;}
.y34{bottom:483.884115pt;}
.y1b6{bottom:483.886781pt;}
.ybd{bottom:484.430799pt;}
.y1ec{bottom:486.473465pt;}
.y191{bottom:487.094799pt;}
.y7a{bottom:488.075349pt;}
.y11f{bottom:490.552115pt;}
.y14{bottom:490.866946pt;}
.y26a{bottom:491.217989pt;}
.y23a{bottom:492.687363pt;}
.y1b5{bottom:497.218781pt;}
.ybc{bottom:497.762799pt;}
.y1eb{bottom:497.803465pt;}
.y115{bottom:497.919099pt;}
.y190{bottom:500.432132pt;}
.y79{bottom:501.408682pt;}
.y11e{bottom:503.888115pt;}
.y239{bottom:504.017363pt;}
.y269{bottom:504.549989pt;}
.y13{bottom:505.530946pt;}
.y1ea{bottom:509.133465pt;}
.y1b4{bottom:510.554781pt;}
.ybb{bottom:511.094799pt;}
.y114{bottom:513.505766pt;}
.y18f{bottom:513.764132pt;}
.y78{bottom:514.743349pt;}
.y238{bottom:515.347363pt;}
.y11d{bottom:517.220115pt;}
.y268{bottom:517.881989pt;}
.y12{bottom:520.208280pt;}
.y1e9{bottom:520.463465pt;}
.y1b3{bottom:523.886781pt;}
.yba{bottom:524.428132pt;}
.y237{bottom:526.677363pt;}
.y18e{bottom:527.096132pt;}
.y77{bottom:528.075349pt;}
.y113{bottom:529.092432pt;}
.y11c{bottom:530.552115pt;}
.y54{bottom:530.694784pt;}
.y267{bottom:531.213989pt;}
.y1e8{bottom:531.793465pt;}
.y11{bottom:534.872280pt;}
.y1b2{bottom:537.218781pt;}
.yb9{bottom:537.761465pt;}
.y236{bottom:538.007363pt;}
.y18d{bottom:540.428132pt;}
.y76{bottom:541.411349pt;}
.y1e7{bottom:543.123465pt;}
.y11b{bottom:543.888115pt;}
.y266{bottom:544.547323pt;}
.y112{bottom:544.679099pt;}
.y235{bottom:549.337363pt;}
.y10{bottom:549.536280pt;}
.y1b1{bottom:550.550781pt;}
.yb8{bottom:551.094799pt;}
.y18c{bottom:553.761465pt;}
.y1e6{bottom:554.453465pt;}
.y75{bottom:554.743349pt;}
.y11a{bottom:557.220115pt;}
.y111{bottom:560.265766pt;}
.y234{bottom:560.667363pt;}
.yf{bottom:564.200280pt;}
.yb7{bottom:564.429465pt;}
.y1e5{bottom:565.783465pt;}
.y18b{bottom:567.097465pt;}
.y74{bottom:568.075349pt;}
.y119{bottom:570.552115pt;}
.y265{bottom:571.217989pt;}
.y233{bottom:571.997363pt;}
.y110{bottom:575.852432pt;}
.y109{bottom:575.861766pt;}
.y1e4{bottom:577.113465pt;}
.yb6{bottom:577.761465pt;}
.ye{bottom:578.864280pt;}
.y18a{bottom:580.429465pt;}
.y73{bottom:581.410015pt;}
.y232{bottom:583.327363pt;}
.y118{bottom:583.884115pt;}
.y264{bottom:584.549989pt;}
.y1e3{bottom:588.443465pt;}
.yb5{bottom:591.096132pt;}
.y10f{bottom:591.439099pt;}
.yd{bottom:593.528280pt;}
.y189{bottom:593.761465pt;}
.y231{bottom:594.657363pt;}
.y72{bottom:594.742015pt;}
.y263{bottom:597.881989pt;}
.y1e2{bottom:599.773465pt;}
.yb4{bottom:604.428132pt;}
.y1d2{bottom:605.362784pt;}
.y230{bottom:605.987363pt;}
.y10e{bottom:607.025766pt;}
.y188{bottom:607.097465pt;}
.y71{bottom:608.076682pt;}
.y1e1{bottom:611.103465pt;}
.y262{bottom:611.213989pt;}
.y22f{bottom:617.317363pt;}
.yb3{bottom:617.760132pt;}
.y1d1{bottom:618.694784pt;}
.yc{bottom:620.194946pt;}
.y187{bottom:620.429465pt;}
.y70{bottom:621.408682pt;}
.y1e0{bottom:622.433465pt;}
.y10d{bottom:622.612432pt;}
.y261{bottom:624.547323pt;}
.y22e{bottom:628.647363pt;}
.y186{bottom:633.761465pt;}
.y1df{bottom:633.763465pt;}
.y6f{bottom:634.747308pt;}
.yb{bottom:636.194946pt;}
.y10c{bottom:638.199099pt;}
.y22d{bottom:639.977363pt;}
.y1de{bottom:645.093465pt;}
.y13c{bottom:645.884381pt;}
.yb2{bottom:647.094799pt;}
.y16f{bottom:647.922801pt;}
.y6e{bottom:648.079308pt;}
.y22c{bottom:651.307363pt;}
.ya{bottom:652.194946pt;}
.y10b{bottom:653.785766pt;}
.y1dd{bottom:656.426799pt;}
.y13b{bottom:659.216381pt;}
.y185{bottom:660.429506pt;}
.yb1{bottom:660.436173pt;}
.y16e{bottom:661.254801pt;}
.y6d{bottom:661.411308pt;}
.y22b{bottom:662.637363pt;}
.y10a{bottom:669.372432pt;}
.y13a{bottom:672.548381pt;}
.y184{bottom:673.761506pt;}
.yb0{bottom:673.768173pt;}
.y22a{bottom:673.967363pt;}
.y6c{bottom:674.743308pt;}
.y9{bottom:681.506906pt;}
.y108{bottom:684.959099pt;}
.y229{bottom:685.297363pt;}
.y183{bottom:687.096173pt;}
.yaf{bottom:687.100173pt;}
.y6b{bottom:688.075308pt;}
.y228{bottom:696.627363pt;}
.y1dc{bottom:700.426839pt;}
.y182{bottom:700.428173pt;}
.yae{bottom:700.432173pt;}
.y150{bottom:700.536514pt;}
.y107{bottom:700.545766pt;}
.y6a{bottom:701.409975pt;}
.y227{bottom:707.957363pt;}
.yad{bottom:713.764173pt;}
.y181{bottom:713.772173pt;}
.y69{bottom:714.741975pt;}
.y14f{bottom:716.123180pt;}
.y106{bottom:716.132432pt;}
.y226{bottom:719.287363pt;}
.y8{bottom:721.512239pt;}
.yac{bottom:727.096173pt;}
.y1db{bottom:727.097506pt;}
.y180{bottom:727.104173pt;}
.y68{bottom:728.076641pt;}
.y225{bottom:730.617363pt;}
.y14d{bottom:731.709847pt;}
.y102{bottom:731.719099pt;}
.yab{bottom:740.428173pt;}
.y1da{bottom:740.429506pt;}
.y17f{bottom:740.436173pt;}
.y67{bottom:741.408641pt;}
.y224{bottom:741.947363pt;}
.y14e{bottom:747.296514pt;}
.y105{bottom:747.305766pt;}
.y223{bottom:753.277363pt;}
.yaa{bottom:753.761506pt;}
.y17e{bottom:753.768173pt;}
.y66{bottom:754.744641pt;}
.y7{bottom:761.517572pt;}
.y14c{bottom:762.883180pt;}
.y104{bottom:762.892432pt;}
.y222{bottom:764.607363pt;}
.y1d9{bottom:767.093506pt;}
.ya9{bottom:767.094839pt;}
.y17d{bottom:767.100173pt;}
.y65{bottom:768.076641pt;}
.y221{bottom:775.937363pt;}
.y14b{bottom:778.469847pt;}
.y103{bottom:778.479099pt;}
.y1d8{bottom:780.426839pt;}
.ya8{bottom:780.429506pt;}
.y17c{bottom:780.432173pt;}
.y64{bottom:781.408641pt;}
.y220{bottom:787.267363pt;}
.ya7{bottom:793.761506pt;}
.y17b{bottom:793.764173pt;}
.y101{bottom:794.056432pt;}
.y148{bottom:794.056514pt;}
.y63{bottom:794.744641pt;}
.y21f{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y17a{bottom:807.096173pt;}
.ya6{bottom:807.098839pt;}
.y1d7{bottom:807.109506pt;}
.y62{bottom:808.076641pt;}
.y100{bottom:809.643099pt;}
.y14a{bottom:809.643180pt;}
.y21e{bottom:809.927363pt;}
.y179{bottom:820.428173pt;}
.ya5{bottom:820.430839pt;}
.y1d6{bottom:820.441506pt;}
.y21d{bottom:821.257363pt;}
.y61{bottom:821.408641pt;}
.yff{bottom:825.229766pt;}
.y149{bottom:825.229847pt;}
.y21c{bottom:832.587363pt;}
.ya4{bottom:833.762839pt;}
.y178{bottom:833.768173pt;}
.y1d5{bottom:833.773506pt;}
.y60{bottom:834.743308pt;}
.yfe{bottom:840.816432pt;}
.y147{bottom:840.816514pt;}
.y5{bottom:841.528239pt;}
.y21b{bottom:843.917363pt;}
.ya3{bottom:847.094839pt;}
.y177{bottom:847.100173pt;}
.y1d4{bottom:847.105506pt;}
.y5f{bottom:848.075308pt;}
.y23{bottom:848.326009pt;}
.y21a{bottom:855.247363pt;}
.yfd{bottom:856.403099pt;}
.y146{bottom:856.403180pt;}
.ya2{bottom:860.428173pt;}
.y176{bottom:860.432173pt;}
.y1d3{bottom:860.437506pt;}
.y5e{bottom:861.408641pt;}
.y219{bottom:866.577363pt;}
.yfc{bottom:871.989766pt;}
.y145{bottom:871.989847pt;}
.yf6{bottom:871.999099pt;}
.y175{bottom:873.764173pt;}
.ya1{bottom:873.769506pt;}
.y5d{bottom:874.744641pt;}
.y218{bottom:877.907363pt;}
.y140{bottom:882.583180pt;}
.y174{bottom:887.096173pt;}
.ya0{bottom:887.101506pt;}
.yfb{bottom:887.576432pt;}
.y144{bottom:887.576514pt;}
.y5c{bottom:888.076641pt;}
.y217{bottom:889.237363pt;}
.y13f{bottom:892.579180pt;}
.y173{bottom:900.428173pt;}
.y9f{bottom:900.433506pt;}
.y216{bottom:900.567363pt;}
.y5b{bottom:901.408641pt;}
.yfa{bottom:903.163099pt;}
.y143{bottom:903.163180pt;}
.y215{bottom:911.897363pt;}
.y172{bottom:913.761506pt;}
.y9e{bottom:913.765506pt;}
.y5a{bottom:914.744641pt;}
.yf9{bottom:918.749766pt;}
.y142{bottom:918.749847pt;}
.y214{bottom:923.227363pt;}
.y9d{bottom:927.097506pt;}
.y59{bottom:928.076641pt;}
.yf8{bottom:934.336432pt;}
.y141{bottom:934.336514pt;}
.y213{bottom:934.557363pt;}
.y9c{bottom:940.429506pt;}
.y58{bottom:941.408641pt;}
.y212{bottom:945.887363pt;}
.yf7{bottom:949.923099pt;}
.y13e{bottom:949.923180pt;}
.y9b{bottom:953.761506pt;}
.y57{bottom:954.741975pt;}
.y211{bottom:957.217363pt;}
.yf5{bottom:965.509766pt;}
.y13d{bottom:965.509847pt;}
.y9a{bottom:967.093506pt;}
.y56{bottom:968.073975pt;}
.y210{bottom:968.547363pt;}
.y55{bottom:1013.902507pt;}
.y99{bottom:1013.996908pt;}
.y33{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.he{height:21.193555pt;}
.h2{height:30.687500pt;}
.h3e{height:31.476562pt;}
.h10{height:32.605469pt;}
.h9{height:34.523438pt;}
.h31{height:36.922667pt;}
.h12{height:37.017547pt;}
.h11{height:37.017588pt;}
.h13{height:37.038880pt;}
.hf{height:37.038921pt;}
.h30{height:38.229333pt;}
.h41{height:39.560000pt;}
.h3f{height:40.080000pt;}
.h3{height:40.604167pt;}
.h40{height:40.960000pt;}
.h24{height:42.195312pt;}
.h7{height:43.600260pt;}
.h8{height:43.718750pt;}
.h14{height:43.887578pt;}
.h42{height:44.834667pt;}
.ha{height:45.703125pt;}
.hb{height:47.472000pt;}
.hc{height:47.523402pt;}
.h3d{height:47.582182pt;}
.h39{height:47.608605pt;}
.h3b{height:47.614139pt;}
.h2c{height:47.619271pt;}
.h2f{height:47.619434pt;}
.h38{height:47.624605pt;}
.h17{height:47.624930pt;}
.h3a{height:47.630101pt;}
.h35{height:47.630144pt;}
.h2a{height:47.635271pt;}
.h18{height:47.635434pt;}
.h16{height:47.635597pt;}
.h3c{height:47.640279pt;}
.h33{height:47.640282pt;}
.h37{height:47.640605pt;}
.h2e{height:47.640767pt;}
.h1f{height:47.641581pt;}
.h2b{height:47.645938pt;}
.h19{height:47.646101pt;}
.h36{height:47.646124pt;}
.h1b{height:47.646141pt;}
.h21{height:47.646915pt;}
.h29{height:47.651271pt;}
.h2d{height:47.651434pt;}
.h1d{height:47.651475pt;}
.h15{height:47.651597pt;}
.h34{height:47.652004pt;}
.h20{height:47.652248pt;}
.h27{height:47.656605pt;}
.h25{height:47.656808pt;}
.h28{height:48.058667pt;}
.h22{height:48.069496pt;}
.h1a{height:48.074667pt;}
.h23{height:48.080000pt;}
.h32{height:48.085333pt;}
.h26{height:48.090667pt;}
.h1c{height:48.096000pt;}
.h1e{height:49.152000pt;}
.h4{height:50.755208pt;}
.hd{height:69.046875pt;}
.h5{height:99.734375pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.425200pt;}
.x3{left:54.803202pt;}
.xd{left:59.038494pt;}
.xe{left:102.037160pt;}
.x6{left:125.685069pt;}
.xc{left:144.587870pt;}
.x5{left:207.874003pt;}
.xa{left:212.063070pt;}
.x8{left:223.874405pt;}
.x10{left:225.874003pt;}
.x11{left:268.887736pt;}
.xb{left:270.517742pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xf{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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