
    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_001a21b1825a660c3f2f0e7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_618717a52c535990ce44b36d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_3d25c3e5cb29ceeed970d183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_4ae852cba1971c0e4187652b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_a3338fd40d2d15ddb70ebf20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_db737a4b1f754916d85a2255.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131000;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_0c7b7c66f287bf988b0d2068.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fe2c657bb61cfe2441c49bf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.510000;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_e26e2f4ad3902dbc71892fd9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.168000;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_6ebb7d87cb4740916449a69d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.678000;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_356cba5f73008c3cdeec8a58.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.877000;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_cb4e8f0ae9b57d9d21fb5202.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.457000;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_b03df37784c6b4a9641c1241.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.040000;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_f38bdadc1fa2af90f261df35.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.078000;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_027c12fbf6dd3e2c6fe10ae5.woff2')format("woff");}.fff{font-family:fff;line-height:0.264000;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_a2995fab96052ad1bb029f3c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-1.881581px;}
.ls38{letter-spacing:-1.787502px;}
.ls34{letter-spacing:-1.781622px;}
.ls2f{letter-spacing:-1.752222px;}
.ls39{letter-spacing:-1.746342px;}
.ls36{letter-spacing:-1.734582px;}
.ls2e{letter-spacing:-1.728702px;}
.ls32{letter-spacing:-1.716942px;}
.ls37{letter-spacing:-1.693423px;}
.ls2c{letter-spacing:-1.687543px;}
.ls30{letter-spacing:-1.681663px;}
.ls2d{letter-spacing:-1.675783px;}
.ls35{letter-spacing:-1.658143px;}
.ls48{letter-spacing:-1.598380px;}
.ls52{letter-spacing:-1.593580px;}
.ls4f{letter-spacing:-1.574380px;}
.ls4b{letter-spacing:-1.559981px;}
.ls51{letter-spacing:-1.540776px;}
.ls4a{letter-spacing:-1.535981px;}
.ls45{letter-spacing:-1.531181px;}
.ls4e{letter-spacing:-1.526381px;}
.ls6e{letter-spacing:-1.525480px;}
.ls49{letter-spacing:-1.521581px;}
.ls46{letter-spacing:-1.516781px;}
.ls50{letter-spacing:-1.507181px;}
.ls6f{letter-spacing:-1.498480px;}
.ls47{letter-spacing:-1.497581px;}
.ls72{letter-spacing:-1.493980px;}
.ls4c{letter-spacing:-1.492781px;}
.ls4d{letter-spacing:-1.483181px;}
.ls70{letter-spacing:-1.466976px;}
.ls71{letter-spacing:-1.448981px;}
.ls67{letter-spacing:-1.164228px;}
.ls73{letter-spacing:-1.142985px;}
.ls5f{letter-spacing:-1.134828px;}
.ls63{letter-spacing:-1.128943px;}
.ls3f{letter-spacing:-1.123186px;}
.ls3e{letter-spacing:-1.123069px;}
.ls61{letter-spacing:-1.117189px;}
.ls5e{letter-spacing:-1.099549px;}
.ls13{letter-spacing:-1.093663px;}
.ls19{letter-spacing:-1.087789px;}
.ls17{letter-spacing:-1.081909px;}
.ls15{letter-spacing:-1.076029px;}
.ls9{letter-spacing:-1.070149px;}
.ls14{letter-spacing:-1.064269px;}
.lsa{letter-spacing:-1.058389px;}
.lsc{letter-spacing:-1.052509px;}
.ls11{letter-spacing:-1.046629px;}
.ls1a{letter-spacing:-1.040749px;}
.ls65{letter-spacing:-1.034869px;}
.ls1b{letter-spacing:-1.028990px;}
.ls10{letter-spacing:-1.023110px;}
.ls18{letter-spacing:-1.017230px;}
.lse{letter-spacing:-1.011350px;}
.ls60{letter-spacing:-1.005470px;}
.ls12{letter-spacing:-0.999590px;}
.lsb{letter-spacing:-0.993704px;}
.ls16{letter-spacing:-0.976070px;}
.ls5b{letter-spacing:-0.970190px;}
.ls64{letter-spacing:-0.964310px;}
.ls62{letter-spacing:-0.917271px;}
.lsd{letter-spacing:-0.905511px;}
.lsf{letter-spacing:-0.864351px;}
.ls3d{letter-spacing:-0.829072px;}
.ls2{letter-spacing:-0.762008px;}
.ls0{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.058484px;}
.ls6d{letter-spacing:0.058547px;}
.ls6a{letter-spacing:0.110396px;}
.ls27{letter-spacing:0.117613px;}
.ls4{letter-spacing:0.194040px;}
.ls5{letter-spacing:0.199922px;}
.ls1{letter-spacing:0.534005px;}
.ls68{letter-spacing:0.535075px;}
.ls56{letter-spacing:0.623274px;}
.ls55{letter-spacing:0.646793px;}
.ls54{letter-spacing:0.658553px;}
.ls57{letter-spacing:0.693833px;}
.ls58{letter-spacing:0.793792px;}
.ls33{letter-spacing:9.942979px;}
.ls41{letter-spacing:11.135870px;}
.ls42{letter-spacing:11.198248px;}
.ls43{letter-spacing:11.323063px;}
.ls40{letter-spacing:11.375880px;}
.ls44{letter-spacing:11.577486px;}
.ls3b{letter-spacing:12.153470px;}
.ls3c{letter-spacing:12.220648px;}
.ls3a{letter-spacing:12.398280px;}
.ls6b{letter-spacing:13.504337px;}
.ls59{letter-spacing:14.097420px;}
.ls5a{letter-spacing:14.438220px;}
.ls5d{letter-spacing:15.899358px;}
.ls21{letter-spacing:17.045952px;}
.ls25{letter-spacing:17.880840px;}
.ls26{letter-spacing:18.069012px;}
.ls66{letter-spacing:18.415972px;}
.ls74{letter-spacing:18.515280px;}
.ls28{letter-spacing:18.745212px;}
.ls29{letter-spacing:18.904020px;}
.ls24{letter-spacing:19.245060px;}
.ls1c{letter-spacing:20.450472px;}
.ls53{letter-spacing:20.773838px;}
.ls8{letter-spacing:20.785541px;}
.ls5c{letter-spacing:22.185014px;}
.ls22{letter-spacing:24.872112px;}
.ls23{letter-spacing:25.207272px;}
.ls1d{letter-spacing:25.207332px;}
.ls3{letter-spacing:25.277831px;}
.ls1e{letter-spacing:25.548312px;}
.ls6{letter-spacing:25.618871px;}
.ls2a{letter-spacing:25.707060px;}
.ls1f{letter-spacing:25.889352px;}
.ls2b{letter-spacing:26.383320px;}
.ls20{letter-spacing:31.334172px;}
.ls69{letter-spacing:31.334232px;}
.ls7{letter-spacing:36.773141px;}
.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;}
}
.ws16d{word-spacing:-22.243813px;}
.ws200{word-spacing:-18.577080px;}
.ws17f{word-spacing:-18.474771px;}
.ws16f{word-spacing:-15.958157px;}
.ws189{word-spacing:-0.852591px;}
.ws188{word-spacing:-0.593874px;}
.ws30{word-spacing:-0.061800px;}
.ws37{word-spacing:-0.058799px;}
.ws2e{word-spacing:-0.047999px;}
.ws28{word-spacing:-0.044999px;}
.ws23{word-spacing:-0.041999px;}
.ws2f{word-spacing:0.000000px;}
.ws12a{word-spacing:0.770272px;}
.ws6e{word-spacing:0.846711px;}
.ws176{word-spacing:0.858471px;}
.ws181{word-spacing:1.105429px;}
.wsd9{word-spacing:4.739232px;}
.ws13a{word-spacing:8.903889px;}
.ws18f{word-spacing:9.244685px;}
.ws18d{word-spacing:9.585480px;}
.ws1cf{word-spacing:10.880855px;}
.ws1ce{word-spacing:11.069852px;}
.ws1fd{word-spacing:11.150851px;}
.ws1d0{word-spacing:11.393848px;}
.ws1fc{word-spacing:11.461347px;}
.wsd0{word-spacing:11.465884px;}
.ws77{word-spacing:11.554082px;}
.wsc0{word-spacing:11.583482px;}
.ws1cd{word-spacing:11.668344px;}
.wsbd{word-spacing:11.671681px;}
.ws136{word-spacing:11.673454px;}
.ws135{word-spacing:11.764653px;}
.ws138{word-spacing:11.769453px;}
.ws27{word-spacing:11.884342px;}
.wsbf{word-spacing:11.924518px;}
.ws137{word-spacing:12.071849px;}
.ws13b{word-spacing:12.307046px;}
.ws13c{word-spacing:12.311846px;}
.ws24{word-spacing:12.322624px;}
.ws139{word-spacing:12.335846px;}
.ws21{word-spacing:12.394023px;}
.ws19a{word-spacing:12.398223px;}
.ws13d{word-spacing:12.422244px;}
.ws26{word-spacing:12.423422px;}
.ws1f{word-spacing:12.448622px;}
.ws25{word-spacing:12.528421px;}
.ws172{word-spacing:12.606592px;}
.ws22{word-spacing:12.692219px;}
.ws199{word-spacing:12.805617px;}
.ws20{word-spacing:12.889615px;}
.ws1fe{word-spacing:13.148825px;}
.ws1ea{word-spacing:13.157824px;}
.ws1ed{word-spacing:13.166825px;}
.ws1f6{word-spacing:13.184824px;}
.ws1fa{word-spacing:13.189325px;}
.ws1f0{word-spacing:13.211824px;}
.ws1ff{word-spacing:13.229824px;}
.ws1ec{word-spacing:13.234324px;}
.ws1ee{word-spacing:13.238824px;}
.ws1e4{word-spacing:13.243323px;}
.ws1f7{word-spacing:13.252323px;}
.ws1f4{word-spacing:13.256824px;}
.ws1d4{word-spacing:13.261324px;}
.ws1f9{word-spacing:13.265823px;}
.ws1f8{word-spacing:13.274823px;}
.ws1e2{word-spacing:13.306323px;}
.ws1e5{word-spacing:13.310822px;}
.ws1e8{word-spacing:13.315322px;}
.ws1e9{word-spacing:13.328823px;}
.ws1ef{word-spacing:13.333322px;}
.ws1f2{word-spacing:13.337822px;}
.ws29{word-spacing:13.342322px;}
.ws1f1{word-spacing:13.346822px;}
.ws1d6{word-spacing:13.369322px;}
.ws201{word-spacing:13.373822px;}
.ws1f5{word-spacing:13.387321px;}
.ws1fb{word-spacing:13.391822px;}
.ws1e1{word-spacing:13.400821px;}
.ws1da{word-spacing:13.405321px;}
.ws1e6{word-spacing:13.409821px;}
.ws1dd{word-spacing:13.432321px;}
.ws1ca{word-spacing:13.445817px;}
.ws2b{word-spacing:13.445820px;}
.wsd8{word-spacing:13.447422px;}
.ws1cb{word-spacing:13.463820px;}
.ws1d7{word-spacing:13.468320px;}
.ws1e3{word-spacing:13.486321px;}
.ws1db{word-spacing:13.490820px;}
.ws1d5{word-spacing:13.504320px;}
.ws1e7{word-spacing:13.513319px;}
.ws1d3{word-spacing:13.544819px;}
.ws1f3{word-spacing:13.571819px;}
.ws202{word-spacing:13.576319px;}
.ws1d2{word-spacing:13.580818px;}
.ws1e0{word-spacing:13.594319px;}
.ws1df{word-spacing:13.621319px;}
.ws1eb{word-spacing:13.630318px;}
.wsce{word-spacing:13.647341px;}
.ws1cc{word-spacing:13.657317px;}
.ws1b1{word-spacing:13.670229px;}
.ws18c{word-spacing:13.679829px;}
.ws1d9{word-spacing:13.702317px;}
.ws1d1{word-spacing:13.769816px;}
.ws18e{word-spacing:13.814227px;}
.ws1de{word-spacing:13.814816px;}
.ws1af{word-spacing:13.838227px;}
.ws1c9{word-spacing:13.850815px;}
.ws1dc{word-spacing:13.882315px;}
.ws1d8{word-spacing:13.904815px;}
.ws2a{word-spacing:13.931815px;}
.ws96{word-spacing:13.935458px;}
.ws14c{word-spacing:13.938948px;}
.ws1c8{word-spacing:13.949828px;}
.ws194{word-spacing:14.044625px;}
.ws2d{word-spacing:14.073425px;}
.ws156{word-spacing:14.092624px;}
.ws1b0{word-spacing:14.097424px;}
.ws14e{word-spacing:14.169422px;}
.ws198{word-spacing:14.179022px;}
.ws14d{word-spacing:14.198223px;}
.ws153{word-spacing:14.217422px;}
.ws134{word-spacing:14.231822px;}
.ws147{word-spacing:14.236622px;}
.wsa5{word-spacing:14.251021px;}
.ws152{word-spacing:14.265422px;}
.ws1b2{word-spacing:14.274985px;}
.ws2c{word-spacing:14.275045px;}
.ws13e{word-spacing:14.327821px;}
.ws151{word-spacing:14.337420px;}
.ws146{word-spacing:14.347021px;}
.ws149{word-spacing:14.361420px;}
.ws150{word-spacing:14.371021px;}
.ws14a{word-spacing:14.390220px;}
.ws155{word-spacing:14.433420px;}
.ws14b{word-spacing:14.438219px;}
.ws154{word-spacing:14.442975px;}
.ws157{word-spacing:14.505419px;}
.ws14f{word-spacing:14.515018px;}
.ws148{word-spacing:14.596617px;}
.ws16{word-spacing:15.126152px;}
.ws19{word-spacing:15.138151px;}
.ws1c{word-spacing:15.210152px;}
.ws17{word-spacing:15.216153px;}
.ws1b{word-spacing:15.324170px;}
.ws1e{word-spacing:15.348153px;}
.ws1a{word-spacing:15.420154px;}
.ws98{word-spacing:15.499522px;}
.ws18{word-spacing:15.762158px;}
.ws57{word-spacing:15.805278px;}
.ws192{word-spacing:15.838199px;}
.ws15{word-spacing:15.858158px;}
.ws191{word-spacing:15.859801px;}
.ws193{word-spacing:15.903000px;}
.ws190{word-spacing:16.065001px;}
.ws1a8{word-spacing:16.178401px;}
.ws56{word-spacing:16.240394px;}
.wsac{word-spacing:16.416658px;}
.ws16e{word-spacing:16.475592px;}
.ws99{word-spacing:16.510500px;}
.ws1d{word-spacing:16.512136px;}
.ws82{word-spacing:16.670581px;}
.ws72{word-spacing:16.753382px;}
.wsa8{word-spacing:16.836183px;}
.ws12d{word-spacing:16.875428px;}
.ws6d{word-spacing:16.898947px;}
.ws175{word-spacing:17.128266px;}
.ws105{word-spacing:17.145906px;}
.wsa1{word-spacing:17.163544px;}
.wsa2{word-spacing:17.175305px;}
.ws4d{word-spacing:17.198824px;}
.ws8e{word-spacing:17.228224px;}
.ws174{word-spacing:17.251745px;}
.ws60{word-spacing:17.287023px;}
.ws81{word-spacing:17.310543px;}
.ws12c{word-spacing:17.334063px;}
.ws61{word-spacing:17.345817px;}
.ws102{word-spacing:17.363462px;}
.ws163{word-spacing:17.386983px;}
.wsc2{word-spacing:17.404622px;}
.ws4b{word-spacing:17.439903px;}
.ws1c3{word-spacing:17.481061px;}
.ws142{word-spacing:17.504582px;}
.wsf5{word-spacing:17.539860px;}
.ws15e{word-spacing:17.575140px;}
.wsa7{word-spacing:17.592781px;}
.ws71{word-spacing:17.610420px;}
.wsaa{word-spacing:17.616301px;}
.ws180{word-spacing:17.639819px;}
.wsab{word-spacing:17.663339px;}
.ws75{word-spacing:17.675100px;}
.wsc{word-spacing:17.706178px;}
.ws116{word-spacing:17.728019px;}
.ws9d{word-spacing:17.739780px;}
.ws11{word-spacing:17.742178px;}
.wsb5{word-spacing:17.757419px;}
.ws12{word-spacing:17.790178px;}
.wsc8{word-spacing:17.810338px;}
.ws7e{word-spacing:17.816218px;}
.ws9{word-spacing:17.826179px;}
.wsef{word-spacing:17.845618px;}
.wsb{word-spacing:17.850178px;}
.wse{word-spacing:17.868178px;}
.ws159{word-spacing:17.880898px;}
.ws10{word-spacing:17.904178px;}
.ws3c{word-spacing:17.916178px;}
.ws17a{word-spacing:17.927937px;}
.wse9{word-spacing:17.980856px;}
.wsf0{word-spacing:17.986736px;}
.ws12e{word-spacing:17.992616px;}
.wsf{word-spacing:17.994179px;}
.wse0{word-spacing:18.010256px;}
.wsb7{word-spacing:18.045535px;}
.wsca{word-spacing:18.104342px;}
.wsee{word-spacing:18.104378px;}
.ws41{word-spacing:18.139615px;}
.ws167{word-spacing:18.157254px;}
.wsa{word-spacing:18.186182px;}
.ws84{word-spacing:18.186654px;}
.wsd{word-spacing:18.192183px;}
.wse4{word-spacing:18.245453px;}
.ws52{word-spacing:18.257214px;}
.wscc{word-spacing:18.268973px;}
.wsdb{word-spacing:18.316013px;}
.ws13{word-spacing:18.318187px;}
.ws65{word-spacing:18.339533px;}
.ws13f{word-spacing:18.380693px;}
.ws16a{word-spacing:18.392452px;}
.ws165{word-spacing:18.415973px;}
.wscb{word-spacing:18.480651px;}
.ws44{word-spacing:18.486531px;}
.ws1ba{word-spacing:18.498292px;}
.ws64{word-spacing:18.510052px;}
.ws63{word-spacing:18.580610px;}
.wsfa{word-spacing:18.592371px;}
.ws8{word-spacing:18.600160px;}
.ws125{word-spacing:18.698209px;}
.ws162{word-spacing:18.709970px;}
.ws7d{word-spacing:18.721728px;}
.wsa0{word-spacing:18.757009px;}
.wsf9{word-spacing:18.774648px;}
.wsd3{word-spacing:18.815807px;}
.wsd4{word-spacing:18.815809px;}
.wsf3{word-spacing:18.868727px;}
.ws5f{word-spacing:18.951041px;}
.ws1bf{word-spacing:18.956926px;}
.wse6{word-spacing:18.980446px;}
.wsdc{word-spacing:19.003967px;}
.wsb0{word-spacing:19.056886px;}
.ws1c0{word-spacing:19.103924px;}
.ws1c5{word-spacing:19.145085px;}
.ws1a6{word-spacing:19.156844px;}
.ws1a5{word-spacing:19.168604px;}
.wse5{word-spacing:19.186244px;}
.ws92{word-spacing:19.256803px;}
.ws31{word-spacing:19.268564px;}
.ws19f{word-spacing:19.280323px;}
.ws179{word-spacing:19.315596px;}
.ws133{word-spacing:19.339122px;}
.wsf7{word-spacing:19.392042px;}
.ws15a{word-spacing:19.439082px;}
.wsf1{word-spacing:19.474362px;}
.wsb1{word-spacing:19.480241px;}
.ws143{word-spacing:19.503762px;}
.wsed{word-spacing:19.509640px;}
.ws115{word-spacing:19.521401px;}
.ws19e{word-spacing:19.527281px;}
.ws5{word-spacing:19.529577px;}
.wsa4{word-spacing:19.639000px;}
.wseb{word-spacing:19.691918px;}
.ws4{word-spacing:19.720979px;}
.ws114{word-spacing:19.744838px;}
.ws6{word-spacing:19.773780px;}
.wsde{word-spacing:19.774222px;}
.wsdf{word-spacing:19.803637px;}
.ws7{word-spacing:19.806781px;}
.ws9a{word-spacing:19.856558px;}
.wse1{word-spacing:20.138795px;}
.wsf8{word-spacing:20.191713px;}
.ws19c{word-spacing:20.197594px;}
.wsa9{word-spacing:20.203474px;}
.ws140{word-spacing:20.232874px;}
.ws89{word-spacing:20.244633px;}
.ws128{word-spacing:20.250513px;}
.ws11d{word-spacing:20.285793px;}
.wsd1{word-spacing:20.350472px;}
.ws34{word-spacing:20.350473px;}
.ws103{word-spacing:20.397511px;}
.wsbc{word-spacing:20.409272px;}
.ws5b{word-spacing:20.426912px;}
.ws90{word-spacing:20.456311px;}
.ws1b4{word-spacing:20.597429px;}
.ws43{word-spacing:20.615070px;}
.ws9e{word-spacing:20.620950px;}
.ws42{word-spacing:20.626829px;}
.ws88{word-spacing:20.638589px;}
.ws173{word-spacing:20.673870px;}
.ws1b9{word-spacing:20.709149px;}
.ws73{word-spacing:20.720908px;}
.ws118{word-spacing:20.797348px;}
.ws9f{word-spacing:20.844387px;}
.ws11c{word-spacing:20.879668px;}
.ws93{word-spacing:20.938467px;}
.ws1bb{word-spacing:20.961986px;}
.wsd2{word-spacing:21.003145px;}
.wsc7{word-spacing:21.161903px;}
.ws10e{word-spacing:21.185423px;}
.wsf6{word-spacing:21.203064px;}
.ws10a{word-spacing:21.208944px;}
.ws107{word-spacing:21.226583px;}
.ws10f{word-spacing:21.250103px;}
.wsc9{word-spacing:21.255983px;}
.ws123{word-spacing:21.279502px;}
.ws15f{word-spacing:21.444142px;}
.ws69{word-spacing:21.520580px;}
.ws1b6{word-spacing:21.585260px;}
.ws1b7{word-spacing:21.591140px;}
.ws110{word-spacing:21.608780px;}
.ws68{word-spacing:21.614660px;}
.ws3b{word-spacing:21.661698px;}
.ws59{word-spacing:21.796937px;}
.wse3{word-spacing:21.832217px;}
.wsb8{word-spacing:21.867496px;}
.ws7f{word-spacing:21.920416px;}
.ws100{word-spacing:21.926296px;}
.ws1c1{word-spacing:21.932176px;}
.ws58{word-spacing:21.943936px;}
.ws94{word-spacing:22.020375px;}
.ws66{word-spacing:22.085055px;}
.ws15c{word-spacing:22.226173px;}
.ws3a{word-spacing:22.232054px;}
.ws15b{word-spacing:22.237934px;}
.ws124{word-spacing:22.302612px;}
.ws120{word-spacing:22.396691px;}
.ws166{word-spacing:22.402571px;}
.ws186{word-spacing:22.414331px;}
.ws187{word-spacing:22.437850px;}
.ws35{word-spacing:22.567209px;}
.wse8{word-spacing:22.578970px;}
.ws144{word-spacing:22.737729px;}
.ws171{word-spacing:22.784767px;}
.ws1b8{word-spacing:22.808287px;}
.wsc5{word-spacing:22.931766px;}
.ws87{word-spacing:22.978805px;}
.wsc6{word-spacing:22.996446px;}
.wsd5{word-spacing:23.049365px;}
.ws9b{word-spacing:23.090525px;}
.ws177{word-spacing:23.114045px;}
.ws141{word-spacing:23.155203px;}
.ws8c{word-spacing:23.178724px;}
.ws5a{word-spacing:23.214004px;}
.ws1c7{word-spacing:23.225763px;}
.ws40{word-spacing:23.243402px;}
.ws9c{word-spacing:23.261043px;}
.ws3f{word-spacing:23.290443px;}
.ws121{word-spacing:23.308082px;}
.ws122{word-spacing:23.337481px;}
.ws183{word-spacing:23.349242px;}
.ws19d{word-spacing:23.519760px;}
.ws14{word-spacing:23.538236px;}
.ws39{word-spacing:23.566799px;}
.ws131{word-spacing:23.590320px;}
.ws0{word-spacing:23.649601px;}
.ws101{word-spacing:23.660878px;}
.ws50{word-spacing:23.772597px;}
.ws111{word-spacing:24.001916px;}
.ws95{word-spacing:24.019555px;}
.ws54{word-spacing:24.025435px;}
.ws170{word-spacing:24.113633px;}
.ws117{word-spacing:24.166553px;}
.ws4c{word-spacing:24.201834px;}
.ws1bd{word-spacing:24.225353px;}
.wsec{word-spacing:24.237113px;}
.ws16c{word-spacing:24.242992px;}
.ws7c{word-spacing:24.284152px;}
.ws67{word-spacing:24.337072px;}
.ws17e{word-spacing:24.454671px;}
.ws8b{word-spacing:24.478190px;}
.ws129{word-spacing:24.484070px;}
.ws12b{word-spacing:24.548749px;}
.wsb2{word-spacing:24.584030px;}
.ws158{word-spacing:24.754547px;}
.ws3d{word-spacing:24.789828px;}
.ws36{word-spacing:24.878027px;}
.ws38{word-spacing:24.925065px;}
.wsd6{word-spacing:24.954466px;}
.ws18b{word-spacing:25.019145px;}
.wsbe{word-spacing:25.330781px;}
.ws7b{word-spacing:25.360181px;}
.wsd7{word-spacing:25.436621px;}
.ws16b{word-spacing:25.548339px;}
.wsfe{word-spacing:25.565979px;}
.ws91{word-spacing:25.607139px;}
.ws8f{word-spacing:25.748257px;}
.ws6c{word-spacing:25.760017px;}
.ws7a{word-spacing:25.848217px;}
.ws108{word-spacing:25.865855px;}
.wsfd{word-spacing:25.965805px;}
.ws1be{word-spacing:26.042254px;}
.ws1c2{word-spacing:26.153973px;}
.ws10d{word-spacing:26.283332px;}
.ws70{word-spacing:26.324492px;}
.wsad{word-spacing:26.348012px;}
.ws10c{word-spacing:26.365677px;}
.ws80{word-spacing:26.483249px;}
.ws178{word-spacing:26.495009px;}
.wsb3{word-spacing:26.583209px;}
.ws11a{word-spacing:26.647889px;}
.ws79{word-spacing:26.965405px;}
.ws83{word-spacing:27.006564px;}
.ws17d{word-spacing:27.083004px;}
.ws4f{word-spacing:27.088884px;}
.wsf2{word-spacing:27.247641px;}
.ws6a{word-spacing:27.312321px;}
.ws109{word-spacing:27.335840px;}
.ws48{word-spacing:27.341721px;}
.ws1a0{word-spacing:27.371121px;}
.ws6b{word-spacing:27.418160px;}
.ws132{word-spacing:27.600438px;}
.wsff{word-spacing:27.682757px;}
.ws1b5{word-spacing:27.718037px;}
.ws1b3{word-spacing:27.894435px;}
.ws74{word-spacing:27.906196px;}
.ws8d{word-spacing:27.941475px;}
.ws17c{word-spacing:27.970875px;}
.ws5d{word-spacing:27.994394px;}
.ws33{word-spacing:28.023795px;}
.ws5e{word-spacing:28.041433px;}
.ws17b{word-spacing:28.076714px;}
.ws145{word-spacing:28.100233px;}
.ws53{word-spacing:28.182553px;}
.ws3e{word-spacing:28.247231px;}
.wsba{word-spacing:28.258992px;}
.ws12f{word-spacing:28.329550px;}
.wsdd{word-spacing:28.341311px;}
.ws130{word-spacing:28.347191px;}
.ws5c{word-spacing:28.476549px;}
.ws1a1{word-spacing:28.647068px;}
.ws182{word-spacing:28.688227px;}
.ws184{word-spacing:29.005744px;}
.ws4e{word-spacing:29.029264px;}
.wscd{word-spacing:29.052784px;}
.ws160{word-spacing:29.176263px;}
.ws11e{word-spacing:29.258582px;}
.ws76{word-spacing:29.317381px;}
.ws11f{word-spacing:29.417339px;}
.ws168{word-spacing:29.564338px;}
.wsea{word-spacing:29.629017px;}
.wsae{word-spacing:29.687816px;}
.ws15d{word-spacing:29.723097px;}
.ws185{word-spacing:29.752496px;}
.ws51{word-spacing:29.881856px;}
.ws4a{word-spacing:30.705047px;}
.ws32{word-spacing:30.728565px;}
.ws161{word-spacing:30.746207px;}
.ws1c6{word-spacing:30.922606px;}
.ws119{word-spacing:31.116643px;}
.ws11b{word-spacing:31.251881px;}
.ws1a4{word-spacing:31.451800px;}
.ws1a3{word-spacing:31.592917px;}
.ws112{word-spacing:31.628198px;}
.wsa6{word-spacing:31.886914px;}
.ws18a{word-spacing:32.533707px;}
.ws106{word-spacing:32.957064px;}
.ws1c4{word-spacing:32.962942px;}
.ws127{word-spacing:33.351020px;}
.ws104{word-spacing:33.433338px;}
.wsf4{word-spacing:33.498019px;}
.ws10b{word-spacing:33.727335px;}
.wsc1{word-spacing:34.332971px;}
.wse7{word-spacing:34.421170px;}
.ws1a2{word-spacing:34.662246px;}
.wsfc{word-spacing:34.803366px;}
.wscf{word-spacing:34.821005px;}
.wsbb{word-spacing:35.150281px;}
.ws49{word-spacing:35.726514px;}
.wsc3{word-spacing:36.367429px;}
.ws97{word-spacing:36.584987px;}
.ws55{word-spacing:36.696700px;}
.ws85{word-spacing:36.773146px;}
.ws86{word-spacing:37.067143px;}
.ws6f{word-spacing:38.043212px;}
.wsb4{word-spacing:38.284288px;}
.ws62{word-spacing:38.737045px;}
.ws169{word-spacing:39.325038px;}
.ws47{word-spacing:39.554357px;}
.ws46{word-spacing:39.619035px;}
.ws126{word-spacing:40.101191px;}
.ws78{word-spacing:40.371667px;}
.ws1bc{word-spacing:40.695064px;}
.wsa3{word-spacing:41.347739px;}
.wsb9{word-spacing:41.706414px;}
.wsb6{word-spacing:42.905923px;}
.ws1{word-spacing:42.984179px;}
.ws3{word-spacing:43.142581px;}
.ws2{word-spacing:43.300982px;}
.wse2{word-spacing:43.358679px;}
.ws113{word-spacing:45.093261px;}
.wsfb{word-spacing:45.869411px;}
.wsc4{word-spacing:45.939971px;}
.ws1a7{word-spacing:46.263367px;}
.wsaf{word-spacing:47.286478px;}
.ws164{word-spacing:49.150420px;}
.ws19b{word-spacing:52.260906px;}
.ws8a{word-spacing:52.772461px;}
.wsda{word-spacing:53.172296px;}
.ws45{word-spacing:54.454123px;}
.ws197{word-spacing:160.884352px;}
.ws195{word-spacing:160.889184px;}
.ws1aa{word-spacing:224.157172px;}
.ws1ad{word-spacing:224.157198px;}
.ws1ae{word-spacing:224.157232px;}
.ws1ac{word-spacing:372.835340px;}
.ws1a9{word-spacing:378.873654px;}
.ws1ab{word-spacing:391.881492px;}
.ws196{word-spacing:440.183279px;}
._24{margin-left:-23.184713px;}
._28{margin-left:-20.432786px;}
._27{margin-left:-19.321483px;}
._3c{margin-left:-18.157512px;}
._25{margin-left:-17.022426px;}
._26{margin-left:-15.987559px;}
._1e{margin-left:-12.647672px;}
._1d{margin-left:-11.418870px;}
._8{margin-left:-2.052021px;}
._6{margin-left:-1.014010px;}
._4{width:1.074010px;}
._22{width:2.119512px;}
._0{width:8.954400px;}
._16{width:10.089975px;}
._15{width:11.505058px;}
._21{width:13.276710px;}
._7{width:14.286143px;}
._9{width:16.326164px;}
._17{width:17.884994px;}
._3{width:19.170192px;}
._14{width:20.174075px;}
._b{width:21.855736px;}
._c{width:23.631479px;}
._5{width:25.176249px;}
._d{width:26.179164px;}
._3a{width:27.300561px;}
._11{width:28.576507px;}
._e{width:29.652538px;}
._1b{width:30.824670px;}
._a{width:32.020315px;}
._1a{width:33.258781px;}
._20{width:34.897444px;}
._12{width:36.824226px;}
._13{width:38.831124px;}
._10{width:40.873531px;}
._18{width:42.664842px;}
._2{width:44.539384px;}
._1c{width:47.027761px;}
._23{width:50.232324px;}
._1f{width:52.819505px;}
._f{width:55.665393px;}
._3b{width:65.861121px;}
._2a{width:152.441290px;}
._29{width:154.346868px;}
._2f{width:166.884316px;}
._2b{width:181.380135px;}
._2c{width:196.408713px;}
._31{width:215.709304px;}
._30{width:218.022870px;}
._38{width:230.493119px;}
._32{width:244.988938px;}
._33{width:259.676750px;}
._35{width:388.108758px;}
._37{width:401.116596px;}
._39{width:420.503529px;}
._2d{width:455.456697px;}
._2e{width:468.464535px;}
._34{width:534.372539px;}
._36{width:547.380376px;}
._19{width:1567.060405px;}
._1{width:1976.208061px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fs6{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fs9{font-size:47.999400px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fsa{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y28{bottom:65.394090px;}
.y27{bottom:77.384910px;}
.y167{bottom:89.290980px;}
.yff{bottom:89.293275px;}
.y1ba{bottom:89.294550px;}
.y12c{bottom:89.294745px;}
.y98{bottom:89.295960px;}
.y202{bottom:89.296470px;}
.y10e{bottom:89.298660px;}
.y11d{bottom:89.304540px;}
.yca{bottom:89.308965px;}
.y157{bottom:89.317785px;}
.y67{bottom:89.318295px;}
.y26{bottom:89.375745px;}
.y184{bottom:98.646195px;}
.y25{bottom:101.366565px;}
.y166{bottom:102.047250px;}
.y1b9{bottom:102.815745px;}
.y201{bottom:102.817665px;}
.yfe{bottom:107.321175px;}
.y12b{bottom:107.322645px;}
.y97{bottom:107.323845px;}
.y10d{bottom:107.326560px;}
.y11c{bottom:107.332440px;}
.yc9{bottom:107.336850px;}
.y156{bottom:107.345685px;}
.y66{bottom:107.346180px;}
.y24{bottom:113.357400px;}
.y183{bottom:113.697600px;}
.y1b8{bottom:116.336940px;}
.y200{bottom:116.338860px;}
.y165{bottom:121.777785px;}
.yfd{bottom:125.263815px;}
.y96{bottom:125.266485px;}
.yc8{bottom:125.279490px;}
.y127{bottom:125.349075px;}
.y12a{bottom:125.350545px;}
.y10c{bottom:125.354445px;}
.y11b{bottom:125.360340px;}
.y155{bottom:125.373570px;}
.y65{bottom:125.374080px;}
.y1ff{bottom:129.775680px;}
.y2f{bottom:138.784305px;}
.y164{bottom:142.782315px;}
.yfc{bottom:143.291700px;}
.y129{bottom:143.293170px;}
.y95{bottom:143.294385px;}
.y1fe{bottom:143.296875px;}
.y10b{bottom:143.297085px;}
.y11a{bottom:143.302980px;}
.yc7{bottom:143.307390px;}
.y154{bottom:143.316210px;}
.y64{bottom:143.316720px;}
.y1b7{bottom:145.250190px;}
.y2e{bottom:152.305500px;}
.y1fd{bottom:156.818070px;}
.y2d{bottom:157.322850px;}
.y1b6{bottom:158.771385px;}
.yfb{bottom:161.319600px;}
.y128{bottom:161.321070px;}
.y94{bottom:161.322285px;}
.y10a{bottom:161.324985px;}
.y119{bottom:161.330880px;}
.yc6{bottom:161.335290px;}
.y153{bottom:161.344110px;}
.y63{bottom:161.344620px;}
.y163{bottom:163.786860px;}
.y2c{bottom:165.826755px;}
.y1fc{bottom:170.339265px;}
.yfa{bottom:179.262900px;}
.y93{bottom:179.264925px;}
.yc5{bottom:179.277915px;}
.y2b{bottom:179.347950px;}
.y109{bottom:179.352885px;}
.y118{bottom:179.358765px;}
.y152{bottom:179.372010px;}
.y62{bottom:179.372505px;}
.y1fb{bottom:183.776085px;}
.y2a{bottom:184.280250px;}
.y162{bottom:184.791390px;}
.y1b5{bottom:187.684620px;}
.y29{bottom:192.784200px;}
.y92{bottom:197.292810px;}
.y108{bottom:197.295510px;}
.y1fa{bottom:197.297280px;}
.y117{bottom:197.301405px;}
.yc4{bottom:197.305815px;}
.y151{bottom:197.314635px;}
.y61{bottom:197.315145px;}
.y1b4{bottom:201.121440px;}
.y161{bottom:205.795935px;}
.y1f9{bottom:210.818475px;}
.y133{bottom:212.003325px;}
.y1b3{bottom:214.642635px;}
.y91{bottom:215.320710px;}
.y107{bottom:215.323410px;}
.yf9{bottom:215.324985px;}
.y116{bottom:215.329305px;}
.yc3{bottom:215.333715px;}
.y150{bottom:215.342535px;}
.y60{bottom:215.343045px;}
.y1f8{bottom:224.339670px;}
.y160{bottom:226.800465px;}
.y132{bottom:227.054730px;}
.y1b2{bottom:228.163830px;}
.y90{bottom:233.263350px;}
.yc2{bottom:233.276355px;}
.y106{bottom:233.351310px;}
.yf8{bottom:233.352885px;}
.y115{bottom:233.357205px;}
.y14f{bottom:233.370435px;}
.y5f{bottom:233.370945px;}
.y1f7{bottom:237.775365px;}
.y1b1{bottom:241.685025px;}
.y131{bottom:242.022150px;}
.y15f{bottom:247.804995px;}
.y8f{bottom:251.291250px;}
.y105{bottom:251.293950px;}
.yf7{bottom:251.295510px;}
.y1f6{bottom:251.296560px;}
.y114{bottom:251.299830px;}
.yc1{bottom:251.304240px;}
.y14e{bottom:251.313075px;}
.y5e{bottom:251.313585px;}
.y1b0{bottom:255.120720px;}
.y130{bottom:256.989570px;}
.y1f5{bottom:264.817755px;}
.y1af{bottom:268.641915px;}
.y15e{bottom:268.809540px;}
.y8e{bottom:269.319600px;}
.y104{bottom:269.321835px;}
.yf6{bottom:269.323410px;}
.y113{bottom:269.327730px;}
.yc0{bottom:269.332140px;}
.y14d{bottom:269.340960px;}
.y5d{bottom:269.341470px;}
.y12f{bottom:272.040975px;}
.y1f4{bottom:278.338950px;}
.y12e{bottom:287.008395px;}
.ybf{bottom:287.274780px;}
.y103{bottom:287.349735px;}
.yf5{bottom:287.351310px;}
.y112{bottom:287.355630px;}
.y14c{bottom:287.368860px;}
.y5c{bottom:287.369370px;}
.y15d{bottom:288.538485px;}
.y1f3{bottom:291.774645px;}
.y1ae{bottom:297.555150px;}
.y12d{bottom:302.059800px;}
.y102{bottom:305.292375px;}
.yf4{bottom:305.293950px;}
.y1f2{bottom:305.295840px;}
.y111{bottom:305.298270px;}
.ybe{bottom:305.302680px;}
.y14b{bottom:305.311500px;}
.y5b{bottom:305.312010px;}
.y15c{bottom:308.183865px;}
.y1ad{bottom:311.076345px;}
.y8d{bottom:314.316780px;}
.y1f1{bottom:318.817035px;}
.y101{bottom:323.320275px;}
.yf3{bottom:323.321835px;}
.y110{bottom:323.326155px;}
.ybd{bottom:323.330580px;}
.y14a{bottom:323.339400px;}
.y5a{bottom:323.339910px;}
.y1ac{bottom:324.597540px;}
.y15b{bottom:324.765915px;}
.y23{bottom:326.630535px;}
.y1f0{bottom:332.338230px;}
.y8c{bottom:332.344665px;}
.y1ab{bottom:338.118735px;}
.y100{bottom:341.262915px;}
.yf2{bottom:341.264475px;}
.y10f{bottom:341.268795px;}
.ybc{bottom:341.273205px;}
.y149{bottom:341.282040px;}
.y59{bottom:341.282535px;}
.y1ef{bottom:345.773925px;}
.y8b{bottom:350.287305px;}
.y1aa{bottom:351.554430px;}
.y22{bottom:352.142805px;}
.yf1{bottom:359.292375px;}
.y1ee{bottom:359.295120px;}
.ybb{bottom:359.301105px;}
.y148{bottom:359.309925px;}
.y58{bottom:359.310435px;}
.y1a9{bottom:365.075625px;}
.y8a{bottom:368.315205px;}
.y21{bottom:370.171485px;}
.y1ed{bottom:372.816315px;}
.yf0{bottom:377.320275px;}
.yba{bottom:377.329005px;}
.y147{bottom:377.337825px;}
.y57{bottom:377.338335px;}
.y1a8{bottom:378.596820px;}
.y1ec{bottom:386.337510px;}
.y89{bottom:386.343105px;}
.y20{bottom:388.200165px;}
.y125{bottom:391.180770px;}
.y1a7{bottom:392.118015px;}
.yef{bottom:395.262915px;}
.yb9{bottom:395.271645px;}
.y146{bottom:395.280465px;}
.y56{bottom:395.280975px;}
.y1eb{bottom:399.773205px;}
.y88{bottom:404.285745px;}
.y1a6{bottom:405.553710px;}
.y124{bottom:406.232175px;}
.y1f{bottom:410.650905px;}
.y1ea{bottom:413.294400px;}
.yb8{bottom:413.299530px;}
.y145{bottom:413.308365px;}
.y55{bottom:413.308860px;}
.yee{bottom:413.323050px;}
.y1a5{bottom:419.074905px;}
.y123{bottom:421.199595px;}
.y87{bottom:422.313630px;}
.y1e9{bottom:426.815595px;}
.y1e{bottom:428.679570px;}
.yb7{bottom:431.327430px;}
.y144{bottom:431.336250px;}
.y54{bottom:431.336760px;}
.yed{bottom:431.350950px;}
.y122{bottom:436.167000px;}
.y1e8{bottom:440.336790px;}
.y86{bottom:440.341530px;}
.y1d{bottom:446.708265px;}
.y1a4{bottom:447.988140px;}
.yb6{bottom:449.270070px;}
.y143{bottom:449.278890px;}
.y53{bottom:449.279400px;}
.yec{bottom:449.293590px;}
.y121{bottom:451.218420px;}
.y1e7{bottom:453.773610px;}
.y85{bottom:458.284170px;}
.y1a3{bottom:461.509335px;}
.y1c{bottom:464.651415px;}
.y120{bottom:466.185825px;}
.y1e6{bottom:467.294805px;}
.yb5{bottom:467.297970px;}
.y142{bottom:467.306790px;}
.y52{bottom:467.307300px;}
.yeb{bottom:467.321490px;}
.y84{bottom:476.312070px;}
.y1e5{bottom:480.816000px;}
.y11f{bottom:481.237245px;}
.y1b{bottom:482.680110px;}
.yb4{bottom:485.325855px;}
.y141{bottom:485.334690px;}
.y51{bottom:485.335200px;}
.yea{bottom:485.349390px;}
.y1a2{bottom:490.422585px;}
.y1e4{bottom:494.337195px;}
.y83{bottom:494.339955px;}
.y11e{bottom:496.204650px;}
.y1a{bottom:500.708775px;}
.yb3{bottom:503.268495px;}
.y140{bottom:503.277315px;}
.y50{bottom:503.277825px;}
.ye9{bottom:503.292015px;}
.y1a1{bottom:503.943780px;}
.y1e3{bottom:507.772890px;}
.y82{bottom:512.282595px;}
.y1a0{bottom:517.464975px;}
.y19{bottom:518.651970px;}
.y1e2{bottom:521.294085px;}
.yb2{bottom:521.296395px;}
.y13f{bottom:521.305215px;}
.y4f{bottom:521.305725px;}
.ye8{bottom:521.319915px;}
.y81{bottom:530.310495px;}
.y19f{bottom:530.986170px;}
.y1e1{bottom:534.815280px;}
.y18{bottom:536.680665px;}
.yb1{bottom:539.324295px;}
.y13e{bottom:539.333115px;}
.y4e{bottom:539.333625px;}
.ye7{bottom:539.347815px;}
.y19e{bottom:544.421865px;}
.y1e0{bottom:548.336475px;}
.y80{bottom:548.338395px;}
.y17{bottom:554.709315px;}
.yb0{bottom:557.266935px;}
.y13d{bottom:557.275755px;}
.y4d{bottom:557.276265px;}
.ye6{bottom:557.290455px;}
.y1df{bottom:561.772170px;}
.y7f{bottom:566.281035px;}
.y19d{bottom:573.337710px;}
.y1de{bottom:575.293365px;}
.yaf{bottom:575.294820px;}
.y13c{bottom:575.303655px;}
.y4c{bottom:575.304150px;}
.ye5{bottom:575.318340px;}
.y16{bottom:577.160070px;}
.y7e{bottom:584.308920px;}
.y1dd{bottom:588.814560px;}
.y19c{bottom:591.365610px;}
.yae{bottom:593.322720px;}
.y13b{bottom:593.331540px;}
.y4b{bottom:593.332050px;}
.ye4{bottom:593.346240px;}
.y15{bottom:595.188720px;}
.y1dc{bottom:602.335755px;}
.y7d{bottom:602.336820px;}
.y19b{bottom:609.393510px;}
.yad{bottom:611.265360px;}
.y13a{bottom:611.274180px;}
.y4a{bottom:611.274690px;}
.ye3{bottom:611.288880px;}
.y14{bottom:613.131915px;}
.y1db{bottom:615.771450px;}
.y7c{bottom:620.279460px;}
.y19a{bottom:627.336150px;}
.y1da{bottom:629.292645px;}
.yac{bottom:629.293260px;}
.y139{bottom:629.302080px;}
.y49{bottom:629.302590px;}
.ye2{bottom:629.316780px;}
.y13{bottom:631.160610px;}
.y7b{bottom:638.307360px;}
.y1d9{bottom:642.813840px;}
.y199{bottom:645.364035px;}
.yab{bottom:647.321145px;}
.y138{bottom:647.329980px;}
.y48{bottom:647.330475px;}
.ye1{bottom:647.344665px;}
.y12{bottom:649.189275px;}
.y1d8{bottom:656.335035px;}
.y7a{bottom:656.335245px;}
.y198{bottom:663.391935px;}
.yaa{bottom:665.263785px;}
.y137{bottom:665.272605px;}
.y47{bottom:665.273115px;}
.ye0{bottom:665.287305px;}
.y11{bottom:667.132455px;}
.y1d7{bottom:669.770730px;}
.y79{bottom:674.277885px;}
.y197{bottom:681.335265px;}
.ya9{bottom:683.291685px;}
.y1d6{bottom:683.291925px;}
.y16f{bottom:683.294730px;}
.y177{bottom:683.297670px;}
.y136{bottom:683.300505px;}
.y46{bottom:683.301015px;}
.ydf{bottom:683.315205px;}
.y10{bottom:685.161120px;}
.y78{bottom:692.305785px;}
.y1d5{bottom:696.813120px;}
.ya8{bottom:701.319585px;}
.y16e{bottom:701.322630px;}
.y176{bottom:701.325555px;}
.y135{bottom:701.328405px;}
.y45{bottom:701.328915px;}
.yde{bottom:701.343105px;}
.yf{bottom:703.189815px;}
.y77{bottom:710.333685px;}
.y1d4{bottom:710.334315px;}
.ya7{bottom:719.262765px;}
.y16d{bottom:719.265270px;}
.y175{bottom:719.268195px;}
.y44{bottom:719.271555px;}
.y196{bottom:719.272155px;}
.ydd{bottom:719.285745px;}
.ye{bottom:721.133010px;}
.y1d3{bottom:723.770010px;}
.y76{bottom:728.277015px;}
.y1d2{bottom:737.291205px;}
.y16c{bottom:737.293170px;}
.y174{bottom:737.296095px;}
.y43{bottom:737.299440px;}
.y195{bottom:737.300040px;}
.ydc{bottom:737.313630px;}
.yd{bottom:739.161675px;}
.y15a{bottom:745.114875px;}
.y1d1{bottom:750.812400px;}
.y16b{bottom:755.321055px;}
.ya6{bottom:755.323230px;}
.y173{bottom:755.323995px;}
.y42{bottom:755.327340px;}
.y194{bottom:755.327940px;}
.ydb{bottom:755.341530px;}
.yc{bottom:757.190370px;}
.y159{bottom:760.082280px;}
.y1d0{bottom:764.333685px;}
.y16a{bottom:773.263695px;}
.ya5{bottom:773.265870px;}
.y172{bottom:773.266635px;}
.y75{bottom:773.269500px;}
.y41{bottom:773.269980px;}
.y193{bottom:773.270580px;}
.yda{bottom:773.284170px;}
.y158{bottom:775.133700px;}
.yb{bottom:784.147755px;}
.y169{bottom:791.291595px;}
.ya4{bottom:791.293770px;}
.y171{bottom:791.294520px;}
.y74{bottom:791.297385px;}
.y40{bottom:791.297880px;}
.y192{bottom:791.298480px;}
.yd9{bottom:791.312070px;}
.y168{bottom:809.319495px;}
.ya3{bottom:809.321655px;}
.y170{bottom:809.322420px;}
.y73{bottom:809.325285px;}
.y3f{bottom:809.325765px;}
.y191{bottom:809.326365px;}
.yd8{bottom:809.339955px;}
.y1cf{bottom:812.295960px;}
.ya2{bottom:827.264295px;}
.y72{bottom:827.267925px;}
.y3e{bottom:827.268405px;}
.y190{bottom:827.269005px;}
.yd7{bottom:827.282595px;}
.y182{bottom:837.467370px;}
.y1ce{bottom:839.338350px;}
.y9{bottom:841.889415px;}
.y1cd{bottom:844.270665px;}
.y20f{bottom:845.291250px;}
.ya1{bottom:845.292195px;}
.y71{bottom:845.295825px;}
.y3d{bottom:845.296305px;}
.y18f{bottom:845.296905px;}
.yd6{bottom:845.310495px;}
.ya{bottom:849.287985px;}
.y1cc{bottom:852.774630px;}
.y1ca{bottom:852.774675px;}
.y181{bottom:857.198130px;}
.y1cb{bottom:857.791995px;}
.y20e{bottom:858.812445px;}
.y7{bottom:862.894185px;}
.y5{bottom:862.894230px;}
.ya0{bottom:863.320095px;}
.y70{bottom:863.323710px;}
.y3c{bottom:863.324205px;}
.y18e{bottom:863.324805px;}
.yd5{bottom:863.338395px;}
.y1c7{bottom:866.295825px;}
.y1c9{bottom:866.295870px;}
.y8{bottom:870.292650px;}
.y6{bottom:870.292695px;}
.y1c8{bottom:871.313145px;}
.y20d{bottom:872.333685px;}
.y180{bottom:878.202660px;}
.y1c6{bottom:879.817020px;}
.y1c4{bottom:879.817155px;}
.y9f{bottom:881.262720px;}
.y6f{bottom:881.266350px;}
.y3b{bottom:881.266830px;}
.y18d{bottom:881.267430px;}
.yd4{bottom:881.281020px;}
.y1c5{bottom:884.834385px;}
.y1c3{bottom:893.338350px;}
.y1c2{bottom:898.270665px;}
.y4{bottom:898.952085px;}
.y17f{bottom:899.207205px;}
.y9e{bottom:899.291100px;}
.y6e{bottom:899.294250px;}
.y3a{bottom:899.294730px;}
.y18c{bottom:899.295330px;}
.yd3{bottom:899.308920px;}
.y1c1{bottom:906.778380px;}
.y20c{bottom:908.307270px;}
.y6d{bottom:917.322150px;}
.y39{bottom:917.322630px;}
.y18b{bottom:917.323230px;}
.yd2{bottom:917.336820px;}
.y17e{bottom:920.211735px;}
.y20b{bottom:921.828465px;}
.y1c0{bottom:933.820770px;}
.y9d{bottom:935.263695px;}
.y20a{bottom:935.264160px;}
.y6c{bottom:935.264775px;}
.y38{bottom:935.265270px;}
.y18a{bottom:935.265870px;}
.yd1{bottom:935.279460px;}
.y3{bottom:937.900635px;}
.y17d{bottom:941.216265px;}
.y1bf{bottom:947.341965px;}
.y209{bottom:948.785355px;}
.y9c{bottom:953.291595px;}
.y6b{bottom:953.292675px;}
.y37{bottom:953.293170px;}
.y189{bottom:953.293770px;}
.yd0{bottom:953.307360px;}
.y17c{bottom:962.220810px;}
.y208{bottom:962.306550px;}
.y9b{bottom:971.319495px;}
.y6a{bottom:971.320575px;}
.y36{bottom:971.321055px;}
.y188{bottom:971.321655px;}
.ycf{bottom:971.335245px;}
.y207{bottom:975.827745px;}
.y2{bottom:976.932030px;}
.y1be{bottom:981.783375px;}
.y17b{bottom:983.225340px;}
.y9a{bottom:989.262720px;}
.y69{bottom:989.263215px;}
.y206{bottom:989.263440px;}
.y35{bottom:989.263695px;}
.y187{bottom:989.264295px;}
.yce{bottom:989.277885px;}
.y1bd{bottom:995.304570px;}
.y205{bottom:1002.784635px;}
.y17a{bottom:1004.229885px;}
.y68{bottom:1007.291100px;}
.y34{bottom:1007.291595px;}
.y186{bottom:1007.292195px;}
.ycd{bottom:1007.305785px;}
.y204{bottom:1016.305830px;}
.y179{bottom:1023.958830px;}
.y33{bottom:1025.319495px;}
.y99{bottom:1025.320095px;}
.ycc{bottom:1025.333685px;}
.y203{bottom:1029.827025px;}
.y1bc{bottom:1029.830370px;}
.y1{bottom:1033.908330px;}
.y32{bottom:1043.262720px;}
.y1bb{bottom:1043.266065px;}
.ycb{bottom:1043.276310px;}
.y178{bottom:1043.687985px;}
.y31{bottom:1112.825595px;}
.y134{bottom:1127.787450px;}
.y126{bottom:1127.787960px;}
.y185{bottom:1127.788125px;}
.y210{bottom:1127.791808px;}
.y30{bottom:1127.791815px;}
.ha{height:21.626539px;}
.h8{height:30.281567px;}
.h5{height:31.721260px;}
.h9{height:32.444567px;}
.hc{height:34.607567px;}
.hf{height:38.934000px;}
.he{height:39.799633px;}
.hb{height:42.287471px;}
.hd{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.h4{height:47.586433px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039380px;}
.x12{left:89.036250px;}
.x1{left:91.077180px;}
.x10{left:94.818930px;}
.x13{left:97.028550px;}
.x1d{left:107.574690px;}
.xf{left:169.228380px;}
.x16{left:183.600120px;}
.x3{left:193.294545px;}
.x17{left:199.502325px;}
.x4{left:231.817230px;}
.x11{left:270.510150px;}
.x5{left:308.862930px;}
.x6{left:329.697630px;}
.x7{left:435.401580px;}
.x8{left:441.014130px;}
.x14{left:457.086450px;}
.x18{left:461.083335px;}
.x15{left:469.071435px;}
.x1c{left:479.621805px;}
.x1a{left:495.269250px;}
.x1b{left:499.351050px;}
.x9{left:538.469130px;}
.x19{left:540.084915px;}
.xa{left:544.081815px;}
.xb{left:627.590415px;}
.xc{left:640.856580px;}
.xd{left:717.647130px;}
.xe{left:735.590415px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-1.672516pt;}
.ls38{letter-spacing:-1.588890pt;}
.ls34{letter-spacing:-1.583664pt;}
.ls2f{letter-spacing:-1.557531pt;}
.ls39{letter-spacing:-1.552304pt;}
.ls36{letter-spacing:-1.541851pt;}
.ls2e{letter-spacing:-1.536624pt;}
.ls32{letter-spacing:-1.526171pt;}
.ls37{letter-spacing:-1.505265pt;}
.ls2c{letter-spacing:-1.500038pt;}
.ls30{letter-spacing:-1.494811pt;}
.ls2d{letter-spacing:-1.489585pt;}
.ls35{letter-spacing:-1.473905pt;}
.ls48{letter-spacing:-1.420782pt;}
.ls52{letter-spacing:-1.416516pt;}
.ls4f{letter-spacing:-1.399449pt;}
.ls4b{letter-spacing:-1.386649pt;}
.ls51{letter-spacing:-1.369579pt;}
.ls4a{letter-spacing:-1.365316pt;}
.ls45{letter-spacing:-1.361050pt;}
.ls4e{letter-spacing:-1.356783pt;}
.ls6e{letter-spacing:-1.355982pt;}
.ls49{letter-spacing:-1.352516pt;}
.ls46{letter-spacing:-1.348250pt;}
.ls50{letter-spacing:-1.339717pt;}
.ls6f{letter-spacing:-1.331982pt;}
.ls47{letter-spacing:-1.331183pt;}
.ls72{letter-spacing:-1.327982pt;}
.ls4c{letter-spacing:-1.326917pt;}
.ls4d{letter-spacing:-1.318384pt;}
.ls70{letter-spacing:-1.303979pt;}
.ls71{letter-spacing:-1.287983pt;}
.ls67{letter-spacing:-1.034869pt;}
.ls73{letter-spacing:-1.015986pt;}
.ls5f{letter-spacing:-1.008736pt;}
.ls63{letter-spacing:-1.003505pt;}
.ls3f{letter-spacing:-0.998388pt;}
.ls3e{letter-spacing:-0.998283pt;}
.ls61{letter-spacing:-0.993057pt;}
.ls5e{letter-spacing:-0.977377pt;}
.ls13{letter-spacing:-0.972145pt;}
.ls19{letter-spacing:-0.966923pt;}
.ls17{letter-spacing:-0.961697pt;}
.ls15{letter-spacing:-0.956470pt;}
.ls9{letter-spacing:-0.951244pt;}
.ls14{letter-spacing:-0.946017pt;}
.lsa{letter-spacing:-0.940790pt;}
.lsc{letter-spacing:-0.935564pt;}
.ls11{letter-spacing:-0.930337pt;}
.ls1a{letter-spacing:-0.925111pt;}
.ls65{letter-spacing:-0.919884pt;}
.ls1b{letter-spacing:-0.914657pt;}
.ls10{letter-spacing:-0.909431pt;}
.ls18{letter-spacing:-0.904204pt;}
.lse{letter-spacing:-0.898977pt;}
.ls60{letter-spacing:-0.893751pt;}
.ls12{letter-spacing:-0.888524pt;}
.lsb{letter-spacing:-0.883292pt;}
.ls16{letter-spacing:-0.867618pt;}
.ls5b{letter-spacing:-0.862391pt;}
.ls64{letter-spacing:-0.857165pt;}
.ls62{letter-spacing:-0.815352pt;}
.lsd{letter-spacing:-0.804898pt;}
.lsf{letter-spacing:-0.768312pt;}
.ls3d{letter-spacing:-0.736952pt;}
.ls2{letter-spacing:-0.677340pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.051986pt;}
.ls6d{letter-spacing:0.052042pt;}
.ls6a{letter-spacing:0.098130pt;}
.ls27{letter-spacing:0.104545pt;}
.ls4{letter-spacing:0.172480pt;}
.ls5{letter-spacing:0.177709pt;}
.ls1{letter-spacing:0.474671pt;}
.ls68{letter-spacing:0.475622pt;}
.ls56{letter-spacing:0.554021pt;}
.ls55{letter-spacing:0.574927pt;}
.ls54{letter-spacing:0.585381pt;}
.ls57{letter-spacing:0.616740pt;}
.ls58{letter-spacing:0.705593pt;}
.ls33{letter-spacing:8.838203pt;}
.ls41{letter-spacing:9.898551pt;}
.ls42{letter-spacing:9.953998pt;}
.ls43{letter-spacing:10.064945pt;}
.ls40{letter-spacing:10.111893pt;}
.ls44{letter-spacing:10.291099pt;}
.ls3b{letter-spacing:10.803084pt;}
.ls3c{letter-spacing:10.862798pt;}
.ls3a{letter-spacing:11.020693pt;}
.ls6b{letter-spacing:12.003855pt;}
.ls59{letter-spacing:12.531040pt;}
.ls5a{letter-spacing:12.833973pt;}
.ls5d{letter-spacing:14.132762pt;}
.ls21{letter-spacing:15.151957pt;}
.ls25{letter-spacing:15.894080pt;}
.ls26{letter-spacing:16.061344pt;}
.ls66{letter-spacing:16.369753pt;}
.ls74{letter-spacing:16.458027pt;}
.ls28{letter-spacing:16.662411pt;}
.ls29{letter-spacing:16.803573pt;}
.ls24{letter-spacing:17.106720pt;}
.ls1c{letter-spacing:18.178197pt;}
.ls53{letter-spacing:18.465634pt;}
.ls8{letter-spacing:18.476036pt;}
.ls5c{letter-spacing:19.720012pt;}
.ls22{letter-spacing:22.108544pt;}
.ls23{letter-spacing:22.406464pt;}
.ls1d{letter-spacing:22.406517pt;}
.ls3{letter-spacing:22.469183pt;}
.ls1e{letter-spacing:22.709611pt;}
.ls6{letter-spacing:22.772330pt;}
.ls2a{letter-spacing:22.850720pt;}
.ls1f{letter-spacing:23.012757pt;}
.ls2b{letter-spacing:23.451840pt;}
.ls20{letter-spacing:27.852597pt;}
.ls69{letter-spacing:27.852651pt;}
.ls7{letter-spacing:32.687236pt;}
.ws16d{word-spacing:-19.772278pt;}
.ws200{word-spacing:-16.512960pt;}
.ws17f{word-spacing:-16.422019pt;}
.ws16f{word-spacing:-14.185029pt;}
.ws189{word-spacing:-0.757859pt;}
.ws188{word-spacing:-0.527888pt;}
.ws30{word-spacing:-0.054933pt;}
.ws37{word-spacing:-0.052266pt;}
.ws2e{word-spacing:-0.042666pt;}
.ws28{word-spacing:-0.039999pt;}
.ws23{word-spacing:-0.037333pt;}
.ws2f{word-spacing:0.000000pt;}
.ws12a{word-spacing:0.684686pt;}
.ws6e{word-spacing:0.752632pt;}
.ws176{word-spacing:0.763086pt;}
.ws181{word-spacing:0.982603pt;}
.wsd9{word-spacing:4.212650pt;}
.ws13a{word-spacing:7.914568pt;}
.ws18f{word-spacing:8.217498pt;}
.ws18d{word-spacing:8.520427pt;}
.ws1cf{word-spacing:9.671871pt;}
.ws1ce{word-spacing:9.839869pt;}
.ws1fd{word-spacing:9.911868pt;}
.ws1d0{word-spacing:10.127865pt;}
.ws1fc{word-spacing:10.187864pt;}
.wsd0{word-spacing:10.191897pt;}
.ws77{word-spacing:10.270295pt;}
.wsc0{word-spacing:10.296428pt;}
.ws1cd{word-spacing:10.371861pt;}
.wsbd{word-spacing:10.374827pt;}
.ws136{word-spacing:10.376404pt;}
.ws135{word-spacing:10.457470pt;}
.ws138{word-spacing:10.461736pt;}
.ws27{word-spacing:10.563860pt;}
.wsbf{word-spacing:10.599572pt;}
.ws137{word-spacing:10.730533pt;}
.ws13b{word-spacing:10.939596pt;}
.ws13c{word-spacing:10.943863pt;}
.ws24{word-spacing:10.953443pt;}
.ws139{word-spacing:10.965196pt;}
.ws21{word-spacing:11.016910pt;}
.ws19a{word-spacing:11.020643pt;}
.ws13d{word-spacing:11.041995pt;}
.ws26{word-spacing:11.043042pt;}
.ws1f{word-spacing:11.065442pt;}
.ws25{word-spacing:11.136374pt;}
.ws172{word-spacing:11.205860pt;}
.ws22{word-spacing:11.281973pt;}
.ws199{word-spacing:11.382770pt;}
.ws20{word-spacing:11.457436pt;}
.ws1fe{word-spacing:11.687845pt;}
.ws1ea{word-spacing:11.695844pt;}
.ws1ed{word-spacing:11.703844pt;}
.ws1f6{word-spacing:11.719844pt;}
.ws1fa{word-spacing:11.723844pt;}
.ws1f0{word-spacing:11.743844pt;}
.ws1ff{word-spacing:11.759843pt;}
.ws1ec{word-spacing:11.763844pt;}
.ws1ee{word-spacing:11.767843pt;}
.ws1e4{word-spacing:11.771843pt;}
.ws1f7{word-spacing:11.779843pt;}
.ws1f4{word-spacing:11.783843pt;}
.ws1d4{word-spacing:11.787843pt;}
.ws1f9{word-spacing:11.791842pt;}
.ws1f8{word-spacing:11.799843pt;}
.ws1e2{word-spacing:11.827843pt;}
.ws1e5{word-spacing:11.831842pt;}
.ws1e8{word-spacing:11.835842pt;}
.ws1e9{word-spacing:11.847842pt;}
.ws1ef{word-spacing:11.851842pt;}
.ws1f2{word-spacing:11.855842pt;}
.ws29{word-spacing:11.859842pt;}
.ws1f1{word-spacing:11.863842pt;}
.ws1d6{word-spacing:11.883842pt;}
.ws201{word-spacing:11.887842pt;}
.ws1f5{word-spacing:11.899841pt;}
.ws1fb{word-spacing:11.903842pt;}
.ws1e1{word-spacing:11.911841pt;}
.ws1da{word-spacing:11.915841pt;}
.ws1e6{word-spacing:11.919841pt;}
.ws1dd{word-spacing:11.939841pt;}
.ws1ca{word-spacing:11.951837pt;}
.ws2b{word-spacing:11.951840pt;}
.wsd8{word-spacing:11.953264pt;}
.ws1cb{word-spacing:11.967840pt;}
.ws1d7{word-spacing:11.971840pt;}
.ws1e3{word-spacing:11.987841pt;}
.ws1db{word-spacing:11.991840pt;}
.ws1d5{word-spacing:12.003840pt;}
.ws1e7{word-spacing:12.011839pt;}
.ws1d3{word-spacing:12.039839pt;}
.ws1f3{word-spacing:12.063840pt;}
.ws202{word-spacing:12.067839pt;}
.ws1d2{word-spacing:12.071839pt;}
.ws1e0{word-spacing:12.083839pt;}
.ws1df{word-spacing:12.107839pt;}
.ws1eb{word-spacing:12.115838pt;}
.wsce{word-spacing:12.130970pt;}
.ws1cc{word-spacing:12.139838pt;}
.ws1b1{word-spacing:12.151314pt;}
.ws18c{word-spacing:12.159848pt;}
.ws1d9{word-spacing:12.179838pt;}
.ws1d1{word-spacing:12.239837pt;}
.ws18e{word-spacing:12.279313pt;}
.ws1de{word-spacing:12.279836pt;}
.ws1af{word-spacing:12.300646pt;}
.ws1c9{word-spacing:12.311836pt;}
.ws1dc{word-spacing:12.339835pt;}
.ws1d8{word-spacing:12.359835pt;}
.ws2a{word-spacing:12.383835pt;}
.ws96{word-spacing:12.387074pt;}
.ws14c{word-spacing:12.390176pt;}
.ws1c8{word-spacing:12.399847pt;}
.ws194{word-spacing:12.484111pt;}
.ws2d{word-spacing:12.509711pt;}
.ws156{word-spacing:12.526777pt;}
.ws1b0{word-spacing:12.531044pt;}
.ws14e{word-spacing:12.595042pt;}
.ws198{word-spacing:12.603575pt;}
.ws14d{word-spacing:12.620643pt;}
.ws153{word-spacing:12.637708pt;}
.ws134{word-spacing:12.650509pt;}
.ws147{word-spacing:12.654775pt;}
.wsa5{word-spacing:12.667575pt;}
.ws152{word-spacing:12.680375pt;}
.ws1b2{word-spacing:12.688876pt;}
.ws2c{word-spacing:12.688929pt;}
.ws13e{word-spacing:12.735841pt;}
.ws151{word-spacing:12.744374pt;}
.ws146{word-spacing:12.752907pt;}
.ws149{word-spacing:12.765707pt;}
.ws150{word-spacing:12.774241pt;}
.ws14a{word-spacing:12.791306pt;}
.ws155{word-spacing:12.829707pt;}
.ws14b{word-spacing:12.833972pt;}
.ws154{word-spacing:12.838200pt;}
.ws157{word-spacing:12.893705pt;}
.ws14f{word-spacing:12.902238pt;}
.ws148{word-spacing:12.974771pt;}
.ws16{word-spacing:13.445468pt;}
.ws19{word-spacing:13.456135pt;}
.ws1c{word-spacing:13.520135pt;}
.ws17{word-spacing:13.525469pt;}
.ws1b{word-spacing:13.621484pt;}
.ws1e{word-spacing:13.642803pt;}
.ws1a{word-spacing:13.706804pt;}
.ws98{word-spacing:13.777353pt;}
.ws18{word-spacing:14.010807pt;}
.ws57{word-spacing:14.049136pt;}
.ws192{word-spacing:14.078400pt;}
.ws15{word-spacing:14.096140pt;}
.ws191{word-spacing:14.097600pt;}
.ws193{word-spacing:14.136000pt;}
.ws190{word-spacing:14.280000pt;}
.ws1a8{word-spacing:14.380800pt;}
.ws56{word-spacing:14.435906pt;}
.wsac{word-spacing:14.592585pt;}
.ws16e{word-spacing:14.644971pt;}
.ws99{word-spacing:14.676000pt;}
.ws1d{word-spacing:14.677454pt;}
.ws82{word-spacing:14.818294pt;}
.ws72{word-spacing:14.891895pt;}
.wsa8{word-spacing:14.965496pt;}
.ws12d{word-spacing:15.000380pt;}
.ws6d{word-spacing:15.021286pt;}
.ws175{word-spacing:15.225125pt;}
.ws105{word-spacing:15.240805pt;}
.wsa1{word-spacing:15.256484pt;}
.wsa2{word-spacing:15.266938pt;}
.ws4d{word-spacing:15.287844pt;}
.ws8e{word-spacing:15.313977pt;}
.ws174{word-spacing:15.334884pt;}
.ws60{word-spacing:15.366243pt;}
.ws81{word-spacing:15.387149pt;}
.ws12c{word-spacing:15.408056pt;}
.ws61{word-spacing:15.418504pt;}
.ws102{word-spacing:15.434189pt;}
.ws163{word-spacing:15.455096pt;}
.wsc2{word-spacing:15.470775pt;}
.ws4b{word-spacing:15.502136pt;}
.ws1c3{word-spacing:15.538721pt;}
.ws142{word-spacing:15.559628pt;}
.wsf5{word-spacing:15.590987pt;}
.ws15e{word-spacing:15.622347pt;}
.wsa7{word-spacing:15.638028pt;}
.ws71{word-spacing:15.653707pt;}
.wsaa{word-spacing:15.658934pt;}
.ws180{word-spacing:15.679839pt;}
.wsab{word-spacing:15.700746pt;}
.ws75{word-spacing:15.711200pt;}
.wsc{word-spacing:15.738825pt;}
.ws116{word-spacing:15.758239pt;}
.ws9d{word-spacing:15.768693pt;}
.ws11{word-spacing:15.770825pt;}
.wsb5{word-spacing:15.784372pt;}
.ws12{word-spacing:15.813491pt;}
.wsc8{word-spacing:15.831411pt;}
.ws7e{word-spacing:15.836638pt;}
.ws9{word-spacing:15.845492pt;}
.wsef{word-spacing:15.862771pt;}
.wsb{word-spacing:15.866825pt;}
.wse{word-spacing:15.882825pt;}
.ws159{word-spacing:15.894132pt;}
.ws10{word-spacing:15.914825pt;}
.ws3c{word-spacing:15.925491pt;}
.ws17a{word-spacing:15.935944pt;}
.wse9{word-spacing:15.982983pt;}
.wsf0{word-spacing:15.988210pt;}
.ws12e{word-spacing:15.993437pt;}
.wsf{word-spacing:15.994826pt;}
.wse0{word-spacing:16.009116pt;}
.wsb7{word-spacing:16.040476pt;}
.wsca{word-spacing:16.092749pt;}
.wsee{word-spacing:16.092781pt;}
.ws41{word-spacing:16.124102pt;}
.ws167{word-spacing:16.139781pt;}
.wsa{word-spacing:16.165496pt;}
.ws84{word-spacing:16.165915pt;}
.wsd{word-spacing:16.170829pt;}
.wse4{word-spacing:16.218181pt;}
.ws52{word-spacing:16.228634pt;}
.wscc{word-spacing:16.239087pt;}
.wsdb{word-spacing:16.280901pt;}
.ws13{word-spacing:16.282833pt;}
.ws65{word-spacing:16.301807pt;}
.ws13f{word-spacing:16.338394pt;}
.ws16a{word-spacing:16.348846pt;}
.ws165{word-spacing:16.369753pt;}
.wscb{word-spacing:16.427245pt;}
.ws44{word-spacing:16.432472pt;}
.ws1ba{word-spacing:16.442926pt;}
.ws64{word-spacing:16.453379pt;}
.ws63{word-spacing:16.516098pt;}
.wsfa{word-spacing:16.526552pt;}
.ws8{word-spacing:16.533476pt;}
.ws125{word-spacing:16.620630pt;}
.ws162{word-spacing:16.631084pt;}
.ws7d{word-spacing:16.641536pt;}
.wsa0{word-spacing:16.672897pt;}
.wsf9{word-spacing:16.688576pt;}
.wsd3{word-spacing:16.725162pt;}
.wsd4{word-spacing:16.725163pt;}
.wsf3{word-spacing:16.772202pt;}
.ws5f{word-spacing:16.845370pt;}
.ws1bf{word-spacing:16.850601pt;}
.wse6{word-spacing:16.871507pt;}
.wsdc{word-spacing:16.892415pt;}
.wsb0{word-spacing:16.939454pt;}
.ws1c0{word-spacing:16.981266pt;}
.ws1c5{word-spacing:17.017854pt;}
.ws1a6{word-spacing:17.028306pt;}
.ws1a5{word-spacing:17.038759pt;}
.wse5{word-spacing:17.054439pt;}
.ws92{word-spacing:17.117159pt;}
.ws31{word-spacing:17.127612pt;}
.ws19f{word-spacing:17.138065pt;}
.ws179{word-spacing:17.169419pt;}
.ws133{word-spacing:17.190331pt;}
.wsf7{word-spacing:17.237370pt;}
.ws15a{word-spacing:17.279184pt;}
.wsf1{word-spacing:17.310544pt;}
.wsb1{word-spacing:17.315769pt;}
.ws143{word-spacing:17.336677pt;}
.wsed{word-spacing:17.341903pt;}
.ws115{word-spacing:17.352356pt;}
.ws19e{word-spacing:17.357583pt;}
.ws5{word-spacing:17.359624pt;}
.wsa4{word-spacing:17.456889pt;}
.wseb{word-spacing:17.503928pt;}
.ws4{word-spacing:17.529759pt;}
.ws114{word-spacing:17.550967pt;}
.ws6{word-spacing:17.576694pt;}
.wsde{word-spacing:17.577086pt;}
.wsdf{word-spacing:17.603233pt;}
.ws7{word-spacing:17.606027pt;}
.ws9a{word-spacing:17.650274pt;}
.wse1{word-spacing:17.901151pt;}
.wsf8{word-spacing:17.948190pt;}
.ws19c{word-spacing:17.953417pt;}
.wsa9{word-spacing:17.958644pt;}
.ws140{word-spacing:17.984777pt;}
.ws89{word-spacing:17.995229pt;}
.ws128{word-spacing:18.000456pt;}
.ws11d{word-spacing:18.031816pt;}
.wsd1{word-spacing:18.089308pt;}
.ws34{word-spacing:18.089309pt;}
.ws103{word-spacing:18.131121pt;}
.wsbc{word-spacing:18.141575pt;}
.ws5b{word-spacing:18.157255pt;}
.ws90{word-spacing:18.183387pt;}
.ws1b4{word-spacing:18.308826pt;}
.ws43{word-spacing:18.324507pt;}
.ws9e{word-spacing:18.329733pt;}
.ws42{word-spacing:18.334959pt;}
.ws88{word-spacing:18.345413pt;}
.ws173{word-spacing:18.376773pt;}
.ws1b9{word-spacing:18.408133pt;}
.ws73{word-spacing:18.418585pt;}
.ws118{word-spacing:18.486532pt;}
.ws9f{word-spacing:18.528344pt;}
.ws11c{word-spacing:18.559704pt;}
.ws93{word-spacing:18.611971pt;}
.ws1bb{word-spacing:18.632877pt;}
.wsd2{word-spacing:18.669462pt;}
.wsc7{word-spacing:18.810581pt;}
.ws10e{word-spacing:18.831487pt;}
.wsf6{word-spacing:18.847168pt;}
.ws10a{word-spacing:18.852395pt;}
.ws107{word-spacing:18.868074pt;}
.ws10f{word-spacing:18.888980pt;}
.wsc9{word-spacing:18.894207pt;}
.ws123{word-spacing:18.915113pt;}
.ws15f{word-spacing:19.061459pt;}
.ws69{word-spacing:19.129404pt;}
.ws1b6{word-spacing:19.186898pt;}
.ws1b7{word-spacing:19.192125pt;}
.ws110{word-spacing:19.207804pt;}
.ws68{word-spacing:19.213031pt;}
.ws3b{word-spacing:19.254843pt;}
.ws59{word-spacing:19.375055pt;}
.wse3{word-spacing:19.406415pt;}
.wsb8{word-spacing:19.437774pt;}
.ws7f{word-spacing:19.484814pt;}
.ws100{word-spacing:19.490041pt;}
.ws1c1{word-spacing:19.495268pt;}
.ws58{word-spacing:19.505721pt;}
.ws94{word-spacing:19.573667pt;}
.ws66{word-spacing:19.631160pt;}
.ws15c{word-spacing:19.756598pt;}
.ws3a{word-spacing:19.761826pt;}
.ws15b{word-spacing:19.767052pt;}
.ws124{word-spacing:19.824544pt;}
.ws120{word-spacing:19.908170pt;}
.ws166{word-spacing:19.913397pt;}
.ws186{word-spacing:19.923850pt;}
.ws187{word-spacing:19.944756pt;}
.ws35{word-spacing:20.059741pt;}
.wse8{word-spacing:20.070195pt;}
.ws144{word-spacing:20.211314pt;}
.ws171{word-spacing:20.253126pt;}
.ws1b8{word-spacing:20.274033pt;}
.wsc5{word-spacing:20.383792pt;}
.ws87{word-spacing:20.425604pt;}
.wsc6{word-spacing:20.441285pt;}
.wsd5{word-spacing:20.488324pt;}
.ws9b{word-spacing:20.524911pt;}
.ws177{word-spacing:20.545818pt;}
.ws141{word-spacing:20.582403pt;}
.ws8c{word-spacing:20.603310pt;}
.ws5a{word-spacing:20.634670pt;}
.ws1c7{word-spacing:20.645123pt;}
.ws40{word-spacing:20.660802pt;}
.ws9c{word-spacing:20.676483pt;}
.ws3f{word-spacing:20.702616pt;}
.ws121{word-spacing:20.718295pt;}
.ws122{word-spacing:20.744428pt;}
.ws183{word-spacing:20.754882pt;}
.ws19d{word-spacing:20.906453pt;}
.ws14{word-spacing:20.922876pt;}
.ws39{word-spacing:20.948266pt;}
.ws131{word-spacing:20.969173pt;}
.ws0{word-spacing:21.021867pt;}
.ws101{word-spacing:21.031892pt;}
.ws50{word-spacing:21.131197pt;}
.ws111{word-spacing:21.335036pt;}
.ws95{word-spacing:21.350715pt;}
.ws54{word-spacing:21.355943pt;}
.ws170{word-spacing:21.434341pt;}
.ws117{word-spacing:21.481381pt;}
.ws4c{word-spacing:21.512741pt;}
.ws1bd{word-spacing:21.533647pt;}
.wsec{word-spacing:21.544101pt;}
.ws16c{word-spacing:21.549326pt;}
.ws7c{word-spacing:21.585913pt;}
.ws67{word-spacing:21.632953pt;}
.ws17e{word-spacing:21.737485pt;}
.ws8b{word-spacing:21.758391pt;}
.ws129{word-spacing:21.763617pt;}
.ws12b{word-spacing:21.821110pt;}
.wsb2{word-spacing:21.852471pt;}
.ws158{word-spacing:22.004042pt;}
.ws3d{word-spacing:22.035402pt;}
.ws36{word-spacing:22.113802pt;}
.ws38{word-spacing:22.155613pt;}
.wsd6{word-spacing:22.181748pt;}
.ws18b{word-spacing:22.239240pt;}
.wsbe{word-spacing:22.516250pt;}
.ws7b{word-spacing:22.542383pt;}
.wsd7{word-spacing:22.610330pt;}
.ws16b{word-spacing:22.709635pt;}
.wsfe{word-spacing:22.725314pt;}
.ws91{word-spacing:22.761901pt;}
.ws8f{word-spacing:22.887339pt;}
.ws6c{word-spacing:22.897792pt;}
.ws7a{word-spacing:22.976193pt;}
.ws108{word-spacing:22.991872pt;}
.wsfd{word-spacing:23.080715pt;}
.ws1be{word-spacing:23.148670pt;}
.ws1c2{word-spacing:23.247976pt;}
.ws10d{word-spacing:23.362962pt;}
.ws70{word-spacing:23.399548pt;}
.wsad{word-spacing:23.420455pt;}
.ws10c{word-spacing:23.436157pt;}
.ws80{word-spacing:23.540666pt;}
.ws178{word-spacing:23.551119pt;}
.wsb3{word-spacing:23.629519pt;}
.ws11a{word-spacing:23.687012pt;}
.ws79{word-spacing:23.969249pt;}
.ws83{word-spacing:24.005835pt;}
.ws17d{word-spacing:24.073781pt;}
.ws4f{word-spacing:24.079008pt;}
.wsf2{word-spacing:24.220126pt;}
.ws6a{word-spacing:24.277619pt;}
.ws109{word-spacing:24.298525pt;}
.ws48{word-spacing:24.303752pt;}
.ws1a0{word-spacing:24.329885pt;}
.ws6b{word-spacing:24.371697pt;}
.ws132{word-spacing:24.533722pt;}
.wsff{word-spacing:24.606895pt;}
.ws1b5{word-spacing:24.638255pt;}
.ws1b3{word-spacing:24.795053pt;}
.ws74{word-spacing:24.805507pt;}
.ws8d{word-spacing:24.836867pt;}
.ws17c{word-spacing:24.863000pt;}
.ws5d{word-spacing:24.883906pt;}
.ws33{word-spacing:24.910040pt;}
.ws5e{word-spacing:24.925718pt;}
.ws17b{word-spacing:24.957079pt;}
.ws145{word-spacing:24.977985pt;}
.ws53{word-spacing:25.051158pt;}
.ws3e{word-spacing:25.108650pt;}
.wsba{word-spacing:25.119104pt;}
.ws12f{word-spacing:25.181823pt;}
.wsdd{word-spacing:25.192276pt;}
.ws130{word-spacing:25.197503pt;}
.ws5c{word-spacing:25.312488pt;}
.ws1a1{word-spacing:25.464061pt;}
.ws182{word-spacing:25.500646pt;}
.ws184{word-spacing:25.782884pt;}
.ws4e{word-spacing:25.803791pt;}
.wscd{word-spacing:25.824696pt;}
.ws160{word-spacing:25.934456pt;}
.ws11e{word-spacing:26.007628pt;}
.ws76{word-spacing:26.059895pt;}
.ws11f{word-spacing:26.148746pt;}
.ws168{word-spacing:26.279411pt;}
.wsea{word-spacing:26.336904pt;}
.wsae{word-spacing:26.389170pt;}
.ws15d{word-spacing:26.420530pt;}
.ws185{word-spacing:26.446663pt;}
.ws51{word-spacing:26.561649pt;}
.ws4a{word-spacing:27.293375pt;}
.ws32{word-spacing:27.314280pt;}
.ws161{word-spacing:27.329962pt;}
.ws1c6{word-spacing:27.486761pt;}
.ws119{word-spacing:27.659238pt;}
.ws11b{word-spacing:27.779450pt;}
.ws1a4{word-spacing:27.957156pt;}
.ws1a3{word-spacing:28.082593pt;}
.ws112{word-spacing:28.113954pt;}
.wsa6{word-spacing:28.343924pt;}
.ws18a{word-spacing:28.918851pt;}
.ws106{word-spacing:29.295168pt;}
.ws1c4{word-spacing:29.300393pt;}
.ws127{word-spacing:29.645351pt;}
.ws104{word-spacing:29.718522pt;}
.wsf4{word-spacing:29.776017pt;}
.ws10b{word-spacing:29.979853pt;}
.wsc1{word-spacing:30.518196pt;}
.wse7{word-spacing:30.596595pt;}
.ws1a2{word-spacing:30.810886pt;}
.wsfc{word-spacing:30.936325pt;}
.wscf{word-spacing:30.952004pt;}
.wsbb{word-spacing:31.244694pt;}
.ws49{word-spacing:31.756902pt;}
.wsc3{word-spacing:32.326603pt;}
.ws97{word-spacing:32.519989pt;}
.ws55{word-spacing:32.619289pt;}
.ws85{word-spacing:32.687241pt;}
.ws86{word-spacing:32.948571pt;}
.ws6f{word-spacing:33.816188pt;}
.wsb4{word-spacing:34.030478pt;}
.ws62{word-spacing:34.432929pt;}
.ws169{word-spacing:34.955589pt;}
.ws47{word-spacing:35.159428pt;}
.ws46{word-spacing:35.216920pt;}
.ws126{word-spacing:35.645503pt;}
.ws78{word-spacing:35.885926pt;}
.ws1bc{word-spacing:36.173390pt;}
.wsa3{word-spacing:36.753545pt;}
.wsb9{word-spacing:37.072368pt;}
.wsb6{word-spacing:38.138598pt;}
.ws1{word-spacing:38.208159pt;}
.ws3{word-spacing:38.348961pt;}
.ws2{word-spacing:38.489762pt;}
.wse2{word-spacing:38.541048pt;}
.ws113{word-spacing:40.082899pt;}
.wsfb{word-spacing:40.772810pt;}
.wsc4{word-spacing:40.835529pt;}
.ws1a7{word-spacing:41.122993pt;}
.wsaf{word-spacing:42.032425pt;}
.ws164{word-spacing:43.689262pt;}
.ws19b{word-spacing:46.454139pt;}
.ws8a{word-spacing:46.908855pt;}
.wsda{word-spacing:47.264263pt;}
.ws45{word-spacing:48.403665pt;}
.ws197{word-spacing:143.008313pt;}
.ws195{word-spacing:143.012608pt;}
.ws1aa{word-spacing:199.250819pt;}
.ws1ad{word-spacing:199.250843pt;}
.ws1ae{word-spacing:199.250873pt;}
.ws1ac{word-spacing:331.409191pt;}
.ws1a9{word-spacing:336.776582pt;}
.ws1ab{word-spacing:348.339104pt;}
.ws196{word-spacing:391.274026pt;}
._24{margin-left:-20.608634pt;}
._28{margin-left:-18.162477pt;}
._27{margin-left:-17.174652pt;}
._3c{margin-left:-16.140011pt;}
._25{margin-left:-15.131046pt;}
._26{margin-left:-14.211163pt;}
._1e{margin-left:-11.242375pt;}
._1d{margin-left:-10.150107pt;}
._8{margin-left:-1.824019pt;}
._6{margin-left:-0.901342pt;}
._4{width:0.954676pt;}
._22{width:1.884011pt;}
._0{width:7.959467pt;}
._16{width:8.968866pt;}
._15{width:10.226718pt;}
._21{width:11.801520pt;}
._7{width:12.698794pt;}
._9{width:14.512146pt;}
._17{width:15.897773pt;}
._3{width:17.040170pt;}
._14{width:17.932511pt;}
._b{width:19.427321pt;}
._c{width:21.005759pt;}
._5{width:22.378888pt;}
._d{width:23.270368pt;}
._3a{width:24.267165pt;}
._11{width:25.401340pt;}
._e{width:26.357812pt;}
._1b{width:27.399707pt;}
._a{width:28.462502pt;}
._1a{width:29.563361pt;}
._20{width:31.019950pt;}
._12{width:32.732645pt;}
._13{width:34.516555pt;}
._10{width:36.332028pt;}
._18{width:37.924304pt;}
._2{width:39.590564pt;}
._1c{width:41.802454pt;}
._23{width:44.650955pt;}
._1f{width:46.950671pt;}
._f{width:49.480349pt;}
._3b{width:58.543219pt;}
._2a{width:135.503369pt;}
._29{width:137.197216pt;}
._2f{width:148.341615pt;}
._2b{width:161.226787pt;}
._2c{width:174.585522pt;}
._31{width:191.741603pt;}
._30{width:193.798107pt;}
._38{width:204.882772pt;}
._32{width:217.767945pt;}
._33{width:230.823778pt;}
._35{width:344.985563pt;}
._37{width:356.548085pt;}
._39{width:373.780914pt;}
._2d{width:404.850397pt;}
._2e{width:416.412920pt;}
._34{width:474.997812pt;}
._36{width:486.560335pt;}
._19{width:1392.942582pt;}
._1{width:1756.629387pt;}
.fs8{font-size:26.662400pt;}
.fs6{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fs9{font-size:42.666133pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fsa{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:58.128080pt;}
.y27{bottom:68.786587pt;}
.y167{bottom:79.369760pt;}
.yff{bottom:79.371800pt;}
.y1ba{bottom:79.372933pt;}
.y12c{bottom:79.373107pt;}
.y98{bottom:79.374187pt;}
.y202{bottom:79.374640pt;}
.y10e{bottom:79.376587pt;}
.y11d{bottom:79.381813pt;}
.yca{bottom:79.385747pt;}
.y157{bottom:79.393587pt;}
.y67{bottom:79.394040pt;}
.y26{bottom:79.445107pt;}
.y184{bottom:87.685507pt;}
.y25{bottom:90.103613pt;}
.y166{bottom:90.708667pt;}
.y1b9{bottom:91.391773pt;}
.y201{bottom:91.393480pt;}
.yfe{bottom:95.396600pt;}
.y12b{bottom:95.397907pt;}
.y97{bottom:95.398973pt;}
.y10d{bottom:95.401387pt;}
.y11c{bottom:95.406613pt;}
.yc9{bottom:95.410533pt;}
.y156{bottom:95.418387pt;}
.y66{bottom:95.418827pt;}
.y24{bottom:100.762133pt;}
.y183{bottom:101.064533pt;}
.y1b8{bottom:103.410613pt;}
.y200{bottom:103.412320pt;}
.y165{bottom:108.246920pt;}
.yfd{bottom:111.345613pt;}
.y96{bottom:111.347987pt;}
.yc8{bottom:111.359547pt;}
.y127{bottom:111.421400pt;}
.y12a{bottom:111.422707pt;}
.y10c{bottom:111.426173pt;}
.y11b{bottom:111.431413pt;}
.y155{bottom:111.443173pt;}
.y65{bottom:111.443627pt;}
.y1ff{bottom:115.356160pt;}
.y2f{bottom:123.363827pt;}
.y164{bottom:126.917613pt;}
.yfc{bottom:127.370400pt;}
.y129{bottom:127.371707pt;}
.y95{bottom:127.372787pt;}
.y1fe{bottom:127.375000pt;}
.y10b{bottom:127.375187pt;}
.y11a{bottom:127.380427pt;}
.yc7{bottom:127.384347pt;}
.y154{bottom:127.392187pt;}
.y64{bottom:127.392640pt;}
.y1b7{bottom:129.111280pt;}
.y2e{bottom:135.382667pt;}
.y1fd{bottom:139.393840pt;}
.y2d{bottom:139.842533pt;}
.y1b6{bottom:141.130120pt;}
.yfb{bottom:143.395200pt;}
.y128{bottom:143.396507pt;}
.y94{bottom:143.397587pt;}
.y10a{bottom:143.399987pt;}
.y119{bottom:143.405227pt;}
.yc6{bottom:143.409147pt;}
.y153{bottom:143.416987pt;}
.y63{bottom:143.417440pt;}
.y163{bottom:145.588320pt;}
.y2c{bottom:147.401560pt;}
.y1fc{bottom:151.412680pt;}
.yfa{bottom:159.344800pt;}
.y93{bottom:159.346600pt;}
.yc5{bottom:159.358147pt;}
.y2b{bottom:159.420400pt;}
.y109{bottom:159.424787pt;}
.y118{bottom:159.430013pt;}
.y152{bottom:159.441787pt;}
.y62{bottom:159.442227pt;}
.y1fb{bottom:163.356520pt;}
.y2a{bottom:163.804667pt;}
.y162{bottom:164.259013pt;}
.y1b5{bottom:166.830773pt;}
.y29{bottom:171.363733pt;}
.y92{bottom:175.371387pt;}
.y108{bottom:175.373787pt;}
.y1fa{bottom:175.375360pt;}
.y117{bottom:175.379027pt;}
.yc4{bottom:175.382947pt;}
.y151{bottom:175.390787pt;}
.y61{bottom:175.391240pt;}
.y1b4{bottom:178.774613pt;}
.y161{bottom:182.929720pt;}
.y1f9{bottom:187.394200pt;}
.y133{bottom:188.447400pt;}
.y1b3{bottom:190.793453pt;}
.y91{bottom:191.396187pt;}
.y107{bottom:191.398587pt;}
.yf9{bottom:191.399987pt;}
.y116{bottom:191.403827pt;}
.yc3{bottom:191.407747pt;}
.y150{bottom:191.415587pt;}
.y60{bottom:191.416040pt;}
.y1f8{bottom:199.413040pt;}
.y160{bottom:201.600413pt;}
.y132{bottom:201.826427pt;}
.y1b2{bottom:202.812293pt;}
.y90{bottom:207.345200pt;}
.yc2{bottom:207.356760pt;}
.y106{bottom:207.423387pt;}
.yf8{bottom:207.424787pt;}
.y115{bottom:207.428627pt;}
.y14f{bottom:207.440387pt;}
.y5f{bottom:207.440840pt;}
.y1f7{bottom:211.355880pt;}
.y1b1{bottom:214.831133pt;}
.y131{bottom:215.130800pt;}
.y15f{bottom:220.271107pt;}
.y8f{bottom:223.370000pt;}
.y105{bottom:223.372400pt;}
.yf7{bottom:223.373787pt;}
.y1f6{bottom:223.374720pt;}
.y114{bottom:223.377627pt;}
.yc1{bottom:223.381547pt;}
.y14e{bottom:223.389400pt;}
.y5e{bottom:223.389853pt;}
.y1b0{bottom:226.773973pt;}
.y130{bottom:228.435173pt;}
.y1f5{bottom:235.393560pt;}
.y1af{bottom:238.792813pt;}
.y15e{bottom:238.941813pt;}
.y8e{bottom:239.395200pt;}
.y104{bottom:239.397187pt;}
.yf6{bottom:239.398587pt;}
.y113{bottom:239.402427pt;}
.yc0{bottom:239.406347pt;}
.y14d{bottom:239.414187pt;}
.y5d{bottom:239.414640pt;}
.y12f{bottom:241.814200pt;}
.y1f4{bottom:247.412400pt;}
.y12e{bottom:255.118573pt;}
.ybf{bottom:255.355360pt;}
.y103{bottom:255.421987pt;}
.yf5{bottom:255.423387pt;}
.y112{bottom:255.427227pt;}
.y14c{bottom:255.438987pt;}
.y5c{bottom:255.439440pt;}
.y15d{bottom:256.478653pt;}
.y1f3{bottom:259.355240pt;}
.y1ae{bottom:264.493467pt;}
.y12d{bottom:268.497600pt;}
.y102{bottom:271.371000pt;}
.yf4{bottom:271.372400pt;}
.y1f2{bottom:271.374080pt;}
.y111{bottom:271.376240pt;}
.ybe{bottom:271.380160pt;}
.y14b{bottom:271.388000pt;}
.y5b{bottom:271.388453pt;}
.y15c{bottom:273.941213pt;}
.y1ad{bottom:276.512307pt;}
.y8d{bottom:279.392693pt;}
.y1f1{bottom:283.392920pt;}
.y101{bottom:287.395800pt;}
.yf3{bottom:287.397187pt;}
.y110{bottom:287.401027pt;}
.ybd{bottom:287.404960pt;}
.y14a{bottom:287.412800pt;}
.y5a{bottom:287.413253pt;}
.y1ac{bottom:288.531147pt;}
.y15b{bottom:288.680813pt;}
.y23{bottom:290.338253pt;}
.y1f0{bottom:295.411760pt;}
.y8c{bottom:295.417480pt;}
.y1ab{bottom:300.549987pt;}
.y100{bottom:303.344813pt;}
.yf2{bottom:303.346200pt;}
.y10f{bottom:303.350040pt;}
.ybc{bottom:303.353960pt;}
.y149{bottom:303.361813pt;}
.y59{bottom:303.362253pt;}
.y1ef{bottom:307.354600pt;}
.y8b{bottom:311.366493pt;}
.y1aa{bottom:312.492827pt;}
.y22{bottom:313.015827pt;}
.yf1{bottom:319.371000pt;}
.y1ee{bottom:319.373440pt;}
.ybb{bottom:319.378760pt;}
.y148{bottom:319.386600pt;}
.y58{bottom:319.387053pt;}
.y1a9{bottom:324.511667pt;}
.y8a{bottom:327.391293pt;}
.y21{bottom:329.041320pt;}
.y1ed{bottom:331.392280pt;}
.yf0{bottom:335.395800pt;}
.yba{bottom:335.403560pt;}
.y147{bottom:335.411400pt;}
.y57{bottom:335.411853pt;}
.y1a8{bottom:336.530507pt;}
.y1ec{bottom:343.411120pt;}
.y89{bottom:343.416093pt;}
.y20{bottom:345.066813pt;}
.y125{bottom:347.716240pt;}
.y1a7{bottom:348.549347pt;}
.yef{bottom:351.344813pt;}
.yb9{bottom:351.352573pt;}
.y146{bottom:351.360413pt;}
.y56{bottom:351.360867pt;}
.y1eb{bottom:355.353960pt;}
.y88{bottom:359.365107pt;}
.y1a6{bottom:360.492187pt;}
.y124{bottom:361.095267pt;}
.y1f{bottom:365.023027pt;}
.y1ea{bottom:367.372800pt;}
.yb8{bottom:367.377360pt;}
.y145{bottom:367.385213pt;}
.y55{bottom:367.385653pt;}
.yee{bottom:367.398267pt;}
.y1a5{bottom:372.511027pt;}
.y123{bottom:374.399640pt;}
.y87{bottom:375.389893pt;}
.y1e9{bottom:379.391640pt;}
.y1e{bottom:381.048507pt;}
.yb7{bottom:383.402160pt;}
.y144{bottom:383.410000pt;}
.y54{bottom:383.410453pt;}
.yed{bottom:383.423067pt;}
.y122{bottom:387.704000pt;}
.y1e8{bottom:391.410480pt;}
.y86{bottom:391.414693pt;}
.y1d{bottom:397.074013pt;}
.y1a4{bottom:398.211680pt;}
.yb6{bottom:399.351173pt;}
.y143{bottom:399.359013pt;}
.y53{bottom:399.359467pt;}
.yec{bottom:399.372080pt;}
.y121{bottom:401.083040pt;}
.y1e7{bottom:403.354320pt;}
.y85{bottom:407.363707pt;}
.y1a3{bottom:410.230520pt;}
.y1c{bottom:413.023480pt;}
.y120{bottom:414.387400pt;}
.y1e6{bottom:415.373160pt;}
.yb5{bottom:415.375973pt;}
.y142{bottom:415.383813pt;}
.y52{bottom:415.384267pt;}
.yeb{bottom:415.396880pt;}
.y84{bottom:423.388507pt;}
.y1e5{bottom:427.392000pt;}
.y11f{bottom:427.766440pt;}
.y1b{bottom:429.048987pt;}
.yb4{bottom:431.400760pt;}
.y141{bottom:431.408613pt;}
.y51{bottom:431.409067pt;}
.yea{bottom:431.421680pt;}
.y1a2{bottom:435.931187pt;}
.y1e4{bottom:439.410840pt;}
.y83{bottom:439.413293pt;}
.y11e{bottom:441.070800pt;}
.y1a{bottom:445.074467pt;}
.yb3{bottom:447.349773pt;}
.y140{bottom:447.357613pt;}
.y50{bottom:447.358067pt;}
.ye9{bottom:447.370680pt;}
.y1a1{bottom:447.950027pt;}
.y1e3{bottom:451.353680pt;}
.y82{bottom:455.362307pt;}
.y1a0{bottom:459.968867pt;}
.y19{bottom:461.023973pt;}
.y1e2{bottom:463.372520pt;}
.yb2{bottom:463.374573pt;}
.y13f{bottom:463.382413pt;}
.y4f{bottom:463.382867pt;}
.ye8{bottom:463.395480pt;}
.y81{bottom:471.387107pt;}
.y19f{bottom:471.987707pt;}
.y1e1{bottom:475.391360pt;}
.y18{bottom:477.049480pt;}
.yb1{bottom:479.399373pt;}
.y13e{bottom:479.407213pt;}
.y4e{bottom:479.407667pt;}
.ye7{bottom:479.420280pt;}
.y19e{bottom:483.930547pt;}
.y1e0{bottom:487.410200pt;}
.y80{bottom:487.411907pt;}
.y17{bottom:493.074947pt;}
.yb0{bottom:495.348387pt;}
.y13d{bottom:495.356227pt;}
.y4d{bottom:495.356680pt;}
.ye6{bottom:495.369293pt;}
.y1df{bottom:499.353040pt;}
.y7f{bottom:503.360920pt;}
.y19d{bottom:509.633520pt;}
.y1de{bottom:511.371880pt;}
.yaf{bottom:511.373173pt;}
.y13c{bottom:511.381027pt;}
.y4c{bottom:511.381467pt;}
.ye5{bottom:511.394080pt;}
.y16{bottom:513.031173pt;}
.y7e{bottom:519.385707pt;}
.y1dd{bottom:523.390720pt;}
.y19c{bottom:525.658320pt;}
.yae{bottom:527.397973pt;}
.y13b{bottom:527.405813pt;}
.y4b{bottom:527.406267pt;}
.ye4{bottom:527.418880pt;}
.y15{bottom:529.056640pt;}
.y1dc{bottom:535.409560pt;}
.y7d{bottom:535.410507pt;}
.y19b{bottom:541.683120pt;}
.yad{bottom:543.346987pt;}
.y13a{bottom:543.354827pt;}
.y4a{bottom:543.355280pt;}
.ye3{bottom:543.367893pt;}
.y14{bottom:545.006147pt;}
.y1db{bottom:547.352400pt;}
.y7c{bottom:551.359520pt;}
.y19a{bottom:557.632133pt;}
.y1da{bottom:559.371240pt;}
.yac{bottom:559.371787pt;}
.y139{bottom:559.379627pt;}
.y49{bottom:559.380080pt;}
.ye2{bottom:559.392693pt;}
.y13{bottom:561.031653pt;}
.y7b{bottom:567.384320pt;}
.y1d9{bottom:571.390080pt;}
.y199{bottom:573.656920pt;}
.yab{bottom:575.396573pt;}
.y138{bottom:575.404427pt;}
.y48{bottom:575.404867pt;}
.ye1{bottom:575.417480pt;}
.y12{bottom:577.057133pt;}
.y1d8{bottom:583.408920pt;}
.y7a{bottom:583.409107pt;}
.y198{bottom:589.681720pt;}
.yaa{bottom:591.345587pt;}
.y137{bottom:591.353427pt;}
.y47{bottom:591.353880pt;}
.ye0{bottom:591.366493pt;}
.y11{bottom:593.006627pt;}
.y1d7{bottom:595.351760pt;}
.y79{bottom:599.358120pt;}
.y197{bottom:605.631347pt;}
.ya9{bottom:607.370387pt;}
.y1d6{bottom:607.370600pt;}
.y16f{bottom:607.373093pt;}
.y177{bottom:607.375707pt;}
.y136{bottom:607.378227pt;}
.y46{bottom:607.378680pt;}
.ydf{bottom:607.391293pt;}
.y10{bottom:609.032107pt;}
.y78{bottom:615.382920pt;}
.y1d5{bottom:619.389440pt;}
.ya8{bottom:623.395187pt;}
.y16e{bottom:623.397893pt;}
.y176{bottom:623.400493pt;}
.y135{bottom:623.403027pt;}
.y45{bottom:623.403480pt;}
.yde{bottom:623.416093pt;}
.yf{bottom:625.057613pt;}
.y77{bottom:631.407720pt;}
.y1d4{bottom:631.408280pt;}
.ya7{bottom:639.344680pt;}
.y16d{bottom:639.346907pt;}
.y175{bottom:639.349507pt;}
.y44{bottom:639.352493pt;}
.y196{bottom:639.353027pt;}
.ydd{bottom:639.365107pt;}
.ye{bottom:641.007120pt;}
.y1d3{bottom:643.351120pt;}
.y76{bottom:647.357347pt;}
.y1d2{bottom:655.369960pt;}
.y16c{bottom:655.371707pt;}
.y174{bottom:655.374307pt;}
.y43{bottom:655.377280pt;}
.y195{bottom:655.377813pt;}
.ydc{bottom:655.389893pt;}
.yd{bottom:657.032600pt;}
.y15a{bottom:662.324333pt;}
.y1d1{bottom:667.388800pt;}
.y16b{bottom:671.396493pt;}
.ya6{bottom:671.398427pt;}
.y173{bottom:671.399107pt;}
.y42{bottom:671.402080pt;}
.y194{bottom:671.402613pt;}
.ydb{bottom:671.414693pt;}
.yc{bottom:673.058107pt;}
.y159{bottom:675.628693pt;}
.y1d0{bottom:679.407720pt;}
.y16a{bottom:687.345507pt;}
.ya5{bottom:687.347440pt;}
.y172{bottom:687.348120pt;}
.y75{bottom:687.350667pt;}
.y41{bottom:687.351093pt;}
.y193{bottom:687.351627pt;}
.yda{bottom:687.363707pt;}
.y158{bottom:689.007733pt;}
.yb{bottom:697.020227pt;}
.y169{bottom:703.370307pt;}
.ya4{bottom:703.372240pt;}
.y171{bottom:703.372907pt;}
.y74{bottom:703.375453pt;}
.y40{bottom:703.375893pt;}
.y192{bottom:703.376427pt;}
.yd9{bottom:703.388507pt;}
.y168{bottom:719.395107pt;}
.ya3{bottom:719.397027pt;}
.y170{bottom:719.397707pt;}
.y73{bottom:719.400253pt;}
.y3f{bottom:719.400680pt;}
.y191{bottom:719.401213pt;}
.yd8{bottom:719.413293pt;}
.y1cf{bottom:722.040853pt;}
.ya2{bottom:735.346040pt;}
.y72{bottom:735.349267pt;}
.y3e{bottom:735.349693pt;}
.y190{bottom:735.350227pt;}
.yd7{bottom:735.362307pt;}
.y182{bottom:744.415440pt;}
.y1ce{bottom:746.078533pt;}
.y9{bottom:748.346147pt;}
.y1cd{bottom:750.462813pt;}
.y20f{bottom:751.370000pt;}
.ya1{bottom:751.370840pt;}
.y71{bottom:751.374067pt;}
.y3d{bottom:751.374493pt;}
.y18f{bottom:751.375027pt;}
.yd6{bottom:751.387107pt;}
.ya{bottom:754.922653pt;}
.y1cc{bottom:758.021893pt;}
.y1ca{bottom:758.021933pt;}
.y181{bottom:761.953893pt;}
.y1cb{bottom:762.481773pt;}
.y20e{bottom:763.388840pt;}
.y7{bottom:767.017053pt;}
.y5{bottom:767.017093pt;}
.ya0{bottom:767.395640pt;}
.y70{bottom:767.398853pt;}
.y3c{bottom:767.399293pt;}
.y18e{bottom:767.399827pt;}
.yd5{bottom:767.411907pt;}
.y1c7{bottom:770.040733pt;}
.y1c9{bottom:770.040773pt;}
.y8{bottom:773.593467pt;}
.y6{bottom:773.593507pt;}
.y1c8{bottom:774.500573pt;}
.y20d{bottom:775.407720pt;}
.y180{bottom:780.624587pt;}
.y1c6{bottom:782.059573pt;}
.y1c4{bottom:782.059693pt;}
.y9f{bottom:783.344640pt;}
.y6f{bottom:783.347867pt;}
.y3b{bottom:783.348293pt;}
.y18d{bottom:783.348827pt;}
.yd4{bottom:783.360907pt;}
.y1c5{bottom:786.519453pt;}
.y1c3{bottom:794.078533pt;}
.y1c2{bottom:798.462813pt;}
.y4{bottom:799.068520pt;}
.y17f{bottom:799.295293pt;}
.y9e{bottom:799.369867pt;}
.y6e{bottom:799.372667pt;}
.y3a{bottom:799.373093pt;}
.y18c{bottom:799.373627pt;}
.yd3{bottom:799.385707pt;}
.y1c1{bottom:806.025227pt;}
.y20c{bottom:807.384240pt;}
.y6d{bottom:815.397467pt;}
.y39{bottom:815.397893pt;}
.y18b{bottom:815.398427pt;}
.yd2{bottom:815.410507pt;}
.y17e{bottom:817.965987pt;}
.y20b{bottom:819.403080pt;}
.y1c0{bottom:830.062907pt;}
.y9d{bottom:831.345507pt;}
.y20a{bottom:831.345920pt;}
.y6c{bottom:831.346467pt;}
.y38{bottom:831.346907pt;}
.y18a{bottom:831.347440pt;}
.yd1{bottom:831.359520pt;}
.y3{bottom:833.689453pt;}
.y17d{bottom:836.636680pt;}
.y1bf{bottom:842.081747pt;}
.y209{bottom:843.364760pt;}
.y9c{bottom:847.370307pt;}
.y6b{bottom:847.371267pt;}
.y37{bottom:847.371707pt;}
.y189{bottom:847.372240pt;}
.yd0{bottom:847.384320pt;}
.y17c{bottom:855.307387pt;}
.y208{bottom:855.383600pt;}
.y9b{bottom:863.395107pt;}
.y6a{bottom:863.396067pt;}
.y36{bottom:863.396493pt;}
.y188{bottom:863.397027pt;}
.ycf{bottom:863.409107pt;}
.y207{bottom:867.402440pt;}
.y2{bottom:868.384027pt;}
.y1be{bottom:872.696333pt;}
.y17b{bottom:873.978080pt;}
.y9a{bottom:879.344640pt;}
.y69{bottom:879.345080pt;}
.y206{bottom:879.345280pt;}
.y35{bottom:879.345507pt;}
.y187{bottom:879.346040pt;}
.yce{bottom:879.358120pt;}
.y1bd{bottom:884.715173pt;}
.y205{bottom:891.364120pt;}
.y17a{bottom:892.648787pt;}
.y68{bottom:895.369867pt;}
.y34{bottom:895.370307pt;}
.y186{bottom:895.370840pt;}
.ycd{bottom:895.382920pt;}
.y204{bottom:903.382960pt;}
.y179{bottom:910.185627pt;}
.y33{bottom:911.395107pt;}
.y99{bottom:911.395640pt;}
.ycc{bottom:911.407720pt;}
.y203{bottom:915.401800pt;}
.y1bc{bottom:915.404773pt;}
.y1{bottom:919.029627pt;}
.y32{bottom:927.344640pt;}
.y1bb{bottom:927.347613pt;}
.ycb{bottom:927.356720pt;}
.y178{bottom:927.722653pt;}
.y31{bottom:989.178307pt;}
.y134{bottom:1002.477733pt;}
.y126{bottom:1002.478187pt;}
.y185{bottom:1002.478333pt;}
.y210{bottom:1002.481607pt;}
.y30{bottom:1002.481613pt;}
.ha{height:19.223590pt;}
.h8{height:26.916949pt;}
.h5{height:28.196676pt;}
.h9{height:28.839615pt;}
.hc{height:30.762282pt;}
.hf{height:34.608000pt;}
.he{height:35.377451pt;}
.hb{height:37.588863pt;}
.hd{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.h4{height:42.299051pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590560pt;}
.x12{left:79.143333pt;}
.x1{left:80.957493pt;}
.x10{left:84.283493pt;}
.x13{left:86.247600pt;}
.x1d{left:95.621947pt;}
.xf{left:150.425227pt;}
.x16{left:163.200107pt;}
.x3{left:171.817373pt;}
.x17{left:177.335400pt;}
.x4{left:206.059760pt;}
.x11{left:240.453467pt;}
.x5{left:274.544827pt;}
.x6{left:293.064560pt;}
.x7{left:387.023627pt;}
.x8{left:392.012560pt;}
.x14{left:406.299067pt;}
.x18{left:409.851853pt;}
.x15{left:416.952387pt;}
.x1c{left:426.330493pt;}
.x1a{left:440.239333pt;}
.x1b{left:443.867600pt;}
.x9{left:478.639227pt;}
.x19{left:480.075480pt;}
.xa{left:483.628280pt;}
.xb{left:557.858147pt;}
.xc{left:569.650293pt;}
.xd{left:637.908560pt;}
.xe{left:653.858147pt;}
}




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