
    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_7748718ac99c5c45a296fcd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_b2c7dfee4ac110243753eff1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_694aff244b188e657cb046a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_1e550e582269bbbe6ad1c2aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_91f17a996ee6363873f71d66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_c3d9bfd057c8353699ec4f1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_0f8a112aa001311e6ebd443f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_4f24b5428778235be116c43d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964860;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_d7cfbe3051a1e350e0ede090.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.103027;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_5d91c96dd223c53a29e871f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_b733d3e5cc55473eecb10da2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_53c71a8a9ba05341ab77aaa5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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_8e22cbbd56783c0295c5813f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_55feb7142383788bfe30e252.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2{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);}
.v5{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.427000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:27.006000px;}
.v2{vertical-align:36.162000px;}
.ls13{letter-spacing:-7.236000px;}
.ls12{letter-spacing:-3.240000px;}
.ls9{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-1.020000px;}
.ls22{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.918000px;}
.ls7{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.840000px;}
.ls2f{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.691200px;}
.ls32{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.600000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.486000px;}
.ls28{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.408000px;}
.ls31{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.300000px;}
.ls29{letter-spacing:-0.270000px;}
.ls30{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.108000px;}
.ls2b{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.712800px;}
.ls3{letter-spacing:2.106000px;}
.ls15{letter-spacing:10.500000px;}
.ls16{letter-spacing:15.498000px;}
.ls1{letter-spacing:23.792400px;}
.ls0{letter-spacing:43.181364px;}
.lsc{letter-spacing:141.876000px;}
.ls23{letter-spacing:149.394000px;}
.ls20{letter-spacing:153.972000px;}
.ls21{letter-spacing:158.592000px;}
.ls1e{letter-spacing:170.688000px;}
.ls1a{letter-spacing:171.864000px;}
.ls18{letter-spacing:174.720000px;}
.ls1b{letter-spacing:177.870000px;}
.ls1d{letter-spacing:183.498000px;}
.ls25{letter-spacing:186.102000px;}
.ls1f{letter-spacing:192.948000px;}
.ls1c{letter-spacing:202.188000px;}
.ls24{letter-spacing:206.010000px;}
.ls19{letter-spacing:206.766000px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsa2{word-spacing:-16.434000px;}
.ws5{word-spacing:-14.940000px;}
.ws65{word-spacing:-14.880000px;}
.wsa3{word-spacing:-14.820000px;}
.ws92{word-spacing:-14.700000px;}
.wsa5{word-spacing:-14.520000px;}
.wsa4{word-spacing:-14.460000px;}
.ws132{word-spacing:-14.400000px;}
.wsb9{word-spacing:-14.280000px;}
.ws32{word-spacing:-14.100000px;}
.ws66{word-spacing:-13.980000px;}
.wsef{word-spacing:-13.920000px;}
.wsfc{word-spacing:-13.860000px;}
.ws31{word-spacing:-13.800000px;}
.ws126{word-spacing:-13.680000px;}
.wsd8{word-spacing:-13.446000px;}
.ws152{word-spacing:-13.392000px;}
.ws15e{word-spacing:-13.338000px;}
.ws173{word-spacing:-13.284000px;}
.wsfd{word-spacing:-13.230000px;}
.ws19a{word-spacing:-13.176000px;}
.ws19b{word-spacing:-13.014000px;}
.ws187{word-spacing:-12.906000px;}
.ws15d{word-spacing:-12.798000px;}
.ws199{word-spacing:-12.582000px;}
.ws174{word-spacing:-12.474000px;}
.ws7{word-spacing:-12.366000px;}
.wsb{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsc{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws30{word-spacing:-10.800000px;}
.ws119{word-spacing:-10.416000px;}
.wsd9{word-spacing:-10.206000px;}
.ws88{word-spacing:-9.996000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws81{word-spacing:-9.576000px;}
.ws1{word-spacing:-9.542544px;}
.ws79{word-spacing:-9.450000px;}
.ws102{word-spacing:-8.100000px;}
.ws103{word-spacing:-8.040000px;}
.wscd{word-spacing:-7.680000px;}
.wsce{word-spacing:-7.620000px;}
.ws9c{word-spacing:-7.500000px;}
.ws167{word-spacing:-7.074000px;}
.ws1a0{word-spacing:-6.318000px;}
.wsda{word-spacing:-6.210000px;}
.ws179{word-spacing:-5.778000px;}
.ws160{word-spacing:-5.076000px;}
.ws159{word-spacing:-5.022000px;}
.ws163{word-spacing:-4.968000px;}
.ws1a8{word-spacing:-4.752000px;}
.wsc8{word-spacing:-4.200000px;}
.ws1ab{word-spacing:-3.942000px;}
.ws29{word-spacing:-3.840000px;}
.ws178{word-spacing:-3.726000px;}
.wsb2{word-spacing:-3.720000px;}
.wsb3{word-spacing:-3.660000px;}
.wsb1{word-spacing:-3.420000px;}
.wsb5{word-spacing:-3.360000px;}
.wsc4{word-spacing:-3.240000px;}
.ws1d{word-spacing:-3.024000px;}
.wsf5{word-spacing:-2.880000px;}
.ws64{word-spacing:-2.754000px;}
.wse1{word-spacing:-2.700000px;}
.ws106{word-spacing:-2.640000px;}
.ws13c{word-spacing:-2.580000px;}
.ws17d{word-spacing:-2.538000px;}
.ws51{word-spacing:-2.520000px;}
.wsed{word-spacing:-2.484000px;}
.ws2c{word-spacing:-2.460000px;}
.ws140{word-spacing:-2.400000px;}
.wsb7{word-spacing:-2.340000px;}
.wsde{word-spacing:-2.322000px;}
.ws1c{word-spacing:-2.268000px;}
.wsa6{word-spacing:-2.160000px;}
.ws52{word-spacing:-2.040000px;}
.ws166{word-spacing:-1.998000px;}
.ws9d{word-spacing:-1.980000px;}
.ws13a{word-spacing:-1.920000px;}
.ws14e{word-spacing:-1.860000px;}
.wsc0{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.782000px;}
.wsaa{word-spacing:-1.740000px;}
.ws5a{word-spacing:-1.680000px;}
.ws177{word-spacing:-1.674000px;}
.ws190{word-spacing:-1.566000px;}
.wsd2{word-spacing:-1.560000px;}
.ws147{word-spacing:-1.500000px;}
.ws194{word-spacing:-1.458000px;}
.ws4f{word-spacing:-1.440000px;}
.wsa9{word-spacing:-1.380000px;}
.ws57{word-spacing:-1.260000px;}
.wsf{word-spacing:-1.254000px;}
.ws120{word-spacing:-1.218000px;}
.ws28{word-spacing:-1.200000px;}
.ws156{word-spacing:-1.188000px;}
.ws5c{word-spacing:-1.140000px;}
.ws197{word-spacing:-1.134000px;}
.ws141{word-spacing:-1.080000px;}
.ws188{word-spacing:-1.026000px;}
.ws4e{word-spacing:-1.020000px;}
.ws15f{word-spacing:-0.972000px;}
.ws2b{word-spacing:-0.960000px;}
.ws192{word-spacing:-0.918000px;}
.ws26{word-spacing:-0.900000px;}
.ws151{word-spacing:-0.840000px;}
.ws122{word-spacing:-0.798000px;}
.ws13d{word-spacing:-0.780000px;}
.ws158{word-spacing:-0.756000px;}
.wse4{word-spacing:-0.720000px;}
.ws76{word-spacing:-0.660000px;}
.ws93{word-spacing:-0.600000px;}
.wsc6{word-spacing:-0.540000px;}
.ws11f{word-spacing:-0.504000px;}
.wsd4{word-spacing:-0.480000px;}
.ws90{word-spacing:-0.420000px;}
.ws91{word-spacing:-0.336000px;}
.ws145{word-spacing:-0.300000px;}
.ws53{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws43{word-spacing:-0.180000px;}
.ws121{word-spacing:-0.126000px;}
.ws27{word-spacing:-0.120000px;}
.ws95{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws184{word-spacing:0.054000px;}
.ws54{word-spacing:0.060000px;}
.ws10c{word-spacing:0.108000px;}
.ws104{word-spacing:0.120000px;}
.wsb6{word-spacing:0.180000px;}
.ws136{word-spacing:0.240000px;}
.ws15b{word-spacing:0.270000px;}
.ws13f{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws38{word-spacing:0.360000px;}
.ws171{word-spacing:0.378000px;}
.wse{word-spacing:0.408000px;}
.wsb8{word-spacing:0.420000px;}
.ws5d{word-spacing:0.480000px;}
.ws17e{word-spacing:0.486000px;}
.wsdb{word-spacing:0.540000px;}
.ws162{word-spacing:0.594000px;}
.ws5e{word-spacing:0.600000px;}
.ws1ac{word-spacing:0.648000px;}
.ws11{word-spacing:0.691200px;}
.ws96{word-spacing:0.720000px;}
.ws20{word-spacing:0.756000px;}
.ws19{word-spacing:0.810000px;}
.ws8f{word-spacing:0.840000px;}
.ws2d{word-spacing:0.900000px;}
.ws2f{word-spacing:0.918000px;}
.ws47{word-spacing:0.960000px;}
.ws8e{word-spacing:0.972000px;}
.wsf6{word-spacing:1.020000px;}
.ws18f{word-spacing:1.026000px;}
.ws56{word-spacing:1.080000px;}
.ws55{word-spacing:1.140000px;}
.ws18{word-spacing:1.188000px;}
.ws4d{word-spacing:1.200000px;}
.ws13b{word-spacing:1.260000px;}
.ws139{word-spacing:1.320000px;}
.ws138{word-spacing:1.380000px;}
.ws37{word-spacing:1.500000px;}
.ws75{word-spacing:1.560000px;}
.ws1b{word-spacing:1.566000px;}
.ws1a{word-spacing:1.620000px;}
.wsf1{word-spacing:1.680000px;}
.ws17b{word-spacing:1.728000px;}
.ws48{word-spacing:1.740000px;}
.wsaf{word-spacing:1.800000px;}
.ws3e{word-spacing:1.860000px;}
.ws3d{word-spacing:1.920000px;}
.ws15{word-spacing:1.944000px;}
.ws149{word-spacing:1.980000px;}
.ws68{word-spacing:2.040000px;}
.wsa1{word-spacing:2.052000px;}
.ws25{word-spacing:2.100000px;}
.ws21{word-spacing:2.106000px;}
.ws22{word-spacing:2.160000px;}
.wsa8{word-spacing:2.220000px;}
.ws1f{word-spacing:2.268000px;}
.wsa7{word-spacing:2.280000px;}
.wsf7{word-spacing:2.340000px;}
.ws1a9{word-spacing:2.376000px;}
.ws12f{word-spacing:2.400000px;}
.ws2a{word-spacing:2.460000px;}
.ws1a1{word-spacing:2.484000px;}
.ws186{word-spacing:2.538000px;}
.ws41{word-spacing:2.580000px;}
.ws1a3{word-spacing:2.592000px;}
.ws74{word-spacing:2.640000px;}
.ws3f{word-spacing:2.700000px;}
.ws18a{word-spacing:2.754000px;}
.ws105{word-spacing:2.760000px;}
.ws164{word-spacing:2.808000px;}
.wsd5{word-spacing:2.820000px;}
.ws3c{word-spacing:2.880000px;}
.ws16c{word-spacing:2.916000px;}
.wsf3{word-spacing:2.940000px;}
.ws1ae{word-spacing:2.970000px;}
.ws50{word-spacing:3.000000px;}
.wse2{word-spacing:3.060000px;}
.ws18b{word-spacing:3.078000px;}
.ws1a4{word-spacing:3.132000px;}
.wsee{word-spacing:3.240000px;}
.wsae{word-spacing:3.300000px;}
.wsf2{word-spacing:3.360000px;}
.ws12d{word-spacing:3.420000px;}
.ws146{word-spacing:3.480000px;}
.wsd3{word-spacing:3.600000px;}
.ws17{word-spacing:3.618000px;}
.ws98{word-spacing:3.660000px;}
.ws196{word-spacing:3.672000px;}
.wsb0{word-spacing:3.780000px;}
.ws175{word-spacing:3.834000px;}
.ws185{word-spacing:3.888000px;}
.ws97{word-spacing:3.900000px;}
.ws15a{word-spacing:3.942000px;}
.ws16{word-spacing:3.996000px;}
.ws107{word-spacing:4.020000px;}
.wsec{word-spacing:4.050000px;}
.ws108{word-spacing:4.080000px;}
.ws46{word-spacing:4.140000px;}
.ws148{word-spacing:4.200000px;}
.wse7{word-spacing:4.212000px;}
.wsf4{word-spacing:4.260000px;}
.wse6{word-spacing:4.266000px;}
.ws9a{word-spacing:4.320000px;}
.ws10d{word-spacing:4.374000px;}
.ws14a{word-spacing:4.380000px;}
.ws19f{word-spacing:4.428000px;}
.ws59{word-spacing:4.440000px;}
.ws189{word-spacing:4.482000px;}
.ws36{word-spacing:4.500000px;}
.ws23{word-spacing:4.536000px;}
.ws35{word-spacing:4.560000px;}
.ws137{word-spacing:4.620000px;}
.wsdf{word-spacing:4.680000px;}
.ws128{word-spacing:4.740000px;}
.ws24{word-spacing:4.752000px;}
.ws40{word-spacing:4.800000px;}
.ws143{word-spacing:4.860000px;}
.ws6b{word-spacing:4.920000px;}
.ws71{word-spacing:4.980000px;}
.wsdc{word-spacing:5.022000px;}
.wsa0{word-spacing:5.040000px;}
.wseb{word-spacing:5.076000px;}
.ws9f{word-spacing:5.100000px;}
.ws172{word-spacing:5.184000px;}
.wse0{word-spacing:5.220000px;}
.wsd6{word-spacing:5.280000px;}
.ws70{word-spacing:5.340000px;}
.ws6f{word-spacing:5.400000px;}
.wse5{word-spacing:5.460000px;}
.ws155{word-spacing:5.616000px;}
.ws14c{word-spacing:5.640000px;}
.ws193{word-spacing:5.670000px;}
.ws14b{word-spacing:5.700000px;}
.ws17a{word-spacing:5.724000px;}
.ws33{word-spacing:5.760000px;}
.wsab{word-spacing:5.820000px;}
.ws61{word-spacing:5.880000px;}
.ws198{word-spacing:5.886000px;}
.ws15c{word-spacing:5.994000px;}
.ws13e{word-spacing:6.000000px;}
.ws129{word-spacing:6.060000px;}
.ws154{word-spacing:6.102000px;}
.ws49{word-spacing:6.120000px;}
.ws14f{word-spacing:6.180000px;}
.ws11e{word-spacing:6.210000px;}
.ws14d{word-spacing:6.300000px;}
.ws12b{word-spacing:6.360000px;}
.wse3{word-spacing:6.420000px;}
.ws72{word-spacing:6.480000px;}
.ws12e{word-spacing:6.540000px;}
.ws191{word-spacing:6.588000px;}
.ws39{word-spacing:6.660000px;}
.ws1a5{word-spacing:6.696000px;}
.ws63{word-spacing:6.720000px;}
.ws8c{word-spacing:6.750000px;}
.ws8b{word-spacing:6.804000px;}
.ws77{word-spacing:6.840000px;}
.ws135{word-spacing:6.900000px;}
.ws195{word-spacing:6.966000px;}
.ws12c{word-spacing:7.020000px;}
.ws127{word-spacing:7.080000px;}
.ws34{word-spacing:7.140000px;}
.ws134{word-spacing:7.200000px;}
.ws4c{word-spacing:7.260000px;}
.ws2e{word-spacing:7.440000px;}
.ws5b{word-spacing:7.500000px;}
.ws11d{word-spacing:7.506000px;}
.ws16b{word-spacing:7.560000px;}
.ws42{word-spacing:7.620000px;}
.ws16d{word-spacing:7.722000px;}
.ws161{word-spacing:7.776000px;}
.ws150{word-spacing:7.800000px;}
.wsb4{word-spacing:7.860000px;}
.wsfb{word-spacing:7.920000px;}
.ws16a{word-spacing:7.938000px;}
.wsfa{word-spacing:7.980000px;}
.ws12a{word-spacing:8.100000px;}
.ws94{word-spacing:8.280000px;}
.ws131{word-spacing:8.460000px;}
.ws153{word-spacing:8.478000px;}
.ws130{word-spacing:8.520000px;}
.wsf0{word-spacing:8.580000px;}
.ws62{word-spacing:8.640000px;}
.ws9b{word-spacing:8.700000px;}
.ws144{word-spacing:8.820000px;}
.ws18d{word-spacing:8.856000px;}
.ws1a7{word-spacing:8.910000px;}
.ws9e{word-spacing:9.000000px;}
.ws1a2{word-spacing:9.342000px;}
.ws3b{word-spacing:9.360000px;}
.ws1ad{word-spacing:9.396000px;}
.ws133{word-spacing:9.420000px;}
.ws3a{word-spacing:9.480000px;}
.ws6c{word-spacing:9.600000px;}
.wsd1{word-spacing:9.780000px;}
.wsf9{word-spacing:9.840000px;}
.wsc5{word-spacing:9.900000px;}
.ws182{word-spacing:9.936000px;}
.wsad{word-spacing:9.960000px;}
.ws183{word-spacing:9.990000px;}
.wsac{word-spacing:10.020000px;}
.ws4a{word-spacing:10.080000px;}
.ws100{word-spacing:10.200000px;}
.wsdd{word-spacing:10.314000px;}
.ws101{word-spacing:10.320000px;}
.ws176{word-spacing:10.368000px;}
.ws73{word-spacing:10.440000px;}
.ws18c{word-spacing:10.908000px;}
.ws58{word-spacing:10.920000px;}
.ws4b{word-spacing:11.160000px;}
.wsfe{word-spacing:11.280000px;}
.ws168{word-spacing:11.286000px;}
.wsff{word-spacing:11.400000px;}
.ws6a{word-spacing:11.760000px;}
.ws69{word-spacing:11.880000px;}
.ws8d{word-spacing:11.934000px;}
.ws142{word-spacing:11.940000px;}
.ws1a6{word-spacing:12.042000px;}
.wsc3{word-spacing:12.060000px;}
.wsc9{word-spacing:12.480000px;}
.ws18e{word-spacing:12.528000px;}
.ws6e{word-spacing:12.900000px;}
.ws17f{word-spacing:12.906000px;}
.ws157{word-spacing:13.500000px;}
.ws165{word-spacing:13.716000px;}
.ws170{word-spacing:14.148000px;}
.ws180{word-spacing:14.202000px;}
.ws181{word-spacing:14.364000px;}
.wsbd{word-spacing:14.640000px;}
.ws19d{word-spacing:14.904000px;}
.wsea{word-spacing:15.066000px;}
.wse9{word-spacing:15.228000px;}
.wse8{word-spacing:15.336000px;}
.wsbb{word-spacing:15.360000px;}
.ws10a{word-spacing:15.390000px;}
.wsba{word-spacing:15.480000px;}
.ws10b{word-spacing:15.498000px;}
.ws109{word-spacing:15.606000px;}
.wsd7{word-spacing:16.260000px;}
.ws169{word-spacing:17.658000px;}
.ws19c{word-spacing:17.874000px;}
.ws67{word-spacing:18.000000px;}
.wsbf{word-spacing:18.120000px;}
.ws1aa{word-spacing:18.144000px;}
.wscf{word-spacing:18.900000px;}
.ws19e{word-spacing:19.170000px;}
.wsf8{word-spacing:19.500000px;}
.wscc{word-spacing:19.800000px;}
.wsc1{word-spacing:20.160000px;}
.wsc7{word-spacing:20.280000px;}
.ws6d{word-spacing:20.700000px;}
.ws99{word-spacing:20.760000px;}
.ws16e{word-spacing:21.168000px;}
.ws17c{word-spacing:22.896000px;}
.ws13{word-spacing:23.544000px;}
.ws12{word-spacing:23.760000px;}
.ws14{word-spacing:23.922000px;}
.ws45{word-spacing:24.180000px;}
.ws16f{word-spacing:24.192000px;}
.ws44{word-spacing:24.420000px;}
.wsd0{word-spacing:25.920000px;}
.wsca{word-spacing:30.420000px;}
.ws117{word-spacing:34.091400px;}
.ws89{word-spacing:37.800000px;}
.wsbc{word-spacing:38.040000px;}
.ws80{word-spacing:38.728200px;}
.ws84{word-spacing:50.874600px;}
.ws7f{word-spacing:56.721000px;}
.wsc2{word-spacing:59.100000px;}
.ws82{word-spacing:61.215000px;}
.ws11c{word-spacing:62.580000px;}
.ws83{word-spacing:67.884600px;}
.ws116{word-spacing:70.119000px;}
.ws112{word-spacing:70.686000px;}
.ws111{word-spacing:70.959000px;}
.ws11b{word-spacing:75.495000px;}
.ws118{word-spacing:81.438000px;}
.wscb{word-spacing:83.640000px;}
.ws123{word-spacing:85.743000px;}
.wsbe{word-spacing:85.860000px;}
.ws114{word-spacing:89.208000px;}
.ws113{word-spacing:98.091000px;}
.ws60{word-spacing:99.540000px;}
.ws7a{word-spacing:99.960000px;}
.ws7b{word-spacing:107.520000px;}
.ws115{word-spacing:109.305000px;}
.ws86{word-spacing:110.976600px;}
.ws124{word-spacing:118.398000px;}
.ws11a{word-spacing:119.322000px;}
.ws7d{word-spacing:123.144000px;}
.ws110{word-spacing:129.066000px;}
.ws10e{word-spacing:129.591000px;}
.ws87{word-spacing:131.346600px;}
.ws7c{word-spacing:146.748000px;}
.ws85{word-spacing:148.356600px;}
.ws5f{word-spacing:158.718000px;}
.ws78{word-spacing:171.570000px;}
.ws7e{word-spacing:171.906000px;}
.ws125{word-spacing:178.500000px;}
.ws10f{word-spacing:223.767600px;}
.ws8a{word-spacing:408.408000px;}
._5a{margin-left:-22.334400px;}
._9{margin-left:-11.151000px;}
._5c{margin-left:-9.131400px;}
._15{margin-left:-7.308000px;}
._5{margin-left:-5.345400px;}
._2{margin-left:-3.998400px;}
._6{margin-left:-2.937600px;}
._0{margin-left:-1.377000px;}
._1{width:1.346400px;}
._3{width:2.662200px;}
._8{width:3.763800px;}
._7{width:5.632200px;}
._c{width:6.762000px;}
._5d{width:7.773600px;}
._a{width:8.790000px;}
._b{width:9.828000px;}
._4e{width:11.250600px;}
._16{width:12.510000px;}
._17{width:13.527000px;}
._4f{width:15.230400px;}
._4d{width:18.504000px;}
._4{width:36.369600px;}
._50{width:37.926000px;}
._23{width:39.873000px;}
._5b{width:42.523800px;}
._55{width:47.208000px;}
._25{width:51.744000px;}
._2a{width:53.883600px;}
._57{width:63.483000px;}
._2f{width:65.226000px;}
._24{width:68.649000px;}
._22{width:76.815600px;}
._1b{width:80.052000px;}
._11{width:87.189600px;}
._52{width:92.904000px;}
._21{width:94.248000px;}
._53{width:95.382000px;}
._1a{width:96.600000px;}
._d{width:100.086000px;}
._26{width:104.703600px;}
._27{width:109.071600px;}
._28{width:121.083600px;}
._54{width:122.724000px;}
._2e{width:124.826400px;}
._10{width:127.386000px;}
._1c{width:135.870000px;}
._29{width:141.749400px;}
._56{width:150.066000px;}
._1f{width:154.938000px;}
._2b{width:156.405600px;}
._2d{width:158.886000px;}
._51{width:164.304000px;}
._45{width:165.312000px;}
._58{width:167.538000px;}
._34{width:169.386000px;}
._19{width:170.688000px;}
._47{width:173.838000px;}
._59{width:175.686000px;}
._43{width:177.954000px;}
._2c{width:185.682000px;}
._46{width:196.208400px;}
._1d{width:201.474000px;}
._13{width:204.624000px;}
._20{width:211.125600px;}
._3d{width:213.780000px;}
._1e{width:222.306000px;}
._12{width:224.154000px;}
._e{width:234.402000px;}
._49{width:244.851000px;}
._30{width:247.212000px;}
._37{width:256.200000px;}
._4a{width:268.128000px;}
._f{width:271.152000px;}
._3a{width:283.668000px;}
._14{width:285.348000px;}
._4c{width:298.389600px;}
._36{width:313.869600px;}
._33{width:321.636000px;}
._18{width:334.958400px;}
._42{width:340.011600px;}
._3f{width:346.512600px;}
._40{width:360.768000px;}
._39{width:361.778400px;}
._44{width:364.665600px;}
._3c{width:414.519600px;}
._48{width:455.397000px;}
._4b{width:498.498000px;}
._32{width:508.956000px;}
._35{width:511.014000px;}
._38{width:586.110000px;}
._31{width:598.416000px;}
._41{width:630.378000px;}
._3e{width:639.618000px;}
._3b{width:711.984000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:24.486000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y22d{bottom:112.790850px;}
.y1fd{bottom:113.000850px;}
.y6f{bottom:113.078700px;}
.y109{bottom:113.078850px;}
.yeb{bottom:113.083500px;}
.ya7{bottom:117.027900px;}
.yc{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.y1b1{bottom:117.819750px;}
.y1ae{bottom:117.830250px;}
.y10e{bottom:120.482850px;}
.y79{bottom:120.496350px;}
.ya6{bottom:130.530900px;}
.y1b0{bottom:131.322750px;}
.y1ad{bottom:131.333250px;}
.yb{bottom:131.601450px;}
.y22c{bottom:133.796850px;}
.y1fc{bottom:134.006850px;}
.y6e{bottom:134.078700px;}
.y108{bottom:134.078850px;}
.yea{bottom:134.083500px;}
.y2a{bottom:138.212550px;}
.y10d{bottom:140.287350px;}
.y78{bottom:140.300850px;}
.y1af{bottom:144.825750px;}
.y1ac{bottom:144.836250px;}
.ya{bottom:145.997850px;}
.ya5{bottom:149.462400px;}
.y22b{bottom:154.802850px;}
.y1fb{bottom:155.012850px;}
.y6d{bottom:155.078700px;}
.y107{bottom:155.078850px;}
.ye9{bottom:155.083500px;}
.y29{bottom:159.212550px;}
.y10c{bottom:160.091850px;}
.y9{bottom:160.397850px;}
.y1ab{bottom:164.187750px;}
.y1a8{bottom:164.198250px;}
.ya4{bottom:168.393900px;}
.y22a{bottom:175.808850px;}
.y1fa{bottom:176.018850px;}
.y6c{bottom:176.078700px;}
.y106{bottom:176.078850px;}
.ye8{bottom:176.083500px;}
.y1aa{bottom:177.690750px;}
.y1a7{bottom:177.701250px;}
.y10b{bottom:179.896350px;}
.y28{bottom:180.212550px;}
.ya3{bottom:181.896900px;}
.y1a9{bottom:191.193750px;}
.y1a6{bottom:191.204250px;}
.y229{bottom:196.814850px;}
.y1f9{bottom:197.024850px;}
.y6b{bottom:197.078700px;}
.y105{bottom:197.078850px;}
.ye7{bottom:197.083500px;}
.y10a{bottom:199.700850px;}
.ya2{bottom:200.828400px;}
.y27{bottom:201.212550px;}
.y39{bottom:203.454300px;}
.y1a1{bottom:209.169750px;}
.ya1{bottom:214.331400px;}
.y228{bottom:217.820850px;}
.y1f8{bottom:218.030850px;}
.y6a{bottom:218.078700px;}
.y104{bottom:218.078850px;}
.ye6{bottom:218.083500px;}
.y38{bottom:221.449800px;}
.y26{bottom:222.212550px;}
.y1a4{bottom:222.662250px;}
.y1a0{bottom:222.672750px;}
.ya0{bottom:233.262900px;}
.y1a3{bottom:236.165250px;}
.y19f{bottom:236.175750px;}
.y227{bottom:238.826850px;}
.y1f7{bottom:239.036850px;}
.y69{bottom:239.078700px;}
.y103{bottom:239.078850px;}
.ye5{bottom:239.083500px;}
.y37{bottom:239.445300px;}
.y25{bottom:243.212550px;}
.y9f{bottom:246.765900px;}
.y1a5{bottom:249.657750px;}
.y1a2{bottom:249.668250px;}
.y19e{bottom:249.678750px;}
.y36{bottom:257.440800px;}
.y226{bottom:259.832850px;}
.y1f6{bottom:260.042850px;}
.y68{bottom:260.078700px;}
.y102{bottom:260.078850px;}
.ye4{bottom:260.083500px;}
.y24{bottom:264.212550px;}
.y9e{bottom:265.697400px;}
.y19b{bottom:267.633750px;}
.y198{bottom:267.644250px;}
.y7c{bottom:274.440900px;}
.y35{bottom:275.436300px;}
.y9d{bottom:279.200400px;}
.y225{bottom:280.838850px;}
.y1f5{bottom:281.048850px;}
.y67{bottom:281.078700px;}
.y101{bottom:281.078850px;}
.ye3{bottom:281.083500px;}
.y19d{bottom:281.126250px;}
.y19a{bottom:281.136750px;}
.y197{bottom:281.147250px;}
.y23{bottom:285.212550px;}
.y34{bottom:293.431800px;}
.y19c{bottom:294.629250px;}
.y199{bottom:294.639750px;}
.y196{bottom:294.650250px;}
.y9c{bottom:298.131900px;}
.y224{bottom:301.844850px;}
.y1f4{bottom:302.054850px;}
.y66{bottom:302.078700px;}
.y100{bottom:302.078850px;}
.ye2{bottom:302.083500px;}
.y22{bottom:306.212550px;}
.y33{bottom:311.427300px;}
.y9b{bottom:311.634900px;}
.y193{bottom:312.605250px;}
.y1db{bottom:316.440900px;}
.y223{bottom:322.850850px;}
.y1f3{bottom:323.060850px;}
.y65{bottom:323.078700px;}
.yff{bottom:323.078850px;}
.ye1{bottom:323.083500px;}
.y192{bottom:326.108250px;}
.y18e{bottom:326.118750px;}
.y9a{bottom:330.566400px;}
.y191{bottom:339.611250px;}
.y18d{bottom:339.621750px;}
.y21{bottom:341.700300px;}
.y222{bottom:343.856850px;}
.y1f2{bottom:344.066850px;}
.y99{bottom:344.069400px;}
.y64{bottom:344.078700px;}
.yfe{bottom:344.078850px;}
.ye0{bottom:344.083500px;}
.y32{bottom:346.432800px;}
.y195{bottom:353.103750px;}
.y190{bottom:353.114250px;}
.y18c{bottom:353.124750px;}
.y1dd{bottom:358.441050px;}
.y98{bottom:363.000900px;}
.y31{bottom:364.428300px;}
.y221{bottom:364.862850px;}
.y1f1{bottom:365.072850px;}
.y63{bottom:365.078700px;}
.yfd{bottom:365.078850px;}
.ydf{bottom:365.083500px;}
.y194{bottom:366.606750px;}
.y18f{bottom:366.617250px;}
.y18b{bottom:366.627750px;}
.y97{bottom:376.503900px;}
.y30{bottom:382.423800px;}
.y185{bottom:384.435150px;}
.y220{bottom:385.868850px;}
.y62{bottom:386.078700px;}
.yfc{bottom:386.078850px;}
.yde{bottom:386.083500px;}
.y96{bottom:395.435400px;}
.y184{bottom:397.938150px;}
.y188{bottom:398.085750px;}
.y21f{bottom:406.874850px;}
.y61{bottom:407.078700px;}
.yfb{bottom:407.078850px;}
.y95{bottom:408.938400px;}
.y183{bottom:411.441150px;}
.y18a{bottom:411.578250px;}
.y187{bottom:411.588750px;}
.y2f{bottom:417.429300px;}
.y1f0{bottom:421.441050px;}
.y20{bottom:422.227950px;}
.y186{bottom:424.933650px;}
.y182{bottom:424.944150px;}
.y189{bottom:425.081250px;}
.y94{bottom:427.869900px;}
.y21e{bottom:427.880850px;}
.y60{bottom:428.078700px;}
.yfa{bottom:428.078850px;}
.ydd{bottom:428.083500px;}
.y2e{bottom:435.429300px;}
.y93{bottom:441.372900px;}
.y17f{bottom:442.899150px;}
.y21d{bottom:448.886850px;}
.y5f{bottom:449.078700px;}
.yf9{bottom:449.078850px;}
.ydc{bottom:449.083500px;}
.y2d{bottom:453.429300px;}
.y17e{bottom:456.402150px;}
.y17b{bottom:456.412650px;}
.y178{bottom:456.423150px;}
.y92{bottom:460.304400px;}
.y1f{bottom:463.215750px;}
.y21c{bottom:469.892850px;}
.y181{bottom:469.894650px;}
.y17d{bottom:469.905150px;}
.y17a{bottom:469.915650px;}
.y177{bottom:469.926150px;}
.y5e{bottom:470.078700px;}
.yf8{bottom:470.078850px;}
.y2c{bottom:471.429300px;}
.y91{bottom:473.807400px;}
.y110{bottom:475.701150px;}
.y1e{bottom:483.020250px;}
.y180{bottom:483.397650px;}
.y17c{bottom:483.408150px;}
.y179{bottom:483.418650px;}
.y176{bottom:483.429150px;}
.y21b{bottom:490.898850px;}
.y5d{bottom:491.078700px;}
.yf7{bottom:491.078850px;}
.y90{bottom:492.738900px;}
.y10f{bottom:495.505650px;}
.y1ef{bottom:496.529400px;}
.y173{bottom:501.384150px;}
.y1d{bottom:502.824750px;}
.y1dc{bottom:505.441050px;}
.y8f{bottom:506.241900px;}
.y21a{bottom:511.904850px;}
.y5c{bottom:512.078700px;}
.yf6{bottom:512.078850px;}
.ydb{bottom:512.083500px;}
.y172{bottom:514.887150px;}
.y1c{bottom:522.629250px;}
.y8e{bottom:525.173400px;}
.y171{bottom:528.390150px;}
.y219{bottom:532.910850px;}
.y1ee{bottom:533.072850px;}
.y5b{bottom:533.078700px;}
.yf5{bottom:533.078850px;}
.yda{bottom:533.083500px;}
.y8d{bottom:538.676400px;}
.y175{bottom:541.882650px;}
.y170{bottom:541.893150px;}
.y1b{bottom:542.433750px;}
.y218{bottom:553.916850px;}
.y1ed{bottom:554.072850px;}
.y5a{bottom:554.078700px;}
.yf4{bottom:554.078850px;}
.yd9{bottom:554.083500px;}
.y174{bottom:555.385650px;}
.y16f{bottom:555.396150px;}
.y8c{bottom:557.607900px;}
.y1a{bottom:562.238250px;}
.y8b{bottom:571.110900px;}
.y16c{bottom:573.351150px;}
.y169{bottom:573.361650px;}
.y217{bottom:574.922850px;}
.y59{bottom:575.078700px;}
.yf3{bottom:575.078850px;}
.yd8{bottom:575.083500px;}
.y19{bottom:582.042750px;}
.y16e{bottom:586.843650px;}
.y16b{bottom:586.854150px;}
.y168{bottom:586.864650px;}
.y8a{bottom:590.042400px;}
.y216{bottom:595.928850px;}
.y58{bottom:596.078700px;}
.yf2{bottom:596.078850px;}
.yd7{bottom:596.083500px;}
.y16d{bottom:600.346650px;}
.y16a{bottom:600.357150px;}
.y167{bottom:600.367650px;}
.y1ec{bottom:601.529400px;}
.y18{bottom:601.847250px;}
.y89{bottom:608.973900px;}
.y215{bottom:616.934850px;}
.y57{bottom:617.078700px;}
.yf1{bottom:617.078850px;}
.yd6{bottom:617.083500px;}
.y161{bottom:618.333150px;}
.y17{bottom:621.651750px;}
.y88{bottom:627.905400px;}
.y160{bottom:631.836150px;}
.y214{bottom:637.940850px;}
.y1eb{bottom:638.066850px;}
.y56{bottom:638.078700px;}
.yc8{bottom:638.078850px;}
.yd5{bottom:638.083500px;}
.y16{bottom:641.456250px;}
.y164{bottom:645.328650px;}
.y15f{bottom:645.339150px;}
.y87{bottom:646.836900px;}
.y166{bottom:658.821150px;}
.y163{bottom:658.831650px;}
.y15e{bottom:658.842150px;}
.y213{bottom:658.946850px;}
.y1ea{bottom:659.072850px;}
.y55{bottom:659.078700px;}
.yc7{bottom:659.078850px;}
.yd4{bottom:659.083500px;}
.y15{bottom:661.260750px;}
.y86{bottom:665.768400px;}
.y165{bottom:672.324150px;}
.y162{bottom:672.334650px;}
.y15d{bottom:672.345150px;}
.y212{bottom:679.952850px;}
.y54{bottom:680.078700px;}
.yc6{bottom:680.078850px;}
.yd3{bottom:680.083500px;}
.y14{bottom:681.065250px;}
.y85{bottom:684.699900px;}
.y153{bottom:690.321150px;}
.y84{bottom:698.202900px;}
.y13{bottom:700.869750px;}
.y211{bottom:700.958850px;}
.y53{bottom:701.078700px;}
.yc5{bottom:701.078850px;}
.yd2{bottom:701.083500px;}
.y15a{bottom:703.803150px;}
.y152{bottom:703.824150px;}
.y1e9{bottom:706.529400px;}
.y83{bottom:717.134400px;}
.y159{bottom:717.306150px;}
.y156{bottom:717.316650px;}
.y151{bottom:717.327150px;}
.y12{bottom:720.674250px;}
.y210{bottom:721.964850px;}
.y52{bottom:722.078700px;}
.yc4{bottom:722.078850px;}
.yd1{bottom:722.083500px;}
.y15c{bottom:730.798650px;}
.y158{bottom:730.809150px;}
.y155{bottom:730.819650px;}
.y150{bottom:730.830150px;}
.y82{bottom:736.065900px;}
.y7b{bottom:736.440900px;}
.y11{bottom:740.478750px;}
.y20f{bottom:742.970850px;}
.y1e8{bottom:743.042850px;}
.y51{bottom:743.078700px;}
.yc3{bottom:743.078850px;}
.y15b{bottom:744.301650px;}
.y157{bottom:744.312150px;}
.y154{bottom:744.322650px;}
.y14f{bottom:744.333150px;}
.y81{bottom:745.106400px;}
.y10{bottom:760.283250px;}
.y143{bottom:762.195900px;}
.y148{bottom:762.298650px;}
.y20e{bottom:763.976850px;}
.y1e7{bottom:764.048850px;}
.y50{bottom:764.078700px;}
.yc2{bottom:764.078850px;}
.yd0{bottom:764.083500px;}
.y142{bottom:775.698900px;}
.y14c{bottom:775.791150px;}
.y147{bottom:775.801650px;}
.yf{bottom:780.087750px;}
.y80{bottom:783.489600px;}
.y20d{bottom:784.982850px;}
.y1e6{bottom:785.054850px;}
.y4f{bottom:785.078700px;}
.yc1{bottom:785.078850px;}
.ycf{bottom:785.083500px;}
.y141{bottom:789.201900px;}
.y13e{bottom:789.212400px;}
.y14b{bottom:789.294150px;}
.y146{bottom:789.304650px;}
.y77{bottom:792.488250px;}
.y145{bottom:802.694400px;}
.y140{bottom:802.704900px;}
.y13d{bottom:802.715400px;}
.y14e{bottom:802.786650px;}
.y14a{bottom:802.797150px;}
.y7f{bottom:803.294100px;}
.y20c{bottom:805.988850px;}
.y1e5{bottom:806.060850px;}
.y4e{bottom:806.078700px;}
.yc0{bottom:806.078850px;}
.yce{bottom:806.083500px;}
.ye{bottom:811.185300px;}
.y76{bottom:813.971250px;}
.y144{bottom:816.197400px;}
.y13f{bottom:816.207900px;}
.y13c{bottom:816.218400px;}
.y14d{bottom:816.289650px;}
.y149{bottom:816.300150px;}
.y7e{bottom:823.098600px;}
.y20b{bottom:826.994850px;}
.y1e4{bottom:827.066850px;}
.y4d{bottom:827.078700px;}
.yf0{bottom:827.078850px;}
.y136{bottom:834.183900px;}
.y75{bottom:835.454250px;}
.ybf{bottom:840.513600px;}
.y7d{bottom:842.903100px;}
.y139{bottom:847.676400px;}
.y135{bottom:847.686900px;}
.y20a{bottom:848.000850px;}
.y1e3{bottom:848.072850px;}
.y4c{bottom:848.078700px;}
.yef{bottom:848.078850px;}
.ycd{bottom:848.083500px;}
.y1d8{bottom:849.989250px;}
.y1d4{bottom:849.999750px;}
.y74{bottom:856.937250px;}
.y13b{bottom:861.168900px;}
.y138{bottom:861.179400px;}
.y134{bottom:861.189900px;}
.y1d7{bottom:863.492250px;}
.y1d3{bottom:863.502750px;}
.y209{bottom:869.006850px;}
.y4b{bottom:869.078700px;}
.yee{bottom:869.078850px;}
.ybe{bottom:872.811000px;}
.y13a{bottom:874.671900px;}
.y137{bottom:874.682400px;}
.y133{bottom:874.692900px;}
.y1da{bottom:876.984750px;}
.y1d6{bottom:876.995250px;}
.y1d2{bottom:877.005750px;}
.y73{bottom:878.420250px;}
.y208{bottom:890.012850px;}
.y4a{bottom:890.078700px;}
.yed{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y1d9{bottom:890.487750px;}
.y1d5{bottom:890.498250px;}
.y1d1{bottom:890.508750px;}
.y130{bottom:892.647900px;}
.ycc{bottom:893.143500px;}
.y1e2{bottom:895.529250px;}
.yb3{bottom:900.611100px;}
.y12f{bottom:906.150900px;}
.y12c{bottom:906.161400px;}
.y129{bottom:906.171900px;}
.y7{bottom:908.466750px;}
.y1cc{bottom:908.474250px;}
.y72{bottom:909.052800px;}
.y207{bottom:911.018850px;}
.y49{bottom:911.078700px;}
.yec{bottom:911.078850px;}
.ycb{bottom:914.143500px;}
.yb2{bottom:919.542600px;}
.y132{bottom:919.643400px;}
.y12e{bottom:919.653900px;}
.y12b{bottom:919.664400px;}
.y128{bottom:919.674900px;}
.y1cf{bottom:921.966750px;}
.y1cb{bottom:921.977250px;}
.y6{bottom:926.466750px;}
.y206{bottom:932.024850px;}
.y48{bottom:932.078700px;}
.ybd{bottom:932.078850px;}
.y131{bottom:933.146400px;}
.y12d{bottom:933.156900px;}
.y12a{bottom:933.167400px;}
.y127{bottom:933.177900px;}
.yca{bottom:935.143500px;}
.y1ce{bottom:935.469750px;}
.y1ca{bottom:935.480250px;}
.yb1{bottom:938.474100px;}
.y5{bottom:944.466750px;}
.y1d0{bottom:948.962250px;}
.y1cd{bottom:948.972750px;}
.y1c9{bottom:948.983250px;}
.y124{bottom:951.132900px;}
.y11f{bottom:951.143400px;}
.y205{bottom:953.030850px;}
.y47{bottom:953.078700px;}
.ybc{bottom:953.078850px;}
.yb0{bottom:957.405600px;}
.y1e1{bottom:958.529250px;}
.y123{bottom:964.635900px;}
.y11e{bottom:964.646400px;}
.y1c7{bottom:966.938250px;}
.yc9{bottom:967.441050px;}
.y204{bottom:974.036850px;}
.y46{bottom:974.078700px;}
.ybb{bottom:974.078850px;}
.yaf{bottom:976.337100px;}
.y122{bottom:978.138900px;}
.y11d{bottom:978.149400px;}
.y4{bottom:979.474800px;}
.y1c6{bottom:980.441250px;}
.y126{bottom:991.631400px;}
.y121{bottom:991.641900px;}
.y11c{bottom:991.652400px;}
.y1c8{bottom:993.933750px;}
.y1c5{bottom:993.944250px;}
.y203{bottom:995.042850px;}
.y45{bottom:995.078700px;}
.yba{bottom:995.078850px;}
.yae{bottom:995.268600px;}
.y125{bottom:1005.134400px;}
.y120{bottom:1005.144900px;}
.y11b{bottom:1005.155400px;}
.y1c4{bottom:1011.899250px;}
.y1c1{bottom:1011.909750px;}
.yad{bottom:1014.200100px;}
.y202{bottom:1016.048850px;}
.y44{bottom:1016.078700px;}
.yb9{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y1e0{bottom:1021.529250px;}
.y11a{bottom:1023.099900px;}
.y117{bottom:1023.110400px;}
.y1c3{bottom:1025.402250px;}
.y1c0{bottom:1025.412750px;}
.y114{bottom:1029.861900px;}
.yac{bottom:1033.131600px;}
.y119{bottom:1036.602900px;}
.y113{bottom:1036.613400px;}
.y201{bottom:1037.054850px;}
.y43{bottom:1037.078700px;}
.yb8{bottom:1037.078850px;}
.y1c2{bottom:1038.905250px;}
.y1bf{bottom:1038.915750px;}
.y115{bottom:1043.364900px;}
.y2{bottom:1049.282550px;}
.y118{bottom:1050.105900px;}
.y116{bottom:1050.116400px;}
.yab{bottom:1052.063100px;}
.y1bc{bottom:1056.870750px;}
.y200{bottom:1058.060850px;}
.y42{bottom:1058.078700px;}
.yb7{bottom:1058.078850px;}
.y1be{bottom:1070.363250px;}
.y1bb{bottom:1070.373750px;}
.yaa{bottom:1070.994600px;}
.y1ff{bottom:1079.066850px;}
.y41{bottom:1079.078700px;}
.yb6{bottom:1079.078850px;}
.y112{bottom:1079.673900px;}
.y1bd{bottom:1083.866250px;}
.y1ba{bottom:1083.876750px;}
.y1df{bottom:1084.192950px;}
.ya9{bottom:1089.926100px;}
.y71{bottom:1092.029250px;}
.y111{bottom:1099.478400px;}
.y1fe{bottom:1100.072850px;}
.y40{bottom:1100.078700px;}
.yb5{bottom:1100.078850px;}
.y1b9{bottom:1102.125750px;}
.y1b6{bottom:1102.136250px;}
.y1b3{bottom:1108.887750px;}
.yd{bottom:1109.815500px;}
.y7a{bottom:1112.695800px;}
.y1de{bottom:1113.696900px;}
.y1b8{bottom:1115.628750px;}
.y1b2{bottom:1115.639250px;}
.ya8{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.yb4{bottom:1121.078850px;}
.y1b4{bottom:1122.390750px;}
.y70{bottom:1124.326650px;}
.y1b7{bottom:1129.131750px;}
.y1b5{bottom:1129.142250px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h15{height:31.500000px;}
.h17{height:31.930664px;}
.h12{height:33.448242px;}
.h16{height:33.694336px;}
.h19{height:34.070798px;}
.h1a{height:34.326736px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:36.688477px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.h1b{height:43.345289px;}
.h9{height:45.615234px;}
.hb{height:47.170898px;}
.hd{height:48.134766px;}
.h11{height:50.176758px;}
.he{height:52.412109px;}
.h4{height:52.948242px;}
.hc{height:54.738281px;}
.h18{height:60.454242px;}
.h14{height:69.610242px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.067450px;}
.xc{left:108.293250px;}
.xd{left:112.253100px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x1b{left:126.061200px;}
.x1e{left:135.143850px;}
.xe{left:166.665900px;}
.x1c{left:172.628700px;}
.x68{left:202.902600px;}
.x6a{left:204.593100px;}
.x47{left:211.216350px;}
.x1f{left:212.896350px;}
.x73{left:215.321850px;}
.x21{left:244.910850px;}
.x3f{left:246.233850px;}
.x4e{left:247.881300px;}
.x35{left:248.953350px;}
.x50{left:250.264800px;}
.x48{left:251.599350px;}
.x4f{left:252.858300px;}
.x20{left:254.087850px;}
.x10{left:261.092400px;}
.x55{left:263.305800px;}
.x16{left:265.302900px;}
.x19{left:266.415900px;}
.x13{left:268.242900px;}
.x6d{left:271.717350px;}
.x17{left:273.870900px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.x74{left:330.034350px;}
.x62{left:331.135800px;}
.x67{left:333.302100px;}
.x40{left:334.496850px;}
.x56{left:335.839800px;}
.x61{left:337.666800px;}
.x37{left:338.707350px;}
.x36{left:340.576350px;}
.x29{left:342.308850px;}
.x11{left:346.961400px;}
.x65{left:348.569100px;}
.x51{left:351.862800px;}
.x41{left:355.916850px;}
.x76{left:357.176850px;}
.x69{left:364.119600px;}
.x18{left:367.415400px;}
.x14{left:384.498900px;}
.x3{left:396.050700px;}
.x42{left:414.979350px;}
.x49{left:417.037350px;}
.x52{left:418.464300px;}
.x2a{left:420.502350px;}
.x57{left:423.000300px;}
.x2b{left:424.786350px;}
.x4a{left:426.844350px;}
.x39{left:428.251350px;}
.x38{left:432.871350px;}
.x5c{left:435.862800px;}
.x70{left:437.900850px;}
.x2c{left:439.496850px;}
.x53{left:441.343800px;}
.x58{left:443.317800px;}
.x66{left:444.507600px;}
.x15{left:471.533400px;}
.x12{left:483.986400px;}
.x4c{left:501.162300px;}
.x23{left:502.591350px;}
.x22{left:505.384350px;}
.x24{left:507.326850px;}
.x4b{left:509.657850px;}
.x43{left:512.177850px;}
.x63{left:513.755100px;}
.x5d{left:527.758800px;}
.x2d{left:528.967350px;}
.xf{left:553.149900px;}
.x25{left:573.938850px;}
.x3a{left:576.374850px;}
.x26{left:578.495850px;}
.x27{left:581.509350px;}
.x2e{left:582.559350px;}
.x6b{left:586.625100px;}
.x71{left:627.677850px;}
.x32{left:628.780350px;}
.x31{left:629.830350px;}
.x3b{left:630.964350px;}
.x30{left:633.872850px;}
.x2f{left:635.216850px;}
.x3c{left:637.295850px;}
.x5e{left:638.544300px;}
.x5f{left:640.402800px;}
.x60{left:641.410800px;}
.x59{left:644.833800px;}
.x4d{left:646.062300px;}
.x75{left:647.281350px;}
.x9{left:648.919350px;}
.x28{left:654.463350px;}
.x44{left:655.828350px;}
.x54{left:661.717800px;}
.x8{left:687.487350px;}
.x3e{left:712.622850px;}
.x6f{left:714.985350px;}
.x72{left:716.665350px;}
.x33{left:718.114350px;}
.x34{left:721.463850px;}
.x5a{left:724.696800px;}
.x3d{left:726.094350px;}
.x6e{left:727.459350px;}
.x6c{left:728.847600px;}
.x5b{left:731.721300px;}
.x45{left:734.042850px;}
.x46{left:737.444850px;}
.x64{left:749.322600px;}
.x1a{left:760.251900px;}
.x1d{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v5{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.824000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:24.005333pt;}
.v2{vertical-align:32.144000pt;}
.ls13{letter-spacing:-6.432000pt;}
.ls12{letter-spacing:-2.880000pt;}
.ls9{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.906667pt;}
.ls22{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.816000pt;}
.ls7{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls2f{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls32{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.432000pt;}
.ls28{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.362667pt;}
.ls31{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls2b{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.633600pt;}
.ls3{letter-spacing:1.872000pt;}
.ls15{letter-spacing:9.333333pt;}
.ls16{letter-spacing:13.776000pt;}
.ls1{letter-spacing:21.148800pt;}
.ls0{letter-spacing:38.383435pt;}
.lsc{letter-spacing:126.112000pt;}
.ls23{letter-spacing:132.794667pt;}
.ls20{letter-spacing:136.864000pt;}
.ls21{letter-spacing:140.970667pt;}
.ls1e{letter-spacing:151.722667pt;}
.ls1a{letter-spacing:152.768000pt;}
.ls18{letter-spacing:155.306667pt;}
.ls1b{letter-spacing:158.106667pt;}
.ls1d{letter-spacing:163.109333pt;}
.ls25{letter-spacing:165.424000pt;}
.ls1f{letter-spacing:171.509333pt;}
.ls1c{letter-spacing:179.722667pt;}
.ls24{letter-spacing:183.120000pt;}
.ls19{letter-spacing:183.792000pt;}
.ws6{word-spacing:-15.936000pt;}
.wsa2{word-spacing:-14.608000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws65{word-spacing:-13.226667pt;}
.wsa3{word-spacing:-13.173333pt;}
.ws92{word-spacing:-13.066667pt;}
.wsa5{word-spacing:-12.906667pt;}
.wsa4{word-spacing:-12.853333pt;}
.ws132{word-spacing:-12.800000pt;}
.wsb9{word-spacing:-12.693333pt;}
.ws32{word-spacing:-12.533333pt;}
.ws66{word-spacing:-12.426667pt;}
.wsef{word-spacing:-12.373333pt;}
.wsfc{word-spacing:-12.320000pt;}
.ws31{word-spacing:-12.266667pt;}
.ws126{word-spacing:-12.160000pt;}
.wsd8{word-spacing:-11.952000pt;}
.ws152{word-spacing:-11.904000pt;}
.ws15e{word-spacing:-11.856000pt;}
.ws173{word-spacing:-11.808000pt;}
.wsfd{word-spacing:-11.760000pt;}
.ws19a{word-spacing:-11.712000pt;}
.ws19b{word-spacing:-11.568000pt;}
.ws187{word-spacing:-11.472000pt;}
.ws15d{word-spacing:-11.376000pt;}
.ws199{word-spacing:-11.184000pt;}
.ws174{word-spacing:-11.088000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsc{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws30{word-spacing:-9.600000pt;}
.ws119{word-spacing:-9.258667pt;}
.wsd9{word-spacing:-9.072000pt;}
.ws88{word-spacing:-8.885333pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws81{word-spacing:-8.512000pt;}
.ws1{word-spacing:-8.482261pt;}
.ws79{word-spacing:-8.400000pt;}
.ws102{word-spacing:-7.200000pt;}
.ws103{word-spacing:-7.146667pt;}
.wscd{word-spacing:-6.826667pt;}
.wsce{word-spacing:-6.773333pt;}
.ws9c{word-spacing:-6.666667pt;}
.ws167{word-spacing:-6.288000pt;}
.ws1a0{word-spacing:-5.616000pt;}
.wsda{word-spacing:-5.520000pt;}
.ws179{word-spacing:-5.136000pt;}
.ws160{word-spacing:-4.512000pt;}
.ws159{word-spacing:-4.464000pt;}
.ws163{word-spacing:-4.416000pt;}
.ws1a8{word-spacing:-4.224000pt;}
.wsc8{word-spacing:-3.733333pt;}
.ws1ab{word-spacing:-3.504000pt;}
.ws29{word-spacing:-3.413333pt;}
.ws178{word-spacing:-3.312000pt;}
.wsb2{word-spacing:-3.306667pt;}
.wsb3{word-spacing:-3.253333pt;}
.wsb1{word-spacing:-3.040000pt;}
.wsb5{word-spacing:-2.986667pt;}
.wsc4{word-spacing:-2.880000pt;}
.ws1d{word-spacing:-2.688000pt;}
.wsf5{word-spacing:-2.560000pt;}
.ws64{word-spacing:-2.448000pt;}
.wse1{word-spacing:-2.400000pt;}
.ws106{word-spacing:-2.346667pt;}
.ws13c{word-spacing:-2.293333pt;}
.ws17d{word-spacing:-2.256000pt;}
.ws51{word-spacing:-2.240000pt;}
.wsed{word-spacing:-2.208000pt;}
.ws2c{word-spacing:-2.186667pt;}
.ws140{word-spacing:-2.133333pt;}
.wsb7{word-spacing:-2.080000pt;}
.wsde{word-spacing:-2.064000pt;}
.ws1c{word-spacing:-2.016000pt;}
.wsa6{word-spacing:-1.920000pt;}
.ws52{word-spacing:-1.813333pt;}
.ws166{word-spacing:-1.776000pt;}
.ws9d{word-spacing:-1.760000pt;}
.ws13a{word-spacing:-1.706667pt;}
.ws14e{word-spacing:-1.653333pt;}
.wsc0{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.584000pt;}
.wsaa{word-spacing:-1.546667pt;}
.ws5a{word-spacing:-1.493333pt;}
.ws177{word-spacing:-1.488000pt;}
.ws190{word-spacing:-1.392000pt;}
.wsd2{word-spacing:-1.386667pt;}
.ws147{word-spacing:-1.333333pt;}
.ws194{word-spacing:-1.296000pt;}
.ws4f{word-spacing:-1.280000pt;}
.wsa9{word-spacing:-1.226667pt;}
.ws57{word-spacing:-1.120000pt;}
.wsf{word-spacing:-1.114667pt;}
.ws120{word-spacing:-1.082667pt;}
.ws28{word-spacing:-1.066667pt;}
.ws156{word-spacing:-1.056000pt;}
.ws5c{word-spacing:-1.013333pt;}
.ws197{word-spacing:-1.008000pt;}
.ws141{word-spacing:-0.960000pt;}
.ws188{word-spacing:-0.912000pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws15f{word-spacing:-0.864000pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws192{word-spacing:-0.816000pt;}
.ws26{word-spacing:-0.800000pt;}
.ws151{word-spacing:-0.746667pt;}
.ws122{word-spacing:-0.709333pt;}
.ws13d{word-spacing:-0.693333pt;}
.ws158{word-spacing:-0.672000pt;}
.wse4{word-spacing:-0.640000pt;}
.ws76{word-spacing:-0.586667pt;}
.ws93{word-spacing:-0.533333pt;}
.wsc6{word-spacing:-0.480000pt;}
.ws11f{word-spacing:-0.448000pt;}
.wsd4{word-spacing:-0.426667pt;}
.ws90{word-spacing:-0.373333pt;}
.ws91{word-spacing:-0.298667pt;}
.ws145{word-spacing:-0.266667pt;}
.ws53{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws43{word-spacing:-0.160000pt;}
.ws121{word-spacing:-0.112000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws95{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws184{word-spacing:0.048000pt;}
.ws54{word-spacing:0.053333pt;}
.ws10c{word-spacing:0.096000pt;}
.ws104{word-spacing:0.106667pt;}
.wsb6{word-spacing:0.160000pt;}
.ws136{word-spacing:0.213333pt;}
.ws15b{word-spacing:0.240000pt;}
.ws13f{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws38{word-spacing:0.320000pt;}
.ws171{word-spacing:0.336000pt;}
.wse{word-spacing:0.362667pt;}
.wsb8{word-spacing:0.373333pt;}
.ws5d{word-spacing:0.426667pt;}
.ws17e{word-spacing:0.432000pt;}
.wsdb{word-spacing:0.480000pt;}
.ws162{word-spacing:0.528000pt;}
.ws5e{word-spacing:0.533333pt;}
.ws1ac{word-spacing:0.576000pt;}
.ws11{word-spacing:0.614400pt;}
.ws96{word-spacing:0.640000pt;}
.ws20{word-spacing:0.672000pt;}
.ws19{word-spacing:0.720000pt;}
.ws8f{word-spacing:0.746667pt;}
.ws2d{word-spacing:0.800000pt;}
.ws2f{word-spacing:0.816000pt;}
.ws47{word-spacing:0.853333pt;}
.ws8e{word-spacing:0.864000pt;}
.wsf6{word-spacing:0.906667pt;}
.ws18f{word-spacing:0.912000pt;}
.ws56{word-spacing:0.960000pt;}
.ws55{word-spacing:1.013333pt;}
.ws18{word-spacing:1.056000pt;}
.ws4d{word-spacing:1.066667pt;}
.ws13b{word-spacing:1.120000pt;}
.ws139{word-spacing:1.173333pt;}
.ws138{word-spacing:1.226667pt;}
.ws37{word-spacing:1.333333pt;}
.ws75{word-spacing:1.386667pt;}
.ws1b{word-spacing:1.392000pt;}
.ws1a{word-spacing:1.440000pt;}
.wsf1{word-spacing:1.493333pt;}
.ws17b{word-spacing:1.536000pt;}
.ws48{word-spacing:1.546667pt;}
.wsaf{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.653333pt;}
.ws3d{word-spacing:1.706667pt;}
.ws15{word-spacing:1.728000pt;}
.ws149{word-spacing:1.760000pt;}
.ws68{word-spacing:1.813333pt;}
.wsa1{word-spacing:1.824000pt;}
.ws25{word-spacing:1.866667pt;}
.ws21{word-spacing:1.872000pt;}
.ws22{word-spacing:1.920000pt;}
.wsa8{word-spacing:1.973333pt;}
.ws1f{word-spacing:2.016000pt;}
.wsa7{word-spacing:2.026667pt;}
.wsf7{word-spacing:2.080000pt;}
.ws1a9{word-spacing:2.112000pt;}
.ws12f{word-spacing:2.133333pt;}
.ws2a{word-spacing:2.186667pt;}
.ws1a1{word-spacing:2.208000pt;}
.ws186{word-spacing:2.256000pt;}
.ws41{word-spacing:2.293333pt;}
.ws1a3{word-spacing:2.304000pt;}
.ws74{word-spacing:2.346667pt;}
.ws3f{word-spacing:2.400000pt;}
.ws18a{word-spacing:2.448000pt;}
.ws105{word-spacing:2.453333pt;}
.ws164{word-spacing:2.496000pt;}
.wsd5{word-spacing:2.506667pt;}
.ws3c{word-spacing:2.560000pt;}
.ws16c{word-spacing:2.592000pt;}
.wsf3{word-spacing:2.613333pt;}
.ws1ae{word-spacing:2.640000pt;}
.ws50{word-spacing:2.666667pt;}
.wse2{word-spacing:2.720000pt;}
.ws18b{word-spacing:2.736000pt;}
.ws1a4{word-spacing:2.784000pt;}
.wsee{word-spacing:2.880000pt;}
.wsae{word-spacing:2.933333pt;}
.wsf2{word-spacing:2.986667pt;}
.ws12d{word-spacing:3.040000pt;}
.ws146{word-spacing:3.093333pt;}
.wsd3{word-spacing:3.200000pt;}
.ws17{word-spacing:3.216000pt;}
.ws98{word-spacing:3.253333pt;}
.ws196{word-spacing:3.264000pt;}
.wsb0{word-spacing:3.360000pt;}
.ws175{word-spacing:3.408000pt;}
.ws185{word-spacing:3.456000pt;}
.ws97{word-spacing:3.466667pt;}
.ws15a{word-spacing:3.504000pt;}
.ws16{word-spacing:3.552000pt;}
.ws107{word-spacing:3.573333pt;}
.wsec{word-spacing:3.600000pt;}
.ws108{word-spacing:3.626667pt;}
.ws46{word-spacing:3.680000pt;}
.ws148{word-spacing:3.733333pt;}
.wse7{word-spacing:3.744000pt;}
.wsf4{word-spacing:3.786667pt;}
.wse6{word-spacing:3.792000pt;}
.ws9a{word-spacing:3.840000pt;}
.ws10d{word-spacing:3.888000pt;}
.ws14a{word-spacing:3.893333pt;}
.ws19f{word-spacing:3.936000pt;}
.ws59{word-spacing:3.946667pt;}
.ws189{word-spacing:3.984000pt;}
.ws36{word-spacing:4.000000pt;}
.ws23{word-spacing:4.032000pt;}
.ws35{word-spacing:4.053333pt;}
.ws137{word-spacing:4.106667pt;}
.wsdf{word-spacing:4.160000pt;}
.ws128{word-spacing:4.213333pt;}
.ws24{word-spacing:4.224000pt;}
.ws40{word-spacing:4.266667pt;}
.ws143{word-spacing:4.320000pt;}
.ws6b{word-spacing:4.373333pt;}
.ws71{word-spacing:4.426667pt;}
.wsdc{word-spacing:4.464000pt;}
.wsa0{word-spacing:4.480000pt;}
.wseb{word-spacing:4.512000pt;}
.ws9f{word-spacing:4.533333pt;}
.ws172{word-spacing:4.608000pt;}
.wse0{word-spacing:4.640000pt;}
.wsd6{word-spacing:4.693333pt;}
.ws70{word-spacing:4.746667pt;}
.ws6f{word-spacing:4.800000pt;}
.wse5{word-spacing:4.853333pt;}
.ws155{word-spacing:4.992000pt;}
.ws14c{word-spacing:5.013333pt;}
.ws193{word-spacing:5.040000pt;}
.ws14b{word-spacing:5.066667pt;}
.ws17a{word-spacing:5.088000pt;}
.ws33{word-spacing:5.120000pt;}
.wsab{word-spacing:5.173333pt;}
.ws61{word-spacing:5.226667pt;}
.ws198{word-spacing:5.232000pt;}
.ws15c{word-spacing:5.328000pt;}
.ws13e{word-spacing:5.333333pt;}
.ws129{word-spacing:5.386667pt;}
.ws154{word-spacing:5.424000pt;}
.ws49{word-spacing:5.440000pt;}
.ws14f{word-spacing:5.493333pt;}
.ws11e{word-spacing:5.520000pt;}
.ws14d{word-spacing:5.600000pt;}
.ws12b{word-spacing:5.653333pt;}
.wse3{word-spacing:5.706667pt;}
.ws72{word-spacing:5.760000pt;}
.ws12e{word-spacing:5.813333pt;}
.ws191{word-spacing:5.856000pt;}
.ws39{word-spacing:5.920000pt;}
.ws1a5{word-spacing:5.952000pt;}
.ws63{word-spacing:5.973333pt;}
.ws8c{word-spacing:6.000000pt;}
.ws8b{word-spacing:6.048000pt;}
.ws77{word-spacing:6.080000pt;}
.ws135{word-spacing:6.133333pt;}
.ws195{word-spacing:6.192000pt;}
.ws12c{word-spacing:6.240000pt;}
.ws127{word-spacing:6.293333pt;}
.ws34{word-spacing:6.346667pt;}
.ws134{word-spacing:6.400000pt;}
.ws4c{word-spacing:6.453333pt;}
.ws2e{word-spacing:6.613333pt;}
.ws5b{word-spacing:6.666667pt;}
.ws11d{word-spacing:6.672000pt;}
.ws16b{word-spacing:6.720000pt;}
.ws42{word-spacing:6.773333pt;}
.ws16d{word-spacing:6.864000pt;}
.ws161{word-spacing:6.912000pt;}
.ws150{word-spacing:6.933333pt;}
.wsb4{word-spacing:6.986667pt;}
.wsfb{word-spacing:7.040000pt;}
.ws16a{word-spacing:7.056000pt;}
.wsfa{word-spacing:7.093333pt;}
.ws12a{word-spacing:7.200000pt;}
.ws94{word-spacing:7.360000pt;}
.ws131{word-spacing:7.520000pt;}
.ws153{word-spacing:7.536000pt;}
.ws130{word-spacing:7.573333pt;}
.wsf0{word-spacing:7.626667pt;}
.ws62{word-spacing:7.680000pt;}
.ws9b{word-spacing:7.733333pt;}
.ws144{word-spacing:7.840000pt;}
.ws18d{word-spacing:7.872000pt;}
.ws1a7{word-spacing:7.920000pt;}
.ws9e{word-spacing:8.000000pt;}
.ws1a2{word-spacing:8.304000pt;}
.ws3b{word-spacing:8.320000pt;}
.ws1ad{word-spacing:8.352000pt;}
.ws133{word-spacing:8.373333pt;}
.ws3a{word-spacing:8.426667pt;}
.ws6c{word-spacing:8.533333pt;}
.wsd1{word-spacing:8.693333pt;}
.wsf9{word-spacing:8.746667pt;}
.wsc5{word-spacing:8.800000pt;}
.ws182{word-spacing:8.832000pt;}
.wsad{word-spacing:8.853333pt;}
.ws183{word-spacing:8.880000pt;}
.wsac{word-spacing:8.906667pt;}
.ws4a{word-spacing:8.960000pt;}
.ws100{word-spacing:9.066667pt;}
.wsdd{word-spacing:9.168000pt;}
.ws101{word-spacing:9.173333pt;}
.ws176{word-spacing:9.216000pt;}
.ws73{word-spacing:9.280000pt;}
.ws18c{word-spacing:9.696000pt;}
.ws58{word-spacing:9.706667pt;}
.ws4b{word-spacing:9.920000pt;}
.wsfe{word-spacing:10.026667pt;}
.ws168{word-spacing:10.032000pt;}
.wsff{word-spacing:10.133333pt;}
.ws6a{word-spacing:10.453333pt;}
.ws69{word-spacing:10.560000pt;}
.ws8d{word-spacing:10.608000pt;}
.ws142{word-spacing:10.613333pt;}
.ws1a6{word-spacing:10.704000pt;}
.wsc3{word-spacing:10.720000pt;}
.wsc9{word-spacing:11.093333pt;}
.ws18e{word-spacing:11.136000pt;}
.ws6e{word-spacing:11.466667pt;}
.ws17f{word-spacing:11.472000pt;}
.ws157{word-spacing:12.000000pt;}
.ws165{word-spacing:12.192000pt;}
.ws170{word-spacing:12.576000pt;}
.ws180{word-spacing:12.624000pt;}
.ws181{word-spacing:12.768000pt;}
.wsbd{word-spacing:13.013333pt;}
.ws19d{word-spacing:13.248000pt;}
.wsea{word-spacing:13.392000pt;}
.wse9{word-spacing:13.536000pt;}
.wse8{word-spacing:13.632000pt;}
.wsbb{word-spacing:13.653333pt;}
.ws10a{word-spacing:13.680000pt;}
.wsba{word-spacing:13.760000pt;}
.ws10b{word-spacing:13.776000pt;}
.ws109{word-spacing:13.872000pt;}
.wsd7{word-spacing:14.453333pt;}
.ws169{word-spacing:15.696000pt;}
.ws19c{word-spacing:15.888000pt;}
.ws67{word-spacing:16.000000pt;}
.wsbf{word-spacing:16.106667pt;}
.ws1aa{word-spacing:16.128000pt;}
.wscf{word-spacing:16.800000pt;}
.ws19e{word-spacing:17.040000pt;}
.wsf8{word-spacing:17.333333pt;}
.wscc{word-spacing:17.600000pt;}
.wsc1{word-spacing:17.920000pt;}
.wsc7{word-spacing:18.026667pt;}
.ws6d{word-spacing:18.400000pt;}
.ws99{word-spacing:18.453333pt;}
.ws16e{word-spacing:18.816000pt;}
.ws17c{word-spacing:20.352000pt;}
.ws13{word-spacing:20.928000pt;}
.ws12{word-spacing:21.120000pt;}
.ws14{word-spacing:21.264000pt;}
.ws45{word-spacing:21.493333pt;}
.ws16f{word-spacing:21.504000pt;}
.ws44{word-spacing:21.706667pt;}
.wsd0{word-spacing:23.040000pt;}
.wsca{word-spacing:27.040000pt;}
.ws117{word-spacing:30.303467pt;}
.ws89{word-spacing:33.600000pt;}
.wsbc{word-spacing:33.813333pt;}
.ws80{word-spacing:34.425067pt;}
.ws84{word-spacing:45.221867pt;}
.ws7f{word-spacing:50.418667pt;}
.wsc2{word-spacing:52.533333pt;}
.ws82{word-spacing:54.413333pt;}
.ws11c{word-spacing:55.626667pt;}
.ws83{word-spacing:60.341867pt;}
.ws116{word-spacing:62.328000pt;}
.ws112{word-spacing:62.832000pt;}
.ws111{word-spacing:63.074667pt;}
.ws11b{word-spacing:67.106667pt;}
.ws118{word-spacing:72.389333pt;}
.wscb{word-spacing:74.346667pt;}
.ws123{word-spacing:76.216000pt;}
.wsbe{word-spacing:76.320000pt;}
.ws114{word-spacing:79.296000pt;}
.ws113{word-spacing:87.192000pt;}
.ws60{word-spacing:88.480000pt;}
.ws7a{word-spacing:88.853333pt;}
.ws7b{word-spacing:95.573333pt;}
.ws115{word-spacing:97.160000pt;}
.ws86{word-spacing:98.645867pt;}
.ws124{word-spacing:105.242667pt;}
.ws11a{word-spacing:106.064000pt;}
.ws7d{word-spacing:109.461333pt;}
.ws110{word-spacing:114.725333pt;}
.ws10e{word-spacing:115.192000pt;}
.ws87{word-spacing:116.752533pt;}
.ws7c{word-spacing:130.442667pt;}
.ws85{word-spacing:131.872533pt;}
.ws5f{word-spacing:141.082667pt;}
.ws78{word-spacing:152.506667pt;}
.ws7e{word-spacing:152.805333pt;}
.ws125{word-spacing:158.666667pt;}
.ws10f{word-spacing:198.904533pt;}
.ws8a{word-spacing:363.029333pt;}
._5a{margin-left:-19.852800pt;}
._9{margin-left:-9.912000pt;}
._5c{margin-left:-8.116800pt;}
._15{margin-left:-6.496000pt;}
._5{margin-left:-4.751467pt;}
._2{margin-left:-3.554133pt;}
._6{margin-left:-2.611200pt;}
._0{margin-left:-1.224000pt;}
._1{width:1.196800pt;}
._3{width:2.366400pt;}
._8{width:3.345600pt;}
._7{width:5.006400pt;}
._c{width:6.010667pt;}
._5d{width:6.909867pt;}
._a{width:7.813333pt;}
._b{width:8.736000pt;}
._4e{width:10.000533pt;}
._16{width:11.120000pt;}
._17{width:12.024000pt;}
._4f{width:13.538133pt;}
._4d{width:16.448000pt;}
._4{width:32.328533pt;}
._50{width:33.712000pt;}
._23{width:35.442667pt;}
._5b{width:37.798933pt;}
._55{width:41.962667pt;}
._25{width:45.994667pt;}
._2a{width:47.896533pt;}
._57{width:56.429333pt;}
._2f{width:57.978667pt;}
._24{width:61.021333pt;}
._22{width:68.280533pt;}
._1b{width:71.157333pt;}
._11{width:77.501867pt;}
._52{width:82.581333pt;}
._21{width:83.776000pt;}
._53{width:84.784000pt;}
._1a{width:85.866667pt;}
._d{width:88.965333pt;}
._26{width:93.069867pt;}
._27{width:96.952533pt;}
._28{width:107.629867pt;}
._54{width:109.088000pt;}
._2e{width:110.956800pt;}
._10{width:113.232000pt;}
._1c{width:120.773333pt;}
._29{width:125.999467pt;}
._56{width:133.392000pt;}
._1f{width:137.722667pt;}
._2b{width:139.027200pt;}
._2d{width:141.232000pt;}
._51{width:146.048000pt;}
._45{width:146.944000pt;}
._58{width:148.922667pt;}
._34{width:150.565333pt;}
._19{width:151.722667pt;}
._47{width:154.522667pt;}
._59{width:156.165333pt;}
._43{width:158.181333pt;}
._2c{width:165.050667pt;}
._46{width:174.407467pt;}
._1d{width:179.088000pt;}
._13{width:181.888000pt;}
._20{width:187.667200pt;}
._3d{width:190.026667pt;}
._1e{width:197.605333pt;}
._12{width:199.248000pt;}
._e{width:208.357333pt;}
._49{width:217.645333pt;}
._30{width:219.744000pt;}
._37{width:227.733333pt;}
._4a{width:238.336000pt;}
._f{width:241.024000pt;}
._3a{width:252.149333pt;}
._14{width:253.642667pt;}
._4c{width:265.235200pt;}
._36{width:278.995200pt;}
._33{width:285.898667pt;}
._18{width:297.740800pt;}
._42{width:302.232533pt;}
._3f{width:308.011200pt;}
._40{width:320.682667pt;}
._39{width:321.580800pt;}
._44{width:324.147200pt;}
._3c{width:368.461867pt;}
._48{width:404.797333pt;}
._4b{width:443.109333pt;}
._32{width:452.405333pt;}
._35{width:454.234667pt;}
._38{width:520.986667pt;}
._31{width:531.925333pt;}
._41{width:560.336000pt;}
._3e{width:568.549333pt;}
._3b{width:632.874667pt;}
.fs9{font-size:21.765333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y22d{bottom:100.258533pt;}
.y1fd{bottom:100.445200pt;}
.y6f{bottom:100.514400pt;}
.y109{bottom:100.514533pt;}
.yeb{bottom:100.518667pt;}
.ya7{bottom:104.024800pt;}
.yc{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.y1b1{bottom:104.728667pt;}
.y1ae{bottom:104.738000pt;}
.y10e{bottom:107.095867pt;}
.y79{bottom:107.107867pt;}
.ya6{bottom:116.027467pt;}
.y1b0{bottom:116.731333pt;}
.y1ad{bottom:116.740667pt;}
.yb{bottom:116.979067pt;}
.y22c{bottom:118.930533pt;}
.y1fc{bottom:119.117200pt;}
.y6e{bottom:119.181067pt;}
.y108{bottom:119.181200pt;}
.yea{bottom:119.185333pt;}
.y2a{bottom:122.855600pt;}
.y10d{bottom:124.699867pt;}
.y78{bottom:124.711867pt;}
.y1af{bottom:128.734000pt;}
.y1ac{bottom:128.743333pt;}
.ya{bottom:129.775867pt;}
.ya5{bottom:132.855467pt;}
.y22b{bottom:137.602533pt;}
.y1fb{bottom:137.789200pt;}
.y6d{bottom:137.847733pt;}
.y107{bottom:137.847867pt;}
.ye9{bottom:137.852000pt;}
.y29{bottom:141.522267pt;}
.y10c{bottom:142.303867pt;}
.y9{bottom:142.575867pt;}
.y1ab{bottom:145.944667pt;}
.y1a8{bottom:145.954000pt;}
.ya4{bottom:149.683467pt;}
.y22a{bottom:156.274533pt;}
.y1fa{bottom:156.461200pt;}
.y6c{bottom:156.514400pt;}
.y106{bottom:156.514533pt;}
.ye8{bottom:156.518667pt;}
.y1aa{bottom:157.947333pt;}
.y1a7{bottom:157.956667pt;}
.y10b{bottom:159.907867pt;}
.y28{bottom:160.188933pt;}
.ya3{bottom:161.686133pt;}
.y1a9{bottom:169.950000pt;}
.y1a6{bottom:169.959333pt;}
.y229{bottom:174.946533pt;}
.y1f9{bottom:175.133200pt;}
.y6b{bottom:175.181067pt;}
.y105{bottom:175.181200pt;}
.ye7{bottom:175.185333pt;}
.y10a{bottom:177.511867pt;}
.ya2{bottom:178.514133pt;}
.y27{bottom:178.855600pt;}
.y39{bottom:180.848267pt;}
.y1a1{bottom:185.928667pt;}
.ya1{bottom:190.516800pt;}
.y228{bottom:193.618533pt;}
.y1f8{bottom:193.805200pt;}
.y6a{bottom:193.847733pt;}
.y104{bottom:193.847867pt;}
.ye6{bottom:193.852000pt;}
.y38{bottom:196.844267pt;}
.y26{bottom:197.522267pt;}
.y1a4{bottom:197.922000pt;}
.y1a0{bottom:197.931333pt;}
.ya0{bottom:207.344800pt;}
.y1a3{bottom:209.924667pt;}
.y19f{bottom:209.934000pt;}
.y227{bottom:212.290533pt;}
.y1f7{bottom:212.477200pt;}
.y69{bottom:212.514400pt;}
.y103{bottom:212.514533pt;}
.ye5{bottom:212.518667pt;}
.y37{bottom:212.840267pt;}
.y25{bottom:216.188933pt;}
.y9f{bottom:219.347467pt;}
.y1a5{bottom:221.918000pt;}
.y1a2{bottom:221.927333pt;}
.y19e{bottom:221.936667pt;}
.y36{bottom:228.836267pt;}
.y226{bottom:230.962533pt;}
.y1f6{bottom:231.149200pt;}
.y68{bottom:231.181067pt;}
.y102{bottom:231.181200pt;}
.ye4{bottom:231.185333pt;}
.y24{bottom:234.855600pt;}
.y9e{bottom:236.175467pt;}
.y19b{bottom:237.896667pt;}
.y198{bottom:237.906000pt;}
.y7c{bottom:243.947467pt;}
.y35{bottom:244.832267pt;}
.y9d{bottom:248.178133pt;}
.y225{bottom:249.634533pt;}
.y1f5{bottom:249.821200pt;}
.y67{bottom:249.847733pt;}
.y101{bottom:249.847867pt;}
.ye3{bottom:249.852000pt;}
.y19d{bottom:249.890000pt;}
.y19a{bottom:249.899333pt;}
.y197{bottom:249.908667pt;}
.y23{bottom:253.522267pt;}
.y34{bottom:260.828267pt;}
.y19c{bottom:261.892667pt;}
.y199{bottom:261.902000pt;}
.y196{bottom:261.911333pt;}
.y9c{bottom:265.006133pt;}
.y224{bottom:268.306533pt;}
.y1f4{bottom:268.493200pt;}
.y66{bottom:268.514400pt;}
.y100{bottom:268.514533pt;}
.ye2{bottom:268.518667pt;}
.y22{bottom:272.188933pt;}
.y33{bottom:276.824267pt;}
.y9b{bottom:277.008800pt;}
.y193{bottom:277.871333pt;}
.y1db{bottom:281.280800pt;}
.y223{bottom:286.978533pt;}
.y1f3{bottom:287.165200pt;}
.y65{bottom:287.181067pt;}
.yff{bottom:287.181200pt;}
.ye1{bottom:287.185333pt;}
.y192{bottom:289.874000pt;}
.y18e{bottom:289.883333pt;}
.y9a{bottom:293.836800pt;}
.y191{bottom:301.876667pt;}
.y18d{bottom:301.886000pt;}
.y21{bottom:303.733600pt;}
.y222{bottom:305.650533pt;}
.y1f2{bottom:305.837200pt;}
.y99{bottom:305.839467pt;}
.y64{bottom:305.847733pt;}
.yfe{bottom:305.847867pt;}
.ye0{bottom:305.852000pt;}
.y32{bottom:307.940267pt;}
.y195{bottom:313.870000pt;}
.y190{bottom:313.879333pt;}
.y18c{bottom:313.888667pt;}
.y1dd{bottom:318.614267pt;}
.y98{bottom:322.667467pt;}
.y31{bottom:323.936267pt;}
.y221{bottom:324.322533pt;}
.y1f1{bottom:324.509200pt;}
.y63{bottom:324.514400pt;}
.yfd{bottom:324.514533pt;}
.ydf{bottom:324.518667pt;}
.y194{bottom:325.872667pt;}
.y18f{bottom:325.882000pt;}
.y18b{bottom:325.891333pt;}
.y97{bottom:334.670133pt;}
.y30{bottom:339.932267pt;}
.y185{bottom:341.720133pt;}
.y220{bottom:342.994533pt;}
.y62{bottom:343.181067pt;}
.yfc{bottom:343.181200pt;}
.yde{bottom:343.185333pt;}
.y96{bottom:351.498133pt;}
.y184{bottom:353.722800pt;}
.y188{bottom:353.854000pt;}
.y21f{bottom:361.666533pt;}
.y61{bottom:361.847733pt;}
.yfb{bottom:361.847867pt;}
.y95{bottom:363.500800pt;}
.y183{bottom:365.725467pt;}
.y18a{bottom:365.847333pt;}
.y187{bottom:365.856667pt;}
.y2f{bottom:371.048267pt;}
.y1f0{bottom:374.614267pt;}
.y20{bottom:375.313733pt;}
.y186{bottom:377.718800pt;}
.y182{bottom:377.728133pt;}
.y189{bottom:377.850000pt;}
.y94{bottom:380.328800pt;}
.y21e{bottom:380.338533pt;}
.y60{bottom:380.514400pt;}
.yfa{bottom:380.514533pt;}
.ydd{bottom:380.518667pt;}
.y2e{bottom:387.048267pt;}
.y93{bottom:392.331467pt;}
.y17f{bottom:393.688133pt;}
.y21d{bottom:399.010533pt;}
.y5f{bottom:399.181067pt;}
.yf9{bottom:399.181200pt;}
.ydc{bottom:399.185333pt;}
.y2d{bottom:403.048267pt;}
.y17e{bottom:405.690800pt;}
.y17b{bottom:405.700133pt;}
.y178{bottom:405.709467pt;}
.y92{bottom:409.159467pt;}
.y1f{bottom:411.747333pt;}
.y21c{bottom:417.682533pt;}
.y181{bottom:417.684133pt;}
.y17d{bottom:417.693467pt;}
.y17a{bottom:417.702800pt;}
.y177{bottom:417.712133pt;}
.y5e{bottom:417.847733pt;}
.yf8{bottom:417.847867pt;}
.y2c{bottom:419.048267pt;}
.y91{bottom:421.162133pt;}
.y110{bottom:422.845467pt;}
.y1e{bottom:429.351333pt;}
.y180{bottom:429.686800pt;}
.y17c{bottom:429.696133pt;}
.y179{bottom:429.705467pt;}
.y176{bottom:429.714800pt;}
.y21b{bottom:436.354533pt;}
.y5d{bottom:436.514400pt;}
.yf7{bottom:436.514533pt;}
.y90{bottom:437.990133pt;}
.y10f{bottom:440.449467pt;}
.y1ef{bottom:441.359467pt;}
.y173{bottom:445.674800pt;}
.y1d{bottom:446.955333pt;}
.y1dc{bottom:449.280933pt;}
.y8f{bottom:449.992800pt;}
.y21a{bottom:455.026533pt;}
.y5c{bottom:455.181067pt;}
.yf6{bottom:455.181200pt;}
.ydb{bottom:455.185333pt;}
.y172{bottom:457.677467pt;}
.y1c{bottom:464.559333pt;}
.y8e{bottom:466.820800pt;}
.y171{bottom:469.680133pt;}
.y219{bottom:473.698533pt;}
.y1ee{bottom:473.842533pt;}
.y5b{bottom:473.847733pt;}
.yf5{bottom:473.847867pt;}
.yda{bottom:473.852000pt;}
.y8d{bottom:478.823467pt;}
.y175{bottom:481.673467pt;}
.y170{bottom:481.682800pt;}
.y1b{bottom:482.163333pt;}
.y218{bottom:492.370533pt;}
.y1ed{bottom:492.509200pt;}
.y5a{bottom:492.514400pt;}
.yf4{bottom:492.514533pt;}
.yd9{bottom:492.518667pt;}
.y174{bottom:493.676133pt;}
.y16f{bottom:493.685467pt;}
.y8c{bottom:495.651467pt;}
.y1a{bottom:499.767333pt;}
.y8b{bottom:507.654133pt;}
.y16c{bottom:509.645467pt;}
.y169{bottom:509.654800pt;}
.y217{bottom:511.042533pt;}
.y59{bottom:511.181067pt;}
.yf3{bottom:511.181200pt;}
.yd8{bottom:511.185333pt;}
.y19{bottom:517.371333pt;}
.y16e{bottom:521.638800pt;}
.y16b{bottom:521.648133pt;}
.y168{bottom:521.657467pt;}
.y8a{bottom:524.482133pt;}
.y216{bottom:529.714533pt;}
.y58{bottom:529.847733pt;}
.yf2{bottom:529.847867pt;}
.yd7{bottom:529.852000pt;}
.y16d{bottom:533.641467pt;}
.y16a{bottom:533.650800pt;}
.y167{bottom:533.660133pt;}
.y1ec{bottom:534.692800pt;}
.y18{bottom:534.975333pt;}
.y89{bottom:541.310133pt;}
.y215{bottom:548.386533pt;}
.y57{bottom:548.514400pt;}
.yf1{bottom:548.514533pt;}
.yd6{bottom:548.518667pt;}
.y161{bottom:549.629467pt;}
.y17{bottom:552.579333pt;}
.y88{bottom:558.138133pt;}
.y160{bottom:561.632133pt;}
.y214{bottom:567.058533pt;}
.y1eb{bottom:567.170533pt;}
.y56{bottom:567.181067pt;}
.yc8{bottom:567.181200pt;}
.yd5{bottom:567.185333pt;}
.y16{bottom:570.183333pt;}
.y164{bottom:573.625467pt;}
.y15f{bottom:573.634800pt;}
.y87{bottom:574.966133pt;}
.y166{bottom:585.618800pt;}
.y163{bottom:585.628133pt;}
.y15e{bottom:585.637467pt;}
.y213{bottom:585.730533pt;}
.y1ea{bottom:585.842533pt;}
.y55{bottom:585.847733pt;}
.yc7{bottom:585.847867pt;}
.yd4{bottom:585.852000pt;}
.y15{bottom:587.787333pt;}
.y86{bottom:591.794133pt;}
.y165{bottom:597.621467pt;}
.y162{bottom:597.630800pt;}
.y15d{bottom:597.640133pt;}
.y212{bottom:604.402533pt;}
.y54{bottom:604.514400pt;}
.yc6{bottom:604.514533pt;}
.yd3{bottom:604.518667pt;}
.y14{bottom:605.391333pt;}
.y85{bottom:608.622133pt;}
.y153{bottom:613.618800pt;}
.y84{bottom:620.624800pt;}
.y13{bottom:622.995333pt;}
.y211{bottom:623.074533pt;}
.y53{bottom:623.181067pt;}
.yc5{bottom:623.181200pt;}
.yd2{bottom:623.185333pt;}
.y15a{bottom:625.602800pt;}
.y152{bottom:625.621467pt;}
.y1e9{bottom:628.026133pt;}
.y83{bottom:637.452800pt;}
.y159{bottom:637.605467pt;}
.y156{bottom:637.614800pt;}
.y151{bottom:637.624133pt;}
.y12{bottom:640.599333pt;}
.y210{bottom:641.746533pt;}
.y52{bottom:641.847733pt;}
.yc4{bottom:641.847867pt;}
.yd1{bottom:641.852000pt;}
.y15c{bottom:649.598800pt;}
.y158{bottom:649.608133pt;}
.y155{bottom:649.617467pt;}
.y150{bottom:649.626800pt;}
.y82{bottom:654.280800pt;}
.y7b{bottom:654.614133pt;}
.y11{bottom:658.203333pt;}
.y20f{bottom:660.418533pt;}
.y1e8{bottom:660.482533pt;}
.y51{bottom:660.514400pt;}
.yc3{bottom:660.514533pt;}
.y15b{bottom:661.601467pt;}
.y157{bottom:661.610800pt;}
.y154{bottom:661.620133pt;}
.y14f{bottom:661.629467pt;}
.y81{bottom:662.316800pt;}
.y10{bottom:675.807333pt;}
.y143{bottom:677.507467pt;}
.y148{bottom:677.598800pt;}
.y20e{bottom:679.090533pt;}
.y1e7{bottom:679.154533pt;}
.y50{bottom:679.181067pt;}
.yc2{bottom:679.181200pt;}
.yd0{bottom:679.185333pt;}
.y142{bottom:689.510133pt;}
.y14c{bottom:689.592133pt;}
.y147{bottom:689.601467pt;}
.yf{bottom:693.411333pt;}
.y80{bottom:696.435200pt;}
.y20d{bottom:697.762533pt;}
.y1e6{bottom:697.826533pt;}
.y4f{bottom:697.847733pt;}
.yc1{bottom:697.847867pt;}
.ycf{bottom:697.852000pt;}
.y141{bottom:701.512800pt;}
.y13e{bottom:701.522133pt;}
.y14b{bottom:701.594800pt;}
.y146{bottom:701.604133pt;}
.y77{bottom:704.434000pt;}
.y145{bottom:713.506133pt;}
.y140{bottom:713.515467pt;}
.y13d{bottom:713.524800pt;}
.y14e{bottom:713.588133pt;}
.y14a{bottom:713.597467pt;}
.y7f{bottom:714.039200pt;}
.y20c{bottom:716.434533pt;}
.y1e5{bottom:716.498533pt;}
.y4e{bottom:716.514400pt;}
.yc0{bottom:716.514533pt;}
.yce{bottom:716.518667pt;}
.ye{bottom:721.053600pt;}
.y76{bottom:723.530000pt;}
.y144{bottom:725.508800pt;}
.y13f{bottom:725.518133pt;}
.y13c{bottom:725.527467pt;}
.y14d{bottom:725.590800pt;}
.y149{bottom:725.600133pt;}
.y7e{bottom:731.643200pt;}
.y20b{bottom:735.106533pt;}
.y1e4{bottom:735.170533pt;}
.y4d{bottom:735.181067pt;}
.yf0{bottom:735.181200pt;}
.y136{bottom:741.496800pt;}
.y75{bottom:742.626000pt;}
.ybf{bottom:747.123200pt;}
.y7d{bottom:749.247200pt;}
.y139{bottom:753.490133pt;}
.y135{bottom:753.499467pt;}
.y20a{bottom:753.778533pt;}
.y1e3{bottom:753.842533pt;}
.y4c{bottom:753.847733pt;}
.yef{bottom:753.847867pt;}
.ycd{bottom:753.852000pt;}
.y1d8{bottom:755.546000pt;}
.y1d4{bottom:755.555333pt;}
.y74{bottom:761.722000pt;}
.y13b{bottom:765.483467pt;}
.y138{bottom:765.492800pt;}
.y134{bottom:765.502133pt;}
.y1d7{bottom:767.548667pt;}
.y1d3{bottom:767.558000pt;}
.y209{bottom:772.450533pt;}
.y4b{bottom:772.514400pt;}
.yee{bottom:772.514533pt;}
.ybe{bottom:775.832000pt;}
.y13a{bottom:777.486133pt;}
.y137{bottom:777.495467pt;}
.y133{bottom:777.504800pt;}
.y1da{bottom:779.542000pt;}
.y1d6{bottom:779.551333pt;}
.y1d2{bottom:779.560667pt;}
.y73{bottom:780.818000pt;}
.y208{bottom:791.122533pt;}
.y4a{bottom:791.181067pt;}
.yed{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y1d9{bottom:791.544667pt;}
.y1d5{bottom:791.554000pt;}
.y1d1{bottom:791.563333pt;}
.y130{bottom:793.464800pt;}
.ycc{bottom:793.905333pt;}
.y1e2{bottom:796.026000pt;}
.yb3{bottom:800.543200pt;}
.y12f{bottom:805.467467pt;}
.y12c{bottom:805.476800pt;}
.y129{bottom:805.486133pt;}
.y7{bottom:807.526000pt;}
.y1cc{bottom:807.532667pt;}
.y72{bottom:808.046933pt;}
.y207{bottom:809.794533pt;}
.y49{bottom:809.847733pt;}
.yec{bottom:809.847867pt;}
.ycb{bottom:812.572000pt;}
.yb2{bottom:817.371200pt;}
.y132{bottom:817.460800pt;}
.y12e{bottom:817.470133pt;}
.y12b{bottom:817.479467pt;}
.y128{bottom:817.488800pt;}
.y1cf{bottom:819.526000pt;}
.y1cb{bottom:819.535333pt;}
.y6{bottom:823.526000pt;}
.y206{bottom:828.466533pt;}
.y48{bottom:828.514400pt;}
.ybd{bottom:828.514533pt;}
.y131{bottom:829.463467pt;}
.y12d{bottom:829.472800pt;}
.y12a{bottom:829.482133pt;}
.y127{bottom:829.491467pt;}
.yca{bottom:831.238667pt;}
.y1ce{bottom:831.528667pt;}
.y1ca{bottom:831.538000pt;}
.yb1{bottom:834.199200pt;}
.y5{bottom:839.526000pt;}
.y1d0{bottom:843.522000pt;}
.y1cd{bottom:843.531333pt;}
.y1c9{bottom:843.540667pt;}
.y124{bottom:845.451467pt;}
.y11f{bottom:845.460800pt;}
.y205{bottom:847.138533pt;}
.y47{bottom:847.181067pt;}
.ybc{bottom:847.181200pt;}
.yb0{bottom:851.027200pt;}
.y1e1{bottom:852.026000pt;}
.y123{bottom:857.454133pt;}
.y11e{bottom:857.463467pt;}
.y1c7{bottom:859.500667pt;}
.yc9{bottom:859.947600pt;}
.y204{bottom:865.810533pt;}
.y46{bottom:865.847733pt;}
.ybb{bottom:865.847867pt;}
.yaf{bottom:867.855200pt;}
.y122{bottom:869.456800pt;}
.y11d{bottom:869.466133pt;}
.y4{bottom:870.644267pt;}
.y1c6{bottom:871.503333pt;}
.y126{bottom:881.450133pt;}
.y121{bottom:881.459467pt;}
.y11c{bottom:881.468800pt;}
.y1c8{bottom:883.496667pt;}
.y1c5{bottom:883.506000pt;}
.y203{bottom:884.482533pt;}
.y45{bottom:884.514400pt;}
.yba{bottom:884.514533pt;}
.yae{bottom:884.683200pt;}
.y125{bottom:893.452800pt;}
.y120{bottom:893.462133pt;}
.y11b{bottom:893.471467pt;}
.y1c4{bottom:899.466000pt;}
.y1c1{bottom:899.475333pt;}
.yad{bottom:901.511200pt;}
.y202{bottom:903.154533pt;}
.y44{bottom:903.181067pt;}
.yb9{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y1e0{bottom:908.026000pt;}
.y11a{bottom:909.422133pt;}
.y117{bottom:909.431467pt;}
.y1c3{bottom:911.468667pt;}
.y1c0{bottom:911.478000pt;}
.y114{bottom:915.432800pt;}
.yac{bottom:918.339200pt;}
.y119{bottom:921.424800pt;}
.y113{bottom:921.434133pt;}
.y201{bottom:921.826533pt;}
.y43{bottom:921.847733pt;}
.yb8{bottom:921.847867pt;}
.y1c2{bottom:923.471333pt;}
.y1bf{bottom:923.480667pt;}
.y115{bottom:927.435467pt;}
.y2{bottom:932.695600pt;}
.y118{bottom:933.427467pt;}
.y116{bottom:933.436800pt;}
.yab{bottom:935.167200pt;}
.y1bc{bottom:939.440667pt;}
.y200{bottom:940.498533pt;}
.y42{bottom:940.514400pt;}
.yb7{bottom:940.514533pt;}
.y1be{bottom:951.434000pt;}
.y1bb{bottom:951.443333pt;}
.yaa{bottom:951.995200pt;}
.y1ff{bottom:959.170533pt;}
.y41{bottom:959.181067pt;}
.yb6{bottom:959.181200pt;}
.y112{bottom:959.710133pt;}
.y1bd{bottom:963.436667pt;}
.y1ba{bottom:963.446000pt;}
.y1df{bottom:963.727067pt;}
.ya9{bottom:968.823200pt;}
.y71{bottom:970.692667pt;}
.y111{bottom:977.314133pt;}
.y1fe{bottom:977.842533pt;}
.y40{bottom:977.847733pt;}
.yb5{bottom:977.847867pt;}
.y1b9{bottom:979.667333pt;}
.y1b6{bottom:979.676667pt;}
.y1b3{bottom:985.678000pt;}
.yd{bottom:986.502667pt;}
.y7a{bottom:989.062933pt;}
.y1de{bottom:989.952800pt;}
.y1b8{bottom:991.670000pt;}
.y1b2{bottom:991.679333pt;}
.ya8{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.yb4{bottom:996.514533pt;}
.y1b4{bottom:997.680667pt;}
.y70{bottom:999.401467pt;}
.y1b7{bottom:1003.672667pt;}
.y1b5{bottom:1003.682000pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h15{height:28.000000pt;}
.h17{height:28.382812pt;}
.h12{height:29.731771pt;}
.h16{height:29.950521pt;}
.h19{height:30.285154pt;}
.h1a{height:30.512654pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:32.611979pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.h1b{height:38.529146pt;}
.h9{height:40.546875pt;}
.hb{height:41.929688pt;}
.hd{height:42.786458pt;}
.h11{height:44.601562pt;}
.he{height:46.588542pt;}
.h4{height:47.065104pt;}
.hc{height:48.656250pt;}
.h18{height:53.737104pt;}
.h14{height:61.875771pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.171067pt;}
.xc{left:96.260667pt;}
.xd{left:99.780533pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x1b{left:112.054400pt;}
.x1e{left:120.127867pt;}
.xe{left:148.147467pt;}
.x1c{left:153.447733pt;}
.x68{left:180.357867pt;}
.x6a{left:181.860533pt;}
.x47{left:187.747867pt;}
.x1f{left:189.241200pt;}
.x73{left:191.397200pt;}
.x21{left:217.698533pt;}
.x3f{left:218.874533pt;}
.x4e{left:220.338933pt;}
.x35{left:221.291867pt;}
.x50{left:222.457600pt;}
.x48{left:223.643867pt;}
.x4f{left:224.762933pt;}
.x20{left:225.855867pt;}
.x10{left:232.082133pt;}
.x55{left:234.049600pt;}
.x16{left:235.824800pt;}
.x19{left:236.814133pt;}
.x13{left:238.438133pt;}
.x6d{left:241.526533pt;}
.x17{left:243.440800pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.x74{left:293.363867pt;}
.x62{left:294.342933pt;}
.x67{left:296.268533pt;}
.x40{left:297.330533pt;}
.x56{left:298.524267pt;}
.x61{left:300.148267pt;}
.x37{left:301.073200pt;}
.x36{left:302.734533pt;}
.x29{left:304.274533pt;}
.x11{left:308.410133pt;}
.x65{left:309.839200pt;}
.x51{left:312.766933pt;}
.x41{left:316.370533pt;}
.x76{left:317.490533pt;}
.x69{left:323.661867pt;}
.x18{left:326.591467pt;}
.x14{left:341.776800pt;}
.x3{left:352.045067pt;}
.x42{left:368.870533pt;}
.x49{left:370.699867pt;}
.x52{left:371.968267pt;}
.x2a{left:373.779867pt;}
.x57{left:376.000267pt;}
.x2b{left:377.587867pt;}
.x4a{left:379.417200pt;}
.x39{left:380.667867pt;}
.x38{left:384.774533pt;}
.x5c{left:387.433600pt;}
.x70{left:389.245200pt;}
.x2c{left:390.663867pt;}
.x53{left:392.305600pt;}
.x58{left:394.060267pt;}
.x66{left:395.117867pt;}
.x15{left:419.140800pt;}
.x12{left:430.210133pt;}
.x4c{left:445.477600pt;}
.x23{left:446.747867pt;}
.x22{left:449.230533pt;}
.x24{left:450.957200pt;}
.x4b{left:453.029200pt;}
.x43{left:455.269200pt;}
.x63{left:456.671200pt;}
.x5d{left:469.118933pt;}
.x2d{left:470.193200pt;}
.xf{left:491.688800pt;}
.x25{left:510.167867pt;}
.x3a{left:512.333200pt;}
.x26{left:514.218533pt;}
.x27{left:516.897200pt;}
.x2e{left:517.830533pt;}
.x6b{left:521.444533pt;}
.x71{left:557.935867pt;}
.x32{left:558.915867pt;}
.x31{left:559.849200pt;}
.x3b{left:560.857200pt;}
.x30{left:563.442533pt;}
.x2f{left:564.637200pt;}
.x3c{left:566.485200pt;}
.x5e{left:567.594933pt;}
.x5f{left:569.246933pt;}
.x60{left:570.142933pt;}
.x59{left:573.185600pt;}
.x4d{left:574.277600pt;}
.x75{left:575.361200pt;}
.x9{left:576.817200pt;}
.x28{left:581.745200pt;}
.x44{left:582.958533pt;}
.x54{left:588.193600pt;}
.x8{left:611.099867pt;}
.x3e{left:633.442533pt;}
.x6f{left:635.542533pt;}
.x72{left:637.035867pt;}
.x33{left:638.323867pt;}
.x34{left:641.301200pt;}
.x5a{left:644.174933pt;}
.x3d{left:645.417200pt;}
.x6e{left:646.630533pt;}
.x6c{left:647.864533pt;}
.x5b{left:650.418933pt;}
.x45{left:652.482533pt;}
.x46{left:655.506533pt;}
.x64{left:666.064533pt;}
.x1a{left:675.779467pt;}
.x1d{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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