
    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_c4b4319dd3c5364fd355952b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fad5cdf27c6df125262832c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_443b39ff5149a5f595498a66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_d349db4bba4b082f9ab11f9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_c7a9a8d30f5664cfd7c22f53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_f5a13297ceaa4b3658375712.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.968000;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_1cade34ef9ee201575cf849b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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_817785042ec7bc7f03a780c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.038000;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_4a249cafc8eb1ff6cf632a95.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120000;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_8942d3ced3fbe7e7e0ff9274.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.038000;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_b21c541bbb37a93215c1fb3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.038000;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_4a249cafc8eb1ff6cf632a95.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.120000;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_c25a3d3a6693387553a20b8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.711000;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_5703af7d71a4ac799720d382.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.034000;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.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);}
.m3{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.620000px;}
.v1{vertical-align:23.976000px;}
.ls3d{letter-spacing:-7.200000px;}
.ls20{letter-spacing:-5.832000px;}
.ls3a{letter-spacing:-4.824000px;}
.ls28{letter-spacing:-4.752000px;}
.ls3e{letter-spacing:-4.464000px;}
.ls3c{letter-spacing:-4.032000px;}
.ls12{letter-spacing:-3.064248px;}
.ls39{letter-spacing:-2.304000px;}
.ls37{letter-spacing:-2.232000px;}
.ls1f{letter-spacing:-2.224728px;}
.ls17{letter-spacing:-2.014848px;}
.ls1c{letter-spacing:-1.846944px;}
.ls1a{letter-spacing:-1.511136px;}
.ls19{letter-spacing:-1.469160px;}
.ls1d{letter-spacing:-1.385208px;}
.ls34{letter-spacing:-1.368000px;}
.ls21{letter-spacing:-1.133352px;}
.ls13{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.923472px;}
.ls24{letter-spacing:-0.881496px;}
.ls2d{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.576000px;}
.ls32{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.335808px;}
.ls2b{letter-spacing:-0.293832px;}
.ls36{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.251856px;}
.ls7{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000667px;}
.ls5{letter-spacing:0.041688px;}
.ls8{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.209880px;}
.ls2{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.293832px;}
.ls15{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.419688px;}
.ls2c{letter-spacing:0.419760px;}
.ls16{letter-spacing:0.427333px;}
.ls10{letter-spacing:0.540000px;}
.lse{letter-spacing:0.595488px;}
.ls33{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.797544px;}
.ls2a{letter-spacing:1.134000px;}
.ls0{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.977360px;}
.lsc{letter-spacing:1.979143px;}
.lsd{letter-spacing:1.979229px;}
.ls4{letter-spacing:1.980000px;}
.ls22{letter-spacing:2.520000px;}
.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;}
}
.ws66{word-spacing:-18.144000px;}
.ws124{word-spacing:-18.000000px;}
.ws143{word-spacing:-17.928000px;}
.ws130{word-spacing:-17.856000px;}
.ws137{word-spacing:-17.784000px;}
.wsce{word-spacing:-17.568000px;}
.ws138{word-spacing:-17.496000px;}
.ws135{word-spacing:-17.424000px;}
.ws12f{word-spacing:-17.352000px;}
.ws145{word-spacing:-17.280000px;}
.ws136{word-spacing:-17.208000px;}
.ws141{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.500000px;}
.ws131{word-spacing:-15.840000px;}
.ws112{word-spacing:-15.624000px;}
.wse9{word-spacing:-15.552000px;}
.ws11d{word-spacing:-15.480000px;}
.ws139{word-spacing:-15.408000px;}
.ws10a{word-spacing:-15.336000px;}
.ws125{word-spacing:-15.264000px;}
.ws1e{word-spacing:-14.700000px;}
.ws144{word-spacing:-13.536000px;}
.ws4a{word-spacing:-13.527360px;}
.ws20{word-spacing:-13.500000px;}
.wsb8{word-spacing:-12.168000px;}
.ws21{word-spacing:-12.042000px;}
.ws1d{word-spacing:-11.550000px;}
.ws114{word-spacing:-11.340000px;}
.wse8{word-spacing:-11.291544px;}
.ws109{word-spacing:-10.913760px;}
.ws142{word-spacing:-10.800000px;}
.wse7{word-spacing:-10.787832px;}
.wscf{word-spacing:-10.703880px;}
.ws1f{word-spacing:-10.494000px;}
.ws113{word-spacing:-10.242144px;}
.wsf7{word-spacing:-10.200168px;}
.ws111{word-spacing:-10.158192px;}
.wsdc{word-spacing:-9.612504px;}
.ws67{word-spacing:-9.570528px;}
.wsb9{word-spacing:-9.360648px;}
.ws9f{word-spacing:-9.108792px;}
.ws85{word-spacing:-9.024840px;}
.ws9d{word-spacing:-8.982864px;}
.ws9e{word-spacing:-8.647056px;}
.ws84{word-spacing:-8.479152px;}
.wsb7{word-spacing:-8.269272px;}
.ws68{word-spacing:-7.429752px;}
.ws134{word-spacing:-4.320000px;}
.wsa8{word-spacing:-4.176000px;}
.wse1{word-spacing:-4.104000px;}
.ws106{word-spacing:-3.888000px;}
.ws12e{word-spacing:-3.672000px;}
.ws34{word-spacing:-3.600000px;}
.ws8{word-spacing:-3.564000px;}
.ws7d{word-spacing:-3.528000px;}
.wsa9{word-spacing:-3.384000px;}
.wse3{word-spacing:-3.312000px;}
.ws1c{word-spacing:-3.300000px;}
.ws118{word-spacing:-3.240000px;}
.wse0{word-spacing:-3.168000px;}
.wsd1{word-spacing:-3.096000px;}
.wse6{word-spacing:-2.952000px;}
.ws14c{word-spacing:-2.940000px;}
.wsf6{word-spacing:-2.916000px;}
.wse4{word-spacing:-2.880000px;}
.ws4d{word-spacing:-2.808000px;}
.ws126{word-spacing:-2.736000px;}
.wsb3{word-spacing:-2.664000px;}
.ws79{word-spacing:-2.592000px;}
.wsd0{word-spacing:-2.520000px;}
.ws46{word-spacing:-2.484000px;}
.wsd2{word-spacing:-2.448000px;}
.wse{word-spacing:-2.442000px;}
.ws7c{word-spacing:-2.376000px;}
.ws5b{word-spacing:-2.304000px;}
.wsdb{word-spacing:-2.268000px;}
.ws7f{word-spacing:-2.232000px;}
.ws98{word-spacing:-2.214000px;}
.ws26{word-spacing:-2.160000px;}
.wsbf{word-spacing:-2.088000px;}
.ws3f{word-spacing:-2.052000px;}
.ws31{word-spacing:-2.016000px;}
.ws5{word-spacing:-1.968000px;}
.wsb2{word-spacing:-1.944000px;}
.wsaf{word-spacing:-1.890000px;}
.ws6d{word-spacing:-1.872000px;}
.ws10d{word-spacing:-1.860000px;}
.ws48{word-spacing:-1.836000px;}
.wsa0{word-spacing:-1.800000px;}
.wsf5{word-spacing:-1.782000px;}
.wsd6{word-spacing:-1.740000px;}
.ws4{word-spacing:-1.728000px;}
.wsd5{word-spacing:-1.680000px;}
.wsd3{word-spacing:-1.656000px;}
.wsd{word-spacing:-1.620000px;}
.ws1a{word-spacing:-1.584000px;}
.ws3a{word-spacing:-1.566000px;}
.ws3c{word-spacing:-1.512000px;}
.wsd4{word-spacing:-1.500000px;}
.ws6a{word-spacing:-1.440000px;}
.ws14f{word-spacing:-1.380000px;}
.ws11a{word-spacing:-1.368000px;}
.wsed{word-spacing:-1.320000px;}
.ws77{word-spacing:-1.296000px;}
.ws129{word-spacing:-1.224000px;}
.wsfd{word-spacing:-1.200000px;}
.ws60{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.152000px;}
.wsfc{word-spacing:-1.140000px;}
.ws9a{word-spacing:-1.080000px;}
.wsf1{word-spacing:-1.020000px;}
.wsc9{word-spacing:-1.008000px;}
.wsf4{word-spacing:-0.972000px;}
.wsf2{word-spacing:-0.960000px;}
.wsa5{word-spacing:-0.936000px;}
.ws38{word-spacing:-0.918000px;}
.ws14d{word-spacing:-0.900000px;}
.ws37{word-spacing:-0.864000px;}
.ws29{word-spacing:-0.792000px;}
.ws61{word-spacing:-0.756000px;}
.ws78{word-spacing:-0.720000px;}
.ws45{word-spacing:-0.702000px;}
.ws10e{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.648000px;}
.ws123{word-spacing:-0.600000px;}
.ws6e{word-spacing:-0.576000px;}
.ws65{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.504000px;}
.ws2{word-spacing:-0.480000px;}
.ws107{word-spacing:-0.432000px;}
.ws40{word-spacing:-0.378000px;}
.ws76{word-spacing:-0.360000px;}
.ws83{word-spacing:-0.324000px;}
.wsf3{word-spacing:-0.300000px;}
.wse2{word-spacing:-0.288000px;}
.ws97{word-spacing:-0.270000px;}
.ws3{word-spacing:-0.240000px;}
.wsb1{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.198000px;}
.ws35{word-spacing:-0.162000px;}
.wseb{word-spacing:-0.144000px;}
.ws105{word-spacing:-0.120000px;}
.ws3b{word-spacing:-0.108000px;}
.wsb4{word-spacing:-0.072000px;}
.ws121{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws43{word-spacing:0.054000px;}
.ws14e{word-spacing:0.060000px;}
.ws10f{word-spacing:0.072000px;}
.ws9b{word-spacing:0.108000px;}
.wsff{word-spacing:0.120000px;}
.ws11{word-spacing:0.132000px;}
.wsea{word-spacing:0.144000px;}
.ws44{word-spacing:0.162000px;}
.ws89{word-spacing:0.216000px;}
.wsad{word-spacing:0.270000px;}
.ws27{word-spacing:0.288000px;}
.wsde{word-spacing:0.360000px;}
.ws11b{word-spacing:0.378000px;}
.ws14{word-spacing:0.396000px;}
.wsd7{word-spacing:0.420000px;}
.ws39{word-spacing:0.432000px;}
.ws100{word-spacing:0.480000px;}
.ws47{word-spacing:0.486000px;}
.wsb5{word-spacing:0.504000px;}
.ws9c{word-spacing:0.540000px;}
.wsa1{word-spacing:0.576000px;}
.ws80{word-spacing:0.594000px;}
.ws93{word-spacing:0.648000px;}
.ws74{word-spacing:0.720000px;}
.ws41{word-spacing:0.756000px;}
.ws69{word-spacing:0.792000px;}
.ws103{word-spacing:0.840000px;}
.wscd{word-spacing:0.864000px;}
.ws104{word-spacing:0.900000px;}
.ws7b{word-spacing:0.936000px;}
.ws57{word-spacing:1.008000px;}
.ws151{word-spacing:1.020000px;}
.ws62{word-spacing:1.026000px;}
.wsab{word-spacing:1.080000px;}
.ws4c{word-spacing:1.152000px;}
.ws96{word-spacing:1.188000px;}
.wsc4{word-spacing:1.224000px;}
.ws42{word-spacing:1.242000px;}
.ws24{word-spacing:1.296000px;}
.ws3d{word-spacing:1.350000px;}
.ws58{word-spacing:1.368000px;}
.ws63{word-spacing:1.404000px;}
.wsc1{word-spacing:1.440000px;}
.ws10{word-spacing:1.452000px;}
.ws73{word-spacing:1.512000px;}
.wsa{word-spacing:1.536000px;}
.ws32{word-spacing:1.584000px;}
.wsb0{word-spacing:1.620000px;}
.wsbc{word-spacing:1.656000px;}
.wsf9{word-spacing:1.680000px;}
.ws12{word-spacing:1.716000px;}
.ws92{word-spacing:1.728000px;}
.wsa3{word-spacing:1.800000px;}
.ws102{word-spacing:1.860000px;}
.wsd8{word-spacing:1.872000px;}
.ws116{word-spacing:1.920000px;}
.ws2a{word-spacing:1.944000px;}
.wsfa{word-spacing:1.980000px;}
.wsdd{word-spacing:2.016000px;}
.ws117{word-spacing:2.040000px;}
.ws95{word-spacing:2.052000px;}
.wsc3{word-spacing:2.088000px;}
.wsb{word-spacing:2.112000px;}
.wsbd{word-spacing:2.160000px;}
.ws1b{word-spacing:2.178000px;}
.ws82{word-spacing:2.214000px;}
.ws2c{word-spacing:2.232000px;}
.ws11c{word-spacing:2.268000px;}
.ws10c{word-spacing:2.280000px;}
.ws86{word-spacing:2.304000px;}
.wsc5{word-spacing:2.322000px;}
.ws8f{word-spacing:2.376000px;}
.ws72{word-spacing:2.448000px;}
.wsf8{word-spacing:2.460000px;}
.ws3e{word-spacing:2.484000px;}
.ws59{word-spacing:2.520000px;}
.ws101{word-spacing:2.580000px;}
.ws122{word-spacing:2.640000px;}
.ws7e{word-spacing:2.664000px;}
.ws6f{word-spacing:2.736000px;}
.wsaa{word-spacing:2.808000px;}
.ws2e{word-spacing:2.880000px;}
.ws22{word-spacing:2.952000px;}
.wsae{word-spacing:3.024000px;}
.ws2d{word-spacing:3.096000px;}
.ws6b{word-spacing:3.168000px;}
.wsc2{word-spacing:3.240000px;}
.ws5a{word-spacing:3.312000px;}
.ws54{word-spacing:3.384000px;}
.wsee{word-spacing:3.420000px;}
.wsd9{word-spacing:3.456000px;}
.wsa4{word-spacing:3.528000px;}
.ws2f{word-spacing:3.600000px;}
.ws99{word-spacing:3.618000px;}
.ws110{word-spacing:3.672000px;}
.wsca{word-spacing:3.744000px;}
.wsef{word-spacing:3.780000px;}
.ws33{word-spacing:3.816000px;}
.ws108{word-spacing:3.888000px;}
.ws64{word-spacing:3.942000px;}
.ws2b{word-spacing:3.960000px;}
.ws88{word-spacing:4.032000px;}
.wsfe{word-spacing:4.080000px;}
.wse5{word-spacing:4.104000px;}
.ws70{word-spacing:4.176000px;}
.ws81{word-spacing:4.212000px;}
.ws12a{word-spacing:4.248000px;}
.ws55{word-spacing:4.320000px;}
.ws5e{word-spacing:4.392000px;}
.ws19{word-spacing:4.422000px;}
.wsc6{word-spacing:4.428000px;}
.ws23{word-spacing:4.464000px;}
.ws13e{word-spacing:4.536000px;}
.wsfb{word-spacing:4.560000px;}
.ws5f{word-spacing:4.608000px;}
.ws36{word-spacing:4.644000px;}
.ws10b{word-spacing:4.680000px;}
.ws4e{word-spacing:4.752000px;}
.ws28{word-spacing:4.824000px;}
.wscc{word-spacing:4.896000px;}
.ws133{word-spacing:4.968000px;}
.wsdf{word-spacing:5.040000px;}
.ws119{word-spacing:5.112000px;}
.ws8b{word-spacing:5.184000px;}
.ws6c{word-spacing:5.256000px;}
.ws4b{word-spacing:5.400000px;}
.ws140{word-spacing:5.472000px;}
.ws132{word-spacing:5.544000px;}
.ws91{word-spacing:5.616000px;}
.ws120{word-spacing:5.760000px;}
.wsc{word-spacing:5.808000px;}
.ws11f{word-spacing:5.832000px;}
.ws12c{word-spacing:5.904000px;}
.ws5c{word-spacing:5.976000px;}
.ws49{word-spacing:5.994000px;}
.wscb{word-spacing:6.048000px;}
.wsf{word-spacing:6.072000px;}
.wsac{word-spacing:6.192000px;}
.wsbe{word-spacing:6.264000px;}
.ws8c{word-spacing:6.336000px;}
.ws15{word-spacing:6.402000px;}
.ws8e{word-spacing:6.408000px;}
.wsf0{word-spacing:6.480000px;}
.ws94{word-spacing:6.588000px;}
.wsbb{word-spacing:6.624000px;}
.ws14a{word-spacing:6.696000px;}
.wsec{word-spacing:6.768000px;}
.ws13f{word-spacing:6.912000px;}
.ws30{word-spacing:6.984000px;}
.wsc7{word-spacing:7.056000px;}
.ws75{word-spacing:7.128000px;}
.ws7a{word-spacing:7.200000px;}
.ws13c{word-spacing:7.272000px;}
.ws13b{word-spacing:7.488000px;}
.wsc0{word-spacing:7.560000px;}
.ws71{word-spacing:7.632000px;}
.wsb6{word-spacing:7.704000px;}
.ws4f{word-spacing:7.776000px;}
.ws128{word-spacing:7.848000px;}
.ws5d{word-spacing:7.992000px;}
.ws13d{word-spacing:8.064000px;}
.ws127{word-spacing:8.136000px;}
.wsba{word-spacing:8.208000px;}
.ws11e{word-spacing:8.352000px;}
.ws16{word-spacing:8.448000px;}
.ws115{word-spacing:8.460000px;}
.ws51{word-spacing:8.568000px;}
.ws12d{word-spacing:8.640000px;}
.ws56{word-spacing:8.712000px;}
.ws90{word-spacing:8.856000px;}
.ws150{word-spacing:8.880000px;}
.wsa7{word-spacing:8.928000px;}
.ws52{word-spacing:9.000000px;}
.wsa6{word-spacing:9.072000px;}
.ws53{word-spacing:9.144000px;}
.wsa2{word-spacing:9.288000px;}
.ws8a{word-spacing:9.360000px;}
.ws12b{word-spacing:9.504000px;}
.ws13a{word-spacing:9.720000px;}
.wsda{word-spacing:10.008000px;}
.ws17{word-spacing:10.362000px;}
.ws14b{word-spacing:10.380000px;}
.wsc8{word-spacing:10.584000px;}
.ws50{word-spacing:12.024000px;}
.ws147{word-spacing:12.744000px;}
.ws146{word-spacing:14.184000px;}
.ws148{word-spacing:14.832000px;}
.ws9{word-spacing:15.540000px;}
.ws18{word-spacing:15.840000px;}
.ws7{word-spacing:27.756000px;}
.ws149{word-spacing:45.360000px;}
._13{margin-left:-19.317000px;}
._e{margin-left:-9.616800px;}
._11{margin-left:-8.503200px;}
._5{margin-left:-6.740400px;}
._10{margin-left:-5.601600px;}
._2{margin-left:-4.584600px;}
._6{margin-left:-3.550200px;}
._0{margin-left:-2.365200px;}
._3{margin-left:-1.053000px;}
._1{width:1.555200px;}
._4{width:2.687400px;}
._7{width:4.219200px;}
._15{width:5.239800px;}
._8{width:6.258600px;}
._14{width:7.590600px;}
._d{width:9.558000px;}
._9{width:11.016000px;}
._a{width:12.744000px;}
._f{width:14.461200px;}
._b{width:15.984000px;}
._12{width:2973.193714px;}
._c{width:3020.820000px;}
.fc3{color:transparent;}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(75,71,72);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(217,217,217);}
.fsa{font-size:41.976000px;}
.fs7{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:50.400000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:57.083100px;}
.y2f{bottom:70.851000px;}
.y2d{bottom:72.083100px;}
.y5{bottom:73.964100px;}
.y4{bottom:102.764100px;}
.y2b{bottom:103.500000px;}
.y91{bottom:105.000000px;}
.y62{bottom:105.000150px;}
.yd6{bottom:105.120150px;}
.yc3{bottom:105.641400px;}
.y1ad{bottom:105.744300px;}
.y195{bottom:106.344300px;}
.y3{bottom:117.164100px;}
.y90{bottom:121.200000px;}
.y61{bottom:121.200150px;}
.y1df{bottom:125.244300px;}
.y203{bottom:126.444150px;}
.yd5{bottom:126.720300px;}
.yc2{bottom:127.241400px;}
.y1ac{bottom:127.344300px;}
.y194{bottom:127.944150px;}
.y60{bottom:137.400150px;}
.y8f{bottom:141.900000px;}
.yf0{bottom:141.900300px;}
.y150{bottom:145.920300px;}
.y1de{bottom:146.844300px;}
.y10d{bottom:147.300000px;}
.y202{bottom:148.044300px;}
.yd4{bottom:148.320150px;}
.yc1{bottom:148.841400px;}
.y1ab{bottom:148.944150px;}
.y193{bottom:149.544300px;}
.y5f{bottom:153.600150px;}
.y8e{bottom:158.100000px;}
.y121{bottom:158.100300px;}
.y163{bottom:166.344300px;}
.y14f{bottom:167.520150px;}
.y1dd{bottom:168.444150px;}
.y10c{bottom:168.900000px;}
.y201{bottom:169.644300px;}
.y5e{bottom:169.800150px;}
.yd3{bottom:169.920300px;}
.yc0{bottom:170.441400px;}
.y1aa{bottom:170.544300px;}
.y192{bottom:171.144300px;}
.y1b7{bottom:172.044300px;}
.y97{bottom:174.300300px;}
.y8d{bottom:178.800000px;}
.ya3{bottom:186.000150px;}
.y162{bottom:187.944150px;}
.y14e{bottom:189.120150px;}
.y10b{bottom:190.500000px;}
.y5d{bottom:190.500300px;}
.y200{bottom:191.244300px;}
.yd2{bottom:191.520150px;}
.y1dc{bottom:191.544300px;}
.ybf{bottom:192.041400px;}
.y1a9{bottom:192.144300px;}
.y191{bottom:192.744300px;}
.y1b6{bottom:193.644300px;}
.y8c{bottom:195.000000px;}
.ya2{bottom:202.200150px;}
.y5c{bottom:206.700300px;}
.y161{bottom:209.544300px;}
.y14d{bottom:210.720300px;}
.y8b{bottom:211.200000px;}
.y10a{bottom:212.100000px;}
.yd1{bottom:213.120150px;}
.y1db{bottom:213.144300px;}
.ybe{bottom:213.641400px;}
.y1a8{bottom:213.744300px;}
.y1ff{bottom:214.344300px;}
.y1b5{bottom:215.244300px;}
.y190{bottom:217.344300px;}
.ya1{bottom:218.400150px;}
.y96{bottom:218.544300px;}
.y180{bottom:221.544300px;}
.y5b{bottom:222.900300px;}
.yef{bottom:226.344300px;}
.y120{bottom:229.344300px;}
.y160{bottom:231.144300px;}
.y8a{bottom:231.900000px;}
.y14c{bottom:232.320150px;}
.y109{bottom:233.700000px;}
.ya0{bottom:234.600150px;}
.yd0{bottom:234.720300px;}
.y1da{bottom:234.744300px;}
.ybd{bottom:235.241400px;}
.y18f{bottom:235.344300px;}
.y1fe{bottom:235.944150px;}
.y2a{bottom:237.000000px;}
.y1b4{bottom:238.344300px;}
.y5a{bottom:239.100300px;}
.y95{bottom:240.144300px;}
.y17f{bottom:243.144300px;}
.yee{bottom:247.944150px;}
.y89{bottom:248.100000px;}
.y9f{bottom:250.800150px;}
.y11f{bottom:250.944150px;}
.y15f{bottom:252.744300px;}
.y18e{bottom:253.344300px;}
.y14b{bottom:253.920300px;}
.y108{bottom:255.300000px;}
.ya5{bottom:255.300300px;}
.ycf{bottom:256.320150px;}
.ybc{bottom:256.841400px;}
.y1a7{bottom:256.944150px;}
.y1d9{bottom:257.844300px;}
.y29{bottom:258.000000px;}
.y1fd{bottom:259.044300px;}
.y59{bottom:259.800450px;}
.y1b3{bottom:259.944150px;}
.y94{bottom:261.744300px;}
.y88{bottom:264.300000px;}
.y17e{bottom:264.744300px;}
.y9e{bottom:267.000150px;}
.yed{bottom:269.544300px;}
.y18d{bottom:271.344300px;}
.ya4{bottom:271.500300px;}
.y15e{bottom:274.344300px;}
.y14a{bottom:275.520150px;}
.y58{bottom:276.000450px;}
.y107{bottom:276.900000px;}
.y11e{bottom:277.044300px;}
.yce{bottom:277.920300px;}
.ybb{bottom:278.441400px;}
.y1a6{bottom:278.544300px;}
.y1d8{bottom:279.444150px;}
.y87{bottom:280.500000px;}
.y1fc{bottom:280.644300px;}
.y1b2{bottom:283.044300px;}
.y93{bottom:283.344300px;}
.y17d{bottom:286.344300px;}
.y9d{bottom:287.700300px;}
.y18c{bottom:289.344300px;}
.yec{bottom:291.144300px;}
.y57{bottom:292.200450px;}
.y11d{bottom:295.044300px;}
.y15d{bottom:295.944150px;}
.y149{bottom:297.120150px;}
.y106{bottom:298.500000px;}
.ycd{bottom:299.520150px;}
.y28{bottom:300.000000px;}
.yba{bottom:300.041400px;}
.y1a5{bottom:300.144300px;}
.y1fb{bottom:302.244300px;}
.y1d7{bottom:302.544300px;}
.y9c{bottom:303.900300px;}
.y1b1{bottom:304.644300px;}
.y92{bottom:304.944150px;}
.y18b{bottom:307.344300px;}
.y17c{bottom:307.944150px;}
.y56{bottom:308.400450px;}
.yeb{bottom:312.744300px;}
.y11c{bottom:313.044300px;}
.y15c{bottom:317.544300px;}
.y148{bottom:318.720300px;}
.y105{bottom:320.100000px;}
.y27{bottom:321.000000px;}
.ycc{bottom:321.120150px;}
.yb9{bottom:321.641400px;}
.y1a4{bottom:321.744300px;}
.y1fa{bottom:323.844300px;}
.y1d6{bottom:324.144300px;}
.y55{bottom:324.600450px;}
.y18a{bottom:325.344300px;}
.y86{bottom:326.544300px;}
.y1b0{bottom:327.744300px;}
.y1{bottom:329.485500px;}
.y11b{bottom:331.044300px;}
.yea{bottom:334.344300px;}
.y17b{bottom:338.544300px;}
.y15b{bottom:339.144300px;}
.y147{bottom:340.320150px;}
.y54{bottom:340.800450px;}
.y104{bottom:341.700000px;}
.y26{bottom:342.000000px;}
.ycb{bottom:342.720150px;}
.yb8{bottom:343.241400px;}
.y9b{bottom:343.344300px;}
.y189{bottom:346.344300px;}
.y1f9{bottom:346.944300px;}
.y1d5{bottom:347.244300px;}
.y85{bottom:348.144300px;}
.y1af{bottom:349.344300px;}
.y11a{bottom:353.544300px;}
.ye9{bottom:355.944300px;}
.y15a{bottom:360.744300px;}
.y53{bottom:361.500600px;}
.y146{bottom:361.920300px;}
.y25{bottom:363.000000px;}
.y103{bottom:363.300000px;}
.yca{bottom:364.320150px;}
.yb7{bottom:364.841400px;}
.y9a{bottom:364.944300px;}
.y188{bottom:367.944300px;}
.y1f8{bottom:368.544300px;}
.y1d4{bottom:368.844300px;}
.y84{bottom:369.744300px;}
.y119{bottom:375.144300px;}
.ye8{bottom:377.544300px;}
.y52{bottom:377.700600px;}
.y1ae{bottom:378.444300px;}
.y159{bottom:382.344300px;}
.y145{bottom:383.520150px;}
.y24{bottom:384.000000px;}
.y102{bottom:384.900000px;}
.yc9{bottom:385.920300px;}
.yb6{bottom:386.441400px;}
.y99{bottom:386.544300px;}
.y187{bottom:389.544300px;}
.y1f7{bottom:390.144300px;}
.y83{bottom:391.344300px;}
.y1d3{bottom:391.944300px;}
.y118{bottom:396.744300px;}
.y51{bottom:398.400750px;}
.ye7{bottom:399.144300px;}
.y158{bottom:403.944300px;}
.y23{bottom:405.000000px;}
.y144{bottom:405.120150px;}
.y101{bottom:406.500000px;}
.yc8{bottom:407.520150px;}
.yb5{bottom:408.041400px;}
.y1a3{bottom:408.144300px;}
.y186{bottom:411.144300px;}
.y82{bottom:412.944300px;}
.y1f6{bottom:413.244300px;}
.y1d2{bottom:413.544300px;}
.y50{bottom:414.600750px;}
.y117{bottom:418.344300px;}
.y98{bottom:420.144300px;}
.ye6{bottom:420.744300px;}
.y157{bottom:425.544300px;}
.y22{bottom:426.000000px;}
.y143{bottom:426.720150px;}
.y100{bottom:428.100000px;}
.yb4{bottom:429.641400px;}
.y1a2{bottom:429.744300px;}
.y4f{bottom:430.800750px;}
.y185{bottom:432.744300px;}
.y81{bottom:434.544300px;}
.y1f5{bottom:434.844300px;}
.y1d1{bottom:435.144300px;}
.y116{bottom:439.944300px;}
.ye5{bottom:442.344300px;}
.yc7{bottom:442.620150px;}
.y21{bottom:447.000000px;}
.y4e{bottom:447.000750px;}
.y142{bottom:448.320150px;}
.y213{bottom:448.644300px;}
.yff{bottom:449.700000px;}
.yb3{bottom:451.241400px;}
.y1a1{bottom:451.344300px;}
.y156{bottom:451.644300px;}
.y184{bottom:454.344300px;}
.y80{bottom:456.144300px;}
.y1d0{bottom:456.744300px;}
.yc6{bottom:457.620150px;}
.y1f4{bottom:457.944300px;}
.y115{bottom:461.544300px;}
.y4d{bottom:463.200750px;}
.y17a{bottom:463.944300px;}
.y212{bottom:466.644300px;}
.y155{bottom:469.644300px;}
.y141{bottom:469.920300px;}
.yfe{bottom:471.300000px;}
.yb2{bottom:472.841400px;}
.y1a0{bottom:472.944300px;}
.ye4{bottom:475.944300px;}
.y7f{bottom:477.744300px;}
.y4c{bottom:479.400750px;}
.y1f3{bottom:479.544300px;}
.y1cf{bottom:479.844300px;}
.y114{bottom:483.144300px;}
.y211{bottom:484.644300px;}
.y179{bottom:485.544300px;}
.y154{bottom:487.644300px;}
.y20{bottom:489.000000px;}
.y140{bottom:491.520150px;}
.yfd{bottom:492.900000px;}
.yb1{bottom:494.441400px;}
.y19f{bottom:494.544300px;}
.y4b{bottom:495.600750px;}
.y183{bottom:497.544300px;}
.y7e{bottom:499.344300px;}
.y1ce{bottom:501.444300px;}
.y1f2{bottom:502.644300px;}
.y113{bottom:504.744300px;}
.y153{bottom:505.644300px;}
.y178{bottom:507.144300px;}
.y4a{bottom:511.800750px;}
.ye3{bottom:511.944300px;}
.y13f{bottom:513.120150px;}
.yfc{bottom:514.500000px;}
.yb0{bottom:516.041400px;}
.y19e{bottom:516.144300px;}
.y182{bottom:519.144300px;}
.y210{bottom:520.644300px;}
.y7d{bottom:520.944300px;}
.y152{bottom:523.644300px;}
.y1f1{bottom:524.244300px;}
.y1cd{bottom:524.544300px;}
.y112{bottom:526.344300px;}
.y49{bottom:528.000750px;}
.y177{bottom:528.744300px;}
.y1f{bottom:531.000000px;}
.ye2{bottom:533.544300px;}
.y13e{bottom:534.720150px;}
.yfb{bottom:536.100000px;}
.yaf{bottom:537.641400px;}
.y19d{bottom:537.744300px;}
.y20f{bottom:538.644300px;}
.y151{bottom:541.644300px;}
.y7c{bottom:542.544300px;}
.y1cc{bottom:546.144300px;}
.y1f0{bottom:547.344300px;}
.y181{bottom:548.244300px;}
.y48{bottom:548.700900px;}
.y176{bottom:550.344300px;}
.y1e{bottom:552.000000px;}
.y111{bottom:552.444300px;}
.ye1{bottom:555.144300px;}
.y13d{bottom:556.320150px;}
.y20e{bottom:556.644300px;}
.yfa{bottom:557.700000px;}
.yae{bottom:559.241400px;}
.y19c{bottom:559.344300px;}
.y7b{bottom:564.144300px;}
.y47{bottom:564.900900px;}
.y1cb{bottom:567.744300px;}
.y1ef{bottom:568.944300px;}
.y110{bottom:570.444300px;}
.y175{bottom:571.944300px;}
.y20d{bottom:574.644300px;}
.ye0{bottom:576.744300px;}
.y13c{bottom:577.920300px;}
.yf9{bottom:579.300000px;}
.yad{bottom:580.841400px;}
.y19b{bottom:580.944300px;}
.y46{bottom:581.100900px;}
.y7a{bottom:585.744300px;}
.y10f{bottom:588.444300px;}
.y1ca{bottom:590.844300px;}
.y20c{bottom:592.644300px;}
.y174{bottom:593.544300px;}
.y1d{bottom:594.000000px;}
.y45{bottom:597.300900px;}
.ydf{bottom:598.344300px;}
.yf8{bottom:600.900000px;}
.yac{bottom:602.441400px;}
.y19a{bottom:602.544300px;}
.y13b{bottom:604.020150px;}
.y1ee{bottom:604.044300px;}
.y10e{bottom:606.444300px;}
.y79{bottom:607.344300px;}
.y20b{bottom:610.644300px;}
.y1c9{bottom:613.944300px;}
.y1c{bottom:615.000000px;}
.y173{bottom:615.144300px;}
.yde{bottom:619.944300px;}
.y13a{bottom:622.020150px;}
.yf7{bottom:622.500000px;}
.yab{bottom:624.041400px;}
.y199{bottom:624.144300px;}
.y20a{bottom:628.644300px;}
.y78{bottom:628.944300px;}
.y1c8{bottom:635.544300px;}
.y1b{bottom:636.000000px;}
.y44{bottom:636.468300px;}
.y172{bottom:636.744300px;}
.y139{bottom:640.020150px;}
.y1ed{bottom:640.044300px;}
.ydd{bottom:641.544300px;}
.yf6{bottom:644.100000px;}
.yaa{bottom:645.641400px;}
.y198{bottom:645.744300px;}
.y209{bottom:646.644300px;}
.y77{bottom:650.544300px;}
.y1a{bottom:657.000000px;}
.y138{bottom:658.020150px;}
.y43{bottom:658.068300px;}
.y1c7{bottom:658.644300px;}
.y1ec{bottom:661.644300px;}
.y208{bottom:664.644300px;}
.yf5{bottom:665.700000px;}
.ya9{bottom:667.241400px;}
.y197{bottom:667.344300px;}
.ydc{bottom:667.644300px;}
.y171{bottom:670.344300px;}
.y76{bottom:672.144300px;}
.y137{bottom:676.020150px;}
.y19{bottom:678.000000px;}
.y42{bottom:679.668300px;}
.y1c6{bottom:681.744300px;}
.y207{bottom:682.644300px;}
.y1eb{bottom:684.744300px;}
.ydb{bottom:685.644300px;}
.yf4{bottom:687.300000px;}
.y75{bottom:693.744300px;}
.y136{bottom:694.020150px;}
.y18{bottom:699.000000px;}
.ya8{bottom:700.841400px;}
.y196{bottom:700.944300px;}
.y41{bottom:701.268300px;}
.y1c5{bottom:703.344300px;}
.yda{bottom:703.644300px;}
.y170{bottom:706.344300px;}
.yf3{bottom:708.900000px;}
.y135{bottom:712.020150px;}
.y74{bottom:715.344300px;}
.y17{bottom:720.000000px;}
.yd9{bottom:721.644300px;}
.y40{bottom:722.868300px;}
.y1c4{bottom:724.944300px;}
.y16f{bottom:727.944300px;}
.y134{bottom:730.020150px;}
.y73{bottom:736.944300px;}
.yd8{bottom:739.644300px;}
.y16{bottom:741.000000px;}
.ya7{bottom:741.341400px;}
.y3f{bottom:744.468300px;}
.y133{bottom:748.020150px;}
.y1c3{bottom:748.044300px;}
.y16e{bottom:749.544300px;}
.y1ea{bottom:751.044300px;}
.yf2{bottom:751.500000px;}
.ya6{bottom:756.341400px;}
.yd7{bottom:757.644300px;}
.y72{bottom:758.544300px;}
.y2{bottom:760.199550px;}
.y15{bottom:762.000000px;}
.y132{bottom:766.020150px;}
.y3e{bottom:766.068300px;}
.yf1{bottom:766.500000px;}
.y16d{bottom:771.144300px;}
.y1e9{bottom:772.644300px;}
.yc5{bottom:778.620150px;}
.y71{bottom:780.144300px;}
.y131{bottom:784.020300px;}
.y3d{bottom:787.668300px;}
.y16c{bottom:792.744300px;}
.yc4{bottom:793.620150px;}
.y1e8{bottom:794.244300px;}
.y70{bottom:801.744300px;}
.y130{bottom:802.020300px;}
.y14{bottom:804.000000px;}
.y3c{bottom:809.268300px;}
.y16b{bottom:814.344300px;}
.y1e7{bottom:817.344300px;}
.y12f{bottom:820.020300px;}
.y6f{bottom:823.344300px;}
.y3b{bottom:830.868300px;}
.y12{bottom:835.938450px;}
.y16a{bottom:835.944150px;}
.y13{bottom:837.438450px;}
.y1c2{bottom:837.444150px;}
.y206{bottom:838.944150px;}
.y1e6{bottom:840.444150px;}
.y12e{bottom:842.520300px;}
.y6e{bottom:844.944150px;}
.y3a{bottom:852.468300px;}
.y1c1{bottom:859.044300px;}
.y169{bottom:862.044300px;}
.y12d{bottom:864.120150px;}
.y6d{bottom:866.544300px;}
.y39{bottom:874.068300px;}
.y11{bottom:876.438450px;}
.y168{bottom:880.044300px;}
.y1c0{bottom:880.644300px;}
.y1e5{bottom:883.644300px;}
.y12c{bottom:885.720150px;}
.y6c{bottom:888.144300px;}
.y10{bottom:889.938450px;}
.y38{bottom:895.668300px;}
.y167{bottom:898.044300px;}
.y1bf{bottom:902.244300px;}
.yf{bottom:903.438450px;}
.y1e4{bottom:905.244300px;}
.y12b{bottom:907.320150px;}
.y6b{bottom:909.744300px;}
.y166{bottom:916.044300px;}
.ye{bottom:916.938450px;}
.y37{bottom:917.268300px;}
.y1be{bottom:925.344300px;}
.y1e3{bottom:928.344300px;}
.y12a{bottom:928.920300px;}
.yd{bottom:930.438450px;}
.y6a{bottom:931.344300px;}
.y165{bottom:934.044300px;}
.y36{bottom:938.868300px;}
.y1bd{bottom:948.444150px;}
.y1e2{bottom:949.944150px;}
.y129{bottom:950.520150px;}
.y164{bottom:952.044300px;}
.y69{bottom:952.944150px;}
.y35{bottom:960.468300px;}
.y1bc{bottom:970.044300px;}
.y205{bottom:971.544300px;}
.y1e1{bottom:973.044300px;}
.y68{bottom:974.544300px;}
.y128{bottom:976.620150px;}
.yc{bottom:978.438450px;}
.y34{bottom:982.068300px;}
.y1bb{bottom:993.144300px;}
.y127{bottom:994.620150px;}
.y1e0{bottom:994.644300px;}
.y67{bottom:996.144300px;}
.yb{bottom:1000.938450px;}
.y33{bottom:1003.668300px;}
.y126{bottom:1012.620150px;}
.y1ba{bottom:1014.744300px;}
.y204{bottom:1016.244300px;}
.y66{bottom:1017.744300px;}
.y32{bottom:1025.268300px;}
.y125{bottom:1030.620150px;}
.y1b9{bottom:1037.844300px;}
.y65{bottom:1039.344300px;}
.ya{bottom:1041.438450px;}
.y31{bottom:1046.868300px;}
.y124{bottom:1048.620150px;}
.y1b8{bottom:1059.444150px;}
.y64{bottom:1060.944150px;}
.y123{bottom:1066.620150px;}
.y9{bottom:1069.938450px;}
.y30{bottom:1080.468300px;}
.y63{bottom:1082.544300px;}
.y122{bottom:1084.620150px;}
.y8{bottom:1109.665350px;}
.y2c{bottom:1119.887550px;}
.y7{bottom:1124.665350px;}
.y6{bottom:1139.665350px;}
.h9{height:33.600000px;}
.h4{height:37.800000px;}
.h3{height:40.752000px;}
.hf{height:42.000000px;}
.h5{height:45.846000px;}
.hc{height:49.921200px;}
.h11{height:50.400000px;}
.ha{height:50.940000px;}
.h8{height:56.034000px;}
.h7{height:58.800000px;}
.h10{height:59.832000px;}
.hd{height:61.128000px;}
.hb{height:71.316000px;}
.h6{height:75.600000px;}
.he{height:78.936000px;}
.h2{height:119.313000px;}
.h1{height:765.507000px;}
.h0{height:1200.000000px;}
.w1{width:48.397500px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x2{left:9.697950px;}
.x3{left:126.000000px;}
.x19{left:141.000000px;}
.x10{left:144.000000px;}
.x17{left:151.500000px;}
.x1a{left:180.000000px;}
.x4{left:190.200000px;}
.x11{left:208.329750px;}
.x12{left:214.747200px;}
.x13{left:244.288350px;}
.x9{left:246.711150px;}
.x15{left:250.956450px;}
.x16{left:258.880800px;}
.xb{left:304.550850px;}
.x14{left:318.486000px;}
.x18{left:335.309400px;}
.xe{left:377.181600px;}
.x6{left:394.812150px;}
.x5{left:397.873800px;}
.xd{left:469.500000px;}
.xa{left:577.340250px;}
.x7{left:579.107100px;}
.x8{left:588.670350px;}
.xc{left:601.011000px;}
.xf{left:662.822850px;}
.x1{left:765.715500px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.773333pt;}
.v1{vertical-align:21.312000pt;}
.ls3d{letter-spacing:-6.400000pt;}
.ls20{letter-spacing:-5.184000pt;}
.ls3a{letter-spacing:-4.288000pt;}
.ls28{letter-spacing:-4.224000pt;}
.ls3e{letter-spacing:-3.968000pt;}
.ls3c{letter-spacing:-3.584000pt;}
.ls12{letter-spacing:-2.723776pt;}
.ls39{letter-spacing:-2.048000pt;}
.ls37{letter-spacing:-1.984000pt;}
.ls1f{letter-spacing:-1.977536pt;}
.ls17{letter-spacing:-1.790976pt;}
.ls1c{letter-spacing:-1.641728pt;}
.ls1a{letter-spacing:-1.343232pt;}
.ls19{letter-spacing:-1.305920pt;}
.ls1d{letter-spacing:-1.231296pt;}
.ls34{letter-spacing:-1.216000pt;}
.ls21{letter-spacing:-1.007424pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.820864pt;}
.ls24{letter-spacing:-0.783552pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.298496pt;}
.ls2b{letter-spacing:-0.261184pt;}
.ls36{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.223872pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000593pt;}
.ls5{letter-spacing:0.037056pt;}
.ls8{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.186560pt;}
.ls2{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.261184pt;}
.ls15{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.373056pt;}
.ls2c{letter-spacing:0.373120pt;}
.ls16{letter-spacing:0.379852pt;}
.ls10{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.529323pt;}
.ls33{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.708928pt;}
.ls2a{letter-spacing:1.008000pt;}
.ls0{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.757653pt;}
.lsc{letter-spacing:1.759238pt;}
.lsd{letter-spacing:1.759314pt;}
.ls4{letter-spacing:1.760000pt;}
.ls22{letter-spacing:2.240000pt;}
.ws66{word-spacing:-16.128000pt;}
.ws124{word-spacing:-16.000000pt;}
.ws143{word-spacing:-15.936000pt;}
.ws130{word-spacing:-15.872000pt;}
.ws137{word-spacing:-15.808000pt;}
.wsce{word-spacing:-15.616000pt;}
.ws138{word-spacing:-15.552000pt;}
.ws135{word-spacing:-15.488000pt;}
.ws12f{word-spacing:-15.424000pt;}
.ws145{word-spacing:-15.360000pt;}
.ws136{word-spacing:-15.296000pt;}
.ws141{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws131{word-spacing:-14.080000pt;}
.ws112{word-spacing:-13.888000pt;}
.wse9{word-spacing:-13.824000pt;}
.ws11d{word-spacing:-13.760000pt;}
.ws139{word-spacing:-13.696000pt;}
.ws10a{word-spacing:-13.632000pt;}
.ws125{word-spacing:-13.568000pt;}
.ws1e{word-spacing:-13.066667pt;}
.ws144{word-spacing:-12.032000pt;}
.ws4a{word-spacing:-12.024320pt;}
.ws20{word-spacing:-12.000000pt;}
.wsb8{word-spacing:-10.816000pt;}
.ws21{word-spacing:-10.704000pt;}
.ws1d{word-spacing:-10.266667pt;}
.ws114{word-spacing:-10.080000pt;}
.wse8{word-spacing:-10.036928pt;}
.ws109{word-spacing:-9.701120pt;}
.ws142{word-spacing:-9.600000pt;}
.wse7{word-spacing:-9.589184pt;}
.wscf{word-spacing:-9.514560pt;}
.ws1f{word-spacing:-9.328000pt;}
.ws113{word-spacing:-9.104128pt;}
.wsf7{word-spacing:-9.066816pt;}
.ws111{word-spacing:-9.029504pt;}
.wsdc{word-spacing:-8.544448pt;}
.ws67{word-spacing:-8.507136pt;}
.wsb9{word-spacing:-8.320576pt;}
.ws9f{word-spacing:-8.096704pt;}
.ws85{word-spacing:-8.022080pt;}
.ws9d{word-spacing:-7.984768pt;}
.ws9e{word-spacing:-7.686272pt;}
.ws84{word-spacing:-7.537024pt;}
.wsb7{word-spacing:-7.350464pt;}
.ws68{word-spacing:-6.604224pt;}
.ws134{word-spacing:-3.840000pt;}
.wsa8{word-spacing:-3.712000pt;}
.wse1{word-spacing:-3.648000pt;}
.ws106{word-spacing:-3.456000pt;}
.ws12e{word-spacing:-3.264000pt;}
.ws34{word-spacing:-3.200000pt;}
.ws8{word-spacing:-3.168000pt;}
.ws7d{word-spacing:-3.136000pt;}
.wsa9{word-spacing:-3.008000pt;}
.wse3{word-spacing:-2.944000pt;}
.ws1c{word-spacing:-2.933333pt;}
.ws118{word-spacing:-2.880000pt;}
.wse0{word-spacing:-2.816000pt;}
.wsd1{word-spacing:-2.752000pt;}
.wse6{word-spacing:-2.624000pt;}
.ws14c{word-spacing:-2.613333pt;}
.wsf6{word-spacing:-2.592000pt;}
.wse4{word-spacing:-2.560000pt;}
.ws4d{word-spacing:-2.496000pt;}
.ws126{word-spacing:-2.432000pt;}
.wsb3{word-spacing:-2.368000pt;}
.ws79{word-spacing:-2.304000pt;}
.wsd0{word-spacing:-2.240000pt;}
.ws46{word-spacing:-2.208000pt;}
.wsd2{word-spacing:-2.176000pt;}
.wse{word-spacing:-2.170667pt;}
.ws7c{word-spacing:-2.112000pt;}
.ws5b{word-spacing:-2.048000pt;}
.wsdb{word-spacing:-2.016000pt;}
.ws7f{word-spacing:-1.984000pt;}
.ws98{word-spacing:-1.968000pt;}
.ws26{word-spacing:-1.920000pt;}
.wsbf{word-spacing:-1.856000pt;}
.ws3f{word-spacing:-1.824000pt;}
.ws31{word-spacing:-1.792000pt;}
.ws5{word-spacing:-1.749333pt;}
.wsb2{word-spacing:-1.728000pt;}
.wsaf{word-spacing:-1.680000pt;}
.ws6d{word-spacing:-1.664000pt;}
.ws10d{word-spacing:-1.653333pt;}
.ws48{word-spacing:-1.632000pt;}
.wsa0{word-spacing:-1.600000pt;}
.wsf5{word-spacing:-1.584000pt;}
.wsd6{word-spacing:-1.546667pt;}
.ws4{word-spacing:-1.536000pt;}
.wsd5{word-spacing:-1.493333pt;}
.wsd3{word-spacing:-1.472000pt;}
.wsd{word-spacing:-1.440000pt;}
.ws1a{word-spacing:-1.408000pt;}
.ws3a{word-spacing:-1.392000pt;}
.ws3c{word-spacing:-1.344000pt;}
.wsd4{word-spacing:-1.333333pt;}
.ws6a{word-spacing:-1.280000pt;}
.ws14f{word-spacing:-1.226667pt;}
.ws11a{word-spacing:-1.216000pt;}
.wsed{word-spacing:-1.173333pt;}
.ws77{word-spacing:-1.152000pt;}
.ws129{word-spacing:-1.088000pt;}
.wsfd{word-spacing:-1.066667pt;}
.ws60{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.024000pt;}
.wsfc{word-spacing:-1.013333pt;}
.ws9a{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.906667pt;}
.wsc9{word-spacing:-0.896000pt;}
.wsf4{word-spacing:-0.864000pt;}
.wsf2{word-spacing:-0.853333pt;}
.wsa5{word-spacing:-0.832000pt;}
.ws38{word-spacing:-0.816000pt;}
.ws14d{word-spacing:-0.800000pt;}
.ws37{word-spacing:-0.768000pt;}
.ws29{word-spacing:-0.704000pt;}
.ws61{word-spacing:-0.672000pt;}
.ws78{word-spacing:-0.640000pt;}
.ws45{word-spacing:-0.624000pt;}
.ws10e{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.576000pt;}
.ws123{word-spacing:-0.533333pt;}
.ws6e{word-spacing:-0.512000pt;}
.ws65{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.448000pt;}
.ws2{word-spacing:-0.426667pt;}
.ws107{word-spacing:-0.384000pt;}
.ws40{word-spacing:-0.336000pt;}
.ws76{word-spacing:-0.320000pt;}
.ws83{word-spacing:-0.288000pt;}
.wsf3{word-spacing:-0.266667pt;}
.wse2{word-spacing:-0.256000pt;}
.ws97{word-spacing:-0.240000pt;}
.ws3{word-spacing:-0.213333pt;}
.wsb1{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.176000pt;}
.ws35{word-spacing:-0.144000pt;}
.wseb{word-spacing:-0.128000pt;}
.ws105{word-spacing:-0.106667pt;}
.ws3b{word-spacing:-0.096000pt;}
.wsb4{word-spacing:-0.064000pt;}
.ws121{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws43{word-spacing:0.048000pt;}
.ws14e{word-spacing:0.053333pt;}
.ws10f{word-spacing:0.064000pt;}
.ws9b{word-spacing:0.096000pt;}
.wsff{word-spacing:0.106667pt;}
.ws11{word-spacing:0.117333pt;}
.wsea{word-spacing:0.128000pt;}
.ws44{word-spacing:0.144000pt;}
.ws89{word-spacing:0.192000pt;}
.wsad{word-spacing:0.240000pt;}
.ws27{word-spacing:0.256000pt;}
.wsde{word-spacing:0.320000pt;}
.ws11b{word-spacing:0.336000pt;}
.ws14{word-spacing:0.352000pt;}
.wsd7{word-spacing:0.373333pt;}
.ws39{word-spacing:0.384000pt;}
.ws100{word-spacing:0.426667pt;}
.ws47{word-spacing:0.432000pt;}
.wsb5{word-spacing:0.448000pt;}
.ws9c{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.512000pt;}
.ws80{word-spacing:0.528000pt;}
.ws93{word-spacing:0.576000pt;}
.ws74{word-spacing:0.640000pt;}
.ws41{word-spacing:0.672000pt;}
.ws69{word-spacing:0.704000pt;}
.ws103{word-spacing:0.746667pt;}
.wscd{word-spacing:0.768000pt;}
.ws104{word-spacing:0.800000pt;}
.ws7b{word-spacing:0.832000pt;}
.ws57{word-spacing:0.896000pt;}
.ws151{word-spacing:0.906667pt;}
.ws62{word-spacing:0.912000pt;}
.wsab{word-spacing:0.960000pt;}
.ws4c{word-spacing:1.024000pt;}
.ws96{word-spacing:1.056000pt;}
.wsc4{word-spacing:1.088000pt;}
.ws42{word-spacing:1.104000pt;}
.ws24{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.200000pt;}
.ws58{word-spacing:1.216000pt;}
.ws63{word-spacing:1.248000pt;}
.wsc1{word-spacing:1.280000pt;}
.ws10{word-spacing:1.290667pt;}
.ws73{word-spacing:1.344000pt;}
.wsa{word-spacing:1.365333pt;}
.ws32{word-spacing:1.408000pt;}
.wsb0{word-spacing:1.440000pt;}
.wsbc{word-spacing:1.472000pt;}
.wsf9{word-spacing:1.493333pt;}
.ws12{word-spacing:1.525333pt;}
.ws92{word-spacing:1.536000pt;}
.wsa3{word-spacing:1.600000pt;}
.ws102{word-spacing:1.653333pt;}
.wsd8{word-spacing:1.664000pt;}
.ws116{word-spacing:1.706667pt;}
.ws2a{word-spacing:1.728000pt;}
.wsfa{word-spacing:1.760000pt;}
.wsdd{word-spacing:1.792000pt;}
.ws117{word-spacing:1.813333pt;}
.ws95{word-spacing:1.824000pt;}
.wsc3{word-spacing:1.856000pt;}
.wsb{word-spacing:1.877333pt;}
.wsbd{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.936000pt;}
.ws82{word-spacing:1.968000pt;}
.ws2c{word-spacing:1.984000pt;}
.ws11c{word-spacing:2.016000pt;}
.ws10c{word-spacing:2.026667pt;}
.ws86{word-spacing:2.048000pt;}
.wsc5{word-spacing:2.064000pt;}
.ws8f{word-spacing:2.112000pt;}
.ws72{word-spacing:2.176000pt;}
.wsf8{word-spacing:2.186667pt;}
.ws3e{word-spacing:2.208000pt;}
.ws59{word-spacing:2.240000pt;}
.ws101{word-spacing:2.293333pt;}
.ws122{word-spacing:2.346667pt;}
.ws7e{word-spacing:2.368000pt;}
.ws6f{word-spacing:2.432000pt;}
.wsaa{word-spacing:2.496000pt;}
.ws2e{word-spacing:2.560000pt;}
.ws22{word-spacing:2.624000pt;}
.wsae{word-spacing:2.688000pt;}
.ws2d{word-spacing:2.752000pt;}
.ws6b{word-spacing:2.816000pt;}
.wsc2{word-spacing:2.880000pt;}
.ws5a{word-spacing:2.944000pt;}
.ws54{word-spacing:3.008000pt;}
.wsee{word-spacing:3.040000pt;}
.wsd9{word-spacing:3.072000pt;}
.wsa4{word-spacing:3.136000pt;}
.ws2f{word-spacing:3.200000pt;}
.ws99{word-spacing:3.216000pt;}
.ws110{word-spacing:3.264000pt;}
.wsca{word-spacing:3.328000pt;}
.wsef{word-spacing:3.360000pt;}
.ws33{word-spacing:3.392000pt;}
.ws108{word-spacing:3.456000pt;}
.ws64{word-spacing:3.504000pt;}
.ws2b{word-spacing:3.520000pt;}
.ws88{word-spacing:3.584000pt;}
.wsfe{word-spacing:3.626667pt;}
.wse5{word-spacing:3.648000pt;}
.ws70{word-spacing:3.712000pt;}
.ws81{word-spacing:3.744000pt;}
.ws12a{word-spacing:3.776000pt;}
.ws55{word-spacing:3.840000pt;}
.ws5e{word-spacing:3.904000pt;}
.ws19{word-spacing:3.930667pt;}
.wsc6{word-spacing:3.936000pt;}
.ws23{word-spacing:3.968000pt;}
.ws13e{word-spacing:4.032000pt;}
.wsfb{word-spacing:4.053333pt;}
.ws5f{word-spacing:4.096000pt;}
.ws36{word-spacing:4.128000pt;}
.ws10b{word-spacing:4.160000pt;}
.ws4e{word-spacing:4.224000pt;}
.ws28{word-spacing:4.288000pt;}
.wscc{word-spacing:4.352000pt;}
.ws133{word-spacing:4.416000pt;}
.wsdf{word-spacing:4.480000pt;}
.ws119{word-spacing:4.544000pt;}
.ws8b{word-spacing:4.608000pt;}
.ws6c{word-spacing:4.672000pt;}
.ws4b{word-spacing:4.800000pt;}
.ws140{word-spacing:4.864000pt;}
.ws132{word-spacing:4.928000pt;}
.ws91{word-spacing:4.992000pt;}
.ws120{word-spacing:5.120000pt;}
.wsc{word-spacing:5.162667pt;}
.ws11f{word-spacing:5.184000pt;}
.ws12c{word-spacing:5.248000pt;}
.ws5c{word-spacing:5.312000pt;}
.ws49{word-spacing:5.328000pt;}
.wscb{word-spacing:5.376000pt;}
.wsf{word-spacing:5.397333pt;}
.wsac{word-spacing:5.504000pt;}
.wsbe{word-spacing:5.568000pt;}
.ws8c{word-spacing:5.632000pt;}
.ws15{word-spacing:5.690667pt;}
.ws8e{word-spacing:5.696000pt;}
.wsf0{word-spacing:5.760000pt;}
.ws94{word-spacing:5.856000pt;}
.wsbb{word-spacing:5.888000pt;}
.ws14a{word-spacing:5.952000pt;}
.wsec{word-spacing:6.016000pt;}
.ws13f{word-spacing:6.144000pt;}
.ws30{word-spacing:6.208000pt;}
.wsc7{word-spacing:6.272000pt;}
.ws75{word-spacing:6.336000pt;}
.ws7a{word-spacing:6.400000pt;}
.ws13c{word-spacing:6.464000pt;}
.ws13b{word-spacing:6.656000pt;}
.wsc0{word-spacing:6.720000pt;}
.ws71{word-spacing:6.784000pt;}
.wsb6{word-spacing:6.848000pt;}
.ws4f{word-spacing:6.912000pt;}
.ws128{word-spacing:6.976000pt;}
.ws5d{word-spacing:7.104000pt;}
.ws13d{word-spacing:7.168000pt;}
.ws127{word-spacing:7.232000pt;}
.wsba{word-spacing:7.296000pt;}
.ws11e{word-spacing:7.424000pt;}
.ws16{word-spacing:7.509333pt;}
.ws115{word-spacing:7.520000pt;}
.ws51{word-spacing:7.616000pt;}
.ws12d{word-spacing:7.680000pt;}
.ws56{word-spacing:7.744000pt;}
.ws90{word-spacing:7.872000pt;}
.ws150{word-spacing:7.893333pt;}
.wsa7{word-spacing:7.936000pt;}
.ws52{word-spacing:8.000000pt;}
.wsa6{word-spacing:8.064000pt;}
.ws53{word-spacing:8.128000pt;}
.wsa2{word-spacing:8.256000pt;}
.ws8a{word-spacing:8.320000pt;}
.ws12b{word-spacing:8.448000pt;}
.ws13a{word-spacing:8.640000pt;}
.wsda{word-spacing:8.896000pt;}
.ws17{word-spacing:9.210667pt;}
.ws14b{word-spacing:9.226667pt;}
.wsc8{word-spacing:9.408000pt;}
.ws50{word-spacing:10.688000pt;}
.ws147{word-spacing:11.328000pt;}
.ws146{word-spacing:12.608000pt;}
.ws148{word-spacing:13.184000pt;}
.ws9{word-spacing:13.813333pt;}
.ws18{word-spacing:14.080000pt;}
.ws7{word-spacing:24.672000pt;}
.ws149{word-spacing:40.320000pt;}
._13{margin-left:-17.170667pt;}
._e{margin-left:-8.548267pt;}
._11{margin-left:-7.558400pt;}
._5{margin-left:-5.991467pt;}
._10{margin-left:-4.979200pt;}
._2{margin-left:-4.075200pt;}
._6{margin-left:-3.155733pt;}
._0{margin-left:-2.102400pt;}
._3{margin-left:-0.936000pt;}
._1{width:1.382400pt;}
._4{width:2.388800pt;}
._7{width:3.750400pt;}
._15{width:4.657600pt;}
._8{width:5.563200pt;}
._14{width:6.747200pt;}
._d{width:8.496000pt;}
._9{width:9.792000pt;}
._a{width:11.328000pt;}
._f{width:12.854400pt;}
._b{width:14.208000pt;}
._12{width:2642.838857pt;}
._c{width:2685.173333pt;}
.fsa{font-size:37.312000pt;}
.fs7{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:44.800000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:50.740533pt;}
.y2f{bottom:62.978667pt;}
.y2d{bottom:64.073867pt;}
.y5{bottom:65.745867pt;}
.y4{bottom:91.345867pt;}
.y2b{bottom:92.000000pt;}
.y91{bottom:93.333333pt;}
.y62{bottom:93.333467pt;}
.yd6{bottom:93.440133pt;}
.yc3{bottom:93.903467pt;}
.y1ad{bottom:93.994933pt;}
.y195{bottom:94.528267pt;}
.y3{bottom:104.145867pt;}
.y90{bottom:107.733333pt;}
.y61{bottom:107.733467pt;}
.y1df{bottom:111.328267pt;}
.y203{bottom:112.394800pt;}
.yd5{bottom:112.640267pt;}
.yc2{bottom:113.103467pt;}
.y1ac{bottom:113.194933pt;}
.y194{bottom:113.728133pt;}
.y60{bottom:122.133467pt;}
.y8f{bottom:126.133333pt;}
.yf0{bottom:126.133600pt;}
.y150{bottom:129.706933pt;}
.y1de{bottom:130.528267pt;}
.y10d{bottom:130.933333pt;}
.y202{bottom:131.594933pt;}
.yd4{bottom:131.840133pt;}
.yc1{bottom:132.303467pt;}
.y1ab{bottom:132.394800pt;}
.y193{bottom:132.928267pt;}
.y5f{bottom:136.533467pt;}
.y8e{bottom:140.533333pt;}
.y121{bottom:140.533600pt;}
.y163{bottom:147.861600pt;}
.y14f{bottom:148.906800pt;}
.y1dd{bottom:149.728133pt;}
.y10c{bottom:150.133333pt;}
.y201{bottom:150.794933pt;}
.y5e{bottom:150.933467pt;}
.yd3{bottom:151.040267pt;}
.yc0{bottom:151.503467pt;}
.y1aa{bottom:151.594933pt;}
.y192{bottom:152.128267pt;}
.y1b7{bottom:152.928267pt;}
.y97{bottom:154.933600pt;}
.y8d{bottom:158.933333pt;}
.ya3{bottom:165.333467pt;}
.y162{bottom:167.061467pt;}
.y14e{bottom:168.106800pt;}
.y10b{bottom:169.333333pt;}
.y5d{bottom:169.333600pt;}
.y200{bottom:169.994933pt;}
.yd2{bottom:170.240133pt;}
.y1dc{bottom:170.261600pt;}
.ybf{bottom:170.703467pt;}
.y1a9{bottom:170.794933pt;}
.y191{bottom:171.328267pt;}
.y1b6{bottom:172.128267pt;}
.y8c{bottom:173.333333pt;}
.ya2{bottom:179.733467pt;}
.y5c{bottom:183.733600pt;}
.y161{bottom:186.261600pt;}
.y14d{bottom:187.306933pt;}
.y8b{bottom:187.733333pt;}
.y10a{bottom:188.533333pt;}
.yd1{bottom:189.440133pt;}
.y1db{bottom:189.461600pt;}
.ybe{bottom:189.903467pt;}
.y1a8{bottom:189.994933pt;}
.y1ff{bottom:190.528267pt;}
.y1b5{bottom:191.328267pt;}
.y190{bottom:193.194933pt;}
.ya1{bottom:194.133467pt;}
.y96{bottom:194.261600pt;}
.y180{bottom:196.928267pt;}
.y5b{bottom:198.133600pt;}
.yef{bottom:201.194933pt;}
.y120{bottom:203.861600pt;}
.y160{bottom:205.461600pt;}
.y8a{bottom:206.133333pt;}
.y14c{bottom:206.506800pt;}
.y109{bottom:207.733333pt;}
.ya0{bottom:208.533467pt;}
.yd0{bottom:208.640267pt;}
.y1da{bottom:208.661600pt;}
.ybd{bottom:209.103467pt;}
.y18f{bottom:209.194933pt;}
.y1fe{bottom:209.728133pt;}
.y2a{bottom:210.666667pt;}
.y1b4{bottom:211.861600pt;}
.y5a{bottom:212.533600pt;}
.y95{bottom:213.461600pt;}
.y17f{bottom:216.128267pt;}
.yee{bottom:220.394800pt;}
.y89{bottom:220.533333pt;}
.y9f{bottom:222.933467pt;}
.y11f{bottom:223.061467pt;}
.y15f{bottom:224.661600pt;}
.y18e{bottom:225.194933pt;}
.y14b{bottom:225.706933pt;}
.y108{bottom:226.933333pt;}
.ya5{bottom:226.933600pt;}
.ycf{bottom:227.840133pt;}
.ybc{bottom:228.303467pt;}
.y1a7{bottom:228.394800pt;}
.y1d9{bottom:229.194933pt;}
.y29{bottom:229.333333pt;}
.y1fd{bottom:230.261600pt;}
.y59{bottom:230.933733pt;}
.y1b3{bottom:231.061467pt;}
.y94{bottom:232.661600pt;}
.y88{bottom:234.933333pt;}
.y17e{bottom:235.328267pt;}
.y9e{bottom:237.333467pt;}
.yed{bottom:239.594933pt;}
.y18d{bottom:241.194933pt;}
.ya4{bottom:241.333600pt;}
.y15e{bottom:243.861600pt;}
.y14a{bottom:244.906800pt;}
.y58{bottom:245.333733pt;}
.y107{bottom:246.133333pt;}
.y11e{bottom:246.261600pt;}
.yce{bottom:247.040267pt;}
.ybb{bottom:247.503467pt;}
.y1a6{bottom:247.594933pt;}
.y1d8{bottom:248.394800pt;}
.y87{bottom:249.333333pt;}
.y1fc{bottom:249.461600pt;}
.y1b2{bottom:251.594933pt;}
.y93{bottom:251.861600pt;}
.y17d{bottom:254.528267pt;}
.y9d{bottom:255.733600pt;}
.y18c{bottom:257.194933pt;}
.yec{bottom:258.794933pt;}
.y57{bottom:259.733733pt;}
.y11d{bottom:262.261600pt;}
.y15d{bottom:263.061467pt;}
.y149{bottom:264.106800pt;}
.y106{bottom:265.333333pt;}
.ycd{bottom:266.240133pt;}
.y28{bottom:266.666667pt;}
.yba{bottom:266.703467pt;}
.y1a5{bottom:266.794933pt;}
.y1fb{bottom:268.661600pt;}
.y1d7{bottom:268.928267pt;}
.y9c{bottom:270.133600pt;}
.y1b1{bottom:270.794933pt;}
.y92{bottom:271.061467pt;}
.y18b{bottom:273.194933pt;}
.y17c{bottom:273.728133pt;}
.y56{bottom:274.133733pt;}
.yeb{bottom:277.994933pt;}
.y11c{bottom:278.261600pt;}
.y15c{bottom:282.261600pt;}
.y148{bottom:283.306933pt;}
.y105{bottom:284.533333pt;}
.y27{bottom:285.333333pt;}
.ycc{bottom:285.440133pt;}
.yb9{bottom:285.903467pt;}
.y1a4{bottom:285.994933pt;}
.y1fa{bottom:287.861600pt;}
.y1d6{bottom:288.128267pt;}
.y55{bottom:288.533733pt;}
.y18a{bottom:289.194933pt;}
.y86{bottom:290.261600pt;}
.y1b0{bottom:291.328267pt;}
.y1{bottom:292.876000pt;}
.y11b{bottom:294.261600pt;}
.yea{bottom:297.194933pt;}
.y17b{bottom:300.928267pt;}
.y15b{bottom:301.461600pt;}
.y147{bottom:302.506800pt;}
.y54{bottom:302.933733pt;}
.y104{bottom:303.733333pt;}
.y26{bottom:304.000000pt;}
.ycb{bottom:304.640133pt;}
.yb8{bottom:305.103467pt;}
.y9b{bottom:305.194933pt;}
.y189{bottom:307.861600pt;}
.y1f9{bottom:308.394933pt;}
.y1d5{bottom:308.661600pt;}
.y85{bottom:309.461600pt;}
.y1af{bottom:310.528267pt;}
.y11a{bottom:314.261600pt;}
.ye9{bottom:316.394933pt;}
.y15a{bottom:320.661600pt;}
.y53{bottom:321.333867pt;}
.y146{bottom:321.706933pt;}
.y25{bottom:322.666667pt;}
.y103{bottom:322.933333pt;}
.yca{bottom:323.840133pt;}
.yb7{bottom:324.303467pt;}
.y9a{bottom:324.394933pt;}
.y188{bottom:327.061600pt;}
.y1f8{bottom:327.594933pt;}
.y1d4{bottom:327.861600pt;}
.y84{bottom:328.661600pt;}
.y119{bottom:333.461600pt;}
.ye8{bottom:335.594933pt;}
.y52{bottom:335.733867pt;}
.y1ae{bottom:336.394933pt;}
.y159{bottom:339.861600pt;}
.y145{bottom:340.906800pt;}
.y24{bottom:341.333333pt;}
.y102{bottom:342.133333pt;}
.yc9{bottom:343.040267pt;}
.yb6{bottom:343.503467pt;}
.y99{bottom:343.594933pt;}
.y187{bottom:346.261600pt;}
.y1f7{bottom:346.794933pt;}
.y83{bottom:347.861600pt;}
.y1d3{bottom:348.394933pt;}
.y118{bottom:352.661600pt;}
.y51{bottom:354.134000pt;}
.ye7{bottom:354.794933pt;}
.y158{bottom:359.061600pt;}
.y23{bottom:360.000000pt;}
.y144{bottom:360.106800pt;}
.y101{bottom:361.333333pt;}
.yc8{bottom:362.240133pt;}
.yb5{bottom:362.703467pt;}
.y1a3{bottom:362.794933pt;}
.y186{bottom:365.461600pt;}
.y82{bottom:367.061600pt;}
.y1f6{bottom:367.328267pt;}
.y1d2{bottom:367.594933pt;}
.y50{bottom:368.534000pt;}
.y117{bottom:371.861600pt;}
.y98{bottom:373.461600pt;}
.ye6{bottom:373.994933pt;}
.y157{bottom:378.261600pt;}
.y22{bottom:378.666667pt;}
.y143{bottom:379.306800pt;}
.y100{bottom:380.533333pt;}
.yb4{bottom:381.903467pt;}
.y1a2{bottom:381.994933pt;}
.y4f{bottom:382.934000pt;}
.y185{bottom:384.661600pt;}
.y81{bottom:386.261600pt;}
.y1f5{bottom:386.528267pt;}
.y1d1{bottom:386.794933pt;}
.y116{bottom:391.061600pt;}
.ye5{bottom:393.194933pt;}
.yc7{bottom:393.440133pt;}
.y21{bottom:397.333333pt;}
.y4e{bottom:397.334000pt;}
.y142{bottom:398.506800pt;}
.y213{bottom:398.794933pt;}
.yff{bottom:399.733333pt;}
.yb3{bottom:401.103467pt;}
.y1a1{bottom:401.194933pt;}
.y156{bottom:401.461600pt;}
.y184{bottom:403.861600pt;}
.y80{bottom:405.461600pt;}
.y1d0{bottom:405.994933pt;}
.yc6{bottom:406.773467pt;}
.y1f4{bottom:407.061600pt;}
.y115{bottom:410.261600pt;}
.y4d{bottom:411.734000pt;}
.y17a{bottom:412.394933pt;}
.y212{bottom:414.794933pt;}
.y155{bottom:417.461600pt;}
.y141{bottom:417.706933pt;}
.yfe{bottom:418.933333pt;}
.yb2{bottom:420.303467pt;}
.y1a0{bottom:420.394933pt;}
.ye4{bottom:423.061600pt;}
.y7f{bottom:424.661600pt;}
.y4c{bottom:426.134000pt;}
.y1f3{bottom:426.261600pt;}
.y1cf{bottom:426.528267pt;}
.y114{bottom:429.461600pt;}
.y211{bottom:430.794933pt;}
.y179{bottom:431.594933pt;}
.y154{bottom:433.461600pt;}
.y20{bottom:434.666667pt;}
.y140{bottom:436.906800pt;}
.yfd{bottom:438.133333pt;}
.yb1{bottom:439.503467pt;}
.y19f{bottom:439.594933pt;}
.y4b{bottom:440.534000pt;}
.y183{bottom:442.261600pt;}
.y7e{bottom:443.861600pt;}
.y1ce{bottom:445.728267pt;}
.y1f2{bottom:446.794933pt;}
.y113{bottom:448.661600pt;}
.y153{bottom:449.461600pt;}
.y178{bottom:450.794933pt;}
.y4a{bottom:454.934000pt;}
.ye3{bottom:455.061600pt;}
.y13f{bottom:456.106800pt;}
.yfc{bottom:457.333333pt;}
.yb0{bottom:458.703467pt;}
.y19e{bottom:458.794933pt;}
.y182{bottom:461.461600pt;}
.y210{bottom:462.794933pt;}
.y7d{bottom:463.061600pt;}
.y152{bottom:465.461600pt;}
.y1f1{bottom:465.994933pt;}
.y1cd{bottom:466.261600pt;}
.y112{bottom:467.861600pt;}
.y49{bottom:469.334000pt;}
.y177{bottom:469.994933pt;}
.y1f{bottom:472.000000pt;}
.ye2{bottom:474.261600pt;}
.y13e{bottom:475.306800pt;}
.yfb{bottom:476.533333pt;}
.yaf{bottom:477.903467pt;}
.y19d{bottom:477.994933pt;}
.y20f{bottom:478.794933pt;}
.y151{bottom:481.461600pt;}
.y7c{bottom:482.261600pt;}
.y1cc{bottom:485.461600pt;}
.y1f0{bottom:486.528267pt;}
.y181{bottom:487.328267pt;}
.y48{bottom:487.734133pt;}
.y176{bottom:489.194933pt;}
.y1e{bottom:490.666667pt;}
.y111{bottom:491.061600pt;}
.ye1{bottom:493.461600pt;}
.y13d{bottom:494.506800pt;}
.y20e{bottom:494.794933pt;}
.yfa{bottom:495.733333pt;}
.yae{bottom:497.103467pt;}
.y19c{bottom:497.194933pt;}
.y7b{bottom:501.461600pt;}
.y47{bottom:502.134133pt;}
.y1cb{bottom:504.661600pt;}
.y1ef{bottom:505.728267pt;}
.y110{bottom:507.061600pt;}
.y175{bottom:508.394933pt;}
.y20d{bottom:510.794933pt;}
.ye0{bottom:512.661600pt;}
.y13c{bottom:513.706933pt;}
.yf9{bottom:514.933333pt;}
.yad{bottom:516.303467pt;}
.y19b{bottom:516.394933pt;}
.y46{bottom:516.534133pt;}
.y7a{bottom:520.661600pt;}
.y10f{bottom:523.061600pt;}
.y1ca{bottom:525.194933pt;}
.y20c{bottom:526.794933pt;}
.y174{bottom:527.594933pt;}
.y1d{bottom:528.000000pt;}
.y45{bottom:530.934133pt;}
.ydf{bottom:531.861600pt;}
.yf8{bottom:534.133333pt;}
.yac{bottom:535.503467pt;}
.y19a{bottom:535.594933pt;}
.y13b{bottom:536.906800pt;}
.y1ee{bottom:536.928267pt;}
.y10e{bottom:539.061600pt;}
.y79{bottom:539.861600pt;}
.y20b{bottom:542.794933pt;}
.y1c9{bottom:545.728267pt;}
.y1c{bottom:546.666667pt;}
.y173{bottom:546.794933pt;}
.yde{bottom:551.061600pt;}
.y13a{bottom:552.906800pt;}
.yf7{bottom:553.333333pt;}
.yab{bottom:554.703467pt;}
.y199{bottom:554.794933pt;}
.y20a{bottom:558.794933pt;}
.y78{bottom:559.061600pt;}
.y1c8{bottom:564.928267pt;}
.y1b{bottom:565.333333pt;}
.y44{bottom:565.749600pt;}
.y172{bottom:565.994933pt;}
.y139{bottom:568.906800pt;}
.y1ed{bottom:568.928267pt;}
.ydd{bottom:570.261600pt;}
.yf6{bottom:572.533333pt;}
.yaa{bottom:573.903467pt;}
.y198{bottom:573.994933pt;}
.y209{bottom:574.794933pt;}
.y77{bottom:578.261600pt;}
.y1a{bottom:584.000000pt;}
.y138{bottom:584.906800pt;}
.y43{bottom:584.949600pt;}
.y1c7{bottom:585.461600pt;}
.y1ec{bottom:588.128267pt;}
.y208{bottom:590.794933pt;}
.yf5{bottom:591.733333pt;}
.ya9{bottom:593.103467pt;}
.y197{bottom:593.194933pt;}
.ydc{bottom:593.461600pt;}
.y171{bottom:595.861600pt;}
.y76{bottom:597.461600pt;}
.y137{bottom:600.906800pt;}
.y19{bottom:602.666667pt;}
.y42{bottom:604.149600pt;}
.y1c6{bottom:605.994933pt;}
.y207{bottom:606.794933pt;}
.y1eb{bottom:608.661600pt;}
.ydb{bottom:609.461600pt;}
.yf4{bottom:610.933333pt;}
.y75{bottom:616.661600pt;}
.y136{bottom:616.906800pt;}
.y18{bottom:621.333333pt;}
.ya8{bottom:622.970133pt;}
.y196{bottom:623.061600pt;}
.y41{bottom:623.349600pt;}
.y1c5{bottom:625.194933pt;}
.yda{bottom:625.461600pt;}
.y170{bottom:627.861600pt;}
.yf3{bottom:630.133333pt;}
.y135{bottom:632.906800pt;}
.y74{bottom:635.861600pt;}
.y17{bottom:640.000000pt;}
.yd9{bottom:641.461600pt;}
.y40{bottom:642.549600pt;}
.y1c4{bottom:644.394933pt;}
.y16f{bottom:647.061600pt;}
.y134{bottom:648.906800pt;}
.y73{bottom:655.061600pt;}
.yd8{bottom:657.461600pt;}
.y16{bottom:658.666667pt;}
.ya7{bottom:658.970133pt;}
.y3f{bottom:661.749600pt;}
.y133{bottom:664.906800pt;}
.y1c3{bottom:664.928267pt;}
.y16e{bottom:666.261600pt;}
.y1ea{bottom:667.594933pt;}
.yf2{bottom:668.000000pt;}
.ya6{bottom:672.303467pt;}
.yd7{bottom:673.461600pt;}
.y72{bottom:674.261600pt;}
.y2{bottom:675.732933pt;}
.y15{bottom:677.333333pt;}
.y132{bottom:680.906800pt;}
.y3e{bottom:680.949600pt;}
.yf1{bottom:681.333333pt;}
.y16d{bottom:685.461600pt;}
.y1e9{bottom:686.794933pt;}
.yc5{bottom:692.106800pt;}
.y71{bottom:693.461600pt;}
.y131{bottom:696.906933pt;}
.y3d{bottom:700.149600pt;}
.y16c{bottom:704.661600pt;}
.yc4{bottom:705.440133pt;}
.y1e8{bottom:705.994933pt;}
.y70{bottom:712.661600pt;}
.y130{bottom:712.906933pt;}
.y14{bottom:714.666667pt;}
.y3c{bottom:719.349600pt;}
.y16b{bottom:723.861600pt;}
.y1e7{bottom:726.528267pt;}
.y12f{bottom:728.906933pt;}
.y6f{bottom:731.861600pt;}
.y3b{bottom:738.549600pt;}
.y12{bottom:743.056400pt;}
.y16a{bottom:743.061467pt;}
.y13{bottom:744.389733pt;}
.y1c2{bottom:744.394800pt;}
.y206{bottom:745.728133pt;}
.y1e6{bottom:747.061467pt;}
.y12e{bottom:748.906933pt;}
.y6e{bottom:751.061467pt;}
.y3a{bottom:757.749600pt;}
.y1c1{bottom:763.594933pt;}
.y169{bottom:766.261600pt;}
.y12d{bottom:768.106800pt;}
.y6d{bottom:770.261600pt;}
.y39{bottom:776.949600pt;}
.y11{bottom:779.056400pt;}
.y168{bottom:782.261600pt;}
.y1c0{bottom:782.794933pt;}
.y1e5{bottom:785.461600pt;}
.y12c{bottom:787.306800pt;}
.y6c{bottom:789.461600pt;}
.y10{bottom:791.056400pt;}
.y38{bottom:796.149600pt;}
.y167{bottom:798.261600pt;}
.y1bf{bottom:801.994933pt;}
.yf{bottom:803.056400pt;}
.y1e4{bottom:804.661600pt;}
.y12b{bottom:806.506800pt;}
.y6b{bottom:808.661600pt;}
.y166{bottom:814.261600pt;}
.ye{bottom:815.056400pt;}
.y37{bottom:815.349600pt;}
.y1be{bottom:822.528267pt;}
.y1e3{bottom:825.194933pt;}
.y12a{bottom:825.706933pt;}
.yd{bottom:827.056400pt;}
.y6a{bottom:827.861600pt;}
.y165{bottom:830.261600pt;}
.y36{bottom:834.549600pt;}
.y1bd{bottom:843.061467pt;}
.y1e2{bottom:844.394800pt;}
.y129{bottom:844.906800pt;}
.y164{bottom:846.261600pt;}
.y69{bottom:847.061467pt;}
.y35{bottom:853.749600pt;}
.y1bc{bottom:862.261600pt;}
.y205{bottom:863.594933pt;}
.y1e1{bottom:864.928267pt;}
.y68{bottom:866.261600pt;}
.y128{bottom:868.106800pt;}
.yc{bottom:869.723067pt;}
.y34{bottom:872.949600pt;}
.y1bb{bottom:882.794933pt;}
.y127{bottom:884.106800pt;}
.y1e0{bottom:884.128267pt;}
.y67{bottom:885.461600pt;}
.yb{bottom:889.723067pt;}
.y33{bottom:892.149600pt;}
.y126{bottom:900.106800pt;}
.y1ba{bottom:901.994933pt;}
.y204{bottom:903.328267pt;}
.y66{bottom:904.661600pt;}
.y32{bottom:911.349600pt;}
.y125{bottom:916.106800pt;}
.y1b9{bottom:922.528267pt;}
.y65{bottom:923.861600pt;}
.ya{bottom:925.723067pt;}
.y31{bottom:930.549600pt;}
.y124{bottom:932.106800pt;}
.y1b8{bottom:941.728133pt;}
.y64{bottom:943.061467pt;}
.y123{bottom:948.106800pt;}
.y9{bottom:951.056400pt;}
.y30{bottom:960.416267pt;}
.y63{bottom:962.261600pt;}
.y122{bottom:964.106800pt;}
.y8{bottom:986.369200pt;}
.y2c{bottom:995.455600pt;}
.y7{bottom:999.702533pt;}
.y6{bottom:1013.035867pt;}
.h9{height:29.866667pt;}
.h4{height:33.600000pt;}
.h3{height:36.224000pt;}
.hf{height:37.333333pt;}
.h5{height:40.752000pt;}
.hc{height:44.374400pt;}
.h11{height:44.800000pt;}
.ha{height:45.280000pt;}
.h8{height:49.808000pt;}
.h7{height:52.266667pt;}
.h10{height:53.184000pt;}
.hd{height:54.336000pt;}
.hb{height:63.392000pt;}
.h6{height:67.200000pt;}
.he{height:70.165333pt;}
.h2{height:106.056000pt;}
.h1{height:680.450667pt;}
.h0{height:1066.666667pt;}
.w1{width:43.020000pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x2{left:8.620400pt;}
.x3{left:112.000000pt;}
.x19{left:125.333333pt;}
.x10{left:128.000000pt;}
.x17{left:134.666667pt;}
.x1a{left:160.000000pt;}
.x4{left:169.066667pt;}
.x11{left:185.182000pt;}
.x12{left:190.886400pt;}
.x13{left:217.145200pt;}
.x9{left:219.298800pt;}
.x15{left:223.072400pt;}
.x16{left:230.116267pt;}
.xb{left:270.711867pt;}
.x14{left:283.098667pt;}
.x18{left:298.052800pt;}
.xe{left:335.272533pt;}
.x6{left:350.944133pt;}
.x5{left:353.665600pt;}
.xd{left:417.333333pt;}
.xa{left:513.191333pt;}
.x7{left:514.761867pt;}
.x8{left:523.262533pt;}
.xc{left:534.232000pt;}
.xf{left:589.175867pt;}
.x1{left:680.636000pt;}
}




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