
    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_ec9e2241e63d7a5c225cdb01.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113000;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_1c61eadcf9201ba16c247b25.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_f7f90f3e863f9ee9f1014a36.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.177000;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_8bcec330f176fbc2a374f99e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.160000;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_5301ffbc2321aa8f17668bc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_f3f6e3af06e3228c7cc14833.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196000;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_48095756f29932a75aed30ec.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c9fd497f0ed35a53714955b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.778000;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_c84712cdc70b509f0d44d758.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.117000;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_109e3a1d9f0b599f28ad544d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.979400px;}
.v4{vertical-align:-15.000000px;}
.v7{vertical-align:-13.900800px;}
.vc{vertical-align:-12.747000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:12.750000px;}
.v8{vertical-align:13.950000px;}
.v6{vertical-align:15.000000px;}
.v9{vertical-align:18.606000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:31.920000px;}
.va{vertical-align:32.977800px;}
.v5{vertical-align:34.980000px;}
.vb{vertical-align:51.582000px;}
.ls5b{letter-spacing:-5.245200px;}
.ls37{letter-spacing:-5.100000px;}
.ls57{letter-spacing:-4.500000px;}
.ls72{letter-spacing:-4.296600px;}
.ls30{letter-spacing:-4.266000px;}
.ls7d{letter-spacing:-4.185000px;}
.ls46{letter-spacing:-4.080000px;}
.ls4c{letter-spacing:-3.124800px;}
.ls68{letter-spacing:-2.973300px;}
.ls7c{letter-spacing:-2.901600px;}
.ls5e{letter-spacing:-2.754000px;}
.ls54{letter-spacing:-2.592000px;}
.ls70{letter-spacing:-2.538000px;}
.ls56{letter-spacing:-2.460000px;}
.ls45{letter-spacing:-2.448000px;}
.ls49{letter-spacing:-2.376000px;}
.ls33{letter-spacing:-2.268000px;}
.ls36{letter-spacing:-2.214000px;}
.ls28{letter-spacing:-2.106000px;}
.ls55{letter-spacing:-2.100000px;}
.ls3f{letter-spacing:-2.052000px;}
.ls71{letter-spacing:-1.953000px;}
.ls67{letter-spacing:-1.783980px;}
.ls2d{letter-spacing:-1.728000px;}
.ls44{letter-spacing:-1.691633px;}
.ls47{letter-spacing:-1.680000px;}
.ls81{letter-spacing:-1.620000px;}
.ls43{letter-spacing:-1.506600px;}
.ls48{letter-spacing:-1.440000px;}
.ls59{letter-spacing:-0.781200px;}
.ls5a{letter-spacing:-0.725400px;}
.ls7b{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.558000px;}
.ls7e{letter-spacing:-0.510000px;}
.ls4d{letter-spacing:-0.414000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls4b{letter-spacing:-0.349800px;}
.ls2a{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.279000px;}
.ls9{letter-spacing:-0.255000px;}
.lsd{letter-spacing:-0.240000px;}
.ls41{letter-spacing:-0.223200px;}
.ls8c{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.167400px;}
.ls1d{letter-spacing:-0.120000px;}
.ls39{letter-spacing:-0.111600px;}
.ls8{letter-spacing:-0.102000px;}
.lsc{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.055800px;}
.ls8d{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000360px;}
.ls74{letter-spacing:0.024382px;}
.ls3b{letter-spacing:0.030000px;}
.ls87{letter-spacing:0.032531px;}
.ls16{letter-spacing:0.044400px;}
.ls3d{letter-spacing:0.048797px;}
.ls19{letter-spacing:0.055800px;}
.lsf{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.061380px;}
.ls42{letter-spacing:0.065063px;}
.ls58{letter-spacing:0.069960px;}
.ls3c{letter-spacing:0.083700px;}
.ls73{letter-spacing:0.098460px;}
.ls1{letter-spacing:0.102000px;}
.ls7a{letter-spacing:0.104940px;}
.ls26{letter-spacing:0.111600px;}
.ls3{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.135060px;}
.ls6a{letter-spacing:0.135660px;}
.ls86{letter-spacing:0.139500px;}
.ls60{letter-spacing:0.139920px;}
.ls24{letter-spacing:0.144960px;}
.ls34{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.167400px;}
.ls66{letter-spacing:0.174900px;}
.ls80{letter-spacing:0.178500px;}
.ls5{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.186660px;}
.ls63{letter-spacing:0.186900px;}
.ls25{letter-spacing:0.188880px;}
.ls5c{letter-spacing:0.195188px;}
.ls40{letter-spacing:0.209880px;}
.ls13{letter-spacing:0.210000px;}
.ls18{letter-spacing:0.223200px;}
.ls23{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.279000px;}
.ls15{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.306000px;}
.ls53{letter-spacing:0.306900px;}
.ls4f{letter-spacing:0.318660px;}
.ls61{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.330000px;}
.ls27{letter-spacing:0.334800px;}
.ls12{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.362460px;}
.ls50{letter-spacing:0.363060px;}
.ls52{letter-spacing:0.363300px;}
.ls8a{letter-spacing:0.378000px;}
.ls22{letter-spacing:0.390000px;}
.ls1a{letter-spacing:0.390600px;}
.ls1e{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.450000px;}
.ls82{letter-spacing:0.452306px;}
.ls10{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.690000px;}
.ls3a{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.810000px;}
.ls4a{letter-spacing:0.840000px;}
.ls83{letter-spacing:0.900000px;}
.ls79{letter-spacing:0.918000px;}
.ls5f{letter-spacing:0.960000px;}
.lsa{letter-spacing:0.969000px;}
.ls1c{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.200000px;}
.ls2f{letter-spacing:1.260000px;}
.ls6{letter-spacing:1.339200px;}
.ls85{letter-spacing:1.350000px;}
.ls88{letter-spacing:1.841400px;}
.ls3e{letter-spacing:1.897200px;}
.ls89{letter-spacing:2.340000px;}
.ls8b{letter-spacing:2.754000px;}
.ls4e{letter-spacing:3.120000px;}
.ls6f{letter-spacing:39.838828px;}
.ls6c{letter-spacing:43.301475px;}
.ls6d{letter-spacing:45.058828px;}
.ls6b{letter-spacing:49.623675px;}
.ls6e{letter-spacing:55.033228px;}
.ls64{letter-spacing:62.040000px;}
.ls65{letter-spacing:83.820000px;}
.ls7f{letter-spacing:107.760000px;}
.ls84{letter-spacing:111.704280px;}
.ls75{letter-spacing:359.168341px;}
.ls77{letter-spacing:381.710941px;}
.ls76{letter-spacing:383.607541px;}
.ls78{letter-spacing:391.531141px;}
.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;}
}
.ws12a{word-spacing:-14.148000px;}
.ws13e{word-spacing:-14.025000px;}
.ws10c{word-spacing:-13.716000px;}
.ws12b{word-spacing:-13.380000px;}
.wsbd{word-spacing:-13.200000px;}
.ws13d{word-spacing:-13.176000px;}
.wsba{word-spacing:-13.140000px;}
.wsed{word-spacing:-12.900000px;}
.ws103{word-spacing:-12.840000px;}
.ws10d{word-spacing:-12.780000px;}
.ws22{word-spacing:-12.660000px;}
.ws56{word-spacing:-12.600000px;}
.ws143{word-spacing:-12.582000px;}
.wsd7{word-spacing:-12.540000px;}
.ws10e{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.240000px;}
.ws77{word-spacing:-11.997000px;}
.ws75{word-spacing:-11.940000px;}
.ws57{word-spacing:-11.640000px;}
.wsea{word-spacing:-11.604000px;}
.ws8b{word-spacing:-11.580000px;}
.ws0{word-spacing:-11.577000px;}
.wsda{word-spacing:-11.550600px;}
.wsbf{word-spacing:-11.466900px;}
.ws20{word-spacing:-11.400000px;}
.ws106{word-spacing:-11.327400px;}
.ws134{word-spacing:-11.299500px;}
.ws21{word-spacing:-11.280000px;}
.ws9a{word-spacing:-11.243700px;}
.ws76{word-spacing:-11.220000px;}
.ws23{word-spacing:-11.215800px;}
.wsd8{word-spacing:-11.160000px;}
.ws55{word-spacing:-11.070000px;}
.wsae{word-spacing:-10.992600px;}
.ws13f{word-spacing:-10.965000px;}
.ws98{word-spacing:-10.746000px;}
.ws146{word-spacing:-10.710000px;}
.wse8{word-spacing:-10.584000px;}
.ws74{word-spacing:-10.530000px;}
.ws114{word-spacing:-10.455000px;}
.wsb9{word-spacing:-10.206000px;}
.ws144{word-spacing:-10.200000px;}
.wsbc{word-spacing:-10.140000px;}
.ws9e{word-spacing:-10.080000px;}
.ws104{word-spacing:-9.597600px;}
.ws110{word-spacing:-9.095400px;}
.ws2{word-spacing:-8.901000px;}
.wsa2{word-spacing:-8.640000px;}
.wsaf{word-spacing:-8.487000px;}
.ws111{word-spacing:-7.812000px;}
.ws9f{word-spacing:-7.632000px;}
.ws99{word-spacing:-7.555680px;}
.wsbb{word-spacing:-7.500000px;}
.wsbe{word-spacing:-7.415760px;}
.ws1f{word-spacing:-7.345800px;}
.ws105{word-spacing:-7.254000px;}
.ws9c{word-spacing:-7.059314px;}
.ws135{word-spacing:-7.026782px;}
.wsad{word-spacing:-6.996000px;}
.ws10f{word-spacing:-6.994251px;}
.wse9{word-spacing:-6.786120px;}
.wsc0{word-spacing:-6.701468px;}
.wsec{word-spacing:-6.646200px;}
.wseb{word-spacing:-6.576240px;}
.ws9b{word-spacing:-6.555077px;}
.wsd9{word-spacing:-6.506280px;}
.ws113{word-spacing:-6.392595px;}
.wsdc{word-spacing:-6.115903px;}
.wsa0{word-spacing:-6.000000px;}
.wsee{word-spacing:-5.561820px;}
.ws9d{word-spacing:-5.302618px;}
.wsef{word-spacing:-4.372500px;}
.wsc2{word-spacing:-3.120000px;}
.ws138{word-spacing:-2.580000px;}
.ws131{word-spacing:-2.520000px;}
.ws34{word-spacing:-2.460000px;}
.ws13a{word-spacing:-2.340000px;}
.wsf3{word-spacing:-2.100000px;}
.ws19{word-spacing:-2.040000px;}
.ws6b{word-spacing:-1.980000px;}
.ws15{word-spacing:-1.920000px;}
.ws96{word-spacing:-1.897200px;}
.ws16{word-spacing:-1.860000px;}
.ws51{word-spacing:-1.841400px;}
.wse2{word-spacing:-1.800000px;}
.ws3f{word-spacing:-1.785600px;}
.wsac{word-spacing:-1.785000px;}
.ws94{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.734000px;}
.ws1c{word-spacing:-1.729800px;}
.ws84{word-spacing:-1.680000px;}
.ws3e{word-spacing:-1.674000px;}
.ws9{word-spacing:-1.632000px;}
.ws8{word-spacing:-1.581000px;}
.ws81{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.530000px;}
.ws11f{word-spacing:-1.506600px;}
.ws121{word-spacing:-1.479000px;}
.ws37{word-spacing:-1.440000px;}
.ws120{word-spacing:-1.428000px;}
.wsb8{word-spacing:-1.395000px;}
.ws117{word-spacing:-1.380000px;}
.ws2e{word-spacing:-1.320000px;}
.ws11b{word-spacing:-1.283400px;}
.ws65{word-spacing:-1.260000px;}
.ws11c{word-spacing:-1.227600px;}
.ws12{word-spacing:-1.200000px;}
.wsab{word-spacing:-1.173000px;}
.ws69{word-spacing:-1.140000px;}
.ws39{word-spacing:-1.116000px;}
.wscd{word-spacing:-1.080000px;}
.ws129{word-spacing:-1.071000px;}
.ws13c{word-spacing:-1.060200px;}
.ws86{word-spacing:-1.020000px;}
.ws119{word-spacing:-1.004400px;}
.ws11a{word-spacing:-0.948600px;}
.ws59{word-spacing:-0.900000px;}
.ws8e{word-spacing:-0.840000px;}
.wse7{word-spacing:-0.781200px;}
.ws38{word-spacing:-0.780000px;}
.wsa9{word-spacing:-0.765000px;}
.ws5c{word-spacing:-0.720000px;}
.wsa8{word-spacing:-0.714000px;}
.ws61{word-spacing:-0.660000px;}
.ws85{word-spacing:-0.600000px;}
.ws90{word-spacing:-0.540000px;}
.ws123{word-spacing:-0.480000px;}
.ws2b{word-spacing:-0.420000px;}
.ws141{word-spacing:-0.408000px;}
.wsce{word-spacing:-0.360000px;}
.ws142{word-spacing:-0.357000px;}
.ws14{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.223200px;}
.ws11{word-spacing:-0.204000px;}
.ws26{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.174900px;}
.ws66{word-spacing:-0.167400px;}
.wsa{word-spacing:-0.153000px;}
.wse3{word-spacing:-0.139920px;}
.ws2f{word-spacing:-0.120000px;}
.ws116{word-spacing:-0.104940px;}
.ws83{word-spacing:-0.060000px;}
.ws40{word-spacing:-0.055800px;}
.wsc{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws89{word-spacing:0.060000px;}
.ws41{word-spacing:0.111600px;}
.wsb6{word-spacing:0.167400px;}
.ws4e{word-spacing:0.180000px;}
.ws53{word-spacing:0.223200px;}
.ws4d{word-spacing:0.240000px;}
.wsb{word-spacing:0.255000px;}
.ws95{word-spacing:0.279000px;}
.wse6{word-spacing:0.300000px;}
.ws43{word-spacing:0.334800px;}
.ws7a{word-spacing:0.360000px;}
.ws42{word-spacing:0.390600px;}
.ws4c{word-spacing:0.420000px;}
.ws50{word-spacing:0.540000px;}
.ws3a{word-spacing:0.558000px;}
.ws7{word-spacing:0.561000px;}
.wsb1{word-spacing:0.660000px;}
.wse{word-spacing:0.714000px;}
.ws88{word-spacing:0.720000px;}
.ws97{word-spacing:0.725400px;}
.ws133{word-spacing:0.780000px;}
.ws128{word-spacing:0.837000px;}
.ws5f{word-spacing:0.840000px;}
.ws11d{word-spacing:0.892800px;}
.ws32{word-spacing:0.900000px;}
.ws11e{word-spacing:0.948600px;}
.ws6c{word-spacing:0.960000px;}
.wsa7{word-spacing:1.004400px;}
.ws80{word-spacing:1.020000px;}
.ws52{word-spacing:1.060200px;}
.ws2a{word-spacing:1.080000px;}
.wsaa{word-spacing:1.122000px;}
.ws8a{word-spacing:1.140000px;}
.wsb7{word-spacing:1.171800px;}
.wsca{word-spacing:1.200000px;}
.ws73{word-spacing:1.227600px;}
.ws36{word-spacing:1.260000px;}
.ws93{word-spacing:1.320000px;}
.ws72{word-spacing:1.339200px;}
.ws35{word-spacing:1.380000px;}
.ws30{word-spacing:1.440000px;}
.wsa5{word-spacing:1.450800px;}
.ws6{word-spacing:1.479000px;}
.ws12d{word-spacing:1.500000px;}
.ws118{word-spacing:1.560000px;}
.ws71{word-spacing:1.618200px;}
.wse0{word-spacing:1.620000px;}
.wsd{word-spacing:1.632000px;}
.ws3d{word-spacing:1.674000px;}
.ws5d{word-spacing:1.680000px;}
.ws29{word-spacing:1.740000px;}
.ws3c{word-spacing:1.785600px;}
.ws82{word-spacing:1.800000px;}
.ws3b{word-spacing:1.841400px;}
.ws1a{word-spacing:1.860000px;}
.ws17{word-spacing:1.920000px;}
.ws49{word-spacing:1.980000px;}
.ws45{word-spacing:2.008800px;}
.ws5a{word-spacing:2.040000px;}
.ws63{word-spacing:2.100000px;}
.ws46{word-spacing:2.106000px;}
.ws7e{word-spacing:2.160000px;}
.wsb4{word-spacing:2.220000px;}
.ws102{word-spacing:2.280000px;}
.ws33{word-spacing:2.340000px;}
.wsd5{word-spacing:2.343600px;}
.ws4{word-spacing:2.397000px;}
.ws64{word-spacing:2.400000px;}
.ws5{word-spacing:2.448000px;}
.ws6f{word-spacing:2.460000px;}
.ws54{word-spacing:2.511000px;}
.ws2c{word-spacing:2.520000px;}
.wsd6{word-spacing:2.566800px;}
.ws91{word-spacing:2.580000px;}
.ws4f{word-spacing:2.640000px;}
.ws70{word-spacing:2.700000px;}
.wsb2{word-spacing:2.760000px;}
.ws7c{word-spacing:2.880000px;}
.ws27{word-spacing:2.940000px;}
.ws44{word-spacing:2.957400px;}
.ws4a{word-spacing:3.000000px;}
.ws68{word-spacing:3.060000px;}
.ws92{word-spacing:3.120000px;}
.ws60{word-spacing:3.180000px;}
.wscc{word-spacing:3.240000px;}
.ws62{word-spacing:3.300000px;}
.wsf1{word-spacing:3.360000px;}
.wsa6{word-spacing:3.403800px;}
.ws7b{word-spacing:3.420000px;}
.ws4b{word-spacing:3.480000px;}
.ws48{word-spacing:3.540000px;}
.ws13{word-spacing:3.600000px;}
.ws28{word-spacing:3.660000px;}
.wsd0{word-spacing:3.720000px;}
.ws5e{word-spacing:3.780000px;}
.ws31{word-spacing:3.840000px;}
.wsb5{word-spacing:3.900000px;}
.ws2d{word-spacing:4.020000px;}
.ws7f{word-spacing:4.080000px;}
.ws25{word-spacing:4.140000px;}
.wse5{word-spacing:4.260000px;}
.ws130{word-spacing:4.320000px;}
.ws13b{word-spacing:4.380000px;}
.wscf{word-spacing:4.440000px;}
.wsd1{word-spacing:4.500000px;}
.ws5b{word-spacing:4.740000px;}
.ws8d{word-spacing:4.860000px;}
.wsd3{word-spacing:5.100000px;}
.wsd4{word-spacing:5.245200px;}
.ws1b{word-spacing:5.460000px;}
.ws79{word-spacing:5.580000px;}
.wsa4{word-spacing:5.820000px;}
.wse4{word-spacing:5.940000px;}
.ws7d{word-spacing:6.180000px;}
.ws87{word-spacing:6.240000px;}
.wscb{word-spacing:6.480000px;}
.wsb3{word-spacing:6.600000px;}
.wse1{word-spacing:7.680000px;}
.ws139{word-spacing:8.580000px;}
.wsd2{word-spacing:10.200000px;}
.ws6a{word-spacing:10.320000px;}
.ws1d{word-spacing:11.327400px;}
.ws126{word-spacing:11.520000px;}
.wsfe{word-spacing:12.060000px;}
.ws137{word-spacing:13.800000px;}
.ws124{word-spacing:14.280000px;}
.wsf8{word-spacing:19.800000px;}
.ws127{word-spacing:20.580000px;}
.ws6e{word-spacing:25.560000px;}
.ws107{word-spacing:27.844200px;}
.wsf4{word-spacing:30.960000px;}
.wsc9{word-spacing:33.300000px;}
.wsc4{word-spacing:39.660000px;}
.ws6d{word-spacing:43.860000px;}
.wsc8{word-spacing:51.660000px;}
.wsc7{word-spacing:51.720000px;}
.wsc3{word-spacing:55.320000px;}
.ws12f{word-spacing:59.280000px;}
.wsf5{word-spacing:66.180000px;}
.wsfd{word-spacing:68.700000px;}
.wsfb{word-spacing:71.280000px;}
.ws8f{word-spacing:72.420000px;}
.wsc5{word-spacing:74.520000px;}
.ws10a{word-spacing:76.669200px;}
.wsc6{word-spacing:77.580000px;}
.wsfc{word-spacing:78.720000px;}
.wsff{word-spacing:80.220000px;}
.wsf9{word-spacing:80.520000px;}
.wsa1{word-spacing:81.312000px;}
.ws108{word-spacing:103.676400px;}
.ws109{word-spacing:104.011200px;}
.ws12e{word-spacing:106.440000px;}
.ws125{word-spacing:107.760000px;}
.wsf6{word-spacing:108.540000px;}
.ws132{word-spacing:111.726120px;}
.wsf7{word-spacing:112.440000px;}
.wsfa{word-spacing:114.420000px;}
.wsde{word-spacing:138.439800px;}
.wsdd{word-spacing:150.102000px;}
.wsdb{word-spacing:168.795000px;}
.ws100{word-spacing:187.560000px;}
.ws101{word-spacing:194.580000px;}
.ws112{word-spacing:499.186800px;}
.ws12c{word-spacing:1262.412000px;}
.ws115{word-spacing:1262.844000px;}
.ws140{word-spacing:1263.384000px;}
.ws145{word-spacing:1263.924000px;}
.ws58{word-spacing:1265.436000px;}
.wsa3{word-spacing:1265.814000px;}
.wsf0{word-spacing:1265.922000px;}
.ws78{word-spacing:1265.976000px;}
.wsc1{word-spacing:1266.300000px;}
.ws24{word-spacing:1295.028000px;}
.ws136{word-spacing:1494.990000px;}
.ws147{word-spacing:1496.232000px;}
.ws122{word-spacing:1499.310000px;}
.ws8c{word-spacing:1500.498000px;}
.wsb0{word-spacing:1500.822000px;}
.ws10b{word-spacing:1501.146000px;}
.wsdf{word-spacing:1501.578000px;}
.ws67{word-spacing:1504.656000px;}
.ws47{word-spacing:1527.390000px;}
._9{margin-left:-1294.726800px;}
._2f{margin-left:-1266.519300px;}
._12{margin-left:-1265.453400px;}
._87{margin-left:-1263.442200px;}
._75{margin-left:-1262.386200px;}
._55{margin-left:-114.341580px;}
._83{margin-left:-99.930600px;}
._81{margin-left:-93.930600px;}
._49{margin-left:-87.930600px;}
._56{margin-left:-81.930600px;}
._39{margin-left:-61.890600px;}
._84{margin-left:-53.100000px;}
._7f{margin-left:-47.100000px;}
._14{margin-left:-41.580000px;}
._15{margin-left:-21.780000px;}
._7e{margin-left:-15.397331px;}
._3f{margin-left:-12.960000px;}
._13{margin-left:-11.940000px;}
._1e{margin-left:-10.680000px;}
._88{margin-left:-8.587800px;}
._54{margin-left:-7.500000px;}
._2{margin-left:-6.480000px;}
._6{margin-left:-5.319600px;}
._a{margin-left:-4.102800px;}
._1{margin-left:-2.889600px;}
._0{margin-left:-1.440000px;}
._7{width:1.061400px;}
._3{width:2.070600px;}
._4{width:3.136500px;}
._5{width:4.243200px;}
._29{width:5.334000px;}
._1a{width:7.260000px;}
._57{width:8.596800px;}
._f{width:10.380000px;}
._2b{width:13.980000px;}
._32{width:15.060000px;}
._1d{width:16.080000px;}
._2a{width:17.160000px;}
._35{width:18.438000px;}
._27{width:19.440000px;}
._3b{width:20.718000px;}
._7c{width:21.840000px;}
._2c{width:23.550000px;}
._25{width:27.180000px;}
._e{width:28.380000px;}
._86{width:29.572800px;}
._16{width:30.689400px;}
._30{width:32.302800px;}
._1b{width:34.204200px;}
._28{width:36.840000px;}
._2d{width:37.887600px;}
._3e{width:39.138000px;}
._17{width:41.737800px;}
._d{width:44.100000px;}
._80{width:47.172000px;}
._11{width:48.546000px;}
._c{width:50.108400px;}
._10{width:51.391800px;}
._b{width:52.897800px;}
._82{width:54.162000px;}
._1c{width:55.359600px;}
._24{width:57.941400px;}
._8{width:59.705400px;}
._4e{width:61.560000px;}
._59{width:63.957600px;}
._47{width:66.162000px;}
._58{width:67.740000px;}
._19{width:70.962000px;}
._23{width:72.660000px;}
._26{width:75.180000px;}
._38{width:76.796400px;}
._4d{width:80.160000px;}
._7d{width:87.960000px;}
._33{width:90.558000px;}
._2e{width:95.548800px;}
._37{width:97.980000px;}
._85{width:99.960000px;}
._34{width:101.178600px;}
._18{width:106.098000px;}
._74{width:108.698400px;}
._3d{width:109.980000px;}
._51{width:114.120000px;}
._50{width:115.800000px;}
._21{width:117.480000px;}
._5d{width:119.635200px;}
._5c{width:122.257800px;}
._5a{width:123.952440px;}
._5e{width:125.103600px;}
._65{width:126.610200px;}
._6b{width:128.451600px;}
._66{width:131.018400px;}
._46{width:139.928100px;}
._4f{width:142.734240px;}
._62{width:152.947800px;}
._63{width:155.793600px;}
._45{width:181.412400px;}
._41{width:184.642200px;}
._4b{width:191.520000px;}
._48{width:211.003500px;}
._43{width:215.332200px;}
._3a{width:225.429600px;}
._22{width:241.800000px;}
._40{width:245.129400px;}
._4a{width:248.640000px;}
._44{width:251.323200px;}
._53{width:252.789600px;}
._42{width:270.016200px;}
._3c{width:279.265500px;}
._20{width:309.060000px;}
._6e{width:315.146400px;}
._36{width:352.715100px;}
._52{width:367.560000px;}
._7b{width:383.280218px;}
._79{width:384.629400px;}
._6d{width:401.983200px;}
._78{width:412.638982px;}
._7a{width:413.965582px;}
._76{width:428.697982px;}
._77{width:430.664400px;}
._4c{width:457.440000px;}
._6a{width:486.631800px;}
._61{width:502.062000px;}
._64{width:513.348000px;}
._72{width:516.514200px;}
._71{width:543.882600px;}
._5b{width:570.305400px;}
._6f{width:584.158200px;}
._69{width:598.510800px;}
._68{width:612.907200px;}
._67{width:624.178800px;}
._5f{width:631.321200px;}
._6c{width:637.682400px;}
._70{width:651.905400px;}
._60{width:695.914800px;}
._1f{width:782.940000px;}
._73{width:840.391800px;}
._31{width:968.940000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:29.733000px;}
.fs9{font-size:32.531400px;}
.fs8{font-size:34.980000px;}
.fs5{font-size:41.400000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs1{font-size:55.968000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.yaa{bottom:-425.253150px;}
.yab{bottom:-408.261150px;}
.yac{bottom:-385.737150px;}
.yb0{bottom:-357.978300px;}
.yad{bottom:-342.609150px;}
.yae{bottom:-299.481150px;}
.ya9{bottom:-288.825150px;}
.ya8{bottom:-270.453150px;}
.yaf{bottom:-256.353150px;}
.y0{bottom:0.000000px;}
.yb8{bottom:1.897800px;}
.y118{bottom:4.217700px;}
.y11e{bottom:71.492550px;}
.y8b{bottom:90.548700px;}
.ybe{bottom:90.554700px;}
.y25{bottom:90.554850px;}
.y75{bottom:90.560850px;}
.y69{bottom:90.561000px;}
.y91{bottom:90.567000px;}
.y52{bottom:90.567150px;}
.yd3{bottom:91.318050px;}
.y1c8{bottom:94.637550px;}
.y198{bottom:94.675800px;}
.y168{bottom:95.169450px;}
.y14a{bottom:95.194950px;}
.y8a{bottom:107.804850px;}
.y90{bottom:107.810850px;}
.y24{bottom:107.811000px;}
.y74{bottom:107.817000px;}
.y51{bottom:107.817150px;}
.yd2{bottom:109.768050px;}
.y1c7{bottom:111.888300px;}
.y197{bottom:111.926550px;}
.y167{bottom:112.420200px;}
.y149{bottom:112.445700px;}
.y8f{bottom:125.054700px;}
.ybb{bottom:125.055000px;}
.y89{bottom:125.061000px;}
.ybd{bottom:125.067000px;}
.y23{bottom:125.067150px;}
.y61{bottom:125.067300px;}
.yd1{bottom:128.218050px;}
.y1c6{bottom:129.139050px;}
.y196{bottom:129.177300px;}
.y166{bottom:129.670950px;}
.y148{bottom:129.696450px;}
.y50{bottom:142.274250px;}
.yf9{bottom:142.304850px;}
.y8e{bottom:142.310850px;}
.y73{bottom:142.311000px;}
.y60{bottom:142.311150px;}
.ybc{bottom:142.317000px;}
.y88{bottom:142.317150px;}
.yba{bottom:142.317300px;}
.y1c5{bottom:146.389800px;}
.y195{bottom:146.428050px;}
.yd0{bottom:146.668050px;}
.y165{bottom:146.921700px;}
.y147{bottom:146.947200px;}
.y4f{bottom:159.530400px;}
.y87{bottom:159.555000px;}
.yf8{bottom:159.561000px;}
.yb9{bottom:159.561150px;}
.y8d{bottom:159.567000px;}
.y72{bottom:159.567150px;}
.y5f{bottom:159.567300px;}
.y1c4{bottom:163.640550px;}
.y194{bottom:163.678800px;}
.y164{bottom:164.172450px;}
.y146{bottom:164.197950px;}
.ycf{bottom:165.118050px;}
.y22{bottom:165.118200px;}
.y4e{bottom:176.786550px;}
.yf7{bottom:176.811000px;}
.y86{bottom:176.811150px;}
.y8c{bottom:176.817000px;}
.y71{bottom:176.817150px;}
.y5e{bottom:176.817300px;}
.y1c3{bottom:180.891300px;}
.y193{bottom:180.929550px;}
.y163{bottom:181.423200px;}
.y145{bottom:181.448700px;}
.y77{bottom:183.568050px;}
.y21{bottom:183.568200px;}
.y4d{bottom:194.042700px;}
.y70{bottom:194.061000px;}
.y5d{bottom:194.061150px;}
.y12b{bottom:194.067150px;}
.y85{bottom:194.067300px;}
.y1c2{bottom:198.142050px;}
.y192{bottom:198.180300px;}
.y12a{bottom:198.268050px;}
.y162{bottom:198.673950px;}
.y144{bottom:198.699450px;}
.y76{bottom:202.018050px;}
.y20{bottom:202.018200px;}
.y4c{bottom:211.298850px;}
.yf6{bottom:211.311000px;}
.y6f{bottom:211.317150px;}
.y5c{bottom:211.317300px;}
.y1c1{bottom:215.392800px;}
.y191{bottom:215.431050px;}
.y161{bottom:215.924700px;}
.y143{bottom:215.950200px;}
.y68{bottom:220.468050px;}
.y1f{bottom:220.468200px;}
.y4b{bottom:228.555000px;}
.y6e{bottom:228.567150px;}
.y5b{bottom:228.567450px;}
.y1c0{bottom:232.643550px;}
.y190{bottom:232.681800px;}
.y160{bottom:233.175450px;}
.y142{bottom:233.200950px;}
.y129{bottom:235.168050px;}
.y67{bottom:238.918050px;}
.y1e{bottom:238.918200px;}
.y4a{bottom:245.811150px;}
.y6d{bottom:245.811300px;}
.y5a{bottom:245.817600px;}
.y1bf{bottom:249.894300px;}
.y18f{bottom:249.932550px;}
.y15f{bottom:250.426200px;}
.y141{bottom:250.451700px;}
.y66{bottom:257.368050px;}
.y1d{bottom:257.368200px;}
.y59{bottom:263.061450px;}
.y49{bottom:263.067300px;}
.y6c{bottom:263.067450px;}
.y1be{bottom:267.145050px;}
.y18e{bottom:267.183300px;}
.y15e{bottom:267.676950px;}
.y140{bottom:267.702450px;}
.y65{bottom:275.818050px;}
.y1c{bottom:275.818200px;}
.y48{bottom:280.305000px;}
.y58{bottom:280.317600px;}
.y1bd{bottom:284.395800px;}
.y18d{bottom:284.434050px;}
.y15d{bottom:284.927700px;}
.y13f{bottom:284.953200px;}
.yf5{bottom:288.226200px;}
.y64{bottom:294.268050px;}
.y1b{bottom:294.268200px;}
.y47{bottom:297.561150px;}
.y1bc{bottom:301.646550px;}
.y18c{bottom:301.684800px;}
.y15c{bottom:302.178450px;}
.y13e{bottom:302.203950px;}
.y63{bottom:312.718050px;}
.y1a{bottom:312.718200px;}
.yf4{bottom:313.496250px;}
.y46{bottom:314.817300px;}
.y98{bottom:315.314550px;}
.yb1{bottom:315.481500px;}
.y1bb{bottom:318.897300px;}
.y18b{bottom:318.935550px;}
.y15b{bottom:319.429200px;}
.y13d{bottom:319.454700px;}
.y62{bottom:331.168050px;}
.y19{bottom:331.168200px;}
.yf3{bottom:332.468250px;}
.y1ba{bottom:336.148050px;}
.y18a{bottom:336.186300px;}
.y15a{bottom:336.679950px;}
.y13c{bottom:336.705450px;}
.yf2{bottom:348.962700px;}
.y45{bottom:349.618050px;}
.y57{bottom:349.618200px;}
.y1b9{bottom:353.398800px;}
.y189{bottom:353.437050px;}
.y159{bottom:353.930700px;}
.y13b{bottom:353.956200px;}
.yf1{bottom:367.934700px;}
.y44{bottom:368.068050px;}
.y18{bottom:368.068200px;}
.y1b8{bottom:370.649550px;}
.y188{bottom:370.687800px;}
.y158{bottom:371.181450px;}
.y13a{bottom:371.206950px;}
.yf0{bottom:384.429150px;}
.y43{bottom:386.518050px;}
.y56{bottom:386.518200px;}
.y1b7{bottom:387.900300px;}
.y187{bottom:387.938550px;}
.y157{bottom:388.432200px;}
.y139{bottom:388.457700px;}
.yef{bottom:403.401150px;}
.y42{bottom:404.968050px;}
.y55{bottom:404.968200px;}
.y1b6{bottom:405.151050px;}
.y186{bottom:405.189300px;}
.y156{bottom:405.682950px;}
.y138{bottom:405.708450px;}
.yee{bottom:419.895600px;}
.y1b5{bottom:422.401800px;}
.y185{bottom:422.440050px;}
.y155{bottom:422.933700px;}
.y137{bottom:422.959200px;}
.y17{bottom:423.037950px;}
.y41{bottom:423.418050px;}
.y54{bottom:423.418200px;}
.y126{bottom:431.368350px;}
.yed{bottom:438.867600px;}
.y1b4{bottom:439.652550px;}
.y184{bottom:439.690800px;}
.y154{bottom:440.184450px;}
.y136{bottom:440.209950px;}
.y16{bottom:440.288700px;}
.y40{bottom:441.868050px;}
.y53{bottom:441.868200px;}
.y125{bottom:445.768350px;}
.yec{bottom:455.362050px;}
.y1b3{bottom:456.903300px;}
.y183{bottom:456.941550px;}
.y153{bottom:457.435200px;}
.y135{bottom:457.460700px;}
.y3f{bottom:460.318050px;}
.y1b2{bottom:474.154050px;}
.y182{bottom:474.192300px;}
.yeb{bottom:474.334050px;}
.y114{bottom:474.533400px;}
.y152{bottom:474.685950px;}
.y134{bottom:474.711450px;}
.y15{bottom:474.790200px;}
.y128{bottom:475.016100px;}
.y3e{bottom:478.768050px;}
.y113{bottom:488.933400px;}
.yea{bottom:490.828500px;}
.y1b1{bottom:491.404800px;}
.y181{bottom:491.443050px;}
.y151{bottom:491.936700px;}
.y133{bottom:491.962200px;}
.y14{bottom:492.040950px;}
.y124{bottom:492.124350px;}
.y111{bottom:492.797400px;}
.y3d{bottom:497.218050px;}
.y96{bottom:497.246700px;}
.y112{bottom:503.333400px;}
.y123{bottom:506.524350px;}
.y110{bottom:507.197400px;}
.y1b0{bottom:508.655550px;}
.y180{bottom:508.693800px;}
.y150{bottom:509.187450px;}
.y132{bottom:509.212950px;}
.ye9{bottom:509.800500px;}
.y95{bottom:514.497450px;}
.y3c{bottom:515.668050px;}
.y1af{bottom:525.906300px;}
.y17f{bottom:525.944550px;}
.ye8{bottom:526.294950px;}
.y14f{bottom:526.438200px;}
.y131{bottom:526.463700px;}
.y13{bottom:526.542450px;}
.y94{bottom:531.748200px;}
.y3b{bottom:534.118050px;}
.y1ae{bottom:543.157050px;}
.y17e{bottom:543.195300px;}
.y14e{bottom:543.688950px;}
.y130{bottom:543.714450px;}
.y12{bottom:543.793200px;}
.ye7{bottom:545.266950px;}
.y122{bottom:548.764350px;}
.y93{bottom:548.998950px;}
.y3a{bottom:552.568050px;}
.y84{bottom:552.568200px;}
.y1ad{bottom:560.407800px;}
.y17d{bottom:560.446050px;}
.y14d{bottom:560.939700px;}
.y12f{bottom:560.965200px;}
.y11{bottom:561.043950px;}
.ye6{bottom:561.761400px;}
.y121{bottom:563.164350px;}
.y92{bottom:566.249700px;}
.y39{bottom:571.018050px;}
.y83{bottom:571.018200px;}
.y115{bottom:571.757400px;}
.y120{bottom:577.564350px;}
.y1ac{bottom:577.658550px;}
.y17c{bottom:577.696800px;}
.y14c{bottom:578.190450px;}
.y12e{bottom:578.215950px;}
.y10{bottom:578.294700px;}
.ye5{bottom:580.733400px;}
.y97{bottom:588.471000px;}
.y38{bottom:589.468050px;}
.y82{bottom:589.468200px;}
.y1ab{bottom:594.909300px;}
.y17b{bottom:594.947550px;}
.y14b{bottom:595.441200px;}
.y12d{bottom:595.466700px;}
.yf{bottom:595.545450px;}
.ye4{bottom:597.227850px;}
.yb7{bottom:604.768500px;}
.y37{bottom:607.918050px;}
.y81{bottom:607.918200px;}
.y1aa{bottom:612.160050px;}
.y17a{bottom:612.198300px;}
.ye{bottom:612.796200px;}
.y10b{bottom:614.189400px;}
.ye3{bottom:616.199850px;}
.y10f{bottom:621.953400px;}
.y36{bottom:626.368050px;}
.y80{bottom:626.368200px;}
.y10a{bottom:628.589400px;}
.y1a9{bottom:629.410800px;}
.y179{bottom:629.449050px;}
.y12c{bottom:629.968200px;}
.yd{bottom:630.046950px;}
.ye2{bottom:632.694300px;}
.ya6{bottom:633.533700px;}
.y10e{bottom:636.353400px;}
.y35{bottom:644.818050px;}
.y7f{bottom:644.818200px;}
.y1a8{bottom:646.661550px;}
.y178{bottom:646.699800px;}
.yc{bottom:647.297700px;}
.ya5{bottom:647.933700px;}
.yb6{bottom:651.124500px;}
.ye1{bottom:651.666300px;}
.ya3{bottom:651.797700px;}
.y104{bottom:658.026750px;}
.ya4{bottom:662.333700px;}
.y34{bottom:663.268050px;}
.y7e{bottom:663.268200px;}
.y1a7{bottom:663.912300px;}
.y177{bottom:663.950550px;}
.yb{bottom:664.548450px;}
.yb5{bottom:665.524500px;}
.ya2{bottom:666.197700px;}
.ye0{bottom:668.160750px;}
.y103{bottom:675.277500px;}
.y109{bottom:678.593400px;}
.y1a6{bottom:681.163050px;}
.y176{bottom:681.201300px;}
.y33{bottom:681.718050px;}
.y7d{bottom:681.718200px;}
.ya{bottom:681.799200px;}
.ydf{bottom:687.132750px;}
.y10d{bottom:688.013400px;}
.y102{bottom:692.528250px;}
.y108{bottom:692.993400px;}
.y1a5{bottom:698.413800px;}
.y175{bottom:698.452050px;}
.y9{bottom:699.049950px;}
.ycd{bottom:699.789900px;}
.y32{bottom:700.168050px;}
.y7c{bottom:700.168200px;}
.y10c{bottom:702.413400px;}
.yde{bottom:703.627050px;}
.yb4{bottom:707.764500px;}
.y101{bottom:709.779000px;}
.y1a4{bottom:715.664550px;}
.y174{bottom:715.702800px;}
.y8{bottom:716.300700px;}
.y31{bottom:718.618050px;}
.y127{bottom:718.618200px;}
.yb3{bottom:722.164500px;}
.ydd{bottom:722.599050px;}
.ycc{bottom:725.065500px;}
.y100{bottom:729.572700px;}
.y105{bottom:730.140000px;}
.y107{bottom:730.385400px;}
.ya7{bottom:730.757700px;}
.y1a3{bottom:732.915300px;}
.y173{bottom:732.953550px;}
.ycb{bottom:733.315650px;}
.y7{bottom:733.551450px;}
.yb2{bottom:736.564500px;}
.y30{bottom:737.068050px;}
.y7b{bottom:737.068200px;}
.ydc{bottom:739.093650px;}
.y106{bottom:744.785400px;}
.y11f{bottom:744.952350px;}
.yff{bottom:746.823450px;}
.y1a2{bottom:750.166050px;}
.y172{bottom:750.204300px;}
.y6{bottom:750.802200px;}
.y119{bottom:751.349700px;}
.y2f{bottom:755.518050px;}
.y7a{bottom:755.518200px;}
.ydb{bottom:758.065650px;}
.yca{bottom:760.532100px;}
.y1a1{bottom:767.416800px;}
.y171{bottom:767.455050px;}
.y5{bottom:768.052950px;}
.yc9{bottom:768.781950px;}
.yfe{bottom:772.096500px;}
.y9d{bottom:773.189700px;}
.y11a{bottom:773.873700px;}
.y2e{bottom:773.968050px;}
.y79{bottom:773.968200px;}
.yda{bottom:774.560100px;}
.ya1{bottom:780.953700px;}
.y1a0{bottom:784.667550px;}
.y170{bottom:784.705800px;}
.y4{bottom:785.303700px;}
.yc6{bottom:786.517950px;}
.y9c{bottom:787.589700px;}
.yfd{bottom:791.062950px;}
.y2d{bottom:792.418050px;}
.yd9{bottom:793.532100px;}
.ya0{bottom:795.353700px;}
.yc8{bottom:795.998400px;}
.y19f{bottom:801.918300px;}
.y16f{bottom:801.956550px;}
.yc7{bottom:804.248400px;}
.yd8{bottom:810.026400px;}
.yfc{bottom:810.029250px;}
.y2c{bottom:810.868050px;}
.yce{bottom:810.868200px;}
.y11b{bottom:817.001700px;}
.y19e{bottom:819.169050px;}
.y16e{bottom:819.207300px;}
.y3{bottom:819.803700px;}
.yfb{bottom:828.995700px;}
.yd7{bottom:828.998400px;}
.y2b{bottom:829.318050px;}
.y6b{bottom:829.318200px;}
.yc5{bottom:831.464850px;}
.y19d{bottom:836.419800px;}
.y16d{bottom:836.458050px;}
.y9b{bottom:837.593700px;}
.yc4{bottom:839.717700px;}
.yd6{bottom:845.492850px;}
.y9f{bottom:847.013700px;}
.y2a{bottom:847.768050px;}
.y6a{bottom:847.768200px;}
.yfa{bottom:847.970400px;}
.y9a{bottom:851.993700px;}
.y19c{bottom:853.670550px;}
.y16c{bottom:853.708800px;}
.y11c{bottom:860.129700px;}
.y9e{bottom:861.413700px;}
.yd5{bottom:864.464850px;}
.y29{bottom:866.218050px;}
.y78{bottom:866.218200px;}
.yc1{bottom:866.928450px;}
.yc2{bottom:866.934150px;}
.y117{bottom:870.785550px;}
.y2{bottom:870.815700px;}
.y19b{bottom:870.921300px;}
.y16b{bottom:870.959550px;}
.yd4{bottom:880.962150px;}
.yc0{bottom:883.431300px;}
.yc3{bottom:883.437000px;}
.y28{bottom:884.668050px;}
.y19a{bottom:888.172050px;}
.y16a{bottom:888.210300px;}
.y116{bottom:889.157550px;}
.y99{bottom:889.385700px;}
.y1{bottom:896.303700px;}
.ybf{bottom:899.934150px;}
.y27{bottom:903.118050px;}
.y11d{bottom:903.257700px;}
.y199{bottom:905.422800px;}
.y169{bottom:905.461050px;}
.y26{bottom:955.942350px;}
.h23{height:31.482000px;}
.h11{height:36.480000px;}
.h10{height:40.848000px;}
.h4{height:45.441000px;}
.h24{height:45.543000px;}
.he{height:45.696000px;}
.h20{height:45.699000px;}
.h5{height:45.900000px;}
.h25{height:46.614000px;}
.h13{height:48.880800px;}
.h14{height:48.892200px;}
.h1e{height:49.862400px;}
.h1b{height:49.863000px;}
.h1c{height:49.863600px;}
.h8{height:49.996800px;}
.h19{height:50.019000px;}
.h1f{height:50.019600px;}
.hc{height:50.021400px;}
.h1d{height:50.030400px;}
.ha{height:50.046000px;}
.h9{height:50.868000px;}
.h6{height:53.460000px;}
.h12{height:53.880000px;}
.h7{height:54.000000px;}
.hb{height:54.000600px;}
.hd{height:56.520000px;}
.h3{height:67.824000px;}
.h22{height:69.007800px;}
.h1a{height:82.974600px;}
.h15{height:82.996800px;}
.h18{height:83.007600px;}
.h16{height:83.008200px;}
.h17{height:83.008800px;}
.h2{height:85.536000px;}
.h21{height:194.457000px;}
.hf{height:325.501500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:394.399500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x18{left:10.019250px;}
.x16{left:25.160100px;}
.x15{left:26.780100px;}
.x14{left:31.340100px;}
.x13{left:37.556100px;}
.x38{left:55.951650px;}
.x31{left:63.596550px;}
.x12{left:70.004100px;}
.x3{left:72.283500px;}
.x1{left:80.787450px;}
.x39{left:85.033500px;}
.x4{left:93.538500px;}
.x2{left:102.042450px;}
.x1d{left:114.783300px;}
.x8{left:116.960100px;}
.x11{left:118.664100px;}
.x6{left:123.307050px;}
.x5{left:131.802450px;}
.x30{left:140.713500px;}
.x7{left:147.210000px;}
.x33{left:155.624550px;}
.x17{left:157.808100px;}
.x1e{left:160.806150px;}
.x37{left:165.874050px;}
.x36{left:167.494050px;}
.x1f{left:170.278200px;}
.x35{left:172.054050px;}
.x32{left:174.656550px;}
.x27{left:178.090950px;}
.x28{left:185.763750px;}
.x2b{left:192.476400px;}
.x1b{left:203.161200px;}
.xa{left:210.806100px;}
.x20{left:224.962200px;}
.x22{left:226.426950px;}
.x2a{left:232.178100px;}
.x21{left:244.282950px;}
.x34{left:259.378050px;}
.x9{left:264.170100px;}
.x1c{left:269.335200px;}
.x23{left:286.216650px;}
.x24{left:287.430300px;}
.xf{left:302.834100px;}
.x1a{left:307.141200px;}
.x29{left:315.957300px;}
.xb{left:321.866100px;}
.xc{left:349.514100px;}
.x2e{left:353.319900px;}
.x3b{left:361.899450px;}
.x2d{left:364.410150px;}
.x3a{left:366.158250px;}
.xe{left:373.562100px;}
.x19{left:375.247200px;}
.x2c{left:399.745500px;}
.x26{left:404.792400px;}
.xd{left:416.174100px;}
.x25{left:487.385550px;}
.x10{left:522.470100px;}
.x2f{left:543.388650px;}
@media print{
.v3{vertical-align:-17.759467pt;}
.v4{vertical-align:-13.333333pt;}
.v7{vertical-align:-12.356267pt;}
.vc{vertical-align:-11.330667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:11.333333pt;}
.v8{vertical-align:12.400000pt;}
.v6{vertical-align:13.333333pt;}
.v9{vertical-align:16.538667pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:28.373333pt;}
.va{vertical-align:29.313600pt;}
.v5{vertical-align:31.093333pt;}
.vb{vertical-align:45.850667pt;}
.ls5b{letter-spacing:-4.662400pt;}
.ls37{letter-spacing:-4.533333pt;}
.ls57{letter-spacing:-4.000000pt;}
.ls72{letter-spacing:-3.819200pt;}
.ls30{letter-spacing:-3.792000pt;}
.ls7d{letter-spacing:-3.720000pt;}
.ls46{letter-spacing:-3.626667pt;}
.ls4c{letter-spacing:-2.777600pt;}
.ls68{letter-spacing:-2.642933pt;}
.ls7c{letter-spacing:-2.579200pt;}
.ls5e{letter-spacing:-2.448000pt;}
.ls54{letter-spacing:-2.304000pt;}
.ls70{letter-spacing:-2.256000pt;}
.ls56{letter-spacing:-2.186667pt;}
.ls45{letter-spacing:-2.176000pt;}
.ls49{letter-spacing:-2.112000pt;}
.ls33{letter-spacing:-2.016000pt;}
.ls36{letter-spacing:-1.968000pt;}
.ls28{letter-spacing:-1.872000pt;}
.ls55{letter-spacing:-1.866667pt;}
.ls3f{letter-spacing:-1.824000pt;}
.ls71{letter-spacing:-1.736000pt;}
.ls67{letter-spacing:-1.585760pt;}
.ls2d{letter-spacing:-1.536000pt;}
.ls44{letter-spacing:-1.503674pt;}
.ls47{letter-spacing:-1.493333pt;}
.ls81{letter-spacing:-1.440000pt;}
.ls43{letter-spacing:-1.339200pt;}
.ls48{letter-spacing:-1.280000pt;}
.ls59{letter-spacing:-0.694400pt;}
.ls5a{letter-spacing:-0.644800pt;}
.ls7b{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.496000pt;}
.ls7e{letter-spacing:-0.453333pt;}
.ls4d{letter-spacing:-0.368000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls4b{letter-spacing:-0.310933pt;}
.ls2a{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.248000pt;}
.ls9{letter-spacing:-0.226667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls41{letter-spacing:-0.198400pt;}
.ls8c{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.148800pt;}
.ls1d{letter-spacing:-0.106667pt;}
.ls39{letter-spacing:-0.099200pt;}
.ls8{letter-spacing:-0.090667pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.049600pt;}
.ls8d{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000320pt;}
.ls74{letter-spacing:0.021673pt;}
.ls3b{letter-spacing:0.026667pt;}
.ls87{letter-spacing:0.028917pt;}
.ls16{letter-spacing:0.039467pt;}
.ls3d{letter-spacing:0.043375pt;}
.ls19{letter-spacing:0.049600pt;}
.lsf{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.054560pt;}
.ls42{letter-spacing:0.057834pt;}
.ls58{letter-spacing:0.062187pt;}
.ls3c{letter-spacing:0.074400pt;}
.ls73{letter-spacing:0.087520pt;}
.ls1{letter-spacing:0.090667pt;}
.ls7a{letter-spacing:0.093280pt;}
.ls26{letter-spacing:0.099200pt;}
.ls3{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.120053pt;}
.ls6a{letter-spacing:0.120587pt;}
.ls86{letter-spacing:0.124000pt;}
.ls60{letter-spacing:0.124373pt;}
.ls24{letter-spacing:0.128853pt;}
.ls34{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.148800pt;}
.ls66{letter-spacing:0.155467pt;}
.ls80{letter-spacing:0.158667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.165920pt;}
.ls63{letter-spacing:0.166133pt;}
.ls25{letter-spacing:0.167893pt;}
.ls5c{letter-spacing:0.173501pt;}
.ls40{letter-spacing:0.186560pt;}
.ls13{letter-spacing:0.186667pt;}
.ls18{letter-spacing:0.198400pt;}
.ls23{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.248000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.272000pt;}
.ls53{letter-spacing:0.272800pt;}
.ls4f{letter-spacing:0.283253pt;}
.ls61{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.293333pt;}
.ls27{letter-spacing:0.297600pt;}
.ls12{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.322187pt;}
.ls50{letter-spacing:0.322720pt;}
.ls52{letter-spacing:0.322933pt;}
.ls8a{letter-spacing:0.336000pt;}
.ls22{letter-spacing:0.346667pt;}
.ls1a{letter-spacing:0.347200pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.400000pt;}
.ls82{letter-spacing:0.402049pt;}
.ls10{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.613333pt;}
.ls3a{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.720000pt;}
.ls4a{letter-spacing:0.746667pt;}
.ls83{letter-spacing:0.800000pt;}
.ls79{letter-spacing:0.816000pt;}
.ls5f{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.861333pt;}
.ls1c{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls6{letter-spacing:1.190400pt;}
.ls85{letter-spacing:1.200000pt;}
.ls88{letter-spacing:1.636800pt;}
.ls3e{letter-spacing:1.686400pt;}
.ls89{letter-spacing:2.080000pt;}
.ls8b{letter-spacing:2.448000pt;}
.ls4e{letter-spacing:2.773333pt;}
.ls6f{letter-spacing:35.412291pt;}
.ls6c{letter-spacing:38.490200pt;}
.ls6d{letter-spacing:40.052291pt;}
.ls6b{letter-spacing:44.109933pt;}
.ls6e{letter-spacing:48.918425pt;}
.ls64{letter-spacing:55.146667pt;}
.ls65{letter-spacing:74.506667pt;}
.ls7f{letter-spacing:95.786667pt;}
.ls84{letter-spacing:99.292693pt;}
.ls75{letter-spacing:319.260747pt;}
.ls77{letter-spacing:339.298614pt;}
.ls76{letter-spacing:340.984481pt;}
.ls78{letter-spacing:348.027681pt;}
.ws12a{word-spacing:-12.576000pt;}
.ws13e{word-spacing:-12.466667pt;}
.ws10c{word-spacing:-12.192000pt;}
.ws12b{word-spacing:-11.893333pt;}
.wsbd{word-spacing:-11.733333pt;}
.ws13d{word-spacing:-11.712000pt;}
.wsba{word-spacing:-11.680000pt;}
.wsed{word-spacing:-11.466667pt;}
.ws103{word-spacing:-11.413333pt;}
.ws10d{word-spacing:-11.360000pt;}
.ws22{word-spacing:-11.253333pt;}
.ws56{word-spacing:-11.200000pt;}
.ws143{word-spacing:-11.184000pt;}
.wsd7{word-spacing:-11.146667pt;}
.ws10e{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.880000pt;}
.ws77{word-spacing:-10.664000pt;}
.ws75{word-spacing:-10.613333pt;}
.ws57{word-spacing:-10.346667pt;}
.wsea{word-spacing:-10.314667pt;}
.ws8b{word-spacing:-10.293333pt;}
.ws0{word-spacing:-10.290667pt;}
.wsda{word-spacing:-10.267200pt;}
.wsbf{word-spacing:-10.192800pt;}
.ws20{word-spacing:-10.133333pt;}
.ws106{word-spacing:-10.068800pt;}
.ws134{word-spacing:-10.044000pt;}
.ws21{word-spacing:-10.026667pt;}
.ws9a{word-spacing:-9.994400pt;}
.ws76{word-spacing:-9.973333pt;}
.ws23{word-spacing:-9.969600pt;}
.wsd8{word-spacing:-9.920000pt;}
.ws55{word-spacing:-9.840000pt;}
.wsae{word-spacing:-9.771200pt;}
.ws13f{word-spacing:-9.746667pt;}
.ws98{word-spacing:-9.552000pt;}
.ws146{word-spacing:-9.520000pt;}
.wse8{word-spacing:-9.408000pt;}
.ws74{word-spacing:-9.360000pt;}
.ws114{word-spacing:-9.293333pt;}
.wsb9{word-spacing:-9.072000pt;}
.ws144{word-spacing:-9.066667pt;}
.wsbc{word-spacing:-9.013333pt;}
.ws9e{word-spacing:-8.960000pt;}
.ws104{word-spacing:-8.531200pt;}
.ws110{word-spacing:-8.084800pt;}
.ws2{word-spacing:-7.912000pt;}
.wsa2{word-spacing:-7.680000pt;}
.wsaf{word-spacing:-7.544000pt;}
.ws111{word-spacing:-6.944000pt;}
.ws9f{word-spacing:-6.784000pt;}
.ws99{word-spacing:-6.716160pt;}
.wsbb{word-spacing:-6.666667pt;}
.wsbe{word-spacing:-6.591787pt;}
.ws1f{word-spacing:-6.529600pt;}
.ws105{word-spacing:-6.448000pt;}
.ws9c{word-spacing:-6.274946pt;}
.ws135{word-spacing:-6.246029pt;}
.wsad{word-spacing:-6.218667pt;}
.ws10f{word-spacing:-6.217112pt;}
.wse9{word-spacing:-6.032107pt;}
.wsc0{word-spacing:-5.956861pt;}
.wsec{word-spacing:-5.907733pt;}
.wseb{word-spacing:-5.845547pt;}
.ws9b{word-spacing:-5.826735pt;}
.wsd9{word-spacing:-5.783360pt;}
.ws113{word-spacing:-5.682307pt;}
.wsdc{word-spacing:-5.436358pt;}
.wsa0{word-spacing:-5.333333pt;}
.wsee{word-spacing:-4.943840pt;}
.ws9d{word-spacing:-4.713438pt;}
.wsef{word-spacing:-3.886667pt;}
.wsc2{word-spacing:-2.773333pt;}
.ws138{word-spacing:-2.293333pt;}
.ws131{word-spacing:-2.240000pt;}
.ws34{word-spacing:-2.186667pt;}
.ws13a{word-spacing:-2.080000pt;}
.wsf3{word-spacing:-1.866667pt;}
.ws19{word-spacing:-1.813333pt;}
.ws6b{word-spacing:-1.760000pt;}
.ws15{word-spacing:-1.706667pt;}
.ws96{word-spacing:-1.686400pt;}
.ws16{word-spacing:-1.653333pt;}
.ws51{word-spacing:-1.636800pt;}
.wse2{word-spacing:-1.600000pt;}
.ws3f{word-spacing:-1.587200pt;}
.wsac{word-spacing:-1.586667pt;}
.ws94{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.541333pt;}
.ws1c{word-spacing:-1.537600pt;}
.ws84{word-spacing:-1.493333pt;}
.ws3e{word-spacing:-1.488000pt;}
.ws9{word-spacing:-1.450667pt;}
.ws8{word-spacing:-1.405333pt;}
.ws81{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.360000pt;}
.ws11f{word-spacing:-1.339200pt;}
.ws121{word-spacing:-1.314667pt;}
.ws37{word-spacing:-1.280000pt;}
.ws120{word-spacing:-1.269333pt;}
.wsb8{word-spacing:-1.240000pt;}
.ws117{word-spacing:-1.226667pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws11b{word-spacing:-1.140800pt;}
.ws65{word-spacing:-1.120000pt;}
.ws11c{word-spacing:-1.091200pt;}
.ws12{word-spacing:-1.066667pt;}
.wsab{word-spacing:-1.042667pt;}
.ws69{word-spacing:-1.013333pt;}
.ws39{word-spacing:-0.992000pt;}
.wscd{word-spacing:-0.960000pt;}
.ws129{word-spacing:-0.952000pt;}
.ws13c{word-spacing:-0.942400pt;}
.ws86{word-spacing:-0.906667pt;}
.ws119{word-spacing:-0.892800pt;}
.ws11a{word-spacing:-0.843200pt;}
.ws59{word-spacing:-0.800000pt;}
.ws8e{word-spacing:-0.746667pt;}
.wse7{word-spacing:-0.694400pt;}
.ws38{word-spacing:-0.693333pt;}
.wsa9{word-spacing:-0.680000pt;}
.ws5c{word-spacing:-0.640000pt;}
.wsa8{word-spacing:-0.634667pt;}
.ws61{word-spacing:-0.586667pt;}
.ws85{word-spacing:-0.533333pt;}
.ws90{word-spacing:-0.480000pt;}
.ws123{word-spacing:-0.426667pt;}
.ws2b{word-spacing:-0.373333pt;}
.ws141{word-spacing:-0.362667pt;}
.wsce{word-spacing:-0.320000pt;}
.ws142{word-spacing:-0.317333pt;}
.ws14{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.198400pt;}
.ws11{word-spacing:-0.181333pt;}
.ws26{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.155467pt;}
.ws66{word-spacing:-0.148800pt;}
.wsa{word-spacing:-0.136000pt;}
.wse3{word-spacing:-0.124373pt;}
.ws2f{word-spacing:-0.106667pt;}
.ws116{word-spacing:-0.093280pt;}
.ws83{word-spacing:-0.053333pt;}
.ws40{word-spacing:-0.049600pt;}
.wsc{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws89{word-spacing:0.053333pt;}
.ws41{word-spacing:0.099200pt;}
.wsb6{word-spacing:0.148800pt;}
.ws4e{word-spacing:0.160000pt;}
.ws53{word-spacing:0.198400pt;}
.ws4d{word-spacing:0.213333pt;}
.wsb{word-spacing:0.226667pt;}
.ws95{word-spacing:0.248000pt;}
.wse6{word-spacing:0.266667pt;}
.ws43{word-spacing:0.297600pt;}
.ws7a{word-spacing:0.320000pt;}
.ws42{word-spacing:0.347200pt;}
.ws4c{word-spacing:0.373333pt;}
.ws50{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.496000pt;}
.ws7{word-spacing:0.498667pt;}
.wsb1{word-spacing:0.586667pt;}
.wse{word-spacing:0.634667pt;}
.ws88{word-spacing:0.640000pt;}
.ws97{word-spacing:0.644800pt;}
.ws133{word-spacing:0.693333pt;}
.ws128{word-spacing:0.744000pt;}
.ws5f{word-spacing:0.746667pt;}
.ws11d{word-spacing:0.793600pt;}
.ws32{word-spacing:0.800000pt;}
.ws11e{word-spacing:0.843200pt;}
.ws6c{word-spacing:0.853333pt;}
.wsa7{word-spacing:0.892800pt;}
.ws80{word-spacing:0.906667pt;}
.ws52{word-spacing:0.942400pt;}
.ws2a{word-spacing:0.960000pt;}
.wsaa{word-spacing:0.997333pt;}
.ws8a{word-spacing:1.013333pt;}
.wsb7{word-spacing:1.041600pt;}
.wsca{word-spacing:1.066667pt;}
.ws73{word-spacing:1.091200pt;}
.ws36{word-spacing:1.120000pt;}
.ws93{word-spacing:1.173333pt;}
.ws72{word-spacing:1.190400pt;}
.ws35{word-spacing:1.226667pt;}
.ws30{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.289600pt;}
.ws6{word-spacing:1.314667pt;}
.ws12d{word-spacing:1.333333pt;}
.ws118{word-spacing:1.386667pt;}
.ws71{word-spacing:1.438400pt;}
.wse0{word-spacing:1.440000pt;}
.wsd{word-spacing:1.450667pt;}
.ws3d{word-spacing:1.488000pt;}
.ws5d{word-spacing:1.493333pt;}
.ws29{word-spacing:1.546667pt;}
.ws3c{word-spacing:1.587200pt;}
.ws82{word-spacing:1.600000pt;}
.ws3b{word-spacing:1.636800pt;}
.ws1a{word-spacing:1.653333pt;}
.ws17{word-spacing:1.706667pt;}
.ws49{word-spacing:1.760000pt;}
.ws45{word-spacing:1.785600pt;}
.ws5a{word-spacing:1.813333pt;}
.ws63{word-spacing:1.866667pt;}
.ws46{word-spacing:1.872000pt;}
.ws7e{word-spacing:1.920000pt;}
.wsb4{word-spacing:1.973333pt;}
.ws102{word-spacing:2.026667pt;}
.ws33{word-spacing:2.080000pt;}
.wsd5{word-spacing:2.083200pt;}
.ws4{word-spacing:2.130667pt;}
.ws64{word-spacing:2.133333pt;}
.ws5{word-spacing:2.176000pt;}
.ws6f{word-spacing:2.186667pt;}
.ws54{word-spacing:2.232000pt;}
.ws2c{word-spacing:2.240000pt;}
.wsd6{word-spacing:2.281600pt;}
.ws91{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.346667pt;}
.ws70{word-spacing:2.400000pt;}
.wsb2{word-spacing:2.453333pt;}
.ws7c{word-spacing:2.560000pt;}
.ws27{word-spacing:2.613333pt;}
.ws44{word-spacing:2.628800pt;}
.ws4a{word-spacing:2.666667pt;}
.ws68{word-spacing:2.720000pt;}
.ws92{word-spacing:2.773333pt;}
.ws60{word-spacing:2.826667pt;}
.wscc{word-spacing:2.880000pt;}
.ws62{word-spacing:2.933333pt;}
.wsf1{word-spacing:2.986667pt;}
.wsa6{word-spacing:3.025600pt;}
.ws7b{word-spacing:3.040000pt;}
.ws4b{word-spacing:3.093333pt;}
.ws48{word-spacing:3.146667pt;}
.ws13{word-spacing:3.200000pt;}
.ws28{word-spacing:3.253333pt;}
.wsd0{word-spacing:3.306667pt;}
.ws5e{word-spacing:3.360000pt;}
.ws31{word-spacing:3.413333pt;}
.wsb5{word-spacing:3.466667pt;}
.ws2d{word-spacing:3.573333pt;}
.ws7f{word-spacing:3.626667pt;}
.ws25{word-spacing:3.680000pt;}
.wse5{word-spacing:3.786667pt;}
.ws130{word-spacing:3.840000pt;}
.ws13b{word-spacing:3.893333pt;}
.wscf{word-spacing:3.946667pt;}
.wsd1{word-spacing:4.000000pt;}
.ws5b{word-spacing:4.213333pt;}
.ws8d{word-spacing:4.320000pt;}
.wsd3{word-spacing:4.533333pt;}
.wsd4{word-spacing:4.662400pt;}
.ws1b{word-spacing:4.853333pt;}
.ws79{word-spacing:4.960000pt;}
.wsa4{word-spacing:5.173333pt;}
.wse4{word-spacing:5.280000pt;}
.ws7d{word-spacing:5.493333pt;}
.ws87{word-spacing:5.546667pt;}
.wscb{word-spacing:5.760000pt;}
.wsb3{word-spacing:5.866667pt;}
.wse1{word-spacing:6.826667pt;}
.ws139{word-spacing:7.626667pt;}
.wsd2{word-spacing:9.066667pt;}
.ws6a{word-spacing:9.173333pt;}
.ws1d{word-spacing:10.068800pt;}
.ws126{word-spacing:10.240000pt;}
.wsfe{word-spacing:10.720000pt;}
.ws137{word-spacing:12.266667pt;}
.ws124{word-spacing:12.693333pt;}
.wsf8{word-spacing:17.600000pt;}
.ws127{word-spacing:18.293333pt;}
.ws6e{word-spacing:22.720000pt;}
.ws107{word-spacing:24.750400pt;}
.wsf4{word-spacing:27.520000pt;}
.wsc9{word-spacing:29.600000pt;}
.wsc4{word-spacing:35.253333pt;}
.ws6d{word-spacing:38.986667pt;}
.wsc8{word-spacing:45.920000pt;}
.wsc7{word-spacing:45.973333pt;}
.wsc3{word-spacing:49.173333pt;}
.ws12f{word-spacing:52.693333pt;}
.wsf5{word-spacing:58.826667pt;}
.wsfd{word-spacing:61.066667pt;}
.wsfb{word-spacing:63.360000pt;}
.ws8f{word-spacing:64.373333pt;}
.wsc5{word-spacing:66.240000pt;}
.ws10a{word-spacing:68.150400pt;}
.wsc6{word-spacing:68.960000pt;}
.wsfc{word-spacing:69.973333pt;}
.wsff{word-spacing:71.306667pt;}
.wsf9{word-spacing:71.573333pt;}
.wsa1{word-spacing:72.277333pt;}
.ws108{word-spacing:92.156800pt;}
.ws109{word-spacing:92.454400pt;}
.ws12e{word-spacing:94.613333pt;}
.ws125{word-spacing:95.786667pt;}
.wsf6{word-spacing:96.480000pt;}
.ws132{word-spacing:99.312107pt;}
.wsf7{word-spacing:99.946667pt;}
.wsfa{word-spacing:101.706667pt;}
.wsde{word-spacing:123.057600pt;}
.wsdd{word-spacing:133.424000pt;}
.wsdb{word-spacing:150.040000pt;}
.ws100{word-spacing:166.720000pt;}
.ws101{word-spacing:172.960000pt;}
.ws112{word-spacing:443.721600pt;}
.ws12c{word-spacing:1122.144000pt;}
.ws115{word-spacing:1122.528000pt;}
.ws140{word-spacing:1123.008000pt;}
.ws145{word-spacing:1123.488000pt;}
.ws58{word-spacing:1124.832000pt;}
.wsa3{word-spacing:1125.168000pt;}
.wsf0{word-spacing:1125.264000pt;}
.ws78{word-spacing:1125.312000pt;}
.wsc1{word-spacing:1125.600000pt;}
.ws24{word-spacing:1151.136000pt;}
.ws136{word-spacing:1328.880000pt;}
.ws147{word-spacing:1329.984000pt;}
.ws122{word-spacing:1332.720000pt;}
.ws8c{word-spacing:1333.776000pt;}
.wsb0{word-spacing:1334.064000pt;}
.ws10b{word-spacing:1334.352000pt;}
.wsdf{word-spacing:1334.736000pt;}
.ws67{word-spacing:1337.472000pt;}
.ws47{word-spacing:1357.680000pt;}
._9{margin-left:-1150.868267pt;}
._2f{margin-left:-1125.794933pt;}
._12{margin-left:-1124.847467pt;}
._87{margin-left:-1123.059733pt;}
._75{margin-left:-1122.121067pt;}
._55{margin-left:-101.636960pt;}
._83{margin-left:-88.827200pt;}
._81{margin-left:-83.493867pt;}
._49{margin-left:-78.160533pt;}
._56{margin-left:-72.827200pt;}
._39{margin-left:-55.013867pt;}
._84{margin-left:-47.200000pt;}
._7f{margin-left:-41.866667pt;}
._14{margin-left:-36.960000pt;}
._15{margin-left:-19.360000pt;}
._7e{margin-left:-13.686516pt;}
._3f{margin-left:-11.520000pt;}
._13{margin-left:-10.613333pt;}
._1e{margin-left:-9.493333pt;}
._88{margin-left:-7.633600pt;}
._54{margin-left:-6.666667pt;}
._2{margin-left:-5.760000pt;}
._6{margin-left:-4.728533pt;}
._a{margin-left:-3.646933pt;}
._1{margin-left:-2.568533pt;}
._0{margin-left:-1.280000pt;}
._7{width:0.943467pt;}
._3{width:1.840533pt;}
._4{width:2.788000pt;}
._5{width:3.771733pt;}
._29{width:4.741333pt;}
._1a{width:6.453333pt;}
._57{width:7.641600pt;}
._f{width:9.226667pt;}
._2b{width:12.426667pt;}
._32{width:13.386667pt;}
._1d{width:14.293333pt;}
._2a{width:15.253333pt;}
._35{width:16.389333pt;}
._27{width:17.280000pt;}
._3b{width:18.416000pt;}
._7c{width:19.413333pt;}
._2c{width:20.933333pt;}
._25{width:24.160000pt;}
._e{width:25.226667pt;}
._86{width:26.286933pt;}
._16{width:27.279467pt;}
._30{width:28.713600pt;}
._1b{width:30.403733pt;}
._28{width:32.746667pt;}
._2d{width:33.677867pt;}
._3e{width:34.789333pt;}
._17{width:37.100267pt;}
._d{width:39.200000pt;}
._80{width:41.930667pt;}
._11{width:43.152000pt;}
._c{width:44.540800pt;}
._10{width:45.681600pt;}
._b{width:47.020267pt;}
._82{width:48.144000pt;}
._1c{width:49.208533pt;}
._24{width:51.503467pt;}
._8{width:53.071467pt;}
._4e{width:54.720000pt;}
._59{width:56.851200pt;}
._47{width:58.810667pt;}
._58{width:60.213333pt;}
._19{width:63.077333pt;}
._23{width:64.586667pt;}
._26{width:66.826667pt;}
._38{width:68.263467pt;}
._4d{width:71.253333pt;}
._7d{width:78.186667pt;}
._33{width:80.496000pt;}
._2e{width:84.932267pt;}
._37{width:87.093333pt;}
._85{width:88.853333pt;}
._34{width:89.936533pt;}
._18{width:94.309333pt;}
._74{width:96.620800pt;}
._3d{width:97.760000pt;}
._51{width:101.440000pt;}
._50{width:102.933333pt;}
._21{width:104.426667pt;}
._5d{width:106.342400pt;}
._5c{width:108.673600pt;}
._5a{width:110.179947pt;}
._5e{width:111.203200pt;}
._65{width:112.542400pt;}
._6b{width:114.179200pt;}
._66{width:116.460800pt;}
._46{width:124.380533pt;}
._4f{width:126.874880pt;}
._62{width:135.953600pt;}
._63{width:138.483200pt;}
._45{width:161.255467pt;}
._41{width:164.126400pt;}
._4b{width:170.240000pt;}
._48{width:187.558667pt;}
._43{width:191.406400pt;}
._3a{width:200.381867pt;}
._22{width:214.933333pt;}
._40{width:217.892800pt;}
._4a{width:221.013333pt;}
._44{width:223.398400pt;}
._53{width:224.701867pt;}
._42{width:240.014400pt;}
._3c{width:248.236000pt;}
._20{width:274.720000pt;}
._6e{width:280.130133pt;}
._36{width:313.524533pt;}
._52{width:326.720000pt;}
._7b{width:340.693527pt;}
._79{width:341.892800pt;}
._6d{width:357.318400pt;}
._78{width:366.790206pt;}
._7a{width:367.969406pt;}
._76{width:381.064873pt;}
._77{width:382.812800pt;}
._4c{width:406.613333pt;}
._6a{width:432.561600pt;}
._61{width:446.277333pt;}
._64{width:456.309333pt;}
._72{width:459.123733pt;}
._71{width:483.451200pt;}
._5b{width:506.938133pt;}
._6f{width:519.251733pt;}
._69{width:532.009600pt;}
._68{width:544.806400pt;}
._67{width:554.825600pt;}
._5f{width:561.174400pt;}
._6c{width:566.828800pt;}
._70{width:579.471467pt;}
._60{width:618.590933pt;}
._1f{width:695.946667pt;}
._73{width:747.014933pt;}
._31{width:861.280000pt;}
.fsb{font-size:26.429333pt;}
.fs9{font-size:28.916800pt;}
.fs8{font-size:31.093333pt;}
.fs5{font-size:36.800000pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs1{font-size:49.749333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.yaa{bottom:-378.002800pt;}
.yab{bottom:-362.898800pt;}
.yac{bottom:-342.877467pt;}
.yb0{bottom:-318.202933pt;}
.yad{bottom:-304.541467pt;}
.yae{bottom:-266.205467pt;}
.ya9{bottom:-256.733467pt;}
.ya8{bottom:-240.402800pt;}
.yaf{bottom:-227.869467pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:1.686933pt;}
.y118{bottom:3.749067pt;}
.y11e{bottom:63.548933pt;}
.y8b{bottom:80.487733pt;}
.ybe{bottom:80.493067pt;}
.y25{bottom:80.493200pt;}
.y75{bottom:80.498533pt;}
.y69{bottom:80.498667pt;}
.y91{bottom:80.504000pt;}
.y52{bottom:80.504133pt;}
.yd3{bottom:81.171600pt;}
.y1c8{bottom:84.122267pt;}
.y198{bottom:84.156267pt;}
.y168{bottom:84.595067pt;}
.y14a{bottom:84.617733pt;}
.y8a{bottom:95.826533pt;}
.y90{bottom:95.831867pt;}
.y24{bottom:95.832000pt;}
.y74{bottom:95.837333pt;}
.y51{bottom:95.837467pt;}
.yd2{bottom:97.571600pt;}
.y1c7{bottom:99.456267pt;}
.y197{bottom:99.490267pt;}
.y167{bottom:99.929067pt;}
.y149{bottom:99.951733pt;}
.y8f{bottom:111.159733pt;}
.ybb{bottom:111.160000pt;}
.y89{bottom:111.165333pt;}
.ybd{bottom:111.170667pt;}
.y23{bottom:111.170800pt;}
.y61{bottom:111.170933pt;}
.yd1{bottom:113.971600pt;}
.y1c6{bottom:114.790267pt;}
.y196{bottom:114.824267pt;}
.y166{bottom:115.263067pt;}
.y148{bottom:115.285733pt;}
.y50{bottom:126.466000pt;}
.yf9{bottom:126.493200pt;}
.y8e{bottom:126.498533pt;}
.y73{bottom:126.498667pt;}
.y60{bottom:126.498800pt;}
.ybc{bottom:126.504000pt;}
.y88{bottom:126.504133pt;}
.yba{bottom:126.504267pt;}
.y1c5{bottom:130.124267pt;}
.y195{bottom:130.158267pt;}
.yd0{bottom:130.371600pt;}
.y165{bottom:130.597067pt;}
.y147{bottom:130.619733pt;}
.y4f{bottom:141.804800pt;}
.y87{bottom:141.826667pt;}
.yf8{bottom:141.832000pt;}
.yb9{bottom:141.832133pt;}
.y8d{bottom:141.837333pt;}
.y72{bottom:141.837467pt;}
.y5f{bottom:141.837600pt;}
.y1c4{bottom:145.458267pt;}
.y194{bottom:145.492267pt;}
.y164{bottom:145.931067pt;}
.y146{bottom:145.953733pt;}
.ycf{bottom:146.771600pt;}
.y22{bottom:146.771733pt;}
.y4e{bottom:157.143600pt;}
.yf7{bottom:157.165333pt;}
.y86{bottom:157.165467pt;}
.y8c{bottom:157.170667pt;}
.y71{bottom:157.170800pt;}
.y5e{bottom:157.170933pt;}
.y1c3{bottom:160.792267pt;}
.y193{bottom:160.826267pt;}
.y163{bottom:161.265067pt;}
.y145{bottom:161.287733pt;}
.y77{bottom:163.171600pt;}
.y21{bottom:163.171733pt;}
.y4d{bottom:172.482400pt;}
.y70{bottom:172.498667pt;}
.y5d{bottom:172.498800pt;}
.y12b{bottom:172.504133pt;}
.y85{bottom:172.504267pt;}
.y1c2{bottom:176.126267pt;}
.y192{bottom:176.160267pt;}
.y12a{bottom:176.238267pt;}
.y162{bottom:176.599067pt;}
.y144{bottom:176.621733pt;}
.y76{bottom:179.571600pt;}
.y20{bottom:179.571733pt;}
.y4c{bottom:187.821200pt;}
.yf6{bottom:187.832000pt;}
.y6f{bottom:187.837467pt;}
.y5c{bottom:187.837600pt;}
.y1c1{bottom:191.460267pt;}
.y191{bottom:191.494267pt;}
.y161{bottom:191.933067pt;}
.y143{bottom:191.955733pt;}
.y68{bottom:195.971600pt;}
.y1f{bottom:195.971733pt;}
.y4b{bottom:203.160000pt;}
.y6e{bottom:203.170800pt;}
.y5b{bottom:203.171067pt;}
.y1c0{bottom:206.794267pt;}
.y190{bottom:206.828267pt;}
.y160{bottom:207.267067pt;}
.y142{bottom:207.289733pt;}
.y129{bottom:209.038267pt;}
.y67{bottom:212.371600pt;}
.y1e{bottom:212.371733pt;}
.y4a{bottom:218.498800pt;}
.y6d{bottom:218.498933pt;}
.y5a{bottom:218.504533pt;}
.y1bf{bottom:222.128267pt;}
.y18f{bottom:222.162267pt;}
.y15f{bottom:222.601067pt;}
.y141{bottom:222.623733pt;}
.y66{bottom:228.771600pt;}
.y1d{bottom:228.771733pt;}
.y59{bottom:233.832400pt;}
.y49{bottom:233.837600pt;}
.y6c{bottom:233.837733pt;}
.y1be{bottom:237.462267pt;}
.y18e{bottom:237.496267pt;}
.y15e{bottom:237.935067pt;}
.y140{bottom:237.957733pt;}
.y65{bottom:245.171600pt;}
.y1c{bottom:245.171733pt;}
.y48{bottom:249.160000pt;}
.y58{bottom:249.171200pt;}
.y1bd{bottom:252.796267pt;}
.y18d{bottom:252.830267pt;}
.y15d{bottom:253.269067pt;}
.y13f{bottom:253.291733pt;}
.yf5{bottom:256.201067pt;}
.y64{bottom:261.571600pt;}
.y1b{bottom:261.571733pt;}
.y47{bottom:264.498800pt;}
.y1bc{bottom:268.130267pt;}
.y18c{bottom:268.164267pt;}
.y15c{bottom:268.603067pt;}
.y13e{bottom:268.625733pt;}
.y63{bottom:277.971600pt;}
.y1a{bottom:277.971733pt;}
.yf4{bottom:278.663333pt;}
.y46{bottom:279.837600pt;}
.y98{bottom:280.279600pt;}
.yb1{bottom:280.428000pt;}
.y1bb{bottom:283.464267pt;}
.y18b{bottom:283.498267pt;}
.y15b{bottom:283.937067pt;}
.y13d{bottom:283.959733pt;}
.y62{bottom:294.371600pt;}
.y19{bottom:294.371733pt;}
.yf3{bottom:295.527333pt;}
.y1ba{bottom:298.798267pt;}
.y18a{bottom:298.832267pt;}
.y15a{bottom:299.271067pt;}
.y13c{bottom:299.293733pt;}
.yf2{bottom:310.189067pt;}
.y45{bottom:310.771600pt;}
.y57{bottom:310.771733pt;}
.y1b9{bottom:314.132267pt;}
.y189{bottom:314.166267pt;}
.y159{bottom:314.605067pt;}
.y13b{bottom:314.627733pt;}
.yf1{bottom:327.053067pt;}
.y44{bottom:327.171600pt;}
.y18{bottom:327.171733pt;}
.y1b8{bottom:329.466267pt;}
.y188{bottom:329.500267pt;}
.y158{bottom:329.939067pt;}
.y13a{bottom:329.961733pt;}
.yf0{bottom:341.714800pt;}
.y43{bottom:343.571600pt;}
.y56{bottom:343.571733pt;}
.y1b7{bottom:344.800267pt;}
.y187{bottom:344.834267pt;}
.y157{bottom:345.273067pt;}
.y139{bottom:345.295733pt;}
.yef{bottom:358.578800pt;}
.y42{bottom:359.971600pt;}
.y55{bottom:359.971733pt;}
.y1b6{bottom:360.134267pt;}
.y186{bottom:360.168267pt;}
.y156{bottom:360.607067pt;}
.y138{bottom:360.629733pt;}
.yee{bottom:373.240533pt;}
.y1b5{bottom:375.468267pt;}
.y185{bottom:375.502267pt;}
.y155{bottom:375.941067pt;}
.y137{bottom:375.963733pt;}
.y17{bottom:376.033733pt;}
.y41{bottom:376.371600pt;}
.y54{bottom:376.371733pt;}
.y126{bottom:383.438533pt;}
.yed{bottom:390.104533pt;}
.y1b4{bottom:390.802267pt;}
.y184{bottom:390.836267pt;}
.y154{bottom:391.275067pt;}
.y136{bottom:391.297733pt;}
.y16{bottom:391.367733pt;}
.y40{bottom:392.771600pt;}
.y53{bottom:392.771733pt;}
.y125{bottom:396.238533pt;}
.yec{bottom:404.766267pt;}
.y1b3{bottom:406.136267pt;}
.y183{bottom:406.170267pt;}
.y153{bottom:406.609067pt;}
.y135{bottom:406.631733pt;}
.y3f{bottom:409.171600pt;}
.y1b2{bottom:421.470267pt;}
.y182{bottom:421.504267pt;}
.yeb{bottom:421.630267pt;}
.y114{bottom:421.807467pt;}
.y152{bottom:421.943067pt;}
.y134{bottom:421.965733pt;}
.y15{bottom:422.035733pt;}
.y128{bottom:422.236533pt;}
.y3e{bottom:425.571600pt;}
.y113{bottom:434.607467pt;}
.yea{bottom:436.292000pt;}
.y1b1{bottom:436.804267pt;}
.y181{bottom:436.838267pt;}
.y151{bottom:437.277067pt;}
.y133{bottom:437.299733pt;}
.y14{bottom:437.369733pt;}
.y124{bottom:437.443867pt;}
.y111{bottom:438.042133pt;}
.y3d{bottom:441.971600pt;}
.y96{bottom:441.997067pt;}
.y112{bottom:447.407467pt;}
.y123{bottom:450.243867pt;}
.y110{bottom:450.842133pt;}
.y1b0{bottom:452.138267pt;}
.y180{bottom:452.172267pt;}
.y150{bottom:452.611067pt;}
.y132{bottom:452.633733pt;}
.ye9{bottom:453.156000pt;}
.y95{bottom:457.331067pt;}
.y3c{bottom:458.371600pt;}
.y1af{bottom:467.472267pt;}
.y17f{bottom:467.506267pt;}
.ye8{bottom:467.817733pt;}
.y14f{bottom:467.945067pt;}
.y131{bottom:467.967733pt;}
.y13{bottom:468.037733pt;}
.y94{bottom:472.665067pt;}
.y3b{bottom:474.771600pt;}
.y1ae{bottom:482.806267pt;}
.y17e{bottom:482.840267pt;}
.y14e{bottom:483.279067pt;}
.y130{bottom:483.301733pt;}
.y12{bottom:483.371733pt;}
.ye7{bottom:484.681733pt;}
.y122{bottom:487.790533pt;}
.y93{bottom:487.999067pt;}
.y3a{bottom:491.171600pt;}
.y84{bottom:491.171733pt;}
.y1ad{bottom:498.140267pt;}
.y17d{bottom:498.174267pt;}
.y14d{bottom:498.613067pt;}
.y12f{bottom:498.635733pt;}
.y11{bottom:498.705733pt;}
.ye6{bottom:499.343467pt;}
.y121{bottom:500.590533pt;}
.y92{bottom:503.333067pt;}
.y39{bottom:507.571600pt;}
.y83{bottom:507.571733pt;}
.y115{bottom:508.228800pt;}
.y120{bottom:513.390533pt;}
.y1ac{bottom:513.474267pt;}
.y17c{bottom:513.508267pt;}
.y14c{bottom:513.947067pt;}
.y12e{bottom:513.969733pt;}
.y10{bottom:514.039733pt;}
.ye5{bottom:516.207467pt;}
.y97{bottom:523.085333pt;}
.y38{bottom:523.971600pt;}
.y82{bottom:523.971733pt;}
.y1ab{bottom:528.808267pt;}
.y17b{bottom:528.842267pt;}
.y14b{bottom:529.281067pt;}
.y12d{bottom:529.303733pt;}
.yf{bottom:529.373733pt;}
.ye4{bottom:530.869200pt;}
.yb7{bottom:537.572000pt;}
.y37{bottom:540.371600pt;}
.y81{bottom:540.371733pt;}
.y1aa{bottom:544.142267pt;}
.y17a{bottom:544.176267pt;}
.ye{bottom:544.707733pt;}
.y10b{bottom:545.946133pt;}
.ye3{bottom:547.733200pt;}
.y10f{bottom:552.847467pt;}
.y36{bottom:556.771600pt;}
.y80{bottom:556.771733pt;}
.y10a{bottom:558.746133pt;}
.y1a9{bottom:559.476267pt;}
.y179{bottom:559.510267pt;}
.y12c{bottom:559.971733pt;}
.yd{bottom:560.041733pt;}
.ye2{bottom:562.394933pt;}
.ya6{bottom:563.141067pt;}
.y10e{bottom:565.647467pt;}
.y35{bottom:573.171600pt;}
.y7f{bottom:573.171733pt;}
.y1a8{bottom:574.810267pt;}
.y178{bottom:574.844267pt;}
.yc{bottom:575.375733pt;}
.ya5{bottom:575.941067pt;}
.yb6{bottom:578.777333pt;}
.ye1{bottom:579.258933pt;}
.ya3{bottom:579.375733pt;}
.y104{bottom:584.912667pt;}
.ya4{bottom:588.741067pt;}
.y34{bottom:589.571600pt;}
.y7e{bottom:589.571733pt;}
.y1a7{bottom:590.144267pt;}
.y177{bottom:590.178267pt;}
.yb{bottom:590.709733pt;}
.yb5{bottom:591.577333pt;}
.ya2{bottom:592.175733pt;}
.ye0{bottom:593.920667pt;}
.y103{bottom:600.246667pt;}
.y109{bottom:603.194133pt;}
.y1a6{bottom:605.478267pt;}
.y176{bottom:605.512267pt;}
.y33{bottom:605.971600pt;}
.y7d{bottom:605.971733pt;}
.ya{bottom:606.043733pt;}
.ydf{bottom:610.784667pt;}
.y10d{bottom:611.567467pt;}
.y102{bottom:615.580667pt;}
.y108{bottom:615.994133pt;}
.y1a5{bottom:620.812267pt;}
.y175{bottom:620.846267pt;}
.y9{bottom:621.377733pt;}
.ycd{bottom:622.035467pt;}
.y32{bottom:622.371600pt;}
.y7c{bottom:622.371733pt;}
.y10c{bottom:624.367467pt;}
.yde{bottom:625.446267pt;}
.yb4{bottom:629.124000pt;}
.y101{bottom:630.914667pt;}
.y1a4{bottom:636.146267pt;}
.y174{bottom:636.180267pt;}
.y8{bottom:636.711733pt;}
.y31{bottom:638.771600pt;}
.y127{bottom:638.771733pt;}
.yb3{bottom:641.924000pt;}
.ydd{bottom:642.310267pt;}
.ycc{bottom:644.502667pt;}
.y100{bottom:648.509067pt;}
.y105{bottom:649.013333pt;}
.y107{bottom:649.231467pt;}
.ya7{bottom:649.562400pt;}
.y1a3{bottom:651.480267pt;}
.y173{bottom:651.514267pt;}
.ycb{bottom:651.836133pt;}
.y7{bottom:652.045733pt;}
.yb2{bottom:654.724000pt;}
.y30{bottom:655.171600pt;}
.y7b{bottom:655.171733pt;}
.ydc{bottom:656.972133pt;}
.y106{bottom:662.031467pt;}
.y11f{bottom:662.179867pt;}
.yff{bottom:663.843067pt;}
.y1a2{bottom:666.814267pt;}
.y172{bottom:666.848267pt;}
.y6{bottom:667.379733pt;}
.y119{bottom:667.866400pt;}
.y2f{bottom:671.571600pt;}
.y7a{bottom:671.571733pt;}
.ydb{bottom:673.836133pt;}
.yca{bottom:676.028533pt;}
.y1a1{bottom:682.148267pt;}
.y171{bottom:682.182267pt;}
.y5{bottom:682.713733pt;}
.yc9{bottom:683.361733pt;}
.yfe{bottom:686.308000pt;}
.y9d{bottom:687.279733pt;}
.y11a{bottom:687.887733pt;}
.y2e{bottom:687.971600pt;}
.y79{bottom:687.971733pt;}
.yda{bottom:688.497867pt;}
.ya1{bottom:694.181067pt;}
.y1a0{bottom:697.482267pt;}
.y170{bottom:697.516267pt;}
.y4{bottom:698.047733pt;}
.yc6{bottom:699.127067pt;}
.y9c{bottom:700.079733pt;}
.yfd{bottom:703.167067pt;}
.y2d{bottom:704.371600pt;}
.yd9{bottom:705.361867pt;}
.ya0{bottom:706.981067pt;}
.yc8{bottom:707.554133pt;}
.y19f{bottom:712.816267pt;}
.y16f{bottom:712.850267pt;}
.yc7{bottom:714.887467pt;}
.yd8{bottom:720.023467pt;}
.yfc{bottom:720.026000pt;}
.y2c{bottom:720.771600pt;}
.yce{bottom:720.771733pt;}
.y11b{bottom:726.223733pt;}
.y19e{bottom:728.150267pt;}
.y16e{bottom:728.184267pt;}
.y3{bottom:728.714400pt;}
.yfb{bottom:736.885067pt;}
.yd7{bottom:736.887467pt;}
.y2b{bottom:737.171600pt;}
.y6b{bottom:737.171733pt;}
.yc5{bottom:739.079867pt;}
.y19d{bottom:743.484267pt;}
.y16d{bottom:743.518267pt;}
.y9b{bottom:744.527733pt;}
.yc4{bottom:746.415733pt;}
.yd6{bottom:751.549200pt;}
.y9f{bottom:752.901067pt;}
.y2a{bottom:753.571600pt;}
.y6a{bottom:753.571733pt;}
.yfa{bottom:753.751467pt;}
.y9a{bottom:757.327733pt;}
.y19c{bottom:758.818267pt;}
.y16c{bottom:758.852267pt;}
.y11c{bottom:764.559733pt;}
.y9e{bottom:765.701067pt;}
.yd5{bottom:768.413200pt;}
.y29{bottom:769.971600pt;}
.y78{bottom:769.971733pt;}
.yc1{bottom:770.603067pt;}
.yc2{bottom:770.608133pt;}
.y117{bottom:774.031600pt;}
.y2{bottom:774.058400pt;}
.y19b{bottom:774.152267pt;}
.y16b{bottom:774.186267pt;}
.yd4{bottom:783.077467pt;}
.yc0{bottom:785.272267pt;}
.yc3{bottom:785.277333pt;}
.y28{bottom:786.371600pt;}
.y19a{bottom:789.486267pt;}
.y16a{bottom:789.520267pt;}
.y116{bottom:790.362267pt;}
.y99{bottom:790.565067pt;}
.y1{bottom:796.714400pt;}
.ybf{bottom:799.941467pt;}
.y27{bottom:802.771600pt;}
.y11d{bottom:802.895733pt;}
.y199{bottom:804.820267pt;}
.y169{bottom:804.854267pt;}
.y26{bottom:849.726533pt;}
.h23{height:27.984000pt;}
.h11{height:32.426667pt;}
.h10{height:36.309333pt;}
.h4{height:40.392000pt;}
.h24{height:40.482667pt;}
.he{height:40.618667pt;}
.h20{height:40.621333pt;}
.h5{height:40.800000pt;}
.h25{height:41.434667pt;}
.h13{height:43.449600pt;}
.h14{height:43.459733pt;}
.h1e{height:44.322133pt;}
.h1b{height:44.322667pt;}
.h1c{height:44.323200pt;}
.h8{height:44.441600pt;}
.h19{height:44.461333pt;}
.h1f{height:44.461867pt;}
.hc{height:44.463467pt;}
.h1d{height:44.471467pt;}
.ha{height:44.485333pt;}
.h9{height:45.216000pt;}
.h6{height:47.520000pt;}
.h12{height:47.893333pt;}
.h7{height:48.000000pt;}
.hb{height:48.000533pt;}
.hd{height:50.240000pt;}
.h3{height:60.288000pt;}
.h22{height:61.340267pt;}
.h1a{height:73.755200pt;}
.h15{height:73.774933pt;}
.h18{height:73.784533pt;}
.h16{height:73.785067pt;}
.h17{height:73.785600pt;}
.h2{height:76.032000pt;}
.h21{height:172.850667pt;}
.hf{height:289.334667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:350.577333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x18{left:8.906000pt;}
.x16{left:22.364533pt;}
.x15{left:23.804533pt;}
.x14{left:27.857867pt;}
.x13{left:33.383200pt;}
.x38{left:49.734800pt;}
.x31{left:56.530267pt;}
.x12{left:62.225867pt;}
.x3{left:64.252000pt;}
.x1{left:71.811067pt;}
.x39{left:75.585333pt;}
.x4{left:83.145333pt;}
.x2{left:90.704400pt;}
.x1d{left:102.029600pt;}
.x8{left:103.964533pt;}
.x11{left:105.479200pt;}
.x6{left:109.606267pt;}
.x5{left:117.157733pt;}
.x30{left:125.078667pt;}
.x7{left:130.853333pt;}
.x33{left:138.332933pt;}
.x17{left:140.273867pt;}
.x1e{left:142.938800pt;}
.x37{left:147.443600pt;}
.x36{left:148.883600pt;}
.x1f{left:151.358400pt;}
.x35{left:152.936933pt;}
.x32{left:155.250267pt;}
.x27{left:158.303067pt;}
.x28{left:165.123333pt;}
.x2b{left:171.090133pt;}
.x1b{left:180.587733pt;}
.xa{left:187.383200pt;}
.x20{left:199.966400pt;}
.x22{left:201.268400pt;}
.x2a{left:206.380533pt;}
.x21{left:217.140400pt;}
.x34{left:230.558267pt;}
.x9{left:234.817867pt;}
.x1c{left:239.409067pt;}
.x23{left:254.414800pt;}
.x24{left:255.493600pt;}
.xf{left:269.185867pt;}
.x1a{left:273.014400pt;}
.x29{left:280.850933pt;}
.xb{left:286.103200pt;}
.xc{left:310.679200pt;}
.x2e{left:314.062133pt;}
.x3b{left:321.688400pt;}
.x2d{left:323.920133pt;}
.x3a{left:325.474000pt;}
.xe{left:332.055200pt;}
.x19{left:333.553067pt;}
.x2c{left:355.329333pt;}
.x26{left:359.815467pt;}
.xd{left:369.932533pt;}
.x25{left:433.231600pt;}
.x10{left:464.417867pt;}
.x2f{left:483.012133pt;}
}




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