
    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_26f9c962b31dccd6dc9c5e10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ddb3a3907ccccbae0d8db7e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_0479a2bd482e239fb6f7c413.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_8c62b72ad283487b25df7839.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_5173ddb2f550da51dfa999ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.146000;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_0cf83d25a394ee0a1005a4e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.328000;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_58d2a92d80e1a9efefd9b975.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_1bbd22e5a6fa028351f60b74.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710000;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_75b9699dbfb876fc952fd409.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927000;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_62988f49095ff6e6fb7e7d09.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.144000;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_c5cfa49d70d80949e8d7962e.woff2')format("woff");}.fff{font-family:fff;line-height:0.862000;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.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,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);}
.m1{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);}
.v2{vertical-align:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls51{letter-spacing:-1.672013px;}
.ls2e{letter-spacing:-1.620000px;}
.ls47{letter-spacing:-1.515262px;}
.ls16{letter-spacing:-1.440000px;}
.ls4c{letter-spacing:-1.410761px;}
.ls36{letter-spacing:-1.320000px;}
.ls4a{letter-spacing:-1.201759px;}
.ls53{letter-spacing:-1.200000px;}
.ls3c{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.020000px;}
.ls4e{letter-spacing:-0.992758px;}
.ls2d{letter-spacing:-0.960000px;}
.ls50{letter-spacing:-0.940507px;}
.ls58{letter-spacing:-0.900000px;}
.ls37{letter-spacing:-0.867000px;}
.ls4d{letter-spacing:-0.836006px;}
.ls48{letter-spacing:-0.783756px;}
.ls3d{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.627005px;}
.ls54{letter-spacing:-0.600000px;}
.ls4b{letter-spacing:-0.574754px;}
.ls14{letter-spacing:-0.540000px;}
.ls60{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.ls45{letter-spacing:-0.365753px;}
.ls13{letter-spacing:-0.360000px;}
.ls7f{letter-spacing:-0.357000px;}
.ls19{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.261252px;}
.ls82{letter-spacing:-0.255000px;}
.ls2b{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls80{letter-spacing:-0.204000px;}
.ls18{letter-spacing:-0.180000px;}
.ls4f{letter-spacing:-0.156751px;}
.ls83{letter-spacing:-0.153000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls81{letter-spacing:-0.102000px;}
.ls2c{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.051000px;}
.ls3{letter-spacing:0.060000px;}
.ls77{letter-spacing:0.076500px;}
.ls69{letter-spacing:0.102000px;}
.ls24{letter-spacing:0.120000px;}
.ls56{letter-spacing:0.150000px;}
.ls86{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls6{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.255000px;}
.ls65{letter-spacing:0.264000px;}
.ls44{letter-spacing:0.270000px;}
.ls6a{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.306000px;}
.ls57{letter-spacing:0.330000px;}
.ls67{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.ls8d{letter-spacing:0.382500px;}
.ls52{letter-spacing:0.390000px;}
.ls72{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.420000px;}
.ls20{letter-spacing:0.450000px;}
.ls68{letter-spacing:0.459000px;}
.ls5{letter-spacing:0.480000px;}
.ls88{letter-spacing:0.484500px;}
.ls7d{letter-spacing:0.510000px;}
.ls85{letter-spacing:0.535500px;}
.ls10{letter-spacing:0.540000px;}
.ls7a{letter-spacing:0.561000px;}
.ls25{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.612000px;}
.ls89{letter-spacing:0.637500px;}
.ls1c{letter-spacing:0.660000px;}
.ls7b{letter-spacing:0.663000px;}
.ls84{letter-spacing:0.688500px;}
.ls43{letter-spacing:0.690000px;}
.ls79{letter-spacing:0.714000px;}
.ls23{letter-spacing:0.720000px;}
.ls8e{letter-spacing:0.739500px;}
.lsf{letter-spacing:0.750000px;}
.ls71{letter-spacing:0.765000px;}
.ls1b{letter-spacing:0.780000px;}
.ls7c{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.840000px;}
.ls8c{letter-spacing:0.867000px;}
.ls63{letter-spacing:0.870000px;}
.ls8b{letter-spacing:0.892500px;}
.ls8{letter-spacing:0.900000px;}
.ls73{letter-spacing:0.918000px;}
.ls1e{letter-spacing:0.930000px;}
.ls7{letter-spacing:0.960000px;}
.ls64{letter-spacing:0.969000px;}
.ls39{letter-spacing:0.990000px;}
.lsa{letter-spacing:1.020000px;}
.ls32{letter-spacing:1.050000px;}
.lse{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.110000px;}
.ls1f{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.170000px;}
.ls6c{letter-spacing:1.173000px;}
.ls42{letter-spacing:1.200000px;}
.ls87{letter-spacing:1.224000px;}
.ls35{letter-spacing:1.230000px;}
.lsb{letter-spacing:1.260000px;}
.ls7e{letter-spacing:1.275000px;}
.ls29{letter-spacing:1.290000px;}
.ls26{letter-spacing:1.320000px;}
.ls70{letter-spacing:1.326000px;}
.ls22{letter-spacing:1.350000px;}
.ls21{letter-spacing:1.380000px;}
.ls5e{letter-spacing:1.410000px;}
.ls8f{letter-spacing:1.428000px;}
.ls3b{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.470000px;}
.ls74{letter-spacing:1.479000px;}
.ls33{letter-spacing:1.500000px;}
.ls6f{letter-spacing:1.530000px;}
.ls41{letter-spacing:1.560000px;}
.ls27{letter-spacing:1.620000px;}
.ls38{letter-spacing:1.680000px;}
.ls6b{letter-spacing:1.734000px;}
.ls30{letter-spacing:1.740000px;}
.lsc{letter-spacing:1.800000px;}
.ls1a{letter-spacing:1.860000px;}
.ls5c{letter-spacing:1.920000px;}
.ls8a{letter-spacing:1.938000px;}
.ls2f{letter-spacing:1.980000px;}
.ls31{letter-spacing:2.040000px;}
.ls59{letter-spacing:2.100000px;}
.ls76{letter-spacing:2.142000px;}
.ls3f{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.220000px;}
.ls75{letter-spacing:2.244000px;}
.ls40{letter-spacing:2.280000px;}
.ls5d{letter-spacing:2.310000px;}
.ls5a{letter-spacing:2.400000px;}
.ls5b{letter-spacing:2.520000px;}
.ls61{letter-spacing:2.700000px;}
.ls5f{letter-spacing:2.820000px;}
.ls1{letter-spacing:3.990000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc3{word-spacing:-17.400000px;}
.wsbf{word-spacing:-17.310000px;}
.wsb8{word-spacing:-17.220000px;}
.wsbc{word-spacing:-16.980000px;}
.wsc{word-spacing:-16.860000px;}
.wsc1{word-spacing:-16.800000px;}
.ws5f{word-spacing:-16.740000px;}
.ws64{word-spacing:-16.470000px;}
.wsb6{word-spacing:-16.440000px;}
.wscd{word-spacing:-16.380000px;}
.ws3a{word-spacing:-16.350000px;}
.ws40{word-spacing:-16.320000px;}
.ws3f{word-spacing:-16.260000px;}
.wsc2{word-spacing:-16.200000px;}
.ws36{word-spacing:-16.140000px;}
.wsc0{word-spacing:-16.080000px;}
.wsbe{word-spacing:-16.020000px;}
.wsbb{word-spacing:-15.960000px;}
.ws62{word-spacing:-15.930000px;}
.ws92{word-spacing:-15.900000px;}
.ws37{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.780000px;}
.wsb9{word-spacing:-15.720000px;}
.wsbd{word-spacing:-15.660000px;}
.ws63{word-spacing:-15.600000px;}
.wscc{word-spacing:-15.540000px;}
.ws60{word-spacing:-15.420000px;}
.wsa6{word-spacing:-15.360000px;}
.ws9{word-spacing:-15.300000px;}
.ws65{word-spacing:-15.240000px;}
.wsb2{word-spacing:-15.180000px;}
.ws74{word-spacing:-15.120000px;}
.ws61{word-spacing:-15.060000px;}
.ws39{word-spacing:-15.000000px;}
.ws38{word-spacing:-14.940000px;}
.wsd0{word-spacing:-14.832000px;}
.wsa3{word-spacing:-14.820000px;}
.wsb5{word-spacing:-14.760000px;}
.ws3c{word-spacing:-14.640000px;}
.ws3e{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.544000px;}
.wsba{word-spacing:-14.520000px;}
.ws6{word-spacing:-14.460000px;}
.wsa4{word-spacing:-14.400000px;}
.ws8{word-spacing:-14.280000px;}
.ws75{word-spacing:-14.220000px;}
.wsb3{word-spacing:-14.100000px;}
.ws3b{word-spacing:-14.040000px;}
.wsa5{word-spacing:-13.980000px;}
.ws73{word-spacing:-13.920000px;}
.wsa2{word-spacing:-13.800000px;}
.wse1{word-spacing:-13.719000px;}
.ws66{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.560000px;}
.wsd1{word-spacing:-13.005000px;}
.wscf{word-spacing:-12.852000px;}
.wsf4{word-spacing:-12.801000px;}
.wsb4{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws67{word-spacing:-11.883000px;}
.wsa{word-spacing:-11.520000px;}
.wsce{word-spacing:-10.761000px;}
.ws2{word-spacing:-9.996000px;}
.wse{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.wsb0{word-spacing:-6.375000px;}
.wsad{word-spacing:-2.160000px;}
.wsca{word-spacing:-2.100000px;}
.wse7{word-spacing:-2.040000px;}
.ws11{word-spacing:-1.860000px;}
.ws26{word-spacing:-1.800000px;}
.ws69{word-spacing:-1.740000px;}
.ws5c{word-spacing:-1.620000px;}
.ws10{word-spacing:-1.500000px;}
.ws83{word-spacing:-1.440000px;}
.ws4a{word-spacing:-1.380000px;}
.ws112{word-spacing:-1.326000px;}
.ws43{word-spacing:-1.320000px;}
.wsd9{word-spacing:-1.275000px;}
.ws25{word-spacing:-1.260000px;}
.wseb{word-spacing:-1.224000px;}
.ws19{word-spacing:-1.200000px;}
.ws109{word-spacing:-1.173000px;}
.ws4b{word-spacing:-1.140000px;}
.wse3{word-spacing:-1.122000px;}
.ws2d{word-spacing:-1.080000px;}
.wsdc{word-spacing:-1.071000px;}
.ws23{word-spacing:-1.020000px;}
.wsd8{word-spacing:-0.969000px;}
.ws1e{word-spacing:-0.960000px;}
.ws116{word-spacing:-0.918000px;}
.ws17{word-spacing:-0.900000px;}
.wsf9{word-spacing:-0.867000px;}
.ws5e{word-spacing:-0.840000px;}
.ws57{word-spacing:-0.780000px;}
.wsdd{word-spacing:-0.765000px;}
.ws20{word-spacing:-0.720000px;}
.wsde{word-spacing:-0.714000px;}
.ws50{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.612000px;}
.ws31{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.570000px;}
.wse4{word-spacing:-0.561000px;}
.ws30{word-spacing:-0.540000px;}
.ws11b{word-spacing:-0.510000px;}
.ws33{word-spacing:-0.480000px;}
.ws29{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.360000px;}
.wsfb{word-spacing:-0.357000px;}
.ws103{word-spacing:-0.306000px;}
.ws16{word-spacing:-0.300000px;}
.wsd5{word-spacing:-0.264000px;}
.wsd4{word-spacing:-0.255000px;}
.ws1a{word-spacing:-0.240000px;}
.ws28{word-spacing:-0.180000px;}
.ws54{word-spacing:-0.120000px;}
.ws10d{word-spacing:-0.102000px;}
.ws3d{word-spacing:-0.066000px;}
.ws58{word-spacing:-0.060000px;}
.ws108{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws4e{word-spacing:0.060000px;}
.wsdf{word-spacing:0.102000px;}
.ws9d{word-spacing:0.104501px;}
.ws42{word-spacing:0.120000px;}
.ws76{word-spacing:0.144000px;}
.wsea{word-spacing:0.153000px;}
.ws87{word-spacing:0.180000px;}
.ws104{word-spacing:0.204000px;}
.ws96{word-spacing:0.209002px;}
.ws8a{word-spacing:0.240000px;}
.wsf3{word-spacing:0.255000px;}
.ws2a{word-spacing:0.300000px;}
.wsfc{word-spacing:0.306000px;}
.wsd6{word-spacing:0.357000px;}
.ws12{word-spacing:0.360000px;}
.ws14{word-spacing:0.420000px;}
.wsd7{word-spacing:0.459000px;}
.wsf7{word-spacing:0.510000px;}
.ws98{word-spacing:0.522504px;}
.ws2b{word-spacing:0.540000px;}
.wsfa{word-spacing:0.561000px;}
.ws94{word-spacing:0.574754px;}
.ws82{word-spacing:0.600000px;}
.ws11a{word-spacing:0.612000px;}
.ws41{word-spacing:0.660000px;}
.wsf5{word-spacing:0.714000px;}
.ws1c{word-spacing:0.720000px;}
.ws99{word-spacing:0.731506px;}
.wsec{word-spacing:0.765000px;}
.ws71{word-spacing:0.780000px;}
.ws9b{word-spacing:0.783756px;}
.wsa7{word-spacing:0.840000px;}
.wsb1{word-spacing:0.867000px;}
.ws9e{word-spacing:0.888257px;}
.ws18{word-spacing:0.900000px;}
.ws114{word-spacing:0.918000px;}
.ws9c{word-spacing:0.940507px;}
.ws77{word-spacing:0.960000px;}
.ws113{word-spacing:0.969000px;}
.wsa0{word-spacing:1.020000px;}
.wsfe{word-spacing:1.071000px;}
.ws8c{word-spacing:1.080000px;}
.ws115{word-spacing:1.122000px;}
.ws1b{word-spacing:1.140000px;}
.ws97{word-spacing:1.149509px;}
.wsda{word-spacing:1.173000px;}
.ws7b{word-spacing:1.200000px;}
.ws15{word-spacing:1.260000px;}
.wsdb{word-spacing:1.275000px;}
.ws5a{word-spacing:1.320000px;}
.wsf0{word-spacing:1.326000px;}
.ws9a{word-spacing:1.358510px;}
.ws100{word-spacing:1.377000px;}
.ws32{word-spacing:1.380000px;}
.ws7d{word-spacing:1.440000px;}
.ws95{word-spacing:1.463011px;}
.ws13{word-spacing:1.500000px;}
.wsed{word-spacing:1.530000px;}
.ws56{word-spacing:1.560000px;}
.ws118{word-spacing:1.581000px;}
.ws9f{word-spacing:1.619762px;}
.ws5b{word-spacing:1.620000px;}
.wsf2{word-spacing:1.632000px;}
.ws85{word-spacing:1.680000px;}
.wsf6{word-spacing:1.683000px;}
.ws110{word-spacing:1.734000px;}
.ws6b{word-spacing:1.740000px;}
.ws111{word-spacing:1.785000px;}
.ws47{word-spacing:1.800000px;}
.wsef{word-spacing:1.836000px;}
.ws55{word-spacing:1.860000px;}
.ws45{word-spacing:1.920000px;}
.wse5{word-spacing:1.938000px;}
.ws79{word-spacing:1.980000px;}
.ws8f{word-spacing:2.040000px;}
.ws11c{word-spacing:2.091000px;}
.ws68{word-spacing:2.100000px;}
.wsf1{word-spacing:2.142000px;}
.ws1f{word-spacing:2.160000px;}
.wse2{word-spacing:2.193000px;}
.ws6a{word-spacing:2.220000px;}
.wsee{word-spacing:2.244000px;}
.ws49{word-spacing:2.280000px;}
.ws46{word-spacing:2.340000px;}
.ws105{word-spacing:2.397000px;}
.ws6d{word-spacing:2.400000px;}
.wsae{word-spacing:2.460000px;}
.ws10c{word-spacing:2.499000px;}
.ws8b{word-spacing:2.520000px;}
.ws117{word-spacing:2.550000px;}
.ws6e{word-spacing:2.580000px;}
.ws7e{word-spacing:2.640000px;}
.ws1d{word-spacing:2.700000px;}
.ws101{word-spacing:2.703000px;}
.ws10b{word-spacing:2.754000px;}
.ws2f{word-spacing:2.760000px;}
.ws22{word-spacing:2.820000px;}
.ws7c{word-spacing:2.880000px;}
.wsc6{word-spacing:2.940000px;}
.ws48{word-spacing:3.000000px;}
.ws2c{word-spacing:3.060000px;}
.wsfd{word-spacing:3.162000px;}
.ws53{word-spacing:3.180000px;}
.wsf8{word-spacing:3.213000px;}
.ws44{word-spacing:3.240000px;}
.ws86{word-spacing:3.300000px;}
.wse0{word-spacing:3.315000px;}
.ws88{word-spacing:3.360000px;}
.ws52{word-spacing:3.420000px;}
.ws7f{word-spacing:3.480000px;}
.ws4c{word-spacing:3.540000px;}
.ws7a{word-spacing:3.600000px;}
.wsa8{word-spacing:3.660000px;}
.ws6c{word-spacing:3.720000px;}
.wsab{word-spacing:3.780000px;}
.wsb7{word-spacing:3.840000px;}
.wsff{word-spacing:3.876000px;}
.ws72{word-spacing:3.900000px;}
.ws24{word-spacing:3.960000px;}
.ws10a{word-spacing:3.978000px;}
.ws80{word-spacing:4.140000px;}
.ws102{word-spacing:4.182000px;}
.ws91{word-spacing:4.200000px;}
.wsc8{word-spacing:4.260000px;}
.wsd3{word-spacing:4.284000px;}
.wsd2{word-spacing:4.320000px;}
.ws84{word-spacing:4.380000px;}
.ws59{word-spacing:4.440000px;}
.ws51{word-spacing:4.500000px;}
.ws8e{word-spacing:4.560000px;}
.wsc5{word-spacing:4.620000px;}
.ws5d{word-spacing:4.680000px;}
.ws4d{word-spacing:4.740000px;}
.wse8{word-spacing:4.794000px;}
.ws8d{word-spacing:4.800000px;}
.ws81{word-spacing:4.860000px;}
.ws89{word-spacing:4.920000px;}
.ws70{word-spacing:5.040000px;}
.wsc9{word-spacing:5.100000px;}
.ws119{word-spacing:5.253000px;}
.wsa9{word-spacing:5.280000px;}
.wse9{word-spacing:5.355000px;}
.wsc4{word-spacing:5.460000px;}
.wsaa{word-spacing:5.640000px;}
.ws6f{word-spacing:5.700000px;}
.wse6{word-spacing:5.814000px;}
.ws78{word-spacing:6.240000px;}
.wsc7{word-spacing:6.300000px;}
.ws27{word-spacing:6.600000px;}
.ws4f{word-spacing:6.780000px;}
.ws2e{word-spacing:6.900000px;}
.ws90{word-spacing:7.020000px;}
.wsa1{word-spacing:7.560000px;}
.wscb{word-spacing:7.800000px;}
.ws107{word-spacing:7.803000px;}
.ws106{word-spacing:8.364000px;}
.wsac{word-spacing:8.580000px;}
.wsaf{word-spacing:8.820000px;}
.ws93{word-spacing:10.241078px;}
.ws10e{word-spacing:13.515000px;}
.ws10f{word-spacing:17.595000px;}
.ws34{word-spacing:72.267000px;}
._f{margin-left:-2959.377061px;}
._b{margin-left:-72.675000px;}
._8{margin-left:-16.575000px;}
._10{margin-left:-10.863000px;}
._d{margin-left:-7.089000px;}
._2{margin-left:-5.064000px;}
._1{margin-left:-3.360000px;}
._0{margin-left:-1.632000px;}
._4{width:1.578000px;}
._5{width:2.970000px;}
._e{width:4.830000px;}
._7{width:6.348000px;}
._6{width:8.076000px;}
._12{width:11.820000px;}
._15{width:13.710000px;}
._11{width:15.606000px;}
._16{width:16.821000px;}
._9{width:18.360000px;}
._3{width:40.853359px;}
._13{width:45.420000px;}
._a{width:54.621000px;}
._14{width:56.100000px;}
._c{width:2639.555983px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:52.250399px;}
.fsc{font-size:52.320000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y156{bottom:44.679749px;}
.y21{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y15a{bottom:101.088604px;}
.y167{bottom:113.272053px;}
.yaa{bottom:113.415298px;}
.y89{bottom:113.415344px;}
.y13f{bottom:113.544342px;}
.y14c{bottom:114.564308px;}
.yf8{bottom:114.735260px;}
.y10b{bottom:114.735306px;}
.y22a{bottom:116.614823px;}
.y53{bottom:118.032303px;}
.y1ac{bottom:122.288556px;}
.y4d{bottom:130.711349px;}
.y19e{bottom:131.283325px;}
.y229{bottom:131.608823px;}
.y265{bottom:131.774574px;}
.ya9{bottom:132.165298px;}
.y88{bottom:132.165344px;}
.y13e{bottom:132.294342px;}
.y14b{bottom:133.314308px;}
.yf7{bottom:133.485260px;}
.y10a{bottom:133.485306px;}
.y1ab{bottom:137.282556px;}
.y20{bottom:139.264499px;}
.y52{bottom:140.579556px;}
.y1e8{bottom:142.201765px;}
.y228{bottom:146.602823px;}
.y264{bottom:146.768574px;}
.y4c{bottom:149.461349px;}
.y19d{bottom:150.033325px;}
.ya8{bottom:150.915298px;}
.y87{bottom:150.915344px;}
.y13d{bottom:151.044342px;}
.y14a{bottom:152.064308px;}
.yf6{bottom:152.235260px;}
.y109{bottom:152.235306px;}
.y1aa{bottom:152.276556px;}
.y1e7{bottom:157.195765px;}
.y51{bottom:158.032794px;}
.y227{bottom:161.596823px;}
.y263{bottom:161.762574px;}
.y1a9{bottom:167.270556px;}
.y4b{bottom:168.211349px;}
.y19c{bottom:168.783325px;}
.ya7{bottom:169.665298px;}
.y86{bottom:169.665344px;}
.y13c{bottom:169.794342px;}
.y149{bottom:170.814308px;}
.yf5{bottom:170.985260px;}
.y108{bottom:170.985306px;}
.y1e6{bottom:172.189765px;}
.y226{bottom:176.590823px;}
.y262{bottom:176.756574px;}
.y50{bottom:178.126797px;}
.y1a8{bottom:182.264556px;}
.y4a{bottom:186.961349px;}
.y1e5{bottom:187.183765px;}
.y19b{bottom:187.533325px;}
.ya6{bottom:188.415298px;}
.y85{bottom:188.415344px;}
.y13b{bottom:188.544342px;}
.y148{bottom:189.564308px;}
.yf4{bottom:189.735260px;}
.y107{bottom:189.735306px;}
.y225{bottom:191.584823px;}
.y261{bottom:191.750574px;}
.y17{bottom:196.933500px;}
.y1a7{bottom:197.258556px;}
.y1e4{bottom:202.177765px;}
.y4f{bottom:203.127300px;}
.y49{bottom:205.711349px;}
.y19a{bottom:206.283325px;}
.y224{bottom:206.578823px;}
.y260{bottom:206.744574px;}
.ya5{bottom:207.165298px;}
.y84{bottom:207.165344px;}
.y13a{bottom:207.294342px;}
.y147{bottom:208.314308px;}
.yf3{bottom:208.485260px;}
.y106{bottom:208.485306px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1a6{bottom:212.252556px;}
.y1e3{bottom:217.171765px;}
.y4e{bottom:218.121300px;}
.y223{bottom:221.572823px;}
.y25f{bottom:221.738574px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y48{bottom:224.461349px;}
.y199{bottom:225.033325px;}
.ya4{bottom:225.915298px;}
.y83{bottom:225.915344px;}
.y139{bottom:226.044342px;}
.y146{bottom:227.064308px;}
.yf2{bottom:227.235260px;}
.y105{bottom:227.235306px;}
.y1a5{bottom:227.246556px;}
.y1e2{bottom:232.165765px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y222{bottom:236.566823px;}
.y25e{bottom:236.732574px;}
.y1a4{bottom:242.240556px;}
.y47{bottom:243.211349px;}
.y198{bottom:243.783325px;}
.ya3{bottom:244.665298px;}
.y82{bottom:244.665344px;}
.y138{bottom:244.794342px;}
.y145{bottom:245.814308px;}
.yf1{bottom:245.985260px;}
.y104{bottom:245.985306px;}
.y1e1{bottom:247.159765px;}
.y221{bottom:251.560823px;}
.y25d{bottom:251.726574px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y45{bottom:261.961349px;}
.y1e0{bottom:262.153765px;}
.y197{bottom:262.533325px;}
.ya2{bottom:263.415298px;}
.y81{bottom:263.415344px;}
.y137{bottom:263.544342px;}
.y144{bottom:264.564308px;}
.yf0{bottom:264.735260px;}
.y103{bottom:264.735306px;}
.y220{bottom:266.554823px;}
.y25c{bottom:266.720574px;}
.y1a3{bottom:272.241306px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1df{bottom:277.147765px;}
.y44{bottom:280.711349px;}
.y196{bottom:281.283325px;}
.y21f{bottom:281.548823px;}
.y25b{bottom:281.714574px;}
.ya1{bottom:282.165298px;}
.y80{bottom:282.165344px;}
.y136{bottom:282.294342px;}
.y143{bottom:283.314308px;}
.yef{bottom:283.485260px;}
.y102{bottom:283.485306px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y1a2{bottom:287.235306px;}
.y1de{bottom:292.141765px;}
.y21e{bottom:296.542823px;}
.y43{bottom:299.461349px;}
.y195{bottom:300.033325px;}
.ya0{bottom:300.915298px;}
.y7f{bottom:300.915344px;}
.y135{bottom:301.044342px;}
.y142{bottom:302.064308px;}
.yee{bottom:302.235260px;}
.y101{bottom:302.235306px;}
.y1dd{bottom:307.135765px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y21d{bottom:311.536823px;}
.y25a{bottom:311.715324px;}
.y1a1{bottom:317.235306px;}
.y42{bottom:318.211349px;}
.y194{bottom:318.783325px;}
.y9f{bottom:319.665298px;}
.y7e{bottom:319.665344px;}
.y134{bottom:319.794342px;}
.y141{bottom:320.814308px;}
.yed{bottom:320.985260px;}
.y100{bottom:320.985306px;}
.y1dc{bottom:322.129765px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y21c{bottom:326.530823px;}
.y259{bottom:326.709324px;}
.y41{bottom:336.961349px;}
.y1db{bottom:337.123765px;}
.y193{bottom:337.533325px;}
.y9e{bottom:338.415298px;}
.y7d{bottom:338.415344px;}
.y133{bottom:338.544342px;}
.y140{bottom:339.564308px;}
.yec{bottom:339.735260px;}
.yff{bottom:339.735306px;}
.y21b{bottom:341.524823px;}
.y258{bottom:341.703324px;}
.ye{bottom:348.133500px;}
.y1a0{bottom:350.991306px;}
.y1da{bottom:352.117765px;}
.y40{bottom:355.711349px;}
.y192{bottom:356.283325px;}
.y21a{bottom:356.518823px;}
.y257{bottom:356.697324px;}
.y9d{bottom:357.165298px;}
.y7c{bottom:357.165344px;}
.y132{bottom:357.294342px;}
.yeb{bottom:358.485260px;}
.yfe{bottom:358.485306px;}
.y19f{bottom:365.985306px;}
.y1d9{bottom:367.111765px;}
.y219{bottom:371.512823px;}
.y256{bottom:371.691324px;}
.y3f{bottom:374.461349px;}
.y191{bottom:375.033325px;}
.y9c{bottom:375.915298px;}
.y7b{bottom:375.915344px;}
.y131{bottom:376.044342px;}
.yea{bottom:377.235260px;}
.yfd{bottom:377.235306px;}
.y1d8{bottom:382.105765px;}
.y218{bottom:386.506823px;}
.y255{bottom:386.685324px;}
.yd{bottom:386.785499px;}
.y3e{bottom:393.211349px;}
.y190{bottom:393.783325px;}
.y9b{bottom:394.665298px;}
.y7a{bottom:394.665344px;}
.y130{bottom:394.794342px;}
.ye9{bottom:395.985260px;}
.yfc{bottom:395.985306px;}
.y1d7{bottom:397.099765px;}
.y158{bottom:397.417969px;}
.y217{bottom:401.500823px;}
.y254{bottom:401.679324px;}
.yc{bottom:408.044999px;}
.y3d{bottom:411.961349px;}
.y1d6{bottom:412.093765px;}
.y18f{bottom:412.533325px;}
.y9a{bottom:413.415298px;}
.y79{bottom:413.415344px;}
.y12f{bottom:413.544342px;}
.ye8{bottom:414.735260px;}
.yfb{bottom:414.735306px;}
.y216{bottom:416.494823px;}
.y253{bottom:416.673324px;}
.y1d5{bottom:427.087765px;}
.y3c{bottom:430.711349px;}
.y18e{bottom:431.283325px;}
.y215{bottom:431.488823px;}
.y252{bottom:431.667324px;}
.y99{bottom:432.165298px;}
.y78{bottom:432.165344px;}
.y12e{bottom:432.294342px;}
.ye7{bottom:433.485260px;}
.y16b{bottom:433.485306px;}
.y1d4{bottom:442.081765px;}
.y214{bottom:446.482823px;}
.y251{bottom:446.661324px;}
.y3b{bottom:449.461349px;}
.y18d{bottom:450.033325px;}
.y98{bottom:450.915298px;}
.y77{bottom:450.915344px;}
.y12d{bottom:451.044342px;}
.ye6{bottom:452.235260px;}
.yfa{bottom:452.235306px;}
.y1d3{bottom:457.075765px;}
.y213{bottom:461.476823px;}
.y250{bottom:461.655324px;}
.y3a{bottom:468.211349px;}
.y18c{bottom:468.783325px;}
.y97{bottom:469.665298px;}
.y76{bottom:469.665344px;}
.y12c{bottom:469.794342px;}
.ye5{bottom:470.985260px;}
.y16a{bottom:470.985306px;}
.y1d2{bottom:472.069765px;}
.y212{bottom:476.470823px;}
.y24f{bottom:476.649324px;}
.y46{bottom:486.961349px;}
.y1d1{bottom:487.063765px;}
.y18b{bottom:487.533325px;}
.y96{bottom:488.415298px;}
.y75{bottom:488.415344px;}
.y12b{bottom:488.544342px;}
.ye4{bottom:489.735260px;}
.yf9{bottom:489.735306px;}
.y211{bottom:491.464823px;}
.y24e{bottom:491.643324px;}
.y1d0{bottom:502.057765px;}
.yb{bottom:502.864502px;}
.y39{bottom:505.711349px;}
.y18a{bottom:506.283325px;}
.y210{bottom:506.458823px;}
.y24d{bottom:506.637324px;}
.y95{bottom:507.165298px;}
.y74{bottom:507.165344px;}
.y12a{bottom:507.294342px;}
.ye3{bottom:508.485260px;}
.y169{bottom:508.485306px;}
.y1cf{bottom:517.051765px;}
.ya{bottom:520.864502px;}
.y20f{bottom:521.452823px;}
.y24c{bottom:521.631324px;}
.y189{bottom:525.033325px;}
.y94{bottom:525.915298px;}
.y73{bottom:525.915344px;}
.y129{bottom:526.044342px;}
.ye2{bottom:527.235260px;}
.y166{bottom:527.235306px;}
.y1ce{bottom:532.045765px;}
.y20e{bottom:536.446823px;}
.y24b{bottom:536.625324px;}
.y9{bottom:538.864499px;}
.y188{bottom:543.783325px;}
.y93{bottom:544.665298px;}
.y72{bottom:544.665344px;}
.y128{bottom:544.794342px;}
.ye1{bottom:545.985260px;}
.y165{bottom:545.985306px;}
.y1cd{bottom:547.039765px;}
.y20d{bottom:551.440823px;}
.y8{bottom:556.864499px;}
.y38{bottom:561.961395px;}
.y1cc{bottom:562.033765px;}
.y187{bottom:562.533325px;}
.y92{bottom:563.415298px;}
.y71{bottom:563.415344px;}
.y127{bottom:563.544342px;}
.ye0{bottom:564.735260px;}
.y164{bottom:564.735306px;}
.y20c{bottom:566.434823px;}
.y1cb{bottom:577.027765px;}
.y37{bottom:580.711395px;}
.y186{bottom:581.283325px;}
.y20b{bottom:581.428823px;}
.y91{bottom:582.165298px;}
.y70{bottom:582.165344px;}
.y126{bottom:582.294342px;}
.ydf{bottom:583.485260px;}
.y163{bottom:583.485306px;}
.y1ca{bottom:592.021765px;}
.y20a{bottom:596.422823px;}
.y185{bottom:600.033325px;}
.y90{bottom:600.915298px;}
.y6f{bottom:600.915344px;}
.y125{bottom:601.044342px;}
.yde{bottom:602.235260px;}
.y162{bottom:602.235306px;}
.yda{bottom:606.929721px;}
.y1c9{bottom:607.015765px;}
.y209{bottom:611.416823px;}
.y24a{bottom:611.710074px;}
.y36{bottom:618.211395px;}
.y184{bottom:618.783325px;}
.y8f{bottom:619.665298px;}
.y6e{bottom:619.665344px;}
.y124{bottom:619.794342px;}
.ydd{bottom:620.985260px;}
.y161{bottom:620.985306px;}
.yd9{bottom:621.923721px;}
.y1c8{bottom:622.009765px;}
.y208{bottom:626.410823px;}
.y249{bottom:626.704074px;}
.y35{bottom:636.961395px;}
.y1c7{bottom:637.003765px;}
.y183{bottom:637.533325px;}
.y8e{bottom:638.415298px;}
.y6d{bottom:638.415344px;}
.y123{bottom:638.544342px;}
.ydc{bottom:639.735260px;}
.y160{bottom:639.735306px;}
.y207{bottom:641.404823px;}
.y7{bottom:645.510000px;}
.y1c6{bottom:651.997765px;}
.y34{bottom:655.711395px;}
.y182{bottom:656.283325px;}
.y206{bottom:656.398823px;}
.y248{bottom:656.794073px;}
.y8d{bottom:657.165298px;}
.y6c{bottom:657.165344px;}
.y122{bottom:657.294342px;}
.ydb{bottom:658.485260px;}
.y15f{bottom:658.485306px;}
.y6{bottom:666.771000px;}
.y1c5{bottom:666.991765px;}
.y205{bottom:671.392823px;}
.y247{bottom:671.788073px;}
.y33{bottom:674.461395px;}
.y181{bottom:675.033325px;}
.y8c{bottom:675.915298px;}
.y6b{bottom:675.915344px;}
.yd8{bottom:676.044159px;}
.y121{bottom:676.044342px;}
.yc2{bottom:677.235260px;}
.y15e{bottom:677.235306px;}
.y1c4{bottom:681.985765px;}
.y204{bottom:686.386823px;}
.y246{bottom:686.782073px;}
.y32{bottom:693.211395px;}
.y180{bottom:693.783325px;}
.y8b{bottom:694.665298px;}
.y6a{bottom:694.665344px;}
.yd7{bottom:694.794159px;}
.y120{bottom:694.794342px;}
.yc1{bottom:695.985260px;}
.y15d{bottom:695.985306px;}
.y1c3{bottom:696.979765px;}
.y203{bottom:701.380823px;}
.y245{bottom:701.776073px;}
.y31{bottom:711.961395px;}
.y1c2{bottom:711.973765px;}
.y17f{bottom:712.533325px;}
.y69{bottom:713.415344px;}
.yd6{bottom:713.544159px;}
.y11f{bottom:713.544342px;}
.yc0{bottom:714.735260px;}
.y15c{bottom:714.735306px;}
.y202{bottom:716.374823px;}
.y244{bottom:716.770073px;}
.y5{bottom:726.298500px;}
.y1c1{bottom:726.967765px;}
.y30{bottom:730.711395px;}
.y17e{bottom:731.283325px;}
.y201{bottom:731.368823px;}
.y243{bottom:731.764073px;}
.y8a{bottom:732.165298px;}
.y68{bottom:732.165344px;}
.yd5{bottom:732.294159px;}
.y11e{bottom:732.294342px;}
.ybf{bottom:733.485260px;}
.y15b{bottom:733.485306px;}
.y1c0{bottom:741.961765px;}
.y200{bottom:746.362823px;}
.y242{bottom:746.758073px;}
.y2f{bottom:749.461395px;}
.y17d{bottom:750.033325px;}
.y67{bottom:750.915344px;}
.yd4{bottom:751.044159px;}
.y11d{bottom:751.044342px;}
.ybe{bottom:752.235260px;}
.y168{bottom:752.235306px;}
.y3{bottom:752.599495px;}
.y1bf{bottom:756.955765px;}
.y1ff{bottom:761.356823px;}
.y241{bottom:761.752073px;}
.y159{bottom:765.430800px;}
.y2e{bottom:768.211395px;}
.y17c{bottom:768.783325px;}
.y66{bottom:769.665344px;}
.yd3{bottom:769.794159px;}
.y11c{bottom:769.794342px;}
.ybd{bottom:770.985260px;}
.y1be{bottom:771.949765px;}
.y1fe{bottom:776.350823px;}
.y240{bottom:776.746073px;}
.y1bd{bottom:786.943765px;}
.y2d{bottom:786.961395px;}
.y17b{bottom:787.533325px;}
.y65{bottom:788.415344px;}
.yd2{bottom:788.544159px;}
.y11b{bottom:788.544342px;}
.ybc{bottom:789.735260px;}
.y1fd{bottom:791.344823px;}
.y23f{bottom:791.740073px;}
.y1bc{bottom:801.937765px;}
.y155{bottom:804.766479px;}
.y2c{bottom:805.711395px;}
.y17a{bottom:806.283325px;}
.y1fc{bottom:806.338823px;}
.y23e{bottom:806.734073px;}
.y64{bottom:807.165344px;}
.yd1{bottom:807.294159px;}
.y11a{bottom:807.294342px;}
.ybb{bottom:808.485260px;}
.y1bb{bottom:816.931765px;}
.y1fb{bottom:821.332823px;}
.y23d{bottom:821.728073px;}
.y2b{bottom:824.461395px;}
.y179{bottom:825.033325px;}
.y63{bottom:825.915344px;}
.yd0{bottom:826.044159px;}
.y119{bottom:826.044342px;}
.yba{bottom:827.235260px;}
.y152{bottom:827.560139px;}
.y1ba{bottom:831.925765px;}
.y1fa{bottom:836.326823px;}
.y23c{bottom:836.722073px;}
.y2a{bottom:843.211395px;}
.y178{bottom:843.783325px;}
.y62{bottom:844.665344px;}
.ycf{bottom:844.794159px;}
.y118{bottom:844.794342px;}
.yb9{bottom:845.985260px;}
.y1b9{bottom:846.919765px;}
.y154{bottom:849.446228px;}
.y1f9{bottom:851.320823px;}
.y23b{bottom:851.716073px;}
.y1b8{bottom:861.913765px;}
.y29{bottom:861.961395px;}
.y177{bottom:862.533325px;}
.y61{bottom:863.415344px;}
.yce{bottom:863.544159px;}
.y117{bottom:863.544342px;}
.yb8{bottom:864.735260px;}
.y1f8{bottom:866.314823px;}
.y23a{bottom:866.710073px;}
.y1b7{bottom:876.907765px;}
.y2{bottom:879.369000px;}
.y176{bottom:881.283325px;}
.y1f7{bottom:881.308823px;}
.y239{bottom:881.704073px;}
.y60{bottom:882.165344px;}
.ycd{bottom:882.294159px;}
.y116{bottom:882.294342px;}
.yb7{bottom:883.485260px;}
.y1b6{bottom:891.901765px;}
.y1f6{bottom:896.302823px;}
.y238{bottom:896.698073px;}
.y175{bottom:900.033325px;}
.y5f{bottom:900.915344px;}
.ycc{bottom:901.044159px;}
.y115{bottom:901.044342px;}
.yb6{bottom:902.235260px;}
.y28{bottom:906.144153px;}
.y1b5{bottom:906.895765px;}
.y1f5{bottom:911.296823px;}
.y237{bottom:911.692073px;}
.y174{bottom:918.783325px;}
.y5e{bottom:919.665344px;}
.ycb{bottom:919.794159px;}
.y114{bottom:919.794342px;}
.yb5{bottom:920.985260px;}
.y27{bottom:921.138153px;}
.y1b4{bottom:921.889765px;}
.y271{bottom:926.137838px;}
.y1f4{bottom:926.290823px;}
.y27d{bottom:926.354588px;}
.y236{bottom:926.686073px;}
.y1b3{bottom:936.883765px;}
.y173{bottom:937.533325px;}
.y5d{bottom:938.415344px;}
.yca{bottom:938.544159px;}
.y113{bottom:938.544342px;}
.yb4{bottom:939.735260px;}
.y270{bottom:941.131838px;}
.y1f3{bottom:941.284823px;}
.y27c{bottom:941.348588px;}
.y235{bottom:941.680073px;}
.y1b2{bottom:951.877765px;}
.y151{bottom:952.908841px;}
.y153{bottom:953.431345px;}
.y26f{bottom:956.125838px;}
.y1f2{bottom:956.278823px;}
.y172{bottom:956.283325px;}
.y27b{bottom:956.342588px;}
.y234{bottom:956.674073px;}
.y5c{bottom:957.165344px;}
.yc9{bottom:957.294159px;}
.y112{bottom:957.294342px;}
.yb3{bottom:958.485260px;}
.y26{bottom:963.738190px;}
.y1{bottom:966.726000px;}
.y1b1{bottom:966.871765px;}
.y26e{bottom:971.119838px;}
.y1f1{bottom:971.272823px;}
.y27a{bottom:971.336588px;}
.y233{bottom:971.668073px;}
.y171{bottom:975.033325px;}
.y5b{bottom:975.915344px;}
.yc8{bottom:976.044159px;}
.y111{bottom:976.044342px;}
.yb2{bottom:977.235260px;}
.y26d{bottom:986.113838px;}
.y1f0{bottom:986.266823px;}
.y279{bottom:986.330588px;}
.y232{bottom:986.662073px;}
.y170{bottom:993.783325px;}
.y5a{bottom:994.665344px;}
.yc7{bottom:994.794159px;}
.y110{bottom:994.794342px;}
.yb1{bottom:995.985260px;}
.y1b0{bottom:1000.621765px;}
.y26c{bottom:1001.107838px;}
.y1ef{bottom:1001.260823px;}
.y278{bottom:1001.324588px;}
.y231{bottom:1001.656073px;}
.y25{bottom:1008.424622px;}
.y16f{bottom:1012.533325px;}
.y59{bottom:1013.415344px;}
.yc6{bottom:1013.544159px;}
.y10f{bottom:1013.544342px;}
.yb0{bottom:1014.735260px;}
.y26b{bottom:1016.101838px;}
.y1ee{bottom:1016.254823px;}
.y277{bottom:1016.318588px;}
.y230{bottom:1016.650073px;}
.y26a{bottom:1031.095838px;}
.y1ed{bottom:1031.248823px;}
.y16e{bottom:1031.283325px;}
.y276{bottom:1031.312588px;}
.y22f{bottom:1031.644073px;}
.y58{bottom:1032.165344px;}
.yc5{bottom:1032.294159px;}
.y10e{bottom:1032.294342px;}
.yaf{bottom:1033.485260px;}
.y269{bottom:1046.089838px;}
.y1ec{bottom:1046.242823px;}
.y275{bottom:1046.306588px;}
.y22e{bottom:1046.638073px;}
.y16d{bottom:1050.033325px;}
.y57{bottom:1050.915344px;}
.yc4{bottom:1051.044159px;}
.y10d{bottom:1051.044342px;}
.yae{bottom:1052.235260px;}
.y157{bottom:1057.232117px;}
.y14f{bottom:1060.114844px;}
.y268{bottom:1061.083838px;}
.y1eb{bottom:1061.236823px;}
.y1af{bottom:1061.287806px;}
.y274{bottom:1061.300588px;}
.y22d{bottom:1061.632073px;}
.y56{bottom:1069.665344px;}
.yad{bottom:1070.985260px;}
.y14e{bottom:1075.108844px;}
.y267{bottom:1076.077838px;}
.y24{bottom:1076.132080px;}
.y1ea{bottom:1076.230823px;}
.y1ae{bottom:1076.281806px;}
.y273{bottom:1076.294588px;}
.y22c{bottom:1076.626073px;}
.y150{bottom:1080.360626px;}
.y16c{bottom:1087.533325px;}
.y55{bottom:1088.415344px;}
.yc3{bottom:1088.544159px;}
.y10c{bottom:1088.544342px;}
.yac{bottom:1089.735260px;}
.y14d{bottom:1090.102844px;}
.y266{bottom:1091.071838px;}
.y1e9{bottom:1091.224823px;}
.y1ad{bottom:1091.275806px;}
.y272{bottom:1091.288588px;}
.y22b{bottom:1091.620073px;}
.y23{bottom:1109.586556px;}
.y22{bottom:1126.582306px;}
.y54{bottom:1127.482361px;}
.yab{bottom:1127.482544px;}
.h7{height:32.130000px;}
.h14{height:33.129599px;}
.ha{height:33.840000px;}
.h17{height:35.739273px;}
.h18{height:35.786880px;}
.hb{height:44.676000px;}
.h6{height:45.900000px;}
.h13{height:47.328000px;}
.h3{height:48.195000px;}
.h16{height:52.173000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h11{height:55.680000px;}
.h15{height:59.004000px;}
.hf{height:59.340000px;}
.h10{height:61.380000px;}
.he{height:64.866000px;}
.h12{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h19{height:294.900009px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:540.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.x8{left:93.545402px;}
.xb{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x11{left:276.377998px;}
.xe{left:342.111783px;}
.x12{left:435.376488px;}
.x14{left:440.933830px;}
.x16{left:447.733498px;}
.x17{left:452.441872px;}
.x3{left:454.959000px;}
.x19{left:456.532494px;}
.x9{left:459.215389px;}
.x1b{left:463.241982px;}
.xd{left:469.352829px;}
.x1d{left:473.426857px;}
.xa{left:476.225382px;}
.x1f{left:479.780983px;}
.x2f{left:484.725290px;}
.x21{left:486.844368px;}
.x23{left:490.412865px;}
.x25{left:496.873375px;}
.x27{left:503.216881px;}
.x29{left:509.922020px;}
.x2b{left:516.538536px;}
.x2c{left:522.631371px;}
.x2e{left:528.031334px;}
.xf{left:621.587651px;}
.x10{left:711.754486px;}
.x13{left:717.311829px;}
.x15{left:724.111496px;}
.x5{left:728.220612px;}
.x18{left:732.910492px;}
.x1a{left:739.619980px;}
.x1c{left:749.804855px;}
.x1e{left:756.158981px;}
.x20{left:763.222366px;}
.x22{left:766.790863px;}
.x24{left:773.251373px;}
.x26{left:779.594879px;}
.x28{left:786.300018px;}
.x2a{left:792.916534px;}
.xc{left:798.209564px;}
.x2d{left:804.409332px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls51{letter-spacing:-1.486234pt;}
.ls2e{letter-spacing:-1.440000pt;}
.ls47{letter-spacing:-1.346899pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls4c{letter-spacing:-1.254010pt;}
.ls36{letter-spacing:-1.173333pt;}
.ls4a{letter-spacing:-1.068230pt;}
.ls53{letter-spacing:-1.066667pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.906667pt;}
.ls4e{letter-spacing:-0.882451pt;}
.ls2d{letter-spacing:-0.853333pt;}
.ls50{letter-spacing:-0.836006pt;}
.ls58{letter-spacing:-0.800000pt;}
.ls37{letter-spacing:-0.770667pt;}
.ls4d{letter-spacing:-0.743117pt;}
.ls48{letter-spacing:-0.696672pt;}
.ls3d{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.557338pt;}
.ls54{letter-spacing:-0.533333pt;}
.ls4b{letter-spacing:-0.510893pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls60{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls45{letter-spacing:-0.325114pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7f{letter-spacing:-0.317333pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.232224pt;}
.ls82{letter-spacing:-0.226667pt;}
.ls2b{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls80{letter-spacing:-0.181333pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls4f{letter-spacing:-0.139334pt;}
.ls83{letter-spacing:-0.136000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls81{letter-spacing:-0.090667pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.045333pt;}
.ls3{letter-spacing:0.053333pt;}
.ls77{letter-spacing:0.068000pt;}
.ls69{letter-spacing:0.090667pt;}
.ls24{letter-spacing:0.106667pt;}
.ls56{letter-spacing:0.133333pt;}
.ls86{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls6{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.226667pt;}
.ls65{letter-spacing:0.234667pt;}
.ls44{letter-spacing:0.240000pt;}
.ls6a{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.272000pt;}
.ls57{letter-spacing:0.293333pt;}
.ls67{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8d{letter-spacing:0.340000pt;}
.ls52{letter-spacing:0.346667pt;}
.ls72{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.373333pt;}
.ls20{letter-spacing:0.400000pt;}
.ls68{letter-spacing:0.408000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls88{letter-spacing:0.430667pt;}
.ls7d{letter-spacing:0.453333pt;}
.ls85{letter-spacing:0.476000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls7a{letter-spacing:0.498667pt;}
.ls25{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.544000pt;}
.ls89{letter-spacing:0.566667pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls7b{letter-spacing:0.589333pt;}
.ls84{letter-spacing:0.612000pt;}
.ls43{letter-spacing:0.613333pt;}
.ls79{letter-spacing:0.634667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls8e{letter-spacing:0.657333pt;}
.lsf{letter-spacing:0.666667pt;}
.ls71{letter-spacing:0.680000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls7c{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls8c{letter-spacing:0.770667pt;}
.ls63{letter-spacing:0.773333pt;}
.ls8b{letter-spacing:0.793333pt;}
.ls8{letter-spacing:0.800000pt;}
.ls73{letter-spacing:0.816000pt;}
.ls1e{letter-spacing:0.826667pt;}
.ls7{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.861333pt;}
.ls39{letter-spacing:0.880000pt;}
.lsa{letter-spacing:0.906667pt;}
.ls32{letter-spacing:0.933333pt;}
.lse{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.986667pt;}
.ls1f{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.040000pt;}
.ls6c{letter-spacing:1.042667pt;}
.ls42{letter-spacing:1.066667pt;}
.ls87{letter-spacing:1.088000pt;}
.ls35{letter-spacing:1.093333pt;}
.lsb{letter-spacing:1.120000pt;}
.ls7e{letter-spacing:1.133333pt;}
.ls29{letter-spacing:1.146667pt;}
.ls26{letter-spacing:1.173333pt;}
.ls70{letter-spacing:1.178667pt;}
.ls22{letter-spacing:1.200000pt;}
.ls21{letter-spacing:1.226667pt;}
.ls5e{letter-spacing:1.253333pt;}
.ls8f{letter-spacing:1.269333pt;}
.ls3b{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.306667pt;}
.ls74{letter-spacing:1.314667pt;}
.ls33{letter-spacing:1.333333pt;}
.ls6f{letter-spacing:1.360000pt;}
.ls41{letter-spacing:1.386667pt;}
.ls27{letter-spacing:1.440000pt;}
.ls38{letter-spacing:1.493333pt;}
.ls6b{letter-spacing:1.541333pt;}
.ls30{letter-spacing:1.546667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:1.653333pt;}
.ls5c{letter-spacing:1.706667pt;}
.ls8a{letter-spacing:1.722667pt;}
.ls2f{letter-spacing:1.760000pt;}
.ls31{letter-spacing:1.813333pt;}
.ls59{letter-spacing:1.866667pt;}
.ls76{letter-spacing:1.904000pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls28{letter-spacing:1.973333pt;}
.ls75{letter-spacing:1.994667pt;}
.ls40{letter-spacing:2.026667pt;}
.ls5d{letter-spacing:2.053333pt;}
.ls5a{letter-spacing:2.133333pt;}
.ls5b{letter-spacing:2.240000pt;}
.ls61{letter-spacing:2.400000pt;}
.ls5f{letter-spacing:2.506667pt;}
.ls1{letter-spacing:3.546667pt;}
.wsc3{word-spacing:-15.466667pt;}
.wsbf{word-spacing:-15.386667pt;}
.wsb8{word-spacing:-15.306667pt;}
.wsbc{word-spacing:-15.093333pt;}
.wsc{word-spacing:-14.986667pt;}
.wsc1{word-spacing:-14.933333pt;}
.ws5f{word-spacing:-14.880000pt;}
.ws64{word-spacing:-14.640000pt;}
.wsb6{word-spacing:-14.613333pt;}
.wscd{word-spacing:-14.560000pt;}
.ws3a{word-spacing:-14.533333pt;}
.ws40{word-spacing:-14.506667pt;}
.ws3f{word-spacing:-14.453333pt;}
.wsc2{word-spacing:-14.400000pt;}
.ws36{word-spacing:-14.346667pt;}
.wsc0{word-spacing:-14.293333pt;}
.wsbe{word-spacing:-14.240000pt;}
.wsbb{word-spacing:-14.186667pt;}
.ws62{word-spacing:-14.160000pt;}
.ws92{word-spacing:-14.133333pt;}
.ws37{word-spacing:-14.080000pt;}
.wsd{word-spacing:-14.026667pt;}
.wsb9{word-spacing:-13.973333pt;}
.wsbd{word-spacing:-13.920000pt;}
.ws63{word-spacing:-13.866667pt;}
.wscc{word-spacing:-13.813333pt;}
.ws60{word-spacing:-13.706667pt;}
.wsa6{word-spacing:-13.653333pt;}
.ws9{word-spacing:-13.600000pt;}
.ws65{word-spacing:-13.546667pt;}
.wsb2{word-spacing:-13.493333pt;}
.ws74{word-spacing:-13.440000pt;}
.ws61{word-spacing:-13.386667pt;}
.ws39{word-spacing:-13.333333pt;}
.ws38{word-spacing:-13.280000pt;}
.wsd0{word-spacing:-13.184000pt;}
.wsa3{word-spacing:-13.173333pt;}
.wsb5{word-spacing:-13.120000pt;}
.ws3c{word-spacing:-13.013333pt;}
.ws3e{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.928000pt;}
.wsba{word-spacing:-12.906667pt;}
.ws6{word-spacing:-12.853333pt;}
.wsa4{word-spacing:-12.800000pt;}
.ws8{word-spacing:-12.693333pt;}
.ws75{word-spacing:-12.640000pt;}
.wsb3{word-spacing:-12.533333pt;}
.ws3b{word-spacing:-12.480000pt;}
.wsa5{word-spacing:-12.426667pt;}
.ws73{word-spacing:-12.373333pt;}
.wsa2{word-spacing:-12.266667pt;}
.wse1{word-spacing:-12.194667pt;}
.ws66{word-spacing:-12.160000pt;}
.ws7{word-spacing:-12.053333pt;}
.wsd1{word-spacing:-11.560000pt;}
.wscf{word-spacing:-11.424000pt;}
.wsf4{word-spacing:-11.378667pt;}
.wsb4{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws67{word-spacing:-10.562667pt;}
.wsa{word-spacing:-10.240000pt;}
.wsce{word-spacing:-9.565333pt;}
.ws2{word-spacing:-8.885333pt;}
.wse{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.wsb0{word-spacing:-5.666667pt;}
.wsad{word-spacing:-1.920000pt;}
.wsca{word-spacing:-1.866667pt;}
.wse7{word-spacing:-1.813333pt;}
.ws11{word-spacing:-1.653333pt;}
.ws26{word-spacing:-1.600000pt;}
.ws69{word-spacing:-1.546667pt;}
.ws5c{word-spacing:-1.440000pt;}
.ws10{word-spacing:-1.333333pt;}
.ws83{word-spacing:-1.280000pt;}
.ws4a{word-spacing:-1.226667pt;}
.ws112{word-spacing:-1.178667pt;}
.ws43{word-spacing:-1.173333pt;}
.wsd9{word-spacing:-1.133333pt;}
.ws25{word-spacing:-1.120000pt;}
.wseb{word-spacing:-1.088000pt;}
.ws19{word-spacing:-1.066667pt;}
.ws109{word-spacing:-1.042667pt;}
.ws4b{word-spacing:-1.013333pt;}
.wse3{word-spacing:-0.997333pt;}
.ws2d{word-spacing:-0.960000pt;}
.wsdc{word-spacing:-0.952000pt;}
.ws23{word-spacing:-0.906667pt;}
.wsd8{word-spacing:-0.861333pt;}
.ws1e{word-spacing:-0.853333pt;}
.ws116{word-spacing:-0.816000pt;}
.ws17{word-spacing:-0.800000pt;}
.wsf9{word-spacing:-0.770667pt;}
.ws5e{word-spacing:-0.746667pt;}
.ws57{word-spacing:-0.693333pt;}
.wsdd{word-spacing:-0.680000pt;}
.ws20{word-spacing:-0.640000pt;}
.wsde{word-spacing:-0.634667pt;}
.ws50{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.544000pt;}
.ws31{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.506667pt;}
.wse4{word-spacing:-0.498667pt;}
.ws30{word-spacing:-0.480000pt;}
.ws11b{word-spacing:-0.453333pt;}
.ws33{word-spacing:-0.426667pt;}
.ws29{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.320000pt;}
.wsfb{word-spacing:-0.317333pt;}
.ws103{word-spacing:-0.272000pt;}
.ws16{word-spacing:-0.266667pt;}
.wsd5{word-spacing:-0.234667pt;}
.wsd4{word-spacing:-0.226667pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws28{word-spacing:-0.160000pt;}
.ws54{word-spacing:-0.106667pt;}
.ws10d{word-spacing:-0.090667pt;}
.ws3d{word-spacing:-0.058667pt;}
.ws58{word-spacing:-0.053333pt;}
.ws108{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.053333pt;}
.wsdf{word-spacing:0.090667pt;}
.ws9d{word-spacing:0.092890pt;}
.ws42{word-spacing:0.106667pt;}
.ws76{word-spacing:0.128000pt;}
.wsea{word-spacing:0.136000pt;}
.ws87{word-spacing:0.160000pt;}
.ws104{word-spacing:0.181333pt;}
.ws96{word-spacing:0.185779pt;}
.ws8a{word-spacing:0.213333pt;}
.wsf3{word-spacing:0.226667pt;}
.ws2a{word-spacing:0.266667pt;}
.wsfc{word-spacing:0.272000pt;}
.wsd6{word-spacing:0.317333pt;}
.ws12{word-spacing:0.320000pt;}
.ws14{word-spacing:0.373333pt;}
.wsd7{word-spacing:0.408000pt;}
.wsf7{word-spacing:0.453333pt;}
.ws98{word-spacing:0.464448pt;}
.ws2b{word-spacing:0.480000pt;}
.wsfa{word-spacing:0.498667pt;}
.ws94{word-spacing:0.510893pt;}
.ws82{word-spacing:0.533333pt;}
.ws11a{word-spacing:0.544000pt;}
.ws41{word-spacing:0.586667pt;}
.wsf5{word-spacing:0.634667pt;}
.ws1c{word-spacing:0.640000pt;}
.ws99{word-spacing:0.650227pt;}
.wsec{word-spacing:0.680000pt;}
.ws71{word-spacing:0.693333pt;}
.ws9b{word-spacing:0.696672pt;}
.wsa7{word-spacing:0.746667pt;}
.wsb1{word-spacing:0.770667pt;}
.ws9e{word-spacing:0.789562pt;}
.ws18{word-spacing:0.800000pt;}
.ws114{word-spacing:0.816000pt;}
.ws9c{word-spacing:0.836006pt;}
.ws77{word-spacing:0.853333pt;}
.ws113{word-spacing:0.861333pt;}
.wsa0{word-spacing:0.906667pt;}
.wsfe{word-spacing:0.952000pt;}
.ws8c{word-spacing:0.960000pt;}
.ws115{word-spacing:0.997333pt;}
.ws1b{word-spacing:1.013333pt;}
.ws97{word-spacing:1.021786pt;}
.wsda{word-spacing:1.042667pt;}
.ws7b{word-spacing:1.066667pt;}
.ws15{word-spacing:1.120000pt;}
.wsdb{word-spacing:1.133333pt;}
.ws5a{word-spacing:1.173333pt;}
.wsf0{word-spacing:1.178667pt;}
.ws9a{word-spacing:1.207565pt;}
.ws100{word-spacing:1.224000pt;}
.ws32{word-spacing:1.226667pt;}
.ws7d{word-spacing:1.280000pt;}
.ws95{word-spacing:1.300454pt;}
.ws13{word-spacing:1.333333pt;}
.wsed{word-spacing:1.360000pt;}
.ws56{word-spacing:1.386667pt;}
.ws118{word-spacing:1.405333pt;}
.ws9f{word-spacing:1.439789pt;}
.ws5b{word-spacing:1.440000pt;}
.wsf2{word-spacing:1.450667pt;}
.ws85{word-spacing:1.493333pt;}
.wsf6{word-spacing:1.496000pt;}
.ws110{word-spacing:1.541333pt;}
.ws6b{word-spacing:1.546667pt;}
.ws111{word-spacing:1.586667pt;}
.ws47{word-spacing:1.600000pt;}
.wsef{word-spacing:1.632000pt;}
.ws55{word-spacing:1.653333pt;}
.ws45{word-spacing:1.706667pt;}
.wse5{word-spacing:1.722667pt;}
.ws79{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.813333pt;}
.ws11c{word-spacing:1.858667pt;}
.ws68{word-spacing:1.866667pt;}
.wsf1{word-spacing:1.904000pt;}
.ws1f{word-spacing:1.920000pt;}
.wse2{word-spacing:1.949333pt;}
.ws6a{word-spacing:1.973333pt;}
.wsee{word-spacing:1.994667pt;}
.ws49{word-spacing:2.026667pt;}
.ws46{word-spacing:2.080000pt;}
.ws105{word-spacing:2.130667pt;}
.ws6d{word-spacing:2.133333pt;}
.wsae{word-spacing:2.186667pt;}
.ws10c{word-spacing:2.221333pt;}
.ws8b{word-spacing:2.240000pt;}
.ws117{word-spacing:2.266667pt;}
.ws6e{word-spacing:2.293333pt;}
.ws7e{word-spacing:2.346667pt;}
.ws1d{word-spacing:2.400000pt;}
.ws101{word-spacing:2.402667pt;}
.ws10b{word-spacing:2.448000pt;}
.ws2f{word-spacing:2.453333pt;}
.ws22{word-spacing:2.506667pt;}
.ws7c{word-spacing:2.560000pt;}
.wsc6{word-spacing:2.613333pt;}
.ws48{word-spacing:2.666667pt;}
.ws2c{word-spacing:2.720000pt;}
.wsfd{word-spacing:2.810667pt;}
.ws53{word-spacing:2.826667pt;}
.wsf8{word-spacing:2.856000pt;}
.ws44{word-spacing:2.880000pt;}
.ws86{word-spacing:2.933333pt;}
.wse0{word-spacing:2.946667pt;}
.ws88{word-spacing:2.986667pt;}
.ws52{word-spacing:3.040000pt;}
.ws7f{word-spacing:3.093333pt;}
.ws4c{word-spacing:3.146667pt;}
.ws7a{word-spacing:3.200000pt;}
.wsa8{word-spacing:3.253333pt;}
.ws6c{word-spacing:3.306667pt;}
.wsab{word-spacing:3.360000pt;}
.wsb7{word-spacing:3.413333pt;}
.wsff{word-spacing:3.445333pt;}
.ws72{word-spacing:3.466667pt;}
.ws24{word-spacing:3.520000pt;}
.ws10a{word-spacing:3.536000pt;}
.ws80{word-spacing:3.680000pt;}
.ws102{word-spacing:3.717333pt;}
.ws91{word-spacing:3.733333pt;}
.wsc8{word-spacing:3.786667pt;}
.wsd3{word-spacing:3.808000pt;}
.wsd2{word-spacing:3.840000pt;}
.ws84{word-spacing:3.893333pt;}
.ws59{word-spacing:3.946667pt;}
.ws51{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.053333pt;}
.wsc5{word-spacing:4.106667pt;}
.ws5d{word-spacing:4.160000pt;}
.ws4d{word-spacing:4.213333pt;}
.wse8{word-spacing:4.261333pt;}
.ws8d{word-spacing:4.266667pt;}
.ws81{word-spacing:4.320000pt;}
.ws89{word-spacing:4.373333pt;}
.ws70{word-spacing:4.480000pt;}
.wsc9{word-spacing:4.533333pt;}
.ws119{word-spacing:4.669333pt;}
.wsa9{word-spacing:4.693333pt;}
.wse9{word-spacing:4.760000pt;}
.wsc4{word-spacing:4.853333pt;}
.wsaa{word-spacing:5.013333pt;}
.ws6f{word-spacing:5.066667pt;}
.wse6{word-spacing:5.168000pt;}
.ws78{word-spacing:5.546667pt;}
.wsc7{word-spacing:5.600000pt;}
.ws27{word-spacing:5.866667pt;}
.ws4f{word-spacing:6.026667pt;}
.ws2e{word-spacing:6.133333pt;}
.ws90{word-spacing:6.240000pt;}
.wsa1{word-spacing:6.720000pt;}
.wscb{word-spacing:6.933333pt;}
.ws107{word-spacing:6.936000pt;}
.ws106{word-spacing:7.434667pt;}
.wsac{word-spacing:7.626667pt;}
.wsaf{word-spacing:7.840000pt;}
.ws93{word-spacing:9.103181pt;}
.ws10e{word-spacing:12.013333pt;}
.ws10f{word-spacing:15.640000pt;}
.ws34{word-spacing:64.237333pt;}
._f{margin-left:-2630.557387pt;}
._b{margin-left:-64.600000pt;}
._8{margin-left:-14.733333pt;}
._10{margin-left:-9.656000pt;}
._d{margin-left:-6.301333pt;}
._2{margin-left:-4.501333pt;}
._1{margin-left:-2.986667pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.402667pt;}
._5{width:2.640000pt;}
._e{width:4.293333pt;}
._7{width:5.642667pt;}
._6{width:7.178667pt;}
._12{width:10.506667pt;}
._15{width:12.186667pt;}
._11{width:13.872000pt;}
._16{width:14.952000pt;}
._9{width:16.320000pt;}
._3{width:36.314097pt;}
._13{width:40.373333pt;}
._a{width:48.552000pt;}
._14{width:49.866667pt;}
._c{width:2346.271985pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:46.444799pt;}
.fsc{font-size:46.506667pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:39.715332pt;}
.y21{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y15a{bottom:89.856537pt;}
.y167{bottom:100.686269pt;}
.yaa{bottom:100.813599pt;}
.y89{bottom:100.813639pt;}
.y13f{bottom:100.928304pt;}
.y14c{bottom:101.834941pt;}
.yf8{bottom:101.986898pt;}
.y10b{bottom:101.986938pt;}
.y22a{bottom:103.657620pt;}
.y53{bottom:104.917603pt;}
.y1ac{bottom:108.700938pt;}
.y4d{bottom:116.187866pt;}
.y19e{bottom:116.696289pt;}
.y229{bottom:116.985620pt;}
.y265{bottom:117.132955pt;}
.ya9{bottom:117.480265pt;}
.y88{bottom:117.480306pt;}
.y13e{bottom:117.594971pt;}
.y14b{bottom:118.501607pt;}
.yf7{bottom:118.653564pt;}
.y10a{bottom:118.653605pt;}
.y1ab{bottom:122.028938pt;}
.y20{bottom:123.790666pt;}
.y52{bottom:124.959605pt;}
.y1e8{bottom:126.401569pt;}
.y228{bottom:130.313620pt;}
.y264{bottom:130.460955pt;}
.y4c{bottom:132.854533pt;}
.y19d{bottom:133.362956pt;}
.ya8{bottom:134.146932pt;}
.y87{bottom:134.146973pt;}
.y13d{bottom:134.261637pt;}
.y14a{bottom:135.168274pt;}
.yf6{bottom:135.320231pt;}
.y109{bottom:135.320272pt;}
.y1aa{bottom:135.356938pt;}
.y1e7{bottom:139.729569pt;}
.y51{bottom:140.473595pt;}
.y227{bottom:143.641620pt;}
.y263{bottom:143.788955pt;}
.y1a9{bottom:148.684938pt;}
.y4b{bottom:149.521200pt;}
.y19c{bottom:150.029622pt;}
.ya7{bottom:150.813599pt;}
.y86{bottom:150.813639pt;}
.y13c{bottom:150.928304pt;}
.y149{bottom:151.834941pt;}
.yf5{bottom:151.986898pt;}
.y108{bottom:151.986938pt;}
.y1e6{bottom:153.057569pt;}
.y226{bottom:156.969620pt;}
.y262{bottom:157.116955pt;}
.y50{bottom:158.334930pt;}
.y1a8{bottom:162.012938pt;}
.y4a{bottom:166.187866pt;}
.y1e5{bottom:166.385569pt;}
.y19b{bottom:166.696289pt;}
.ya6{bottom:167.480265pt;}
.y85{bottom:167.480306pt;}
.y13b{bottom:167.594971pt;}
.y148{bottom:168.501607pt;}
.yf4{bottom:168.653564pt;}
.y107{bottom:168.653605pt;}
.y225{bottom:170.297620pt;}
.y261{bottom:170.444955pt;}
.y17{bottom:175.052000pt;}
.y1a7{bottom:175.340938pt;}
.y1e4{bottom:179.713569pt;}
.y4f{bottom:180.557600pt;}
.y49{bottom:182.854533pt;}
.y19a{bottom:183.362956pt;}
.y224{bottom:183.625620pt;}
.y260{bottom:183.772955pt;}
.ya5{bottom:184.146932pt;}
.y84{bottom:184.146973pt;}
.y13a{bottom:184.261637pt;}
.y147{bottom:185.168274pt;}
.yf3{bottom:185.320231pt;}
.y106{bottom:185.320272pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1a6{bottom:188.668938pt;}
.y1e3{bottom:193.041569pt;}
.y4e{bottom:193.885600pt;}
.y223{bottom:196.953620pt;}
.y25f{bottom:197.100955pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y48{bottom:199.521200pt;}
.y199{bottom:200.029622pt;}
.ya4{bottom:200.813599pt;}
.y83{bottom:200.813639pt;}
.y139{bottom:200.928304pt;}
.y146{bottom:201.834941pt;}
.yf2{bottom:201.986898pt;}
.y105{bottom:201.986938pt;}
.y1a5{bottom:201.996938pt;}
.y1e2{bottom:206.369569pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y222{bottom:210.281620pt;}
.y25e{bottom:210.428955pt;}
.y1a4{bottom:215.324938pt;}
.y47{bottom:216.187866pt;}
.y198{bottom:216.696289pt;}
.ya3{bottom:217.480265pt;}
.y82{bottom:217.480306pt;}
.y138{bottom:217.594971pt;}
.y145{bottom:218.501607pt;}
.yf1{bottom:218.653564pt;}
.y104{bottom:218.653605pt;}
.y1e1{bottom:219.697569pt;}
.y221{bottom:223.609620pt;}
.y25d{bottom:223.756955pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y45{bottom:232.854533pt;}
.y1e0{bottom:233.025569pt;}
.y197{bottom:233.362956pt;}
.ya2{bottom:234.146932pt;}
.y81{bottom:234.146973pt;}
.y137{bottom:234.261637pt;}
.y144{bottom:235.168274pt;}
.yf0{bottom:235.320231pt;}
.y103{bottom:235.320272pt;}
.y220{bottom:236.937620pt;}
.y25c{bottom:237.084955pt;}
.y1a3{bottom:241.992272pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1df{bottom:246.353569pt;}
.y44{bottom:249.521200pt;}
.y196{bottom:250.029622pt;}
.y21f{bottom:250.265620pt;}
.y25b{bottom:250.412955pt;}
.ya1{bottom:250.813599pt;}
.y80{bottom:250.813639pt;}
.y136{bottom:250.928304pt;}
.y143{bottom:251.834941pt;}
.yef{bottom:251.986898pt;}
.y102{bottom:251.986938pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y1a2{bottom:255.320272pt;}
.y1de{bottom:259.681569pt;}
.y21e{bottom:263.593620pt;}
.y43{bottom:266.187866pt;}
.y195{bottom:266.696289pt;}
.ya0{bottom:267.480265pt;}
.y7f{bottom:267.480306pt;}
.y135{bottom:267.594971pt;}
.y142{bottom:268.501607pt;}
.yee{bottom:268.653564pt;}
.y101{bottom:268.653605pt;}
.y1dd{bottom:273.009569pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y21d{bottom:276.921620pt;}
.y25a{bottom:277.080288pt;}
.y1a1{bottom:281.986938pt;}
.y42{bottom:282.854533pt;}
.y194{bottom:283.362956pt;}
.y9f{bottom:284.146932pt;}
.y7e{bottom:284.146973pt;}
.y134{bottom:284.261637pt;}
.y141{bottom:285.168274pt;}
.yed{bottom:285.320231pt;}
.y100{bottom:285.320272pt;}
.y1dc{bottom:286.337569pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y21c{bottom:290.249620pt;}
.y259{bottom:290.408288pt;}
.y41{bottom:299.521200pt;}
.y1db{bottom:299.665569pt;}
.y193{bottom:300.029622pt;}
.y9e{bottom:300.813599pt;}
.y7d{bottom:300.813639pt;}
.y133{bottom:300.928304pt;}
.y140{bottom:301.834941pt;}
.yec{bottom:301.986898pt;}
.yff{bottom:301.986938pt;}
.y21b{bottom:303.577620pt;}
.y258{bottom:303.736288pt;}
.ye{bottom:309.452000pt;}
.y1a0{bottom:311.992272pt;}
.y1da{bottom:312.993569pt;}
.y40{bottom:316.187866pt;}
.y192{bottom:316.696289pt;}
.y21a{bottom:316.905620pt;}
.y257{bottom:317.064288pt;}
.y9d{bottom:317.480265pt;}
.y7c{bottom:317.480306pt;}
.y132{bottom:317.594971pt;}
.yeb{bottom:318.653564pt;}
.yfe{bottom:318.653605pt;}
.y19f{bottom:325.320272pt;}
.y1d9{bottom:326.321569pt;}
.y219{bottom:330.233620pt;}
.y256{bottom:330.392288pt;}
.y3f{bottom:332.854533pt;}
.y191{bottom:333.362956pt;}
.y9c{bottom:334.146932pt;}
.y7b{bottom:334.146973pt;}
.y131{bottom:334.261637pt;}
.yea{bottom:335.320231pt;}
.yfd{bottom:335.320272pt;}
.y1d8{bottom:339.649569pt;}
.y218{bottom:343.561620pt;}
.y255{bottom:343.720288pt;}
.yd{bottom:343.809333pt;}
.y3e{bottom:349.521200pt;}
.y190{bottom:350.029622pt;}
.y9b{bottom:350.813599pt;}
.y7a{bottom:350.813639pt;}
.y130{bottom:350.928304pt;}
.ye9{bottom:351.986898pt;}
.yfc{bottom:351.986938pt;}
.y1d7{bottom:352.977569pt;}
.y158{bottom:353.260417pt;}
.y217{bottom:356.889620pt;}
.y254{bottom:357.048288pt;}
.yc{bottom:362.706666pt;}
.y3d{bottom:366.187866pt;}
.y1d6{bottom:366.305569pt;}
.y18f{bottom:366.696289pt;}
.y9a{bottom:367.480265pt;}
.y79{bottom:367.480306pt;}
.y12f{bottom:367.594971pt;}
.ye8{bottom:368.653564pt;}
.yfb{bottom:368.653605pt;}
.y216{bottom:370.217620pt;}
.y253{bottom:370.376288pt;}
.y1d5{bottom:379.633569pt;}
.y3c{bottom:382.854533pt;}
.y18e{bottom:383.362956pt;}
.y215{bottom:383.545620pt;}
.y252{bottom:383.704288pt;}
.y99{bottom:384.146932pt;}
.y78{bottom:384.146973pt;}
.y12e{bottom:384.261637pt;}
.ye7{bottom:385.320231pt;}
.y16b{bottom:385.320272pt;}
.y1d4{bottom:392.961569pt;}
.y214{bottom:396.873620pt;}
.y251{bottom:397.032288pt;}
.y3b{bottom:399.521200pt;}
.y18d{bottom:400.029622pt;}
.y98{bottom:400.813599pt;}
.y77{bottom:400.813639pt;}
.y12d{bottom:400.928304pt;}
.ye6{bottom:401.986898pt;}
.yfa{bottom:401.986938pt;}
.y1d3{bottom:406.289569pt;}
.y213{bottom:410.201620pt;}
.y250{bottom:410.360288pt;}
.y3a{bottom:416.187866pt;}
.y18c{bottom:416.696289pt;}
.y97{bottom:417.480265pt;}
.y76{bottom:417.480306pt;}
.y12c{bottom:417.594971pt;}
.ye5{bottom:418.653564pt;}
.y16a{bottom:418.653605pt;}
.y1d2{bottom:419.617569pt;}
.y212{bottom:423.529620pt;}
.y24f{bottom:423.688288pt;}
.y46{bottom:432.854533pt;}
.y1d1{bottom:432.945569pt;}
.y18b{bottom:433.362956pt;}
.y96{bottom:434.146932pt;}
.y75{bottom:434.146973pt;}
.y12b{bottom:434.261637pt;}
.ye4{bottom:435.320231pt;}
.yf9{bottom:435.320272pt;}
.y211{bottom:436.857620pt;}
.y24e{bottom:437.016288pt;}
.y1d0{bottom:446.273569pt;}
.yb{bottom:446.990669pt;}
.y39{bottom:449.521200pt;}
.y18a{bottom:450.029622pt;}
.y210{bottom:450.185620pt;}
.y24d{bottom:450.344288pt;}
.y95{bottom:450.813599pt;}
.y74{bottom:450.813639pt;}
.y12a{bottom:450.928304pt;}
.ye3{bottom:451.986898pt;}
.y169{bottom:451.986938pt;}
.y1cf{bottom:459.601569pt;}
.ya{bottom:462.990669pt;}
.y20f{bottom:463.513620pt;}
.y24c{bottom:463.672288pt;}
.y189{bottom:466.696289pt;}
.y94{bottom:467.480265pt;}
.y73{bottom:467.480306pt;}
.y129{bottom:467.594971pt;}
.ye2{bottom:468.653564pt;}
.y166{bottom:468.653605pt;}
.y1ce{bottom:472.929569pt;}
.y20e{bottom:476.841620pt;}
.y24b{bottom:477.000288pt;}
.y9{bottom:478.990666pt;}
.y188{bottom:483.362956pt;}
.y93{bottom:484.146932pt;}
.y72{bottom:484.146973pt;}
.y128{bottom:484.261637pt;}
.ye1{bottom:485.320231pt;}
.y165{bottom:485.320272pt;}
.y1cd{bottom:486.257569pt;}
.y20d{bottom:490.169620pt;}
.y8{bottom:494.990666pt;}
.y38{bottom:499.521240pt;}
.y1cc{bottom:499.585569pt;}
.y187{bottom:500.029622pt;}
.y92{bottom:500.813599pt;}
.y71{bottom:500.813639pt;}
.y127{bottom:500.928304pt;}
.ye0{bottom:501.986898pt;}
.y164{bottom:501.986938pt;}
.y20c{bottom:503.497620pt;}
.y1cb{bottom:512.913569pt;}
.y37{bottom:516.187907pt;}
.y186{bottom:516.696289pt;}
.y20b{bottom:516.825620pt;}
.y91{bottom:517.480265pt;}
.y70{bottom:517.480306pt;}
.y126{bottom:517.594971pt;}
.ydf{bottom:518.653564pt;}
.y163{bottom:518.653605pt;}
.y1ca{bottom:526.241569pt;}
.y20a{bottom:530.153620pt;}
.y185{bottom:533.362956pt;}
.y90{bottom:534.146932pt;}
.y6f{bottom:534.146973pt;}
.y125{bottom:534.261637pt;}
.yde{bottom:535.320231pt;}
.y162{bottom:535.320272pt;}
.yda{bottom:539.493086pt;}
.y1c9{bottom:539.569569pt;}
.y209{bottom:543.481620pt;}
.y24a{bottom:543.742288pt;}
.y36{bottom:549.521240pt;}
.y184{bottom:550.029622pt;}
.y8f{bottom:550.813599pt;}
.y6e{bottom:550.813639pt;}
.y124{bottom:550.928304pt;}
.ydd{bottom:551.986898pt;}
.y161{bottom:551.986938pt;}
.yd9{bottom:552.821086pt;}
.y1c8{bottom:552.897569pt;}
.y208{bottom:556.809620pt;}
.y249{bottom:557.070288pt;}
.y35{bottom:566.187907pt;}
.y1c7{bottom:566.225569pt;}
.y183{bottom:566.696289pt;}
.y8e{bottom:567.480265pt;}
.y6d{bottom:567.480306pt;}
.y123{bottom:567.594971pt;}
.ydc{bottom:568.653564pt;}
.y160{bottom:568.653605pt;}
.y207{bottom:570.137620pt;}
.y7{bottom:573.786667pt;}
.y1c6{bottom:579.553569pt;}
.y34{bottom:582.854574pt;}
.y182{bottom:583.362956pt;}
.y206{bottom:583.465620pt;}
.y248{bottom:583.816954pt;}
.y8d{bottom:584.146932pt;}
.y6c{bottom:584.146973pt;}
.y122{bottom:584.261637pt;}
.ydb{bottom:585.320231pt;}
.y15f{bottom:585.320272pt;}
.y6{bottom:592.685334pt;}
.y1c5{bottom:592.881569pt;}
.y205{bottom:596.793620pt;}
.y247{bottom:597.144954pt;}
.y33{bottom:599.521240pt;}
.y181{bottom:600.029622pt;}
.y8c{bottom:600.813599pt;}
.y6b{bottom:600.813639pt;}
.yd8{bottom:600.928141pt;}
.y121{bottom:600.928304pt;}
.yc2{bottom:601.986898pt;}
.y15e{bottom:601.986938pt;}
.y1c4{bottom:606.209569pt;}
.y204{bottom:610.121620pt;}
.y246{bottom:610.472954pt;}
.y32{bottom:616.187907pt;}
.y180{bottom:616.696289pt;}
.y8b{bottom:617.480265pt;}
.y6a{bottom:617.480306pt;}
.yd7{bottom:617.594808pt;}
.y120{bottom:617.594971pt;}
.yc1{bottom:618.653564pt;}
.y15d{bottom:618.653605pt;}
.y1c3{bottom:619.537569pt;}
.y203{bottom:623.449620pt;}
.y245{bottom:623.800954pt;}
.y31{bottom:632.854574pt;}
.y1c2{bottom:632.865569pt;}
.y17f{bottom:633.362956pt;}
.y69{bottom:634.146973pt;}
.yd6{bottom:634.261475pt;}
.y11f{bottom:634.261637pt;}
.yc0{bottom:635.320231pt;}
.y15c{bottom:635.320272pt;}
.y202{bottom:636.777620pt;}
.y244{bottom:637.128954pt;}
.y5{bottom:645.598667pt;}
.y1c1{bottom:646.193569pt;}
.y30{bottom:649.521240pt;}
.y17e{bottom:650.029622pt;}
.y201{bottom:650.105620pt;}
.y243{bottom:650.456954pt;}
.y8a{bottom:650.813599pt;}
.y68{bottom:650.813639pt;}
.yd5{bottom:650.928141pt;}
.y11e{bottom:650.928304pt;}
.ybf{bottom:651.986898pt;}
.y15b{bottom:651.986938pt;}
.y1c0{bottom:659.521569pt;}
.y200{bottom:663.433620pt;}
.y242{bottom:663.784954pt;}
.y2f{bottom:666.187907pt;}
.y17d{bottom:666.696289pt;}
.y67{bottom:667.480306pt;}
.yd4{bottom:667.594808pt;}
.y11d{bottom:667.594971pt;}
.ybe{bottom:668.653564pt;}
.y168{bottom:668.653605pt;}
.y3{bottom:668.977329pt;}
.y1bf{bottom:672.849569pt;}
.y1ff{bottom:676.761620pt;}
.y241{bottom:677.112954pt;}
.y159{bottom:680.382933pt;}
.y2e{bottom:682.854574pt;}
.y17c{bottom:683.362956pt;}
.y66{bottom:684.146973pt;}
.yd3{bottom:684.261475pt;}
.y11c{bottom:684.261637pt;}
.ybd{bottom:685.320231pt;}
.y1be{bottom:686.177569pt;}
.y1fe{bottom:690.089620pt;}
.y240{bottom:690.440954pt;}
.y1bd{bottom:699.505569pt;}
.y2d{bottom:699.521240pt;}
.y17b{bottom:700.029622pt;}
.y65{bottom:700.813639pt;}
.yd2{bottom:700.928141pt;}
.y11b{bottom:700.928304pt;}
.ybc{bottom:701.986898pt;}
.y1fd{bottom:703.417620pt;}
.y23f{bottom:703.768954pt;}
.y1bc{bottom:712.833569pt;}
.y155{bottom:715.347982pt;}
.y2c{bottom:716.187907pt;}
.y17a{bottom:716.696289pt;}
.y1fc{bottom:716.745620pt;}
.y23e{bottom:717.096954pt;}
.y64{bottom:717.480306pt;}
.yd1{bottom:717.594808pt;}
.y11a{bottom:717.594971pt;}
.ybb{bottom:718.653564pt;}
.y1bb{bottom:726.161569pt;}
.y1fb{bottom:730.073620pt;}
.y23d{bottom:730.424954pt;}
.y2b{bottom:732.854574pt;}
.y179{bottom:733.362956pt;}
.y63{bottom:734.146973pt;}
.yd0{bottom:734.261475pt;}
.y119{bottom:734.261637pt;}
.yba{bottom:735.320231pt;}
.y152{bottom:735.609012pt;}
.y1ba{bottom:739.489569pt;}
.y1fa{bottom:743.401620pt;}
.y23c{bottom:743.752954pt;}
.y2a{bottom:749.521240pt;}
.y178{bottom:750.029622pt;}
.y62{bottom:750.813639pt;}
.ycf{bottom:750.928141pt;}
.y118{bottom:750.928304pt;}
.yb9{bottom:751.986898pt;}
.y1b9{bottom:752.817569pt;}
.y154{bottom:755.063314pt;}
.y1f9{bottom:756.729620pt;}
.y23b{bottom:757.080954pt;}
.y1b8{bottom:766.145569pt;}
.y29{bottom:766.187907pt;}
.y177{bottom:766.696289pt;}
.y61{bottom:767.480306pt;}
.yce{bottom:767.594808pt;}
.y117{bottom:767.594971pt;}
.yb8{bottom:768.653564pt;}
.y1f8{bottom:770.057620pt;}
.y23a{bottom:770.408954pt;}
.y1b7{bottom:779.473569pt;}
.y2{bottom:781.661334pt;}
.y176{bottom:783.362956pt;}
.y1f7{bottom:783.385620pt;}
.y239{bottom:783.736954pt;}
.y60{bottom:784.146973pt;}
.ycd{bottom:784.261475pt;}
.y116{bottom:784.261637pt;}
.yb7{bottom:785.320231pt;}
.y1b6{bottom:792.801569pt;}
.y1f6{bottom:796.713620pt;}
.y238{bottom:797.064954pt;}
.y175{bottom:800.029622pt;}
.y5f{bottom:800.813639pt;}
.ycc{bottom:800.928141pt;}
.y115{bottom:800.928304pt;}
.yb6{bottom:801.986898pt;}
.y28{bottom:805.461469pt;}
.y1b5{bottom:806.129569pt;}
.y1f5{bottom:810.041620pt;}
.y237{bottom:810.392954pt;}
.y174{bottom:816.696289pt;}
.y5e{bottom:817.480306pt;}
.ycb{bottom:817.594808pt;}
.y114{bottom:817.594971pt;}
.yb5{bottom:818.653564pt;}
.y27{bottom:818.789469pt;}
.y1b4{bottom:819.457569pt;}
.y271{bottom:823.233634pt;}
.y1f4{bottom:823.369620pt;}
.y27d{bottom:823.426301pt;}
.y236{bottom:823.720954pt;}
.y1b3{bottom:832.785569pt;}
.y173{bottom:833.362956pt;}
.y5d{bottom:834.146973pt;}
.yca{bottom:834.261475pt;}
.y113{bottom:834.261637pt;}
.yb4{bottom:835.320231pt;}
.y270{bottom:836.561634pt;}
.y1f3{bottom:836.697620pt;}
.y27c{bottom:836.754301pt;}
.y235{bottom:837.048954pt;}
.y1b2{bottom:846.113569pt;}
.y151{bottom:847.030081pt;}
.y153{bottom:847.494529pt;}
.y26f{bottom:849.889634pt;}
.y1f2{bottom:850.025620pt;}
.y172{bottom:850.029622pt;}
.y27b{bottom:850.082301pt;}
.y234{bottom:850.376954pt;}
.y5c{bottom:850.813639pt;}
.yc9{bottom:850.928141pt;}
.y112{bottom:850.928304pt;}
.yb3{bottom:851.986898pt;}
.y26{bottom:856.656169pt;}
.y1{bottom:859.312000pt;}
.y1b1{bottom:859.441569pt;}
.y26e{bottom:863.217634pt;}
.y1f1{bottom:863.353620pt;}
.y27a{bottom:863.410301pt;}
.y233{bottom:863.704954pt;}
.y171{bottom:866.696289pt;}
.y5b{bottom:867.480306pt;}
.yc8{bottom:867.594808pt;}
.y111{bottom:867.594971pt;}
.yb2{bottom:868.653564pt;}
.y26d{bottom:876.545634pt;}
.y1f0{bottom:876.681620pt;}
.y279{bottom:876.738301pt;}
.y232{bottom:877.032954pt;}
.y170{bottom:883.362956pt;}
.y5a{bottom:884.146973pt;}
.yc7{bottom:884.261475pt;}
.y110{bottom:884.261637pt;}
.yb1{bottom:885.320231pt;}
.y1b0{bottom:889.441569pt;}
.y26c{bottom:889.873634pt;}
.y1ef{bottom:890.009620pt;}
.y278{bottom:890.066301pt;}
.y231{bottom:890.360954pt;}
.y25{bottom:896.377441pt;}
.y16f{bottom:900.029622pt;}
.y59{bottom:900.813639pt;}
.yc6{bottom:900.928141pt;}
.y10f{bottom:900.928304pt;}
.yb0{bottom:901.986898pt;}
.y26b{bottom:903.201634pt;}
.y1ee{bottom:903.337620pt;}
.y277{bottom:903.394301pt;}
.y230{bottom:903.688954pt;}
.y26a{bottom:916.529634pt;}
.y1ed{bottom:916.665620pt;}
.y16e{bottom:916.696289pt;}
.y276{bottom:916.722301pt;}
.y22f{bottom:917.016954pt;}
.y58{bottom:917.480306pt;}
.yc5{bottom:917.594808pt;}
.y10e{bottom:917.594971pt;}
.yaf{bottom:918.653564pt;}
.y269{bottom:929.857634pt;}
.y1ec{bottom:929.993620pt;}
.y275{bottom:930.050301pt;}
.y22e{bottom:930.344954pt;}
.y16d{bottom:933.362956pt;}
.y57{bottom:934.146973pt;}
.yc4{bottom:934.261475pt;}
.y10d{bottom:934.261637pt;}
.yae{bottom:935.320231pt;}
.y157{bottom:939.761882pt;}
.y14f{bottom:942.324306pt;}
.y268{bottom:943.185634pt;}
.y1eb{bottom:943.321620pt;}
.y1af{bottom:943.366938pt;}
.y274{bottom:943.378301pt;}
.y22d{bottom:943.672954pt;}
.y56{bottom:950.813639pt;}
.yad{bottom:951.986898pt;}
.y14e{bottom:955.652306pt;}
.y267{bottom:956.513634pt;}
.y24{bottom:956.561849pt;}
.y1ea{bottom:956.649620pt;}
.y1ae{bottom:956.694938pt;}
.y273{bottom:956.706301pt;}
.y22c{bottom:957.000954pt;}
.y150{bottom:960.320557pt;}
.y16c{bottom:966.696289pt;}
.y55{bottom:967.480306pt;}
.yc3{bottom:967.594808pt;}
.y10c{bottom:967.594971pt;}
.yac{bottom:968.653564pt;}
.y14d{bottom:968.980306pt;}
.y266{bottom:969.841634pt;}
.y1e9{bottom:969.977620pt;}
.y1ad{bottom:970.022938pt;}
.y272{bottom:970.034301pt;}
.y22b{bottom:970.328954pt;}
.y23{bottom:986.299161pt;}
.y22{bottom:1001.406494pt;}
.y54{bottom:1002.206543pt;}
.yab{bottom:1002.206706pt;}
.h7{height:28.560000pt;}
.h14{height:29.448532pt;}
.ha{height:30.080000pt;}
.h17{height:31.768242pt;}
.h18{height:31.810560pt;}
.hb{height:39.712000pt;}
.h6{height:40.800000pt;}
.h13{height:42.069333pt;}
.h3{height:42.840000pt;}
.h16{height:46.376000pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h11{height:49.493333pt;}
.h15{height:52.448000pt;}
.hf{height:52.746667pt;}
.h10{height:54.560000pt;}
.he{height:57.658667pt;}
.h12{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h19{height:262.133341pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:480.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.x8{left:83.151469pt;}
.xb{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x11{left:245.669332pt;}
.xe{left:304.099362pt;}
.x12{left:387.001322pt;}
.x14{left:391.941182pt;}
.x16{left:397.985331pt;}
.x17{left:402.170553pt;}
.x3{left:404.408000pt;}
.x19{left:405.806661pt;}
.x9{left:408.191457pt;}
.x1b{left:411.770650pt;}
.xd{left:417.202515pt;}
.x1d{left:420.823873pt;}
.xa{left:423.311451pt;}
.x1f{left:426.471985pt;}
.x2f{left:430.866924pt;}
.x21{left:432.750549pt;}
.x23{left:435.922546pt;}
.x25{left:441.665222pt;}
.x27{left:447.303894pt;}
.x29{left:453.264018pt;}
.x2b{left:459.145365pt;}
.x2c{left:464.561218pt;}
.x2e{left:469.361186pt;}
.xf{left:552.522356pt;}
.x10{left:632.670654pt;}
.x13{left:637.610514pt;}
.x15{left:643.654663pt;}
.x5{left:647.307210pt;}
.x18{left:651.475993pt;}
.x1a{left:657.439982pt;}
.x1c{left:666.493205pt;}
.x1e{left:672.141317pt;}
.x20{left:678.419881pt;}
.x22{left:681.591878pt;}
.x24{left:687.334554pt;}
.x26{left:692.973226pt;}
.x28{left:698.933350pt;}
.x2a{left:704.814697pt;}
.xc{left:709.519613pt;}
.x2d{left:715.030518pt;}
}




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