
    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_34a7a58e710a167067748346.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cfe25dac2cd7bda178186fca.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_3887c0c05216847a59f568f9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_121c254b0cc5d06704dcaba5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_5f392e7fe37b638c1b0620c1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.842000;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_1371f23d588d8178334710a7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.756000;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_524648bf514d3306a9e91f26.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_0e85b20f1907aa770b3262e7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b80a6b11f935468fccbc7f28.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_69005b8811b1fc2cc69a214f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.429000;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_19b04f2597ad1dadf1e26db2.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8b4cb2e98dda65353c2fd7f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684000;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_a2226bbd012afbbc9e180a9b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a69e7de6d68d08906fdd5a80.woff')format("woff");}.ffe{font-family:ffe;line-height:0.683000;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_130abe159377f71eb9a7606c.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_efd72692acddfca290b3f59f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.800000;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);}
.v4{vertical-align:-14.940000px;}
.v2{vertical-align:-8.970000px;}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:11.094000px;}
.v7{vertical-align:17.268000px;}
.v5{vertical-align:21.690000px;}
.v3{vertical-align:40.440000px;}
.v6{vertical-align:70.884000px;}
.lse{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000062px;}
.ls46{letter-spacing:0.000300px;}
.ls3e{letter-spacing:0.000330px;}
.ls5e{letter-spacing:0.000538px;}
.ls4b{letter-spacing:0.000557px;}
.ls31{letter-spacing:0.001866px;}
.ls3d{letter-spacing:0.002044px;}
.ls25{letter-spacing:0.002338px;}
.ls2b{letter-spacing:0.002387px;}
.ls59{letter-spacing:0.002400px;}
.ls5a{letter-spacing:0.002469px;}
.ls10{letter-spacing:0.002646px;}
.ls5{letter-spacing:0.003175px;}
.ls1a{letter-spacing:0.003239px;}
.ls17{letter-spacing:0.004159px;}
.ls2e{letter-spacing:0.004200px;}
.ls49{letter-spacing:0.004364px;}
.ls52{letter-spacing:0.004379px;}
.ls23{letter-spacing:0.004893px;}
.ls66{letter-spacing:0.834017px;}
.ls4{letter-spacing:2.964877px;}
.ls67{letter-spacing:2.987675px;}
.ls2a{letter-spacing:2.988780px;}
.ls55{letter-spacing:2.989409px;}
.ls21{letter-spacing:3.230196px;}
.ls2f{letter-spacing:4.276379px;}
.ls6{letter-spacing:4.491008px;}
.ls41{letter-spacing:4.497008px;}
.ls38{letter-spacing:6.282538px;}
.ls37{letter-spacing:6.286200px;}
.ls35{letter-spacing:9.958200px;}
.ls26{letter-spacing:9.964200px;}
.ls53{letter-spacing:13.710538px;}
.ls63{letter-spacing:14.554200px;}
.ls2{letter-spacing:15.355559px;}
.ls5b{letter-spacing:16.268525px;}
.ls58{letter-spacing:16.600200px;}
.ls13{letter-spacing:16.602538px;}
.ls54{letter-spacing:16.824062px;}
.ls3{letter-spacing:16.938476px;}
.ls22{letter-spacing:17.238648px;}
.ls51{letter-spacing:17.676538px;}
.ls24{letter-spacing:18.006648px;}
.ls4c{letter-spacing:18.348557px;}
.ls64{letter-spacing:18.844200px;}
.ls32{letter-spacing:19.586525px;}
.ls4e{letter-spacing:19.634475px;}
.ls36{letter-spacing:19.664387px;}
.ls2d{letter-spacing:19.864200px;}
.ls34{letter-spacing:20.884379px;}
.ls60{letter-spacing:20.922062px;}
.ls5f{letter-spacing:20.922538px;}
.ls44{letter-spacing:21.093008px;}
.ls45{letter-spacing:21.099008px;}
.ls62{letter-spacing:21.273008px;}
.ls40{letter-spacing:21.441008px;}
.ls18{letter-spacing:21.476475px;}
.lsf{letter-spacing:21.795008px;}
.ls3a{letter-spacing:21.872387px;}
.ls4f{letter-spacing:22.158557px;}
.ls57{letter-spacing:22.605008px;}
.ls2c{letter-spacing:22.850525px;}
.ls20{letter-spacing:23.096196px;}
.ls1b{letter-spacing:23.108475px;}
.ls1c{letter-spacing:23.487008px;}
.ls16{letter-spacing:24.152196px;}
.ls4a{letter-spacing:24.260475px;}
.ls3c{letter-spacing:24.416638px;}
.ls1{letter-spacing:24.452475px;}
.ls42{letter-spacing:25.196525px;}
.ls15{letter-spacing:25.413008px;}
.ls19{letter-spacing:25.478475px;}
.ls3b{letter-spacing:25.690379px;}
.ls0{letter-spacing:25.802475px;}
.ls56{letter-spacing:25.927534px;}
.ls50{letter-spacing:26.403008px;}
.ls11{letter-spacing:26.733008px;}
.ls12{letter-spacing:26.739008px;}
.ls9{letter-spacing:26.919008px;}
.ls47{letter-spacing:28.053008px;}
.ls29{letter-spacing:28.110538px;}
.ls43{letter-spacing:28.126362px;}
.ls27{letter-spacing:28.302648px;}
.ls48{letter-spacing:28.688475px;}
.ls7{letter-spacing:29.691008px;}
.ls14{letter-spacing:30.006648px;}
.ls65{letter-spacing:30.188823px;}
.ls30{letter-spacing:30.602387px;}
.lsc{letter-spacing:31.767008px;}
.ls28{letter-spacing:32.607008px;}
.lsd{letter-spacing:33.009008px;}
.ls5d{letter-spacing:33.291008px;}
.ls39{letter-spacing:33.724379px;}
.ls4d{letter-spacing:33.922362px;}
.ls61{letter-spacing:34.043376px;}
.ls1f{letter-spacing:34.143008px;}
.ls1d{letter-spacing:35.055008px;}
.ls8{letter-spacing:35.863409px;}
.lsa{letter-spacing:35.866200px;}
.lsb{letter-spacing:35.869409px;}
.ls3f{letter-spacing:80.098363px;}
.ls33{letter-spacing:88.314538px;}
.ls5c{letter-spacing:273.206525px;}
.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;}
}
.ws120{word-spacing:-59.775600px;}
.ws27{word-spacing:-38.937826px;}
.wsb2{word-spacing:-16.605662px;}
.ws10{word-spacing:-15.359443px;}
.ws1a{word-spacing:-14.943900px;}
.ws17{word-spacing:-14.920027px;}
.wsf7{word-spacing:-13.449600px;}
.ws15d{word-spacing:-11.955150px;}
.ws9d{word-spacing:-10.460700px;}
.wsa2{word-spacing:-6.682912px;}
.wsed{word-spacing:-6.658340px;}
.ws130{word-spacing:-6.643262px;}
.ws11d{word-spacing:-6.637262px;}
.ws3b{word-spacing:-6.623136px;}
.wsa{word-spacing:-6.375110px;}
.ws10b{word-spacing:-6.166644px;}
.ws12{word-spacing:-6.159917px;}
.wsf6{word-spacing:-6.125086px;}
.wsf2{word-spacing:-6.106118px;}
.ws159{word-spacing:-3.969110px;}
.ws121{word-spacing:-3.335478px;}
.wsc3{word-spacing:-2.986681px;}
.ws119{word-spacing:-2.914501px;}
.ws10e{word-spacing:-1.533254px;}
.ws12b{word-spacing:-1.135736px;}
.ws181{word-spacing:-0.956412px;}
.ws53{word-spacing:-0.896634px;}
.ws114{word-spacing:-0.836858px;}
.ws5a{word-spacing:-0.777083px;}
.ws9a{word-spacing:-0.717307px;}
.ws99{word-spacing:-0.696199px;}
.ws12a{word-spacing:-0.657532px;}
.wsbc{word-spacing:-0.597756px;}
.wsda{word-spacing:-0.478205px;}
.ws13b{word-spacing:-0.418429px;}
.ws85{word-spacing:-0.358654px;}
.ws15f{word-spacing:-0.286924px;}
.ws38{word-spacing:-0.179327px;}
.ws146{word-spacing:-0.119551px;}
.ws109{word-spacing:-0.116755px;}
.ws108{word-spacing:-0.107597px;}
.ws17f{word-spacing:-0.095641px;}
.wsad{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws15a{word-spacing:-0.047821px;}
.ws9b{word-spacing:-0.041843px;}
.ws13{word-spacing:-0.026899px;}
.ws54{word-spacing:0.000000px;}
.wsce{word-spacing:0.011955px;}
.ws65{word-spacing:0.059776px;}
.ws173{word-spacing:0.095641px;}
.ws82{word-spacing:0.119551px;}
.wsd3{word-spacing:0.298878px;}
.wsd6{word-spacing:0.418429px;}
.ws11c{word-spacing:0.478205px;}
.ws24{word-spacing:0.537980px;}
.wsd5{word-spacing:0.657532px;}
.ws62{word-spacing:0.705393px;}
.ws12e{word-spacing:0.717307px;}
.ws174{word-spacing:0.717309px;}
.wsa6{word-spacing:0.867631px;}
.ws4d{word-spacing:0.896634px;}
.wscd{word-spacing:0.956410px;}
.ws6d{word-spacing:1.016185px;}
.ws175{word-spacing:1.195515px;}
.wse5{word-spacing:1.255288px;}
.wsac{word-spacing:1.434614px;}
.ws4f{word-spacing:1.494390px;}
.wseb{word-spacing:1.554166px;}
.ws5{word-spacing:1.667750px;}
.wsa5{word-spacing:1.673717px;}
.ws55{word-spacing:1.733492px;}
.ws133{word-spacing:1.793268px;}
.ws40{word-spacing:1.853044px;}
.ws11b{word-spacing:1.880134px;}
.wsc7{word-spacing:1.912819px;}
.wse8{word-spacing:1.972595px;}
.wsa4{word-spacing:2.211697px;}
.ws61{word-spacing:2.331248px;}
.ws19{word-spacing:2.510575px;}
.ws11e{word-spacing:2.570351px;}
.ws138{word-spacing:2.630126px;}
.wsaf{word-spacing:2.749678px;}
.ws102{word-spacing:2.809453px;}
.ws79{word-spacing:2.869229px;}
.ws105{word-spacing:2.985692px;}
.ws3f{word-spacing:3.108331px;}
.wsfc{word-spacing:3.166968px;}
.ws32{word-spacing:3.168107px;}
.wsfb{word-spacing:3.200117px;}
.wsfa{word-spacing:3.227882px;}
.ws8e{word-spacing:3.347434px;}
.wsa7{word-spacing:3.407209px;}
.ws75{word-spacing:3.466985px;}
.wsd4{word-spacing:3.526760px;}
.ws78{word-spacing:3.586536px;}
.ws124{word-spacing:3.646312px;}
.ws58{word-spacing:3.706087px;}
.ws7b{word-spacing:3.712090px;}
.ws69{word-spacing:3.765863px;}
.ws4{word-spacing:3.765888px;}
.ws10d{word-spacing:3.792787px;}
.ws139{word-spacing:3.825638px;}
.ws17d{word-spacing:3.825648px;}
.ws13c{word-spacing:3.885414px;}
.ws152{word-spacing:3.969110px;}
.wsae{word-spacing:4.004965px;}
.ws7e{word-spacing:4.064741px;}
.ws160{word-spacing:4.112572px;}
.ws5b{word-spacing:4.184292px;}
.ws177{word-spacing:4.208213px;}
.ws164{word-spacing:4.256033px;}
.ws23{word-spacing:4.303843px;}
.ws87{word-spacing:4.317631px;}
.ws46{word-spacing:4.363619px;}
.ws10a{word-spacing:4.411469px;}
.ws144{word-spacing:4.423394px;}
.ws143{word-spacing:4.483170px;}
.wsf4{word-spacing:4.599763px;}
.ws39{word-spacing:4.662497px;}
.ws8{word-spacing:4.680461px;}
.ws57{word-spacing:4.722272px;}
.ws14f{word-spacing:4.782060px;}
.wsd9{word-spacing:4.794003px;}
.ws20{word-spacing:4.841824px;}
.ws179{word-spacing:4.877701px;}
.ws8a{word-spacing:4.901599px;}
.wsc5{word-spacing:4.916134px;}
.ws171{word-spacing:4.925522px;}
.ws70{word-spacing:4.961375px;}
.ws14a{word-spacing:4.973342px;}
.ws59{word-spacing:5.021150px;}
.ws8b{word-spacing:5.140702px;}
.ws3e{word-spacing:5.200477px;}
.ws153{word-spacing:5.212445px;}
.wsd0{word-spacing:5.260253px;}
.ws17c{word-spacing:5.260266px;}
.wse6{word-spacing:5.358317px;}
.ws90{word-spacing:5.379804px;}
.ws7d{word-spacing:5.379840px;}
.ws47{word-spacing:5.439580px;}
.ws77{word-spacing:5.499355px;}
.ws103{word-spacing:5.559131px;}
.ws15{word-spacing:5.595034px;}
.ws10f{word-spacing:5.618906px;}
.ws34{word-spacing:5.678682px;}
.ws7a{word-spacing:5.756429px;}
.ws1c{word-spacing:5.798233px;}
.wsec{word-spacing:5.858009px;}
.ws68{word-spacing:5.917784px;}
.ws12f{word-spacing:5.970512px;}
.ws104{word-spacing:5.972201px;}
.ws76{word-spacing:5.976890px;}
.ws2{word-spacing:5.977560px;}
.ws5c{word-spacing:5.977575px;}
.ws8c{word-spacing:5.978134px;}
.ws67{word-spacing:5.979025px;}
.wse0{word-spacing:6.037336px;}
.ws16e{word-spacing:6.073216px;}
.ws136{word-spacing:6.156887px;}
.wsc2{word-spacing:6.216662px;}
.ws134{word-spacing:6.276438px;}
.ws5f{word-spacing:6.336214px;}
.ws3a{word-spacing:6.395989px;}
.ws15c{word-spacing:6.407960px;}
.ws97{word-spacing:6.515540px;}
.ws15e{word-spacing:6.551422px;}
.ws118{word-spacing:6.560134px;}
.ws141{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws6e{word-spacing:6.694867px;}
.ws11{word-spacing:6.724800px;}
.ws168{word-spacing:6.742705px;}
.ws6f{word-spacing:6.754643px;}
.wsff{word-spacing:6.779750px;}
.ws9c{word-spacing:6.781903px;}
.ws6a{word-spacing:6.814418px;}
.ws137{word-spacing:6.874194px;}
.ws4c{word-spacing:6.933970px;}
.ws151{word-spacing:6.933987px;}
.ws111{word-spacing:6.968134px;}
.ws110{word-spacing:6.993745px;}
.ws96{word-spacing:7.053521px;}
.ws106{word-spacing:7.113296px;}
.ws91{word-spacing:7.173072px;}
.wse7{word-spacing:7.232848px;}
.ws31{word-spacing:7.292623px;}
.ws66{word-spacing:7.304134px;}
.wsb3{word-spacing:7.325406px;}
.wscf{word-spacing:7.352399px;}
.ws10c{word-spacing:7.370381px;}
.ws163{word-spacing:7.460014px;}
.ws2d{word-spacing:7.471950px;}
.wsc6{word-spacing:7.591501px;}
.wsfd{word-spacing:7.651277px;}
.wse4{word-spacing:7.711052px;}
.ws150{word-spacing:7.746937px;}
.ws7c{word-spacing:7.746970px;}
.ws4e{word-spacing:7.770828px;}
.wsf3{word-spacing:7.800768px;}
.wsf1{word-spacing:7.805510px;}
.wsf5{word-spacing:7.811510px;}
.ws44{word-spacing:7.830604px;}
.ws3d{word-spacing:7.890379px;}
.ws172{word-spacing:7.938220px;}
.wsab{word-spacing:7.950155px;}
.wsba{word-spacing:7.963295px;}
.ws2f{word-spacing:8.009930px;}
.wsf8{word-spacing:8.069706px;}
.wsf{word-spacing:8.069760px;}
.wsf9{word-spacing:8.096683px;}
.wsfe{word-spacing:8.129482px;}
.ws2b{word-spacing:8.189257px;}
.wsb7{word-spacing:8.249033px;}
.wsb6{word-spacing:8.253059px;}
.wse1{word-spacing:8.428360px;}
.ws63{word-spacing:8.488135px;}
.ws8d{word-spacing:8.547911px;}
.ws81{word-spacing:8.607686px;}
.ws14d{word-spacing:8.655529px;}
.wsdc{word-spacing:8.667462px;}
.ws14e{word-spacing:8.703349px;}
.ws154{word-spacing:8.739062px;}
.ws155{word-spacing:8.751170px;}
.wsca{word-spacing:8.787013px;}
.ws86{word-spacing:8.906564px;}
.ws158{word-spacing:8.942452px;}
.wscc{word-spacing:8.966340px;}
.wsb5{word-spacing:8.978141px;}
.wsb4{word-spacing:9.002683px;}
.wsb1{word-spacing:9.003025px;}
.ws56{word-spacing:9.026116px;}
.wsb0{word-spacing:9.036317px;}
.ws60{word-spacing:9.145667px;}
.wsa0{word-spacing:9.162266px;}
.wsd1{word-spacing:9.205442px;}
.ws142{word-spacing:9.265218px;}
.ws180{word-spacing:9.266658px;}
.ws16c{word-spacing:9.277196px;}
.ws16b{word-spacing:9.296263px;}
.wsbe{word-spacing:9.384769px;}
.wsbd{word-spacing:9.444545px;}
.ws166{word-spacing:9.468479px;}
.ws71{word-spacing:9.564096px;}
.wsa9{word-spacing:9.623872px;}
.wsaa{word-spacing:9.683647px;}
.ws26{word-spacing:9.743423px;}
.ws18{word-spacing:9.803198px;}
.ws9f{word-spacing:9.862974px;}
.ws8f{word-spacing:10.042301px;}
.ws15b{word-spacing:10.042326px;}
.wsf0{word-spacing:10.114099px;}
.ws28{word-spacing:10.281403px;}
.ws16d{word-spacing:10.281429px;}
.wsb{word-spacing:10.329293px;}
.ws167{word-spacing:10.424891px;}
.wse9{word-spacing:10.520506px;}
.ws178{word-spacing:10.568353px;}
.wsea{word-spacing:10.580281px;}
.ws13e{word-spacing:10.607442px;}
.ws42{word-spacing:10.640057px;}
.ws72{word-spacing:10.699832px;}
.ws7{word-spacing:10.813478px;}
.ws49{word-spacing:10.819384px;}
.ws115{word-spacing:10.938935px;}
.ws165{word-spacing:10.998738px;}
.ws148{word-spacing:11.297588px;}
.ws1b{word-spacing:11.417140px;}
.ws7f{word-spacing:11.476915px;}
.ws1e{word-spacing:11.536691px;}
.ws25{word-spacing:11.596466px;}
.ws51{word-spacing:11.656242px;}
.ws14c{word-spacing:11.763868px;}
.ws14b{word-spacing:11.811688px;}
.wscb{word-spacing:11.895344px;}
.ws176{word-spacing:11.955150px;}
.ws73{word-spacing:12.074671px;}
.ws13f{word-spacing:12.134447px;}
.wsbb{word-spacing:12.194222px;}
.ws6{word-spacing:12.212237px;}
.ws13d{word-spacing:12.299083px;}
.ws4a{word-spacing:12.313774px;}
.ws5d{word-spacing:12.373549px;}
.ws74{word-spacing:12.433325px;}
.ws129{word-spacing:12.493100px;}
.ws17e{word-spacing:12.528997px;}
.ws6b{word-spacing:12.552876px;}
.ws170{word-spacing:12.624638px;}
.ws5e{word-spacing:12.672427px;}
.ws16f{word-spacing:12.672459px;}
.ws162{word-spacing:12.815921px;}
.ws6c{word-spacing:12.851754px;}
.ws48{word-spacing:12.911530px;}
.wsd7{word-spacing:12.970280px;}
.ws1d{word-spacing:12.971305px;}
.wsd8{word-spacing:12.992117px;}
.ws98{word-spacing:13.090856px;}
.ws145{word-spacing:13.210408px;}
.ws113{word-spacing:13.270183px;}
.wsc4{word-spacing:13.329959px;}
.ws2c{word-spacing:13.389734px;}
.ws52{word-spacing:13.569061px;}
.ws132{word-spacing:13.628837px;}
.ws100{word-spacing:13.688612px;}
.ws123{word-spacing:13.856134px;}
.ws122{word-spacing:13.867939px;}
.wse{word-spacing:13.879987px;}
.ws21{word-spacing:13.987490px;}
.ws11f{word-spacing:14.047266px;}
.ws17b{word-spacing:14.154898px;}
.ws17a{word-spacing:14.164476px;}
.ws128{word-spacing:14.286368px;}
.ws101{word-spacing:14.298324px;}
.ws0{word-spacing:14.346180px;}
.wsdb{word-spacing:14.471770px;}
.ws89{word-spacing:14.704798px;}
.ws126{word-spacing:14.756117px;}
.ws125{word-spacing:14.764573px;}
.ws93{word-spacing:14.882683px;}
.ws94{word-spacing:14.884124px;}
.ws95{word-spacing:14.943900px;}
.ws156{word-spacing:14.967848px;}
.wsa1{word-spacing:15.031903px;}
.wsa3{word-spacing:15.039998px;}
.ws80{word-spacing:15.183002px;}
.wsd{word-spacing:15.224947px;}
.ws84{word-spacing:15.242778px;}
.wsa8{word-spacing:15.541656px;}
.ws2e{word-spacing:15.601432px;}
.ws64{word-spacing:15.661207px;}
.wsb8{word-spacing:15.777025px;}
.wsb9{word-spacing:15.780758px;}
.ws13a{word-spacing:16.019861px;}
.ws157{word-spacing:16.067722px;}
.ws30{word-spacing:16.079636px;}
.ws45{word-spacing:16.199188px;}
.ws147{word-spacing:16.258963px;}
.ws11a{word-spacing:16.378514px;}
.ws127{word-spacing:16.617617px;}
.ws169{word-spacing:16.737210px;}
.ws12d{word-spacing:16.796944px;}
.ws29{word-spacing:17.036046px;}
.wsdf{word-spacing:17.155597px;}
.wsc{word-spacing:17.269286px;}
.ws161{word-spacing:17.311057px;}
.ws92{word-spacing:17.514251px;}
.wsef{word-spacing:17.517245px;}
.wsee{word-spacing:17.538278px;}
.ws16a{word-spacing:17.597981px;}
.ws43{word-spacing:17.633802px;}
.ws3c{word-spacing:17.693578px;}
.ws37{word-spacing:17.753353px;}
.ws50{word-spacing:17.872904px;}
.ws16{word-spacing:17.932680px;}
.ws149{word-spacing:17.932725px;}
.ws107{word-spacing:18.112007px;}
.ws9{word-spacing:18.291456px;}
.ws131{word-spacing:18.530436px;}
.ws2a{word-spacing:18.709763px;}
.wsc8{word-spacing:18.948865px;}
.ws14{word-spacing:18.990835px;}
.ws35{word-spacing:19.068416px;}
.ws41{word-spacing:19.187968px;}
.ws112{word-spacing:19.486846px;}
.ws33{word-spacing:20.144377px;}
.ws9e{word-spacing:20.155903px;}
.ws12c{word-spacing:20.263928px;}
.ws1f{word-spacing:20.323704px;}
.wsde{word-spacing:20.383480px;}
.ws117{word-spacing:20.615208px;}
.ws116{word-spacing:20.621208px;}
.ws4b{word-spacing:20.682358px;}
.wsbf{word-spacing:21.100787px;}
.ws83{word-spacing:21.280114px;}
.ws22{word-spacing:21.459440px;}
.wsd2{word-spacing:21.519216px;}
.wsdd{word-spacing:21.937645px;}
.ws88{word-spacing:22.057196px;}
.ws36{word-spacing:22.654952px;}
.ws140{word-spacing:22.714728px;}
.ws135{word-spacing:23.192933px;}
.ws183{word-spacing:26.014406px;}
.wsc1{word-spacing:27.986936px;}
.ws187{word-spacing:34.143908px;}
.wsc0{word-spacing:37.119998px;}
.ws185{word-spacing:46.529444px;}
.wse2{word-spacing:65.104738px;}
.wse3{word-spacing:70.084800px;}
.ws186{word-spacing:97.362742px;}
.ws182{word-spacing:137.579866px;}
.ws184{word-spacing:144.035647px;}
.wsc9{word-spacing:501.428721px;}
._25{margin-left:-21.232346px;}
._2{margin-left:-14.346180px;}
._e{margin-left:-7.711052px;}
._b{margin-left:-6.635092px;}
._6{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._3{margin-left:-1.022170px;}
._c{width:1.053450px;}
._7{width:2.988780px;}
._24{width:4.004041px;}
._26{width:5.355907px;}
._23{width:7.340831px;}
._20{width:9.222922px;}
._21{width:10.438716px;}
._1f{width:12.394862px;}
._14{width:14.462136px;}
._1d{width:16.374808px;}
._11{width:17.693578px;}
._5{width:20.181769px;}
._f{width:21.825414px;}
._4{width:23.752136px;}
._12{width:24.788375px;}
._8{width:26.899020px;}
._13{width:28.004890px;}
._d{width:29.887800px;}
._1e{width:31.033939px;}
._10{width:32.339277px;}
._9{width:34.251419px;}
._a{width:35.387155px;}
._22{width:47.818310px;}
._15{width:73.265517px;}
._18{width:86.606707px;}
._16{width:107.681347px;}
._1a{width:118.181100px;}
._1b{width:130.133100px;}
._1c{width:133.036800px;}
._17{width:138.093115px;}
._19{width:144.989400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y59{bottom:113.332500px;}
.y1a3{bottom:126.783000px;}
.y58{bottom:131.265000px;}
.y13a{bottom:131.266500px;}
.y121{bottom:131.331000px;}
.y1a2{bottom:140.232000px;}
.y1e4{bottom:144.715500px;}
.y30{bottom:147.466500px;}
.ycf{bottom:149.197500px;}
.y8b{bottom:149.199000px;}
.y120{bottom:149.263500px;}
.y139{bottom:150.175500px;}
.y57{bottom:150.613500px;}
.y1a1{bottom:153.681000px;}
.y1e3{bottom:158.166000px;}
.y2f{bottom:165.399000px;}
.y8a{bottom:167.131500px;}
.y11f{bottom:167.196000px;}
.y138{bottom:168.108000px;}
.y56{bottom:168.546000px;}
.y1e2{bottom:171.615000px;}
.y1a0{bottom:180.580500px;}
.y2e{bottom:183.331500px;}
.ya9{bottom:185.064000px;}
.y11e{bottom:185.128500px;}
.y89{bottom:185.541000px;}
.y137{bottom:186.040500px;}
.y55{bottom:186.480000px;}
.y19f{bottom:194.031000px;}
.y1e1{bottom:198.514500px;}
.y2d{bottom:201.264000px;}
.ya8{bottom:202.996500px;}
.y11d{bottom:203.061000px;}
.y173{bottom:203.223000px;}
.y88{bottom:203.475000px;}
.y136{bottom:203.973000px;}
.y54{bottom:204.412500px;}
.y19e{bottom:207.480000px;}
.y1e0{bottom:211.963500px;}
.y2c{bottom:219.198000px;}
.ya7{bottom:220.929000px;}
.y11c{bottom:220.995000px;}
.y172{bottom:221.155500px;}
.y87{bottom:221.407500px;}
.y53{bottom:223.761000px;}
.y1df{bottom:225.412500px;}
.y135{bottom:230.031000px;}
.y14f{bottom:231.564000px;}
.y19d{bottom:234.379500px;}
.ya6{bottom:238.861500px;}
.y1de{bottom:238.863000px;}
.y11b{bottom:238.927500px;}
.yf5{bottom:238.978500px;}
.y171{bottom:239.088000px;}
.y86{bottom:239.817000px;}
.y52{bottom:241.693500px;}
.y2b{bottom:242.235000px;}
.y1dd{bottom:252.312000px;}
.y19c{bottom:256.294500px;}
.ya5{bottom:256.795500px;}
.y11a{bottom:256.860000px;}
.yf4{bottom:256.911000px;}
.y170{bottom:257.020500px;}
.y85{bottom:257.751000px;}
.y134{bottom:258.528000px;}
.y51{bottom:259.626000px;}
.y2a{bottom:260.167500px;}
.y1dc{bottom:265.761000px;}
.y14e{bottom:273.981000px;}
.ya4{bottom:274.728000px;}
.y119{bottom:274.792500px;}
.yf3{bottom:274.843500px;}
.y16f{bottom:274.953000px;}
.y84{bottom:275.683500px;}
.y50{bottom:277.558500px;}
.y29{bottom:278.100000px;}
.y1db{bottom:279.211500px;}
.y19b{bottom:283.486500px;}
.y14d{bottom:291.913500px;}
.yce{bottom:292.660500px;}
.yf2{bottom:292.776000px;}
.y118{bottom:292.791000px;}
.ya3{bottom:294.397500px;}
.y133{bottom:294.847500px;}
.y4f{bottom:295.491000px;}
.y28{bottom:296.032500px;}
.y16e{bottom:296.352000px;}
.y83{bottom:299.995500px;}
.y19a{bottom:301.420500px;}
.y1da{bottom:306.111000px;}
.y14c{bottom:309.846000px;}
.yf1{bottom:310.710000px;}
.y117{bottom:310.723500px;}
.ya2{bottom:312.330000px;}
.y132{bottom:312.780000px;}
.ycd{bottom:313.342500px;}
.y4e{bottom:313.425000px;}
.y27{bottom:313.965000px;}
.y16d{bottom:314.286000px;}
.y199{bottom:319.353000px;}
.y1d9{bottom:319.560000px;}
.y14b{bottom:327.780000px;}
.y116{bottom:328.656000px;}
.ya1{bottom:330.262500px;}
.y131{bottom:330.712500px;}
.ycc{bottom:331.275000px;}
.y4d{bottom:331.357500px;}
.y26{bottom:331.897500px;}
.y82{bottom:332.077500px;}
.y16c{bottom:332.218500px;}
.y1d8{bottom:333.009000px;}
.yf0{bottom:333.756000px;}
.y198{bottom:337.285500px;}
.y14a{bottom:345.712500px;}
.y1d7{bottom:346.459500px;}
.y115{bottom:346.588500px;}
.ya0{bottom:348.196500px;}
.y130{bottom:348.646500px;}
.ycb{bottom:349.207500px;}
.y4c{bottom:349.290000px;}
.y81{bottom:350.010000px;}
.y16b{bottom:350.151000px;}
.y25{bottom:350.833500px;}
.y197{bottom:359.787000px;}
.y1d6{bottom:359.908500px;}
.yef{bottom:362.763000px;}
.y149{bottom:363.645000px;}
.y114{bottom:364.521000px;}
.y9f{bottom:366.129000px;}
.y12f{bottom:366.579000px;}
.yca{bottom:367.140000px;}
.y4b{bottom:367.222500px;}
.y80{bottom:367.942500px;}
.y16a{bottom:368.083500px;}
.y24{bottom:368.766000px;}
.y1d5{bottom:373.357500px;}
.yee{bottom:380.695500px;}
.y148{bottom:381.577500px;}
.y113{bottom:382.453500px;}
.y12e{bottom:384.511500px;}
.yc9{bottom:385.072500px;}
.y4a{bottom:385.155000px;}
.y9e{bottom:385.798500px;}
.y7f{bottom:385.875000px;}
.y169{bottom:386.016000px;}
.y23{bottom:386.698500px;}
.y1d4{bottom:386.808000px;}
.y196{bottom:386.980500px;}
.yed{bottom:398.628000px;}
.y147{bottom:399.510000px;}
.y1d3{bottom:400.257000px;}
.y112{bottom:400.387500px;}
.y12d{bottom:402.444000px;}
.yc8{bottom:403.006500px;}
.y49{bottom:403.087500px;}
.y9d{bottom:403.731000px;}
.y7e{bottom:403.809000px;}
.y168{bottom:403.948500px;}
.y22{bottom:404.631000px;}
.y195{bottom:404.913000px;}
.y1d2{bottom:413.707500px;}
.yec{bottom:416.562000px;}
.y146{bottom:417.442500px;}
.y111{bottom:418.320000px;}
.y12c{bottom:420.376500px;}
.yc7{bottom:420.864000px;}
.y48{bottom:421.021500px;}
.y9c{bottom:421.663500px;}
.y7d{bottom:421.741500px;}
.y167{bottom:421.882500px;}
.y21{bottom:422.563500px;}
.y194{bottom:422.845500px;}
.y1d1{bottom:427.156500px;}
.yeb{bottom:434.610000px;}
.y145{bottom:435.376500px;}
.y110{bottom:436.252500px;}
.y12b{bottom:438.310500px;}
.yc6{bottom:438.796500px;}
.y47{bottom:438.954000px;}
.y9b{bottom:439.597500px;}
.y7c{bottom:439.674000px;}
.y166{bottom:439.815000px;}
.y20{bottom:440.496000px;}
.y1d0{bottom:440.605500px;}
.y193{bottom:440.778000px;}
.yea{bottom:452.542500px;}
.y1cf{bottom:454.056000px;}
.y144{bottom:455.002500px;}
.y12a{bottom:456.243000px;}
.yc5{bottom:456.730500px;}
.y46{bottom:456.886500px;}
.y9a{bottom:457.530000px;}
.y7b{bottom:457.606500px;}
.y165{bottom:457.747500px;}
.y1f{bottom:458.430000px;}
.y192{bottom:458.572500px;}
.y1ce{bottom:467.505000px;}
.ye9{bottom:470.476500px;}
.y143{bottom:472.935000px;}
.y129{bottom:474.175500px;}
.yc4{bottom:474.663000px;}
.y99{bottom:475.462500px;}
.y7a{bottom:475.539000px;}
.y164{bottom:475.680000px;}
.y1e{bottom:476.362500px;}
.y191{bottom:476.505000px;}
.y45{bottom:480.796500px;}
.y1cd{bottom:480.954000px;}
.y10f{bottom:483.432000px;}
.ye8{bottom:488.409000px;}
.y142{bottom:490.867500px;}
.yc3{bottom:492.520500px;}
.y128{bottom:493.084500px;}
.y98{bottom:493.395000px;}
.y163{bottom:493.612500px;}
.y1d{bottom:494.295000px;}
.y1cc{bottom:494.404500px;}
.y190{bottom:494.439000px;}
.y79{bottom:496.992000px;}
.y10e{bottom:498.226500px;}
.y44{bottom:498.729000px;}
.ye7{bottom:506.341500px;}
.y1cb{bottom:507.853500px;}
.y141{bottom:508.800000px;}
.yc2{bottom:510.453000px;}
.y127{bottom:511.017000px;}
.y97{bottom:511.327500px;}
.y1c{bottom:512.227500px;}
.y18f{bottom:512.371500px;}
.y10d{bottom:513.021000px;}
.y78{bottom:514.924500px;}
.y162{bottom:515.011500px;}
.y43{bottom:516.663000px;}
.y1ca{bottom:521.304000px;}
.ye6{bottom:524.274000px;}
.y10c{bottom:527.815500px;}
.yc1{bottom:528.387000px;}
.y140{bottom:528.427500px;}
.y126{bottom:528.949500px;}
.y96{bottom:529.260000px;}
.y1b{bottom:530.160000px;}
.y18e{bottom:530.304000px;}
.y77{bottom:532.857000px;}
.y161{bottom:533.170500px;}
.y42{bottom:534.595500px;}
.y1c9{bottom:534.753000px;}
.ye5{bottom:542.206500px;}
.y10b{bottom:542.610000px;}
.yc0{bottom:546.319500px;}
.y13f{bottom:546.360000px;}
.y95{bottom:547.194000px;}
.y1a{bottom:548.092500px;}
.y1c8{bottom:548.202000px;}
.y18d{bottom:548.236500px;}
.y76{bottom:550.789500px;}
.y160{bottom:551.103000px;}
.y41{bottom:552.528000px;}
.y10a{bottom:557.404500px;}
.ye4{bottom:560.139000px;}
.y1c7{bottom:561.652500px;}
.ybf{bottom:564.252000px;}
.y94{bottom:565.126500px;}
.y19{bottom:566.026500px;}
.y18c{bottom:566.031000px;}
.y75{bottom:568.723500px;}
.y15f{bottom:569.037000px;}
.y40{bottom:570.460500px;}
.y109{bottom:572.199000px;}
.y1c6{bottom:575.101500px;}
.ye3{bottom:578.073000px;}
.y125{bottom:581.766000px;}
.ybe{bottom:582.184500px;}
.y93{bottom:583.059000px;}
.y18{bottom:583.959000px;}
.y18b{bottom:583.963500px;}
.y74{bottom:586.656000px;}
.y15e{bottom:586.969500px;}
.y108{bottom:586.993500px;}
.y3f{bottom:588.393000px;}
.y1c5{bottom:588.550500px;}
.y124{bottom:596.709000px;}
.ye2{bottom:598.983000px;}
.ybd{bottom:600.117000px;}
.y92{bottom:600.991500px;}
.y13e{bottom:601.087500px;}
.y107{bottom:601.788000px;}
.y17{bottom:601.891500px;}
.y18a{bottom:601.897500px;}
.y1c4{bottom:602.001000px;}
.y15d{bottom:604.902000px;}
.y3e{bottom:606.325500px;}
.y73{bottom:608.586000px;}
.ye1{bottom:609.234000px;}
.y123{bottom:611.653500px;}
.y1c3{bottom:615.450000px;}
.y13d{bottom:616.032000px;}
.y106{bottom:616.584000px;}
.ybc{bottom:618.051000px;}
.y189{bottom:619.830000px;}
.y91{bottom:620.661000px;}
.y15c{bottom:622.834500px;}
.y3d{bottom:624.259500px;}
.y72{bottom:626.518500px;}
.y122{bottom:626.596500px;}
.y1c2{bottom:628.900500px;}
.y16{bottom:630.544500px;}
.y13c{bottom:630.976500px;}
.y105{bottom:631.378500px;}
.ybb{bottom:635.908500px;}
.y188{bottom:637.762500px;}
.y90{bottom:638.595000px;}
.y15b{bottom:640.767000px;}
.y3c{bottom:642.192000px;}
.y1c1{bottom:642.349500px;}
.y71{bottom:644.451000px;}
.y13b{bottom:645.919500px;}
.y104{bottom:646.173000px;}
.ye0{bottom:647.539500px;}
.yba{bottom:653.841000px;}
.y187{bottom:655.695000px;}
.y1c0{bottom:655.798500px;}
.y15a{bottom:658.699500px;}
.y103{bottom:661.564500px;}
.y70{bottom:662.385000px;}
.y3b{bottom:664.686000px;}
.ydf{bottom:665.472000px;}
.y1bf{bottom:669.249000px;}
.y15{bottom:671.235000px;}
.yb9{bottom:671.773500px;}
.y186{bottom:673.627500px;}
.y102{bottom:676.359000px;}
.y159{bottom:676.633500px;}
.y3a{bottom:682.618500px;}
.y1be{bottom:682.698000px;}
.yde{bottom:683.404500px;}
.y14{bottom:686.179500px;}
.y6f{bottom:686.697000px;}
.yb8{bottom:689.707500px;}
.y185{bottom:691.561500px;}
.y8f{bottom:693.438000px;}
.y158{bottom:694.791000px;}
.y1bd{bottom:696.147000px;}
.y101{bottom:699.099000px;}
.y39{bottom:700.551000px;}
.ydd{bottom:701.337000px;}
.y13{bottom:702.124500px;}
.yb7{bottom:707.565000px;}
.y8e{bottom:708.382500px;}
.y184{bottom:709.494000px;}
.y1bc{bottom:709.597500px;}
.y157{bottom:712.725000px;}
.y12{bottom:717.069000px;}
.y38{bottom:718.485000px;}
.y6e{bottom:718.779000px;}
.ydc{bottom:719.271000px;}
.y1bb{bottom:723.046500px;}
.y8d{bottom:723.327000px;}
.y100{bottom:725.148000px;}
.yb6{bottom:725.497500px;}
.y183{bottom:727.288500px;}
.y156{bottom:730.657500px;}
.y11{bottom:732.013500px;}
.y37{bottom:736.417500px;}
.y1ba{bottom:736.495500px;}
.y6d{bottom:736.711500px;}
.ydb{bottom:737.203500px;}
.y8c{bottom:738.270000px;}
.yff{bottom:743.080500px;}
.yb5{bottom:743.431500px;}
.y182{bottom:745.221000px;}
.y10{bottom:746.956500px;}
.y155{bottom:748.590000px;}
.y1b9{bottom:749.946000px;}
.y36{bottom:754.350000px;}
.y6c{bottom:754.644000px;}
.yda{bottom:755.136000px;}
.yfe{bottom:761.013000px;}
.yb4{bottom:761.364000px;}
.yf{bottom:761.901000px;}
.y181{bottom:763.153500px;}
.y1b8{bottom:763.395000px;}
.y35{bottom:772.282500px;}
.y6b{bottom:773.055000px;}
.yd9{bottom:773.068500px;}
.ye{bottom:776.845500px;}
.y154{bottom:778.701000px;}
.yfd{bottom:778.945500px;}
.yb3{bottom:779.296500px;}
.y180{bottom:781.086000px;}
.y34{bottom:790.215000px;}
.y1b7{bottom:790.294500px;}
.y6a{bottom:790.987500px;}
.yd8{bottom:791.118000px;}
.yd{bottom:791.788500px;}
.yfc{bottom:796.879500px;}
.yb2{bottom:797.229000px;}
.y17f{bottom:799.020000px;}
.y1b6{bottom:803.743500px;}
.yc{bottom:806.733000px;}
.y33{bottom:808.149000px;}
.y69{bottom:808.920000px;}
.yd7{bottom:809.050500px;}
.y153{bottom:811.944000px;}
.yfb{bottom:814.812000px;}
.yb1{bottom:815.161500px;}
.y17e{bottom:816.952500px;}
.y1b5{bottom:817.194000px;}
.yb{bottom:821.677500px;}
.y32{bottom:826.081500px;}
.y68{bottom:826.852500px;}
.yd6{bottom:826.983000px;}
.y152{bottom:829.876500px;}
.y1b4{bottom:830.643000px;}
.yfa{bottom:832.744500px;}
.yb0{bottom:833.020500px;}
.y17d{bottom:834.747000px;}
.ya{bottom:836.620500px;}
.y1b3{bottom:844.092000px;}
.y67{bottom:844.785000px;}
.yd5{bottom:844.915500px;}
.y151{bottom:847.809000px;}
.y31{bottom:848.575500px;}
.yf9{bottom:850.677000px;}
.yaf{bottom:850.953000px;}
.y9{bottom:851.565000px;}
.y17c{bottom:852.679500px;}
.y1b2{bottom:857.542500px;}
.y66{bottom:862.717500px;}
.y8{bottom:866.508000px;}
.yd4{bottom:867.963000px;}
.yf8{bottom:868.609500px;}
.yae{bottom:868.885500px;}
.y17b{bottom:870.612000px;}
.y1b1{bottom:870.991500px;}
.y1b0{bottom:884.442000px;}
.yad{bottom:886.818000px;}
.y65{bottom:888.225000px;}
.y17a{bottom:888.544500px;}
.yd3{bottom:891.300000px;}
.y1af{bottom:897.891000px;}
.y150{bottom:898.624500px;}
.yac{bottom:904.677000px;}
.y179{bottom:906.478500px;}
.y1ae{bottom:911.340000px;}
.y7{bottom:918.042000px;}
.yf7{bottom:918.994500px;}
.y64{bottom:920.307000px;}
.yab{bottom:922.609500px;}
.y178{bottom:924.411000px;}
.y1ad{bottom:924.790500px;}
.yf6{bottom:933.939000px;}
.y6{bottom:936.534000px;}
.y63{bottom:938.239500px;}
.y177{bottom:942.343500px;}
.y1ac{bottom:951.688500px;}
.y5{bottom:955.027500px;}
.y62{bottom:956.172000px;}
.y176{bottom:960.276000px;}
.y1ab{bottom:965.139000px;}
.yaa{bottom:972.028500px;}
.y4{bottom:973.521000px;}
.y61{bottom:974.104500px;}
.y175{bottom:978.208500px;}
.y1aa{bottom:978.588000px;}
.yd2{bottom:992.037000px;}
.y60{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y174{bottom:1000.711500px;}
.y1a9{bottom:1005.487500px;}
.yd1{bottom:1009.969500px;}
.y5f{bottom:1009.971000px;}
.y1a8{bottom:1018.936500px;}
.y5e{bottom:1027.903500px;}
.y1a7{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y5d{bottom:1045.836000px;}
.y1a6{bottom:1059.285000px;}
.y5c{bottom:1063.768500px;}
.y1a5{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y5b{bottom:1081.701000px;}
.y1a4{bottom:1086.184500px;}
.yd0{bottom:1099.633500px;}
.y5a{bottom:1099.635000px;}
.h14{height:32.661470px;}
.hf{height:32.900573px;}
.h11{height:33.134573px;}
.h12{height:33.140573px;}
.he{height:33.187496px;}
.ha{height:37.013299px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.hb{height:37.927872px;}
.h7{height:40.348800px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h9{height:41.484266px;}
.h13{height:43.994573px;}
.h8{height:44.831700px;}
.h2{height:45.238339px;}
.h10{height:73.275024px;}
.hd{height:82.129613px;}
.hc{height:85.271700px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.446000px;}
.x1{left:76.765500px;}
.x22{left:79.423500px;}
.x8{left:88.389000px;}
.x18{left:93.426000px;}
.x19{left:95.811000px;}
.x1b{left:98.131500px;}
.x1a{left:101.119500px;}
.xb{left:103.479000px;}
.x2{left:104.758500px;}
.x17{left:106.230000px;}
.x11{left:114.687000px;}
.x12{left:131.125500px;}
.x13{left:158.050500px;}
.x23{left:180.750000px;}
.x20{left:196.570500px;}
.xa{left:203.428500px;}
.x1f{left:208.122000px;}
.x21{left:219.897000px;}
.x24{left:287.325000px;}
.x7{left:391.759500px;}
.x5{left:393.741000px;}
.x3{left:398.146500px;}
.x6{left:415.042500px;}
.x4{left:434.350500px;}
.x10{left:467.967000px;}
.x1d{left:471.079500px;}
.x25{left:473.944500px;}
.xf{left:482.910000px;}
.x26{left:495.355500px;}
.xc{left:498.000000px;}
.x1c{left:502.026000px;}
.xd{left:509.208000px;}
.x27{left:517.261500px;}
.xe{left:525.646500px;}
.x28{left:529.216500px;}
.x2a{left:531.555000px;}
.x1e{left:552.945000px;}
.x14{left:562.077000px;}
.x15{left:617.625000px;}
.x29{left:636.720000px;}
.x16{left:653.364000px;}
.x2b{left:679.734000px;}
@media print{
.v4{vertical-align:-13.280000pt;}
.v2{vertical-align:-7.973333pt;}
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.861333pt;}
.v7{vertical-align:15.349333pt;}
.v5{vertical-align:19.280000pt;}
.v3{vertical-align:35.946667pt;}
.v6{vertical-align:63.008000pt;}
.lse{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000055pt;}
.ls46{letter-spacing:0.000267pt;}
.ls3e{letter-spacing:0.000294pt;}
.ls5e{letter-spacing:0.000479pt;}
.ls4b{letter-spacing:0.000495pt;}
.ls31{letter-spacing:0.001659pt;}
.ls3d{letter-spacing:0.001817pt;}
.ls25{letter-spacing:0.002079pt;}
.ls2b{letter-spacing:0.002122pt;}
.ls59{letter-spacing:0.002133pt;}
.ls5a{letter-spacing:0.002195pt;}
.ls10{letter-spacing:0.002352pt;}
.ls5{letter-spacing:0.002823pt;}
.ls1a{letter-spacing:0.002879pt;}
.ls17{letter-spacing:0.003697pt;}
.ls2e{letter-spacing:0.003733pt;}
.ls49{letter-spacing:0.003879pt;}
.ls52{letter-spacing:0.003892pt;}
.ls23{letter-spacing:0.004349pt;}
.ls66{letter-spacing:0.741348pt;}
.ls4{letter-spacing:2.635446pt;}
.ls67{letter-spacing:2.655711pt;}
.ls2a{letter-spacing:2.656693pt;}
.ls55{letter-spacing:2.657253pt;}
.ls21{letter-spacing:2.871286pt;}
.ls2f{letter-spacing:3.801225pt;}
.ls6{letter-spacing:3.992007pt;}
.ls41{letter-spacing:3.997340pt;}
.ls38{letter-spacing:5.584479pt;}
.ls37{letter-spacing:5.587733pt;}
.ls35{letter-spacing:8.851733pt;}
.ls26{letter-spacing:8.857067pt;}
.ls53{letter-spacing:12.187145pt;}
.ls63{letter-spacing:12.937067pt;}
.ls2{letter-spacing:13.649386pt;}
.ls5b{letter-spacing:14.460911pt;}
.ls58{letter-spacing:14.755733pt;}
.ls13{letter-spacing:14.757812pt;}
.ls54{letter-spacing:14.954721pt;}
.ls3{letter-spacing:15.056423pt;}
.ls22{letter-spacing:15.323242pt;}
.ls51{letter-spacing:15.712479pt;}
.ls24{letter-spacing:16.005909pt;}
.ls4c{letter-spacing:16.309828pt;}
.ls64{letter-spacing:16.750400pt;}
.ls32{letter-spacing:17.410245pt;}
.ls4e{letter-spacing:17.452867pt;}
.ls36{letter-spacing:17.479455pt;}
.ls2d{letter-spacing:17.657067pt;}
.ls34{letter-spacing:18.563892pt;}
.ls60{letter-spacing:18.597388pt;}
.ls5f{letter-spacing:18.597812pt;}
.ls44{letter-spacing:18.749340pt;}
.ls45{letter-spacing:18.754673pt;}
.ls62{letter-spacing:18.909340pt;}
.ls40{letter-spacing:19.058673pt;}
.ls18{letter-spacing:19.090200pt;}
.lsf{letter-spacing:19.373340pt;}
.ls3a{letter-spacing:19.442122pt;}
.ls4f{letter-spacing:19.696495pt;}
.ls57{letter-spacing:20.093340pt;}
.ls2c{letter-spacing:20.311578pt;}
.ls20{letter-spacing:20.529952pt;}
.ls1b{letter-spacing:20.540867pt;}
.ls1c{letter-spacing:20.877340pt;}
.ls16{letter-spacing:21.468619pt;}
.ls4a{letter-spacing:21.564867pt;}
.ls3c{letter-spacing:21.703679pt;}
.ls1{letter-spacing:21.735533pt;}
.ls42{letter-spacing:22.396911pt;}
.ls15{letter-spacing:22.589340pt;}
.ls19{letter-spacing:22.647533pt;}
.ls3b{letter-spacing:22.835892pt;}
.ls0{letter-spacing:22.935533pt;}
.ls56{letter-spacing:23.046697pt;}
.ls50{letter-spacing:23.469340pt;}
.ls11{letter-spacing:23.762673pt;}
.ls12{letter-spacing:23.768007pt;}
.ls9{letter-spacing:23.928007pt;}
.ls47{letter-spacing:24.936007pt;}
.ls29{letter-spacing:24.987145pt;}
.ls43{letter-spacing:25.001211pt;}
.ls27{letter-spacing:25.157909pt;}
.ls48{letter-spacing:25.500867pt;}
.ls7{letter-spacing:26.392007pt;}
.ls14{letter-spacing:26.672576pt;}
.ls65{letter-spacing:26.834509pt;}
.ls30{letter-spacing:27.202122pt;}
.lsc{letter-spacing:28.237340pt;}
.ls28{letter-spacing:28.984007pt;}
.lsd{letter-spacing:29.341340pt;}
.ls5d{letter-spacing:29.592007pt;}
.ls39{letter-spacing:29.977225pt;}
.ls4d{letter-spacing:30.153211pt;}
.ls61{letter-spacing:30.260779pt;}
.ls1f{letter-spacing:30.349340pt;}
.ls1d{letter-spacing:31.160007pt;}
.ls8{letter-spacing:31.878586pt;}
.lsa{letter-spacing:31.881067pt;}
.lsb{letter-spacing:31.883919pt;}
.ls3f{letter-spacing:71.198545pt;}
.ls33{letter-spacing:78.501812pt;}
.ls5c{letter-spacing:242.850245pt;}
.ws120{word-spacing:-53.133867pt;}
.ws27{word-spacing:-34.611401pt;}
.wsb2{word-spacing:-14.760588pt;}
.ws10{word-spacing:-13.652838pt;}
.ws1a{word-spacing:-13.283467pt;}
.ws17{word-spacing:-13.262246pt;}
.wsf7{word-spacing:-11.955200pt;}
.ws15d{word-spacing:-10.626800pt;}
.ws9d{word-spacing:-9.298400pt;}
.wsa2{word-spacing:-5.940366pt;}
.wsed{word-spacing:-5.918525pt;}
.ws130{word-spacing:-5.905121pt;}
.ws11d{word-spacing:-5.899788pt;}
.ws3b{word-spacing:-5.887232pt;}
.wsa{word-spacing:-5.666765pt;}
.ws10b{word-spacing:-5.481462pt;}
.ws12{word-spacing:-5.475482pt;}
.wsf6{word-spacing:-5.444521pt;}
.wsf2{word-spacing:-5.427661pt;}
.ws159{word-spacing:-3.528098pt;}
.ws121{word-spacing:-2.964870pt;}
.wsc3{word-spacing:-2.654828pt;}
.ws119{word-spacing:-2.590668pt;}
.ws10e{word-spacing:-1.362893pt;}
.ws12b{word-spacing:-1.009543pt;}
.ws181{word-spacing:-0.850144pt;}
.ws53{word-spacing:-0.797008pt;}
.ws114{word-spacing:-0.743874pt;}
.ws5a{word-spacing:-0.690740pt;}
.ws9a{word-spacing:-0.637606pt;}
.ws99{word-spacing:-0.618844pt;}
.ws12a{word-spacing:-0.584473pt;}
.wsbc{word-spacing:-0.531339pt;}
.wsda{word-spacing:-0.425071pt;}
.ws13b{word-spacing:-0.371937pt;}
.ws85{word-spacing:-0.318803pt;}
.ws15f{word-spacing:-0.255043pt;}
.ws38{word-spacing:-0.159402pt;}
.ws146{word-spacing:-0.106268pt;}
.ws109{word-spacing:-0.103782pt;}
.ws108{word-spacing:-0.095642pt;}
.ws17f{word-spacing:-0.085014pt;}
.wsad{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws15a{word-spacing:-0.042507pt;}
.ws9b{word-spacing:-0.037194pt;}
.ws13{word-spacing:-0.023910pt;}
.ws54{word-spacing:0.000000pt;}
.wsce{word-spacing:0.010627pt;}
.ws65{word-spacing:0.053134pt;}
.ws173{word-spacing:0.085014pt;}
.ws82{word-spacing:0.106268pt;}
.wsd3{word-spacing:0.265669pt;}
.wsd6{word-spacing:0.371937pt;}
.ws11c{word-spacing:0.425071pt;}
.ws24{word-spacing:0.478205pt;}
.wsd5{word-spacing:0.584473pt;}
.ws62{word-spacing:0.627016pt;}
.ws12e{word-spacing:0.637606pt;}
.ws174{word-spacing:0.637608pt;}
.wsa6{word-spacing:0.771227pt;}
.ws4d{word-spacing:0.797008pt;}
.wscd{word-spacing:0.850142pt;}
.ws6d{word-spacing:0.903276pt;}
.ws175{word-spacing:1.062680pt;}
.wse5{word-spacing:1.115811pt;}
.wsac{word-spacing:1.275213pt;}
.ws4f{word-spacing:1.328347pt;}
.wseb{word-spacing:1.381481pt;}
.ws5{word-spacing:1.482445pt;}
.wsa5{word-spacing:1.487748pt;}
.ws55{word-spacing:1.540882pt;}
.ws133{word-spacing:1.594016pt;}
.ws40{word-spacing:1.647150pt;}
.ws11b{word-spacing:1.671230pt;}
.wsc7{word-spacing:1.700284pt;}
.wse8{word-spacing:1.753418pt;}
.wsa4{word-spacing:1.965953pt;}
.ws61{word-spacing:2.072221pt;}
.ws19{word-spacing:2.231622pt;}
.ws11e{word-spacing:2.284756pt;}
.ws138{word-spacing:2.337890pt;}
.wsaf{word-spacing:2.444158pt;}
.ws102{word-spacing:2.497292pt;}
.ws79{word-spacing:2.550426pt;}
.ws105{word-spacing:2.653949pt;}
.ws3f{word-spacing:2.762961pt;}
.wsfc{word-spacing:2.815083pt;}
.ws32{word-spacing:2.816095pt;}
.wsfb{word-spacing:2.844548pt;}
.wsfa{word-spacing:2.869229pt;}
.ws8e{word-spacing:2.975497pt;}
.wsa7{word-spacing:3.028630pt;}
.ws75{word-spacing:3.081764pt;}
.wsd4{word-spacing:3.134898pt;}
.ws78{word-spacing:3.188032pt;}
.ws124{word-spacing:3.241166pt;}
.ws58{word-spacing:3.294300pt;}
.ws7b{word-spacing:3.299635pt;}
.ws69{word-spacing:3.347434pt;}
.ws4{word-spacing:3.347456pt;}
.ws10d{word-spacing:3.371366pt;}
.ws139{word-spacing:3.400567pt;}
.ws17d{word-spacing:3.400576pt;}
.ws13c{word-spacing:3.453701pt;}
.ws152{word-spacing:3.528098pt;}
.wsae{word-spacing:3.559969pt;}
.ws7e{word-spacing:3.613103pt;}
.ws160{word-spacing:3.655619pt;}
.ws5b{word-spacing:3.719371pt;}
.ws177{word-spacing:3.740634pt;}
.ws164{word-spacing:3.783141pt;}
.ws23{word-spacing:3.825638pt;}
.ws87{word-spacing:3.837894pt;}
.ws46{word-spacing:3.878772pt;}
.ws10a{word-spacing:3.921306pt;}
.ws144{word-spacing:3.931906pt;}
.ws143{word-spacing:3.985040pt;}
.wsf4{word-spacing:4.088678pt;}
.ws39{word-spacing:4.144442pt;}
.ws8{word-spacing:4.160410pt;}
.ws57{word-spacing:4.197575pt;}
.ws14f{word-spacing:4.250720pt;}
.wsd9{word-spacing:4.261336pt;}
.ws20{word-spacing:4.303843pt;}
.ws179{word-spacing:4.335734pt;}
.ws8a{word-spacing:4.356977pt;}
.wsc5{word-spacing:4.369897pt;}
.ws171{word-spacing:4.378242pt;}
.ws70{word-spacing:4.410111pt;}
.ws14a{word-spacing:4.420749pt;}
.ws59{word-spacing:4.463245pt;}
.ws8b{word-spacing:4.569513pt;}
.ws3e{word-spacing:4.622646pt;}
.ws153{word-spacing:4.633285pt;}
.wsd0{word-spacing:4.675780pt;}
.ws17c{word-spacing:4.675792pt;}
.wse6{word-spacing:4.762948pt;}
.ws90{word-spacing:4.782048pt;}
.ws7d{word-spacing:4.782080pt;}
.ws47{word-spacing:4.835182pt;}
.ws77{word-spacing:4.888316pt;}
.ws103{word-spacing:4.941450pt;}
.ws15{word-spacing:4.973363pt;}
.ws10f{word-spacing:4.994583pt;}
.ws34{word-spacing:5.047717pt;}
.ws7a{word-spacing:5.116826pt;}
.ws1c{word-spacing:5.153985pt;}
.wsec{word-spacing:5.207119pt;}
.ws68{word-spacing:5.260253pt;}
.ws12f{word-spacing:5.307122pt;}
.ws104{word-spacing:5.308623pt;}
.ws76{word-spacing:5.312791pt;}
.ws2{word-spacing:5.313387pt;}
.ws5c{word-spacing:5.313400pt;}
.ws8c{word-spacing:5.313897pt;}
.ws67{word-spacing:5.314689pt;}
.wse0{word-spacing:5.366521pt;}
.ws16e{word-spacing:5.398414pt;}
.ws136{word-spacing:5.472788pt;}
.wsc2{word-spacing:5.525922pt;}
.ws134{word-spacing:5.579056pt;}
.ws5f{word-spacing:5.632190pt;}
.ws3a{word-spacing:5.685324pt;}
.ws15c{word-spacing:5.695965pt;}
.ws97{word-spacing:5.791591pt;}
.ws15e{word-spacing:5.823486pt;}
.ws118{word-spacing:5.831230pt;}
.ws141{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws6e{word-spacing:5.950993pt;}
.ws11{word-spacing:5.977600pt;}
.ws168{word-spacing:5.993515pt;}
.ws6f{word-spacing:6.004127pt;}
.wsff{word-spacing:6.026445pt;}
.ws9c{word-spacing:6.028358pt;}
.ws6a{word-spacing:6.057261pt;}
.ws137{word-spacing:6.110395pt;}
.ws4c{word-spacing:6.163529pt;}
.ws151{word-spacing:6.163544pt;}
.ws111{word-spacing:6.193897pt;}
.ws110{word-spacing:6.216662pt;}
.ws96{word-spacing:6.269796pt;}
.ws106{word-spacing:6.322930pt;}
.ws91{word-spacing:6.376064pt;}
.wse7{word-spacing:6.429198pt;}
.ws31{word-spacing:6.482332pt;}
.ws66{word-spacing:6.492563pt;}
.wsb3{word-spacing:6.511472pt;}
.wscf{word-spacing:6.535466pt;}
.ws10c{word-spacing:6.551450pt;}
.ws163{word-spacing:6.631123pt;}
.ws2d{word-spacing:6.641733pt;}
.wsc6{word-spacing:6.748001pt;}
.wsfd{word-spacing:6.801135pt;}
.wse4{word-spacing:6.854269pt;}
.ws150{word-spacing:6.886166pt;}
.ws7c{word-spacing:6.886195pt;}
.ws4e{word-spacing:6.907403pt;}
.wsf3{word-spacing:6.934016pt;}
.wsf1{word-spacing:6.938231pt;}
.wsf5{word-spacing:6.943565pt;}
.ws44{word-spacing:6.960537pt;}
.ws3d{word-spacing:7.013670pt;}
.ws172{word-spacing:7.056195pt;}
.wsab{word-spacing:7.066804pt;}
.wsba{word-spacing:7.078484pt;}
.ws2f{word-spacing:7.119938pt;}
.wsf8{word-spacing:7.173072pt;}
.wsf{word-spacing:7.173120pt;}
.wsf9{word-spacing:7.197052pt;}
.wsfe{word-spacing:7.226206pt;}
.ws2b{word-spacing:7.279340pt;}
.wsb7{word-spacing:7.332474pt;}
.wsb6{word-spacing:7.336052pt;}
.wse1{word-spacing:7.491875pt;}
.ws63{word-spacing:7.545009pt;}
.ws8d{word-spacing:7.598143pt;}
.ws81{word-spacing:7.651277pt;}
.ws14d{word-spacing:7.693803pt;}
.wsdc{word-spacing:7.704411pt;}
.ws14e{word-spacing:7.736310pt;}
.ws154{word-spacing:7.768055pt;}
.ws155{word-spacing:7.778818pt;}
.wsca{word-spacing:7.810678pt;}
.ws86{word-spacing:7.916946pt;}
.ws158{word-spacing:7.948846pt;}
.wscc{word-spacing:7.970080pt;}
.wsb5{word-spacing:7.980570pt;}
.wsb4{word-spacing:8.002385pt;}
.wsb1{word-spacing:8.002689pt;}
.ws56{word-spacing:8.023214pt;}
.wsb0{word-spacing:8.032282pt;}
.ws60{word-spacing:8.129482pt;}
.wsa0{word-spacing:8.144237pt;}
.wsd1{word-spacing:8.182615pt;}
.ws142{word-spacing:8.235749pt;}
.ws180{word-spacing:8.237029pt;}
.ws16c{word-spacing:8.246397pt;}
.ws16b{word-spacing:8.263345pt;}
.wsbe{word-spacing:8.342017pt;}
.wsbd{word-spacing:8.395151pt;}
.ws166{word-spacing:8.416426pt;}
.ws71{word-spacing:8.501419pt;}
.wsa9{word-spacing:8.554553pt;}
.wsaa{word-spacing:8.607686pt;}
.ws26{word-spacing:8.660820pt;}
.ws18{word-spacing:8.713954pt;}
.ws9f{word-spacing:8.767088pt;}
.ws8f{word-spacing:8.926490pt;}
.ws15b{word-spacing:8.926512pt;}
.wsf0{word-spacing:8.990310pt;}
.ws28{word-spacing:9.139025pt;}
.ws16d{word-spacing:9.139048pt;}
.wsb{word-spacing:9.181594pt;}
.ws167{word-spacing:9.266570pt;}
.wse9{word-spacing:9.351561pt;}
.ws178{word-spacing:9.394091pt;}
.wsea{word-spacing:9.404694pt;}
.ws13e{word-spacing:9.428838pt;}
.ws42{word-spacing:9.457828pt;}
.ws72{word-spacing:9.510962pt;}
.ws7{word-spacing:9.611981pt;}
.ws49{word-spacing:9.617230pt;}
.ws115{word-spacing:9.723498pt;}
.ws165{word-spacing:9.776656pt;}
.ws148{word-spacing:10.042301pt;}
.ws1b{word-spacing:10.148569pt;}
.ws7f{word-spacing:10.201702pt;}
.ws1e{word-spacing:10.254836pt;}
.ws25{word-spacing:10.307970pt;}
.ws51{word-spacing:10.361104pt;}
.ws14c{word-spacing:10.456771pt;}
.ws14b{word-spacing:10.499278pt;}
.wscb{word-spacing:10.573639pt;}
.ws176{word-spacing:10.626800pt;}
.ws73{word-spacing:10.733041pt;}
.ws13f{word-spacing:10.786175pt;}
.wsbb{word-spacing:10.839309pt;}
.ws6{word-spacing:10.855322pt;}
.ws13d{word-spacing:10.932518pt;}
.ws4a{word-spacing:10.945577pt;}
.ws5d{word-spacing:10.998710pt;}
.ws74{word-spacing:11.051844pt;}
.ws129{word-spacing:11.104978pt;}
.ws17e{word-spacing:11.136886pt;}
.ws6b{word-spacing:11.158112pt;}
.ws170{word-spacing:11.221901pt;}
.ws5e{word-spacing:11.264380pt;}
.ws16f{word-spacing:11.264408pt;}
.ws162{word-spacing:11.391930pt;}
.ws6c{word-spacing:11.423781pt;}
.ws48{word-spacing:11.476915pt;}
.wsd7{word-spacing:11.529138pt;}
.ws1d{word-spacing:11.530049pt;}
.wsd8{word-spacing:11.548548pt;}
.ws98{word-spacing:11.636317pt;}
.ws145{word-spacing:11.742585pt;}
.ws113{word-spacing:11.795718pt;}
.wsc4{word-spacing:11.848852pt;}
.ws2c{word-spacing:11.901986pt;}
.ws52{word-spacing:12.061388pt;}
.ws132{word-spacing:12.114522pt;}
.ws100{word-spacing:12.167655pt;}
.ws123{word-spacing:12.316563pt;}
.ws122{word-spacing:12.327057pt;}
.wse{word-spacing:12.337766pt;}
.ws21{word-spacing:12.433325pt;}
.ws11f{word-spacing:12.486459pt;}
.ws17b{word-spacing:12.582131pt;}
.ws17a{word-spacing:12.590645pt;}
.ws128{word-spacing:12.698994pt;}
.ws101{word-spacing:12.709621pt;}
.ws0{word-spacing:12.752160pt;}
.wsdb{word-spacing:12.863795pt;}
.ws89{word-spacing:13.070931pt;}
.ws126{word-spacing:13.116548pt;}
.ws125{word-spacing:13.124065pt;}
.ws93{word-spacing:13.229052pt;}
.ws94{word-spacing:13.230333pt;}
.ws95{word-spacing:13.283467pt;}
.ws156{word-spacing:13.304754pt;}
.wsa1{word-spacing:13.361692pt;}
.wsa3{word-spacing:13.368887pt;}
.ws80{word-spacing:13.496002pt;}
.wsd{word-spacing:13.533286pt;}
.ws84{word-spacing:13.549136pt;}
.wsa8{word-spacing:13.814805pt;}
.ws2e{word-spacing:13.867939pt;}
.ws64{word-spacing:13.921073pt;}
.wsb8{word-spacing:14.024022pt;}
.wsb9{word-spacing:14.027341pt;}
.ws13a{word-spacing:14.239876pt;}
.ws157{word-spacing:14.282419pt;}
.ws30{word-spacing:14.293010pt;}
.ws45{word-spacing:14.399278pt;}
.ws147{word-spacing:14.452412pt;}
.ws11a{word-spacing:14.558679pt;}
.ws127{word-spacing:14.771215pt;}
.ws169{word-spacing:14.877520pt;}
.ws12d{word-spacing:14.930617pt;}
.ws29{word-spacing:15.143152pt;}
.wsdf{word-spacing:15.249420pt;}
.wsc{word-spacing:15.350477pt;}
.ws161{word-spacing:15.387606pt;}
.ws92{word-spacing:15.568223pt;}
.wsef{word-spacing:15.570884pt;}
.wsee{word-spacing:15.589581pt;}
.ws16a{word-spacing:15.642650pt;}
.ws43{word-spacing:15.674491pt;}
.ws3c{word-spacing:15.727625pt;}
.ws37{word-spacing:15.780758pt;}
.ws50{word-spacing:15.887026pt;}
.ws16{word-spacing:15.940160pt;}
.ws149{word-spacing:15.940200pt;}
.ws107{word-spacing:16.099562pt;}
.ws9{word-spacing:16.259072pt;}
.ws131{word-spacing:16.471499pt;}
.ws2a{word-spacing:16.630900pt;}
.wsc8{word-spacing:16.843436pt;}
.ws14{word-spacing:16.880742pt;}
.ws35{word-spacing:16.949703pt;}
.ws41{word-spacing:17.055971pt;}
.ws112{word-spacing:17.321641pt;}
.ws33{word-spacing:17.906113pt;}
.ws9e{word-spacing:17.916358pt;}
.ws12c{word-spacing:18.012381pt;}
.ws1f{word-spacing:18.065515pt;}
.wsde{word-spacing:18.118649pt;}
.ws117{word-spacing:18.324629pt;}
.ws116{word-spacing:18.329963pt;}
.ws4b{word-spacing:18.384318pt;}
.wsbf{word-spacing:18.756255pt;}
.ws83{word-spacing:18.915657pt;}
.ws22{word-spacing:19.075058pt;}
.wsd2{word-spacing:19.128192pt;}
.wsdd{word-spacing:19.500129pt;}
.ws88{word-spacing:19.606397pt;}
.ws36{word-spacing:20.137735pt;}
.ws140{word-spacing:20.190869pt;}
.ws135{word-spacing:20.615940pt;}
.ws183{word-spacing:23.123917pt;}
.wsc1{word-spacing:24.877276pt;}
.ws187{word-spacing:30.350141pt;}
.wsc0{word-spacing:32.995554pt;}
.ws185{word-spacing:41.359506pt;}
.wse2{word-spacing:57.870878pt;}
.wse3{word-spacing:62.297600pt;}
.ws186{word-spacing:86.544659pt;}
.ws182{word-spacing:122.293214pt;}
.ws184{word-spacing:128.031686pt;}
.wsc9{word-spacing:445.714419pt;}
._25{margin-left:-18.873197pt;}
._2{margin-left:-12.752160pt;}
._e{margin-left:-6.854269pt;}
._b{margin-left:-5.897859pt;}
._6{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._3{margin-left:-0.908595pt;}
._c{width:0.936400pt;}
._7{width:2.656693pt;}
._24{width:3.559148pt;}
._26{width:4.760806pt;}
._23{width:6.525183pt;}
._20{width:8.198153pt;}
._21{width:9.278859pt;}
._1f{width:11.017655pt;}
._14{width:12.855232pt;}
._1d{width:14.555385pt;}
._11{width:15.727625pt;}
._5{width:17.939350pt;}
._f{width:19.400368pt;}
._4{width:21.113009pt;}
._12{width:22.034111pt;}
._8{width:23.910240pt;}
._13{width:24.893235pt;}
._d{width:26.566933pt;}
._1e{width:27.585724pt;}
._10{width:28.746024pt;}
._9{width:30.445706pt;}
._a{width:31.455249pt;}
._22{width:42.505165pt;}
._15{width:65.124904pt;}
._18{width:76.983740pt;}
._16{width:95.716753pt;}
._1a{width:105.049867pt;}
._1b{width:115.673867pt;}
._1c{width:118.254933pt;}
._17{width:122.749435pt;}
._19{width:128.879467pt;}
.fs7{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:100.740000pt;}
.y1a3{bottom:112.696000pt;}
.y58{bottom:116.680000pt;}
.y13a{bottom:116.681333pt;}
.y121{bottom:116.738667pt;}
.y1a2{bottom:124.650667pt;}
.y1e4{bottom:128.636000pt;}
.y30{bottom:131.081333pt;}
.ycf{bottom:132.620000pt;}
.y8b{bottom:132.621333pt;}
.y120{bottom:132.678667pt;}
.y139{bottom:133.489333pt;}
.y57{bottom:133.878667pt;}
.y1a1{bottom:136.605333pt;}
.y1e3{bottom:140.592000pt;}
.y2f{bottom:147.021333pt;}
.y8a{bottom:148.561333pt;}
.y11f{bottom:148.618667pt;}
.y138{bottom:149.429333pt;}
.y56{bottom:149.818667pt;}
.y1e2{bottom:152.546667pt;}
.y1a0{bottom:160.516000pt;}
.y2e{bottom:162.961333pt;}
.ya9{bottom:164.501333pt;}
.y11e{bottom:164.558667pt;}
.y89{bottom:164.925333pt;}
.y137{bottom:165.369333pt;}
.y55{bottom:165.760000pt;}
.y19f{bottom:172.472000pt;}
.y1e1{bottom:176.457333pt;}
.y2d{bottom:178.901333pt;}
.ya8{bottom:180.441333pt;}
.y11d{bottom:180.498667pt;}
.y173{bottom:180.642667pt;}
.y88{bottom:180.866667pt;}
.y136{bottom:181.309333pt;}
.y54{bottom:181.700000pt;}
.y19e{bottom:184.426667pt;}
.y1e0{bottom:188.412000pt;}
.y2c{bottom:194.842667pt;}
.ya7{bottom:196.381333pt;}
.y11c{bottom:196.440000pt;}
.y172{bottom:196.582667pt;}
.y87{bottom:196.806667pt;}
.y53{bottom:198.898667pt;}
.y1df{bottom:200.366667pt;}
.y135{bottom:204.472000pt;}
.y14f{bottom:205.834667pt;}
.y19d{bottom:208.337333pt;}
.ya6{bottom:212.321333pt;}
.y1de{bottom:212.322667pt;}
.y11b{bottom:212.380000pt;}
.yf5{bottom:212.425333pt;}
.y171{bottom:212.522667pt;}
.y86{bottom:213.170667pt;}
.y52{bottom:214.838667pt;}
.y2b{bottom:215.320000pt;}
.y1dd{bottom:224.277333pt;}
.y19c{bottom:227.817333pt;}
.ya5{bottom:228.262667pt;}
.y11a{bottom:228.320000pt;}
.yf4{bottom:228.365333pt;}
.y170{bottom:228.462667pt;}
.y85{bottom:229.112000pt;}
.y134{bottom:229.802667pt;}
.y51{bottom:230.778667pt;}
.y2a{bottom:231.260000pt;}
.y1dc{bottom:236.232000pt;}
.y14e{bottom:243.538667pt;}
.ya4{bottom:244.202667pt;}
.y119{bottom:244.260000pt;}
.yf3{bottom:244.305333pt;}
.y16f{bottom:244.402667pt;}
.y84{bottom:245.052000pt;}
.y50{bottom:246.718667pt;}
.y29{bottom:247.200000pt;}
.y1db{bottom:248.188000pt;}
.y19b{bottom:251.988000pt;}
.y14d{bottom:259.478667pt;}
.yce{bottom:260.142667pt;}
.yf2{bottom:260.245333pt;}
.y118{bottom:260.258667pt;}
.ya3{bottom:261.686667pt;}
.y133{bottom:262.086667pt;}
.y4f{bottom:262.658667pt;}
.y28{bottom:263.140000pt;}
.y16e{bottom:263.424000pt;}
.y83{bottom:266.662667pt;}
.y19a{bottom:267.929333pt;}
.y1da{bottom:272.098667pt;}
.y14c{bottom:275.418667pt;}
.yf1{bottom:276.186667pt;}
.y117{bottom:276.198667pt;}
.ya2{bottom:277.626667pt;}
.y132{bottom:278.026667pt;}
.ycd{bottom:278.526667pt;}
.y4e{bottom:278.600000pt;}
.y27{bottom:279.080000pt;}
.y16d{bottom:279.365333pt;}
.y199{bottom:283.869333pt;}
.y1d9{bottom:284.053333pt;}
.y14b{bottom:291.360000pt;}
.y116{bottom:292.138667pt;}
.ya1{bottom:293.566667pt;}
.y131{bottom:293.966667pt;}
.ycc{bottom:294.466667pt;}
.y4d{bottom:294.540000pt;}
.y26{bottom:295.020000pt;}
.y82{bottom:295.180000pt;}
.y16c{bottom:295.305333pt;}
.y1d8{bottom:296.008000pt;}
.yf0{bottom:296.672000pt;}
.y198{bottom:299.809333pt;}
.y14a{bottom:307.300000pt;}
.y1d7{bottom:307.964000pt;}
.y115{bottom:308.078667pt;}
.ya0{bottom:309.508000pt;}
.y130{bottom:309.908000pt;}
.ycb{bottom:310.406667pt;}
.y4c{bottom:310.480000pt;}
.y81{bottom:311.120000pt;}
.y16b{bottom:311.245333pt;}
.y25{bottom:311.852000pt;}
.y197{bottom:319.810667pt;}
.y1d6{bottom:319.918667pt;}
.yef{bottom:322.456000pt;}
.y149{bottom:323.240000pt;}
.y114{bottom:324.018667pt;}
.y9f{bottom:325.448000pt;}
.y12f{bottom:325.848000pt;}
.yca{bottom:326.346667pt;}
.y4b{bottom:326.420000pt;}
.y80{bottom:327.060000pt;}
.y16a{bottom:327.185333pt;}
.y24{bottom:327.792000pt;}
.y1d5{bottom:331.873333pt;}
.yee{bottom:338.396000pt;}
.y148{bottom:339.180000pt;}
.y113{bottom:339.958667pt;}
.y12e{bottom:341.788000pt;}
.yc9{bottom:342.286667pt;}
.y4a{bottom:342.360000pt;}
.y9e{bottom:342.932000pt;}
.y7f{bottom:343.000000pt;}
.y169{bottom:343.125333pt;}
.y23{bottom:343.732000pt;}
.y1d4{bottom:343.829333pt;}
.y196{bottom:343.982667pt;}
.yed{bottom:354.336000pt;}
.y147{bottom:355.120000pt;}
.y1d3{bottom:355.784000pt;}
.y112{bottom:355.900000pt;}
.y12d{bottom:357.728000pt;}
.yc8{bottom:358.228000pt;}
.y49{bottom:358.300000pt;}
.y9d{bottom:358.872000pt;}
.y7e{bottom:358.941333pt;}
.y168{bottom:359.065333pt;}
.y22{bottom:359.672000pt;}
.y195{bottom:359.922667pt;}
.y1d2{bottom:367.740000pt;}
.yec{bottom:370.277333pt;}
.y146{bottom:371.060000pt;}
.y111{bottom:371.840000pt;}
.y12c{bottom:373.668000pt;}
.yc7{bottom:374.101333pt;}
.y48{bottom:374.241333pt;}
.y9c{bottom:374.812000pt;}
.y7d{bottom:374.881333pt;}
.y167{bottom:375.006667pt;}
.y21{bottom:375.612000pt;}
.y194{bottom:375.862667pt;}
.y1d1{bottom:379.694667pt;}
.yeb{bottom:386.320000pt;}
.y145{bottom:387.001333pt;}
.y110{bottom:387.780000pt;}
.y12b{bottom:389.609333pt;}
.yc6{bottom:390.041333pt;}
.y47{bottom:390.181333pt;}
.y9b{bottom:390.753333pt;}
.y7c{bottom:390.821333pt;}
.y166{bottom:390.946667pt;}
.y20{bottom:391.552000pt;}
.y1d0{bottom:391.649333pt;}
.y193{bottom:391.802667pt;}
.yea{bottom:402.260000pt;}
.y1cf{bottom:403.605333pt;}
.y144{bottom:404.446667pt;}
.y12a{bottom:405.549333pt;}
.yc5{bottom:405.982667pt;}
.y46{bottom:406.121333pt;}
.y9a{bottom:406.693333pt;}
.y7b{bottom:406.761333pt;}
.y165{bottom:406.886667pt;}
.y1f{bottom:407.493333pt;}
.y192{bottom:407.620000pt;}
.y1ce{bottom:415.560000pt;}
.ye9{bottom:418.201333pt;}
.y143{bottom:420.386667pt;}
.y129{bottom:421.489333pt;}
.yc4{bottom:421.922667pt;}
.y99{bottom:422.633333pt;}
.y7a{bottom:422.701333pt;}
.y164{bottom:422.826667pt;}
.y1e{bottom:423.433333pt;}
.y191{bottom:423.560000pt;}
.y45{bottom:427.374667pt;}
.y1cd{bottom:427.514667pt;}
.y10f{bottom:429.717333pt;}
.ye8{bottom:434.141333pt;}
.y142{bottom:436.326667pt;}
.yc3{bottom:437.796000pt;}
.y128{bottom:438.297333pt;}
.y98{bottom:438.573333pt;}
.y163{bottom:438.766667pt;}
.y1d{bottom:439.373333pt;}
.y1cc{bottom:439.470667pt;}
.y190{bottom:439.501333pt;}
.y79{bottom:441.770667pt;}
.y10e{bottom:442.868000pt;}
.y44{bottom:443.314667pt;}
.ye7{bottom:450.081333pt;}
.y1cb{bottom:451.425333pt;}
.y141{bottom:452.266667pt;}
.yc2{bottom:453.736000pt;}
.y127{bottom:454.237333pt;}
.y97{bottom:454.513333pt;}
.y1c{bottom:455.313333pt;}
.y18f{bottom:455.441333pt;}
.y10d{bottom:456.018667pt;}
.y78{bottom:457.710667pt;}
.y162{bottom:457.788000pt;}
.y43{bottom:459.256000pt;}
.y1ca{bottom:463.381333pt;}
.ye6{bottom:466.021333pt;}
.y10c{bottom:469.169333pt;}
.yc1{bottom:469.677333pt;}
.y140{bottom:469.713333pt;}
.y126{bottom:470.177333pt;}
.y96{bottom:470.453333pt;}
.y1b{bottom:471.253333pt;}
.y18e{bottom:471.381333pt;}
.y77{bottom:473.650667pt;}
.y161{bottom:473.929333pt;}
.y42{bottom:475.196000pt;}
.y1c9{bottom:475.336000pt;}
.ye5{bottom:481.961333pt;}
.y10b{bottom:482.320000pt;}
.yc0{bottom:485.617333pt;}
.y13f{bottom:485.653333pt;}
.y95{bottom:486.394667pt;}
.y1a{bottom:487.193333pt;}
.y1c8{bottom:487.290667pt;}
.y18d{bottom:487.321333pt;}
.y76{bottom:489.590667pt;}
.y160{bottom:489.869333pt;}
.y41{bottom:491.136000pt;}
.y10a{bottom:495.470667pt;}
.ye4{bottom:497.901333pt;}
.y1c7{bottom:499.246667pt;}
.ybf{bottom:501.557333pt;}
.y94{bottom:502.334667pt;}
.y19{bottom:503.134667pt;}
.y18c{bottom:503.138667pt;}
.y75{bottom:505.532000pt;}
.y15f{bottom:505.810667pt;}
.y40{bottom:507.076000pt;}
.y109{bottom:508.621333pt;}
.y1c6{bottom:511.201333pt;}
.ye3{bottom:513.842667pt;}
.y125{bottom:517.125333pt;}
.ybe{bottom:517.497333pt;}
.y93{bottom:518.274667pt;}
.y18{bottom:519.074667pt;}
.y18b{bottom:519.078667pt;}
.y74{bottom:521.472000pt;}
.y15e{bottom:521.750667pt;}
.y108{bottom:521.772000pt;}
.y3f{bottom:523.016000pt;}
.y1c5{bottom:523.156000pt;}
.y124{bottom:530.408000pt;}
.ye2{bottom:532.429333pt;}
.ybd{bottom:533.437333pt;}
.y92{bottom:534.214667pt;}
.y13e{bottom:534.300000pt;}
.y107{bottom:534.922667pt;}
.y17{bottom:535.014667pt;}
.y18a{bottom:535.020000pt;}
.y1c4{bottom:535.112000pt;}
.y15d{bottom:537.690667pt;}
.y3e{bottom:538.956000pt;}
.y73{bottom:540.965333pt;}
.ye1{bottom:541.541333pt;}
.y123{bottom:543.692000pt;}
.y1c3{bottom:547.066667pt;}
.y13d{bottom:547.584000pt;}
.y106{bottom:548.074667pt;}
.ybc{bottom:549.378667pt;}
.y189{bottom:550.960000pt;}
.y91{bottom:551.698667pt;}
.y15c{bottom:553.630667pt;}
.y3d{bottom:554.897333pt;}
.y72{bottom:556.905333pt;}
.y122{bottom:556.974667pt;}
.y1c2{bottom:559.022667pt;}
.y16{bottom:560.484000pt;}
.y13c{bottom:560.868000pt;}
.y105{bottom:561.225333pt;}
.ybb{bottom:565.252000pt;}
.y188{bottom:566.900000pt;}
.y90{bottom:567.640000pt;}
.y15b{bottom:569.570667pt;}
.y3c{bottom:570.837333pt;}
.y1c1{bottom:570.977333pt;}
.y71{bottom:572.845333pt;}
.y13b{bottom:574.150667pt;}
.y104{bottom:574.376000pt;}
.ye0{bottom:575.590667pt;}
.yba{bottom:581.192000pt;}
.y187{bottom:582.840000pt;}
.y1c0{bottom:582.932000pt;}
.y15a{bottom:585.510667pt;}
.y103{bottom:588.057333pt;}
.y70{bottom:588.786667pt;}
.y3b{bottom:590.832000pt;}
.ydf{bottom:591.530667pt;}
.y1bf{bottom:594.888000pt;}
.y15{bottom:596.653333pt;}
.yb9{bottom:597.132000pt;}
.y186{bottom:598.780000pt;}
.y102{bottom:601.208000pt;}
.y159{bottom:601.452000pt;}
.y3a{bottom:606.772000pt;}
.y1be{bottom:606.842667pt;}
.yde{bottom:607.470667pt;}
.y14{bottom:609.937333pt;}
.y6f{bottom:610.397333pt;}
.yb8{bottom:613.073333pt;}
.y185{bottom:614.721333pt;}
.y8f{bottom:616.389333pt;}
.y158{bottom:617.592000pt;}
.y1bd{bottom:618.797333pt;}
.y101{bottom:621.421333pt;}
.y39{bottom:622.712000pt;}
.ydd{bottom:623.410667pt;}
.y13{bottom:624.110667pt;}
.yb7{bottom:628.946667pt;}
.y8e{bottom:629.673333pt;}
.y184{bottom:630.661333pt;}
.y1bc{bottom:630.753333pt;}
.y157{bottom:633.533333pt;}
.y12{bottom:637.394667pt;}
.y38{bottom:638.653333pt;}
.y6e{bottom:638.914667pt;}
.ydc{bottom:639.352000pt;}
.y1bb{bottom:642.708000pt;}
.y8d{bottom:642.957333pt;}
.y100{bottom:644.576000pt;}
.yb6{bottom:644.886667pt;}
.y183{bottom:646.478667pt;}
.y156{bottom:649.473333pt;}
.y11{bottom:650.678667pt;}
.y37{bottom:654.593333pt;}
.y1ba{bottom:654.662667pt;}
.y6d{bottom:654.854667pt;}
.ydb{bottom:655.292000pt;}
.y8c{bottom:656.240000pt;}
.yff{bottom:660.516000pt;}
.yb5{bottom:660.828000pt;}
.y182{bottom:662.418667pt;}
.y10{bottom:663.961333pt;}
.y155{bottom:665.413333pt;}
.y1b9{bottom:666.618667pt;}
.y36{bottom:670.533333pt;}
.y6c{bottom:670.794667pt;}
.yda{bottom:671.232000pt;}
.yfe{bottom:676.456000pt;}
.yb4{bottom:676.768000pt;}
.yf{bottom:677.245333pt;}
.y181{bottom:678.358667pt;}
.y1b8{bottom:678.573333pt;}
.y35{bottom:686.473333pt;}
.y6b{bottom:687.160000pt;}
.yd9{bottom:687.172000pt;}
.ye{bottom:690.529333pt;}
.y154{bottom:692.178667pt;}
.yfd{bottom:692.396000pt;}
.yb3{bottom:692.708000pt;}
.y180{bottom:694.298667pt;}
.y34{bottom:702.413333pt;}
.y1b7{bottom:702.484000pt;}
.y6a{bottom:703.100000pt;}
.yd8{bottom:703.216000pt;}
.yd{bottom:703.812000pt;}
.yfc{bottom:708.337333pt;}
.yb2{bottom:708.648000pt;}
.y17f{bottom:710.240000pt;}
.y1b6{bottom:714.438667pt;}
.yc{bottom:717.096000pt;}
.y33{bottom:718.354667pt;}
.y69{bottom:719.040000pt;}
.yd7{bottom:719.156000pt;}
.y153{bottom:721.728000pt;}
.yfb{bottom:724.277333pt;}
.yb1{bottom:724.588000pt;}
.y17e{bottom:726.180000pt;}
.y1b5{bottom:726.394667pt;}
.yb{bottom:730.380000pt;}
.y32{bottom:734.294667pt;}
.y68{bottom:734.980000pt;}
.yd6{bottom:735.096000pt;}
.y152{bottom:737.668000pt;}
.y1b4{bottom:738.349333pt;}
.yfa{bottom:740.217333pt;}
.yb0{bottom:740.462667pt;}
.y17d{bottom:741.997333pt;}
.ya{bottom:743.662667pt;}
.y1b3{bottom:750.304000pt;}
.y67{bottom:750.920000pt;}
.yd5{bottom:751.036000pt;}
.y151{bottom:753.608000pt;}
.y31{bottom:754.289333pt;}
.yf9{bottom:756.157333pt;}
.yaf{bottom:756.402667pt;}
.y9{bottom:756.946667pt;}
.y17c{bottom:757.937333pt;}
.y1b2{bottom:762.260000pt;}
.y66{bottom:766.860000pt;}
.y8{bottom:770.229333pt;}
.yd4{bottom:771.522667pt;}
.yf8{bottom:772.097333pt;}
.yae{bottom:772.342667pt;}
.y17b{bottom:773.877333pt;}
.y1b1{bottom:774.214667pt;}
.y1b0{bottom:786.170667pt;}
.yad{bottom:788.282667pt;}
.y65{bottom:789.533333pt;}
.y17a{bottom:789.817333pt;}
.yd3{bottom:792.266667pt;}
.y1af{bottom:798.125333pt;}
.y150{bottom:798.777333pt;}
.yac{bottom:804.157333pt;}
.y179{bottom:805.758667pt;}
.y1ae{bottom:810.080000pt;}
.y7{bottom:816.037333pt;}
.yf7{bottom:816.884000pt;}
.y64{bottom:818.050667pt;}
.yab{bottom:820.097333pt;}
.y178{bottom:821.698667pt;}
.y1ad{bottom:822.036000pt;}
.yf6{bottom:830.168000pt;}
.y6{bottom:832.474667pt;}
.y63{bottom:833.990667pt;}
.y177{bottom:837.638667pt;}
.y1ac{bottom:845.945333pt;}
.y5{bottom:848.913333pt;}
.y62{bottom:849.930667pt;}
.y176{bottom:853.578667pt;}
.y1ab{bottom:857.901333pt;}
.yaa{bottom:864.025333pt;}
.y4{bottom:865.352000pt;}
.y61{bottom:865.870667pt;}
.y175{bottom:869.518667pt;}
.y1aa{bottom:869.856000pt;}
.yd2{bottom:881.810667pt;}
.y60{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y174{bottom:889.521333pt;}
.y1a9{bottom:893.766667pt;}
.yd1{bottom:897.750667pt;}
.y5f{bottom:897.752000pt;}
.y1a8{bottom:905.721333pt;}
.y5e{bottom:913.692000pt;}
.y1a7{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y5d{bottom:929.632000pt;}
.y1a6{bottom:941.586667pt;}
.y5c{bottom:945.572000pt;}
.y1a5{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y5b{bottom:961.512000pt;}
.y1a4{bottom:965.497333pt;}
.yd0{bottom:977.452000pt;}
.y5a{bottom:977.453333pt;}
.h14{height:29.032418pt;}
.hf{height:29.244954pt;}
.h11{height:29.452954pt;}
.h12{height:29.458287pt;}
.he{height:29.499997pt;}
.ha{height:32.900710pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.hb{height:33.713664pt;}
.h7{height:35.865600pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h9{height:36.874903pt;}
.h13{height:39.106287pt;}
.h8{height:39.850400pt;}
.h2{height:40.211857pt;}
.h10{height:65.133355pt;}
.hd{height:73.004100pt;}
.hc{height:75.797067pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.285333pt;}
.x1{left:68.236000pt;}
.x22{left:70.598667pt;}
.x8{left:78.568000pt;}
.x18{left:83.045333pt;}
.x19{left:85.165333pt;}
.x1b{left:87.228000pt;}
.x1a{left:89.884000pt;}
.xb{left:91.981333pt;}
.x2{left:93.118667pt;}
.x17{left:94.426667pt;}
.x11{left:101.944000pt;}
.x12{left:116.556000pt;}
.x13{left:140.489333pt;}
.x23{left:160.666667pt;}
.x20{left:174.729333pt;}
.xa{left:180.825333pt;}
.x1f{left:184.997333pt;}
.x21{left:195.464000pt;}
.x24{left:255.400000pt;}
.x7{left:348.230667pt;}
.x5{left:349.992000pt;}
.x3{left:353.908000pt;}
.x6{left:368.926667pt;}
.x4{left:386.089333pt;}
.x10{left:415.970667pt;}
.x1d{left:418.737333pt;}
.x25{left:421.284000pt;}
.xf{left:429.253333pt;}
.x26{left:440.316000pt;}
.xc{left:442.666667pt;}
.x1c{left:446.245333pt;}
.xd{left:452.629333pt;}
.x27{left:459.788000pt;}
.xe{left:467.241333pt;}
.x28{left:470.414667pt;}
.x2a{left:472.493333pt;}
.x1e{left:491.506667pt;}
.x14{left:499.624000pt;}
.x15{left:549.000000pt;}
.x29{left:565.973333pt;}
.x16{left:580.768000pt;}
.x2b{left:604.208000pt;}
}




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