
    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_32444522670d707d7f478377.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3efb12876b3ec95f15327a51.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8032d338d0453db05780d224.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2405cee7d23381e4744c14f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_94e652758a422159010f1fd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_11e65cb40fb7e2b4e1f104d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921875;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_1f46b6ee5442107438c9eb0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_14ea49ff096a6c2e24c2d573.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015000;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_e663f7d2de82f0d5fc91988e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765000;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_fa43427a1dccda785d1dab89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_1c9f854c93f778cb553925fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.833000;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_6b0a6abe817c17320acd4fe0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1ad415849169675f7defee01.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.635000;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_082ad84327d61fb2211a33f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.548000;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_ecd32644dbc03713103b70cd.woff2')format("woff");}.fff{font-family:fff;line-height:0.686000;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_ac1ba13c1976d32158d145c2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;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_555c84179339673e9361c966.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8c728308f065d3028e13a39f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.899000;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_e4c95e89a4721bb549f20d3f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.905762;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:ff14;src:url('chunks/assets/font_bce9a755c8762fb55465752c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.918945;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:ff15;src:url('chunks/assets/font_6f1d650ea268877192b9dcba.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.905762;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:ff16;src:url('chunks/assets/font_663edbc02eebf74107b42ce5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.918945;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:ff17;src:url('chunks/assets/font_1592aabbdb7ca470db98dbbd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.905762;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_61bad8202fb3d5541ec8a75a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.234000;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;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2da7df7ed6faf76a7c1ee84e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.749000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.872000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:24.300432px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.840017px;}
.lsa{letter-spacing:2.449834px;}
.lsb{letter-spacing:2.955570px;}
.lsc{letter-spacing:2.984725px;}
.lsd{letter-spacing:2.987675px;}
.ls11{letter-spacing:2.988017px;}
.ls1{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls14{letter-spacing:2.992766px;}
.ls4{letter-spacing:8.597783px;}
.ls8{letter-spacing:13.278538px;}
.ls5{letter-spacing:16.605264px;}
.ls6{letter-spacing:19.590648px;}
.ls7{letter-spacing:19.592903px;}
.ls12{letter-spacing:20.204160px;}
.lse{letter-spacing:20.682360px;}
.lsf{letter-spacing:25.285080px;}
.ls10{letter-spacing:29.438435px;}
.ls0{letter-spacing:35.869409px;}
.ls13{letter-spacing:54.659867px;}
.ls9{letter-spacing:264.533431px;}
.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;}
}
.ws117{word-spacing:-54.659867px;}
.ws62{word-spacing:-38.937826px;}
.ws66{word-spacing:-25.658866px;}
.ws71{word-spacing:-25.652866px;}
.ws68{word-spacing:-22.557404px;}
.ws48{word-spacing:-20.126847px;}
.ws8d{word-spacing:-14.943900px;}
.ws69{word-spacing:-13.449600px;}
.ws12{word-spacing:-11.955135px;}
.ws47{word-spacing:-8.818737px;}
.ws1d{word-spacing:-1.136101px;}
.wsf4{word-spacing:-1.076101px;}
.ws54{word-spacing:-1.016101px;}
.ws86{word-spacing:-0.896701px;}
.ws39{word-spacing:-0.777301px;}
.ws14a{word-spacing:-0.675466px;}
.ws14b{word-spacing:-0.669739px;}
.ws114{word-spacing:-0.657301px;}
.ws83{word-spacing:-0.597901px;}
.wsdc{word-spacing:-0.418501px;}
.ws36{word-spacing:-0.358501px;}
.wscf{word-spacing:-0.299101px;}
.ws16{word-spacing:-0.239101px;}
.ws141{word-spacing:-0.209535px;}
.ws142{word-spacing:-0.191539px;}
.ws143{word-spacing:-0.190939px;}
.ws17{word-spacing:-0.179101px;}
.ws34{word-spacing:-0.119701px;}
.ws67{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws44{word-spacing:0.000000px;}
.ws11f{word-spacing:0.059699px;}
.wsd9{word-spacing:0.299099px;}
.wse3{word-spacing:0.418499px;}
.ws31{word-spacing:0.537899px;}
.ws84{word-spacing:0.597899px;}
.ws85{word-spacing:0.657299px;}
.ws13{word-spacing:0.717299px;}
.ws155{word-spacing:0.764860px;}
.ws154{word-spacing:0.765461px;}
.ws19{word-spacing:0.836699px;}
.ws128{word-spacing:0.904325px;}
.ws129{word-spacing:0.908260px;}
.ws14{word-spacing:1.016099px;}
.ws74{word-spacing:1.075499px;}
.ws91{word-spacing:1.076099px;}
.ws10c{word-spacing:1.135499px;}
.ws147{word-spacing:1.140345px;}
.ws148{word-spacing:1.147660px;}
.ws3d{word-spacing:1.195499px;}
.wsfb{word-spacing:1.434299px;}
.ws13a{word-spacing:1.434460px;}
.ws2d{word-spacing:1.434899px;}
.wsf3{word-spacing:1.554299px;}
.wsf1{word-spacing:1.613699px;}
.ws121{word-spacing:1.733699px;}
.wsad{word-spacing:1.785610px;}
.wsae{word-spacing:1.793099px;}
.wse4{word-spacing:1.972499px;}
.ws10{word-spacing:1.990200px;}
.ws1c{word-spacing:2.032499px;}
.wsa1{word-spacing:2.091899px;}
.ws145{word-spacing:2.104060px;}
.wsa0{word-spacing:2.110909px;}
.ws146{word-spacing:2.152060px;}
.wse1{word-spacing:2.211899px;}
.wsec{word-spacing:2.271454px;}
.wseb{word-spacing:2.331248px;}
.ws2e{word-spacing:2.331299px;}
.ws158{word-spacing:2.448676px;}
.ws159{word-spacing:2.486860px;}
.wsd8{word-spacing:2.570099px;}
.ws1b{word-spacing:2.630099px;}
.ws15a{word-spacing:2.658256px;}
.ws15c{word-spacing:2.677660px;}
.ws15b{word-spacing:2.678260px;}
.ws167{word-spacing:2.917060px;}
.ws119{word-spacing:2.928899px;}
.ws10a{word-spacing:2.988899px;}
.ws10e{word-spacing:3.108299px;}
.ws140{word-spacing:3.108460px;}
.wsd3{word-spacing:3.167699px;}
.ws116{word-spacing:3.168299px;}
.wsac{word-spacing:3.227699px;}
.wsab{word-spacing:3.241434px;}
.ws15{word-spacing:3.467099px;}
.ws37{word-spacing:3.526499px;}
.ws61{word-spacing:3.586499px;}
.ws168{word-spacing:3.634060px;}
.ws169{word-spacing:3.634659px;}
.ws99{word-spacing:3.705899px;}
.ws6c{word-spacing:3.765899px;}
.wsd4{word-spacing:3.885299px;}
.wsb6{word-spacing:4.004699px;}
.ws92{word-spacing:4.124699px;}
.wsfc{word-spacing:4.244099px;}
.ws7e{word-spacing:4.303499px;}
.ws7f{word-spacing:4.304098px;}
.ws80{word-spacing:4.363499px;}
.ws89{word-spacing:4.722299px;}
.ws126{word-spacing:4.777980px;}
.ws166{word-spacing:4.778141px;}
.ws16d{word-spacing:4.778892px;}
.ws12a{word-spacing:4.778909px;}
.ws133{word-spacing:4.779090px;}
.ws14d{word-spacing:4.779341px;}
.ws12d{word-spacing:4.780139px;}
.ws144{word-spacing:4.780485px;}
.ws130{word-spacing:4.781771px;}
.ws127{word-spacing:4.781859px;}
.ws150{word-spacing:4.782459px;}
.ws137{word-spacing:4.829859px;}
.ws1e{word-spacing:4.841699px;}
.ws13d{word-spacing:4.877859px;}
.ws108{word-spacing:4.901698px;}
.ws13e{word-spacing:4.925259px;}
.ws10d{word-spacing:5.081099px;}
.ws12b{word-spacing:5.125727px;}
.ws115{word-spacing:5.140498px;}
.ws12c{word-spacing:5.164659px;}
.wse{word-spacing:5.164800px;}
.wsdb{word-spacing:5.200499px;}
.ws113{word-spacing:5.259898px;}
.ws112{word-spacing:5.260268px;}
.ws41{word-spacing:5.260498px;}
.ws13f{word-spacing:5.308059px;}
.wsbb{word-spacing:5.375175px;}
.wsc4{word-spacing:5.375578px;}
.wsc2{word-spacing:5.376154px;}
.wsbc{word-spacing:5.376710px;}
.wsbd{word-spacing:5.378909px;}
.wsbe{word-spacing:5.379379px;}
.wsb9{word-spacing:5.379600px;}
.wsc6{word-spacing:5.380867px;}
.wsc0{word-spacing:5.381578px;}
.ws131{word-spacing:5.456685px;}
.ws132{word-spacing:5.499459px;}
.ws1f{word-spacing:5.618698px;}
.ws9e{word-spacing:5.678699px;}
.wsf2{word-spacing:5.738698px;}
.ws2b{word-spacing:5.858098px;}
.ws11d{word-spacing:5.913409px;}
.ws50{word-spacing:5.918098px;}
.ws107{word-spacing:5.927091px;}
.ws11c{word-spacing:5.929659px;}
.ws8c{word-spacing:5.941582px;}
.ws72{word-spacing:5.962009px;}
.ws8b{word-spacing:5.962791px;}
.wsf7{word-spacing:5.976850px;}
.ws2{word-spacing:5.977498px;}
.wse5{word-spacing:5.977594px;}
.ws9f{word-spacing:5.977926px;}
.ws8e{word-spacing:5.978099px;}
.wsa3{word-spacing:5.982984px;}
.ws9c{word-spacing:6.037499px;}
.ws14e{word-spacing:6.073059px;}
.ws14f{word-spacing:6.121059px;}
.wsb1{word-spacing:6.156899px;}
.ws6d{word-spacing:6.216899px;}
.ws87{word-spacing:6.276299px;}
.ws1a{word-spacing:6.336298px;}
.ws90{word-spacing:6.455698px;}
.ws3a{word-spacing:6.515698px;}
.wse0{word-spacing:6.575098px;}
.ws1{word-spacing:6.575259px;}
.ws109{word-spacing:6.754499px;}
.ws123{word-spacing:6.805242px;}
.ws124{word-spacing:6.813898px;}
.wsfe{word-spacing:6.814498px;}
.wsa2{word-spacing:6.873899px;}
.wsf0{word-spacing:6.874498px;}
.ws40{word-spacing:6.933898px;}
.ws9d{word-spacing:7.113298px;}
.ws149{word-spacing:7.220859px;}
.ws96{word-spacing:7.232698px;}
.ws11b{word-spacing:7.292699px;}
.ws35{word-spacing:7.352098px;}
.ws5d{word-spacing:7.352698px;}
.ws3c{word-spacing:7.412098px;}
.wsb7{word-spacing:7.471535px;}
.ws43{word-spacing:7.472098px;}
.ws125{word-spacing:7.555658px;}
.ws165{word-spacing:7.603658px;}
.ws15f{word-spacing:7.608527px;}
.wsc1{word-spacing:7.639401px;}
.ws160{word-spacing:7.651058px;}
.ws79{word-spacing:7.651499px;}
.ws161{word-spacing:7.651658px;}
.wsce{word-spacing:7.710898px;}
.wsb{word-spacing:7.747200px;}
.ws106{word-spacing:7.770899px;}
.ws13c{word-spacing:7.794458px;}
.ws13b{word-spacing:7.795058px;}
.ws105{word-spacing:7.830298px;}
.wsb4{word-spacing:7.890299px;}
.wsef{word-spacing:7.950298px;}
.ws151{word-spacing:7.957396px;}
.ws64{word-spacing:7.969334px;}
.ws6f{word-spacing:7.975334px;}
.ws152{word-spacing:7.985858px;}
.ws4a{word-spacing:8.009698px;}
.ws59{word-spacing:8.069698px;}
.ws38{word-spacing:8.129699px;}
.ws28{word-spacing:8.189098px;}
.ws20{word-spacing:8.249099px;}
.ws56{word-spacing:8.308498px;}
.ws15d{word-spacing:8.439706px;}
.ws12e{word-spacing:8.442378px;}
.ws12f{word-spacing:8.464058px;}
.wsd5{word-spacing:8.547898px;}
.wsda{word-spacing:8.607298px;}
.ws98{word-spacing:8.607899px;}
.wsb2{word-spacing:8.619212px;}
.ws14c{word-spacing:8.655458px;}
.ws25{word-spacing:8.667298px;}
.ws88{word-spacing:8.727299px;}
.wse8{word-spacing:8.787298px;}
.ws10f{word-spacing:8.846699px;}
.ws3e{word-spacing:9.026098px;}
.ws27{word-spacing:9.145498px;}
.ws8{word-spacing:9.145800px;}
.ws93{word-spacing:9.205498px;}
.ws5{word-spacing:9.253199px;}
.wsd{word-spacing:9.414599px;}
.ws136{word-spacing:9.420457px;}
.ws135{word-spacing:9.468457px;}
.ws101{word-spacing:9.623698px;}
.ws4f{word-spacing:9.863098px;}
.ws5c{word-spacing:9.900824px;}
.ws52{word-spacing:9.922424px;}
.ws53{word-spacing:9.923024px;}
.ws95{word-spacing:10.042498px;}
.ws4{word-spacing:10.060200px;}
.ws24{word-spacing:10.101898px;}
.ws5b{word-spacing:10.341298px;}
.wsff{word-spacing:10.580698px;}
.ws100{word-spacing:10.640098px;}
.ws21{word-spacing:10.759498px;}
.wsc{word-spacing:10.759799px;}
.ws153{word-spacing:10.807657px;}
.ws11a{word-spacing:10.878898px;}
.ws157{word-spacing:10.951057px;}
.ws156{word-spacing:10.998457px;}
.ws4b{word-spacing:11.058298px;}
.ws111{word-spacing:11.177698px;}
.ws75{word-spacing:11.237698px;}
.ws55{word-spacing:11.357098px;}
.ws42{word-spacing:11.417098px;}
.ws26{word-spacing:11.477098px;}
.ws49{word-spacing:11.715898px;}
.wsf{word-spacing:11.781599px;}
.wsa9{word-spacing:12.074698px;}
.wsa8{word-spacing:12.096078px;}
.ws134{word-spacing:12.098857px;}
.wsd6{word-spacing:12.254098px;}
.wsa4{word-spacing:12.651080px;}
.wsa5{word-spacing:12.672298px;}
.ws15e{word-spacing:12.672456px;}
.wsd1{word-spacing:12.732115px;}
.wsd2{word-spacing:12.732298px;}
.ws3f{word-spacing:12.851698px;}
.ws4c{word-spacing:12.971098px;}
.ws81{word-spacing:13.568698px;}
.ws82{word-spacing:13.569298px;}
.wsa{word-spacing:13.611000px;}
.ws8f{word-spacing:13.628698px;}
.ws138{word-spacing:13.867656px;}
.ws139{word-spacing:13.868256px;}
.ws4e{word-spacing:13.927498px;}
.ws7b{word-spacing:14.286298px;}
.ws0{word-spacing:14.346157px;}
.ws7c{word-spacing:14.346298px;}
.wsed{word-spacing:14.405698px;}
.wsd7{word-spacing:14.406298px;}
.wsea{word-spacing:14.465698px;}
.wse9{word-spacing:14.504683px;}
.ws2c{word-spacing:14.525698px;}
.ws16c{word-spacing:14.728656px;}
.ws10b{word-spacing:14.824498px;}
.ws162{word-spacing:14.872055px;}
.wsdf{word-spacing:14.883898px;}
.wsf6{word-spacing:14.884498px;}
.wsb5{word-spacing:14.943898px;}
.ws7d{word-spacing:15.003298px;}
.ws77{word-spacing:15.003898px;}
.ws76{word-spacing:15.123298px;}
.wsfa{word-spacing:15.242698px;}
.wsf8{word-spacing:15.242768px;}
.wsf9{word-spacing:15.302580px;}
.ws29{word-spacing:15.541498px;}
.wsfd{word-spacing:15.601498px;}
.ws122{word-spacing:15.661498px;}
.ws16a{word-spacing:15.685055px;}
.ws16b{word-spacing:15.685655px;}
.ws120{word-spacing:15.720898px;}
.ws163{word-spacing:15.731145px;}
.ws164{word-spacing:15.733055px;}
.wsa6{word-spacing:15.822042px;}
.wsa7{word-spacing:15.840898px;}
.ws102{word-spacing:16.019698px;}
.ws5f{word-spacing:16.318498px;}
.wsaa{word-spacing:16.319098px;}
.ws60{word-spacing:16.378498px;}
.wsb8{word-spacing:16.439357px;}
.wsba{word-spacing:16.440912px;}
.ws51{word-spacing:16.497898px;}
.ws2f{word-spacing:16.557898px;}
.wsb3{word-spacing:16.677298px;}
.ws9a{word-spacing:16.737298px;}
.ws57{word-spacing:17.096098px;}
.ws58{word-spacing:17.155498px;}
.wsdd{word-spacing:17.334898px;}
.wsee{word-spacing:17.394298px;}
.ws7{word-spacing:17.430599px;}
.wsaf{word-spacing:17.501204px;}
.wsb0{word-spacing:17.514297px;}
.ws4d{word-spacing:17.633697px;}
.wsd0{word-spacing:17.693698px;}
.ws104{word-spacing:17.753098px;}
.wscc{word-spacing:17.932215px;}
.wsbf{word-spacing:17.932485px;}
.ws3b{word-spacing:17.932498px;}
.ws11{word-spacing:17.933098px;}
.ws11e{word-spacing:18.111897px;}
.ws23{word-spacing:18.231297px;}
.ws30{word-spacing:18.291298px;}
.ws18{word-spacing:18.590097px;}
.ws22{word-spacing:18.650098px;}
.wsc5{word-spacing:18.762040px;}
.ws9{word-spacing:18.775799px;}
.ws2a{word-spacing:18.888898px;}
.wsf5{word-spacing:19.307698px;}
.ws9b{word-spacing:19.427097px;}
.ws78{word-spacing:19.606498px;}
.ws103{word-spacing:20.144698px;}
.wsde{word-spacing:20.682297px;}
.wsc7{word-spacing:20.713772px;}
.ws94{word-spacing:20.801697px;}
.ws97{word-spacing:20.861698px;}
.ws110{word-spacing:20.865092px;}
.ws33{word-spacing:21.518697px;}
.ws32{word-spacing:21.519297px;}
.wse2{word-spacing:21.997497px;}
.ws7a{word-spacing:22.057498px;}
.ws8a{word-spacing:22.116897px;}
.ws118{word-spacing:22.535697px;}
.ws6{word-spacing:23.402399px;}
.ws5e{word-spacing:24.268497px;}
.ws70{word-spacing:24.580184px;}
.ws65{word-spacing:24.581204px;}
.ws6a{word-spacing:24.586184px;}
.ws5a{word-spacing:31.800897px;}
.ws73{word-spacing:36.403496px;}
.ws63{word-spacing:39.526184px;}
.ws6e{word-spacing:39.527204px;}
.wse7{word-spacing:75.109954px;}
.wscd{word-spacing:98.632215px;}
.wsc3{word-spacing:98.632485px;}
.ws6b{word-spacing:124.935134px;}
.ws45{word-spacing:162.932943px;}
.wscb{word-spacing:179.326215px;}
.wsc8{word-spacing:179.326485px;}
.wsc9{word-spacing:260.026485px;}
.wsca{word-spacing:340.720485px;}
.ws46{word-spacing:452.762741px;}
.wse6{word-spacing:591.724548px;}
._21{margin-left:-54.885535px;}
._23{margin-left:-22.955398px;}
._22{margin-left:-21.685247px;}
._1{margin-left:-15.923998px;}
._2{margin-left:-10.616398px;}
._5{margin-left:-8.482198px;}
._f{margin-left:-7.239000px;}
._c{margin-left:-5.917798px;}
._a{margin-left:-4.184400px;}
._3{margin-left:-2.869199px;}
._0{margin-left:-1.434600px;}
._12{width:1.052400px;}
._8{width:2.706019px;}
._11{width:3.744293px;}
._9{width:5.490464px;}
._24{width:8.310930px;}
._13{width:15.715197px;}
._1e{width:16.864896px;}
._1b{width:18.567942px;}
._10{width:19.653599px;}
._e{width:21.680999px;}
._16{width:23.314199px;}
._19{width:25.159196px;}
._1d{width:26.181598px;}
._18{width:29.887798px;}
._15{width:31.502398px;}
._14{width:32.577598px;}
._1a{width:35.865597px;}
._20{width:41.465003px;}
._1c{width:43.149654px;}
._26{width:47.223760px;}
._27{width:48.663220px;}
._4{width:70.626468px;}
._7{width:74.004732px;}
._1f{width:80.210949px;}
._6{width:86.143237px;}
._d{width:101.493840px;}
._25{width:105.739848px;}
._b{width:125.894946px;}
._17{width:475.463940px;}
.fcd{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(7,96,143);}
.fc2{color:rgb(23,111,192);}
.fc3{color:rgb(38,107,189);}
.fc4{color:rgb(128,0,0);}
.fce{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fc5{color:rgb(255,69,0);}
.fc6{color:rgb(0,128,0);}
.fca{color:rgb(255,69,0);}
.fc7{color:rgb(114,86,187);}
.fcb{color:rgb(114,86,187);}
.fc8{color:rgb(140,198,62);}
.fcc{color:rgb(140,198,62);}
.fs16{font-size:1.893480px;}
.fs15{font-size:3.029587px;}
.fs14{font-size:3.408264px;}
.fs10{font-size:10.281600px;}
.fs11{font-size:12.852000px;}
.fs12{font-size:16.039200px;}
.fs13{font-size:22.454880px;}
.fsc{font-size:26.482694px;}
.fs6{font-size:35.865600px;}
.fsb{font-size:36.963470px;}
.fsa{font-size:37.385280px;}
.fs5{font-size:41.842800px;}
.fs9{font-size:42.000000px;}
.fs4{font-size:47.820540px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fse{font-size:55.688271px;}
.fsd{font-size:55.688858px;}
.fsf{font-size:55.701910px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:143.461740px;}
.y0{bottom:0.000000px;}
.y10c{bottom:1.652972px;}
.y105{bottom:1.778447px;}
.y104{bottom:1.827779px;}
.y68{bottom:4.562416px;}
.y151{bottom:5.712963px;}
.y57{bottom:9.133951px;}
.y1a9{bottom:9.356631px;}
.y150{bottom:12.416847px;}
.y67{bottom:13.803476px;}
.y12d{bottom:16.155568px;}
.y148{bottom:19.381118px;}
.y1a8{bottom:19.497306px;}
.y6a{bottom:20.379339px;}
.y147{bottom:25.081237px;}
.y65{bottom:26.994976px;}
.y1b5{bottom:28.195479px;}
.y69{bottom:28.655350px;}
.y146{bottom:30.781356px;}
.y52{bottom:32.862000px;}
.y145{bottom:36.481475px;}
.y1b4{bottom:37.446360px;}
.y6e{bottom:39.989165px;}
.y144{bottom:42.181594px;}
.y143{bottom:47.881713px;}
.y6d{bottom:51.710852px;}
.y142{bottom:53.581832px;}
.y50{bottom:54.000000px;}
.y1b3{bottom:56.532686px;}
.y141{bottom:59.281951px;}
.y5e{bottom:63.635458px;}
.y140{bottom:64.982070px;}
.y152{bottom:66.424927px;}
.y13f{bottom:70.682189px;}
.y61{bottom:71.960797px;}
.y155{bottom:72.875609px;}
.y1b2{bottom:75.618964px;}
.y64{bottom:76.254029px;}
.y13e{bottom:76.382308px;}
.y60{bottom:80.236599px;}
.y13d{bottom:82.082427px;}
.y63{bottom:87.154434px;}
.y13c{bottom:87.782547px;}
.y51{bottom:90.000000px;}
.y13b{bottom:93.482666px;}
.y1b1{bottom:94.705242px;}
.y13a{bottom:99.182785px;}
.y62{bottom:99.211187px;}
.y1b8{bottom:102.256441px;}
.y139{bottom:104.882904px;}
.y5f{bottom:107.724646px;}
.y138{bottom:110.583023px;}
.y1b0{bottom:113.791521px;}
.y153{bottom:116.103675px;}
.y137{bottom:116.283142px;}
.y66{bottom:119.535798px;}
.y136{bottom:121.983261px;}
.y15c{bottom:125.352363px;}
.y135{bottom:127.683380px;}
.y1a6{bottom:129.598500px;}
.y30{bottom:129.600000px;}
.y15b{bottom:131.235493px;}
.y5d{bottom:131.846979px;}
.y59{bottom:132.306662px;}
.y1af{bottom:132.877799px;}
.y1b6{bottom:133.169869px;}
.y134{bottom:133.383499px;}
.y4f{bottom:133.818000px;}
.y14e{bottom:133.958607px;}
.yf9{bottom:136.363500px;}
.y15a{bottom:137.118620px;}
.y14d{bottom:138.672678px;}
.y133{bottom:139.083618px;}
.y58{bottom:140.582672px;}
.y159{bottom:143.001750px;}
.y5c{bottom:143.085409px;}
.y14c{bottom:143.386753px;}
.y132{bottom:144.783737px;}
.y2f{bottom:147.532500px;}
.y14b{bottom:148.100825px;}
.y184{bottom:148.777500px;}
.y158{bottom:148.884876px;}
.y131{bottom:150.483856px;}
.yf8{bottom:151.306500px;}
.y1ae{bottom:151.964078px;}
.y14a{bottom:152.814900px;}
.y1b9{bottom:152.915551px;}
.y157{bottom:154.768007px;}
.y5a{bottom:155.416321px;}
.y21f{bottom:156.036000px;}
.y130{bottom:156.183975px;}
.y149{bottom:157.528972px;}
.y4e{bottom:160.341000px;}
.y156{bottom:160.651133px;}
.y12f{bottom:161.884094px;}
.y5b{bottom:164.320248px;}
.y2e{bottom:165.465000px;}
.y12e{bottom:165.646819px;}
.y154{bottom:165.782426px;}
.y12b{bottom:166.020000px;}
.yf7{bottom:166.438500px;}
.y183{bottom:166.710000px;}
.y21e{bottom:169.485000px;}
.y1ad{bottom:171.050356px;}
.y4d{bottom:178.275000px;}
.y6c{bottom:178.984105px;}
.y55{bottom:179.918737px;}
.y56{bottom:179.946724px;}
.yf6{bottom:181.383000px;}
.y21d{bottom:182.934000px;}
.y2d{bottom:183.397500px;}
.y12a{bottom:183.952500px;}
.y182{bottom:184.642500px;}
.y1a5{bottom:187.579500px;}
.y1ac{bottom:190.136634px;}
.y6b{bottom:190.667005px;}
.y54{bottom:191.601637px;}
.y4c{bottom:196.207500px;}
.yf5{bottom:196.327500px;}
.y21c{bottom:196.384500px;}
.yc5{bottom:201.330000px;}
.y2c{bottom:201.841500px;}
.y129{bottom:201.885000px;}
.y181{bottom:202.575000px;}
.y95{bottom:205.690500px;}
.y1ab{bottom:209.222913px;}
.y21b{bottom:209.833500px;}
.yf4{bottom:211.459500px;}
.y1a4{bottom:212.446500px;}
.y4b{bottom:214.140000px;}
.yc4{bottom:219.262500px;}
.y1db{bottom:219.264000px;}
.y2b{bottom:219.774000px;}
.y128{bottom:219.817500px;}
.y180{bottom:220.507500px;}
.y21a{bottom:223.284000px;}
.yf3{bottom:226.402500px;}
.y1aa{bottom:228.309191px;}
.y1a3{bottom:230.379000px;}
.y91{bottom:231.816000px;}
.y4a{bottom:232.072500px;}
.yc3{bottom:236.698500px;}
.y219{bottom:236.733000px;}
.y1da{bottom:237.196500px;}
.y2a{bottom:237.706500px;}
.y127{bottom:237.751500px;}
.y1b7{bottom:238.144400px;}
.y17f{bottom:238.440000px;}
.yf2{bottom:241.347000px;}
.y93{bottom:245.929500px;}
.y1a2{bottom:248.311500px;}
.y49{bottom:250.005000px;}
.y218{bottom:250.182000px;}
.yc2{bottom:254.632500px;}
.y1d9{bottom:255.129000px;}
.y94{bottom:255.195000px;}
.y29{bottom:255.639000px;}
.y126{bottom:255.684000px;}
.yf1{bottom:256.291500px;}
.y92{bottom:256.777500px;}
.y17e{bottom:257.617500px;}
.y217{bottom:263.632500px;}
.y1a1{bottom:265.719000px;}
.y48{bottom:267.937500px;}
.yf0{bottom:271.234500px;}
.yc1{bottom:272.565000px;}
.y28{bottom:273.573000px;}
.y125{bottom:274.171500px;}
.y17d{bottom:275.551500px;}
.y216{bottom:277.081500px;}
.y1d8{bottom:277.605000px;}
.y1a0{bottom:283.651500px;}
.y90{bottom:285.030000px;}
.y47{bottom:285.871500px;}
.yef{bottom:286.179000px;}
.y215{bottom:290.530500px;}
.y27{bottom:291.505500px;}
.y124{bottom:292.104000px;}
.y17c{bottom:293.484000px;}
.yc0{bottom:294.708000px;}
.yee{bottom:301.123500px;}
.y19f{bottom:301.584000px;}
.y8f{bottom:302.962500px;}
.y214{bottom:303.981000px;}
.y1d7{bottom:304.639500px;}
.y46{bottom:309.195000px;}
.y26{bottom:309.438000px;}
.y123{bottom:310.036500px;}
.y17b{bottom:311.416500px;}
.yed{bottom:316.066500px;}
.y213{bottom:317.430000px;}
.y19e{bottom:319.516500px;}
.ybf{bottom:319.746000px;}
.y8e{bottom:320.895000px;}
.y1d6{bottom:322.572000px;}
.y25{bottom:327.370500px;}
.y122{bottom:327.969000px;}
.y17a{bottom:329.349000px;}
.y212{bottom:330.880500px;}
.yec{bottom:331.011000px;}
.y19d{bottom:337.449000px;}
.ybe{bottom:337.678500px;}
.y45{bottom:338.182500px;}
.y1d5{bottom:340.504500px;}
.y211{bottom:344.329500px;}
.y24{bottom:345.303000px;}
.y121{bottom:345.903000px;}
.y8a{bottom:347.020500px;}
.y179{bottom:347.281500px;}
.yeb{bottom:352.983000px;}
.y19c{bottom:354.856500px;}
.ybd{bottom:355.612500px;}
.y44{bottom:356.116500px;}
.y210{bottom:357.778500px;}
.y1d4{bottom:358.437000px;}
.y8c{bottom:361.135500px;}
.y23{bottom:363.235500px;}
.y120{bottom:363.835500px;}
.y178{bottom:367.081500px;}
.y8d{bottom:370.399500px;}
.y20f{bottom:371.229000px;}
.y8b{bottom:371.983500px;}
.y19b{bottom:372.789000px;}
.ybc{bottom:373.047000px;}
.y43{bottom:374.049000px;}
.y1d3{bottom:376.369500px;}
.y22{bottom:381.169500px;}
.y11f{bottom:382.600500px;}
.y20e{bottom:384.678000px;}
.y177{bottom:385.014000px;}
.y19a{bottom:390.723000px;}
.ybb{bottom:390.981000px;}
.y1d2{bottom:394.138500px;}
.y42{bottom:395.211000px;}
.yea{bottom:395.949000px;}
.y20d{bottom:398.127000px;}
.y21{bottom:399.612000px;}
.y89{bottom:400.234500px;}
.y11e{bottom:400.533000px;}
.y176{bottom:402.948000px;}
.y199{bottom:408.655500px;}
.yba{bottom:408.913500px;}
.y20c{bottom:411.577500px;}
.y1d1{bottom:412.071000px;}
.y41{bottom:413.143500px;}
.ye9{bottom:413.881500px;}
.y20{bottom:417.544500px;}
.y88{bottom:418.168500px;}
.y11d{bottom:418.465500px;}
.y175{bottom:420.880500px;}
.y20b{bottom:425.026500px;}
.y198{bottom:426.588000px;}
.yb9{bottom:426.846000px;}
.y1d0{bottom:430.003500px;}
.y40{bottom:431.076000px;}
.ye8{bottom:431.815500px;}
.y1f{bottom:435.478500px;}
.y87{bottom:436.101000px;}
.y11c{bottom:436.398000px;}
.y20a{bottom:438.475500px;}
.y174{bottom:440.058000px;}
.y197{bottom:444.520500px;}
.yb8{bottom:444.778500px;}
.y1cf{bottom:447.937500px;}
.y3f{bottom:449.008500px;}
.ye7{bottom:449.748000px;}
.y209{bottom:451.926000px;}
.y1e{bottom:453.411000px;}
.y86{bottom:454.033500px;}
.y11b{bottom:454.885500px;}
.y173{bottom:457.990500px;}
.y208{bottom:465.375000px;}
.y1ce{bottom:465.870000px;}
.y196{bottom:466.635000px;}
.yb7{bottom:466.921500px;}
.y3e{bottom:466.942500px;}
.ye6{bottom:467.680500px;}
.y1d{bottom:471.343500px;}
.y85{bottom:471.966000px;}
.y11a{bottom:472.819500px;}
.y172{bottom:475.923000px;}
.y207{bottom:478.825500px;}
.y1cd{bottom:483.637500px;}
.y3d{bottom:484.875000px;}
.ye5{bottom:485.613000px;}
.y1c{bottom:489.276000px;}
.y84{bottom:489.550500px;}
.y119{bottom:490.752000px;}
.y195{bottom:491.502000px;}
.yb6{bottom:491.961000px;}
.y206{bottom:492.274500px;}
.y171{bottom:493.855500px;}
.y1cc{bottom:501.571500px;}
.y3c{bottom:502.807500px;}
.ye4{bottom:503.545500px;}
.y205{bottom:505.723500px;}
.y1b{bottom:507.208500px;}
.y83{bottom:507.483000px;}
.y118{bottom:508.684500px;}
.y194{bottom:509.434500px;}
.yb5{bottom:509.893500px;}
.y170{bottom:511.788000px;}
.y204{bottom:519.174000px;}
.y1cb{bottom:519.504000px;}
.y3b{bottom:520.740000px;}
.y1a{bottom:525.141000px;}
.y82{bottom:525.417000px;}
.ye3{bottom:525.948000px;}
.y193{bottom:527.367000px;}
.yb4{bottom:527.826000px;}
.y16f{bottom:529.722000px;}
.y203{bottom:532.623000px;}
.y117{bottom:533.266500px;}
.y1ca{bottom:537.436500px;}
.y3a{bottom:538.672500px;}
.y81{bottom:543.001500px;}
.y19{bottom:543.075000px;}
.yb3{bottom:545.758500px;}
.y202{bottom:546.072000px;}
.y16e{bottom:548.899500px;}
.y192{bottom:549.481500px;}
.ye2{bottom:552.535500px;}
.y1c9{bottom:555.369000px;}
.y39{bottom:556.605000px;}
.y201{bottom:559.522500px;}
.y80{bottom:560.934000px;}
.y18{bottom:561.007500px;}
.yb2{bottom:563.691000px;}
.y116{bottom:566.002500px;}
.y16d{bottom:566.832000px;}
.ye1{bottom:570.468000px;}
.y200{bottom:572.971500px;}
.y1c8{bottom:573.301500px;}
.y191{bottom:574.348500px;}
.y38{bottom:574.539000px;}
.y7f{bottom:578.866500px;}
.y17{bottom:578.940000px;}
.yb1{bottom:581.127000px;}
.y115{bottom:583.935000px;}
.y16c{bottom:584.764500px;}
.y1ff{bottom:586.422000px;}
.ye0{bottom:588.163500px;}
.y190{bottom:592.281000px;}
.y37{bottom:592.471500px;}
.y1c7{bottom:595.777500px;}
.y7e{bottom:596.799000px;}
.y16{bottom:596.872500px;}
.yb0{bottom:599.059500px;}
.y1fe{bottom:599.871000px;}
.y114{bottom:601.869000px;}
.y16b{bottom:603.942000px;}
.ydf{bottom:606.096000px;}
.y18f{bottom:610.213500px;}
.y36{bottom:610.404000px;}
.y1fd{bottom:613.320000px;}
.y7d{bottom:614.733000px;}
.yaf{bottom:616.993500px;}
.y113{bottom:619.801500px;}
.y16a{bottom:621.874500px;}
.y15{bottom:622.578000px;}
.y1c6{bottom:622.812000px;}
.yde{bottom:624.028500px;}
.y1fc{bottom:626.770500px;}
.y18e{bottom:628.147500px;}
.y35{bottom:628.336500px;}
.y7c{bottom:632.665500px;}
.yae{bottom:634.926000px;}
.y112{bottom:638.289000px;}
.y169{bottom:639.807000px;}
.y1fb{bottom:640.219500px;}
.y1c5{bottom:640.744500px;}
.ydd{bottom:641.722500px;}
.y18d{bottom:646.080000px;}
.y34{bottom:646.269000px;}
.y7b{bottom:650.598000px;}
.yad{bottom:652.858500px;}
.y1fa{bottom:653.668500px;}
.y111{bottom:656.221500px;}
.y168{bottom:657.739500px;}
.y1c4{bottom:658.678500px;}
.ydc{bottom:659.655000px;}
.y18c{bottom:664.012500px;}
.y33{bottom:664.315500px;}
.y1f9{bottom:667.119000px;}
.y7a{bottom:668.182500px;}
.y14{bottom:669.883500px;}
.y110{bottom:674.154000px;}
.yac{bottom:675.001500px;}
.y1c3{bottom:676.611000px;}
.ydb{bottom:677.349000px;}
.y167{bottom:677.539500px;}
.y1f8{bottom:680.568000px;}
.y32{bottom:682.249500px;}
.y13{bottom:684.826500px;}
.y79{bottom:686.115000px;}
.y18b{bottom:686.127000px;}
.y10f{bottom:692.086500px;}
.y1f7{bottom:694.018500px;}
.y1c2{bottom:694.378500px;}
.yda{bottom:695.283000px;}
.y166{bottom:695.473500px;}
.yab{bottom:697.144500px;}
.y12{bottom:699.771000px;}
.y31{bottom:703.773000px;}
.y78{bottom:704.049000px;}
.y1f6{bottom:707.467500px;}
.y18a{bottom:708.241500px;}
.y10e{bottom:710.020500px;}
.y1c1{bottom:712.312500px;}
.yd9{bottom:713.215500px;}
.y165{bottom:713.406000px;}
.y11{bottom:714.715500px;}
.y1f5{bottom:720.916500px;}
.y77{bottom:721.981500px;}
.yaa{bottom:722.182500px;}
.y10d{bottom:727.953000px;}
.y10{bottom:729.658500px;}
.y1c0{bottom:730.245000px;}
.yd8{bottom:730.909500px;}
.y164{bottom:731.338500px;}
.y189{bottom:733.108500px;}
.y1f4{bottom:734.367000px;}
.y76{bottom:739.914000px;}
.ya9{bottom:740.116500px;}
.y10b{bottom:743.205000px;}
.yf{bottom:744.603000px;}
.y10a{bottom:746.440500px;}
.y1f3{bottom:747.816000px;}
.y1bf{bottom:748.177500px;}
.yd7{bottom:748.842000px;}
.y163{bottom:749.271000px;}
.y188{bottom:751.041000px;}
.y75{bottom:757.846500px;}
.ya8{bottom:758.049000px;}
.ye{bottom:759.547500px;}
.y109{bottom:761.137500px;}
.y1f2{bottom:761.265000px;}
.y108{bottom:764.373000px;}
.y1be{bottom:766.110000px;}
.yd6{bottom:766.774500px;}
.y162{bottom:768.448500px;}
.y187{bottom:768.973500px;}
.yd{bottom:774.490500px;}
.y1f1{bottom:774.715500px;}
.y74{bottom:775.779000px;}
.ya7{bottom:775.981500px;}
.y107{bottom:779.070000px;}
.y106{bottom:782.305500px;}
.y1bd{bottom:784.042500px;}
.yd5{bottom:784.468500px;}
.y161{bottom:786.381000px;}
.y186{bottom:786.906000px;}
.y1f0{bottom:788.164500px;}
.yc{bottom:789.435000px;}
.y73{bottom:793.711500px;}
.ya6{bottom:793.914000px;}
.y103{bottom:797.002500px;}
.y102{bottom:800.238000px;}
.y1ef{bottom:801.613500px;}
.yd4{bottom:802.401000px;}
.y160{bottom:804.313500px;}
.yb{bottom:804.378000px;}
.y1bc{bottom:806.518500px;}
.y72{bottom:811.297500px;}
.ya5{bottom:811.350000px;}
.y1ee{bottom:815.064000px;}
.y101{bottom:818.170500px;}
.ya{bottom:819.322500px;}
.yd3{bottom:820.335000px;}
.y185{bottom:822.246000px;}
.y15f{bottom:822.247500px;}
.y1ed{bottom:828.513000px;}
.y71{bottom:829.230000px;}
.ya4{bottom:829.282500px;}
.y1bb{bottom:833.460000px;}
.y9{bottom:834.267000px;}
.y100{bottom:836.104500px;}
.yd2{bottom:838.267500px;}
.y15e{bottom:840.180000px;}
.y1ec{bottom:841.963500px;}
.y70{bottom:847.162500px;}
.ya3{bottom:847.215000px;}
.y8{bottom:849.210000px;}
.y1ba{bottom:851.392500px;}
.yff{bottom:854.037000px;}
.y1eb{bottom:855.412500px;}
.yd1{bottom:855.961500px;}
.y15d{bottom:861.400500px;}
.y7{bottom:864.154500px;}
.y6f{bottom:864.672000px;}
.ya2{bottom:865.149000px;}
.y1ea{bottom:868.861500px;}
.yfe{bottom:871.969500px;}
.y1a7{bottom:872.911500px;}
.yd0{bottom:873.894000px;}
.y1e9{bottom:882.312000px;}
.ya1{bottom:883.081500px;}
.y53{bottom:886.191000px;}
.y14f{bottom:887.403000px;}
.yfd{bottom:889.902000px;}
.ycf{bottom:894.046500px;}
.y1e8{bottom:895.761000px;}
.ya0{bottom:901.014000px;}
.y12c{bottom:906.829500px;}
.y1e7{bottom:909.210000px;}
.yce{bottom:911.979000px;}
.yfc{bottom:914.484000px;}
.y6{bottom:915.406500px;}
.y9f{bottom:918.450000px;}
.y1e6{bottom:922.660500px;}
.ycd{bottom:932.133000px;}
.y5{bottom:933.900000px;}
.y1e5{bottom:936.109500px;}
.y9e{bottom:936.382500px;}
.yfb{bottom:940.453500px;}
.y1e4{bottom:949.560000px;}
.ycc{bottom:949.827000px;}
.y4{bottom:952.716000px;}
.y9d{bottom:954.315000px;}
.y1e3{bottom:963.009000px;}
.yfa{bottom:963.154500px;}
.ycb{bottom:967.759500px;}
.y3{bottom:971.949000px;}
.y9c{bottom:972.247500px;}
.y1e2{bottom:976.458000px;}
.yca{bottom:985.692000px;}
.y1e1{bottom:989.908500px;}
.y9b{bottom:990.180000px;}
.y1e0{bottom:1003.357500px;}
.yc9{bottom:1003.386000px;}
.y9a{bottom:1007.616000px;}
.y1df{bottom:1016.806500px;}
.y2{bottom:1019.022000px;}
.yc8{bottom:1021.080000px;}
.y99{bottom:1025.550000px;}
.y1de{bottom:1030.257000px;}
.yc7{bottom:1039.014000px;}
.y98{bottom:1043.482500px;}
.y1dd{bottom:1043.706000px;}
.yc6{bottom:1056.946500px;}
.y1dc{bottom:1057.156500px;}
.y1{bottom:1060.866000px;}
.y97{bottom:1061.415000px;}
.y96{bottom:1079.347500px;}
.h27{height:1.798806px;}
.h26{height:2.878108px;}
.h25{height:3.237851px;}
.h1f{height:9.551606px;}
.h20{height:11.939508px;}
.h18{height:13.217850px;}
.h1c{height:13.218000px;}
.h22{height:14.900417px;}
.h14{height:19.965050px;}
.h10{height:20.259261px;}
.h11{height:20.788886px;}
.h23{height:20.860584px;}
.h8{height:24.675533px;}
.hf{height:28.277055px;}
.hd{height:28.599739px;}
.h29{height:32.900532px;}
.ha{height:35.695312px;}
.h13{height:37.013299px;}
.h6{height:37.228493px;}
.h17{height:37.336090px;}
.h5{height:37.605082px;}
.h1b{height:40.596967px;}
.h19{height:40.597395px;}
.h1d{height:40.606910px;}
.h15{height:40.826735px;}
.h4{height:41.125613px;}
.h1a{height:41.331574px;}
.h16{height:41.364715px;}
.h28{height:41.425613px;}
.hb{height:43.804688px;}
.h12{height:44.831700px;}
.h2{height:45.238298px;}
.h3{height:45.568298px;}
.h9{height:45.585938px;}
.h7{height:50.483846px;}
.he{height:75.443287px;}
.h1{height:98.701677px;}
.h21{height:173.223360px;}
.h1e{height:185.068800px;}
.hc{height:198.349680px;}
.h24{height:218.987116px;}
.h0{height:1188.000000px;}
.w2{width:13.217850px;}
.w3{width:13.218000px;}
.w5{width:144.352800px;}
.w4{width:185.068800px;}
.w6{width:350.218534px;}
.w1{width:357.755322px;}
.w0{width:918.000000px;}
.x63{left:-24.063291px;}
.x62{left:-21.452182px;}
.x61{left:-16.992090px;}
.x67{left:-2.894658px;}
.x0{left:0.000000px;}
.x37{left:1.886297px;}
.x19{left:3.025560px;}
.x68{left:5.204703px;}
.x1d{left:6.352590px;}
.x5a{left:8.662924px;}
.x59{left:11.432192px;}
.x18{left:14.717806px;}
.x54{left:16.792947px;}
.x53{left:21.087822px;}
.x11{left:25.500000px;}
.x52{left:26.824955px;}
.x65{left:28.347762px;}
.x51{left:32.562087px;}
.x64{left:33.828440px;}
.x55{left:35.021700px;}
.x50{left:38.299220px;}
.x4f{left:44.036353px;}
.x66{left:45.803281px;}
.x4e{left:49.773486px;}
.x14{left:50.926280px;}
.x4d{left:55.510619px;}
.x15{left:60.422297px;}
.x58{left:62.321190px;}
.x10{left:67.500000px;}
.x9{left:73.438500px;}
.x30{left:76.093500px;}
.x1c{left:77.710497px;}
.x13{left:82.854000px;}
.x4c{left:84.196283px;}
.x3d{left:86.238000px;}
.x8{left:88.383000px;}
.x4b{left:89.933415px;}
.x4a{left:95.670548px;}
.x1{left:100.114500px;}
.x49{left:101.407681px;}
.x48{left:107.144814px;}
.x12{left:110.594265px;}
.x47{left:112.881947px;}
.x5c{left:116.286458px;}
.x46{left:118.619079px;}
.x5b{left:121.843788px;}
.x45{left:124.356212px;}
.x21{left:126.252000px;}
.x44{left:130.093345px;}
.x43{left:135.830478px;}
.x56{left:139.953000px;}
.x42{left:141.567611px;}
.x20{left:142.708500px;}
.x41{left:147.304743px;}
.x1b{left:148.697874px;}
.x40{left:153.041876px;}
.x28{left:156.996000px;}
.x3f{left:158.779009px;}
.x22{left:160.171500px;}
.x3e{left:164.516142px;}
.x23{left:168.579000px;}
.x6{left:192.304500px;}
.x2c{left:194.452500px;}
.x3{left:197.538000px;}
.xa{left:203.425500px;}
.x1e{left:204.990760px;}
.x29{left:206.877000px;}
.x7{left:211.231500px;}
.x2a{left:215.284500px;}
.x1f{left:218.311862px;}
.x24{left:242.509500px;}
.x2{left:250.893000px;}
.x16{left:253.642925px;}
.x1a{left:285.760619px;}
.x2b{left:289.216500px;}
.x57{left:291.669000px;}
.x25{left:299.430000px;}
.x17{left:330.147850px;}
.x69{left:333.985257px;}
.x5f{left:340.167000px;}
.x26{left:346.839000px;}
.x6a{left:351.381604px;}
.x27{left:352.419000px;}
.x6b{left:430.113000px;}
.x2f{left:444.689985px;}
.xc{left:467.967000px;}
.x6d{left:473.944500px;}
.xf{left:479.922000px;}
.xd{left:482.910000px;}
.x2d{left:490.782000px;}
.x6e{left:495.355500px;}
.x3b{left:497.271000px;}
.x3c{left:515.719500px;}
.x2e{left:522.031500px;}
.x32{left:550.545000px;}
.x60{left:562.671000px;}
.x33{left:563.763000px;}
.xb{left:587.880000px;}
.xe{left:598.782000px;}
.x31{left:604.117500px;}
.x6c{left:614.421000px;}
.x4{left:637.305000px;}
.x36{left:647.158500px;}
.x38{left:665.091000px;}
.x5d{left:667.047000px;}
.x5e{left:681.634500px;}
.x5{left:696.910500px;}
.x39{left:727.648500px;}
.x3a{left:740.866500px;}
.x34{left:783.643500px;}
.x35{left:801.388500px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.600384pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.746682pt;}
.lsa{letter-spacing:2.177630pt;}
.lsb{letter-spacing:2.627173pt;}
.lsc{letter-spacing:2.653089pt;}
.lsd{letter-spacing:2.655711pt;}
.ls11{letter-spacing:2.656015pt;}
.ls1{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls14{letter-spacing:2.660237pt;}
.ls4{letter-spacing:7.642474pt;}
.ls8{letter-spacing:11.803145pt;}
.ls5{letter-spacing:14.760234pt;}
.ls6{letter-spacing:17.413909pt;}
.ls7{letter-spacing:17.415914pt;}
.ls12{letter-spacing:17.959253pt;}
.lse{letter-spacing:18.384320pt;}
.lsf{letter-spacing:22.475627pt;}
.ls10{letter-spacing:26.167498pt;}
.ls0{letter-spacing:31.883919pt;}
.ls13{letter-spacing:48.586548pt;}
.ls9{letter-spacing:235.140827pt;}
.ws117{word-spacing:-48.586548pt;}
.ws62{word-spacing:-34.611401pt;}
.ws66{word-spacing:-22.807881pt;}
.ws71{word-spacing:-22.802547pt;}
.ws68{word-spacing:-20.051026pt;}
.ws48{word-spacing:-17.890531pt;}
.ws8d{word-spacing:-13.283467pt;}
.ws69{word-spacing:-11.955200pt;}
.ws12{word-spacing:-10.626787pt;}
.ws47{word-spacing:-7.838877pt;}
.ws1d{word-spacing:-1.009868pt;}
.wsf4{word-spacing:-0.956534pt;}
.ws54{word-spacing:-0.903201pt;}
.ws86{word-spacing:-0.797068pt;}
.ws39{word-spacing:-0.690934pt;}
.ws14a{word-spacing:-0.600415pt;}
.ws14b{word-spacing:-0.595324pt;}
.ws114{word-spacing:-0.584267pt;}
.ws83{word-spacing:-0.531468pt;}
.wsdc{word-spacing:-0.372001pt;}
.ws36{word-spacing:-0.318668pt;}
.wscf{word-spacing:-0.265868pt;}
.ws16{word-spacing:-0.212534pt;}
.ws141{word-spacing:-0.186253pt;}
.ws142{word-spacing:-0.170257pt;}
.ws143{word-spacing:-0.169724pt;}
.ws17{word-spacing:-0.159201pt;}
.ws34{word-spacing:-0.106401pt;}
.ws67{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws44{word-spacing:0.000000pt;}
.ws11f{word-spacing:0.053066pt;}
.wsd9{word-spacing:0.265866pt;}
.wse3{word-spacing:0.371999pt;}
.ws31{word-spacing:0.478133pt;}
.ws84{word-spacing:0.531466pt;}
.ws85{word-spacing:0.584266pt;}
.ws13{word-spacing:0.637599pt;}
.ws155{word-spacing:0.679876pt;}
.ws154{word-spacing:0.680409pt;}
.ws19{word-spacing:0.743732pt;}
.ws128{word-spacing:0.803845pt;}
.ws129{word-spacing:0.807342pt;}
.ws14{word-spacing:0.903199pt;}
.ws74{word-spacing:0.955999pt;}
.ws91{word-spacing:0.956532pt;}
.ws10c{word-spacing:1.009333pt;}
.ws147{word-spacing:1.013640pt;}
.ws148{word-spacing:1.020143pt;}
.ws3d{word-spacing:1.062666pt;}
.wsfb{word-spacing:1.274932pt;}
.ws13a{word-spacing:1.275076pt;}
.ws2d{word-spacing:1.275466pt;}
.wsf3{word-spacing:1.381599pt;}
.wsf1{word-spacing:1.434399pt;}
.ws121{word-spacing:1.541065pt;}
.wsad{word-spacing:1.587209pt;}
.wsae{word-spacing:1.593866pt;}
.wse4{word-spacing:1.753332pt;}
.ws10{word-spacing:1.769066pt;}
.ws1c{word-spacing:1.806666pt;}
.wsa1{word-spacing:1.859465pt;}
.ws145{word-spacing:1.870276pt;}
.wsa0{word-spacing:1.876364pt;}
.ws146{word-spacing:1.912942pt;}
.wse1{word-spacing:1.966132pt;}
.wsec{word-spacing:2.019070pt;}
.wseb{word-spacing:2.072221pt;}
.ws2e{word-spacing:2.072265pt;}
.ws158{word-spacing:2.176601pt;}
.ws159{word-spacing:2.210542pt;}
.wsd8{word-spacing:2.284532pt;}
.ws1b{word-spacing:2.337866pt;}
.ws15a{word-spacing:2.362894pt;}
.ws15c{word-spacing:2.380142pt;}
.ws15b{word-spacing:2.380676pt;}
.ws167{word-spacing:2.592942pt;}
.ws119{word-spacing:2.603465pt;}
.ws10a{word-spacing:2.656799pt;}
.ws10e{word-spacing:2.762932pt;}
.ws140{word-spacing:2.763075pt;}
.wsd3{word-spacing:2.815732pt;}
.ws116{word-spacing:2.816265pt;}
.wsac{word-spacing:2.869066pt;}
.wsab{word-spacing:2.881274pt;}
.ws15{word-spacing:3.081866pt;}
.ws37{word-spacing:3.134665pt;}
.ws61{word-spacing:3.187999pt;}
.ws168{word-spacing:3.230275pt;}
.ws169{word-spacing:3.230808pt;}
.ws99{word-spacing:3.294132pt;}
.ws6c{word-spacing:3.347465pt;}
.wsd4{word-spacing:3.453599pt;}
.wsb6{word-spacing:3.559732pt;}
.ws92{word-spacing:3.666399pt;}
.wsfc{word-spacing:3.772532pt;}
.ws7e{word-spacing:3.825332pt;}
.ws7f{word-spacing:3.825865pt;}
.ws80{word-spacing:3.878665pt;}
.ws89{word-spacing:4.197599pt;}
.ws126{word-spacing:4.247093pt;}
.ws166{word-spacing:4.247236pt;}
.ws16d{word-spacing:4.247904pt;}
.ws12a{word-spacing:4.247919pt;}
.ws133{word-spacing:4.248080pt;}
.ws14d{word-spacing:4.248303pt;}
.ws12d{word-spacing:4.249013pt;}
.ws144{word-spacing:4.249320pt;}
.ws130{word-spacing:4.250463pt;}
.ws127{word-spacing:4.250542pt;}
.ws150{word-spacing:4.251075pt;}
.ws137{word-spacing:4.293208pt;}
.ws1e{word-spacing:4.303732pt;}
.ws13d{word-spacing:4.335875pt;}
.ws108{word-spacing:4.357065pt;}
.ws13e{word-spacing:4.378008pt;}
.ws10d{word-spacing:4.516532pt;}
.ws12b{word-spacing:4.556202pt;}
.ws115{word-spacing:4.569332pt;}
.ws12c{word-spacing:4.590808pt;}
.wse{word-spacing:4.590933pt;}
.wsdb{word-spacing:4.622666pt;}
.ws113{word-spacing:4.675465pt;}
.ws112{word-spacing:4.675794pt;}
.ws41{word-spacing:4.675999pt;}
.ws13f{word-spacing:4.718275pt;}
.wsbb{word-spacing:4.777933pt;}
.wsc4{word-spacing:4.778291pt;}
.wsc2{word-spacing:4.778803pt;}
.wsbc{word-spacing:4.779298pt;}
.wsbd{word-spacing:4.781253pt;}
.wsbe{word-spacing:4.781670pt;}
.wsb9{word-spacing:4.781866pt;}
.wsc6{word-spacing:4.782993pt;}
.wsc0{word-spacing:4.783625pt;}
.ws131{word-spacing:4.850386pt;}
.ws132{word-spacing:4.888408pt;}
.ws1f{word-spacing:4.994399pt;}
.ws9e{word-spacing:5.047732pt;}
.wsf2{word-spacing:5.101065pt;}
.ws2b{word-spacing:5.207199pt;}
.ws11d{word-spacing:5.256363pt;}
.ws50{word-spacing:5.260532pt;}
.ws107{word-spacing:5.268525pt;}
.ws11c{word-spacing:5.270808pt;}
.ws8c{word-spacing:5.281406pt;}
.ws72{word-spacing:5.299563pt;}
.ws8b{word-spacing:5.300258pt;}
.wsf7{word-spacing:5.312756pt;}
.ws2{word-spacing:5.313332pt;}
.wse5{word-spacing:5.313417pt;}
.ws9f{word-spacing:5.313712pt;}
.ws8e{word-spacing:5.313865pt;}
.wsa3{word-spacing:5.318208pt;}
.ws9c{word-spacing:5.366666pt;}
.ws14e{word-spacing:5.398275pt;}
.ws14f{word-spacing:5.440941pt;}
.wsb1{word-spacing:5.472799pt;}
.ws6d{word-spacing:5.526132pt;}
.ws87{word-spacing:5.578932pt;}
.ws1a{word-spacing:5.632265pt;}
.ws90{word-spacing:5.738399pt;}
.ws3a{word-spacing:5.791732pt;}
.wse0{word-spacing:5.844532pt;}
.ws1{word-spacing:5.844675pt;}
.ws109{word-spacing:6.003999pt;}
.ws123{word-spacing:6.049104pt;}
.ws124{word-spacing:6.056799pt;}
.wsfe{word-spacing:6.057332pt;}
.wsa2{word-spacing:6.110132pt;}
.wsf0{word-spacing:6.110665pt;}
.ws40{word-spacing:6.163465pt;}
.ws9d{word-spacing:6.322932pt;}
.ws149{word-spacing:6.418541pt;}
.ws96{word-spacing:6.429065pt;}
.ws11b{word-spacing:6.482399pt;}
.ws35{word-spacing:6.535198pt;}
.ws5d{word-spacing:6.535732pt;}
.ws3c{word-spacing:6.588532pt;}
.wsb7{word-spacing:6.641365pt;}
.ws43{word-spacing:6.641865pt;}
.ws125{word-spacing:6.716141pt;}
.ws165{word-spacing:6.758807pt;}
.ws15f{word-spacing:6.763135pt;}
.wsc1{word-spacing:6.790579pt;}
.ws160{word-spacing:6.800941pt;}
.ws79{word-spacing:6.801332pt;}
.ws161{word-spacing:6.801474pt;}
.wsce{word-spacing:6.854132pt;}
.wsb{word-spacing:6.886400pt;}
.ws106{word-spacing:6.907465pt;}
.ws13c{word-spacing:6.928407pt;}
.ws13b{word-spacing:6.928940pt;}
.ws105{word-spacing:6.960265pt;}
.wsb4{word-spacing:7.013599pt;}
.wsef{word-spacing:7.066932pt;}
.ws151{word-spacing:7.073240pt;}
.ws64{word-spacing:7.083853pt;}
.ws6f{word-spacing:7.089186pt;}
.ws152{word-spacing:7.098540pt;}
.ws4a{word-spacing:7.119732pt;}
.ws59{word-spacing:7.173065pt;}
.ws38{word-spacing:7.226399pt;}
.ws28{word-spacing:7.279198pt;}
.ws20{word-spacing:7.332532pt;}
.ws56{word-spacing:7.385332pt;}
.ws15d{word-spacing:7.501961pt;}
.ws12e{word-spacing:7.504336pt;}
.ws12f{word-spacing:7.523607pt;}
.wsd5{word-spacing:7.598132pt;}
.wsda{word-spacing:7.650932pt;}
.ws98{word-spacing:7.651465pt;}
.wsb2{word-spacing:7.661522pt;}
.ws14c{word-spacing:7.693740pt;}
.ws25{word-spacing:7.704265pt;}
.ws88{word-spacing:7.757599pt;}
.wse8{word-spacing:7.810932pt;}
.ws10f{word-spacing:7.863732pt;}
.ws3e{word-spacing:8.023198pt;}
.ws27{word-spacing:8.129332pt;}
.ws8{word-spacing:8.129600pt;}
.ws93{word-spacing:8.182665pt;}
.ws5{word-spacing:8.225066pt;}
.wsd{word-spacing:8.368533pt;}
.ws136{word-spacing:8.373740pt;}
.ws135{word-spacing:8.416407pt;}
.ws101{word-spacing:8.554398pt;}
.ws4f{word-spacing:8.767199pt;}
.ws5c{word-spacing:8.800733pt;}
.ws52{word-spacing:8.819932pt;}
.ws53{word-spacing:8.820466pt;}
.ws95{word-spacing:8.926665pt;}
.ws4{word-spacing:8.942400pt;}
.ws24{word-spacing:8.979465pt;}
.ws5b{word-spacing:9.192265pt;}
.wsff{word-spacing:9.405065pt;}
.ws100{word-spacing:9.457865pt;}
.ws21{word-spacing:9.563998pt;}
.wsc{word-spacing:9.564266pt;}
.ws153{word-spacing:9.606806pt;}
.ws11a{word-spacing:9.670132pt;}
.ws157{word-spacing:9.734273pt;}
.ws156{word-spacing:9.776406pt;}
.ws4b{word-spacing:9.829598pt;}
.ws111{word-spacing:9.935732pt;}
.ws75{word-spacing:9.989065pt;}
.ws55{word-spacing:10.095198pt;}
.ws42{word-spacing:10.148532pt;}
.ws26{word-spacing:10.201865pt;}
.ws49{word-spacing:10.414132pt;}
.wsf{word-spacing:10.472533pt;}
.wsa9{word-spacing:10.733065pt;}
.wsa8{word-spacing:10.752069pt;}
.ws134{word-spacing:10.754539pt;}
.wsd6{word-spacing:10.892531pt;}
.wsa4{word-spacing:11.245404pt;}
.wsa5{word-spacing:11.264265pt;}
.ws15e{word-spacing:11.264406pt;}
.wsd1{word-spacing:11.317436pt;}
.wsd2{word-spacing:11.317598pt;}
.ws3f{word-spacing:11.423731pt;}
.ws4c{word-spacing:11.529865pt;}
.ws81{word-spacing:12.061065pt;}
.ws82{word-spacing:12.061598pt;}
.wsa{word-spacing:12.098666pt;}
.ws8f{word-spacing:12.114398pt;}
.ws138{word-spacing:12.326805pt;}
.ws139{word-spacing:12.327339pt;}
.ws4e{word-spacing:12.379998pt;}
.ws7b{word-spacing:12.698931pt;}
.ws0{word-spacing:12.752139pt;}
.ws7c{word-spacing:12.752265pt;}
.wsed{word-spacing:12.805065pt;}
.wsd7{word-spacing:12.805598pt;}
.wsea{word-spacing:12.858398pt;}
.wse9{word-spacing:12.893052pt;}
.ws2c{word-spacing:12.911732pt;}
.ws16c{word-spacing:13.092138pt;}
.ws10b{word-spacing:13.177331pt;}
.ws162{word-spacing:13.219605pt;}
.wsdf{word-spacing:13.230131pt;}
.wsf6{word-spacing:13.230665pt;}
.wsb5{word-spacing:13.283465pt;}
.ws7d{word-spacing:13.336265pt;}
.ws77{word-spacing:13.336798pt;}
.ws76{word-spacing:13.442931pt;}
.wsfa{word-spacing:13.549065pt;}
.wsf8{word-spacing:13.549127pt;}
.wsf9{word-spacing:13.602293pt;}
.ws29{word-spacing:13.814665pt;}
.wsfd{word-spacing:13.867998pt;}
.ws122{word-spacing:13.921331pt;}
.ws16a{word-spacing:13.942271pt;}
.ws16b{word-spacing:13.942805pt;}
.ws120{word-spacing:13.974131pt;}
.ws163{word-spacing:13.983240pt;}
.ws164{word-spacing:13.984938pt;}
.wsa6{word-spacing:14.064037pt;}
.wsa7{word-spacing:14.080798pt;}
.ws102{word-spacing:14.239731pt;}
.ws5f{word-spacing:14.505331pt;}
.wsaa{word-spacing:14.505865pt;}
.ws60{word-spacing:14.558665pt;}
.wsb8{word-spacing:14.612762pt;}
.wsba{word-spacing:14.614144pt;}
.ws51{word-spacing:14.664798pt;}
.ws2f{word-spacing:14.718132pt;}
.wsb3{word-spacing:14.824265pt;}
.ws9a{word-spacing:14.877598pt;}
.ws57{word-spacing:15.196531pt;}
.ws58{word-spacing:15.249332pt;}
.wsdd{word-spacing:15.408798pt;}
.wsee{word-spacing:15.461598pt;}
.ws7{word-spacing:15.493866pt;}
.wsaf{word-spacing:15.556625pt;}
.wsb0{word-spacing:15.568264pt;}
.ws4d{word-spacing:15.674398pt;}
.wsd0{word-spacing:15.727731pt;}
.ws104{word-spacing:15.780532pt;}
.wscc{word-spacing:15.939747pt;}
.wsbf{word-spacing:15.939987pt;}
.ws3b{word-spacing:15.939998pt;}
.ws11{word-spacing:15.940531pt;}
.ws11e{word-spacing:16.099464pt;}
.ws23{word-spacing:16.205598pt;}
.ws30{word-spacing:16.258931pt;}
.ws18{word-spacing:16.524531pt;}
.ws22{word-spacing:16.577865pt;}
.wsc5{word-spacing:16.677369pt;}
.ws9{word-spacing:16.689599pt;}
.ws2a{word-spacing:16.790131pt;}
.wsf5{word-spacing:17.162398pt;}
.ws9b{word-spacing:17.268531pt;}
.ws78{word-spacing:17.427998pt;}
.ws103{word-spacing:17.906398pt;}
.wsde{word-spacing:18.384264pt;}
.wsc7{word-spacing:18.412241pt;}
.ws94{word-spacing:18.490398pt;}
.ws97{word-spacing:18.543731pt;}
.ws110{word-spacing:18.546749pt;}
.ws33{word-spacing:19.127731pt;}
.ws32{word-spacing:19.128264pt;}
.wse2{word-spacing:19.553331pt;}
.ws7a{word-spacing:19.606665pt;}
.ws8a{word-spacing:19.659464pt;}
.ws118{word-spacing:20.031731pt;}
.ws6{word-spacing:20.802133pt;}
.ws5e{word-spacing:21.571998pt;}
.ws70{word-spacing:21.849053pt;}
.ws65{word-spacing:21.849959pt;}
.ws6a{word-spacing:21.854386pt;}
.ws5a{word-spacing:28.267464pt;}
.ws73{word-spacing:32.358663pt;}
.ws63{word-spacing:35.134386pt;}
.ws6e{word-spacing:35.135293pt;}
.wse7{word-spacing:66.764403pt;}
.wscd{word-spacing:87.673080pt;}
.wsc3{word-spacing:87.673320pt;}
.ws6b{word-spacing:111.053453pt;}
.ws45{word-spacing:144.829282pt;}
.wscb{word-spacing:159.401080pt;}
.wsc8{word-spacing:159.401320pt;}
.wsc9{word-spacing:231.134653pt;}
.wsca{word-spacing:302.862653pt;}
.ws46{word-spacing:402.455770pt;}
.wse6{word-spacing:525.977376pt;}
._21{margin-left:-48.787142pt;}
._23{margin-left:-20.404798pt;}
._22{margin-left:-19.275775pt;}
._1{margin-left:-14.154665pt;}
._2{margin-left:-9.436798pt;}
._5{margin-left:-7.539732pt;}
._f{margin-left:-6.434666pt;}
._c{margin-left:-5.260265pt;}
._a{margin-left:-3.719466pt;}
._3{margin-left:-2.550399pt;}
._0{margin-left:-1.275200pt;}
._12{width:0.935466pt;}
._8{width:2.405350pt;}
._11{width:3.328260pt;}
._9{width:4.880413pt;}
._24{width:7.387494pt;}
._13{width:13.969064pt;}
._1e{width:14.991019pt;}
._1b{width:16.504838pt;}
._10{width:17.469866pt;}
._e{width:19.272000pt;}
._16{width:20.723732pt;}
._19{width:22.363730pt;}
._1d{width:23.272532pt;}
._18{width:26.566931pt;}
._15{width:28.002132pt;}
._14{width:28.957865pt;}
._1a{width:31.880531pt;}
._20{width:36.857780pt;}
._1c{width:38.355248pt;}
._26{width:41.976676pt;}
._27{width:43.256195pt;}
._4{width:62.779082pt;}
._7{width:65.781984pt;}
._1f{width:71.298621pt;}
._6{width:76.571766pt;}
._d{width:90.216747pt;}
._25{width:93.990976pt;}
._b{width:111.906619pt;}
._17{width:422.634613pt;}
.fs16{font-size:1.683093pt;}
.fs15{font-size:2.692966pt;}
.fs14{font-size:3.029568pt;}
.fs10{font-size:9.139200pt;}
.fs11{font-size:11.424000pt;}
.fs12{font-size:14.257067pt;}
.fs13{font-size:19.959893pt;}
.fsc{font-size:23.540172pt;}
.fs6{font-size:31.880533pt;}
.fsb{font-size:32.856418pt;}
.fsa{font-size:33.231360pt;}
.fs5{font-size:37.193600pt;}
.fs9{font-size:37.333333pt;}
.fs4{font-size:42.507147pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fse{font-size:49.500685pt;}
.fsd{font-size:49.501207pt;}
.fsf{font-size:49.512809pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:127.521547pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:1.469308pt;}
.y105{bottom:1.580842pt;}
.y104{bottom:1.624692pt;}
.y68{bottom:4.055481pt;}
.y151{bottom:5.078189pt;}
.y57{bottom:8.119067pt;}
.y1a9{bottom:8.317006pt;}
.y150{bottom:11.037197pt;}
.y67{bottom:12.269757pt;}
.y12d{bottom:14.360505pt;}
.y148{bottom:17.227660pt;}
.y1a8{bottom:17.330938pt;}
.y6a{bottom:18.114968pt;}
.y147{bottom:22.294433pt;}
.y65{bottom:23.995534pt;}
.y1b5{bottom:25.062648pt;}
.y69{bottom:25.471422pt;}
.y146{bottom:27.361205pt;}
.y52{bottom:29.210667pt;}
.y145{bottom:32.427978pt;}
.y1b4{bottom:33.285653pt;}
.y6e{bottom:35.545924pt;}
.y144{bottom:37.494750pt;}
.y143{bottom:42.561523pt;}
.y6d{bottom:45.965202pt;}
.y142{bottom:47.628295pt;}
.y50{bottom:48.000000pt;}
.y1b3{bottom:50.251276pt;}
.y141{bottom:52.695068pt;}
.y5e{bottom:56.564852pt;}
.y140{bottom:57.761840pt;}
.y152{bottom:59.044380pt;}
.y13f{bottom:62.828613pt;}
.y61{bottom:63.965153pt;}
.y155{bottom:64.778319pt;}
.y1b2{bottom:67.216857pt;}
.y64{bottom:67.781359pt;}
.y13e{bottom:67.895385pt;}
.y60{bottom:71.321422pt;}
.y13d{bottom:72.962158pt;}
.y63{bottom:77.470608pt;}
.y13c{bottom:78.028930pt;}
.y51{bottom:80.000000pt;}
.y13b{bottom:83.095703pt;}
.y1b1{bottom:84.182438pt;}
.y13a{bottom:88.162475pt;}
.y62{bottom:88.187722pt;}
.y1b8{bottom:90.894614pt;}
.y139{bottom:93.229248pt;}
.y5f{bottom:95.755241pt;}
.y138{bottom:98.296020pt;}
.y1b0{bottom:101.148019pt;}
.y153{bottom:103.203266pt;}
.y137{bottom:103.362793pt;}
.y66{bottom:106.254043pt;}
.y136{bottom:108.429565pt;}
.y15c{bottom:111.424322pt;}
.y135{bottom:113.496338pt;}
.y1a6{bottom:115.198667pt;}
.y30{bottom:115.200000pt;}
.y15b{bottom:116.653772pt;}
.y5d{bottom:117.197314pt;}
.y59{bottom:117.605922pt;}
.y1af{bottom:118.113599pt;}
.y1b6{bottom:118.373216pt;}
.y134{bottom:118.563110pt;}
.y4f{bottom:118.949333pt;}
.y14e{bottom:119.074317pt;}
.yf9{bottom:121.212000pt;}
.y15a{bottom:121.883217pt;}
.y14d{bottom:123.264603pt;}
.y133{bottom:123.629883pt;}
.y58{bottom:124.962375pt;}
.y159{bottom:127.112667pt;}
.y5c{bottom:127.187030pt;}
.y14c{bottom:127.454892pt;}
.y132{bottom:128.696655pt;}
.y2f{bottom:131.140000pt;}
.y14b{bottom:131.645178pt;}
.y184{bottom:132.246667pt;}
.y158{bottom:132.342112pt;}
.y131{bottom:133.763428pt;}
.yf8{bottom:134.494667pt;}
.y1ae{bottom:135.079180pt;}
.y14a{bottom:135.835467pt;}
.y1b9{bottom:135.924935pt;}
.y157{bottom:137.571562pt;}
.y5a{bottom:138.147841pt;}
.y21f{bottom:138.698667pt;}
.y130{bottom:138.830200pt;}
.y149{bottom:140.025753pt;}
.y4e{bottom:142.525333pt;}
.y156{bottom:142.801007pt;}
.y12f{bottom:143.896972pt;}
.y5b{bottom:146.062443pt;}
.y2e{bottom:147.080000pt;}
.y12e{bottom:147.241617pt;}
.y154{bottom:147.362157pt;}
.y12b{bottom:147.573333pt;}
.yf7{bottom:147.945333pt;}
.y183{bottom:148.186667pt;}
.y21e{bottom:150.653333pt;}
.y1ad{bottom:152.044761pt;}
.y4d{bottom:158.466667pt;}
.y6c{bottom:159.096982pt;}
.y55{bottom:159.927766pt;}
.y56{bottom:159.952644pt;}
.yf6{bottom:161.229333pt;}
.y21d{bottom:162.608000pt;}
.y2d{bottom:163.020000pt;}
.y12a{bottom:163.513333pt;}
.y182{bottom:164.126667pt;}
.y1a5{bottom:166.737333pt;}
.y1ac{bottom:169.010342pt;}
.y6b{bottom:169.481782pt;}
.y54{bottom:170.312566pt;}
.y4c{bottom:174.406667pt;}
.yf5{bottom:174.513333pt;}
.y21c{bottom:174.564000pt;}
.yc5{bottom:178.960000pt;}
.y2c{bottom:179.414667pt;}
.y129{bottom:179.453333pt;}
.y181{bottom:180.066667pt;}
.y95{bottom:182.836000pt;}
.y1ab{bottom:185.975923pt;}
.y21b{bottom:186.518667pt;}
.yf4{bottom:187.964000pt;}
.y1a4{bottom:188.841333pt;}
.y4b{bottom:190.346667pt;}
.yc4{bottom:194.900000pt;}
.y1db{bottom:194.901333pt;}
.y2b{bottom:195.354667pt;}
.y128{bottom:195.393333pt;}
.y180{bottom:196.006667pt;}
.y21a{bottom:198.474667pt;}
.yf3{bottom:201.246667pt;}
.y1aa{bottom:202.941503pt;}
.y1a3{bottom:204.781333pt;}
.y91{bottom:206.058667pt;}
.y4a{bottom:206.286667pt;}
.yc3{bottom:210.398667pt;}
.y219{bottom:210.429333pt;}
.y1da{bottom:210.841333pt;}
.y2a{bottom:211.294667pt;}
.y127{bottom:211.334667pt;}
.y1b7{bottom:211.683911pt;}
.y17f{bottom:211.946667pt;}
.yf2{bottom:214.530667pt;}
.y93{bottom:218.604000pt;}
.y1a2{bottom:220.721333pt;}
.y49{bottom:222.226667pt;}
.y218{bottom:222.384000pt;}
.yc2{bottom:226.340000pt;}
.y1d9{bottom:226.781333pt;}
.y94{bottom:226.840000pt;}
.y29{bottom:227.234667pt;}
.y126{bottom:227.274667pt;}
.yf1{bottom:227.814667pt;}
.y92{bottom:228.246667pt;}
.y17e{bottom:228.993333pt;}
.y217{bottom:234.340000pt;}
.y1a1{bottom:236.194667pt;}
.y48{bottom:238.166667pt;}
.yf0{bottom:241.097333pt;}
.yc1{bottom:242.280000pt;}
.y28{bottom:243.176000pt;}
.y125{bottom:243.708000pt;}
.y17d{bottom:244.934667pt;}
.y216{bottom:246.294667pt;}
.y1d8{bottom:246.760000pt;}
.y1a0{bottom:252.134667pt;}
.y90{bottom:253.360000pt;}
.y47{bottom:254.108000pt;}
.yef{bottom:254.381333pt;}
.y215{bottom:258.249333pt;}
.y27{bottom:259.116000pt;}
.y124{bottom:259.648000pt;}
.y17c{bottom:260.874667pt;}
.yc0{bottom:261.962667pt;}
.yee{bottom:267.665333pt;}
.y19f{bottom:268.074667pt;}
.y8f{bottom:269.300000pt;}
.y214{bottom:270.205333pt;}
.y1d7{bottom:270.790667pt;}
.y46{bottom:274.840000pt;}
.y26{bottom:275.056000pt;}
.y123{bottom:275.588000pt;}
.y17b{bottom:276.814667pt;}
.yed{bottom:280.948000pt;}
.y213{bottom:282.160000pt;}
.y19e{bottom:284.014667pt;}
.ybf{bottom:284.218667pt;}
.y8e{bottom:285.240000pt;}
.y1d6{bottom:286.730667pt;}
.y25{bottom:290.996000pt;}
.y122{bottom:291.528000pt;}
.y17a{bottom:292.754667pt;}
.y212{bottom:294.116000pt;}
.yec{bottom:294.232000pt;}
.y19d{bottom:299.954667pt;}
.ybe{bottom:300.158667pt;}
.y45{bottom:300.606667pt;}
.y1d5{bottom:302.670667pt;}
.y211{bottom:306.070667pt;}
.y24{bottom:306.936000pt;}
.y121{bottom:307.469333pt;}
.y8a{bottom:308.462667pt;}
.y179{bottom:308.694667pt;}
.yeb{bottom:313.762667pt;}
.y19c{bottom:315.428000pt;}
.ybd{bottom:316.100000pt;}
.y44{bottom:316.548000pt;}
.y210{bottom:318.025333pt;}
.y1d4{bottom:318.610667pt;}
.y8c{bottom:321.009333pt;}
.y23{bottom:322.876000pt;}
.y120{bottom:323.409333pt;}
.y178{bottom:326.294667pt;}
.y8d{bottom:329.244000pt;}
.y20f{bottom:329.981333pt;}
.y8b{bottom:330.652000pt;}
.y19b{bottom:331.368000pt;}
.ybc{bottom:331.597333pt;}
.y43{bottom:332.488000pt;}
.y1d3{bottom:334.550667pt;}
.y22{bottom:338.817333pt;}
.y11f{bottom:340.089333pt;}
.y20e{bottom:341.936000pt;}
.y177{bottom:342.234667pt;}
.y19a{bottom:347.309333pt;}
.ybb{bottom:347.538667pt;}
.y1d2{bottom:350.345333pt;}
.y42{bottom:351.298667pt;}
.yea{bottom:351.954667pt;}
.y20d{bottom:353.890667pt;}
.y21{bottom:355.210667pt;}
.y89{bottom:355.764000pt;}
.y11e{bottom:356.029333pt;}
.y176{bottom:358.176000pt;}
.y199{bottom:363.249333pt;}
.yba{bottom:363.478667pt;}
.y20c{bottom:365.846667pt;}
.y1d1{bottom:366.285333pt;}
.y41{bottom:367.238667pt;}
.ye9{bottom:367.894667pt;}
.y20{bottom:371.150667pt;}
.y88{bottom:371.705333pt;}
.y11d{bottom:371.969333pt;}
.y175{bottom:374.116000pt;}
.y20b{bottom:377.801333pt;}
.y198{bottom:379.189333pt;}
.yb9{bottom:379.418667pt;}
.y1d0{bottom:382.225333pt;}
.y40{bottom:383.178667pt;}
.ye8{bottom:383.836000pt;}
.y1f{bottom:387.092000pt;}
.y87{bottom:387.645333pt;}
.y11c{bottom:387.909333pt;}
.y20a{bottom:389.756000pt;}
.y174{bottom:391.162667pt;}
.y197{bottom:395.129333pt;}
.yb8{bottom:395.358667pt;}
.y1cf{bottom:398.166667pt;}
.y3f{bottom:399.118667pt;}
.ye7{bottom:399.776000pt;}
.y209{bottom:401.712000pt;}
.y1e{bottom:403.032000pt;}
.y86{bottom:403.585333pt;}
.y11b{bottom:404.342667pt;}
.y173{bottom:407.102667pt;}
.y208{bottom:413.666667pt;}
.y1ce{bottom:414.106667pt;}
.y196{bottom:414.786667pt;}
.yb7{bottom:415.041333pt;}
.y3e{bottom:415.060000pt;}
.ye6{bottom:415.716000pt;}
.y1d{bottom:418.972000pt;}
.y85{bottom:419.525333pt;}
.y11a{bottom:420.284000pt;}
.y172{bottom:423.042667pt;}
.y207{bottom:425.622667pt;}
.y1cd{bottom:429.900000pt;}
.y3d{bottom:431.000000pt;}
.ye5{bottom:431.656000pt;}
.y1c{bottom:434.912000pt;}
.y84{bottom:435.156000pt;}
.y119{bottom:436.224000pt;}
.y195{bottom:436.890667pt;}
.yb6{bottom:437.298667pt;}
.y206{bottom:437.577333pt;}
.y171{bottom:438.982667pt;}
.y1cc{bottom:445.841333pt;}
.y3c{bottom:446.940000pt;}
.ye4{bottom:447.596000pt;}
.y205{bottom:449.532000pt;}
.y1b{bottom:450.852000pt;}
.y83{bottom:451.096000pt;}
.y118{bottom:452.164000pt;}
.y194{bottom:452.830667pt;}
.yb5{bottom:453.238667pt;}
.y170{bottom:454.922667pt;}
.y204{bottom:461.488000pt;}
.y1cb{bottom:461.781333pt;}
.y3b{bottom:462.880000pt;}
.y1a{bottom:466.792000pt;}
.y82{bottom:467.037333pt;}
.ye3{bottom:467.509333pt;}
.y193{bottom:468.770667pt;}
.yb4{bottom:469.178667pt;}
.y16f{bottom:470.864000pt;}
.y203{bottom:473.442667pt;}
.y117{bottom:474.014667pt;}
.y1ca{bottom:477.721333pt;}
.y3a{bottom:478.820000pt;}
.y81{bottom:482.668000pt;}
.y19{bottom:482.733333pt;}
.yb3{bottom:485.118667pt;}
.y202{bottom:485.397333pt;}
.y16e{bottom:487.910667pt;}
.y192{bottom:488.428000pt;}
.ye2{bottom:491.142667pt;}
.y1c9{bottom:493.661333pt;}
.y39{bottom:494.760000pt;}
.y201{bottom:497.353333pt;}
.y80{bottom:498.608000pt;}
.y18{bottom:498.673333pt;}
.yb2{bottom:501.058667pt;}
.y116{bottom:503.113333pt;}
.y16d{bottom:503.850667pt;}
.ye1{bottom:507.082667pt;}
.y200{bottom:509.308000pt;}
.y1c8{bottom:509.601333pt;}
.y191{bottom:510.532000pt;}
.y38{bottom:510.701333pt;}
.y7f{bottom:514.548000pt;}
.y17{bottom:514.613333pt;}
.yb1{bottom:516.557333pt;}
.y115{bottom:519.053333pt;}
.y16c{bottom:519.790667pt;}
.y1ff{bottom:521.264000pt;}
.ye0{bottom:522.812000pt;}
.y190{bottom:526.472000pt;}
.y37{bottom:526.641333pt;}
.y1c7{bottom:529.580000pt;}
.y7e{bottom:530.488000pt;}
.y16{bottom:530.553333pt;}
.yb0{bottom:532.497333pt;}
.y1fe{bottom:533.218667pt;}
.y114{bottom:534.994667pt;}
.y16b{bottom:536.837333pt;}
.ydf{bottom:538.752000pt;}
.y18f{bottom:542.412000pt;}
.y36{bottom:542.581333pt;}
.y1fd{bottom:545.173333pt;}
.y7d{bottom:546.429333pt;}
.yaf{bottom:548.438667pt;}
.y113{bottom:550.934667pt;}
.y16a{bottom:552.777333pt;}
.y15{bottom:553.402667pt;}
.y1c6{bottom:553.610667pt;}
.yde{bottom:554.692000pt;}
.y1fc{bottom:557.129333pt;}
.y18e{bottom:558.353333pt;}
.y35{bottom:558.521333pt;}
.y7c{bottom:562.369333pt;}
.yae{bottom:564.378667pt;}
.y112{bottom:567.368000pt;}
.y169{bottom:568.717333pt;}
.y1fb{bottom:569.084000pt;}
.y1c5{bottom:569.550667pt;}
.ydd{bottom:570.420000pt;}
.y18d{bottom:574.293333pt;}
.y34{bottom:574.461333pt;}
.y7b{bottom:578.309333pt;}
.yad{bottom:580.318667pt;}
.y1fa{bottom:581.038667pt;}
.y111{bottom:583.308000pt;}
.y168{bottom:584.657333pt;}
.y1c4{bottom:585.492000pt;}
.ydc{bottom:586.360000pt;}
.y18c{bottom:590.233333pt;}
.y33{bottom:590.502667pt;}
.y1f9{bottom:592.994667pt;}
.y7a{bottom:593.940000pt;}
.y14{bottom:595.452000pt;}
.y110{bottom:599.248000pt;}
.yac{bottom:600.001333pt;}
.y1c3{bottom:601.432000pt;}
.ydb{bottom:602.088000pt;}
.y167{bottom:602.257333pt;}
.y1f8{bottom:604.949333pt;}
.y32{bottom:606.444000pt;}
.y13{bottom:608.734667pt;}
.y79{bottom:609.880000pt;}
.y18b{bottom:609.890667pt;}
.y10f{bottom:615.188000pt;}
.y1f7{bottom:616.905333pt;}
.y1c2{bottom:617.225333pt;}
.yda{bottom:618.029333pt;}
.y166{bottom:618.198667pt;}
.yab{bottom:619.684000pt;}
.y12{bottom:622.018667pt;}
.y31{bottom:625.576000pt;}
.y78{bottom:625.821333pt;}
.y1f6{bottom:628.860000pt;}
.y18a{bottom:629.548000pt;}
.y10e{bottom:631.129333pt;}
.y1c1{bottom:633.166667pt;}
.yd9{bottom:633.969333pt;}
.y165{bottom:634.138667pt;}
.y11{bottom:635.302667pt;}
.y1f5{bottom:640.814667pt;}
.y77{bottom:641.761333pt;}
.yaa{bottom:641.940000pt;}
.y10d{bottom:647.069333pt;}
.y10{bottom:648.585333pt;}
.y1c0{bottom:649.106667pt;}
.yd8{bottom:649.697333pt;}
.y164{bottom:650.078667pt;}
.y189{bottom:651.652000pt;}
.y1f4{bottom:652.770667pt;}
.y76{bottom:657.701333pt;}
.ya9{bottom:657.881333pt;}
.y10b{bottom:660.626667pt;}
.yf{bottom:661.869333pt;}
.y10a{bottom:663.502667pt;}
.y1f3{bottom:664.725333pt;}
.y1bf{bottom:665.046667pt;}
.yd7{bottom:665.637333pt;}
.y163{bottom:666.018667pt;}
.y188{bottom:667.592000pt;}
.y75{bottom:673.641333pt;}
.ya8{bottom:673.821333pt;}
.ye{bottom:675.153333pt;}
.y109{bottom:676.566667pt;}
.y1f2{bottom:676.680000pt;}
.y108{bottom:679.442667pt;}
.y1be{bottom:680.986667pt;}
.yd6{bottom:681.577333pt;}
.y162{bottom:683.065333pt;}
.y187{bottom:683.532000pt;}
.yd{bottom:688.436000pt;}
.y1f1{bottom:688.636000pt;}
.y74{bottom:689.581333pt;}
.ya7{bottom:689.761333pt;}
.y107{bottom:692.506667pt;}
.y106{bottom:695.382667pt;}
.y1bd{bottom:696.926667pt;}
.yd5{bottom:697.305333pt;}
.y161{bottom:699.005333pt;}
.y186{bottom:699.472000pt;}
.y1f0{bottom:700.590667pt;}
.yc{bottom:701.720000pt;}
.y73{bottom:705.521333pt;}
.ya6{bottom:705.701333pt;}
.y103{bottom:708.446667pt;}
.y102{bottom:711.322667pt;}
.y1ef{bottom:712.545333pt;}
.yd4{bottom:713.245333pt;}
.y160{bottom:714.945333pt;}
.yb{bottom:715.002667pt;}
.y1bc{bottom:716.905333pt;}
.y72{bottom:721.153333pt;}
.ya5{bottom:721.200000pt;}
.y1ee{bottom:724.501333pt;}
.y101{bottom:727.262667pt;}
.ya{bottom:728.286667pt;}
.yd3{bottom:729.186667pt;}
.y185{bottom:730.885333pt;}
.y15f{bottom:730.886667pt;}
.y1ed{bottom:736.456000pt;}
.y71{bottom:737.093333pt;}
.ya4{bottom:737.140000pt;}
.y1bb{bottom:740.853333pt;}
.y9{bottom:741.570667pt;}
.y100{bottom:743.204000pt;}
.yd2{bottom:745.126667pt;}
.y15e{bottom:746.826667pt;}
.y1ec{bottom:748.412000pt;}
.y70{bottom:753.033333pt;}
.ya3{bottom:753.080000pt;}
.y8{bottom:754.853333pt;}
.y1ba{bottom:756.793333pt;}
.yff{bottom:759.144000pt;}
.y1eb{bottom:760.366667pt;}
.yd1{bottom:760.854667pt;}
.y15d{bottom:765.689333pt;}
.y7{bottom:768.137333pt;}
.y6f{bottom:768.597333pt;}
.ya2{bottom:769.021333pt;}
.y1ea{bottom:772.321333pt;}
.yfe{bottom:775.084000pt;}
.y1a7{bottom:775.921333pt;}
.yd0{bottom:776.794667pt;}
.y1e9{bottom:784.277333pt;}
.ya1{bottom:784.961333pt;}
.y53{bottom:787.725333pt;}
.y14f{bottom:788.802667pt;}
.yfd{bottom:791.024000pt;}
.ycf{bottom:794.708000pt;}
.y1e8{bottom:796.232000pt;}
.ya0{bottom:800.901333pt;}
.y12c{bottom:806.070667pt;}
.y1e7{bottom:808.186667pt;}
.yce{bottom:810.648000pt;}
.yfc{bottom:812.874667pt;}
.y6{bottom:813.694667pt;}
.y9f{bottom:816.400000pt;}
.y1e6{bottom:820.142667pt;}
.ycd{bottom:828.562667pt;}
.y5{bottom:830.133333pt;}
.y1e5{bottom:832.097333pt;}
.y9e{bottom:832.340000pt;}
.yfb{bottom:835.958667pt;}
.y1e4{bottom:844.053333pt;}
.ycc{bottom:844.290667pt;}
.y4{bottom:846.858667pt;}
.y9d{bottom:848.280000pt;}
.y1e3{bottom:856.008000pt;}
.yfa{bottom:856.137333pt;}
.ycb{bottom:860.230667pt;}
.y3{bottom:863.954667pt;}
.y9c{bottom:864.220000pt;}
.y1e2{bottom:867.962667pt;}
.yca{bottom:876.170667pt;}
.y1e1{bottom:879.918667pt;}
.y9b{bottom:880.160000pt;}
.y1e0{bottom:891.873333pt;}
.yc9{bottom:891.898667pt;}
.y9a{bottom:895.658667pt;}
.y1df{bottom:903.828000pt;}
.y2{bottom:905.797333pt;}
.yc8{bottom:907.626667pt;}
.y99{bottom:911.600000pt;}
.y1de{bottom:915.784000pt;}
.yc7{bottom:923.568000pt;}
.y98{bottom:927.540000pt;}
.y1dd{bottom:927.738667pt;}
.yc6{bottom:939.508000pt;}
.y1dc{bottom:939.694667pt;}
.y1{bottom:942.992000pt;}
.y97{bottom:943.480000pt;}
.y96{bottom:959.420000pt;}
.h27{height:1.598939pt;}
.h26{height:2.558318pt;}
.h25{height:2.878090pt;}
.h1f{height:8.490317pt;}
.h20{height:10.612896pt;}
.h18{height:11.749200pt;}
.h1c{height:11.749333pt;}
.h22{height:13.244815pt;}
.h14{height:17.746711pt;}
.h10{height:18.008232pt;}
.h11{height:18.479009pt;}
.h23{height:18.542741pt;}
.h8{height:21.933807pt;}
.hf{height:25.135160pt;}
.hd{height:25.421990pt;}
.h29{height:29.244917pt;}
.ha{height:31.729167pt;}
.h13{height:32.900710pt;}
.h6{height:33.091994pt;}
.h17{height:33.187635pt;}
.h5{height:33.426739pt;}
.h1b{height:36.086193pt;}
.h19{height:36.086573pt;}
.h1d{height:36.095031pt;}
.h15{height:36.290431pt;}
.h4{height:36.556100pt;}
.h1a{height:36.739177pt;}
.h16{height:36.768636pt;}
.h28{height:36.822767pt;}
.hb{height:38.937500pt;}
.h12{height:39.850400pt;}
.h2{height:40.211820pt;}
.h3{height:40.505154pt;}
.h9{height:40.520833pt;}
.h7{height:44.874530pt;}
.he{height:67.060700pt;}
.h1{height:87.734824pt;}
.h21{height:153.976320pt;}
.h1e{height:164.505600pt;}
.hc{height:176.310827pt;}
.h24{height:194.655214pt;}
.h0{height:1056.000000pt;}
.w2{width:11.749200pt;}
.w3{width:11.749333pt;}
.w5{width:128.313600pt;}
.w4{width:164.505600pt;}
.w6{width:311.305364pt;}
.w1{width:318.004730pt;}
.w0{width:816.000000pt;}
.x63{left:-21.389592pt;}
.x62{left:-19.068606pt;}
.x61{left:-15.104080pt;}
.x67{left:-2.573029pt;}
.x0{left:0.000000pt;}
.x37{left:1.676709pt;}
.x19{left:2.689386pt;}
.x68{left:4.626403pt;}
.x1d{left:5.646747pt;}
.x5a{left:7.700377pt;}
.x59{left:10.161949pt;}
.x18{left:13.082494pt;}
.x54{left:14.927064pt;}
.x53{left:18.744731pt;}
.x11{left:22.666667pt;}
.x52{left:23.844404pt;}
.x65{left:25.198011pt;}
.x51{left:28.944078pt;}
.x64{left:30.069725pt;}
.x55{left:31.130400pt;}
.x50{left:34.043751pt;}
.x4f{left:39.143425pt;}
.x66{left:40.714028pt;}
.x4e{left:44.243099pt;}
.x14{left:45.267805pt;}
.x4d{left:49.342772pt;}
.x15{left:53.708709pt;}
.x58{left:55.396613pt;}
.x10{left:60.000000pt;}
.x9{left:65.278667pt;}
.x30{left:67.638667pt;}
.x1c{left:69.075997pt;}
.x13{left:73.648000pt;}
.x4c{left:74.841140pt;}
.x3d{left:76.656000pt;}
.x8{left:78.562667pt;}
.x4b{left:79.940814pt;}
.x4a{left:85.040487pt;}
.x1{left:88.990667pt;}
.x49{left:90.140161pt;}
.x48{left:95.239835pt;}
.x12{left:98.306013pt;}
.x47{left:100.339508pt;}
.x5c{left:103.365740pt;}
.x46{left:105.439182pt;}
.x5b{left:108.305589pt;}
.x45{left:110.538855pt;}
.x21{left:112.224000pt;}
.x44{left:115.638529pt;}
.x43{left:120.738203pt;}
.x56{left:124.402667pt;}
.x42{left:125.837876pt;}
.x20{left:126.852000pt;}
.x41{left:130.937550pt;}
.x1b{left:132.175888pt;}
.x40{left:136.037223pt;}
.x28{left:139.552000pt;}
.x3f{left:141.136897pt;}
.x22{left:142.374667pt;}
.x3e{left:146.236571pt;}
.x23{left:149.848000pt;}
.x6{left:170.937333pt;}
.x2c{left:172.846667pt;}
.x3{left:175.589333pt;}
.xa{left:180.822667pt;}
.x1e{left:182.214009pt;}
.x29{left:183.890667pt;}
.x7{left:187.761333pt;}
.x2a{left:191.364000pt;}
.x1f{left:194.054988pt;}
.x24{left:215.564000pt;}
.x2{left:223.016000pt;}
.x16{left:225.460377pt;}
.x1a{left:254.009439pt;}
.x2b{left:257.081333pt;}
.x57{left:259.261333pt;}
.x25{left:266.160000pt;}
.x17{left:293.464756pt;}
.x69{left:296.875784pt;}
.x5f{left:302.370667pt;}
.x26{left:308.301333pt;}
.x6a{left:312.339204pt;}
.x27{left:313.261333pt;}
.x6b{left:382.322667pt;}
.x2f{left:395.279987pt;}
.xc{left:415.970667pt;}
.x6d{left:421.284000pt;}
.xf{left:426.597333pt;}
.xd{left:429.253333pt;}
.x2d{left:436.250667pt;}
.x6e{left:440.316000pt;}
.x3b{left:442.018667pt;}
.x3c{left:458.417333pt;}
.x2e{left:464.028000pt;}
.x32{left:489.373333pt;}
.x60{left:500.152000pt;}
.x33{left:501.122667pt;}
.xb{left:522.560000pt;}
.xe{left:532.250667pt;}
.x31{left:536.993333pt;}
.x6c{left:546.152000pt;}
.x4{left:566.493333pt;}
.x36{left:575.252000pt;}
.x38{left:591.192000pt;}
.x5d{left:592.930667pt;}
.x5e{left:605.897333pt;}
.x5{left:619.476000pt;}
.x39{left:646.798667pt;}
.x3a{left:658.548000pt;}
.x34{left:696.572000pt;}
.x35{left:712.345333pt;}
}




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