
    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_a51a21197f1adb5e735a555e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_c6b1fac959f75893795e1c2d.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ef18f1360a2fe6795faf491f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_0643219487822fddd461d6d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;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_4bbb2b3cde6204f2235dd670.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_283361ec105b77452590f7a1.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e46ee98ed1ac7fee1f248712.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_216707959ba28b0fb13121d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_a937a192e63f6fb3207d3ab4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_2239f7ca7e1177caae3422de.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_5899f41a5328ff00ec213105.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_a372270c673fa489a7f1e598.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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_05fd7dfbb0fa8eea60a7ac00.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.626000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_52d357ffd22d5374a1c7ae07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_451c8a69b3d9a96160723318.woff2')format("woff");}.fff{font-family:fff;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d51af95c9d99b43660448992.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688000;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:ff11;src:url('chunks/assets/font_801ddbe7daf7190da51d1880.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.646000;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:ff12;src:url('chunks/assets/font_a2dae25de4d680fece32f43d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.656000;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:ff13;src:url('chunks/assets/font_f5555cd50acec7a0c06a4158.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.ve{vertical-align:-14.778000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:8.964000px;}
.v6{vertical-align:11.958000px;}
.vb{vertical-align:17.268000px;}
.v5{vertical-align:18.528000px;}
.v7{vertical-align:20.610000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:24.504000px;}
.v9{vertical-align:40.440000px;}
.va{vertical-align:57.708000px;}
.vc{vertical-align:81.444000px;}
.vd{vertical-align:86.082000px;}
.v8{vertical-align:90.252000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000062px;}
.ls48{letter-spacing:0.000312px;}
.ls39{letter-spacing:0.000993px;}
.ls2{letter-spacing:0.001002px;}
.ls5b{letter-spacing:0.001140px;}
.ls4b{letter-spacing:0.002245px;}
.lsf{letter-spacing:0.002685px;}
.ls29{letter-spacing:0.002842px;}
.ls27{letter-spacing:0.003954px;}
.ls1e{letter-spacing:0.005023px;}
.ls4e{letter-spacing:0.458387px;}
.ls4a{letter-spacing:0.464387px;}
.ls22{letter-spacing:1.290579px;}
.ls0{letter-spacing:2.984525px;}
.ls2b{letter-spacing:2.985340px;}
.ls5c{letter-spacing:2.989140px;}
.lsd{letter-spacing:2.990525px;}
.ls38{letter-spacing:3.002207px;}
.ls3d{letter-spacing:4.573559px;}
.ls56{letter-spacing:6.517690px;}
.ls35{letter-spacing:7.170615px;}
.ls21{letter-spacing:7.172446px;}
.ls4d{letter-spacing:7.176538px;}
.ls47{letter-spacing:11.064538px;}
.ls43{letter-spacing:11.066245px;}
.ls44{letter-spacing:11.070538px;}
.ls42{letter-spacing:11.280538px;}
.ls54{letter-spacing:11.662454px;}
.ls46{letter-spacing:13.208023px;}
.ls51{letter-spacing:13.278538px;}
.ls53{letter-spacing:13.282618px;}
.ls17{letter-spacing:13.284062px;}
.ls18{letter-spacing:13.284538px;}
.ls6{letter-spacing:13.436338px;}
.ls45{letter-spacing:14.054525px;}
.ls30{letter-spacing:14.720685px;}
.ls12{letter-spacing:15.024062px;}
.ls13{letter-spacing:15.024538px;}
.ls4f{letter-spacing:16.268525px;}
.ls2a{letter-spacing:16.269340px;}
.ls50{letter-spacing:16.274525px;}
.lsb{letter-spacing:16.602538px;}
.ls19{letter-spacing:16.604685px;}
.ls25{letter-spacing:16.606023px;}
.ls20{letter-spacing:16.606618px;}
.lsa{letter-spacing:16.610685px;}
.ls2f{letter-spacing:16.952685px;}
.ls2e{letter-spacing:17.219023px;}
.ls2c{letter-spacing:17.222245px;}
.ls57{letter-spacing:17.998618px;}
.ls3b{letter-spacing:18.171223px;}
.ls9{letter-spacing:18.512685px;}
.ls24{letter-spacing:18.716525px;}
.ls23{letter-spacing:18.722525px;}
.ls41{letter-spacing:18.746023px;}
.ls59{letter-spacing:19.238800px;}
.ls2d{letter-spacing:19.364023px;}
.ls4c{letter-spacing:19.586525px;}
.ls49{letter-spacing:19.592525px;}
.ls28{letter-spacing:19.630363px;}
.ls37{letter-spacing:19.668538px;}
.ls55{letter-spacing:20.249023px;}
.ls1b{letter-spacing:20.411249px;}
.ls52{letter-spacing:20.454538px;}
.ls11{letter-spacing:20.954338px;}
.ls15{letter-spacing:20.954400px;}
.ls14{letter-spacing:20.958062px;}
.ls3e{letter-spacing:20.972685px;}
.ls3c{letter-spacing:21.152525px;}
.ls5{letter-spacing:21.420532px;}
.ls58{letter-spacing:21.530685px;}
.ls33{letter-spacing:22.132896px;}
.lse{letter-spacing:22.350615px;}
.ls7{letter-spacing:22.742525px;}
.ls1c{letter-spacing:22.910525px;}
.lsc{letter-spacing:23.756685px;}
.ls26{letter-spacing:23.772538px;}
.ls3a{letter-spacing:23.855251px;}
.ls5a{letter-spacing:24.220896px;}
.ls36{letter-spacing:24.365915px;}
.ls1d{letter-spacing:24.900312px;}
.ls8{letter-spacing:24.944685px;}
.ls1a{letter-spacing:26.000525px;}
.ls1f{letter-spacing:26.124312px;}
.ls5d{letter-spacing:26.300525px;}
.ls31{letter-spacing:26.765915px;}
.ls10{letter-spacing:27.385866px;}
.ls40{letter-spacing:28.838823px;}
.ls1{letter-spacing:30.630532px;}
.ls3{letter-spacing:30.636532px;}
.ls3f{letter-spacing:31.140615px;}
.ls32{letter-spacing:35.362287px;}
.ls34{letter-spacing:44.082538px;}
.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;}
}
.ws3{word-spacing:-55.293996px;}
.ws9c{word-spacing:-38.937826px;}
.ws9d{word-spacing:-28.955301px;}
.wsf8{word-spacing:-27.650558px;}
.wsfd{word-spacing:-25.656828px;}
.wsfb{word-spacing:-25.655872px;}
.wsfe{word-spacing:-25.654490px;}
.wsfc{word-spacing:-25.653500px;}
.wsc5{word-spacing:-16.605662px;}
.wsec{word-spacing:-10.604191px;}
.wsde{word-spacing:-7.030803px;}
.wsf9{word-spacing:-5.547176px;}
.wsfa{word-spacing:-3.335478px;}
.ws85{word-spacing:-3.156152px;}
.ws121{word-spacing:-2.932013px;}
.wsf7{word-spacing:-2.917049px;}
.ws115{word-spacing:-2.797498px;}
.ws76{word-spacing:-2.677947px;}
.ws148{word-spacing:-2.663021px;}
.wsd4{word-spacing:-2.447827px;}
.ws9b{word-spacing:-2.438844px;}
.wsb1{word-spacing:-2.340230px;}
.ws26{word-spacing:-2.259518px;}
.wsea{word-spacing:-2.199742px;}
.ws84{word-spacing:-2.139966px;}
.ws127{word-spacing:-2.125037px;}
.wsb0{word-spacing:-2.071238px;}
.ws7d{word-spacing:-2.020415px;}
.wsaf{word-spacing:-2.017440px;}
.ws139{word-spacing:-1.963642px;}
.ws124{word-spacing:-1.856045px;}
.ws65{word-spacing:-1.841088px;}
.ws8e{word-spacing:-1.661762px;}
.ws1b{word-spacing:-1.482435px;}
.wse{word-spacing:-1.318061px;}
.ws67{word-spacing:-1.004230px;}
.ws19{word-spacing:-0.944454px;}
.ws128{word-spacing:-0.887674px;}
.ws32{word-spacing:-0.884679px;}
.wsc4{word-spacing:-0.878108px;}
.ws1f{word-spacing:-0.824903px;}
.wse2{word-spacing:-0.780077px;}
.ws45{word-spacing:-0.765128px;}
.ws14b{word-spacing:-0.726278px;}
.wsb3{word-spacing:-0.672480px;}
.wse1{word-spacing:-0.645576px;}
.ws6c{word-spacing:-0.585801px;}
.ws52{word-spacing:-0.466250px;}
.ws119{word-spacing:-0.457286px;}
.ws22{word-spacing:-0.346698px;}
.wsb2{word-spacing:-0.295891px;}
.wsbf{word-spacing:-0.227147px;}
.wse8{word-spacing:-0.188294px;}
.ws116{word-spacing:-0.071731px;}
.ws2d{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.wscf{word-spacing:-0.047820px;}
.wsc2{word-spacing:-0.041843px;}
.ws20{word-spacing:0.000000px;}
.ws2a{word-spacing:0.011955px;}
.ws126{word-spacing:0.026899px;}
.wsd1{word-spacing:0.071731px;}
.ws90{word-spacing:0.131506px;}
.ws13b{word-spacing:0.188294px;}
.ws10{word-spacing:0.242093px;}
.ws51{word-spacing:0.251058px;}
.ws39{word-spacing:0.310833px;}
.ws6b{word-spacing:0.370609px;}
.ws13c{word-spacing:0.403488px;}
.ws25{word-spacing:0.430384px;}
.ws91{word-spacing:0.549936px;}
.wsd2{word-spacing:0.603892px;}
.ws53{word-spacing:0.609711px;}
.wsf{word-spacing:0.618682px;}
.wsd3{word-spacing:0.729262px;}
.ws23{word-spacing:0.908589px;}
.ws18{word-spacing:0.968365px;}
.ws54{word-spacing:1.028140px;}
.ws38{word-spacing:1.087916px;}
.ws132{word-spacing:1.102867px;}
.ws41{word-spacing:1.147692px;}
.ws11d{word-spacing:1.156666px;}
.wsc1{word-spacing:1.207467px;}
.ws14d{word-spacing:1.264262px;}
.ws6d{word-spacing:1.327018px;}
.wsc{word-spacing:1.371859px;}
.ws99{word-spacing:1.386794px;}
.ws149{word-spacing:1.425658px;}
.ws80{word-spacing:1.446570px;}
.ws110{word-spacing:1.479456px;}
.ws47{word-spacing:1.506345px;}
.wsee{word-spacing:1.533254px;}
.ws3a{word-spacing:1.566121px;}
.ws5f{word-spacing:1.625896px;}
.ws66{word-spacing:1.685672px;}
.ws107{word-spacing:1.745448px;}
.ws11f{word-spacing:1.802246px;}
.ws7e{word-spacing:1.805223px;}
.ws96{word-spacing:1.864999px;}
.ws13e{word-spacing:1.909843px;}
.ws97{word-spacing:1.924774px;}
.ws2b{word-spacing:1.984550px;}
.wsd6{word-spacing:2.017440px;}
.wse9{word-spacing:2.044326px;}
.wse7{word-spacing:2.071238px;}
.ws4a{word-spacing:2.075292px;}
.ws4b{word-spacing:2.104101px;}
.ws14e{word-spacing:2.125037px;}
.ws64{word-spacing:2.163877px;}
.wsf0{word-spacing:2.223652px;}
.ws12e{word-spacing:2.232634px;}
.wsdf{word-spacing:2.283428px;}
.ws10e{word-spacing:2.286432px;}
.ws12b{word-spacing:2.340230px;}
.ws28{word-spacing:2.343204px;}
.ws5e{word-spacing:2.402979px;}
.ws123{word-spacing:2.447827px;}
.ws43{word-spacing:2.462755px;}
.ws9a{word-spacing:2.642082px;}
.ws49{word-spacing:2.701857px;}
.ws88{word-spacing:2.761633px;}
.ws10f{word-spacing:2.770618px;}
.ws147{word-spacing:2.878214px;}
.wsff{word-spacing:2.881184px;}
.wsa8{word-spacing:2.940960px;}
.wsa2{word-spacing:3.000735px;}
.wsb4{word-spacing:3.039610px;}
.ws74{word-spacing:3.060511px;}
.ws12c{word-spacing:3.068673px;}
.ws2{word-spacing:3.093408px;}
.ws57{word-spacing:3.120286px;}
.ws5c{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.wse4{word-spacing:3.308602px;}
.wsa4{word-spacing:3.315953px;}
.wsaa{word-spacing:3.358683px;}
.ws15{word-spacing:3.359389px;}
.wsef{word-spacing:3.523795px;}
.ws105{word-spacing:3.538716px;}
.ws98{word-spacing:3.598491px;}
.wsdb{word-spacing:3.658267px;}
.ws10a{word-spacing:3.718042px;}
.ws136{word-spacing:3.738989px;}
.wsc0{word-spacing:3.777818px;}
.ws120{word-spacing:3.792787px;}
.wsbd{word-spacing:3.801728px;}
.ws138{word-spacing:3.832356px;}
.ws8f{word-spacing:3.837594px;}
.ws78{word-spacing:3.897369px;}
.wse5{word-spacing:3.900384px;}
.ws93{word-spacing:3.941042px;}
.ws92{word-spacing:3.957145px;}
.wsb{word-spacing:4.007981px;}
.ws3b{word-spacing:4.016920px;}
.ws8a{word-spacing:4.076696px;}
.ws11e{word-spacing:4.115578px;}
.ws29{word-spacing:4.136472px;}
.wsf3{word-spacing:4.169376px;}
.ws145{word-spacing:4.223174px;}
.ws63{word-spacing:4.256023px;}
.ws134{word-spacing:4.276973px;}
.ws117{word-spacing:4.315798px;}
.wseb{word-spacing:4.375574px;}
.wsb9{word-spacing:4.435350px;}
.wse6{word-spacing:4.438368px;}
.ws11a{word-spacing:4.492166px;}
.ws6e{word-spacing:4.495125px;}
.ws12d{word-spacing:4.545965px;}
.ws14c{word-spacing:4.599763px;}
.ws1e{word-spacing:4.614676px;}
.wsab{word-spacing:4.674452px;}
.ws2f{word-spacing:4.734228px;}
.ws135{word-spacing:4.761158px;}
.wsc3{word-spacing:4.913554px;}
.ws133{word-spacing:4.922554px;}
.wsd8{word-spacing:4.973330px;}
.wsa1{word-spacing:5.033106px;}
.wsbb{word-spacing:5.092881px;}
.wsd{word-spacing:5.137747px;}
.wsa9{word-spacing:5.152657px;}
.ws4e{word-spacing:5.212432px;}
.ws14{word-spacing:5.272208px;}
.ws3c{word-spacing:5.331984px;}
.wse0{word-spacing:5.391759px;}
.ws14f{word-spacing:5.406739px;}
.ws1d{word-spacing:5.451535px;}
.wsda{word-spacing:5.469892px;}
.ws56{word-spacing:5.571086px;}
.ws137{word-spacing:5.621933px;}
.ws12a{word-spacing:5.675731px;}
.ws68{word-spacing:5.690637px;}
.ws50{word-spacing:5.750413px;}
.ws129{word-spacing:5.783328px;}
.wsd7{word-spacing:5.810188px;}
.ws102{word-spacing:5.869964px;}
.wsa3{word-spacing:5.929740px;}
.ws3d{word-spacing:5.989515px;}
.wsf5{word-spacing:6.106118px;}
.ws9f{word-spacing:6.109066px;}
.ws16{word-spacing:6.168842px;}
.ws103{word-spacing:6.228618px;}
.ws60{word-spacing:6.288393px;}
.ws125{word-spacing:6.321312px;}
.ws4f{word-spacing:6.348169px;}
.wsb5{word-spacing:6.407944px;}
.ws79{word-spacing:6.467720px;}
.ws141{word-spacing:6.482707px;}
.ws75{word-spacing:6.527496px;}
.ws3f{word-spacing:6.587271px;}
.wsdc{word-spacing:6.629238px;}
.wsf4{word-spacing:6.644102px;}
.wsdd{word-spacing:6.647047px;}
.ws118{word-spacing:6.706822px;}
.ws10b{word-spacing:6.766598px;}
.ws3e{word-spacing:6.826374px;}
.ws4c{word-spacing:6.886149px;}
.wsc6{word-spacing:6.945925px;}
.ws17{word-spacing:7.005700px;}
.ws144{word-spacing:7.020691px;}
.ws46{word-spacing:7.065476px;}
.ws4d{word-spacing:7.125252px;}
.ws143{word-spacing:7.128288px;}
.ws30{word-spacing:7.185027px;}
.ws1a{word-spacing:7.244803px;}
.ws83{word-spacing:7.304578px;}
.wsf2{word-spacing:7.343482px;}
.wsa5{word-spacing:7.364354px;}
.ws69{word-spacing:7.483905px;}
.ws8c{word-spacing:7.543681px;}
.wscb{word-spacing:7.603456px;}
.ws77{word-spacing:7.663232px;}
.ws13d{word-spacing:7.720070px;}
.wsc9{word-spacing:7.723008px;}
.wsd5{word-spacing:7.827667px;}
.ws7f{word-spacing:7.842559px;}
.ws62{word-spacing:7.902334px;}
.ws7a{word-spacing:8.021886px;}
.ws146{word-spacing:8.042861px;}
.ws31{word-spacing:8.081661px;}
.ws9{word-spacing:8.096659px;}
.ws21{word-spacing:8.141437px;}
.ws1c{word-spacing:8.201212px;}
.ws7c{word-spacing:8.260988px;}
.ws6{word-spacing:8.311853px;}
.ws95{word-spacing:8.320764px;}
.wsb6{word-spacing:8.380539px;}
.wsb8{word-spacing:8.440315px;}
.wsbc{word-spacing:8.500090px;}
.ws5b{word-spacing:8.619642px;}
.ws131{word-spacing:8.796038px;}
.ws2c{word-spacing:8.798968px;}
.ws40{word-spacing:8.858744px;}
.ws8d{word-spacing:8.918520px;}
.ws12f{word-spacing:8.957434px;}
.wsac{word-spacing:8.978295px;}
.wsa6{word-spacing:9.038071px;}
.ws13f{word-spacing:9.118829px;}
.ws48{word-spacing:9.157622px;}
.ws42{word-spacing:9.217398px;}
.ws11b{word-spacing:9.226426px;}
.wsa7{word-spacing:9.396724px;}
.ws14a{word-spacing:9.441619px;}
.wsf1{word-spacing:9.516276px;}
.ws122{word-spacing:9.549216px;}
.ws55{word-spacing:9.576051px;}
.wsd0{word-spacing:9.695602px;}
.ws82{word-spacing:9.755378px;}
.ws13a{word-spacing:9.872006px;}
.ws24{word-spacing:9.874929px;}
.ws101{word-spacing:9.934705px;}
.wsa0{word-spacing:9.994480px;}
.ws8{word-spacing:10.033402px;}
.ws70{word-spacing:10.054256px;}
.ws130{word-spacing:10.140998px;}
.ws11c{word-spacing:10.194797px;}
.ws100{word-spacing:10.293358px;}
.wsc7{word-spacing:10.353134px;}
.wsa{word-spacing:10.409990px;}
.ws5d{word-spacing:10.472685px;}
.ws5a{word-spacing:10.532461px;}
.wsae{word-spacing:10.544486px;}
.wscc{word-spacing:10.592236px;}
.wsca{word-spacing:10.652012px;}
.ws142{word-spacing:10.732781px;}
.wsf6{word-spacing:10.771563px;}
.ws11{word-spacing:10.799759px;}
.ws6a{word-spacing:10.831339px;}
.wsce{word-spacing:11.249768px;}
.ws140{word-spacing:11.324563px;}
.ws7b{word-spacing:11.369319px;}
.ws7{word-spacing:11.593555px;}
.ws108{word-spacing:12.026851px;}
.ws10c{word-spacing:12.325729px;}
.ws27{word-spacing:12.385504px;}
.wscd{word-spacing:12.445280px;}
.ws8b{word-spacing:12.505056px;}
.ws106{word-spacing:12.803934px;}
.ws37{word-spacing:12.863709px;}
.ws33{word-spacing:12.897168px;}
.ws104{word-spacing:12.908547px;}
.ws35{word-spacing:12.923485px;}
.ws81{word-spacing:13.043036px;}
.ws61{word-spacing:13.222363px;}
.wsc8{word-spacing:13.341914px;}
.ws72{word-spacing:13.760343px;}
.ws12{word-spacing:14.776528px;}
.ws86{word-spacing:15.362329px;}
.ws59{word-spacing:15.553611px;}
.ws71{word-spacing:16.510021px;}
.ws111{word-spacing:16.677504px;}
.ws10d{word-spacing:17.630964px;}
.ws87{word-spacing:20.801909px;}
.ws89{word-spacing:20.861684px;}
.wse3{word-spacing:21.102693px;}
.ws44{word-spacing:21.339889px;}
.ws9e{word-spacing:21.677801px;}
.ws109{word-spacing:22.415850px;}
.ws94{word-spacing:22.535401px;}
.ws2e{word-spacing:22.654952px;}
.ws73{word-spacing:23.491811px;}
.ws6f{word-spacing:23.802644px;}
.ws13{word-spacing:26.827469px;}
.wsbe{word-spacing:27.041801px;}
.wsba{word-spacing:27.269801px;}
.ws5{word-spacing:29.829450px;}
.ws36{word-spacing:30.126902px;}
.ws0{word-spacing:32.192873px;}
.wsb7{word-spacing:32.381801px;}
.ws34{word-spacing:33.932233px;}
.wsd9{word-spacing:49.649613px;}
.ws113{word-spacing:50.758790px;}
.ws114{word-spacing:62.594438px;}
.ws112{word-spacing:62.648237px;}
.ws58{word-spacing:80.625869px;}
.wsad{word-spacing:794.217118px;}
.wsed{word-spacing:843.909118px;}
._2{margin-left:-32.556193px;}
._5{margin-left:-29.887800px;}
._7{margin-left:-27.415657px;}
._2b{margin-left:-23.192933px;}
._2a{margin-left:-7.324856px;}
._4{margin-left:-5.021150px;}
._d{margin-left:-3.966698px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._8{width:1.560154px;}
._0{width:2.668393px;}
._11{width:4.075511px;}
._17{width:5.597398px;}
._14{width:9.242472px;}
._a{width:10.836142px;}
._16{width:12.732203px;}
._15{width:14.047266px;}
._1d{width:15.586216px;}
._10{width:16.775435px;}
._b{width:18.042698px;}
._e{width:19.590876px;}
._3{width:20.959727px;}
._13{width:22.872546px;}
._12{width:24.904916px;}
._f{width:26.254478px;}
._18{width:27.606794px;}
._32{width:28.815971px;}
._c{width:29.991830px;}
._1c{width:31.308987px;}
._2f{width:33.319109px;}
._1a{width:34.973453px;}
._2e{width:36.752582px;}
._31{width:38.143066px;}
._30{width:42.070349px;}
._2c{width:43.325611px;}
._2d{width:45.728640px;}
._34{width:47.342592px;}
._33{width:49.988390px;}
._1e{width:53.228267px;}
._19{width:68.741940px;}
._24{width:77.953882px;}
._9{width:80.697600px;}
._1f{width:83.118528px;}
._22{width:93.716813px;}
._29{width:94.846579px;}
._27{width:103.723315px;}
._26{width:109.587341px;}
._23{width:131.375693px;}
._20{width:142.081574px;}
._25{width:144.663898px;}
._28{width:172.316275px;}
._21{width:192.490675px;}
._1b{width:639.161578px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y100{bottom:188.463000px;}
.y4d{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y9d{bottom:199.330500px;}
.y202{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.y1d1{bottom:215.769000px;}
.yc4{bottom:224.464500px;}
.y201{bottom:225.591000px;}
.y9c{bottom:225.672000px;}
.y22f{bottom:226.699500px;}
.y24{bottom:229.482000px;}
.y1ac{bottom:229.651500px;}
.y73{bottom:229.774500px;}
.yff{bottom:230.235000px;}
.y1d0{bottom:238.741500px;}
.y200{bottom:242.029500px;}
.yc3{bottom:242.398500px;}
.y22e{bottom:243.138000px;}
.y9b{bottom:243.604500px;}
.y23{bottom:247.414500px;}
.y1ab{bottom:247.584000px;}
.y72{bottom:247.707000px;}
.yfe{bottom:248.167500px;}
.y1cf{bottom:255.180000px;}
.y1ff{bottom:258.468000px;}
.y22d{bottom:259.576500px;}
.yc2{bottom:260.331000px;}
.y9a{bottom:261.537000px;}
.y22{bottom:265.347000px;}
.y1aa{bottom:265.518000px;}
.y71{bottom:265.641000px;}
.y123{bottom:265.681500px;}
.y13f{bottom:265.875000px;}
.yfd{bottom:266.100000px;}
.y189{bottom:266.814000px;}
.y1ce{bottom:271.618500px;}
.y1fe{bottom:274.005000px;}
.y22c{bottom:276.015000px;}
.yc1{bottom:278.263500px;}
.y99{bottom:279.469500px;}
.y188{bottom:283.252500px;}
.ye0{bottom:283.279500px;}
.y21{bottom:283.281000px;}
.y1a9{bottom:283.450500px;}
.y70{bottom:283.573500px;}
.y122{bottom:283.615500px;}
.y13e{bottom:283.807500px;}
.yfc{bottom:284.032500px;}
.y1cd{bottom:288.336000px;}
.y1fd{bottom:290.443500px;}
.y4c{bottom:291.924000px;}
.y22b{bottom:292.453500px;}
.y153{bottom:296.059500px;}
.yc0{bottom:296.196000px;}
.y98{bottom:297.402000px;}
.ydf{bottom:301.212000px;}
.y20{bottom:301.213500px;}
.y1a8{bottom:301.383000px;}
.y121{bottom:301.548000px;}
.y13d{bottom:301.740000px;}
.y6f{bottom:301.798500px;}
.yfb{bottom:301.965000px;}
.y1cc{bottom:304.774500px;}
.y1fc{bottom:306.882000px;}
.y22a{bottom:308.892000px;}
.y4b{bottom:309.856500px;}
.ybf{bottom:314.128500px;}
.y97{bottom:315.336000px;}
.y1f{bottom:319.146000px;}
.y1a7{bottom:319.315500px;}
.y120{bottom:319.480500px;}
.y6e{bottom:319.732500px;}
.yfa{bottom:319.899000px;}
.y13c{bottom:320.200500px;}
.y1cb{bottom:321.213000px;}
.y1fb{bottom:322.417500px;}
.y229{bottom:325.330500px;}
.y4a{bottom:327.790500px;}
.ybe{bottom:332.061000px;}
.y96{bottom:333.268500px;}
.y1e{bottom:337.078500px;}
.y1a6{bottom:337.248000px;}
.y11f{bottom:337.413000px;}
.y6d{bottom:337.665000px;}
.yf9{bottom:337.831500px;}
.y13b{bottom:338.133000px;}
.y1fa{bottom:338.856000px;}
.y228{bottom:341.769000px;}
.y49{bottom:345.723000px;}
.y95{bottom:351.201000px;}
.y1d{bottom:355.011000px;}
.y1f9{bottom:355.294500px;}
.y11e{bottom:355.345500px;}
.y1a5{bottom:355.351500px;}
.y6c{bottom:355.597500px;}
.yf8{bottom:355.764000px;}
.y13a{bottom:356.067000px;}
.y1ca{bottom:356.979000px;}
.y227{bottom:358.207500px;}
.y94{bottom:369.133500px;}
.y166{bottom:369.919500px;}
.y1f8{bottom:370.831500px;}
.ybd{bottom:371.661000px;}
.y48{bottom:372.300000px;}
.y1c{bottom:372.943500px;}
.y11d{bottom:373.279500px;}
.y1a4{bottom:373.284000px;}
.yf7{bottom:373.696500px;}
.y6b{bottom:373.822500px;}
.y139{bottom:373.999500px;}
.y226{bottom:374.644500px;}
.y152{bottom:383.449500px;}
.y165{bottom:386.358000px;}
.y1f7{bottom:387.270000px;}
.y93{bottom:387.907500px;}
.y47{bottom:390.232500px;}
.yde{bottom:390.876000px;}
.y1b{bottom:390.877500px;}
.y225{bottom:391.083000px;}
.y11c{bottom:391.212000px;}
.y1a3{bottom:391.216500px;}
.yf6{bottom:391.629000px;}
.y6a{bottom:391.756500px;}
.y138{bottom:391.932000px;}
.y151{bottom:401.382000px;}
.y164{bottom:402.796500px;}
.y1f6{bottom:403.708500px;}
.y92{bottom:405.840000px;}
.y1c9{bottom:406.194000px;}
.y224{bottom:407.521500px;}
.y46{bottom:408.165000px;}
.y1a{bottom:408.810000px;}
.y11b{bottom:409.144500px;}
.y1a2{bottom:409.150500px;}
.yf5{bottom:409.561500px;}
.y69{bottom:409.689000px;}
.y137{bottom:410.392500px;}
.y163{bottom:419.235000px;}
.y1f5{bottom:419.244000px;}
.y150{bottom:419.314500px;}
.y136{bottom:423.171000px;}
.ybc{bottom:423.214500px;}
.y91{bottom:423.772500px;}
.y223{bottom:423.960000px;}
.y1c8{bottom:424.126500px;}
.y45{bottom:426.097500px;}
.y19{bottom:426.742500px;}
.y11a{bottom:427.077000px;}
.y1a1{bottom:427.083000px;}
.y68{bottom:427.621500px;}
.y135{bottom:428.325000px;}
.y162{bottom:435.673500px;}
.y1f4{bottom:435.682500px;}
.y14f{bottom:437.247000px;}
.y222{bottom:440.398500px;}
.y134{bottom:441.105000px;}
.ybb{bottom:441.147000px;}
.y90{bottom:441.705000px;}
.y1c7{bottom:442.059000px;}
.yf4{bottom:443.214000px;}
.y44{bottom:444.031500px;}
.y119{bottom:445.009500px;}
.y1a0{bottom:445.015500px;}
.y67{bottom:445.554000px;}
.y133{bottom:446.257500px;}
.ydd{bottom:448.003500px;}
.y161{bottom:452.112000px;}
.y1f3{bottom:452.121000px;}
.y14e{bottom:455.179500px;}
.y221{bottom:456.837000px;}
.yba{bottom:459.079500px;}
.y8f{bottom:459.639000px;}
.y1c6{bottom:459.991500px;}
.y18{bottom:460.491000px;}
.y43{bottom:461.964000px;}
.y19f{bottom:462.948000px;}
.y118{bottom:463.278000px;}
.y66{bottom:463.486500px;}
.y132{bottom:464.190000px;}
.ydc{bottom:465.936000px;}
.y1f2{bottom:467.658000px;}
.y14d{bottom:473.112000px;}
.y220{bottom:473.275500px;}
.yb9{bottom:477.012000px;}
.y8e{bottom:477.571500px;}
.y42{bottom:479.896500px;}
.y19e{bottom:480.880500px;}
.y117{bottom:481.210500px;}
.y65{bottom:481.419000px;}
.y131{bottom:482.122500px;}
.ydb{bottom:483.870000px;}
.y1f1{bottom:484.096500px;}
.y21f{bottom:489.714000px;}
.y14c{bottom:491.046000px;}
.yf3{bottom:491.809500px;}
.yb8{bottom:494.946000px;}
.y8d{bottom:495.504000px;}
.y1c5{bottom:497.253000px;}
.y41{bottom:497.829000px;}
.y19d{bottom:498.813000px;}
.y116{bottom:499.143000px;}
.y64{bottom:499.645500px;}
.y130{bottom:500.056500px;}
.y1f0{bottom:500.535000px;}
.yda{bottom:501.802500px;}
.y21e{bottom:506.152500px;}
.y17{bottom:506.194500px;}
.y14b{bottom:508.978500px;}
.yf2{bottom:509.742000px;}
.yb7{bottom:512.878500px;}
.y8c{bottom:513.436500px;}
.y40{bottom:515.761500px;}
.y1ef{bottom:516.072000px;}
.y19c{bottom:516.747000px;}
.y115{bottom:517.075500px;}
.y63{bottom:517.578000px;}
.y12f{bottom:517.989000px;}
.yd9{bottom:519.735000px;}
.y21d{bottom:522.591000px;}
.y16{bottom:524.127000px;}
.y14a{bottom:526.911000px;}
.yf1{bottom:527.674500px;}
.y8b{bottom:531.369000px;}
.yb6{bottom:531.558000px;}
.y187{bottom:531.640500px;}
.y1ee{bottom:532.509000px;}
.y3f{bottom:533.694000px;}
.y19b{bottom:534.679500px;}
.y114{bottom:535.344000px;}
.y62{bottom:535.510500px;}
.y12e{bottom:535.921500px;}
.yd8{bottom:537.667500px;}
.y21c{bottom:539.028000px;}
.y149{bottom:544.843500px;}
.yf0{bottom:545.607000px;}
.y1c4{bottom:546.468000px;}
.y1ed{bottom:548.947500px;}
.y8a{bottom:549.301500px;}
.yb5{bottom:549.490500px;}
.y186{bottom:549.573000px;}
.y3e{bottom:551.628000px;}
.y19a{bottom:552.612000px;}
.y113{bottom:553.276500px;}
.y61{bottom:553.444500px;}
.y12d{bottom:553.854000px;}
.y21b{bottom:555.466500px;}
.yd7{bottom:555.600000px;}
.y148{bottom:562.776000px;}
.yef{bottom:563.539500px;}
.y1c3{bottom:564.400500px;}
.y1ec{bottom:564.484500px;}
.y89{bottom:567.235500px;}
.yb4{bottom:567.423000px;}
.y185{bottom:567.505500px;}
.y15{bottom:569.239500px;}
.y3d{bottom:569.560500px;}
.y199{bottom:570.544500px;}
.y112{bottom:571.209000px;}
.y60{bottom:571.377000px;}
.y21a{bottom:571.905000px;}
.yd6{bottom:576.862500px;}
.y147{bottom:580.710000px;}
.y1eb{bottom:580.923000px;}
.yee{bottom:581.473500px;}
.y1c2{bottom:582.333000px;}
.y88{bottom:585.168000px;}
.yb3{bottom:585.355500px;}
.y184{bottom:585.438000px;}
.y14{bottom:585.678000px;}
.y12c{bottom:586.380000px;}
.y3c{bottom:587.493000px;}
.y219{bottom:588.343500px;}
.y111{bottom:589.141500px;}
.yd5{bottom:594.795000px;}
.y1ea{bottom:596.460000px;}
.yed{bottom:600.157500px;}
.y1c1{bottom:600.265500px;}
.y13{bottom:602.116500px;}
.y87{bottom:603.100500px;}
.yb2{bottom:603.288000px;}
.y183{bottom:603.370500px;}
.y218{bottom:604.782000px;}
.y3b{bottom:605.425500px;}
.y110{bottom:607.074000px;}
.y198{bottom:607.261500px;}
.y5f{bottom:608.707500px;}
.yd4{bottom:612.727500px;}
.y1e9{bottom:612.898500px;}
.y182{bottom:616.150500px;}
.yec{bottom:618.091500px;}
.y1c0{bottom:618.477000px;}
.y12{bottom:618.555000px;}
.y160{bottom:618.846000px;}
.y86{bottom:621.033000px;}
.y217{bottom:621.220500px;}
.yb1{bottom:621.222000px;}
.y181{bottom:621.303000px;}
.y3a{bottom:623.358000px;}
.y10f{bottom:625.008000px;}
.y1e8{bottom:629.337000px;}
.yd3{bottom:630.660000px;}
.y12b{bottom:633.849000px;}
.y11{bottom:634.993500px;}
.yeb{bottom:636.024000px;}
.y1bf{bottom:636.411000px;}
.y15f{bottom:636.780000px;}
.y216{bottom:637.659000px;}
.y85{bottom:638.965500px;}
.yb0{bottom:639.154500px;}
.y180{bottom:639.237000px;}
.y39{bottom:641.292000px;}
.y10e{bottom:642.940500px;}
.y1e7{bottom:644.872500px;}
.yd2{bottom:648.592500px;}
.y10{bottom:651.432000px;}
.y12a{bottom:651.783000px;}
.y146{bottom:653.293500px;}
.yea{bottom:653.956500px;}
.y215{bottom:654.097500px;}
.y1be{bottom:654.343500px;}
.y15e{bottom:654.712500px;}
.y197{bottom:655.933500px;}
.y84{bottom:656.898000px;}
.yaf{bottom:657.087000px;}
.y17f{bottom:657.169500px;}
.y5e{bottom:657.994500px;}
.y38{bottom:659.224500px;}
.y10d{bottom:660.873000px;}
.y1e6{bottom:661.311000px;}
.yd1{bottom:666.526500px;}
.yf{bottom:667.870500px;}
.y129{bottom:669.715500px;}
.y145{bottom:669.732000px;}
.y214{bottom:670.536000px;}
.ye9{bottom:671.889000px;}
.y1bd{bottom:672.276000px;}
.y15d{bottom:672.645000px;}
.y196{bottom:673.866000px;}
.y83{bottom:674.832000px;}
.yae{bottom:675.019500px;}
.y17e{bottom:675.102000px;}
.y5d{bottom:675.927000px;}
.y37{bottom:677.157000px;}
.y1e5{bottom:677.749500px;}
.y10c{bottom:678.805500px;}
.ye{bottom:684.307500px;}
.y144{bottom:686.170500px;}
.y213{bottom:686.974500px;}
.y128{bottom:687.648000px;}
.yd0{bottom:687.787500px;}
.ye8{bottom:689.821500px;}
.y195{bottom:691.798500px;}
.y82{bottom:692.764500px;}
.yad{bottom:692.952000px;}
.y17d{bottom:693.034500px;}
.y1e4{bottom:693.286500px;}
.y5c{bottom:693.859500px;}
.y36{bottom:695.089500px;}
.yd{bottom:700.746000px;}
.y15c{bottom:700.765500px;}
.y143{bottom:702.609000px;}
.y212{bottom:703.411500px;}
.ycf{bottom:705.720000px;}
.y1e3{bottom:709.725000px;}
.y194{bottom:709.732500px;}
.y81{bottom:710.697000px;}
.yac{bottom:710.884500px;}
.y17c{bottom:711.318000px;}
.y5b{bottom:711.792000px;}
.y35{bottom:713.022000px;}
.y10b{bottom:716.346000px;}
.yc{bottom:717.184500px;}
.y142{bottom:719.047500px;}
.y211{bottom:719.850000px;}
.yce{bottom:723.652500px;}
.y1e2{bottom:726.163500px;}
.y193{bottom:727.665000px;}
.yab{bottom:728.818500px;}
.y17b{bottom:729.250500px;}
.y80{bottom:729.471000px;}
.y5a{bottom:729.724500px;}
.y34{bottom:730.954500px;}
.yb{bottom:733.623000px;}
.y141{bottom:735.486000px;}
.y210{bottom:736.288500px;}
.y127{bottom:740.278500px;}
.ycd{bottom:741.586500px;}
.y1bc{bottom:741.669000px;}
.y1e1{bottom:741.699000px;}
.ye7{bottom:742.902000px;}
.y15b{bottom:743.829000px;}
.y192{bottom:745.597500px;}
.yaa{bottom:746.751000px;}
.y17a{bottom:747.183000px;}
.y7f{bottom:747.403500px;}
.y59{bottom:747.951000px;}
.ya{bottom:750.061500px;}
.y140{bottom:751.924500px;}
.y20f{bottom:752.727000px;}
.y126{bottom:756.717000px;}
.y1e0{bottom:757.236000px;}
.y33{bottom:757.533000px;}
.y1bb{bottom:758.107500px;}
.ye6{bottom:759.340500px;}
.ycc{bottom:759.519000px;}
.y15a{bottom:761.761500px;}
.y191{bottom:763.530000px;}
.ya9{bottom:764.683500px;}
.y179{bottom:765.117000px;}
.y7e{bottom:765.336000px;}
.y10a{bottom:765.841500px;}
.y58{bottom:765.883500px;}
.y9{bottom:766.500000px;}
.y20e{bottom:769.165500px;}
.y125{bottom:773.154000px;}
.y1df{bottom:773.674500px;}
.y1ba{bottom:774.546000px;}
.y32{bottom:775.465500px;}
.ye5{bottom:775.779000px;}
.ycb{bottom:777.451500px;}
.y159{bottom:779.695500px;}
.y190{bottom:781.462500px;}
.ya8{bottom:782.616000px;}
.y178{bottom:783.049500px;}
.y7d{bottom:783.268500px;}
.y109{bottom:783.774000px;}
.y57{bottom:783.816000px;}
.y20d{bottom:785.604000px;}
.y124{bottom:789.592500px;}
.y1de{bottom:790.113000px;}
.y1b9{bottom:791.581500px;}
.ye4{bottom:792.217500px;}
.y31{bottom:793.398000px;}
.yca{bottom:795.384000px;}
.y18f{bottom:799.566000px;}
.ya7{bottom:800.548500px;}
.y177{bottom:800.982000px;}
.y7c{bottom:801.201000px;}
.y108{bottom:801.708000px;}
.y56{bottom:801.748500px;}
.y20c{bottom:802.042500px;}
.y1dd{bottom:805.650000px;}
.y1b8{bottom:808.020000px;}
.ye3{bottom:808.656000px;}
.y30{bottom:811.330500px;}
.yc9{bottom:816.646500px;}
.y18e{bottom:817.498500px;}
.ya6{bottom:818.481000px;}
.y176{bottom:818.914500px;}
.y7b{bottom:819.133500px;}
.y107{bottom:819.640500px;}
.y55{bottom:819.682500px;}
.y8{bottom:821.886000px;}
.y1dc{bottom:822.087000px;}
.y1b7{bottom:824.458500px;}
.ye2{bottom:825.094500px;}
.y2f{bottom:829.263000px;}
.y158{bottom:829.501500px;}
.yc8{bottom:834.579000px;}
.y20b{bottom:834.919500px;}
.y18d{bottom:835.431000px;}
.ya5{bottom:836.415000px;}
.y175{bottom:836.847000px;}
.y7a{bottom:837.067500px;}
.y106{bottom:837.573000px;}
.y54{bottom:837.615000px;}
.y1db{bottom:838.525500px;}
.y1b6{bottom:841.494000px;}
.y7{bottom:844.038000px;}
.y157{bottom:845.940000px;}
.y2e{bottom:847.195500px;}
.y20a{bottom:851.358000px;}
.yc7{bottom:852.511500px;}
.ya4{bottom:854.347500px;}
.y6{bottom:854.763000px;}
.y174{bottom:854.781000px;}
.y1da{bottom:854.964000px;}
.y79{bottom:855.000000px;}
.y105{bottom:855.505500px;}
.y53{bottom:855.547500px;}
.ye1{bottom:856.551000px;}
.y18c{bottom:856.951500px;}
.y1b5{bottom:857.932500px;}
.y156{bottom:862.378500px;}
.y2d{bottom:865.129500px;}
.y18a{bottom:867.201000px;}
.y209{bottom:867.796500px;}
.yc6{bottom:870.444000px;}
.y1d9{bottom:870.501000px;}
.ya3{bottom:872.280000px;}
.y173{bottom:872.713500px;}
.y78{bottom:872.932500px;}
.y18b{bottom:873.030000px;}
.y104{bottom:873.438000px;}
.y52{bottom:873.480000px;}
.y1b4{bottom:874.371000px;}
.y5{bottom:876.915000px;}
.y155{bottom:878.817000px;}
.y2c{bottom:883.062000px;}
.y208{bottom:884.233500px;}
.y1d8{bottom:886.939500px;}
.y77{bottom:890.865000px;}
.ya2{bottom:890.959500px;}
.y103{bottom:891.370500px;}
.y1b3{bottom:891.408000px;}
.y51{bottom:891.412500px;}
.yc5{bottom:891.706500px;}
.y207{bottom:900.672000px;}
.y2b{bottom:900.994500px;}
.y1d7{bottom:902.476500px;}
.y4{bottom:902.521500px;}
.y172{bottom:905.961000px;}
.ya1{bottom:908.892000px;}
.y102{bottom:909.304500px;}
.y50{bottom:909.345000px;}
.y76{bottom:909.639000px;}
.y154{bottom:910.273500px;}
.y16f{bottom:914.472000px;}
.y206{bottom:917.110500px;}
.y1d6{bottom:918.915000px;}
.y2a{bottom:918.927000px;}
.y16e{bottom:918.955500px;}
.y3{bottom:920.455500px;}
.y1b2{bottom:921.967500px;}
.y101{bottom:922.419000px;}
.y16d{bottom:923.439000px;}
.ya0{bottom:926.824500px;}
.y4f{bottom:927.279000px;}
.y75{bottom:927.571500px;}
.y16c{bottom:927.922500px;}
.y205{bottom:933.549000px;}
.y1d5{bottom:934.450500px;}
.y29{bottom:936.859500px;}
.y1b1{bottom:938.406000px;}
.y9f{bottom:944.757000px;}
.y4e{bottom:945.211500px;}
.y74{bottom:945.504000px;}
.y171{bottom:948.153000px;}
.y204{bottom:949.987500px;}
.y1d4{bottom:950.889000px;}
.y16b{bottom:954.822000px;}
.y1b0{bottom:954.844500px;}
.y170{bottom:958.404000px;}
.y16a{bottom:959.305500px;}
.y9e{bottom:962.691000px;}
.y28{bottom:963.436500px;}
.y169{bottom:963.789000px;}
.y203{bottom:966.426000px;}
.y1d3{bottom:967.327500px;}
.y168{bottom:968.271000px;}
.y1af{bottom:971.283000px;}
.y2{bottom:972.403500px;}
.y27{bottom:981.370500px;}
.y167{bottom:981.721500px;}
.y1d2{bottom:982.864500px;}
.y1ae{bottom:987.721500px;}
.y1{bottom:999.303000px;}
.y1ad{bottom:1004.160000px;}
.h11{height:0.597756px;}
.h4{height:24.209280px;}
.hb{height:31.863275px;}
.h6{height:37.336090px;}
.h19{height:37.658880px;}
.h5{height:40.348800px;}
.h9{height:41.842920px;}
.h18{height:42.799330px;}
.h7{height:44.831700px;}
.h14{height:45.470047px;}
.h2{height:49.892047px;}
.h3{height:49.898047px;}
.h8{height:50.642227px;}
.h10{height:51.734047px;}
.he{height:51.740047px;}
.h15{height:52.116632px;}
.ha{height:53.082632px;}
.hc{height:53.088632px;}
.h1{height:60.770503px;}
.h17{height:62.765700px;}
.hd{height:65.441700px;}
.hf{height:65.447700px;}
.h16{height:99.882632px;}
.h13{height:126.275700px;}
.h12{height:130.062550px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:202.147500px;}
.x5{left:206.926500px;}
.x1{left:208.039500px;}
.x1f{left:209.058000px;}
.x12{left:217.921500px;}
.x2{left:224.611500px;}
.x20{left:227.281500px;}
.x7{left:232.359000px;}
.x9{left:244.666500px;}
.x3{left:281.535000px;}
.x19{left:299.943000px;}
.x1a{left:306.949500px;}
.x1e{left:309.888000px;}
.x1d{left:313.558500px;}
.x15{left:320.164500px;}
.xe{left:327.258000px;}
.x11{left:336.253500px;}
.xb{left:342.561000px;}
.xd{left:355.449000px;}
.x4{left:367.962000px;}
.x6{left:380.466000px;}
.x10{left:382.992000px;}
.x8{left:390.907500px;}
.x1b{left:394.359000px;}
.x16{left:400.249500px;}
.x1c{left:404.595000px;}
.x13{left:421.180500px;}
.xf{left:436.690500px;}
.x17{left:445.426500px;}
.x18{left:470.944500px;}
.xc{left:568.255500px;}
.x14{left:663.511500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.ve{vertical-align:-13.136000pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:7.968000pt;}
.v6{vertical-align:10.629333pt;}
.vb{vertical-align:15.349333pt;}
.v5{vertical-align:16.469333pt;}
.v7{vertical-align:18.320000pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:21.781333pt;}
.v9{vertical-align:35.946667pt;}
.va{vertical-align:51.296000pt;}
.vc{vertical-align:72.394667pt;}
.vd{vertical-align:76.517333pt;}
.v8{vertical-align:80.224000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000055pt;}
.ls48{letter-spacing:0.000278pt;}
.ls39{letter-spacing:0.000882pt;}
.ls2{letter-spacing:0.000891pt;}
.ls5b{letter-spacing:0.001014pt;}
.ls4b{letter-spacing:0.001995pt;}
.lsf{letter-spacing:0.002387pt;}
.ls29{letter-spacing:0.002526pt;}
.ls27{letter-spacing:0.003514pt;}
.ls1e{letter-spacing:0.004465pt;}
.ls4e{letter-spacing:0.407455pt;}
.ls4a{letter-spacing:0.412788pt;}
.ls22{letter-spacing:1.147181pt;}
.ls0{letter-spacing:2.652911pt;}
.ls2b{letter-spacing:2.653635pt;}
.ls5c{letter-spacing:2.657014pt;}
.lsd{letter-spacing:2.658245pt;}
.ls38{letter-spacing:2.668629pt;}
.ls3d{letter-spacing:4.065386pt;}
.ls56{letter-spacing:5.793503pt;}
.ls35{letter-spacing:6.373880pt;}
.ls21{letter-spacing:6.375507pt;}
.ls4d{letter-spacing:6.379145pt;}
.ls47{letter-spacing:9.835145pt;}
.ls43{letter-spacing:9.836662pt;}
.ls44{letter-spacing:9.840479pt;}
.ls42{letter-spacing:10.027145pt;}
.ls54{letter-spacing:10.366625pt;}
.ls46{letter-spacing:11.740465pt;}
.ls51{letter-spacing:11.803145pt;}
.ls53{letter-spacing:11.806771pt;}
.ls17{letter-spacing:11.808055pt;}
.ls18{letter-spacing:11.808479pt;}
.ls6{letter-spacing:11.943412pt;}
.ls45{letter-spacing:12.492911pt;}
.ls30{letter-spacing:13.085053pt;}
.ls12{letter-spacing:13.354721pt;}
.ls13{letter-spacing:13.355145pt;}
.ls4f{letter-spacing:14.460911pt;}
.ls2a{letter-spacing:14.461635pt;}
.ls50{letter-spacing:14.466245pt;}
.lsb{letter-spacing:14.757812pt;}
.ls19{letter-spacing:14.759720pt;}
.ls25{letter-spacing:14.760909pt;}
.ls20{letter-spacing:14.761438pt;}
.lsa{letter-spacing:14.765053pt;}
.ls2f{letter-spacing:15.069053pt;}
.ls2e{letter-spacing:15.305798pt;}
.ls2c{letter-spacing:15.308662pt;}
.ls57{letter-spacing:15.998771pt;}
.ls3b{letter-spacing:16.152199pt;}
.ls9{letter-spacing:16.455720pt;}
.ls24{letter-spacing:16.636911pt;}
.ls23{letter-spacing:16.642245pt;}
.ls41{letter-spacing:16.663132pt;}
.ls59{letter-spacing:17.101156pt;}
.ls2d{letter-spacing:17.212465pt;}
.ls4c{letter-spacing:17.410245pt;}
.ls49{letter-spacing:17.415578pt;}
.ls28{letter-spacing:17.449212pt;}
.ls37{letter-spacing:17.483145pt;}
.ls55{letter-spacing:17.999132pt;}
.ls1b{letter-spacing:18.143333pt;}
.ls52{letter-spacing:18.181812pt;}
.ls11{letter-spacing:18.626079pt;}
.ls15{letter-spacing:18.626133pt;}
.ls14{letter-spacing:18.629388pt;}
.ls3e{letter-spacing:18.642387pt;}
.ls3c{letter-spacing:18.802245pt;}
.ls5{letter-spacing:19.040473pt;}
.ls58{letter-spacing:19.138387pt;}
.ls33{letter-spacing:19.673685pt;}
.lse{letter-spacing:19.867213pt;}
.ls7{letter-spacing:20.215578pt;}
.ls1c{letter-spacing:20.364911pt;}
.lsc{letter-spacing:21.117053pt;}
.ls26{letter-spacing:21.131145pt;}
.ls3a{letter-spacing:21.204667pt;}
.ls5a{letter-spacing:21.529685pt;}
.ls36{letter-spacing:21.658591pt;}
.ls1d{letter-spacing:22.133610pt;}
.ls8{letter-spacing:22.173053pt;}
.ls1a{letter-spacing:23.111578pt;}
.ls1f{letter-spacing:23.221610pt;}
.ls5d{letter-spacing:23.378245pt;}
.ls31{letter-spacing:23.791925pt;}
.ls10{letter-spacing:24.342992pt;}
.ls40{letter-spacing:25.634509pt;}
.ls1{letter-spacing:27.227139pt;}
.ls3{letter-spacing:27.232473pt;}
.ls3f{letter-spacing:27.680546pt;}
.ls32{letter-spacing:31.433144pt;}
.ls34{letter-spacing:39.184479pt;}
.ws3{word-spacing:-49.150218pt;}
.ws9c{word-spacing:-34.611401pt;}
.ws9d{word-spacing:-25.738045pt;}
.wsf8{word-spacing:-24.578274pt;}
.wsfd{word-spacing:-22.806070pt;}
.wsfb{word-spacing:-22.805220pt;}
.wsfe{word-spacing:-22.803991pt;}
.wsfc{word-spacing:-22.803111pt;}
.wsc5{word-spacing:-14.760588pt;}
.wsec{word-spacing:-9.425948pt;}
.wsde{word-spacing:-6.249602pt;}
.wsf9{word-spacing:-4.930823pt;}
.wsfa{word-spacing:-2.964870pt;}
.ws85{word-spacing:-2.805468pt;}
.ws121{word-spacing:-2.606234pt;}
.wsf7{word-spacing:-2.592933pt;}
.ws115{word-spacing:-2.486665pt;}
.ws76{word-spacing:-2.380397pt;}
.ws148{word-spacing:-2.367130pt;}
.wsd4{word-spacing:-2.175846pt;}
.ws9b{word-spacing:-2.167862pt;}
.wsb1{word-spacing:-2.080205pt;}
.ws26{word-spacing:-2.008460pt;}
.wsea{word-spacing:-1.955326pt;}
.ws84{word-spacing:-1.902192pt;}
.ws127{word-spacing:-1.888922pt;}
.wsb0{word-spacing:-1.841101pt;}
.ws7d{word-spacing:-1.795925pt;}
.wsaf{word-spacing:-1.793280pt;}
.ws139{word-spacing:-1.745459pt;}
.ws124{word-spacing:-1.649818pt;}
.ws65{word-spacing:-1.636523pt;}
.ws8e{word-spacing:-1.477121pt;}
.ws1b{word-spacing:-1.317720pt;}
.wse{word-spacing:-1.171610pt;}
.ws67{word-spacing:-0.892649pt;}
.ws19{word-spacing:-0.839515pt;}
.ws128{word-spacing:-0.789043pt;}
.ws32{word-spacing:-0.786381pt;}
.wsc4{word-spacing:-0.780541pt;}
.ws1f{word-spacing:-0.733247pt;}
.wse2{word-spacing:-0.693402pt;}
.ws45{word-spacing:-0.680113pt;}
.ws14b{word-spacing:-0.645581pt;}
.wsb3{word-spacing:-0.597760pt;}
.wse1{word-spacing:-0.573846pt;}
.ws6c{word-spacing:-0.520712pt;}
.ws52{word-spacing:-0.414444pt;}
.ws119{word-spacing:-0.406477pt;}
.ws22{word-spacing:-0.308176pt;}
.wsb2{word-spacing:-0.263014pt;}
.wsbf{word-spacing:-0.201909pt;}
.wse8{word-spacing:-0.167373pt;}
.ws116{word-spacing:-0.063761pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.wscf{word-spacing:-0.042507pt;}
.wsc2{word-spacing:-0.037194pt;}
.ws20{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.010627pt;}
.ws126{word-spacing:0.023910pt;}
.wsd1{word-spacing:0.063761pt;}
.ws90{word-spacing:0.116895pt;}
.ws13b{word-spacing:0.167373pt;}
.ws10{word-spacing:0.215194pt;}
.ws51{word-spacing:0.223162pt;}
.ws39{word-spacing:0.276296pt;}
.ws6b{word-spacing:0.329430pt;}
.ws13c{word-spacing:0.358656pt;}
.ws25{word-spacing:0.382564pt;}
.ws91{word-spacing:0.488832pt;}
.wsd2{word-spacing:0.536793pt;}
.ws53{word-spacing:0.541965pt;}
.wsf{word-spacing:0.549939pt;}
.wsd3{word-spacing:0.648233pt;}
.ws23{word-spacing:0.807635pt;}
.ws18{word-spacing:0.860769pt;}
.ws54{word-spacing:0.913903pt;}
.ws38{word-spacing:0.967036pt;}
.ws132{word-spacing:0.980326pt;}
.ws41{word-spacing:1.020170pt;}
.ws11d{word-spacing:1.028147pt;}
.wsc1{word-spacing:1.073304pt;}
.ws14d{word-spacing:1.123789pt;}
.ws6d{word-spacing:1.179572pt;}
.wsc{word-spacing:1.219430pt;}
.ws99{word-spacing:1.232706pt;}
.ws149{word-spacing:1.267251pt;}
.ws80{word-spacing:1.285840pt;}
.ws110{word-spacing:1.315072pt;}
.ws47{word-spacing:1.338973pt;}
.wsee{word-spacing:1.362893pt;}
.ws3a{word-spacing:1.392107pt;}
.ws5f{word-spacing:1.445241pt;}
.ws66{word-spacing:1.498375pt;}
.ws107{word-spacing:1.551509pt;}
.ws11f{word-spacing:1.601997pt;}
.ws7e{word-spacing:1.604643pt;}
.ws96{word-spacing:1.657777pt;}
.ws13e{word-spacing:1.697638pt;}
.ws97{word-spacing:1.710911pt;}
.ws2b{word-spacing:1.764044pt;}
.wsd6{word-spacing:1.793280pt;}
.wse9{word-spacing:1.817178pt;}
.wse7{word-spacing:1.841101pt;}
.ws4a{word-spacing:1.844704pt;}
.ws4b{word-spacing:1.870312pt;}
.ws14e{word-spacing:1.888922pt;}
.ws64{word-spacing:1.923446pt;}
.wsf0{word-spacing:1.976580pt;}
.ws12e{word-spacing:1.984563pt;}
.wsdf{word-spacing:2.029714pt;}
.ws10e{word-spacing:2.032384pt;}
.ws12b{word-spacing:2.080205pt;}
.ws28{word-spacing:2.082848pt;}
.ws5e{word-spacing:2.135981pt;}
.ws123{word-spacing:2.175846pt;}
.ws43{word-spacing:2.189115pt;}
.ws9a{word-spacing:2.348517pt;}
.ws49{word-spacing:2.401651pt;}
.ws88{word-spacing:2.454785pt;}
.ws10f{word-spacing:2.462771pt;}
.ws147{word-spacing:2.558413pt;}
.wsff{word-spacing:2.561052pt;}
.wsa8{word-spacing:2.614186pt;}
.wsa2{word-spacing:2.667320pt;}
.wsb4{word-spacing:2.701875pt;}
.ws74{word-spacing:2.720454pt;}
.ws12c{word-spacing:2.727709pt;}
.ws2{word-spacing:2.749696pt;}
.ws57{word-spacing:2.773588pt;}
.ws5c{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.wse4{word-spacing:2.940979pt;}
.wsa4{word-spacing:2.947514pt;}
.wsaa{word-spacing:2.985496pt;}
.ws15{word-spacing:2.986123pt;}
.wsef{word-spacing:3.132262pt;}
.ws105{word-spacing:3.145525pt;}
.ws98{word-spacing:3.198659pt;}
.wsdb{word-spacing:3.251793pt;}
.ws10a{word-spacing:3.304927pt;}
.ws136{word-spacing:3.323546pt;}
.wsc0{word-spacing:3.358060pt;}
.ws120{word-spacing:3.371366pt;}
.wsbd{word-spacing:3.379314pt;}
.ws138{word-spacing:3.406539pt;}
.ws8f{word-spacing:3.411194pt;}
.ws78{word-spacing:3.464328pt;}
.wse5{word-spacing:3.467008pt;}
.ws93{word-spacing:3.503148pt;}
.ws92{word-spacing:3.517462pt;}
.wsb{word-spacing:3.562650pt;}
.ws3b{word-spacing:3.570596pt;}
.ws8a{word-spacing:3.623730pt;}
.ws11e{word-spacing:3.658291pt;}
.ws29{word-spacing:3.676864pt;}
.wsf3{word-spacing:3.706112pt;}
.ws145{word-spacing:3.753933pt;}
.ws63{word-spacing:3.783131pt;}
.ws134{word-spacing:3.801754pt;}
.ws117{word-spacing:3.836265pt;}
.wseb{word-spacing:3.889399pt;}
.wsb9{word-spacing:3.942533pt;}
.wse6{word-spacing:3.945216pt;}
.ws11a{word-spacing:3.993037pt;}
.ws6e{word-spacing:3.995667pt;}
.ws12d{word-spacing:4.040858pt;}
.ws14c{word-spacing:4.088678pt;}
.ws1e{word-spacing:4.101935pt;}
.wsab{word-spacing:4.155068pt;}
.ws2f{word-spacing:4.208202pt;}
.ws135{word-spacing:4.232141pt;}
.wsc3{word-spacing:4.367604pt;}
.ws133{word-spacing:4.375603pt;}
.wsd8{word-spacing:4.420738pt;}
.wsa1{word-spacing:4.473872pt;}
.wsbb{word-spacing:4.527005pt;}
.wsd{word-spacing:4.566886pt;}
.wsa9{word-spacing:4.580139pt;}
.ws4e{word-spacing:4.633273pt;}
.ws14{word-spacing:4.686407pt;}
.ws3c{word-spacing:4.739541pt;}
.wse0{word-spacing:4.792675pt;}
.ws14f{word-spacing:4.805990pt;}
.ws1d{word-spacing:4.845809pt;}
.wsda{word-spacing:4.862126pt;}
.ws56{word-spacing:4.952076pt;}
.ws137{word-spacing:4.997274pt;}
.ws12a{word-spacing:5.045094pt;}
.ws68{word-spacing:5.058344pt;}
.ws50{word-spacing:5.111478pt;}
.ws129{word-spacing:5.140736pt;}
.wsd7{word-spacing:5.164612pt;}
.ws102{word-spacing:5.217746pt;}
.wsa3{word-spacing:5.270880pt;}
.ws3d{word-spacing:5.324013pt;}
.wsf5{word-spacing:5.427661pt;}
.ws9f{word-spacing:5.430281pt;}
.ws16{word-spacing:5.483415pt;}
.ws103{word-spacing:5.536549pt;}
.ws60{word-spacing:5.589683pt;}
.ws125{word-spacing:5.618944pt;}
.ws4f{word-spacing:5.642817pt;}
.wsb5{word-spacing:5.695951pt;}
.ws79{word-spacing:5.749084pt;}
.ws141{word-spacing:5.762406pt;}
.ws75{word-spacing:5.802218pt;}
.ws3f{word-spacing:5.855352pt;}
.wsdc{word-spacing:5.892656pt;}
.wsf4{word-spacing:5.905869pt;}
.wsdd{word-spacing:5.908486pt;}
.ws118{word-spacing:5.961620pt;}
.ws10b{word-spacing:6.014754pt;}
.ws3e{word-spacing:6.067888pt;}
.ws4c{word-spacing:6.121021pt;}
.wsc6{word-spacing:6.174155pt;}
.ws17{word-spacing:6.227289pt;}
.ws144{word-spacing:6.240614pt;}
.ws46{word-spacing:6.280423pt;}
.ws4d{word-spacing:6.333557pt;}
.ws143{word-spacing:6.336256pt;}
.ws30{word-spacing:6.386691pt;}
.ws1a{word-spacing:6.439825pt;}
.ws83{word-spacing:6.492959pt;}
.wsf2{word-spacing:6.527539pt;}
.wsa5{word-spacing:6.546092pt;}
.ws69{word-spacing:6.652360pt;}
.ws8c{word-spacing:6.705494pt;}
.wscb{word-spacing:6.758628pt;}
.ws77{word-spacing:6.811762pt;}
.ws13d{word-spacing:6.862285pt;}
.wsc9{word-spacing:6.864896pt;}
.wsd5{word-spacing:6.957926pt;}
.ws7f{word-spacing:6.971163pt;}
.ws62{word-spacing:7.024297pt;}
.ws7a{word-spacing:7.130565pt;}
.ws146{word-spacing:7.149210pt;}
.ws31{word-spacing:7.183699pt;}
.ws9{word-spacing:7.197030pt;}
.ws21{word-spacing:7.236833pt;}
.ws1c{word-spacing:7.289967pt;}
.ws7c{word-spacing:7.343100pt;}
.ws6{word-spacing:7.388314pt;}
.ws95{word-spacing:7.396234pt;}
.wsb6{word-spacing:7.449368pt;}
.wsb8{word-spacing:7.502502pt;}
.wsbc{word-spacing:7.555636pt;}
.ws5b{word-spacing:7.661904pt;}
.ws131{word-spacing:7.818701pt;}
.ws2c{word-spacing:7.821305pt;}
.ws40{word-spacing:7.874439pt;}
.ws8d{word-spacing:7.927573pt;}
.ws12f{word-spacing:7.962163pt;}
.wsac{word-spacing:7.980707pt;}
.wsa6{word-spacing:8.033841pt;}
.ws13f{word-spacing:8.105626pt;}
.ws48{word-spacing:8.140108pt;}
.ws42{word-spacing:8.193242pt;}
.ws11b{word-spacing:8.201267pt;}
.wsa7{word-spacing:8.352644pt;}
.ws14a{word-spacing:8.392550pt;}
.wsf1{word-spacing:8.458912pt;}
.ws122{word-spacing:8.488192pt;}
.ws55{word-spacing:8.512045pt;}
.wsd0{word-spacing:8.618313pt;}
.ws82{word-spacing:8.671447pt;}
.ws13a{word-spacing:8.775117pt;}
.ws24{word-spacing:8.777715pt;}
.ws101{word-spacing:8.830849pt;}
.wsa0{word-spacing:8.883983pt;}
.ws8{word-spacing:8.918579pt;}
.ws70{word-spacing:8.937116pt;}
.ws130{word-spacing:9.014221pt;}
.ws11c{word-spacing:9.062042pt;}
.ws100{word-spacing:9.149652pt;}
.wsc7{word-spacing:9.202786pt;}
.wsa{word-spacing:9.253325pt;}
.ws5d{word-spacing:9.309053pt;}
.ws5a{word-spacing:9.362187pt;}
.wsae{word-spacing:9.372877pt;}
.wscc{word-spacing:9.415321pt;}
.wsca{word-spacing:9.468455pt;}
.ws142{word-spacing:9.540250pt;}
.wsf6{word-spacing:9.574723pt;}
.ws11{word-spacing:9.599786pt;}
.ws6a{word-spacing:9.627857pt;}
.wsce{word-spacing:9.999794pt;}
.ws140{word-spacing:10.066278pt;}
.ws7b{word-spacing:10.106061pt;}
.ws7{word-spacing:10.305382pt;}
.ws108{word-spacing:10.690534pt;}
.ws10c{word-spacing:10.956203pt;}
.ws27{word-spacing:11.009337pt;}
.wscd{word-spacing:11.062471pt;}
.ws8b{word-spacing:11.115605pt;}
.ws106{word-spacing:11.381274pt;}
.ws37{word-spacing:11.434408pt;}
.ws33{word-spacing:11.464150pt;}
.ws104{word-spacing:11.474264pt;}
.ws35{word-spacing:11.487542pt;}
.ws81{word-spacing:11.593810pt;}
.ws61{word-spacing:11.753211pt;}
.wsc8{word-spacing:11.859479pt;}
.ws72{word-spacing:12.231416pt;}
.ws12{word-spacing:13.134692pt;}
.ws86{word-spacing:13.655404pt;}
.ws59{word-spacing:13.825432pt;}
.ws71{word-spacing:14.675574pt;}
.ws111{word-spacing:14.824448pt;}
.ws10d{word-spacing:15.671968pt;}
.ws87{word-spacing:18.490586pt;}
.ws89{word-spacing:18.543719pt;}
.wse3{word-spacing:18.757949pt;}
.ws44{word-spacing:18.968790pt;}
.ws9e{word-spacing:19.269156pt;}
.ws109{word-spacing:19.925200pt;}
.ws94{word-spacing:20.031468pt;}
.ws2e{word-spacing:20.137735pt;}
.ws73{word-spacing:20.881610pt;}
.ws6f{word-spacing:21.157906pt;}
.ws13{word-spacing:23.846639pt;}
.wsbe{word-spacing:24.037156pt;}
.wsba{word-spacing:24.239823pt;}
.ws5{word-spacing:26.515067pt;}
.ws36{word-spacing:26.779469pt;}
.ws0{word-spacing:28.615887pt;}
.wsb7{word-spacing:28.783823pt;}
.ws34{word-spacing:30.161985pt;}
.wsd9{word-spacing:44.132990pt;}
.ws113{word-spacing:45.118925pt;}
.ws114{word-spacing:55.639501pt;}
.ws112{word-spacing:55.687322pt;}
.ws58{word-spacing:71.667439pt;}
.wsad{word-spacing:705.970772pt;}
.wsed{word-spacing:750.141438pt;}
._2{margin-left:-28.938838pt;}
._5{margin-left:-26.566933pt;}
._7{margin-left:-24.369473pt;}
._2b{margin-left:-20.615940pt;}
._2a{margin-left:-6.510983pt;}
._4{margin-left:-4.463245pt;}
._d{margin-left:-3.525954pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._8{width:1.386803pt;}
._0{width:2.371905pt;}
._11{width:3.622676pt;}
._17{width:4.975465pt;}
._14{width:8.215531pt;}
._a{width:9.632126pt;}
._16{width:11.317514pt;}
._15{width:12.486459pt;}
._1d{width:13.854415pt;}
._10{width:14.911498pt;}
._b{width:16.037954pt;}
._e{width:17.414112pt;}
._3{width:18.630868pt;}
._13{width:20.331152pt;}
._12{width:22.137703pt;}
._f{width:23.337314pt;}
._18{width:24.539373pt;}
._32{width:25.614196pt;}
._c{width:26.659405pt;}
._1c{width:27.830211pt;}
._2f{width:29.616986pt;}
._1a{width:31.087514pt;}
._2e{width:32.668962pt;}
._31{width:33.904947pt;}
._30{width:37.395866pt;}
._2c{width:38.511654pt;}
._2d{width:40.647680pt;}
._34{width:42.082304pt;}
._33{width:44.434125pt;}
._1e{width:47.314015pt;}
._19{width:61.103947pt;}
._24{width:69.292339pt;}
._9{width:71.731200pt;}
._1f{width:73.883136pt;}
._22{width:83.303834pt;}
._29{width:84.308070pt;}
._27{width:92.198502pt;}
._26{width:97.410970pt;}
._23{width:116.778394pt;}
._20{width:126.294733pt;}
._25{width:128.590131pt;}
._28{width:153.170022pt;}
._21{width:171.102822pt;}
._1b{width:568.143625pt;}
.fs6{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:167.522667pt;}
.y4d{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y9d{bottom:177.182667pt;}
.y202{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.y1d1{bottom:191.794667pt;}
.yc4{bottom:199.524000pt;}
.y201{bottom:200.525333pt;}
.y9c{bottom:200.597333pt;}
.y22f{bottom:201.510667pt;}
.y24{bottom:203.984000pt;}
.y1ac{bottom:204.134667pt;}
.y73{bottom:204.244000pt;}
.yff{bottom:204.653333pt;}
.y1d0{bottom:212.214667pt;}
.y200{bottom:215.137333pt;}
.yc3{bottom:215.465333pt;}
.y22e{bottom:216.122667pt;}
.y9b{bottom:216.537333pt;}
.y23{bottom:219.924000pt;}
.y1ab{bottom:220.074667pt;}
.y72{bottom:220.184000pt;}
.yfe{bottom:220.593333pt;}
.y1cf{bottom:226.826667pt;}
.y1ff{bottom:229.749333pt;}
.y22d{bottom:230.734667pt;}
.yc2{bottom:231.405333pt;}
.y9a{bottom:232.477333pt;}
.y22{bottom:235.864000pt;}
.y1aa{bottom:236.016000pt;}
.y71{bottom:236.125333pt;}
.y123{bottom:236.161333pt;}
.y13f{bottom:236.333333pt;}
.yfd{bottom:236.533333pt;}
.y189{bottom:237.168000pt;}
.y1ce{bottom:241.438667pt;}
.y1fe{bottom:243.560000pt;}
.y22c{bottom:245.346667pt;}
.yc1{bottom:247.345333pt;}
.y99{bottom:248.417333pt;}
.y188{bottom:251.780000pt;}
.ye0{bottom:251.804000pt;}
.y21{bottom:251.805333pt;}
.y1a9{bottom:251.956000pt;}
.y70{bottom:252.065333pt;}
.y122{bottom:252.102667pt;}
.y13e{bottom:252.273333pt;}
.yfc{bottom:252.473333pt;}
.y1cd{bottom:256.298667pt;}
.y1fd{bottom:258.172000pt;}
.y4c{bottom:259.488000pt;}
.y22b{bottom:259.958667pt;}
.y153{bottom:263.164000pt;}
.yc0{bottom:263.285333pt;}
.y98{bottom:264.357333pt;}
.ydf{bottom:267.744000pt;}
.y20{bottom:267.745333pt;}
.y1a8{bottom:267.896000pt;}
.y121{bottom:268.042667pt;}
.y13d{bottom:268.213333pt;}
.y6f{bottom:268.265333pt;}
.yfb{bottom:268.413333pt;}
.y1cc{bottom:270.910667pt;}
.y1fc{bottom:272.784000pt;}
.y22a{bottom:274.570667pt;}
.y4b{bottom:275.428000pt;}
.ybf{bottom:279.225333pt;}
.y97{bottom:280.298667pt;}
.y1f{bottom:283.685333pt;}
.y1a7{bottom:283.836000pt;}
.y120{bottom:283.982667pt;}
.y6e{bottom:284.206667pt;}
.yfa{bottom:284.354667pt;}
.y13c{bottom:284.622667pt;}
.y1cb{bottom:285.522667pt;}
.y1fb{bottom:286.593333pt;}
.y229{bottom:289.182667pt;}
.y4a{bottom:291.369333pt;}
.ybe{bottom:295.165333pt;}
.y96{bottom:296.238667pt;}
.y1e{bottom:299.625333pt;}
.y1a6{bottom:299.776000pt;}
.y11f{bottom:299.922667pt;}
.y6d{bottom:300.146667pt;}
.yf9{bottom:300.294667pt;}
.y13b{bottom:300.562667pt;}
.y1fa{bottom:301.205333pt;}
.y228{bottom:303.794667pt;}
.y49{bottom:307.309333pt;}
.y95{bottom:312.178667pt;}
.y1d{bottom:315.565333pt;}
.y1f9{bottom:315.817333pt;}
.y11e{bottom:315.862667pt;}
.y1a5{bottom:315.868000pt;}
.y6c{bottom:316.086667pt;}
.yf8{bottom:316.234667pt;}
.y13a{bottom:316.504000pt;}
.y1ca{bottom:317.314667pt;}
.y227{bottom:318.406667pt;}
.y94{bottom:328.118667pt;}
.y166{bottom:328.817333pt;}
.y1f8{bottom:329.628000pt;}
.ybd{bottom:330.365333pt;}
.y48{bottom:330.933333pt;}
.y1c{bottom:331.505333pt;}
.y11d{bottom:331.804000pt;}
.y1a4{bottom:331.808000pt;}
.yf7{bottom:332.174667pt;}
.y6b{bottom:332.286667pt;}
.y139{bottom:332.444000pt;}
.y226{bottom:333.017333pt;}
.y152{bottom:340.844000pt;}
.y165{bottom:343.429333pt;}
.y1f7{bottom:344.240000pt;}
.y93{bottom:344.806667pt;}
.y47{bottom:346.873333pt;}
.yde{bottom:347.445333pt;}
.y1b{bottom:347.446667pt;}
.y225{bottom:347.629333pt;}
.y11c{bottom:347.744000pt;}
.y1a3{bottom:347.748000pt;}
.yf6{bottom:348.114667pt;}
.y6a{bottom:348.228000pt;}
.y138{bottom:348.384000pt;}
.y151{bottom:356.784000pt;}
.y164{bottom:358.041333pt;}
.y1f6{bottom:358.852000pt;}
.y92{bottom:360.746667pt;}
.y1c9{bottom:361.061333pt;}
.y224{bottom:362.241333pt;}
.y46{bottom:362.813333pt;}
.y1a{bottom:363.386667pt;}
.y11b{bottom:363.684000pt;}
.y1a2{bottom:363.689333pt;}
.yf5{bottom:364.054667pt;}
.y69{bottom:364.168000pt;}
.y137{bottom:364.793333pt;}
.y163{bottom:372.653333pt;}
.y1f5{bottom:372.661333pt;}
.y150{bottom:372.724000pt;}
.y136{bottom:376.152000pt;}
.ybc{bottom:376.190667pt;}
.y91{bottom:376.686667pt;}
.y223{bottom:376.853333pt;}
.y1c8{bottom:377.001333pt;}
.y45{bottom:378.753333pt;}
.y19{bottom:379.326667pt;}
.y11a{bottom:379.624000pt;}
.y1a1{bottom:379.629333pt;}
.y68{bottom:380.108000pt;}
.y135{bottom:380.733333pt;}
.y162{bottom:387.265333pt;}
.y1f4{bottom:387.273333pt;}
.y14f{bottom:388.664000pt;}
.y222{bottom:391.465333pt;}
.y134{bottom:392.093333pt;}
.ybb{bottom:392.130667pt;}
.y90{bottom:392.626667pt;}
.y1c7{bottom:392.941333pt;}
.yf4{bottom:393.968000pt;}
.y44{bottom:394.694667pt;}
.y119{bottom:395.564000pt;}
.y1a0{bottom:395.569333pt;}
.y67{bottom:396.048000pt;}
.y133{bottom:396.673333pt;}
.ydd{bottom:398.225333pt;}
.y161{bottom:401.877333pt;}
.y1f3{bottom:401.885333pt;}
.y14e{bottom:404.604000pt;}
.y221{bottom:406.077333pt;}
.yba{bottom:408.070667pt;}
.y8f{bottom:408.568000pt;}
.y1c6{bottom:408.881333pt;}
.y18{bottom:409.325333pt;}
.y43{bottom:410.634667pt;}
.y19f{bottom:411.509333pt;}
.y118{bottom:411.802667pt;}
.y66{bottom:411.988000pt;}
.y132{bottom:412.613333pt;}
.ydc{bottom:414.165333pt;}
.y1f2{bottom:415.696000pt;}
.y14d{bottom:420.544000pt;}
.y220{bottom:420.689333pt;}
.yb9{bottom:424.010667pt;}
.y8e{bottom:424.508000pt;}
.y42{bottom:426.574667pt;}
.y19e{bottom:427.449333pt;}
.y117{bottom:427.742667pt;}
.y65{bottom:427.928000pt;}
.y131{bottom:428.553333pt;}
.ydb{bottom:430.106667pt;}
.y1f1{bottom:430.308000pt;}
.y21f{bottom:435.301333pt;}
.y14c{bottom:436.485333pt;}
.yf3{bottom:437.164000pt;}
.yb8{bottom:439.952000pt;}
.y8d{bottom:440.448000pt;}
.y1c5{bottom:442.002667pt;}
.y41{bottom:442.514667pt;}
.y19d{bottom:443.389333pt;}
.y116{bottom:443.682667pt;}
.y64{bottom:444.129333pt;}
.y130{bottom:444.494667pt;}
.y1f0{bottom:444.920000pt;}
.yda{bottom:446.046667pt;}
.y21e{bottom:449.913333pt;}
.y17{bottom:449.950667pt;}
.y14b{bottom:452.425333pt;}
.yf2{bottom:453.104000pt;}
.yb7{bottom:455.892000pt;}
.y8c{bottom:456.388000pt;}
.y40{bottom:458.454667pt;}
.y1ef{bottom:458.730667pt;}
.y19c{bottom:459.330667pt;}
.y115{bottom:459.622667pt;}
.y63{bottom:460.069333pt;}
.y12f{bottom:460.434667pt;}
.yd9{bottom:461.986667pt;}
.y21d{bottom:464.525333pt;}
.y16{bottom:465.890667pt;}
.y14a{bottom:468.365333pt;}
.yf1{bottom:469.044000pt;}
.y8b{bottom:472.328000pt;}
.yb6{bottom:472.496000pt;}
.y187{bottom:472.569333pt;}
.y1ee{bottom:473.341333pt;}
.y3f{bottom:474.394667pt;}
.y19b{bottom:475.270667pt;}
.y114{bottom:475.861333pt;}
.y62{bottom:476.009333pt;}
.y12e{bottom:476.374667pt;}
.yd8{bottom:477.926667pt;}
.y21c{bottom:479.136000pt;}
.y149{bottom:484.305333pt;}
.yf0{bottom:484.984000pt;}
.y1c4{bottom:485.749333pt;}
.y1ed{bottom:487.953333pt;}
.y8a{bottom:488.268000pt;}
.yb5{bottom:488.436000pt;}
.y186{bottom:488.509333pt;}
.y3e{bottom:490.336000pt;}
.y19a{bottom:491.210667pt;}
.y113{bottom:491.801333pt;}
.y61{bottom:491.950667pt;}
.y12d{bottom:492.314667pt;}
.y21b{bottom:493.748000pt;}
.yd7{bottom:493.866667pt;}
.y148{bottom:500.245333pt;}
.yef{bottom:500.924000pt;}
.y1c3{bottom:501.689333pt;}
.y1ec{bottom:501.764000pt;}
.y89{bottom:504.209333pt;}
.yb4{bottom:504.376000pt;}
.y185{bottom:504.449333pt;}
.y15{bottom:505.990667pt;}
.y3d{bottom:506.276000pt;}
.y199{bottom:507.150667pt;}
.y112{bottom:507.741333pt;}
.y60{bottom:507.890667pt;}
.y21a{bottom:508.360000pt;}
.yd6{bottom:512.766667pt;}
.y147{bottom:516.186667pt;}
.y1eb{bottom:516.376000pt;}
.yee{bottom:516.865333pt;}
.y1c2{bottom:517.629333pt;}
.y88{bottom:520.149333pt;}
.yb3{bottom:520.316000pt;}
.y184{bottom:520.389333pt;}
.y14{bottom:520.602667pt;}
.y12c{bottom:521.226667pt;}
.y3c{bottom:522.216000pt;}
.y219{bottom:522.972000pt;}
.y111{bottom:523.681333pt;}
.yd5{bottom:528.706667pt;}
.y1ea{bottom:530.186667pt;}
.yed{bottom:533.473333pt;}
.y1c1{bottom:533.569333pt;}
.y13{bottom:535.214667pt;}
.y87{bottom:536.089333pt;}
.yb2{bottom:536.256000pt;}
.y183{bottom:536.329333pt;}
.y218{bottom:537.584000pt;}
.y3b{bottom:538.156000pt;}
.y110{bottom:539.621333pt;}
.y198{bottom:539.788000pt;}
.y5f{bottom:541.073333pt;}
.yd4{bottom:544.646667pt;}
.y1e9{bottom:544.798667pt;}
.y182{bottom:547.689333pt;}
.yec{bottom:549.414667pt;}
.y1c0{bottom:549.757333pt;}
.y12{bottom:549.826667pt;}
.y160{bottom:550.085333pt;}
.y86{bottom:552.029333pt;}
.y217{bottom:552.196000pt;}
.yb1{bottom:552.197333pt;}
.y181{bottom:552.269333pt;}
.y3a{bottom:554.096000pt;}
.y10f{bottom:555.562667pt;}
.y1e8{bottom:559.410667pt;}
.yd3{bottom:560.586667pt;}
.y12b{bottom:563.421333pt;}
.y11{bottom:564.438667pt;}
.yeb{bottom:565.354667pt;}
.y1bf{bottom:565.698667pt;}
.y15f{bottom:566.026667pt;}
.y216{bottom:566.808000pt;}
.y85{bottom:567.969333pt;}
.yb0{bottom:568.137333pt;}
.y180{bottom:568.210667pt;}
.y39{bottom:570.037333pt;}
.y10e{bottom:571.502667pt;}
.y1e7{bottom:573.220000pt;}
.yd2{bottom:576.526667pt;}
.y10{bottom:579.050667pt;}
.y12a{bottom:579.362667pt;}
.y146{bottom:580.705333pt;}
.yea{bottom:581.294667pt;}
.y215{bottom:581.420000pt;}
.y1be{bottom:581.638667pt;}
.y15e{bottom:581.966667pt;}
.y197{bottom:583.052000pt;}
.y84{bottom:583.909333pt;}
.yaf{bottom:584.077333pt;}
.y17f{bottom:584.150667pt;}
.y5e{bottom:584.884000pt;}
.y38{bottom:585.977333pt;}
.y10d{bottom:587.442667pt;}
.y1e6{bottom:587.832000pt;}
.yd1{bottom:592.468000pt;}
.yf{bottom:593.662667pt;}
.y129{bottom:595.302667pt;}
.y145{bottom:595.317333pt;}
.y214{bottom:596.032000pt;}
.ye9{bottom:597.234667pt;}
.y1bd{bottom:597.578667pt;}
.y15d{bottom:597.906667pt;}
.y196{bottom:598.992000pt;}
.y83{bottom:599.850667pt;}
.yae{bottom:600.017333pt;}
.y17e{bottom:600.090667pt;}
.y5d{bottom:600.824000pt;}
.y37{bottom:601.917333pt;}
.y1e5{bottom:602.444000pt;}
.y10c{bottom:603.382667pt;}
.ye{bottom:608.273333pt;}
.y144{bottom:609.929333pt;}
.y213{bottom:610.644000pt;}
.y128{bottom:611.242667pt;}
.yd0{bottom:611.366667pt;}
.ye8{bottom:613.174667pt;}
.y195{bottom:614.932000pt;}
.y82{bottom:615.790667pt;}
.yad{bottom:615.957333pt;}
.y17d{bottom:616.030667pt;}
.y1e4{bottom:616.254667pt;}
.y5c{bottom:616.764000pt;}
.y36{bottom:617.857333pt;}
.yd{bottom:622.885333pt;}
.y15c{bottom:622.902667pt;}
.y143{bottom:624.541333pt;}
.y212{bottom:625.254667pt;}
.ycf{bottom:627.306667pt;}
.y1e3{bottom:630.866667pt;}
.y194{bottom:630.873333pt;}
.y81{bottom:631.730667pt;}
.yac{bottom:631.897333pt;}
.y17c{bottom:632.282667pt;}
.y5b{bottom:632.704000pt;}
.y35{bottom:633.797333pt;}
.y10b{bottom:636.752000pt;}
.yc{bottom:637.497333pt;}
.y142{bottom:639.153333pt;}
.y211{bottom:639.866667pt;}
.yce{bottom:643.246667pt;}
.y1e2{bottom:645.478667pt;}
.y193{bottom:646.813333pt;}
.yab{bottom:647.838667pt;}
.y17b{bottom:648.222667pt;}
.y80{bottom:648.418667pt;}
.y5a{bottom:648.644000pt;}
.y34{bottom:649.737333pt;}
.yb{bottom:652.109333pt;}
.y141{bottom:653.765333pt;}
.y210{bottom:654.478667pt;}
.y127{bottom:658.025333pt;}
.ycd{bottom:659.188000pt;}
.y1bc{bottom:659.261333pt;}
.y1e1{bottom:659.288000pt;}
.ye7{bottom:660.357333pt;}
.y15b{bottom:661.181333pt;}
.y192{bottom:662.753333pt;}
.yaa{bottom:663.778667pt;}
.y17a{bottom:664.162667pt;}
.y7f{bottom:664.358667pt;}
.y59{bottom:664.845333pt;}
.ya{bottom:666.721333pt;}
.y140{bottom:668.377333pt;}
.y20f{bottom:669.090667pt;}
.y126{bottom:672.637333pt;}
.y1e0{bottom:673.098667pt;}
.y33{bottom:673.362667pt;}
.y1bb{bottom:673.873333pt;}
.ye6{bottom:674.969333pt;}
.ycc{bottom:675.128000pt;}
.y15a{bottom:677.121333pt;}
.y191{bottom:678.693333pt;}
.ya9{bottom:679.718667pt;}
.y179{bottom:680.104000pt;}
.y7e{bottom:680.298667pt;}
.y10a{bottom:680.748000pt;}
.y58{bottom:680.785333pt;}
.y9{bottom:681.333333pt;}
.y20e{bottom:683.702667pt;}
.y125{bottom:687.248000pt;}
.y1df{bottom:687.710667pt;}
.y1ba{bottom:688.485333pt;}
.y32{bottom:689.302667pt;}
.ye5{bottom:689.581333pt;}
.ycb{bottom:691.068000pt;}
.y159{bottom:693.062667pt;}
.y190{bottom:694.633333pt;}
.ya8{bottom:695.658667pt;}
.y178{bottom:696.044000pt;}
.y7d{bottom:696.238667pt;}
.y109{bottom:696.688000pt;}
.y57{bottom:696.725333pt;}
.y20d{bottom:698.314667pt;}
.y124{bottom:701.860000pt;}
.y1de{bottom:702.322667pt;}
.y1b9{bottom:703.628000pt;}
.ye4{bottom:704.193333pt;}
.y31{bottom:705.242667pt;}
.yca{bottom:707.008000pt;}
.y18f{bottom:710.725333pt;}
.ya7{bottom:711.598667pt;}
.y177{bottom:711.984000pt;}
.y7c{bottom:712.178667pt;}
.y108{bottom:712.629333pt;}
.y56{bottom:712.665333pt;}
.y20c{bottom:712.926667pt;}
.y1dd{bottom:716.133333pt;}
.y1b8{bottom:718.240000pt;}
.ye3{bottom:718.805333pt;}
.y30{bottom:721.182667pt;}
.yc9{bottom:725.908000pt;}
.y18e{bottom:726.665333pt;}
.ya6{bottom:727.538667pt;}
.y176{bottom:727.924000pt;}
.y7b{bottom:728.118667pt;}
.y107{bottom:728.569333pt;}
.y55{bottom:728.606667pt;}
.y8{bottom:730.565333pt;}
.y1dc{bottom:730.744000pt;}
.y1b7{bottom:732.852000pt;}
.ye2{bottom:733.417333pt;}
.y2f{bottom:737.122667pt;}
.y158{bottom:737.334667pt;}
.yc8{bottom:741.848000pt;}
.y20b{bottom:742.150667pt;}
.y18d{bottom:742.605333pt;}
.ya5{bottom:743.480000pt;}
.y175{bottom:743.864000pt;}
.y7a{bottom:744.060000pt;}
.y106{bottom:744.509333pt;}
.y54{bottom:744.546667pt;}
.y1db{bottom:745.356000pt;}
.y1b6{bottom:747.994667pt;}
.y7{bottom:750.256000pt;}
.y157{bottom:751.946667pt;}
.y2e{bottom:753.062667pt;}
.y20a{bottom:756.762667pt;}
.yc7{bottom:757.788000pt;}
.ya4{bottom:759.420000pt;}
.y6{bottom:759.789333pt;}
.y174{bottom:759.805333pt;}
.y1da{bottom:759.968000pt;}
.y79{bottom:760.000000pt;}
.y105{bottom:760.449333pt;}
.y53{bottom:760.486667pt;}
.ye1{bottom:761.378667pt;}
.y18c{bottom:761.734667pt;}
.y1b5{bottom:762.606667pt;}
.y156{bottom:766.558667pt;}
.y2d{bottom:769.004000pt;}
.y18a{bottom:770.845333pt;}
.y209{bottom:771.374667pt;}
.yc6{bottom:773.728000pt;}
.y1d9{bottom:773.778667pt;}
.ya3{bottom:775.360000pt;}
.y173{bottom:775.745333pt;}
.y78{bottom:775.940000pt;}
.y18b{bottom:776.026667pt;}
.y104{bottom:776.389333pt;}
.y52{bottom:776.426667pt;}
.y1b4{bottom:777.218667pt;}
.y5{bottom:779.480000pt;}
.y155{bottom:781.170667pt;}
.y2c{bottom:784.944000pt;}
.y208{bottom:785.985333pt;}
.y1d8{bottom:788.390667pt;}
.y77{bottom:791.880000pt;}
.ya2{bottom:791.964000pt;}
.y103{bottom:792.329333pt;}
.y1b3{bottom:792.362667pt;}
.y51{bottom:792.366667pt;}
.yc5{bottom:792.628000pt;}
.y207{bottom:800.597333pt;}
.y2b{bottom:800.884000pt;}
.y1d7{bottom:802.201333pt;}
.y4{bottom:802.241333pt;}
.y172{bottom:805.298667pt;}
.ya1{bottom:807.904000pt;}
.y102{bottom:808.270667pt;}
.y50{bottom:808.306667pt;}
.y76{bottom:808.568000pt;}
.y154{bottom:809.132000pt;}
.y16f{bottom:812.864000pt;}
.y206{bottom:815.209333pt;}
.y1d6{bottom:816.813333pt;}
.y2a{bottom:816.824000pt;}
.y16e{bottom:816.849333pt;}
.y3{bottom:818.182667pt;}
.y1b2{bottom:819.526667pt;}
.y101{bottom:819.928000pt;}
.y16d{bottom:820.834667pt;}
.ya0{bottom:823.844000pt;}
.y4f{bottom:824.248000pt;}
.y75{bottom:824.508000pt;}
.y16c{bottom:824.820000pt;}
.y205{bottom:829.821333pt;}
.y1d5{bottom:830.622667pt;}
.y29{bottom:832.764000pt;}
.y1b1{bottom:834.138667pt;}
.y9f{bottom:839.784000pt;}
.y4e{bottom:840.188000pt;}
.y74{bottom:840.448000pt;}
.y171{bottom:842.802667pt;}
.y204{bottom:844.433333pt;}
.y1d4{bottom:845.234667pt;}
.y16b{bottom:848.730667pt;}
.y1b0{bottom:848.750667pt;}
.y170{bottom:851.914667pt;}
.y16a{bottom:852.716000pt;}
.y9e{bottom:855.725333pt;}
.y28{bottom:856.388000pt;}
.y169{bottom:856.701333pt;}
.y203{bottom:859.045333pt;}
.y1d3{bottom:859.846667pt;}
.y168{bottom:860.685333pt;}
.y1af{bottom:863.362667pt;}
.y2{bottom:864.358667pt;}
.y27{bottom:872.329333pt;}
.y167{bottom:872.641333pt;}
.y1d2{bottom:873.657333pt;}
.y1ae{bottom:877.974667pt;}
.y1{bottom:888.269333pt;}
.y1ad{bottom:892.586667pt;}
.h11{height:0.531339pt;}
.h4{height:21.519360pt;}
.hb{height:28.322911pt;}
.h6{height:33.187635pt;}
.h19{height:33.474560pt;}
.h5{height:35.865600pt;}
.h9{height:37.193707pt;}
.h18{height:38.043849pt;}
.h7{height:39.850400pt;}
.h14{height:40.417820pt;}
.h2{height:44.348486pt;}
.h3{height:44.353820pt;}
.h8{height:45.015313pt;}
.h10{height:45.985820pt;}
.he{height:45.991153pt;}
.h15{height:46.325895pt;}
.ha{height:47.184562pt;}
.hc{height:47.189895pt;}
.h1{height:54.018225pt;}
.h17{height:55.791733pt;}
.hd{height:58.170400pt;}
.hf{height:58.175733pt;}
.h16{height:88.784562pt;}
.h13{height:112.245067pt;}
.h12{height:115.611155pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:179.686667pt;}
.x5{left:183.934667pt;}
.x1{left:184.924000pt;}
.x1f{left:185.829333pt;}
.x12{left:193.708000pt;}
.x2{left:199.654667pt;}
.x20{left:202.028000pt;}
.x7{left:206.541333pt;}
.x9{left:217.481333pt;}
.x3{left:250.253333pt;}
.x19{left:266.616000pt;}
.x1a{left:272.844000pt;}
.x1e{left:275.456000pt;}
.x1d{left:278.718667pt;}
.x15{left:284.590667pt;}
.xe{left:290.896000pt;}
.x11{left:298.892000pt;}
.xb{left:304.498667pt;}
.xd{left:315.954667pt;}
.x4{left:327.077333pt;}
.x6{left:338.192000pt;}
.x10{left:340.437333pt;}
.x8{left:347.473333pt;}
.x1b{left:350.541333pt;}
.x16{left:355.777333pt;}
.x1c{left:359.640000pt;}
.x13{left:374.382667pt;}
.xf{left:388.169333pt;}
.x17{left:395.934667pt;}
.x18{left:418.617333pt;}
.xc{left:505.116000pt;}
.x14{left:589.788000pt;}
}




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